@castlabs/ui 7.2.1 → 7.4.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/castlabs-ui-editor.common.js +50 -50
- package/dist/castlabs-ui-editor.common.js.map +1 -1
- package/dist/castlabs-ui-editor.umd.js +51 -51
- package/dist/castlabs-ui-editor.umd.js.map +1 -1
- package/dist/castlabs-ui.common.js +3 -3
- package/dist/castlabs-ui.common.js.map +1 -1
- package/dist/castlabs-ui.css +3 -3
- package/dist/castlabs-ui.umd.js +7 -7
- package/dist/castlabs-ui.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ClAlert/style.scss +8 -4
- package/src/components/ClBadge/style.variables.scss +8 -6
- package/src/components/ClBlockquote/style.variables.scss +2 -2
- package/src/components/ClButton/style.scss +11 -4
- package/src/components/ClCard/style.variables.scss +1 -1
- package/src/components/ClDropdown/style.scss +1 -3
- package/src/components/ClFooter/style.scss +1 -2
- package/src/components/ClIconotron/style.scss +1 -1
- package/src/components/form/ClField/style.scss +8 -1
- package/src/components/form/ClFieldCheck/style.scss +6 -6
- package/src/components/form/ClFieldFile/style.scss +5 -3
- package/src/components/form/ClFieldGroup/style.scss +2 -2
- package/src/components/form/ClForm/style.scss +3 -3
- package/src/components/modal/ClModal/style.scss +2 -2
- package/src/components/navigation/ClNavSide/ClNavDrawer/style.scss +17 -11
- package/src/components/navigation/ClNavTop/style.scss +3 -8
- package/src/components/section/ClSectionForm/style.scss +1 -2
- package/src/components/section/ClSectionHeadline/style.scss +1 -1
- package/src/components/table/ClTableCel/ID/style.scss +2 -3
- package/src/components/table/ClTableCel/Links/style.scss +3 -3
- package/src/components/text/ClCopy/style.scss +7 -6
- package/src/components/text/ClHashtag/style.scss +1 -0
- package/src/components/text/ClLinkExternal/style.scss +43 -35
- package/src/components/text/ClPlan/style.scss +1 -0
- package/src/components/text/ClRole/style.scss +1 -0
- package/src/styles/abstracts/app.scss +3 -1
- package/src/styles/abstracts/color.scss +149 -91
- package/src/styles/abstracts/fontawesome.scss +17 -7
- package/src/styles/abstracts/form.scss +10 -6
- package/src/styles/abstracts/typography.scss +84 -65
- package/src/styles/layout/color.scss +28 -1
- package/src/styles/layout/helper.scss +13 -0
- package/src/styles/layout/section.scss +5 -2
- package/src/styles/layout/typography.scss +1 -1
- package/src/styles/ui.scss +0 -12
- package/dist/assets/DMMono/index.scss +0 -41
- package/dist/assets/FontAwesome5/LICENSE.txt +0 -34
- package/dist/assets/FontAwesome5/index.scss +0 -6124
- package/dist/assets/NonNaturalGroteskInktrap/index.scss +0 -37
- /package/dist/fonts/{DM_Mono_500.3f958442.woff2 → DM_Mono_500.03f95844.woff2} +0 -0
- /package/dist/fonts/{fa-brands-400.5faf8763.woff2 → fa-brands-400.05faf876.woff2} +0 -0
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
// stylelint-disable at-rule-descriptor-value-no-unknown
|
|
2
|
-
|
|
3
|
-
$cl-url-prefix: '' !default;
|
|
4
|
-
$cl-url-postfix: '' !default;
|
|
5
|
-
|
|
6
|
-
$non-natural-ascent-override: 100%;
|
|
7
|
-
$non-natural-descent-override: 40%;
|
|
8
|
-
|
|
9
|
-
@mixin NonNaturalGroteskInktrap {
|
|
10
|
-
@font-face {
|
|
11
|
-
ascent-override: $non-natural-ascent-override;
|
|
12
|
-
descent-override: $non-natural-descent-override;
|
|
13
|
-
font-family: NonNaturalGroteskInktrap;
|
|
14
|
-
font-style: normal;
|
|
15
|
-
font-weight: 400;
|
|
16
|
-
src: url('#{$cl-url-prefix}NonNaturalGroteskInktrap-Regular.woff2#{$cl-url-postfix}')
|
|
17
|
-
format('woff2');
|
|
18
|
-
}
|
|
19
|
-
@font-face {
|
|
20
|
-
ascent-override: $non-natural-ascent-override;
|
|
21
|
-
descent-override: $non-natural-descent-override;
|
|
22
|
-
font-family: NonNaturalGroteskInktrap;
|
|
23
|
-
font-style: normal;
|
|
24
|
-
font-weight: 500;
|
|
25
|
-
src: url('#{$cl-url-prefix}NonNaturalGroteskInktrap-Medium.woff2#{$cl-url-postfix}')
|
|
26
|
-
format('woff2');
|
|
27
|
-
}
|
|
28
|
-
@font-face {
|
|
29
|
-
ascent-override: $non-natural-ascent-override;
|
|
30
|
-
descent-override: $non-natural-descent-override;
|
|
31
|
-
font-family: NonNaturalGroteskInktrap;
|
|
32
|
-
font-style: normal;
|
|
33
|
-
font-weight: 700;
|
|
34
|
-
src: url('#{$cl-url-prefix}NonNaturalGroteskInktrap-Bold.woff2#{$cl-url-postfix}')
|
|
35
|
-
format('woff2');
|
|
36
|
-
}
|
|
37
|
-
}
|
|
File without changes
|
|
File without changes
|