release 3.11.0

This commit is contained in:
Mikolaj Smolenski 2022-03-14 08:34:53 +01:00
parent e60c235634
commit 76d4e65a3f
18 changed files with 36 additions and 30 deletions

View File

@ -1,5 +1,5 @@
MDB5
Version: FREE 3.10.2
Version: FREE 3.11.0
Documentation:
https://mdbootstrap.com/docs/standard/

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

8
css/mdb.min.css vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

6
css/mdb.rtl.min.css vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -8,7 +8,10 @@
<!-- MDB icon -->
<link rel="icon" href="img/mdb-favicon.ico" type="image/x-icon" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
/>
<!-- Google Fonts Roboto -->
<link
rel="stylesheet"
@ -20,12 +23,12 @@
<body>
<!-- Start your project here-->
<div class="container">
<div class="d-flex justify-content-center align-items-center" style="height: 100vh;">
<div class="d-flex justify-content-center align-items-center" style="height: 100vh">
<div class="text-center">
<img
class="mb-4"
src="https://mdbootstrap.com/img/logo/mdb-transparent-250px.png"
style="width: 250px; height: 90px;"
style="width: 250px; height: 90px"
/>
<h5 class="mb-3">Thank you for using our product. We're glad you're with us.</h5>
<p class="mb-3">MDB Team</p>

4
js/mdb.min.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "mdb-ui-kit",
"version": "3.10.2",
"version": "3.11.0",
"main": "js/mdb.min.js",
"homepage": "https://mdbootstrap.com/docs/standard/",
"repository": "https://github.com/mdbootstrap/mdb-ui-kit.git",

View File

@ -30,7 +30,8 @@ const SAFE_URL_PATTERN = /^(?:(?:https?|mailto|ftp|tel|file):|[^#&/:?]*(?:[#/?]|
*
* Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts
*/
const DATA_URL_PATTERN = /^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i;
const DATA_URL_PATTERN =
/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i;
const allowedAttribute = (attr, allowedAttributeList) => {
const attrName = attr.nodeName.toLowerCase();

View File

@ -2,7 +2,7 @@
&::after {
content: '\f053';
font-weight: $font-weight-bold;
font-family: 'Font Awesome 5 Pro', 'Font Awesome 5 Free';
font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free';
font-size: 1.7rem;
}
}
@ -10,7 +10,7 @@
&::after {
content: '\f054';
font-weight: $font-weight-bold;
font-family: 'Font Awesome 5 Pro', 'Font Awesome 5 Free';
font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free';
font-size: 1.7rem;
}
}

View File

@ -1,3 +1,4 @@
:root {
--mdb-font-roboto: #{inspect($font-family-roboto)};
}
--mdb-bg-opacity: 1;
}

View File

@ -710,7 +710,7 @@ $form-check-input-radio-checked-focus-background-color: $white !default;
$form-switch-padding-left: 1.85rem !default;
$form-switch-form-check-input-border-radius: 0.4375rem !default;
$form-switch-form-check-input-width: 2.25rem !default;
$form-switch-form-check-input-width: 2rem !default;
$form-switch-form-check-input-height: 0.875rem !default;
$form-switch-form-check-input-background-color: rgba(0, 0, 0, 0.38) !default;
$form-switch-form-check-input-margin-top: 0.35rem !default;

View File

@ -174,6 +174,7 @@
}
.form-check-label {
padding-left: 0.15rem;
&:hover {
cursor: pointer;
}