@snyk-mktg/brand-ui 2.4.0 → 2.4.2-canary.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/base.css +10 -10
- package/dist/css/base.css.map +1 -1
- package/dist/css/bundle.css +11 -11
- package/dist/css/bundle.css.map +1 -1
- package/dist/css/components.css.map +1 -1
- package/dist/css/evo-bundle.css +1 -1
- package/dist/css/evo-bundle.css.map +1 -1
- package/dist/css/index.css +1 -1
- package/dist/css/index.css.map +1 -1
- package/dist/css/labs-bundle.css +11 -11
- package/dist/css/labs-bundle.css.map +1 -1
- package/dist/css/utilities.css +1 -1
- package/dist/css/utilities.css.map +1 -1
- package/dist/js/cjs/helpers/caseFormats.d.ts +1 -0
- package/dist/js/cjs/helpers/caseFormats.js +47 -0
- package/dist/js/cjs/helpers/classnames.d.ts +1 -0
- package/dist/js/cjs/helpers/classnames.js +9 -0
- package/dist/js/cjs/helpers/getInitials.d.ts +1 -0
- package/dist/js/cjs/helpers/getInitials.js +14 -0
- package/dist/js/cjs/helpers/grid.d.ts +17 -0
- package/dist/js/cjs/helpers/grid.js +62 -0
- package/dist/js/cjs/helpers/incrementDisplayValue.d.ts +8 -0
- package/dist/js/cjs/helpers/incrementDisplayValue.js +15 -0
- package/dist/js/cjs/helpers/index.d.ts +9 -0
- package/dist/js/cjs/helpers/index.js +30 -0
- package/dist/js/cjs/helpers/range.d.ts +4 -0
- package/dist/js/cjs/helpers/range.js +8 -0
- package/dist/js/cjs/helpers/scroll.d.ts +5 -0
- package/dist/js/cjs/helpers/scroll.js +14 -0
- package/dist/js/cjs/helpers/uid.d.ts +4 -0
- package/dist/js/cjs/helpers/uid.js +8 -0
- package/dist/js/cjs/index.d.ts +3 -0
- package/dist/js/cjs/index.js +19 -0
- package/dist/js/cjs/types/buttonVariants.d.ts +1 -0
- package/dist/js/cjs/types/buttonVariants.js +2 -0
- package/dist/js/cjs/types/colors.d.ts +3 -0
- package/dist/js/cjs/types/colors.js +2 -0
- package/dist/js/cjs/types/downloadableFiles.d.ts +1 -0
- package/dist/js/cjs/types/downloadableFiles.js +2 -0
- package/dist/js/cjs/types/icons.d.ts +5 -0
- package/dist/js/cjs/types/icons.js +2 -0
- package/dist/js/cjs/types/index.d.ts +8 -0
- package/dist/js/cjs/types/index.js +24 -0
- package/dist/js/cjs/types/logos.d.ts +3 -0
- package/dist/js/cjs/types/logos.js +2 -0
- package/dist/js/cjs/types/mediaCategories.d.ts +1 -0
- package/dist/js/cjs/types/mediaCategories.js +2 -0
- package/dist/js/cjs/types/patchPoses.d.ts +1 -0
- package/dist/js/cjs/types/patchPoses.js +2 -0
- package/dist/js/cjs/types/sizes.d.ts +4 -0
- package/dist/js/cjs/types/sizes.js +2 -0
- package/dist/js/cjs/utilities/buttonVariants.d.ts +3 -0
- package/dist/js/cjs/utilities/buttonVariants.js +4 -0
- package/dist/js/cjs/utilities/colors.d.ts +42 -0
- package/dist/js/cjs/utilities/colors.js +86 -0
- package/dist/js/cjs/utilities/downloadableFiles.d.ts +2 -0
- package/dist/js/cjs/utilities/downloadableFiles.js +21 -0
- package/dist/js/cjs/utilities/icons.d.ts +7 -0
- package/dist/js/cjs/utilities/icons.js +238 -0
- package/dist/js/cjs/utilities/index.d.ts +8 -0
- package/dist/js/cjs/utilities/index.js +24 -0
- package/dist/js/cjs/utilities/logos.d.ts +5 -0
- package/dist/js/cjs/utilities/logos.js +29 -0
- package/dist/js/cjs/utilities/mediaCategories.d.ts +3 -0
- package/dist/js/cjs/utilities/mediaCategories.js +24 -0
- package/dist/js/cjs/utilities/patchPoses.d.ts +3 -0
- package/dist/js/cjs/utilities/patchPoses.js +5 -0
- package/dist/js/cjs/utilities/sizes.d.ts +5 -0
- package/dist/js/cjs/utilities/sizes.js +20 -0
- package/dist/scss/base/variables/_typography.scss +11 -11
- package/package.json +3 -2
package/dist/css/base.css
CHANGED
|
@@ -5106,7 +5106,7 @@ cite {
|
|
|
5106
5106
|
}
|
|
5107
5107
|
|
|
5108
5108
|
.txt-hero-title-large {
|
|
5109
|
-
font-family: "Big Shoulders
|
|
5109
|
+
font-family: "Big Shoulders", sans-serif;
|
|
5110
5110
|
font-size: 5.625rem;
|
|
5111
5111
|
font-weight: 900;
|
|
5112
5112
|
letter-spacing: -0.01em;
|
|
@@ -5116,7 +5116,7 @@ cite {
|
|
|
5116
5116
|
}
|
|
5117
5117
|
@media (max-width: 768px) {
|
|
5118
5118
|
.txt-hero-title-large {
|
|
5119
|
-
font-family: "Big Shoulders
|
|
5119
|
+
font-family: "Big Shoulders", sans-serif;
|
|
5120
5120
|
font-size: 3.125rem;
|
|
5121
5121
|
font-weight: 900;
|
|
5122
5122
|
letter-spacing: -0.01em;
|
|
@@ -5126,7 +5126,7 @@ cite {
|
|
|
5126
5126
|
}
|
|
5127
5127
|
|
|
5128
5128
|
.txt-hero-title-small {
|
|
5129
|
-
font-family: "Big Shoulders
|
|
5129
|
+
font-family: "Big Shoulders", sans-serif;
|
|
5130
5130
|
font-size: 3.125rem;
|
|
5131
5131
|
font-weight: 900;
|
|
5132
5132
|
letter-spacing: -0.01em;
|
|
@@ -5136,7 +5136,7 @@ cite {
|
|
|
5136
5136
|
}
|
|
5137
5137
|
@media (max-width: 768px) {
|
|
5138
5138
|
.txt-hero-title-small {
|
|
5139
|
-
font-family: "Big Shoulders
|
|
5139
|
+
font-family: "Big Shoulders", sans-serif;
|
|
5140
5140
|
font-size: 3.125rem;
|
|
5141
5141
|
font-weight: 900;
|
|
5142
5142
|
letter-spacing: -0.01em;
|
|
@@ -5146,7 +5146,7 @@ cite {
|
|
|
5146
5146
|
}
|
|
5147
5147
|
|
|
5148
5148
|
.txt-page-title-large {
|
|
5149
|
-
font-family: "Big Shoulders
|
|
5149
|
+
font-family: "Big Shoulders", sans-serif;
|
|
5150
5150
|
font-size: 4.375rem;
|
|
5151
5151
|
font-weight: 900;
|
|
5152
5152
|
letter-spacing: -0.01em;
|
|
@@ -5156,7 +5156,7 @@ cite {
|
|
|
5156
5156
|
}
|
|
5157
5157
|
@media (max-width: 768px) {
|
|
5158
5158
|
.txt-page-title-large {
|
|
5159
|
-
font-family: "Big Shoulders
|
|
5159
|
+
font-family: "Big Shoulders", sans-serif;
|
|
5160
5160
|
font-size: 3.125rem;
|
|
5161
5161
|
font-weight: 900;
|
|
5162
5162
|
letter-spacing: -0.01em;
|
|
@@ -5166,7 +5166,7 @@ cite {
|
|
|
5166
5166
|
}
|
|
5167
5167
|
|
|
5168
5168
|
.txt-page-title {
|
|
5169
|
-
font-family: "Big Shoulders
|
|
5169
|
+
font-family: "Big Shoulders", sans-serif;
|
|
5170
5170
|
font-size: 3rem;
|
|
5171
5171
|
font-weight: 900;
|
|
5172
5172
|
letter-spacing: -0.01em;
|
|
@@ -5176,7 +5176,7 @@ cite {
|
|
|
5176
5176
|
}
|
|
5177
5177
|
@media (max-width: 768px) {
|
|
5178
5178
|
.txt-page-title {
|
|
5179
|
-
font-family: "Big Shoulders
|
|
5179
|
+
font-family: "Big Shoulders", sans-serif;
|
|
5180
5180
|
font-size: 3.125rem;
|
|
5181
5181
|
font-weight: 900;
|
|
5182
5182
|
letter-spacing: -0.01em;
|
|
@@ -5186,7 +5186,7 @@ cite {
|
|
|
5186
5186
|
}
|
|
5187
5187
|
|
|
5188
5188
|
.txt-section-title {
|
|
5189
|
-
font-family: "Big Shoulders
|
|
5189
|
+
font-family: "Big Shoulders", sans-serif;
|
|
5190
5190
|
font-size: 3rem;
|
|
5191
5191
|
font-weight: 900;
|
|
5192
5192
|
letter-spacing: -0.01em;
|
|
@@ -5196,7 +5196,7 @@ cite {
|
|
|
5196
5196
|
}
|
|
5197
5197
|
@media (max-width: 768px) {
|
|
5198
5198
|
.txt-section-title {
|
|
5199
|
-
font-family: "Big Shoulders
|
|
5199
|
+
font-family: "Big Shoulders", sans-serif;
|
|
5200
5200
|
font-size: 3.125rem;
|
|
5201
5201
|
font-weight: 900;
|
|
5202
5202
|
letter-spacing: -0.01em;
|