@gnist/design-system 6.0.0-alpha.3 → 6.1.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/CHANGELOG.md +14 -14
- package/README.md +11 -8
- package/dist/_virtual/_rolldown/runtime.cjs +34 -0
- package/dist/_virtual/_rolldown/runtime.js +14 -0
- package/dist/building-blocks/index.cjs +11 -10
- package/dist/building-blocks/index.js +3 -7
- package/dist/building-blocks/inputs/InputHelperText.cjs +49 -27
- package/dist/building-blocks/inputs/InputHelperText.js +47 -27
- package/dist/building-blocks/inputs/index.cjs +3 -4
- package/dist/building-blocks/inputs/index.js +1 -4
- package/dist/building-blocks/inputs/internal/TextBelowInput.cjs +5 -5
- package/dist/building-blocks/inputs/internal/TextBelowInput.js +5 -5
- package/dist/building-blocks/inputs/internal/ValidationText.cjs +25 -15
- package/dist/building-blocks/inputs/internal/ValidationText.js +23 -14
- package/dist/building-blocks/inputs/internal/textBelowInput.css.cjs +35 -35
- package/dist/building-blocks/inputs/internal/textBelowInput.css.js +35 -35
- package/dist/building-blocks/skeletons/CircularSkeleton.cjs +35 -18
- package/dist/building-blocks/skeletons/CircularSkeleton.js +31 -14
- package/dist/building-blocks/skeletons/RectangularSkeleton.cjs +30 -9
- package/dist/building-blocks/skeletons/RectangularSkeleton.js +26 -5
- package/dist/building-blocks/skeletons/TextSkeleton.cjs +39 -14
- package/dist/building-blocks/skeletons/TextSkeleton.js +35 -10
- package/dist/building-blocks/skeletons/index.cjs +6 -7
- package/dist/building-blocks/skeletons/index.js +1 -5
- package/dist/components/actions/buttons/ButtonBase.cjs +42 -54
- package/dist/components/actions/buttons/ButtonBase.js +36 -31
- package/dist/components/actions/buttons/DangerButton.cjs +12 -6
- package/dist/components/actions/buttons/DangerButton.js +10 -5
- package/dist/components/actions/buttons/GhostButton.cjs +14 -6
- package/dist/components/actions/buttons/GhostButton.js +12 -5
- package/dist/components/actions/buttons/IconButton.cjs +45 -23
- package/dist/components/actions/buttons/IconButton.js +42 -20
- package/dist/components/actions/buttons/PrimaryButton.cjs +14 -6
- package/dist/components/actions/buttons/PrimaryButton.js +12 -5
- package/dist/components/actions/buttons/SecondaryButton.cjs +12 -6
- package/dist/components/actions/buttons/SecondaryButton.js +10 -5
- package/dist/components/actions/buttons/SuccessButton.cjs +14 -6
- package/dist/components/actions/buttons/SuccessButton.js +12 -5
- package/dist/components/actions/buttons/TextButton.cjs +33 -24
- package/dist/components/actions/buttons/TextButton.js +29 -20
- package/dist/components/actions/buttons/createButtonVariant.cjs +24 -24
- package/dist/components/actions/buttons/createButtonVariant.js +21 -21
- package/dist/components/actions/buttons/index.cjs +14 -15
- package/dist/components/actions/buttons/index.js +1 -9
- package/dist/components/actions/buttons/styles.css.cjs +125 -143
- package/dist/components/actions/buttons/styles.css.d.ts.map +1 -1
- package/dist/components/actions/buttons/styles.css.js +120 -143
- package/dist/components/actions/chips/ActionChip.cjs +51 -29
- package/dist/components/actions/chips/ActionChip.js +45 -23
- package/dist/components/actions/chips/FilterChip.cjs +46 -29
- package/dist/components/actions/chips/FilterChip.js +40 -23
- package/dist/components/actions/chips/TagChip.cjs +46 -23
- package/dist/components/actions/chips/TagChip.js +40 -17
- package/dist/components/actions/chips/index.cjs +6 -7
- package/dist/components/actions/chips/index.js +1 -5
- package/dist/components/actions/chips/styles.css.cjs +61 -69
- package/dist/components/actions/chips/styles.css.d.ts.map +1 -1
- package/dist/components/actions/chips/styles.css.js +58 -68
- package/dist/components/actions/index.cjs +31 -29
- package/dist/components/actions/index.js +5 -17
- package/dist/components/actions/selectionControls/Checkbox.cjs +91 -52
- package/dist/components/actions/selectionControls/Checkbox.js +87 -49
- package/dist/components/actions/selectionControls/RadioButton.cjs +94 -74
- package/dist/components/actions/selectionControls/RadioButton.js +88 -68
- package/dist/components/actions/selectionControls/RadioGroup.cjs +54 -27
- package/dist/components/actions/selectionControls/RadioGroup.js +51 -25
- package/dist/components/actions/selectionControls/Switch.cjs +101 -41
- package/dist/components/actions/selectionControls/Switch.js +96 -37
- package/dist/components/actions/selectionControls/checkbox.css.cjs +70 -114
- package/dist/components/actions/selectionControls/checkbox.css.js +68 -114
- package/dist/components/actions/selectionControls/index.cjs +8 -9
- package/dist/components/actions/selectionControls/index.js +2 -7
- package/dist/components/actions/selectionControls/radiobutton.css.cjs +75 -107
- package/dist/components/actions/selectionControls/radiobutton.css.js +73 -107
- package/dist/components/actions/selectionControls/radiogroup.css.cjs +24 -40
- package/dist/components/actions/selectionControls/radiogroup.css.d.ts.map +1 -1
- package/dist/components/actions/selectionControls/radiogroup.css.js +24 -42
- package/dist/components/actions/selectionControls/shared.cjs +27 -21
- package/dist/components/actions/selectionControls/shared.css.cjs +45 -71
- package/dist/components/actions/selectionControls/shared.css.d.ts.map +1 -1
- package/dist/components/actions/selectionControls/shared.css.js +41 -72
- package/dist/components/actions/selectionControls/shared.js +24 -20
- package/dist/components/actions/selectionControls/switch.css.cjs +142 -214
- package/dist/components/actions/selectionControls/switch.css.d.ts.map +1 -1
- package/dist/components/actions/selectionControls/switch.css.js +137 -221
- package/dist/components/feedback/alerts/AlertBanner.cjs +64 -28
- package/dist/components/feedback/alerts/AlertBanner.css.cjs +47 -60
- package/dist/components/feedback/alerts/AlertBanner.css.d.ts.map +1 -1
- package/dist/components/feedback/alerts/AlertBanner.css.js +46 -66
- package/dist/components/feedback/alerts/AlertBanner.js +59 -23
- package/dist/components/feedback/alerts/index.cjs +2 -3
- package/dist/components/feedback/alerts/index.js +1 -3
- package/dist/components/feedback/index.cjs +16 -13
- package/dist/components/feedback/index.js +5 -9
- package/dist/components/feedback/loaders/LoadingBar.cjs +34 -17
- package/dist/components/feedback/loaders/LoadingBar.js +32 -17
- package/dist/components/feedback/loaders/LoadingSpinner.cjs +32 -26
- package/dist/components/feedback/loaders/LoadingSpinner.js +31 -25
- package/dist/components/feedback/loaders/index.cjs +5 -6
- package/dist/components/feedback/loaders/index.js +1 -5
- package/dist/components/feedback/loaders/loadingBar.css.cjs +19 -33
- package/dist/components/feedback/loaders/loadingBar.css.d.ts.map +1 -1
- package/dist/components/feedback/loaders/loadingBar.css.js +17 -33
- package/dist/components/feedback/loaders/loadingSpinner.css.cjs +18 -21
- package/dist/components/feedback/loaders/loadingSpinner.css.d.ts.map +1 -1
- package/dist/components/feedback/loaders/loadingSpinner.css.js +16 -20
- package/dist/components/feedback/notifications/Lozenge.cjs +9 -5
- package/dist/components/feedback/notifications/Lozenge.js +9 -5
- package/dist/components/feedback/notifications/index.cjs +2 -3
- package/dist/components/feedback/notifications/index.js +1 -3
- package/dist/components/feedback/notifications/lozenge.css.cjs +58 -64
- package/dist/components/feedback/notifications/lozenge.css.js +54 -61
- package/dist/components/feedback/progress/ProgressBar.cjs +30 -22
- package/dist/components/feedback/progress/ProgressBar.css.cjs +20 -22
- package/dist/components/feedback/progress/ProgressBar.css.d.ts.map +1 -1
- package/dist/components/feedback/progress/ProgressBar.css.js +19 -26
- package/dist/components/feedback/progress/ProgressBar.js +27 -21
- package/dist/components/feedback/progress/index.cjs +3 -4
- package/dist/components/feedback/progress/index.js +1 -4
- package/dist/components/index.cjs +73 -69
- package/dist/components/index.js +9 -41
- package/dist/components/inputs/dropdowns/MultiSelect.cjs +9 -4
- package/dist/components/inputs/dropdowns/MultiSelect.js +9 -4
- package/dist/components/inputs/dropdowns/SelectBase.cjs +126 -99
- package/dist/components/inputs/dropdowns/SelectBase.js +122 -78
- package/dist/components/inputs/dropdowns/SingleSelect.cjs +11 -4
- package/dist/components/inputs/dropdowns/SingleSelect.js +11 -4
- package/dist/components/inputs/dropdowns/index.cjs +4 -5
- package/dist/components/inputs/dropdowns/index.js +1 -4
- package/dist/components/inputs/dropdowns/select.css.cjs +71 -92
- package/dist/components/inputs/dropdowns/select.css.js +69 -96
- package/dist/components/inputs/index.cjs +15 -13
- package/dist/components/inputs/index.js +4 -9
- package/dist/components/inputs/pickers/Calendar.css.cjs +100 -138
- package/dist/components/inputs/pickers/Calendar.css.d.ts.map +1 -1
- package/dist/components/inputs/pickers/Calendar.css.js +96 -144
- package/dist/components/inputs/pickers/calendar.cjs +278 -201
- package/dist/components/inputs/pickers/calendar.js +272 -196
- package/dist/components/inputs/pickers/index.cjs +2 -3
- package/dist/components/inputs/pickers/index.js +1 -3
- package/dist/components/inputs/shared-styles/iconButtonOverlay.css.cjs +32 -38
- package/dist/components/inputs/shared-styles/iconButtonOverlay.css.js +30 -37
- package/dist/components/inputs/shared-styles/inputField.css.cjs +100 -140
- package/dist/components/inputs/shared-styles/inputField.css.d.ts.map +1 -1
- package/dist/components/inputs/shared-styles/inputField.css.js +97 -141
- package/dist/components/inputs/shared-styles/inputFieldConstants.css.cjs +8 -7
- package/dist/components/inputs/shared-styles/inputFieldConstants.css.js +7 -10
- package/dist/components/inputs/shared-styles/labelStyles.css.cjs +152 -176
- package/dist/components/inputs/shared-styles/labelStyles.css.js +149 -174
- package/dist/components/inputs/shared-styles/suffixPrefix.css.cjs +13 -10
- package/dist/components/inputs/shared-styles/suffixPrefix.css.js +12 -11
- package/dist/components/inputs/shared.cjs +92 -93
- package/dist/components/inputs/shared.js +87 -92
- package/dist/components/inputs/textFields/TextArea.cjs +131 -62
- package/dist/components/inputs/textFields/TextArea.js +125 -58
- package/dist/components/inputs/textFields/TextField.cjs +140 -74
- package/dist/components/inputs/textFields/TextField.js +134 -68
- package/dist/components/inputs/textFields/index.cjs +6 -7
- package/dist/components/inputs/textFields/index.js +1 -6
- package/dist/components/inputs/textFields/textArea.css.cjs +17 -21
- package/dist/components/inputs/textFields/textArea.css.js +17 -21
- package/dist/components/progress/Spinner.cjs +19 -14
- package/dist/components/progress/Spinner.js +16 -12
- package/dist/components/progress/index.cjs +2 -3
- package/dist/components/progress/index.js +1 -3
- package/dist/components/progress/spinner.css.cjs +21 -24
- package/dist/components/progress/spinner.css.d.ts.map +1 -1
- package/dist/components/progress/spinner.css.js +20 -24
- package/dist/components/surfaces/accordion/Accordion.cjs +41 -17
- package/dist/components/surfaces/accordion/Accordion.js +38 -15
- package/dist/components/surfaces/accordion/accordion.css.cjs +45 -72
- package/dist/components/surfaces/accordion/accordion.css.js +41 -73
- package/dist/components/surfaces/accordion/index.cjs +2 -3
- package/dist/components/surfaces/accordion/index.js +1 -3
- package/dist/components/surfaces/cards/ActionCard.cjs +29 -19
- package/dist/components/surfaces/cards/ActionCard.js +26 -16
- package/dist/components/surfaces/cards/CheckboxCard.cjs +44 -14
- package/dist/components/surfaces/cards/CheckboxCard.js +39 -9
- package/dist/components/surfaces/cards/InfoCard.cjs +27 -14
- package/dist/components/surfaces/cards/InfoCard.js +24 -11
- package/dist/components/surfaces/cards/LinkCard.cjs +29 -19
- package/dist/components/surfaces/cards/LinkCard.js +26 -16
- package/dist/components/surfaces/cards/RadioCard.cjs +45 -14
- package/dist/components/surfaces/cards/RadioCard.js +40 -9
- package/dist/components/surfaces/cards/SharedComponents.cjs +19 -21
- package/dist/components/surfaces/cards/SharedComponents.js +17 -20
- package/dist/components/surfaces/cards/cards.css.cjs +83 -80
- package/dist/components/surfaces/cards/cards.css.d.ts.map +1 -1
- package/dist/components/surfaces/cards/cards.css.js +78 -76
- package/dist/components/surfaces/cards/checkboxCard.css.cjs +21 -31
- package/dist/components/surfaces/cards/checkboxCard.css.js +19 -30
- package/dist/components/surfaces/cards/index.cjs +10 -11
- package/dist/components/surfaces/cards/index.js +2 -8
- package/dist/components/surfaces/cards/internal/SelectionCard.cjs +36 -31
- package/dist/components/surfaces/cards/internal/SelectionCard.css.cjs +28 -39
- package/dist/components/surfaces/cards/internal/SelectionCard.css.js +27 -40
- package/dist/components/surfaces/cards/internal/SelectionCard.js +34 -31
- package/dist/components/surfaces/index.cjs +17 -15
- package/dist/components/surfaces/index.js +5 -10
- package/dist/components/surfaces/modal/Modal.cjs +128 -101
- package/dist/components/surfaces/modal/Modal.js +121 -94
- package/dist/components/surfaces/modal/index.cjs +2 -3
- package/dist/components/surfaces/modal/index.js +1 -3
- package/dist/components/surfaces/modal/modal.css.cjs +210 -253
- package/dist/components/surfaces/modal/modal.css.js +206 -256
- package/dist/fonts/VW/VWHeadWeb-Bold.woff2.cjs +4 -4
- package/dist/fonts/VW/VWHeadWeb-Bold.woff2.js +4 -4
- package/dist/fonts/VW/VWHeadWeb-ExtraBold.woff2.cjs +4 -4
- package/dist/fonts/VW/VWHeadWeb-ExtraBold.woff2.js +4 -4
- package/dist/fonts/VW/VWHeadWeb-Regular.woff2.cjs +4 -4
- package/dist/fonts/VW/VWHeadWeb-Regular.woff2.js +4 -4
- package/dist/fonts/VW/VWTextWeb-Bold.woff2.cjs +4 -4
- package/dist/fonts/VW/VWTextWeb-Bold.woff2.js +4 -4
- package/dist/fonts/VW/VWTextWeb-Regular.woff2.cjs +4 -4
- package/dist/fonts/VW/VWTextWeb-Regular.woff2.js +4 -4
- package/dist/fonts/VW/head-bold.css.cjs +10 -8
- package/dist/fonts/VW/head-bold.css.js +7 -5
- package/dist/fonts/VW/head-extra-bold.css.cjs +10 -9
- package/dist/fonts/VW/head-extra-bold.css.js +7 -6
- package/dist/fonts/VW/head-regular.css.cjs +10 -8
- package/dist/fonts/VW/head-regular.css.js +7 -5
- package/dist/fonts/VW/index.cjs +13 -3
- package/dist/fonts/VW/index.js +13 -5
- package/dist/fonts/VW/text-bold.css.cjs +10 -8
- package/dist/fonts/VW/text-bold.css.js +7 -5
- package/dist/fonts/VW/text-regular.css.cjs +10 -8
- package/dist/fonts/VW/text-regular.css.js +7 -5
- package/dist/fonts/audi/AudiType-Bold_4.03.woff2.cjs +4 -4
- package/dist/fonts/audi/AudiType-Bold_4.03.woff2.js +4 -4
- package/dist/fonts/audi/AudiType-ExtendedBold_4.03.woff2.cjs +4 -4
- package/dist/fonts/audi/AudiType-ExtendedBold_4.03.woff2.js +4 -4
- package/dist/fonts/audi/AudiType-ExtendedNormal_4.03.woff2.cjs +4 -4
- package/dist/fonts/audi/AudiType-ExtendedNormal_4.03.woff2.js +4 -4
- package/dist/fonts/audi/AudiType-Normal_4.03.woff2.cjs +4 -4
- package/dist/fonts/audi/AudiType-Normal_4.03.woff2.js +4 -4
- package/dist/fonts/audi/bold.css.cjs +10 -8
- package/dist/fonts/audi/bold.css.js +7 -5
- package/dist/fonts/audi/extended-bold.css.cjs +10 -8
- package/dist/fonts/audi/extended-bold.css.js +7 -5
- package/dist/fonts/audi/extended-regular.css.cjs +10 -8
- package/dist/fonts/audi/extended-regular.css.js +7 -5
- package/dist/fonts/audi/index.cjs +13 -3
- package/dist/fonts/audi/index.js +13 -5
- package/dist/fonts/audi/regular.css.cjs +10 -8
- package/dist/fonts/audi/regular.css.js +7 -5
- package/dist/fonts/autoria/Texgyreheros-Bold.woff2.cjs +4 -4
- package/dist/fonts/autoria/Texgyreheros-Bold.woff2.js +4 -4
- package/dist/fonts/autoria/Texgyreheros-Regular.woff2.cjs +4 -4
- package/dist/fonts/autoria/Texgyreheros-Regular.woff2.js +4 -4
- package/dist/fonts/autoria/bold.css.cjs +10 -8
- package/dist/fonts/autoria/bold.css.js +7 -5
- package/dist/fonts/autoria/index.cjs +13 -3
- package/dist/fonts/autoria/index.js +13 -5
- package/dist/fonts/autoria/regular.css.cjs +10 -8
- package/dist/fonts/autoria/regular.css.js +7 -5
- package/dist/fonts/bilhold/GeistVariableVF.woff2.cjs +5 -0
- package/dist/fonts/bilhold/GeistVariableVF.woff2.js +5 -0
- package/dist/fonts/bilhold/index.cjs +13 -4
- package/dist/fonts/bilhold/index.d.ts +0 -1
- package/dist/fonts/bilhold/index.d.ts.map +1 -1
- package/dist/fonts/bilhold/index.js +13 -6
- package/dist/fonts/bilhold/regular.css.cjs +11 -8
- package/dist/fonts/bilhold/regular.css.js +8 -5
- package/dist/fonts/cupra/Cupra-Bold.woff2.cjs +4 -4
- package/dist/fonts/cupra/Cupra-Bold.woff2.js +4 -4
- package/dist/fonts/cupra/Cupra-Book.woff2.cjs +4 -4
- package/dist/fonts/cupra/Cupra-Book.woff2.js +4 -4
- package/dist/fonts/cupra/Cupra-Medium.woff2.cjs +4 -4
- package/dist/fonts/cupra/Cupra-Medium.woff2.js +4 -4
- package/dist/fonts/cupra/Cupra-Regular.woff2.cjs +4 -4
- package/dist/fonts/cupra/Cupra-Regular.woff2.js +4 -4
- package/dist/fonts/cupra/bold.css.cjs +10 -8
- package/dist/fonts/cupra/bold.css.js +7 -5
- package/dist/fonts/cupra/book.css.cjs +10 -8
- package/dist/fonts/cupra/book.css.js +7 -5
- package/dist/fonts/cupra/index.cjs +13 -3
- package/dist/fonts/cupra/index.js +13 -5
- package/dist/fonts/cupra/medium.css.cjs +10 -8
- package/dist/fonts/cupra/medium.css.js +7 -5
- package/dist/fonts/cupra/regular.css.cjs +10 -8
- package/dist/fonts/cupra/regular.css.js +7 -5
- package/dist/fonts/dahles/SourceSans3-Bold.woff2.cjs +4 -4
- package/dist/fonts/dahles/SourceSans3-Bold.woff2.js +4 -4
- package/dist/fonts/dahles/SourceSans3-Medium.woff2.cjs +4 -4
- package/dist/fonts/dahles/SourceSans3-Medium.woff2.js +4 -4
- package/dist/fonts/dahles/SourceSans3-Regular.woff2.cjs +4 -4
- package/dist/fonts/dahles/SourceSans3-Regular.woff2.js +4 -4
- package/dist/fonts/dahles/SourceSans3-SemiBold.woff2.cjs +4 -4
- package/dist/fonts/dahles/SourceSans3-SemiBold.woff2.js +4 -4
- package/dist/fonts/dahles/bold.css.cjs +10 -8
- package/dist/fonts/dahles/bold.css.js +7 -5
- package/dist/fonts/dahles/index.cjs +13 -3
- package/dist/fonts/dahles/index.js +13 -5
- package/dist/fonts/dahles/medium.css.cjs +10 -8
- package/dist/fonts/dahles/medium.css.js +7 -5
- package/dist/fonts/dahles/regular.css.cjs +10 -8
- package/dist/fonts/dahles/regular.css.js +7 -5
- package/dist/fonts/dahles/semibold.css.cjs +10 -8
- package/dist/fonts/dahles/semibold.css.js +7 -5
- package/dist/fonts/gumpen/ES-Build-Bold.woff2.cjs +4 -4
- package/dist/fonts/gumpen/ES-Build-Bold.woff2.js +4 -4
- package/dist/fonts/gumpen/ES-Build-Medium.woff2.cjs +4 -4
- package/dist/fonts/gumpen/ES-Build-Medium.woff2.js +4 -4
- package/dist/fonts/gumpen/ES-Build-Regular.woff2.cjs +4 -4
- package/dist/fonts/gumpen/ES-Build-Regular.woff2.js +4 -4
- package/dist/fonts/gumpen/ES-Build-SemiBold.woff2.cjs +4 -4
- package/dist/fonts/gumpen/ES-Build-SemiBold.woff2.js +4 -4
- package/dist/fonts/gumpen/bold.css.cjs +10 -8
- package/dist/fonts/gumpen/bold.css.js +7 -5
- package/dist/fonts/gumpen/index.cjs +13 -3
- package/dist/fonts/gumpen/index.js +13 -5
- package/dist/fonts/gumpen/medium.css.cjs +10 -8
- package/dist/fonts/gumpen/medium.css.js +7 -5
- package/dist/fonts/gumpen/regular.css.cjs +10 -8
- package/dist/fonts/gumpen/regular.css.js +7 -5
- package/dist/fonts/gumpen/semibold.css.cjs +10 -8
- package/dist/fonts/gumpen/semibold.css.js +7 -5
- package/dist/fonts/index.cjs +144 -62
- package/dist/fonts/index.js +144 -73
- package/dist/fonts/moller/Larken-Bold.woff2.cjs +4 -4
- package/dist/fonts/moller/Larken-Bold.woff2.js +4 -4
- package/dist/fonts/moller/bold.css.cjs +14 -12
- package/dist/fonts/moller/bold.css.js +10 -8
- package/dist/fonts/moller/index.cjs +14 -4
- package/dist/fonts/moller/index.js +14 -6
- package/dist/fonts/moller/medium.css.cjs +10 -10
- package/dist/fonts/moller/medium.css.js +7 -7
- package/dist/fonts/moller/moller-bold-webfont.woff2.cjs +4 -4
- package/dist/fonts/moller/moller-bold-webfont.woff2.js +4 -4
- package/dist/fonts/moller/moller-book-webfont.woff2.cjs +4 -4
- package/dist/fonts/moller/moller-book-webfont.woff2.js +4 -4
- package/dist/fonts/moller/moller-medium-webfont.woff2.cjs +4 -4
- package/dist/fonts/moller/moller-medium-webfont.woff2.js +4 -4
- package/dist/fonts/moller/moller-regular-webfont.woff2.cjs +4 -4
- package/dist/fonts/moller/moller-regular-webfont.woff2.js +4 -4
- package/dist/fonts/moller/regular.css.cjs +10 -8
- package/dist/fonts/moller/regular.css.js +7 -5
- package/dist/fonts/moller/semibold.css.cjs +10 -10
- package/dist/fonts/moller/semibold.css.js +7 -7
- package/dist/fonts/seat/SEATBCN-Bold.woff2.cjs +4 -4
- package/dist/fonts/seat/SEATBCN-Bold.woff2.js +4 -4
- package/dist/fonts/seat/SEATBCN-Light.woff2.cjs +4 -4
- package/dist/fonts/seat/SEATBCN-Light.woff2.js +4 -4
- package/dist/fonts/seat/SEATBCN-Medium.woff2.cjs +4 -4
- package/dist/fonts/seat/SEATBCN-Medium.woff2.js +4 -4
- package/dist/fonts/seat/SEATBCN-Regular.woff2.cjs +4 -4
- package/dist/fonts/seat/SEATBCN-Regular.woff2.js +4 -4
- package/dist/fonts/seat/bold.css.cjs +10 -8
- package/dist/fonts/seat/bold.css.js +6 -4
- package/dist/fonts/seat/index.cjs +13 -3
- package/dist/fonts/seat/index.js +13 -5
- package/dist/fonts/seat/light.css.cjs +10 -8
- package/dist/fonts/seat/light.css.js +6 -4
- package/dist/fonts/seat/medium.css.cjs +10 -8
- package/dist/fonts/seat/medium.css.js +6 -4
- package/dist/fonts/seat/regular.css.cjs +10 -8
- package/dist/fonts/seat/regular.css.js +6 -4
- package/dist/fonts/skoda/SKODANextW07-Bold.woff2.cjs +4 -4
- package/dist/fonts/skoda/SKODANextW07-Bold.woff2.js +4 -4
- package/dist/fonts/skoda/SKODANextW07-Thin.woff2.cjs +4 -4
- package/dist/fonts/skoda/SKODANextW07-Thin.woff2.js +4 -4
- package/dist/fonts/skoda/bold.css.cjs +10 -8
- package/dist/fonts/skoda/bold.css.js +7 -5
- package/dist/fonts/skoda/index.cjs +13 -3
- package/dist/fonts/skoda/index.js +13 -5
- package/dist/fonts/skoda/medium.css.cjs +10 -8
- package/dist/fonts/skoda/medium.css.js +7 -5
- package/dist/fonts/skoda/regular.css.cjs +10 -8
- package/dist/fonts/skoda/regular.css.js +7 -5
- package/dist/fonts/skoda/semibold.css.cjs +10 -8
- package/dist/fonts/skoda/semibold.css.js +7 -5
- package/dist/fonts/tools/GeistVariableVF.woff2.cjs +4 -4
- package/dist/fonts/tools/GeistVariableVF.woff2.js +4 -4
- package/dist/fonts/tools/index.cjs +13 -3
- package/dist/fonts/tools/index.js +13 -5
- package/dist/fonts/tools/regular.css.cjs +11 -9
- package/dist/fonts/tools/regular.css.js +8 -6
- package/dist/foundation/iconography/ExtraIconsProvider.cjs +63 -7
- package/dist/foundation/iconography/ExtraIconsProvider.js +61 -7
- package/dist/foundation/iconography/Icon.cjs +63 -41
- package/dist/foundation/iconography/Icon.css.cjs +16 -16
- package/dist/foundation/iconography/Icon.css.d.ts.map +1 -1
- package/dist/foundation/iconography/Icon.css.js +15 -19
- package/dist/foundation/iconography/Icon.js +56 -34
- package/dist/foundation/iconography/IconVariantProvider.cjs +36 -7
- package/dist/foundation/iconography/IconVariantProvider.js +34 -7
- package/dist/foundation/iconography/icons.cjs +76 -63
- package/dist/foundation/iconography/icons.d.ts +1 -1
- package/dist/foundation/iconography/icons.d.ts.map +1 -1
- package/dist/foundation/iconography/icons.js +77 -65
- package/dist/foundation/iconography/index.cjs +8 -9
- package/dist/foundation/iconography/index.js +1 -6
- package/dist/foundation/iconography/svg/action/assignment-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/assignment-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/assignment-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/assignment-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/assignment-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/assignment-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/assignment-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/assignment-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/bolt-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/bolt-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/bolt-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/bolt-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/bolt-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/bolt-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/bolt-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/bolt-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/build-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/build-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/build-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/build-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/build-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/build-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/build-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/build-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calculate-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calculate-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calculate-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calculate-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calculate-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calculate-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calculate-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calculate-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calendar-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calendar-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calendar-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calendar-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calendar-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calendar-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/calendar-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/calendar-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car_crash-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car_crash-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car_crash-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car_crash-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car_crash-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car_crash-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/car_crash-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/car_crash-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/change-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/change-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/change-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/change-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/change-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/change-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/change-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/change-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/code-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/code-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/code-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/code-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/code-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/code-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/code-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/code-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/contract-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/contract-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/contract-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/contract-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/contract-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/contract-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/contract-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/contract-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/edit-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/edit-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/edit-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/edit-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/edit-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/edit-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/edit-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/edit-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/electric_car-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/electric_car-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/electric_car-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/electric_car-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/electric_car-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/electric_car-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/electric_car-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/electric_car-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/explore-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/explore-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/explore-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/explore-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/explore-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/explore-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/explore-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/explore-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/glass_damage-filled.svg-react.cjs +22 -0
- package/dist/foundation/iconography/svg/action/glass_damage-filled.svg-react.js +20 -0
- package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg-react.cjs +22 -0
- package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg-react.js +20 -0
- package/dist/foundation/iconography/svg/action/glass_damage-round.svg-react.cjs +22 -0
- package/dist/foundation/iconography/svg/action/glass_damage-round.svg-react.js +20 -0
- package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg-react.cjs +22 -0
- package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg-react.js +20 -0
- package/dist/foundation/iconography/svg/action/home-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/home-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/home-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/home-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/home-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/home-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/home-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/home-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/index.cjs +451 -423
- package/dist/foundation/iconography/svg/action/index.d.ts +0 -52
- package/dist/foundation/iconography/svg/action/index.d.ts.map +1 -1
- package/dist/foundation/iconography/svg/action/index.js +446 -464
- package/dist/foundation/iconography/svg/action/lightbulb-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/lightbulb-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/lightbulb-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/lightbulb-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/login-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/login-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/login-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/login-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/login-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/login-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/login-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/login-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/logout-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/logout-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/logout-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/logout-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/logout-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/logout-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/logout-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/logout-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/manual_gear-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/manual_gear-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/manual_gear-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/manual_gear-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/minor_crash-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/minor_crash-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/minor_crash-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/minor_crash-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/notifications-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/notifications-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/notifications-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/notifications-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/notifications-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/notifications-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/notifications-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/notifications-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/payment-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/payment-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/payment-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/payment-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/payment-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/payment-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/payment-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/payment-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/pets-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/pets-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/pets-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/pets-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/pets-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/pets-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/pets-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/pets-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/play_circle-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/play_circle-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/play_circle-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/play_circle-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/play_circle-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/play_circle-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/play_circle-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/play_circle-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/print-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/print-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/print-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/print-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/print-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/print-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/print-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/print-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/query_stats-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/query_stats-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/query_stats-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/query_stats-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/query_stats-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/query_stats-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/query_stats-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/query_stats-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/savings-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/savings-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/savings-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/savings-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/savings-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/savings-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/savings-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/savings-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/schedule-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/schedule-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/schedule-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/schedule-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/schedule-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/schedule-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/schedule-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/schedule-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/settings-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/settings-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/settings-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/settings-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/settings-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/settings-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/settings-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/settings-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/signature-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/signature-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/signature-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/signature-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/signature-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/signature-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/signature-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/signature-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/sort-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/sort-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/sort-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/sort-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/sort-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/sort-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/sort-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/sort-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/speed-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/speed-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/speed-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/speed-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/speed-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/speed-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/speed-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/speed-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tire-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tire-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tire-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tire-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tire-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tire-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tire-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tire-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/trash-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/trash-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/trash-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/trash-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/trash-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/trash-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/trash-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/trash-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tune-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tune-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tune-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tune-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tune-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tune-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/tune-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/tune-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/verified-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/verified-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/verified-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/verified-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/verified-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/verified-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/verified-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/verified-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_off-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_off-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_off-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_off-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_on-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_on-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_on-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_on-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/call-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/call-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/call-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/call-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/call-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/call-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/call-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/call-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/chat-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/chat-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/chat-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/chat-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/chat-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/chat-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/chat-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/communication/chat-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/communication/index.cjs +31 -19
- package/dist/foundation/iconography/svg/communication/index.js +26 -22
- package/dist/foundation/iconography/svg/content/add-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add_circle-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add_circle-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add_circle-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add_circle-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add_circle-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add_circle-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/add_circle-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/add_circle-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/auto-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/auto-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/auto-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/auto-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/auto-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/auto-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/auto-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/auto-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/backspace-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/backspace-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/backspace-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/backspace-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/backspace-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/backspace-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/backspace-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/backspace-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/clear-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/clear-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/clear-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/clear-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/clear-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/clear-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/clear-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/clear-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/content_copy-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/content_copy-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/content_copy-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/content_copy-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/content_copy-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/content_copy-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/content_copy-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/content_copy-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/index.cjs +135 -91
- package/dist/foundation/iconography/svg/content/index.d.ts +52 -0
- package/dist/foundation/iconography/svg/content/index.d.ts.map +1 -1
- package/dist/foundation/iconography/svg/content/index.js +127 -101
- package/dist/foundation/iconography/svg/content/mail-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/mail-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/mail-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/mail-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/mail-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/mail-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/mail-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/mail-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/manage_account-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/manage_account-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/manage_account-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/manage_account-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/manage_account-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/manage_account-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/manage_account-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/manage_account-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/person-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/person-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/person-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/person-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/person-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/person-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/person-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/person-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/remove-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/remove-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/remove-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/remove-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/remove-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/remove-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/remove-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/remove-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/send-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/send-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/send-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/send-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/send-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/send-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/send-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/send-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/work-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/work-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/work-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/work-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/work-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/work-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/content/work-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/content/work-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/device/index.cjs +19 -10
- package/dist/foundation/iconography/svg/device/index.js +14 -12
- package/dist/foundation/iconography/svg/device/task-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/device/task-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/device/task-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/device/task-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/device/task-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/device/task-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/device/task-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/device/task-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/archive-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/archive-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/archive-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/archive-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/archive-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/archive-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/archive-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/archive-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_copy-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_copy-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_copy-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_copy-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_copy-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_copy-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_copy-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_copy-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download_off-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download_off-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download_off-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download_off-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_open-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_open-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_open-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_open-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_open-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_open-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_open-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_open-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_upload-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_upload-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_upload-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_upload-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_upload-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_upload-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/file_upload-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/file_upload-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/index.cjs +81 -64
- package/dist/foundation/iconography/svg/file/index.js +76 -72
- package/dist/foundation/iconography/svg/file/unarchive-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/unarchive-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/unarchive-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/unarchive-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/unarchive-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/unarchive-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/file/unarchive-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/file/unarchive-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/index.cjs +84 -25
- package/dist/foundation/iconography/svg/index.js +13 -26
- package/dist/foundation/iconography/svg/map/ev_station-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/ev_station-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/ev_station-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/ev_station-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/ev_station-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/ev_station-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/ev_station-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/ev_station-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/forest-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/forest-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/forest-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/forest-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/forest-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/forest-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/forest-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/forest-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/gas_station-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/gas_station-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/gas_station-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/gas_station-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/gas_station-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/gas_station-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/gas_station-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/gas_station-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/index.cjs +61 -46
- package/dist/foundation/iconography/svg/map/index.js +56 -52
- package/dist/foundation/iconography/svg/map/location-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/location-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/location-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/location-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/location-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/location-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/location-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/location-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/route-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/route-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/route-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/route-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/route-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/route-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/map/route-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/map/route-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/check-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/check-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/check-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/check-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/check-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/check-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/check-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/check-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/close-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/close-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/close-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/close-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/close-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/close-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/close-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/close-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/external-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/external-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/external-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/external-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/external-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/external-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/external-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/external-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/index.cjs +220 -191
- package/dist/foundation/iconography/svg/navigation/index.js +215 -211
- package/dist/foundation/iconography/svg/navigation/menu-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/menu-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/menu-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/menu-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/menu-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/menu-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/menu-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/menu-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/open-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/open-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/open-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/open-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/open-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/open-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/open-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/open-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/refresh-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/refresh-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/refresh-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/refresh-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/spinner-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/spinner-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/spinner-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/spinner-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/event_note-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/event_note-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/event_note-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/event_note-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/index.cjs +41 -28
- package/dist/foundation/iconography/svg/notifications/index.js +36 -32
- package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/wifi-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/wifi-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/wifi-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/wifi-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/coffee-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/coffee-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/coffee-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/coffee-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/coffee-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/coffee-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/coffee-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/coffee-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/index.cjs +31 -19
- package/dist/foundation/iconography/svg/search/index.js +26 -22
- package/dist/foundation/iconography/svg/search/search-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/search-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/search-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/search-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/search-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/search-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/search/search-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/search/search-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/index.cjs +61 -46
- package/dist/foundation/iconography/svg/social/index.js +56 -52
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/favorite-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/favorite-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/favorite-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/favorite-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/index.cjs +31 -19
- package/dist/foundation/iconography/svg/toggle/index.js +26 -22
- package/dist/foundation/iconography/svg/toggle/star-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/star-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/star-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/star-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/star-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/star-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/toggle/star-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/toggle/star-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/error-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/error-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/error-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/error-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/error-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/error-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/error-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/error-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/help-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/help-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/help-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/help-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/help-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/help-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/help-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/help-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/index.cjs +61 -46
- package/dist/foundation/iconography/svg/validation/index.js +56 -52
- package/dist/foundation/iconography/svg/validation/info-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/info-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/info-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/info-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/info-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/info-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/info-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/info-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/success-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/success-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/success-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/success-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/success-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/success-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/success-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/success-sharp.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/warning-filled.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/warning-filled.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/warning-outlined.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/warning-outlined.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/warning-round.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/warning-round.svg-react.js +17 -0
- package/dist/foundation/iconography/svg/validation/warning-sharp.svg-react.cjs +19 -0
- package/dist/foundation/iconography/svg/validation/warning-sharp.svg-react.js +17 -0
- package/dist/foundation/index.cjs +23 -22
- package/dist/foundation/index.js +3 -17
- package/dist/foundation/logos/Logo.cjs +47 -35
- package/dist/foundation/logos/Logo.css.cjs +16 -19
- package/dist/foundation/logos/Logo.css.d.ts.map +1 -1
- package/dist/foundation/logos/Logo.css.js +15 -20
- package/dist/foundation/logos/Logo.js +44 -32
- package/dist/foundation/logos/index.cjs +2 -3
- package/dist/foundation/logos/index.js +1 -3
- package/dist/foundation/logos/logos.cjs +33 -32
- package/dist/foundation/logos/logos.js +24 -23
- package/dist/foundation/logos/svg/audi/audi_symbol.svg-react.cjs +51 -0
- package/dist/foundation/logos/svg/audi/audi_symbol.svg-react.js +49 -0
- package/dist/foundation/logos/svg/audi/audi_wordmark.svg-react.cjs +51 -0
- package/dist/foundation/logos/svg/audi/audi_wordmark.svg-react.js +49 -0
- package/dist/foundation/logos/svg/audi/index.cjs +8 -7
- package/dist/foundation/logos/svg/audi/index.js +9 -9
- package/dist/foundation/logos/svg/autoria/autoria_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/autoria/autoria_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg-react.js +20 -0
- package/dist/foundation/logos/svg/autoria/index.cjs +8 -7
- package/dist/foundation/logos/svg/autoria/index.js +9 -9
- package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg-react.js +20 -0
- package/dist/foundation/logos/svg/bilhold/index.cjs +8 -7
- package/dist/foundation/logos/svg/bilhold/index.js +9 -9
- package/dist/foundation/logos/svg/cupra/cupra_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/cupra/cupra_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg-react.cjs +51 -0
- package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg-react.js +49 -0
- package/dist/foundation/logos/svg/cupra/index.cjs +8 -7
- package/dist/foundation/logos/svg/cupra/index.js +9 -9
- package/dist/foundation/logos/svg/dahles/dahles_symbol.svg-react.cjs +61 -0
- package/dist/foundation/logos/svg/dahles/dahles_symbol.svg-react.js +59 -0
- package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg-react.cjs +61 -0
- package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg-react.js +59 -0
- package/dist/foundation/logos/svg/dahles/index.cjs +8 -7
- package/dist/foundation/logos/svg/dahles/index.js +9 -9
- package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg-react.cjs +47 -0
- package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg-react.js +45 -0
- package/dist/foundation/logos/svg/gumpen/index.cjs +8 -7
- package/dist/foundation/logos/svg/gumpen/index.js +9 -9
- package/dist/foundation/logos/svg/index.cjs +29 -30
- package/dist/foundation/logos/svg/index.js +1 -21
- package/dist/foundation/logos/svg/mollerbil/index.cjs +8 -7
- package/dist/foundation/logos/svg/mollerbil/index.js +9 -9
- package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg-react.cjs +57 -0
- package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg-react.js +55 -0
- package/dist/foundation/logos/svg/others/albjerk_wordmark.svg-react.cjs +42 -0
- package/dist/foundation/logos/svg/others/albjerk_wordmark.svg-react.js +40 -0
- package/dist/foundation/logos/svg/others/alta_wordmark.svg-react.cjs +21 -0
- package/dist/foundation/logos/svg/others/alta_wordmark.svg-react.js +19 -0
- package/dist/foundation/logos/svg/others/berge_wordmark.svg-react.cjs +23 -0
- package/dist/foundation/logos/svg/others/berge_wordmark.svg-react.js +21 -0
- package/dist/foundation/logos/svg/others/fremme_wordmark.svg-react.cjs +31 -0
- package/dist/foundation/logos/svg/others/fremme_wordmark.svg-react.js +29 -0
- package/dist/foundation/logos/svg/others/index.cjs +47 -46
- package/dist/foundation/logos/svg/others/index.js +57 -65
- package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg-react.cjs +21 -0
- package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg-react.js +19 -0
- package/dist/foundation/logos/svg/others/mobile_wordmark.svg-react.cjs +30 -0
- package/dist/foundation/logos/svg/others/mobile_wordmark.svg-react.js +28 -0
- package/dist/foundation/logos/svg/others/slatlem_wordmark.svg-react.cjs +24 -0
- package/dist/foundation/logos/svg/others/slatlem_wordmark.svg-react.js +22 -0
- package/dist/foundation/logos/svg/others/sulland_wordmark.svg-react.cjs +63 -0
- package/dist/foundation/logos/svg/others/sulland_wordmark.svg-react.js +61 -0
- package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg-react.cjs +21 -0
- package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg-react.js +19 -0
- package/dist/foundation/logos/svg/skoda/index.cjs +8 -7
- package/dist/foundation/logos/svg/skoda/index.js +9 -9
- package/dist/foundation/logos/svg/skoda/skoda_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/skoda/skoda_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg-react.js +20 -0
- package/dist/foundation/logos/svg/vw/index.cjs +14 -13
- package/dist/foundation/logos/svg/vw/index.js +15 -16
- package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg-react.cjs +29 -0
- package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg-react.js +27 -0
- package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg-react.cjs +29 -0
- package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg-react.js +27 -0
- package/dist/foundation/logos/svg/vw/vw_symbol.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/vw/vw_symbol.svg-react.js +20 -0
- package/dist/foundation/logos/svg/vw/vw_wordmark.svg-react.cjs +22 -0
- package/dist/foundation/logos/svg/vw/vw_wordmark.svg-react.js +20 -0
- package/dist/foundation/typography/index.cjs +48 -15
- package/dist/foundation/typography/index.js +47 -25
- package/dist/foundation/typography/typography.css.cjs +13 -21
- package/dist/foundation/typography/typography.css.js +12 -28
- package/dist/index.cjs +145 -140
- package/dist/index.js +24 -107
- package/dist/styles/animations.css.cjs +6 -10
- package/dist/styles/animations.css.js +7 -11
- package/dist/styles/states.css.cjs +69 -102
- package/dist/styles/states.css.d.ts.map +1 -1
- package/dist/styles/states.css.js +66 -101
- package/dist/translations/LocalizationProvider.cjs +17 -27
- package/dist/translations/LocalizationProvider.js +14 -10
- package/dist/translations/en.cjs +60 -74
- package/dist/translations/en.js +61 -75
- package/dist/translations/index.cjs +35 -17
- package/dist/translations/index.js +29 -21
- package/dist/translations/no.cjs +60 -74
- package/dist/translations/no.js +61 -75
- package/dist/utilities/accessibility/ScreenReaderOnly.cjs +5 -5
- package/dist/utilities/accessibility/ScreenReaderOnly.js +4 -4
- package/dist/utilities/accessibility/index.cjs +4 -5
- package/dist/utilities/accessibility/index.js +2 -5
- package/dist/utilities/accessibility/visuallyHidden.css.cjs +15 -15
- package/dist/utilities/accessibility/visuallyHidden.css.js +16 -16
- package/dist/utilities/forms/formContext.cjs +61 -41
- package/dist/utilities/forms/formContext.js +58 -23
- package/dist/utilities/forms/formHelpers.cjs +60 -46
- package/dist/utilities/forms/formHelpers.js +58 -47
- package/dist/utilities/forms/formInputs.cjs +16 -17
- package/dist/utilities/forms/formInputs.js +17 -18
- package/dist/utilities/forms/index.cjs +7 -8
- package/dist/utilities/forms/index.js +1 -6
- package/dist/utilities/forms/internal/components.cjs +67 -75
- package/dist/utilities/forms/internal/components.js +61 -75
- package/dist/utilities/forms/useFormProps.cjs +25 -28
- package/dist/utilities/forms/useFormProps.js +24 -27
- package/dist/utilities/forms/useLocalFormState.cjs +77 -72
- package/dist/utilities/forms/useLocalFormState.js +76 -72
- package/dist/utilities/html/index.cjs +3 -2
- package/dist/utilities/html/index.js +4 -4
- package/dist/utilities/index.cjs +18 -18
- package/dist/utilities/index.js +3 -16
- package/dist/utilities/layout/Column.cjs +5 -5
- package/dist/utilities/layout/Column.js +5 -5
- package/dist/utilities/layout/Row.cjs +5 -5
- package/dist/utilities/layout/Row.js +5 -5
- package/dist/utilities/layout/breakpoints.cjs +5 -5
- package/dist/utilities/layout/breakpoints.js +6 -8
- package/dist/utilities/layout/index.cjs +8 -9
- package/dist/utilities/layout/index.js +1 -7
- package/dist/utilities/layout/styles.css.cjs +100 -100
- package/dist/utilities/layout/styles.css.js +99 -100
- package/dist/utilities/time/date.cjs +387 -388
- package/dist/utilities/time/date.js +388 -397
- package/dist/utilities/time/index.cjs +10 -11
- package/dist/utilities/time/index.js +1 -11
- package/dist/utilities/tokens/index.cjs +4 -5
- package/dist/utilities/tokens/index.js +1 -5
- package/dist/utilities/tokens/tokens.cjs +8 -10
- package/dist/utilities/tokens/tokens.js +9 -13
- package/dist/utilities/validation/index.cjs +24 -25
- package/dist/utilities/validation/index.js +2 -24
- package/dist/utilities/validation/regex.cjs +9 -11
- package/dist/utilities/validation/regex.js +10 -18
- package/dist/utilities/validation/validation.cjs +109 -93
- package/dist/utilities/validation/validation.js +109 -101
- package/dist/utilities/validation/validationSteps.cjs +12 -12
- package/dist/utilities/validation/validationSteps.js +12 -14
- package/dist/utilities/validation/validators.cjs +42 -66
- package/dist/utilities/validation/validators.js +42 -74
- package/package.json +7 -7
- package/dist/fonts/bilhold/Figtree-Bold.woff2.cjs +0 -5
- package/dist/fonts/bilhold/Figtree-Bold.woff2.js +0 -5
- package/dist/fonts/bilhold/Figtree-Medium.woff2.cjs +0 -5
- package/dist/fonts/bilhold/Figtree-Medium.woff2.js +0 -5
- package/dist/fonts/bilhold/Figtree-Regular.woff2.cjs +0 -5
- package/dist/fonts/bilhold/Figtree-Regular.woff2.js +0 -5
- package/dist/fonts/bilhold/Figtree-SemiBold.woff2.cjs +0 -5
- package/dist/fonts/bilhold/Figtree-SemiBold.woff2.js +0 -5
- package/dist/fonts/bilhold/bold.css.cjs +0 -10
- package/dist/fonts/bilhold/bold.css.d.ts +0 -2
- package/dist/fonts/bilhold/bold.css.d.ts.map +0 -1
- package/dist/fonts/bilhold/bold.css.js +0 -9
- package/dist/fonts/bilhold/medium.css.cjs +0 -10
- package/dist/fonts/bilhold/medium.css.d.ts +0 -2
- package/dist/fonts/bilhold/medium.css.d.ts.map +0 -1
- package/dist/fonts/bilhold/medium.css.js +0 -9
- package/dist/fonts/bilhold/semibold.css.cjs +0 -10
- package/dist/fonts/bilhold/semibold.css.d.ts +0 -2
- package/dist/fonts/bilhold/semibold.css.d.ts.map +0 -1
- package/dist/fonts/bilhold/semibold.css.js +0 -9
- package/dist/foundation/iconography/svg/action/assignment-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/assignment-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/assignment-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/assignment-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/assignment-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/assignment-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/assignment-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/assignment-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/automatic_gear-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/automatic_gear-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/automatic_gear-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/automatic_gear-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/automatic_gear-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/automatic_gear-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/automatic_gear-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/automatic_gear-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/binoculars-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/binoculars-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/binoculars-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/binoculars-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/binoculars-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/binoculars-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/binoculars-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/binoculars-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/bolt-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/bolt-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/bolt-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/bolt-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/bolt-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/bolt-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/bolt-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/bolt-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/build-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/build-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/build-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/build-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/build-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/build-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/build-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/build-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calculate-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calculate-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calculate-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calculate-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calculate-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calculate-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calculate-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calculate-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calendar-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calendar-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calendar-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calendar-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calendar-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calendar-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/calendar-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/calendar-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car_crash-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car_crash-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car_crash-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car_crash-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car_crash-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car_crash-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/car_crash-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/car_crash-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/change-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/change-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/change-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/change-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/change-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/change-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/change-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/change-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/code-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/code-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/code-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/code-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/code-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/code-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/code-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/code-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/contract-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/contract-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/contract-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/contract-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/contract-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/contract-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/contract-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/contract-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/edit-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/edit-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/edit-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/edit-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/edit-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/edit-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/edit-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/edit-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/electric_car-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/electric_car-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/electric_car-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/electric_car-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/electric_car-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/electric_car-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/electric_car-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/electric_car-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/explore-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/explore-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/explore-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/explore-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/explore-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/explore-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/explore-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/explore-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/glass_damage-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/glass_damage-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/glass_damage-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/glass_damage-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/glass_damage-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/glass_damage-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/home-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/home-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/home-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/home-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/home-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/home-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/home-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/home-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/image_not_supported-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/image_not_supported-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/image_not_supported-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/image_not_supported-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/image_not_supported-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/lightbulb-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/lightbulb-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/lightbulb-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/lightbulb-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/lightbulb-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/lightbulb-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/login-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/login-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/login-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/login-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/login-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/login-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/login-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/login-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/logout-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/logout-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/logout-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/logout-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/logout-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/logout-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/logout-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/logout-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/manual_gear-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/manual_gear-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/manual_gear-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/manual_gear-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/manual_gear-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/manual_gear-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/minor_crash-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/minor_crash-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/minor_crash-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/minor_crash-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/minor_crash-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/minor_crash-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/notifications-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/notifications-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/notifications-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/notifications-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/notifications-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/notifications-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/notifications-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/notifications-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/payment-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/payment-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/payment-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/payment-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/payment-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/payment-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/payment-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/payment-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/pets-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/pets-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/pets-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/pets-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/pets-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/pets-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/pets-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/pets-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/play_circle-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/play_circle-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/play_circle-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/play_circle-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/play_circle-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/play_circle-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/play_circle-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/play_circle-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/print-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/print-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/print-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/print-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/print-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/print-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/print-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/print-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/query_stats-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/query_stats-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/query_stats-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/query_stats-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/query_stats-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/query_stats-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/query_stats-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/query_stats-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/savings-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/savings-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/savings-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/savings-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/savings-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/savings-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/savings-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/savings-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/schedule-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/schedule-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/schedule-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/schedule-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/schedule-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/schedule-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/schedule-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/schedule-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/settings-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/settings-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/settings-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/settings-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/settings-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/settings-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/settings-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/settings-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/shopping_cart-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/shopping_cart-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/shopping_cart-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/shopping_cart-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/shopping_cart-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/signature-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/signature-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/signature-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/signature-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/signature-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/signature-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/signature-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/signature-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/sort-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/sort-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/sort-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/sort-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/sort-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/sort-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/sort-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/sort-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/speed-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/speed-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/speed-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/speed-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/speed-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/speed-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/speed-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/speed-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tire-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tire-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tire-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tire-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tire-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tire-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tire-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tire-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/trash-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/trash-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/trash-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/trash-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/trash-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/trash-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/trash-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/trash-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tune-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tune-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tune-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tune-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tune-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tune-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/tune-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/tune-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/verified-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/verified-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/verified-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/verified-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/verified-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/verified-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/verified-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/verified-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_off-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_off-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_off-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_off-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_off-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_off-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_on-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_on-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_on-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_on-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_on-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/action/visibility_on-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/call-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/call-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/call-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/call-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/call-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/call-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/call-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/call-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/chat-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/chat-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/chat-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/chat-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/chat-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/chat-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/communication/chat-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/communication/chat-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/add-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/add-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/add-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/add-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/add-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/add-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/add-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/add-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/auto-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/auto-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/auto-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/auto-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/auto-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/auto-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/auto-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/auto-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/backspace-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/backspace-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/backspace-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/backspace-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/backspace-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/backspace-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/backspace-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/backspace-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/clear-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/clear-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/clear-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/clear-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/clear-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/clear-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/clear-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/clear-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/mail-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/mail-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/mail-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/mail-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/mail-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/mail-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/mail-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/mail-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/manage_account-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/manage_account-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/manage_account-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/manage_account-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/manage_account-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/manage_account-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/manage_account-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/manage_account-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/person-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/person-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/person-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/person-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/person-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/person-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/person-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/person-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/remove-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/remove-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/remove-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/remove-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/remove-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/remove-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/remove-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/remove-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/send-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/send-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/send-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/send-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/send-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/send-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/send-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/send-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/work-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/work-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/work-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/work-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/work-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/work-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/content/work-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/content/work-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/device/task-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/device/task-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/device/task-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/device/task-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/device/task-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/device/task-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/device/task-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/device/task-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/archive-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/archive-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/archive-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/archive-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/archive-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/archive-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/archive-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/archive-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_copy-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_copy-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_copy-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_copy-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_copy-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_copy-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_copy-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_copy-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download_off-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download_off-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download_off-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download_off-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download_off-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_download_off-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_open-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_open-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_open-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_open-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_open-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_open-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_open-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_open-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_upload-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_upload-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_upload-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_upload-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_upload-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_upload-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/file_upload-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/file_upload-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/unarchive-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/unarchive-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/unarchive-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/unarchive-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/unarchive-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/unarchive-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/file/unarchive-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/file/unarchive-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/ev_station-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/ev_station-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/ev_station-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/ev_station-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/ev_station-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/ev_station-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/ev_station-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/ev_station-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/forest-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/forest-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/forest-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/forest-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/forest-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/forest-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/forest-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/forest-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/gas_station-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/gas_station-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/gas_station-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/gas_station-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/gas_station-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/gas_station-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/gas_station-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/gas_station-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/location-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/location-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/location-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/location-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/location-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/location-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/location-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/location-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/route-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/route-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/route-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/route-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/route-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/route-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/map/route-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/map/route-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_backward-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_backward-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_backward-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_backward-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_downward-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_downward-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_downward-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_downward-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_forward-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_forward-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_forward-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_forward-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_upward-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_upward-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_upward-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/arrow_upward-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/check-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/check-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/check-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/check-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/check-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/check-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/check-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/check-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_left-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_left-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_left-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_left-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_right-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_right-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_right-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/chevron_right-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/close-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/close-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/close-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/close-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/close-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/close-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/close-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/close-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_less-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_less-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_less-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_less-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_less-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_more-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_more-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_more-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_more-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/expand_more-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/external-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/external-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/external-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/external-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/external-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/external-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/external-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/external-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/menu-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/menu-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/menu-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/menu-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/menu-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/menu-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/menu-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/menu-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_horizontal-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_horizontal-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_horizontal-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_horizontal-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_vertical-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_vertical-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_vertical-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/more_vertical-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/open-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/open-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/open-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/open-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/open-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/open-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/open-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/open-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/refresh-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/refresh-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/refresh-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/refresh-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/refresh-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/refresh-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/spinner-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/spinner-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/spinner-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/spinner-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/spinner-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/spinner-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_less-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_less-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_less-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_less-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_more-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_more-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_more-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/navigation/unfold_more-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/event_note-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/event_note-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/event_note-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/event_note-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/event_note-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/event_note-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/live_tv-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/live_tv-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/live_tv-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/live_tv-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/live_tv-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/wifi-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/wifi-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/wifi-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/wifi-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/wifi-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/notifications/wifi-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/coffee-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/coffee-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/coffee-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/coffee-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/coffee-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/coffee-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/coffee-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/coffee-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/search-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/search-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/search-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/search-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/search-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/search-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/search/search-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/search/search-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_dissatisfied-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_neutral-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_neutral-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_neutral-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_neutral-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_satisfied-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_dissatisfied-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/social/sentiment_very_satisfied-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/favorite-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/favorite-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/favorite-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/favorite-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/favorite-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/favorite-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/star-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/star-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/star-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/star-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/star-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/star-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/toggle/star-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/toggle/star-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/error-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/error-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/error-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/error-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/error-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/error-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/error-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/error-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/help-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/help-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/help-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/help-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/help-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/help-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/help-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/help-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/info-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/info-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/info-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/info-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/info-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/info-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/info-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/info-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/success-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/success-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/success-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/success-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/success-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/success-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/success-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/success-sharp.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/warning-filled.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/warning-filled.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/warning-outlined.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/warning-outlined.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/warning-round.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/warning-round.svg.js +0 -10
- package/dist/foundation/iconography/svg/validation/warning-sharp.svg.cjs +0 -28
- package/dist/foundation/iconography/svg/validation/warning-sharp.svg.js +0 -10
- package/dist/foundation/logos/svg/audi/audi_symbol.svg.cjs +0 -30
- package/dist/foundation/logos/svg/audi/audi_symbol.svg.js +0 -12
- package/dist/foundation/logos/svg/audi/audi_wordmark.svg.cjs +0 -30
- package/dist/foundation/logos/svg/audi/audi_wordmark.svg.js +0 -12
- package/dist/foundation/logos/svg/autoria/autoria_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/autoria/autoria_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/autoria/autoria_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/bilhold/bilhold_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/bilhold/bilhold_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/cupra/cupra_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/cupra/cupra_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/cupra/cupra_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/dahles/dahles_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/dahles/dahles_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/dahles/dahles_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/gumpen/gumpen_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/gumpen/gumpen_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/mollerbil/mollerbil_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/mollerbil/mollerbil_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/albjerk_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/albjerk_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/alta_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/alta_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/berge_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/berge_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/fremme_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/fremme_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/kirkenes_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/mobile_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/mobile_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/slatlem_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/slatlem_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/sulland_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/sulland_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/others/svebjorn_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/skoda/skoda_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/skoda/skoda_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/skoda/skoda_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/vw/vwNytte_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/vw/vwNytte_wordmark.svg.js +0 -10
- package/dist/foundation/logos/svg/vw/vw_symbol.svg.cjs +0 -28
- package/dist/foundation/logos/svg/vw/vw_symbol.svg.js +0 -10
- package/dist/foundation/logos/svg/vw/vw_wordmark.svg.cjs +0 -28
- package/dist/foundation/logos/svg/vw/vw_wordmark.svg.js +0 -10
package/CHANGELOG.md
CHANGED
|
@@ -3,34 +3,34 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
## [6.
|
|
6
|
+
## [6.1.0](https://github.com/mollerdigital/design-system-design-system/compare/@gnist/design-system@6.0.0...@gnist/design-system@6.1.0) (2026-04-28)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
### Features
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
* add icons `add_circle` and `content_copy` ([d9c9ccb](https://github.com/mollerdigital/design-system-design-system/commit/d9c9ccb037c889f819126fc25687bf0a5f9e6d1c))
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
## [6.0.0](https://github.com/mollerdigital/design-system-design-system/compare/@gnist/design-system@5.8.0...@gnist/design-system@6.0.0) (2026-04-27)
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
### ⚠ BREAKING CHANGES
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
* Removed `favorite_border` and `star_outline` icons. Use `favorite` or `star` with the `variantOverride` prop to switch between filled and outlined variants. Also removed `binoculars` and `automatic_gear`.
|
|
17
|
+
* The default icon variant has been changed from `filled` to `outlined`.
|
|
17
18
|
|
|
18
|
-
|
|
19
|
+
### Features
|
|
19
20
|
|
|
20
|
-
|
|
21
|
+
* replace icons with Material Symbols and restructure icon build pipeline ([2b66494](https://github.com/mollerdigital/design-system-design-system/commit/2b66494aa98313cc9fbb600edfcd3e5a91c9953a))
|
|
21
22
|
|
|
22
|
-
|
|
23
|
+
## [5.8.0](https://github.com/mollerdigital/design-system-design-system/compare/@gnist/design-system@5.7.0...@gnist/design-system@5.8.0) (2026-04-24)
|
|
23
24
|
|
|
24
|
-
|
|
25
|
+
### Features
|
|
25
26
|
|
|
26
|
-
|
|
27
|
+
* add support for baltic characters for all fonts ([bc30b85](https://github.com/mollerdigital/design-system-design-system/commit/bc30b8576b5e8caa901c14b404de145e6958ed22))
|
|
27
28
|
|
|
28
|
-
|
|
29
|
-
* The default icon variant has been changed from `filled` to `outlined`.
|
|
29
|
+
## [5.7.0](https://github.com/mollerdigital/design-system-design-system/compare/@gnist/design-system@5.6.1...@gnist/design-system@5.7.0) (2026-04-21)
|
|
30
30
|
|
|
31
31
|
### Features
|
|
32
32
|
|
|
33
|
-
* replace
|
|
33
|
+
* replace Figtree with Geist Variable font for bilhold theme ([a365dbc](https://github.com/mollerdigital/design-system-design-system/commit/a365dbc938fc50cd9871a506770e031dd447c14b))
|
|
34
34
|
|
|
35
35
|
## [5.6.1](https://github.com/mollerdigital/design-system-design-system/compare/@gnist/design-system@5.6.0...@gnist/design-system@5.6.1) (2026-04-17)
|
|
36
36
|
|
package/README.md
CHANGED
|
@@ -22,10 +22,10 @@ To use the library, the vanilla-extract plugin needs to be used.
|
|
|
22
22
|
|
|
23
23
|
### Vite
|
|
24
24
|
|
|
25
|
-
For Vite, you need
|
|
25
|
+
For Vite 8, you need
|
|
26
26
|
|
|
27
27
|
```
|
|
28
|
-
npm install -D @vanilla-extract/vite-plugin @vanilla-extract/
|
|
28
|
+
npm install -D @vanilla-extract/vite-plugin @vanilla-extract/rollup-plugin
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
Your `vite.config.ts` might look like this:
|
|
@@ -35,18 +35,21 @@ Your `vite.config.ts` might look like this:
|
|
|
35
35
|
|
|
36
36
|
import { defineConfig } from "vite";
|
|
37
37
|
import react from "@vitejs/plugin-react";
|
|
38
|
+
import { vanillaExtractPlugin as vanillaExtractRollupPlugin } from "@vanilla-extract/rollup-plugin";
|
|
38
39
|
import { vanillaExtractPlugin } from "@vanilla-extract/vite-plugin";
|
|
39
|
-
import { vanillaExtractPlugin as veEsbuildPlugin } from "@vanilla-extract/esbuild-plugin";
|
|
40
40
|
|
|
41
41
|
// https://vitejs.dev/config/
|
|
42
42
|
export default defineConfig({
|
|
43
43
|
plugins: [react(), vanillaExtractPlugin()],
|
|
44
44
|
optimizeDeps: {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
plugins: [
|
|
45
|
+
// Gnist publishes JS that imports vanilla-extract .css.js files,
|
|
46
|
+
// so force those packages through Vite 8 prebundling.
|
|
47
|
+
include: ["@gnist/design-system", "@gnist/design-system/**/*"],
|
|
48
|
+
rolldownOptions: {
|
|
49
|
+
plugins: [
|
|
50
|
+
// Handle vanilla-extract file scopes during dep optimization.
|
|
51
|
+
vanillaExtractRollupPlugin({ unstable_injectFilescopes: true }),
|
|
52
|
+
],
|
|
50
53
|
},
|
|
51
54
|
},
|
|
52
55
|
});
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
//#region \0rolldown/runtime.js
|
|
3
|
+
var __create = Object.create;
|
|
4
|
+
var __defProp = Object.defineProperty;
|
|
5
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
8
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
9
|
+
var __exportAll = (all, no_symbols) => {
|
|
10
|
+
let target = {};
|
|
11
|
+
for (var name in all) __defProp(target, name, {
|
|
12
|
+
get: all[name],
|
|
13
|
+
enumerable: true
|
|
14
|
+
});
|
|
15
|
+
if (!no_symbols) __defProp(target, Symbol.toStringTag, { value: "Module" });
|
|
16
|
+
return target;
|
|
17
|
+
};
|
|
18
|
+
var __copyProps = (to, from, except, desc) => {
|
|
19
|
+
if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
20
|
+
key = keys[i];
|
|
21
|
+
if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
22
|
+
get: ((k) => from[k]).bind(null, key),
|
|
23
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
return to;
|
|
27
|
+
};
|
|
28
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
29
|
+
value: mod,
|
|
30
|
+
enumerable: true
|
|
31
|
+
}) : target, mod));
|
|
32
|
+
//#endregion
|
|
33
|
+
exports.__exportAll = __exportAll;
|
|
34
|
+
exports.__toESM = __toESM;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
//#region \0rolldown/runtime.js
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __exportAll = (all, no_symbols) => {
|
|
5
|
+
let target = {};
|
|
6
|
+
for (var name in all) __defProp(target, name, {
|
|
7
|
+
get: all[name],
|
|
8
|
+
enumerable: true
|
|
9
|
+
});
|
|
10
|
+
if (!no_symbols) __defProp(target, Symbol.toStringTag, { value: "Module" });
|
|
11
|
+
return target;
|
|
12
|
+
};
|
|
13
|
+
//#endregion
|
|
14
|
+
export { __exportAll };
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
"use strict";
|
|
3
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
4
|
-
const
|
|
5
|
-
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
exports.
|
|
11
|
-
exports.
|
|
12
|
-
exports.RectangularSkeleton =
|
|
3
|
+
const require_InputHelperText = require("./inputs/InputHelperText.cjs");
|
|
4
|
+
require("./inputs/index.cjs");
|
|
5
|
+
const require_TextSkeleton = require("./skeletons/TextSkeleton.cjs");
|
|
6
|
+
const require_CircularSkeleton = require("./skeletons/CircularSkeleton.cjs");
|
|
7
|
+
const require_RectangularSkeleton = require("./skeletons/RectangularSkeleton.cjs");
|
|
8
|
+
require("./skeletons/index.cjs");
|
|
9
|
+
exports.CircularSkeleton = require_CircularSkeleton.CircularSkeleton;
|
|
10
|
+
exports.InputHelperText = require_InputHelperText.InputHelperText;
|
|
11
|
+
exports.RectangularSkeleton = require_RectangularSkeleton.RectangularSkeleton;
|
|
12
|
+
exports.TextSkeleton = require_TextSkeleton.TextSkeleton;
|
|
13
|
+
exports.useInputHelperText = require_InputHelperText.useInputHelperText;
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { InputHelperText, useInputHelperText } from "./inputs/InputHelperText.js";
|
|
3
|
+
import "./inputs/index.js";
|
|
3
4
|
import { TextSkeleton } from "./skeletons/TextSkeleton.js";
|
|
4
5
|
import { CircularSkeleton } from "./skeletons/CircularSkeleton.js";
|
|
5
6
|
import { RectangularSkeleton } from "./skeletons/RectangularSkeleton.js";
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
InputHelperText,
|
|
9
|
-
RectangularSkeleton,
|
|
10
|
-
TextSkeleton,
|
|
11
|
-
useInputHelperText
|
|
12
|
-
};
|
|
7
|
+
import "./skeletons/index.js";
|
|
8
|
+
export { CircularSkeleton, InputHelperText, RectangularSkeleton, TextSkeleton, useInputHelperText };
|
|
@@ -1,34 +1,56 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
"
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
require("../../_virtual/_rolldown/runtime.cjs");
|
|
3
|
+
const require_TextBelowInput = require("./internal/TextBelowInput.cjs");
|
|
4
|
+
const require_ValidationText = require("./internal/ValidationText.cjs");
|
|
5
|
+
let react_jsx_runtime = require("react/jsx-runtime");
|
|
6
|
+
//#region src/building-blocks/inputs/InputHelperText.tsx
|
|
7
|
+
/**
|
|
8
|
+
A building block for helper text and validation, used by input components.
|
|
9
|
+
Will show the validation message if appropriate, otherwise the given helper text if any is set.
|
|
10
|
+
|
|
11
|
+
Note: `useInputHelperText` will help you with correct aria props for the related input.
|
|
12
|
+
|
|
13
|
+
Documentation: [InputHelperText](https://gnist.moller.no/developers/components/latest/?path=/docs/buildingblocks-inputs-inputhelpertext--docs)
|
|
14
|
+
*/
|
|
7
15
|
function InputHelperText({ id, helperText, validity = { type: "none" }, reserveSpaceForMessage = true, disabled, className }) {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
if (validity.type !== "none" && validity.message) return (0, react_jsx_runtime.jsx)(require_ValidationText.ValidationText, {
|
|
17
|
+
className,
|
|
18
|
+
id,
|
|
19
|
+
validationState: validity.type,
|
|
20
|
+
message: validity.message,
|
|
21
|
+
disabled
|
|
22
|
+
});
|
|
23
|
+
if (helperText) return (0, react_jsx_runtime.jsx)(require_TextBelowInput.TextBelowInput, {
|
|
24
|
+
className,
|
|
25
|
+
id,
|
|
26
|
+
isDisabled: disabled,
|
|
27
|
+
children: helperText
|
|
28
|
+
});
|
|
29
|
+
if (reserveSpaceForMessage) return (0, react_jsx_runtime.jsx)(require_TextBelowInput.TextBelowInput, {
|
|
30
|
+
className,
|
|
31
|
+
isDisabled: disabled,
|
|
32
|
+
children: "\xA0"
|
|
33
|
+
});
|
|
34
|
+
return null;
|
|
18
35
|
}
|
|
36
|
+
/**
|
|
37
|
+
* Hook which helps you handle aria props for a input field/control and an {@link InputHelperText}.
|
|
38
|
+
* @param props Props for `InputHelperText`
|
|
39
|
+
* @returns `helperTextProps`: Props for InputHelperText, and `inputAriaProps`: correct `aria-invalid`, `aria-errormessage` and `aria-describedby` props to correctly tie together the given input and the `InputHelperText`
|
|
40
|
+
*/
|
|
19
41
|
function useInputHelperText(props) {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
};
|
|
42
|
+
const { validity, id } = props;
|
|
43
|
+
return {
|
|
44
|
+
helperTextProps: props,
|
|
45
|
+
inputAriaProps: {
|
|
46
|
+
...validity?.type === "error" && {
|
|
47
|
+
"aria-invalid": true,
|
|
48
|
+
"aria-errormessage": id
|
|
49
|
+
},
|
|
50
|
+
"aria-describedby": id
|
|
51
|
+
}
|
|
52
|
+
};
|
|
32
53
|
}
|
|
54
|
+
//#endregion
|
|
33
55
|
exports.InputHelperText = InputHelperText;
|
|
34
56
|
exports.useInputHelperText = useInputHelperText;
|
|
@@ -1,34 +1,54 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsx } from "react/jsx-runtime";
|
|
3
2
|
import { TextBelowInput } from "./internal/TextBelowInput.js";
|
|
4
3
|
import { ValidationText } from "./internal/ValidationText.js";
|
|
4
|
+
import { jsx } from "react/jsx-runtime";
|
|
5
|
+
//#region src/building-blocks/inputs/InputHelperText.tsx
|
|
6
|
+
/**
|
|
7
|
+
A building block for helper text and validation, used by input components.
|
|
8
|
+
Will show the validation message if appropriate, otherwise the given helper text if any is set.
|
|
9
|
+
|
|
10
|
+
Note: `useInputHelperText` will help you with correct aria props for the related input.
|
|
11
|
+
|
|
12
|
+
Documentation: [InputHelperText](https://gnist.moller.no/developers/components/latest/?path=/docs/buildingblocks-inputs-inputhelpertext--docs)
|
|
13
|
+
*/
|
|
5
14
|
function InputHelperText({ id, helperText, validity = { type: "none" }, reserveSpaceForMessage = true, disabled, className }) {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
15
|
+
if (validity.type !== "none" && validity.message) return jsx(ValidationText, {
|
|
16
|
+
className,
|
|
17
|
+
id,
|
|
18
|
+
validationState: validity.type,
|
|
19
|
+
message: validity.message,
|
|
20
|
+
disabled
|
|
21
|
+
});
|
|
22
|
+
if (helperText) return jsx(TextBelowInput, {
|
|
23
|
+
className,
|
|
24
|
+
id,
|
|
25
|
+
isDisabled: disabled,
|
|
26
|
+
children: helperText
|
|
27
|
+
});
|
|
28
|
+
if (reserveSpaceForMessage) return jsx(TextBelowInput, {
|
|
29
|
+
className,
|
|
30
|
+
isDisabled: disabled,
|
|
31
|
+
children: "\xA0"
|
|
32
|
+
});
|
|
33
|
+
return null;
|
|
16
34
|
}
|
|
35
|
+
/**
|
|
36
|
+
* Hook which helps you handle aria props for a input field/control and an {@link InputHelperText}.
|
|
37
|
+
* @param props Props for `InputHelperText`
|
|
38
|
+
* @returns `helperTextProps`: Props for InputHelperText, and `inputAriaProps`: correct `aria-invalid`, `aria-errormessage` and `aria-describedby` props to correctly tie together the given input and the `InputHelperText`
|
|
39
|
+
*/
|
|
17
40
|
function useInputHelperText(props) {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
};
|
|
41
|
+
const { validity, id } = props;
|
|
42
|
+
return {
|
|
43
|
+
helperTextProps: props,
|
|
44
|
+
inputAriaProps: {
|
|
45
|
+
...validity?.type === "error" && {
|
|
46
|
+
"aria-invalid": true,
|
|
47
|
+
"aria-errormessage": id
|
|
48
|
+
},
|
|
49
|
+
"aria-describedby": id
|
|
50
|
+
}
|
|
51
|
+
};
|
|
30
52
|
}
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
useInputHelperText
|
|
34
|
-
};
|
|
53
|
+
//#endregion
|
|
54
|
+
export { InputHelperText, useInputHelperText };
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
"use strict";
|
|
3
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
4
|
-
const
|
|
5
|
-
exports.InputHelperText =
|
|
6
|
-
exports.useInputHelperText =
|
|
3
|
+
const require_InputHelperText = require("./InputHelperText.cjs");
|
|
4
|
+
exports.InputHelperText = require_InputHelperText.InputHelperText;
|
|
5
|
+
exports.useInputHelperText = require_InputHelperText.useInputHelperText;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
"
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
require("../../../_virtual/_rolldown/runtime.cjs");
|
|
3
|
+
const require_textBelowInput_css = require("./textBelowInput.css.cjs");
|
|
4
|
+
//#region src/building-blocks/inputs/internal/TextBelowInput.tsx
|
|
5
|
+
var TextBelowInput = (0, require("@gnist/component-utils/componentFactories.js").component)("TextBelowInput", require_textBelowInput_css.textBelowInputRecipe, "div");
|
|
6
|
+
//#endregion
|
|
7
7
|
exports.TextBelowInput = TextBelowInput;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { component } from "@gnist/component-utils/componentFactories.js";
|
|
3
2
|
import { textBelowInputRecipe } from "./textBelowInput.css.js";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
import { component } from "@gnist/component-utils/componentFactories.js";
|
|
4
|
+
//#region src/building-blocks/inputs/internal/TextBelowInput.tsx
|
|
5
|
+
var TextBelowInput = component("TextBelowInput", textBelowInputRecipe, "div");
|
|
6
|
+
//#endregion
|
|
7
|
+
export { TextBelowInput };
|
|
@@ -1,18 +1,28 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
"
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
require("../../../foundation/
|
|
6
|
-
require("
|
|
7
|
-
require("
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
2
|
+
require("../../../_virtual/_rolldown/runtime.cjs");
|
|
3
|
+
const require_TextBelowInput = require("./TextBelowInput.cjs");
|
|
4
|
+
const require_Icon = require("../../../foundation/iconography/Icon.cjs");
|
|
5
|
+
require("../../../foundation/index.cjs");
|
|
6
|
+
let react_jsx_runtime = require("react/jsx-runtime");
|
|
7
|
+
let _gnist_themes_atoms_css_js = require("@gnist/themes/atoms.css.js");
|
|
8
|
+
//#region src/building-blocks/inputs/internal/ValidationText.tsx
|
|
9
|
+
var ValidationText = ({ id, message, validationState, className, disabled }) => {
|
|
10
|
+
return (0, react_jsx_runtime.jsx)(react_jsx_runtime.Fragment, { children: message ? (0, react_jsx_runtime.jsxs)(require_TextBelowInput.TextBelowInput, {
|
|
11
|
+
id,
|
|
12
|
+
"aria-live": "polite",
|
|
13
|
+
"aria-atomic": "true",
|
|
14
|
+
className,
|
|
15
|
+
validity: validationState,
|
|
16
|
+
isDisabled: disabled,
|
|
17
|
+
children: [(0, react_jsx_runtime.jsx)(require_Icon.Icon, {
|
|
18
|
+
icon: validationState,
|
|
19
|
+
size: "s",
|
|
20
|
+
className: (0, _gnist_themes_atoms_css_js.atoms)({ paddingRight: "base" })
|
|
21
|
+
}), message]
|
|
22
|
+
}) : (0, react_jsx_runtime.jsx)(require_TextBelowInput.TextBelowInput, {
|
|
23
|
+
isDisabled: disabled,
|
|
24
|
+
children: "\xA0"
|
|
25
|
+
}) });
|
|
17
26
|
};
|
|
27
|
+
//#endregion
|
|
18
28
|
exports.ValidationText = ValidationText;
|
|
@@ -1,18 +1,27 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
3
|
-
import "../../../foundation/iconography/ExtraIconsProvider.js";
|
|
4
|
-
import "../../../foundation/iconography/IconVariantProvider.js";
|
|
5
|
-
import "../../../foundation/iconography/icons.js";
|
|
2
|
+
import { TextBelowInput } from "./TextBelowInput.js";
|
|
6
3
|
import { Icon } from "../../../foundation/iconography/Icon.js";
|
|
7
|
-
import "../../../foundation/
|
|
8
|
-
import "react";
|
|
9
|
-
import "classnames";
|
|
10
|
-
import "../../../foundation/logos/Logo.css.js";
|
|
4
|
+
import "../../../foundation/index.js";
|
|
5
|
+
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
11
6
|
import { atoms } from "@gnist/themes/atoms.css.js";
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
7
|
+
//#region src/building-blocks/inputs/internal/ValidationText.tsx
|
|
8
|
+
var ValidationText = ({ id, message, validationState, className, disabled }) => {
|
|
9
|
+
return jsx(Fragment, { children: message ? jsxs(TextBelowInput, {
|
|
10
|
+
id,
|
|
11
|
+
"aria-live": "polite",
|
|
12
|
+
"aria-atomic": "true",
|
|
13
|
+
className,
|
|
14
|
+
validity: validationState,
|
|
15
|
+
isDisabled: disabled,
|
|
16
|
+
children: [jsx(Icon, {
|
|
17
|
+
icon: validationState,
|
|
18
|
+
size: "s",
|
|
19
|
+
className: atoms({ paddingRight: "base" })
|
|
20
|
+
}), message]
|
|
21
|
+
}) : jsx(TextBelowInput, {
|
|
22
|
+
isDisabled: disabled,
|
|
23
|
+
children: "\xA0"
|
|
24
|
+
}) });
|
|
18
25
|
};
|
|
26
|
+
//#endregion
|
|
27
|
+
export { ValidationText };
|
|
@@ -1,38 +1,38 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
"
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
]
|
|
2
|
+
require("../../../_virtual/_rolldown/runtime.cjs");
|
|
3
|
+
let _gnist_themes_atoms_css_js = require("@gnist/themes/atoms.css.js");
|
|
4
|
+
//#region src/building-blocks/inputs/internal/textBelowInput.css.ts
|
|
5
|
+
var textBelowInputRecipe = (0, require("@vanilla-extract/recipes").recipe)({
|
|
6
|
+
base: [(0, _gnist_themes_atoms_css_js.atoms)({
|
|
7
|
+
typography: "detail-small",
|
|
8
|
+
paddingTop: "base",
|
|
9
|
+
display: "flex",
|
|
10
|
+
alignItems: "center",
|
|
11
|
+
color: "text-variant"
|
|
12
|
+
})],
|
|
13
|
+
variants: {
|
|
14
|
+
validity: {
|
|
15
|
+
error: (0, _gnist_themes_atoms_css_js.atoms)({ color: "error" }),
|
|
16
|
+
success: (0, _gnist_themes_atoms_css_js.atoms)({ color: "success" })
|
|
17
|
+
},
|
|
18
|
+
isDisabled: {
|
|
19
|
+
true: (0, _gnist_themes_atoms_css_js.atoms)({ color: "on-disabled" }),
|
|
20
|
+
false: (0, _gnist_themes_atoms_css_js.atoms)({ color: "on-surface" })
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
compoundVariants: [{
|
|
24
|
+
variants: {
|
|
25
|
+
validity: "error",
|
|
26
|
+
isDisabled: true
|
|
27
|
+
},
|
|
28
|
+
style: (0, _gnist_themes_atoms_css_js.atoms)({ color: "error" })
|
|
29
|
+
}, {
|
|
30
|
+
variants: {
|
|
31
|
+
validity: "success",
|
|
32
|
+
isDisabled: true
|
|
33
|
+
},
|
|
34
|
+
style: (0, _gnist_themes_atoms_css_js.atoms)({ color: "success" })
|
|
35
|
+
}]
|
|
37
36
|
});
|
|
37
|
+
//#endregion
|
|
38
38
|
exports.textBelowInputRecipe = textBelowInputRecipe;
|