bootstrap-italia 2.15.1 → 2.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/bootstrap-italia.min.css +1 -1
- package/dist/css/bootstrap-italia.min.css.map +1 -1
- package/dist/js/bootstrap-italia.bundle.min.js +1 -1
- package/dist/js/bootstrap-italia.min.js +1 -1
- package/dist/version.js +1 -1
- package/dist/version.js.map +1 -1
- package/package.json +1 -1
- package/src/js/version.js +1 -1
- package/src/scss/base/_variables.scss +2 -2
- package/src/scss/base/_version.scss +1 -1
- package/src/scss/bootstrap-italia.scss +1 -0
- package/src/scss/components/_card-old.scss +952 -0
- package/src/scss/components/_card.scss +618 -765
- package/src/scss/components/_carousel.scss +11 -11
- package/src/scss/components/_timeline.scss +60 -0
- package/src/scss/utilities/focus.scss +13 -1
package/dist/version.js
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
// NOTE:bootstrap italia version variable, useful to check for the current version
|
|
10
10
|
|
|
11
|
-
const BOOTSTRAP_ITALIA_VERSION = '2.
|
|
11
|
+
const BOOTSTRAP_ITALIA_VERSION = '2.16.0';
|
|
12
12
|
|
|
13
13
|
export { BOOTSTRAP_ITALIA_VERSION as default };
|
|
14
14
|
//# sourceMappingURL=version.js.map
|
package/dist/version.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","sources":["../src/js/version.js"],"sourcesContent":["/**\n * --------------------------------------------------------------------------\n * Bootstrap Italia (https://italia.github.io/bootstrap-italia/)\n * Authors: https://github.com/italia/bootstrap-italia/blob/main/AUTHORS\n * Licensed under BSD-3-Clause license (https://github.com/italia/bootstrap-italia/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n// NOTE:bootstrap italia version variable, useful to check for the current version\n\nconst BOOTSTRAP_ITALIA_VERSION = '2.
|
|
1
|
+
{"version":3,"file":"version.js","sources":["../src/js/version.js"],"sourcesContent":["/**\n * --------------------------------------------------------------------------\n * Bootstrap Italia (https://italia.github.io/bootstrap-italia/)\n * Authors: https://github.com/italia/bootstrap-italia/blob/main/AUTHORS\n * Licensed under BSD-3-Clause license (https://github.com/italia/bootstrap-italia/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n// NOTE:bootstrap italia version variable, useful to check for the current version\n\nconst BOOTSTRAP_ITALIA_VERSION = '2.16.0'\nexport default BOOTSTRAP_ITALIA_VERSION\n"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEK,MAAC,wBAAwB,GAAG;;;;"}
|
package/package.json
CHANGED
package/src/js/version.js
CHANGED
|
@@ -1378,7 +1378,7 @@ $placeholder-opacity-max: 0.5 !default;
|
|
|
1378
1378
|
$placeholder-opacity-min: 0.2 !default;
|
|
1379
1379
|
// scss-docs-end placeholders
|
|
1380
1380
|
|
|
1381
|
-
// Cards
|
|
1381
|
+
// Cards (Deprecated)
|
|
1382
1382
|
$card-cap-bg: transparent !default;
|
|
1383
1383
|
$card-spacer-y: 1rem !default;
|
|
1384
1384
|
$card-spacer-x: 2rem !default;
|
|
@@ -2007,7 +2007,7 @@ $timeline-pin-size: $v-gap * 3;
|
|
|
2007
2007
|
$timeline-pin-background: hsl(210, 100%, 20%); // color-blue-20
|
|
2008
2008
|
$timeline-pin-circle-size: 48px;
|
|
2009
2009
|
$timeline-pin-circle-border: $v-gap solid $white !default;
|
|
2010
|
-
$timeline-content-padding: 18px
|
|
2010
|
+
$timeline-content-padding: 18px 18px 18px 40px;
|
|
2011
2011
|
$timeline-content-padding-reverse: 18px 40px 18px 18px;
|
|
2012
2012
|
|
|
2013
2013
|
//Sections
|
|
@@ -91,6 +91,7 @@
|
|
|
91
91
|
@import 'components/thumbnav';
|
|
92
92
|
@import 'components/steppers';
|
|
93
93
|
@import 'components/card';
|
|
94
|
+
@import 'components/card-old'; // Keep till next major? (.card is deprecated)
|
|
94
95
|
@import 'components/imgresponsive';
|
|
95
96
|
@import 'components/overlay-panel';
|
|
96
97
|
@import 'components/progress-donuts';
|