@ambita/design-system 6.1.5-751.0 → 6.1.5-761.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/neo-mixins.scss +4 -4
- package/dist/ds.cjs +1 -1
- package/dist/ds.cjs.map +1 -1
- package/dist/ds.js +26 -21
- package/dist/ds.js.map +1 -1
- package/dist/ds.umd.cjs +2 -2
- package/dist/ds.umd.cjs.map +1 -1
- package/dist/index.css +1 -1
- package/dist/themes/ambita-dark.css +1 -1
- package/dist/themes/ambita-light.css +1 -1
- package/dist/themes/ambita-old.css +1 -1
- package/dist/themes/byggesoknaden.css +1 -1
- package/dist/types/components/ComboBox/NeoComboBox.vue.d.ts +1 -1
- package/dist/types/components/DatePicker/NeoDatePicker.vue.d.ts +1 -1
- package/dist/types/components/Input/NeoInput.vue.d.ts +1 -1
- package/dist/types/components/Modal/AuxActions.vue.d.ts +1 -1
- package/dist/types/components/Modal/AuxModal.vue.d.ts +1 -1
- package/dist/types/components/Select/NeoSelect.vue.d.ts +1 -1
- package/dist/types/components/TagsInput/TagsInput.vue.d.ts +1 -1
- package/dist/types/components/Time/AuxTime.vue.d.ts +1 -1
- package/dist/types/components/Typography/NeoFormField.vue.d.ts +1 -1
- package/dist/types/composables/useTheme.d.ts +1 -1
- package/dist/types/index.d.ts +47 -47
- package/package.json +3 -2
package/dist/css/neo-mixins.scss
CHANGED
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
@mixin dropdown-empty($padding-y: 8px, $padding-x: 8px) {
|
|
216
216
|
padding: $padding-y $padding-x;
|
|
217
217
|
text-align: center;
|
|
218
|
-
font-size:
|
|
218
|
+
font-size: var(--font-size-xs);
|
|
219
219
|
color: $text-body;
|
|
220
220
|
}
|
|
221
221
|
|
|
@@ -236,7 +236,7 @@
|
|
|
236
236
|
*/
|
|
237
237
|
@mixin dropdown-label($padding-y: 8px, $padding-x: 12px) {
|
|
238
238
|
padding: $padding-y $padding-x;
|
|
239
|
-
font-size:
|
|
239
|
+
font-size: var(--font-size-xxs);
|
|
240
240
|
font-weight: 600;
|
|
241
241
|
color: $text-body;
|
|
242
242
|
background: $dropdown-label-bg;
|
|
@@ -456,7 +456,7 @@
|
|
|
456
456
|
|
|
457
457
|
/* Heading XXL Display - PT Serif, 50px, weight 400, line-height 54px */
|
|
458
458
|
@mixin heading-xxl-display {
|
|
459
|
-
font-family:
|
|
459
|
+
font-family: $font-family-display-serif;
|
|
460
460
|
font-size: var(--font-size-xxl);
|
|
461
461
|
font-weight: var(--font-weight-regular);
|
|
462
462
|
line-height: var(--font-line-height-xxxl);
|
|
@@ -472,7 +472,7 @@
|
|
|
472
472
|
|
|
473
473
|
/* Heading XL Display - PT Serif, 30px, weight 400, line-height 34px */
|
|
474
474
|
@mixin heading-xl-display {
|
|
475
|
-
font-family:
|
|
475
|
+
font-family: $font-family-display-serif;
|
|
476
476
|
font-size: var(--font-size-xl);
|
|
477
477
|
font-weight: var(--font-weight-regular);
|
|
478
478
|
line-height: var(--font-line-height-xxl);
|