@digitalc/dxp-ui 0.0.4 → 0.0.5-alpha-gomo.1
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/README.md +151 -11
- package/es/assets/iconFont/demo.css +539 -0
- package/es/assets/iconFont/demo_index.html +4400 -0
- package/es/assets/iconFont/iconfont.css +22 -6
- package/es/assets/iconFont/iconfont.eot +0 -0
- package/es/assets/iconFont/iconfont.json +28 -0
- package/es/assets/iconFont/iconfont.svg +8 -0
- package/es/assets/iconFont/iconfont.ttf +0 -0
- package/es/assets/iconFont/iconfont.woff +0 -0
- package/es/assets/iconFont/iconfont.woff2 +0 -0
- package/es/assets/react.svg +1 -0
- package/es/assets/token.json +902 -238
- package/es/components/Accordion/designTokens.d.ts +11 -0
- package/es/components/Accordion/designTokens.js +16 -0
- package/es/components/Accordion/index.d.ts +21 -0
- package/es/components/Accordion/index.js +77 -0
- package/es/components/Accordion/style/index.less +14 -0
- package/es/components/Accordion/style/variables.less +4 -0
- package/es/components/Amount/designTokens.d.ts +6 -0
- package/es/components/Amount/designTokens.js +9 -0
- package/es/components/Amount/index.d.ts +23 -0
- package/es/components/Amount/index.js +144 -0
- package/es/components/Amount/style/index.less +10 -0
- package/es/components/Amount/style/variables.less +4 -0
- package/es/components/Button/designTokens.js +6 -7
- package/es/components/Button/index.d.ts +17 -22
- package/es/components/Button/index.js +85 -46
- package/es/components/Button/style/{button.less → index.less} +6 -2
- package/es/components/Chip/designTokens.d.ts +15 -0
- package/es/components/Chip/designTokens.js +22 -0
- package/es/components/Chip/index.d.ts +13 -0
- package/es/components/Chip/index.js +98 -0
- package/es/components/Chip/style/index.less +9 -0
- package/es/components/Chip/style/variables.less +4 -0
- package/es/components/Divider/index.d.ts +16 -0
- package/es/components/Divider/index.js +55 -0
- package/es/components/Divider/style/index.less +78 -0
- package/es/components/Divider/style/variables.less +4 -0
- package/es/components/Drawer/designTokens.d.ts +16 -0
- package/es/components/Drawer/designTokens.js +27 -0
- package/es/components/Drawer/index.d.ts +21 -0
- package/es/components/Drawer/index.js +189 -0
- package/es/components/Drawer/style/index.less +73 -0
- package/es/components/Drawer/style/variables.less +8 -0
- package/es/components/Icon/Icon.d.ts +9 -0
- package/es/components/Icon/Icon.js +18 -0
- package/es/components/Icon/designTokens.d.ts +6 -0
- package/es/components/Icon/designTokens.js +7 -0
- package/es/components/Icon/index.d.ts +12 -0
- package/es/components/Icon/index.js +29 -0
- package/es/components/IconButton/designTokens.d.ts +21 -0
- package/es/components/IconButton/designTokens.js +39 -0
- package/es/components/IconButton/index.d.ts +24 -0
- package/es/components/IconButton/index.js +106 -0
- package/es/components/IconButton/style/index.less +59 -0
- package/es/components/IconButton/style/variables.less +5 -0
- package/es/components/IconButtonGroup/index.d.ts +15 -0
- package/es/components/IconButtonGroup/index.js +22 -0
- package/es/components/Image/index.d.ts +12 -0
- package/es/components/Image/index.js +33 -0
- package/es/components/ListItem/designTokens.d.ts +30 -0
- package/es/components/ListItem/designTokens.js +31 -0
- package/es/components/ListItem/index.d.ts +60 -0
- package/es/components/ListItem/index.js +227 -0
- package/es/components/ListItem/style/index.less +77 -0
- package/es/components/ListItem/style/variables.less +1 -0
- package/es/components/Modal/designTokens.d.ts +31 -0
- package/es/components/Modal/designTokens.js +35 -0
- package/es/components/Modal/index.d.ts +14 -0
- package/es/components/Modal/index.js +101 -0
- package/es/components/Modal/style/index.less +92 -0
- package/es/components/Modal/style/variables.less +5 -0
- package/es/components/Navigation/designTokens.d.ts +16 -0
- package/es/components/Navigation/designTokens.js +19 -0
- package/es/components/Navigation/index.d.ts +31 -0
- package/es/components/Navigation/index.js +110 -0
- package/es/components/Navigation/style/index.less +52 -0
- package/es/components/Navigation/style/variables.less +1 -0
- package/es/components/Search/designTokens.d.ts +34 -0
- package/es/components/Search/designTokens.js +51 -0
- package/es/components/Search/index.d.ts +13 -0
- package/es/components/Search/index.js +85 -0
- package/es/components/Search/style/index.less +32 -0
- package/es/components/Search/style/variables.less +5 -0
- package/es/components/Stepper/designTokens.d.ts +26 -0
- package/es/components/Stepper/designTokens.js +60 -0
- package/es/components/Stepper/index.d.ts +22 -0
- package/es/components/Stepper/index.js +153 -0
- package/es/components/Stepper/style/index.less +140 -0
- package/es/components/Stepper/style/variables.less +5 -0
- package/es/components/StickyFooter/designTokens.d.ts +10 -0
- package/es/components/StickyFooter/designTokens.js +17 -0
- package/es/components/StickyFooter/index.d.ts +17 -0
- package/es/components/StickyFooter/index.js +83 -0
- package/es/components/StickyFooter/style/index.less +18 -0
- package/es/components/StickyFooter/style/variables.less +4 -0
- package/es/components/Tabs/designTokens.d.ts +44 -0
- package/es/components/Tabs/designTokens.js +64 -0
- package/es/components/Tabs/index.d.ts +14 -0
- package/es/components/Tabs/index.js +102 -0
- package/es/components/Tabs/style/index.less +25 -0
- package/es/components/Tabs/style/variables.less +4 -0
- package/es/components/Tag/designTokens.d.ts +90 -0
- package/es/components/Tag/designTokens.js +124 -0
- package/es/components/Tag/index.d.ts +15 -0
- package/es/components/Tag/index.js +85 -0
- package/es/components/Tag/style/index.less +9 -0
- package/es/components/Tag/style/variables.less +4 -0
- package/es/components/Text/designTokens.d.ts +51 -0
- package/es/components/Text/designTokens.js +52 -0
- package/es/components/Text/index.d.ts +6 -25
- package/es/components/Text/index.js +69 -56
- package/es/components/Text/style/index.less +2 -0
- package/es/components/TextInputInside/designTokens.d.ts +38 -0
- package/es/components/TextInputInside/designTokens.js +59 -0
- package/es/components/TextInputInside/index.d.ts +10 -0
- package/es/components/TextInputInside/index.js +141 -0
- package/es/components/TextInputInside/style/index.less +36 -0
- package/es/components/TextInputInside/style/variables.less +5 -0
- package/es/components/TextInputOutside/designTokens.d.ts +41 -0
- package/es/components/TextInputOutside/designTokens.js +67 -0
- package/es/components/TextInputOutside/index.d.ts +18 -0
- package/es/components/TextInputOutside/index.js +66 -0
- package/es/components/TextInputOutside/style/index.less +4 -0
- package/es/components/TextInputOutside/style/variables.less +5 -0
- package/es/components/TextLink/designTokens.d.ts +10 -0
- package/es/components/TextLink/designTokens.js +11 -0
- package/es/components/TextLink/index.d.ts +20 -0
- package/es/components/TextLink/index.js +95 -0
- package/es/components/Toast/designTokens.d.ts +13 -0
- package/es/components/Toast/designTokens.js +20 -0
- package/es/components/Toast/index.d.ts +26 -0
- package/es/components/Toast/index.js +175 -0
- package/es/components/Toast/style/index.less +9 -0
- package/es/components/Toast/style/variables.less +12 -0
- package/es/components/Toggle/designTokens.d.ts +9 -0
- package/es/components/Toggle/designTokens.js +13 -0
- package/es/components/Toggle/index.d.ts +27 -0
- package/es/components/Toggle/index.js +21 -0
- package/es/components/index.d.ts +45 -0
- package/es/components/index.js +26 -2
- package/es/constants/index.d.ts +1 -0
- package/es/constants/index.js +2 -2
- package/es/fonts/SF/SF-Pro-Display-BlackItalic.otf +0 -0
- package/es/fonts/SF/SF-Pro-Text-Bold.otf +0 -0
- package/es/fonts/SF/SF-Pro-Text-Medium.eot +0 -0
- package/es/fonts/SF/SF-Pro-Text-Medium.otf +0 -0
- package/es/fonts/SF/SF-Pro-Text-Medium.svg +40549 -0
- package/es/fonts/SF/SF-Pro-Text-Medium.ttf +0 -0
- package/es/fonts/SF/SF-Pro-Text-Medium.woff +0 -0
- package/es/fonts/SF/SF-Pro-Text-Medium.woff2 +0 -0
- package/es/fonts/SF/SF-Pro-Text-Regular.otf +0 -0
- package/es/fonts/SF/SF-Pro-Text-Regular.ttf +0 -0
- package/es/fonts/SF/SF-Pro-Text-Semibold.otf +0 -0
- package/es/fonts/SF/SF-Pro-Text-SemiboldItalic.otf +0 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -2
- package/es/style/variables.less +53 -27
- package/es/tokens/DXPGlobal.d.ts +255 -193
- package/es/tokens/DXPGlobal.js +4 -3
- package/es/utils/noop.js +1 -2
- package/es/utils/scaleTool.d.ts +12 -0
- package/es/utils/scaleTool.js +48 -0
- package/es/utils/theme.d.ts +11 -0
- package/es/utils/theme.js +15 -0
- package/es/utils/themeContext.d.ts +35 -2
- package/es/utils/themeContext.js +27 -7
- package/es/utils/tokenHelper.js +1 -2
- package/es/utils/tokenManager.d.ts +110 -2
- package/es/utils/tokenManager.js +778 -724
- package/lib/assets/iconFont/demo.css +539 -0
- package/lib/assets/iconFont/demo_index.html +4400 -0
- package/lib/assets/iconFont/iconfont.css +750 -0
- package/lib/assets/iconFont/iconfont.eot +0 -0
- package/lib/assets/iconFont/iconfont.json +1290 -0
- package/lib/assets/iconFont/iconfont.svg +385 -0
- package/lib/assets/iconFont/iconfont.ttf +0 -0
- package/lib/assets/iconFont/iconfont.woff +0 -0
- package/lib/assets/iconFont/iconfont.woff2 +0 -0
- package/lib/assets/react.svg +1 -0
- package/lib/assets/token.json +903 -0
- package/lib/components/Accordion/designTokens.d.ts +11 -0
- package/lib/components/Accordion/designTokens.js +42 -0
- package/lib/components/Accordion/index.d.ts +21 -0
- package/lib/components/Accordion/index.js +96 -0
- package/lib/components/Accordion/style/index.less +14 -0
- package/lib/components/Accordion/style/variables.less +4 -0
- package/lib/components/Amount/designTokens.d.ts +6 -0
- package/lib/components/Amount/designTokens.js +33 -0
- package/lib/components/Amount/index.d.ts +23 -0
- package/lib/components/Amount/index.js +160 -0
- package/lib/components/Amount/style/index.less +10 -0
- package/lib/components/Amount/style/variables.less +4 -0
- package/lib/components/Button/demo/index.d.ts +3 -0
- package/lib/components/Button/demo/index.js +138 -0
- package/lib/components/Button/designTokens.d.ts +66 -0
- package/lib/components/Button/designTokens.js +139 -0
- package/lib/components/Button/index.d.ts +39 -0
- package/lib/components/Button/index.js +132 -0
- package/lib/components/Button/style/index.less +38 -0
- package/lib/components/Button/style/variables.less +5 -0
- package/lib/components/Chip/designTokens.d.ts +15 -0
- package/lib/components/Chip/designTokens.js +45 -0
- package/lib/components/Chip/index.d.ts +13 -0
- package/lib/components/Chip/index.js +178 -0
- package/lib/components/Chip/style/index.less +9 -0
- package/lib/components/Chip/style/variables.less +4 -0
- package/lib/components/Divider/index.d.ts +16 -0
- package/lib/components/Divider/index.js +111 -0
- package/lib/components/Divider/style/index.less +78 -0
- package/lib/components/Divider/style/variables.less +4 -0
- package/lib/components/Drawer/designTokens.d.ts +16 -0
- package/lib/components/Drawer/designTokens.js +62 -0
- package/lib/components/Drawer/index.d.ts +21 -0
- package/lib/components/Drawer/index.js +229 -0
- package/lib/components/Drawer/style/index.less +73 -0
- package/lib/components/Drawer/style/variables.less +8 -0
- package/lib/components/Icon/Icon.d.ts +9 -0
- package/lib/components/Icon/Icon.js +74 -0
- package/lib/components/Icon/designTokens.d.ts +6 -0
- package/lib/components/Icon/designTokens.js +41 -0
- package/lib/components/Icon/index.d.ts +12 -0
- package/lib/components/Icon/index.js +73 -0
- package/lib/components/IconButton/designTokens.d.ts +21 -0
- package/lib/components/IconButton/designTokens.js +61 -0
- package/lib/components/IconButton/index.d.ts +24 -0
- package/lib/components/IconButton/index.js +202 -0
- package/lib/components/IconButton/style/index.less +59 -0
- package/lib/components/IconButton/style/variables.less +5 -0
- package/lib/components/IconButtonGroup/index.d.ts +15 -0
- package/lib/components/IconButtonGroup/index.js +53 -0
- package/lib/components/Image/index.d.ts +12 -0
- package/lib/components/Image/index.js +102 -0
- package/lib/components/ListItem/designTokens.d.ts +30 -0
- package/lib/components/ListItem/designTokens.js +65 -0
- package/lib/components/ListItem/index.d.ts +60 -0
- package/lib/components/ListItem/index.js +348 -0
- package/lib/components/ListItem/style/index.less +77 -0
- package/lib/components/ListItem/style/variables.less +1 -0
- package/lib/components/Modal/designTokens.d.ts +31 -0
- package/lib/components/Modal/designTokens.js +88 -0
- package/lib/components/Modal/index.d.ts +14 -0
- package/lib/components/Modal/index.js +168 -0
- package/lib/components/Modal/style/index.less +92 -0
- package/lib/components/Modal/style/variables.less +5 -0
- package/lib/components/Navigation/designTokens.d.ts +16 -0
- package/lib/components/Navigation/designTokens.js +53 -0
- package/lib/components/Navigation/index.d.ts +31 -0
- package/lib/components/Navigation/index.js +174 -0
- package/lib/components/Navigation/style/index.less +52 -0
- package/lib/components/Navigation/style/variables.less +1 -0
- package/lib/components/Search/designTokens.d.ts +34 -0
- package/lib/components/Search/designTokens.js +77 -0
- package/lib/components/Search/index.d.ts +13 -0
- package/lib/components/Search/index.js +137 -0
- package/lib/components/Search/style/index.less +32 -0
- package/lib/components/Search/style/variables.less +5 -0
- package/lib/components/Stepper/designTokens.d.ts +26 -0
- package/lib/components/Stepper/designTokens.js +90 -0
- package/lib/components/Stepper/index.d.ts +22 -0
- package/lib/components/Stepper/index.js +118 -0
- package/lib/components/Stepper/style/index.less +140 -0
- package/lib/components/Stepper/style/variables.less +5 -0
- package/lib/components/StickyFooter/designTokens.d.ts +10 -0
- package/lib/components/StickyFooter/designTokens.js +41 -0
- package/lib/components/StickyFooter/index.d.ts +17 -0
- package/lib/components/StickyFooter/index.js +150 -0
- package/lib/components/StickyFooter/style/index.less +18 -0
- package/lib/components/StickyFooter/style/variables.less +4 -0
- package/lib/components/Tabs/designTokens.d.ts +44 -0
- package/lib/components/Tabs/designTokens.js +90 -0
- package/lib/components/Tabs/index.d.ts +14 -0
- package/lib/components/Tabs/index.js +145 -0
- package/lib/components/Tabs/style/index.less +25 -0
- package/lib/components/Tabs/style/variables.less +4 -0
- package/lib/components/Tag/designTokens.d.ts +90 -0
- package/lib/components/Tag/designTokens.js +181 -0
- package/lib/components/Tag/index.d.ts +15 -0
- package/lib/components/Tag/index.js +146 -0
- package/lib/components/Tag/style/index.less +9 -0
- package/lib/components/Tag/style/variables.less +4 -0
- package/lib/components/Text/designTokens.d.ts +51 -0
- package/lib/components/Text/designTokens.js +75 -0
- package/lib/components/Text/index.d.ts +13 -0
- package/lib/components/Text/index.js +432 -0
- package/lib/components/Text/style/index.less +2 -0
- package/lib/components/Text/style/variables.less +4 -0
- package/lib/components/TextInputInside/designTokens.d.ts +38 -0
- package/lib/components/TextInputInside/designTokens.js +100 -0
- package/lib/components/TextInputInside/index.d.ts +10 -0
- package/lib/components/TextInputInside/index.js +230 -0
- package/lib/components/TextInputInside/style/index.less +36 -0
- package/lib/components/TextInputInside/style/variables.less +5 -0
- package/lib/components/TextInputOutside/designTokens.d.ts +41 -0
- package/lib/components/TextInputOutside/designTokens.js +95 -0
- package/lib/components/TextInputOutside/index.d.ts +18 -0
- package/lib/components/TextInputOutside/index.js +110 -0
- package/lib/components/TextInputOutside/style/index.less +4 -0
- package/lib/components/TextInputOutside/style/variables.less +5 -0
- package/lib/components/TextLink/designTokens.d.ts +10 -0
- package/lib/components/TextLink/designTokens.js +45 -0
- package/lib/components/TextLink/index.d.ts +20 -0
- package/lib/components/TextLink/index.js +120 -0
- package/lib/components/Toast/designTokens.d.ts +13 -0
- package/lib/components/Toast/designTokens.js +40 -0
- package/lib/components/Toast/index.d.ts +26 -0
- package/lib/components/Toast/index.js +213 -0
- package/lib/components/Toast/style/index.less +9 -0
- package/lib/components/Toast/style/variables.less +12 -0
- package/lib/components/Toggle/designTokens.d.ts +9 -0
- package/lib/components/Toggle/designTokens.js +47 -0
- package/lib/components/Toggle/index.d.ts +27 -0
- package/lib/components/Toggle/index.js +67 -0
- package/lib/components/index.d.ts +49 -0
- package/lib/components/index.js +90 -0
- package/lib/constants/index.d.ts +16 -0
- package/lib/constants/index.js +42 -0
- package/lib/fonts/Poppins/Poppins-Bold.ttf +0 -0
- package/lib/fonts/Poppins/Poppins-BoldItalic.ttf +0 -0
- package/lib/fonts/Poppins/Poppins-ExtraBold.ttf +0 -0
- package/lib/fonts/Poppins/Poppins-ExtraBoldItalic.ttf +0 -0
- package/lib/fonts/Poppins/Poppins-ExtraLight.ttf +0 -0
- package/lib/fonts/Poppins/Poppins-ExtraLightItalic.ttf +0 -0
- package/lib/fonts/Poppins/Poppins-Italic.ttf +0 -0
- package/lib/fonts/Poppins/Poppins-Light.ttf +0 -0
- package/lib/fonts/Poppins/Poppins-LightItalic.ttf +0 -0
- package/lib/fonts/Poppins/Poppins-Medium.ttf +0 -0
- package/lib/fonts/Poppins/Poppins-MediumItalic.ttf +0 -0
- package/lib/fonts/Poppins/Poppins-Regular.ttf +0 -0
- package/lib/fonts/Poppins/Poppins-SemiBold.ttf +0 -0
- package/lib/fonts/Poppins/Poppins-SemiBoldItalic.ttf +0 -0
- package/lib/fonts/Poppins/Poppins-Thin.ttf +0 -0
- package/lib/fonts/Poppins/Poppins-ThinItalic.ttf +0 -0
- package/lib/fonts/Roboto/Roboto-Black.ttf +0 -0
- package/lib/fonts/Roboto/Roboto-BlackItalic.ttf +0 -0
- package/lib/fonts/Roboto/Roboto-Bold.ttf +0 -0
- package/lib/fonts/Roboto/Roboto-BoldItalic.ttf +0 -0
- package/lib/fonts/Roboto/Roboto-ExtraBold.ttf +0 -0
- package/lib/fonts/Roboto/Roboto-ExtraBoldItalic.ttf +0 -0
- package/lib/fonts/Roboto/Roboto-ExtraLight.ttf +0 -0
- package/lib/fonts/Roboto/Roboto-ExtraLightItalic.ttf +0 -0
- package/lib/fonts/Roboto/Roboto-Italic-VariableFont_wdth,wght.ttf +0 -0
- package/lib/fonts/Roboto/Roboto-Italic.ttf +0 -0
- package/lib/fonts/Roboto/Roboto-Light.ttf +0 -0
- package/lib/fonts/Roboto/Roboto-LightItalic.ttf +0 -0
- package/lib/fonts/Roboto/Roboto-Medium.ttf +0 -0
- package/lib/fonts/Roboto/Roboto-MediumItalic.ttf +0 -0
- package/lib/fonts/Roboto/Roboto-Regular.ttf +0 -0
- package/lib/fonts/Roboto/Roboto-SemiBold.ttf +0 -0
- package/lib/fonts/Roboto/Roboto-SemiBoldItalic.ttf +0 -0
- package/lib/fonts/Roboto/Roboto-Thin.ttf +0 -0
- package/lib/fonts/Roboto/Roboto-ThinItalic.ttf +0 -0
- package/lib/fonts/Roboto/Roboto-VariableFont_wdth,wght.ttf +0 -0
- package/lib/fonts/SF/SF-Pro-Display-BlackItalic.otf +0 -0
- package/lib/fonts/SF/SF-Pro-Text-Bold.otf +0 -0
- package/lib/fonts/SF/SF-Pro-Text-Medium.eot +0 -0
- package/lib/fonts/SF/SF-Pro-Text-Medium.otf +0 -0
- package/lib/fonts/SF/SF-Pro-Text-Medium.svg +40549 -0
- package/lib/fonts/SF/SF-Pro-Text-Medium.ttf +0 -0
- package/lib/fonts/SF/SF-Pro-Text-Medium.woff +0 -0
- package/lib/fonts/SF/SF-Pro-Text-Medium.woff2 +0 -0
- package/lib/fonts/SF/SF-Pro-Text-Regular.otf +0 -0
- package/lib/fonts/SF/SF-Pro-Text-Regular.ttf +0 -0
- package/lib/fonts/SF/SF-Pro-Text-Semibold.otf +0 -0
- package/lib/fonts/SF/SF-Pro-Text-SemiboldItalic.otf +0 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.js +21 -0
- package/lib/style/antdDesignToken.json +503 -0
- package/lib/style/themes/base-vars.css +6 -0
- package/lib/style/themes/colorful.css +5 -0
- package/lib/style/themes/index.css +4 -0
- package/lib/style/variables.less +60 -0
- package/lib/tokens/DXPGlobal.d.ts +302 -0
- package/lib/tokens/DXPGlobal.js +37 -0
- package/lib/utils/noop.d.ts +1 -0
- package/lib/utils/noop.js +26 -0
- package/lib/utils/scaleTool.d.ts +12 -0
- package/lib/utils/scaleTool.js +66 -0
- package/lib/utils/theme.d.ts +11 -0
- package/lib/utils/theme.js +32 -0
- package/lib/utils/themeContext.d.ts +44 -0
- package/lib/utils/themeContext.js +117 -0
- package/lib/utils/tokenHelper.d.ts +1 -0
- package/lib/utils/tokenHelper.js +38 -0
- package/lib/utils/tokenManager.d.ts +1572 -0
- package/lib/utils/tokenManager.js +833 -0
- package/package.json +29 -22
- package/umd/dxp-ui.min.css +1 -2
- package/umd/dxp-ui.min.js +1 -2
- package/umd/static/SF-Pro-Text-Bold.89d66db4.otf +0 -0
- package/umd/static/SF-Pro-Text-Regular.e042d171.ttf +0 -0
- package/umd/static/SF-Pro-Text-Regular.f09e811b.otf +0 -0
- package/umd/static/SF-Pro-Text-Semibold.a5a4b4bc.otf +0 -0
- package/umd/static/SF-Pro-Text-SemiboldItalic.ed8f4a28.otf +0 -0
- package/umd/static/iconfont.176e7470.svg +1 -0
- package/umd/static/iconfont.47a0c957.ttf +0 -0
- package/umd/static/iconfont.6f470e01.eot +0 -0
- package/umd/static/iconfont.796b49bb.woff +0 -0
- package/es/assets/iconFont/iconfont.js +0 -44
- package/es/assets/iconFont/iconfont.js.map +0 -1
- package/es/components/Button/designTokens.js.map +0 -1
- package/es/components/Button/index.js.map +0 -1
- package/es/components/Button/index_backup.d.ts +0 -72
- package/es/components/Button/index_backup.js +0 -111
- package/es/components/Button/index_backup.js.map +0 -1
- package/es/components/Text/index.js.map +0 -1
- package/es/components/Text/style/text.less +0 -116
- package/es/components/index.js.map +0 -1
- package/es/constants/index.js.map +0 -1
- package/es/index.js.map +0 -1
- package/es/tokens/DXPGlobal.js.map +0 -1
- package/es/utils/noop.js.map +0 -1
- package/es/utils/themeContext.js.map +0 -1
- package/es/utils/tokenHelper.js.map +0 -1
- package/es/utils/tokenManager.js.map +0 -1
- package/umd/dxp-ui.min.css.map +0 -1
- package/umd/dxp-ui.min.js.map +0 -1
|
@@ -0,0 +1,833 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
+
mod
|
|
26
|
+
));
|
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
+
|
|
29
|
+
// src/utils/tokenManager.ts
|
|
30
|
+
var tokenManager_exports = {};
|
|
31
|
+
__export(tokenManager_exports, {
|
|
32
|
+
default: () => tokenManager_default,
|
|
33
|
+
getComponentToken: () => getComponentToken
|
|
34
|
+
});
|
|
35
|
+
module.exports = __toCommonJS(tokenManager_exports);
|
|
36
|
+
var import_DXPGlobal = __toESM(require("../tokens/DXPGlobal"));
|
|
37
|
+
var import_scaleTool = require("./scaleTool");
|
|
38
|
+
var tokenRef = { root: null };
|
|
39
|
+
var setTokenRef = (value) => {
|
|
40
|
+
tokenRef.root = JSON.parse(JSON.stringify(value));
|
|
41
|
+
};
|
|
42
|
+
setTokenRef(import_DXPGlobal.default);
|
|
43
|
+
var getComponentToken = () => {
|
|
44
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _A, _B, _C, _D, _E, _F, _G, _H, _I, _J, _K, _L, _M, _N, _O, _P, _Q, _R, _S, _T, _U, _V, _W, _X, _Y, _Z, __, _$, _aa, _ba, _ca, _da, _ea, _fa, _ga, _ha, _ia, _ja, _ka, _la, _ma, _na, _oa, _pa, _qa, _ra, _sa, _ta, _ua, _va, _wa, _xa, _ya, _za, _Aa, _Ba, _Ca, _Da, _Ea, _Fa, _Ga, _Ha, _Ia, _Ja, _Ka, _La, _Ma, _Na, _Oa, _Pa, _Qa, _Ra, _Sa, _Ta, _Ua, _Va, _Wa, _Xa, _Ya, _Za, __a, _$a, _ab, _bb, _cb, _db, _eb, _fb, _gb, _hb, _ib, _jb, _kb, _lb, _mb, _nb, _ob, _pb, _qb, _rb, _sb, _tb, _ub, _vb, _wb, _xb, _yb, _zb, _Ab, _Bb, _Cb, _Db, _Eb, _Fb, _Gb, _Hb, _Ib, _Jb, _Kb, _Lb, _Mb, _Nb, _Ob, _Pb, _Qb, _Rb, _Sb, _Tb, _Ub, _Vb, _Wb, _Xb, _Yb, _Zb, __b, _$b, _ac, _bc, _cc, _dc, _ec, _fc, _gc, _hc, _ic, _jc, _kc, _lc, _mc, _nc, _oc, _pc, _qc, _rc, _sc, _tc, _uc, _vc, _wc, _xc, _yc, _zc, _Ac, _Bc, _Cc, _Dc, _Ec, _Fc, _Gc, _Hc, _Ic, _Jc, _Kc, _Lc, _Mc, _Nc, _Oc, _Pc, _Qc, _Rc, _Sc, _Tc, _Uc, _Vc, _Wc, _Xc, _Yc, _Zc, __c, _$c, _ad, _bd, _cd, _dd, _ed, _fd, _gd, _hd, _id, _jd, _kd, _ld, _md, _nd, _od, _pd, _qd, _rd, _sd, _td, _ud, _vd, _wd, _xd, _yd, _zd, _Ad, _Bd, _Cd, _Dd, _Ed, _Fd, _Gd, _Hd, _Id, _Jd, _Kd, _Ld, _Md, _Nd, _Od, _Pd, _Qd, _Rd, _Sd, _Td, _Ud, _Vd, _Wd, _Xd, _Yd, _Zd, __d, _$d, _ae, _be, _ce, _de, _ee, _fe, _ge, _he, _ie, _je, _ke, _le, _me, _ne, _oe, _pe, _qe, _re, _se, _te, _ue, _ve, _we, _xe, _ye, _ze, _Ae, _Be, _Ce, _De, _Ee, _Fe, _Ge, _He, _Ie, _Je, _Ke, _Le, _Me, _Ne, _Oe, _Pe, _Qe, _Re, _Se, _Te, _Ue, _Ve, _We, _Xe, _Ye, _Ze, __e, _$e, _af, _bf, _cf, _df, _ef, _ff, _gf, _hf, _if, _jf, _kf, _lf, _mf, _nf, _of, _pf, _qf, _rf, _sf, _tf, _uf, _vf, _wf, _xf, _yf, _zf, _Af, _Bf, _Cf, _Df, _Ef, _Ff, _Gf, _Hf, _If, _Jf, _Kf, _Lf, _Mf, _Nf, _Of, _Pf, _Qf, _Rf, _Sf, _Tf, _Uf, _Vf, _Wf, _Xf, _Yf, _Zf, __f, _$f, _ag, _bg, _cg, _dg, _eg, _fg, _gg, _hg, _ig, _jg, _kg, _lg, _mg, _ng, _og, _pg, _qg, _rg, _sg, _tg, _ug, _vg, _wg, _xg, _yg, _zg, _Ag, _Bg, _Cg, _Dg, _Eg, _Fg, _Gg, _Hg, _Ig, _Jg, _Kg, _Lg, _Mg, _Ng, _Og, _Pg, _Qg, _Rg, _Sg, _Tg, _Ug, _Vg, _Wg, _Xg, _Yg, _Zg, __g, _$g, _ah, _bh, _ch, _dh, _eh, _fh, _gh, _hh, _ih, _jh, _kh, _lh, _mh, _nh, _oh, _ph, _qh, _rh, _sh, _th, _uh, _vh, _wh, _xh, _yh, _zh, _Ah, _Bh, _Ch, _Dh, _Eh, _Fh, _Gh, _Hh, _Ih, _Jh, _Kh, _Lh, _Mh, _Nh, _Oh, _Ph, _Qh, _Rh, _Sh, _Th, _Uh, _Vh, _Wh, _Xh, _Yh, _Zh, __h, _$h, _ai, _bi, _ci, _di, _ei, _fi, _gi, _hi, _ii, _ji, _ki, _li, _mi, _ni, _oi, _pi, _qi, _ri, _si, _ti, _ui, _vi, _wi, _xi, _yi, _zi, _Ai, _Bi, _Ci, _Di, _Ei, _Fi, _Gi, _Hi, _Ii, _Ji, _Ki, _Li, _Mi, _Ni, _Oi, _Pi, _Qi, _Ri, _Si, _Ti, _Ui, _Vi, _Wi, _Xi, _Yi, _Zi, __i, _$i, _aj, _bj, _cj, _dj, _ej, _fj, _gj, _hj, _ij, _jj, _kj, _lj, _mj, _nj, _oj, _pj, _qj, _rj, _sj, _tj, _uj, _vj, _wj, _xj, _yj, _zj, _Aj, _Bj, _Cj, _Dj, _Ej, _Fj, _Gj, _Hj, _Ij, _Jj, _Kj, _Lj, _Mj, _Nj, _Oj, _Pj, _Qj, _Rj, _Sj, _Tj, _Uj, _Vj, _Wj, _Xj, _Yj, _Zj, __j, _$j, _ak, _bk, _ck, _dk, _ek, _fk, _gk, _hk, _ik, _jk, _kk, _lk, _mk, _nk, _ok, _pk, _qk, _rk, _sk, _tk, _uk, _vk, _wk, _xk, _yk, _zk, _Ak, _Bk, _Ck, _Dk, _Ek, _Fk, _Gk, _Hk, _Ik, _Jk, _Kk, _Lk, _Mk, _Nk, _Ok, _Pk, _Qk, _Rk, _Sk, _Tk, _Uk, _Vk, _Wk, _Xk, _Yk, _Zk, __k, _$k, _al, _bl, _cl, _dl, _el, _fl, _gl, _hl, _il, _jl, _kl, _ll, _ml, _nl, _ol, _pl, _ql, _rl, _sl, _tl, _ul, _vl, _wl, _xl, _yl, _zl, _Al, _Bl, _Cl, _Dl, _El, _Fl, _Gl, _Hl, _Il, _Jl, _Kl, _Ll, _Ml, _Nl, _Ol, _Pl, _Ql, _Rl, _Sl, _Tl, _Ul, _Vl, _Wl, _Xl, _Yl, _Zl, __l, _$l, _am, _bm, _cm, _dm, _em, _fm, _gm, _hm, _im, _jm, _km, _lm, _mm, _nm, _om, _pm, _qm, _rm, _sm, _tm, _um, _vm, _wm, _xm, _ym, _zm, _Am, _Bm, _Cm, _Dm, _Em, _Fm, _Gm, _Hm, _Im, _Jm, _Km, _Lm, _Mm, _Nm, _Om, _Pm, _Qm, _Rm, _Sm, _Tm, _Um, _Vm, _Wm, _Xm, _Ym, _Zm, __m, _$m, _an, _bn, _cn, _dn, _en, _fn, _gn, _hn, _in, _jn, _kn, _ln, _mn, _nn, _on, _pn, _qn, _rn;
|
|
45
|
+
return {
|
|
46
|
+
spacinginputpaddingVerticalM: (0, import_scaleTool.wSacle)(typeof ((_a = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _a.spacingInputMd) === "number" ? (_b = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _b.spacingInputMd : 0),
|
|
47
|
+
fontSizeDesktopTitleT23: (_c = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _c.fontSizeDesktopTitleT23,
|
|
48
|
+
fontSizeDesktopContentC15: (_d = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _d.fontSizeDesktopContentC15,
|
|
49
|
+
fontSizeDesktopContentC21: (_e = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _e.fontSizeDesktopContentC21,
|
|
50
|
+
fontSizeDesktopTitleT21: (_f = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _f.fontSizeDesktopTitleT21,
|
|
51
|
+
fontSizeDesktopTitleT15: (_g = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _g.fontSizeDesktopTitleT15,
|
|
52
|
+
fontSizeDesktopContentC13: (_h = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _h.fontSizeDesktopContentC13,
|
|
53
|
+
fontSizeDesktopContentC11: (_i = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _i.fontSizeDesktopContentC11,
|
|
54
|
+
fontSizeDesktopContentC12: (_j = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _j.fontSizeDesktopContentC12,
|
|
55
|
+
fontSizeDesktopContentC14: (_k = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _k.fontSizeDesktopContentC14,
|
|
56
|
+
fontSizeDesktopTitleT1: (_l = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _l.fontSizeDesktopTitleT1,
|
|
57
|
+
fontSizeDesktopTitleT32: (_m = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _m.fontSizeDesktopTitleT32,
|
|
58
|
+
fontSizeDesktopTitleT41: (_n = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _n.fontSizeDesktopTitleT41,
|
|
59
|
+
fontSizeDesktopContentC05: (_o = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _o.fontSizeDesktopContentC05,
|
|
60
|
+
fontSizeDesktopContentC04: (_p = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _p.fontSizeDesktopContentC04,
|
|
61
|
+
fontSizeDesktopTitleT7: (_q = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _q.fontSizeDesktopTitleT7,
|
|
62
|
+
fontSizeDesktopTitleT8: (_r = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _r.fontSizeDesktopTitleT8,
|
|
63
|
+
fontSizeDesktopTitleT2: (_s = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _s.fontSizeDesktopTitleT2,
|
|
64
|
+
fontSizeDesktopTitleT5: (_t = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _t.fontSizeDesktopTitleT5,
|
|
65
|
+
fontSizeDesktopTitleT3: (_u = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _u.fontSizeDesktopTitleT3,
|
|
66
|
+
fontSizeDesktopTitleT4: (_v = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _v.fontSizeDesktopTitleT4,
|
|
67
|
+
fontSizeDesktopTitleT10: (_w = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _w.fontSizeDesktopTitleT10,
|
|
68
|
+
fontSizeMobileContentC04: (_x = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _x.fontSizeMobileContentC04,
|
|
69
|
+
fontSizeMobileContentC05: (_y = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _y.fontSizeMobileContentC05,
|
|
70
|
+
fontSizeMobileContentC11: (_z = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _z.fontSizeMobileContentC11,
|
|
71
|
+
fontSizeMobileContentC12: (_A = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _A.fontSizeMobileContentC12,
|
|
72
|
+
fontSizeMobileContentC13: (_B = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _B.fontSizeMobileContentC13,
|
|
73
|
+
fontSizeMobileContentC14: (_C = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _C.fontSizeMobileContentC14,
|
|
74
|
+
fontSizeMobileContentC15: (_D = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _D.fontSizeMobileContentC15,
|
|
75
|
+
fontSizeMobileContentC21: (_E = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _E.fontSizeMobileContentC21,
|
|
76
|
+
fontSizeMobileTitleT12: (_F = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _F.fontSizeMobileTitleT12,
|
|
77
|
+
fontSizeMobileTitleT13: (_G = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _G.fontSizeMobileTitleT13,
|
|
78
|
+
fontSizeMobileTitleT14: (_H = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _H.fontSizeMobileTitleT14,
|
|
79
|
+
fontSizeMobileTitleT15: (_I = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _I.fontSizeMobileTitleT15,
|
|
80
|
+
fontSizeMobileTitleT21: (_J = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _J.fontSizeMobileTitleT21,
|
|
81
|
+
fontSizeMobileTitleT23: (_K = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _K.fontSizeMobileTitleT23,
|
|
82
|
+
fontSizeMobileTitleT24: (_L = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _L.fontSizeMobileTitleT24,
|
|
83
|
+
fontSizeMobileTitleT25: (_M = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _M.fontSizeMobileTitleT25,
|
|
84
|
+
fontSizeMobileTitleT32: (_N = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _N.fontSizeMobileTitleT32,
|
|
85
|
+
fontSizeMobileTitleT34: (_O = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _O.fontSizeMobileTitleT34,
|
|
86
|
+
fontSizeMobileTitleT41: (_P = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _P.fontSizeMobileTitleT41,
|
|
87
|
+
fontSizeMobileTitleT45: (_Q = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Q.fontSizeMobileTitleT45,
|
|
88
|
+
fontSizeMobileNavigation: (_R = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _R.fontSizeMobileNavigation,
|
|
89
|
+
sizingVoucherImage: (_S = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _S.sizingVoucherSm,
|
|
90
|
+
sizingVoucherImageLg: (_T = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _T.sizingVoucherMd,
|
|
91
|
+
sizingVoucherHeight: (_U = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _U.sizingVoucherSm,
|
|
92
|
+
sizingVoucherHeightLg: (_V = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _V.sizingVoucherMd,
|
|
93
|
+
sizingVoucherIcon: (_W = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _W.sizingIconGeneralXs,
|
|
94
|
+
sizingVoucherIconLg: (_X = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _X.sizingIconGeneralSm,
|
|
95
|
+
sizingRibbonIconBackground: (_Y = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Y.sizingIconGeneralLg,
|
|
96
|
+
sizingRibbonIcon: (_Z = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Z.sizingIconGeneralSm,
|
|
97
|
+
sizingDrawerImageFlag: (__ = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : __.sizingImageXxs,
|
|
98
|
+
sizingDrawerImageThumbnail: (_$ = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _$.sizingImageLg,
|
|
99
|
+
sizingDrawerHandle: (_aa = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _aa.sizingIconGeneralXl,
|
|
100
|
+
sizingInputIcon: (_ba = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ba.sizingIconUtilityXs,
|
|
101
|
+
sizingInputIconLg: (_ca = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ca.sizingIconGeneralSm,
|
|
102
|
+
sizingInputIconUtilityLg: (_da = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _da.sizingIconGeneralSm,
|
|
103
|
+
sizingInputThumbnail: (_ea = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ea.sizingImageSm,
|
|
104
|
+
sizingInputIconUtility: (_fa = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _fa.sizingIconUtilityXs,
|
|
105
|
+
sizingInputImageFlag: (_ga = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ga.sizingImageXxs,
|
|
106
|
+
sizingInputImageFlagLg: (_ha = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ha.sizingImageXs,
|
|
107
|
+
sizingSearchInputIcon: (_ia = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ia.sizingIconUtilityXs,
|
|
108
|
+
sizingSearchInputIconLg: (_ja = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ja.sizingIconGeneralSm,
|
|
109
|
+
sizingSelectorThumbnail: (_ka = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ka.sizingImageSm,
|
|
110
|
+
sizingSelectorVariant6Thumbnail: (_la = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _la.sizingImageMd,
|
|
111
|
+
sizingToastIcon: (_ma = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ma.sizingIconUtilitySm,
|
|
112
|
+
sizingToastTextHeight: (_na = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _na.sizingTextBoxSm,
|
|
113
|
+
sizingTextLinkIconLeft: (_oa = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _oa.sizingIconGeneralSm,
|
|
114
|
+
sizingTextLinkIconRight: (_pa = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _pa.sizingIconUtilityXs,
|
|
115
|
+
sizingTextLinkIconRightLg: (_qa = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _qa.sizingIconUtilityXs2,
|
|
116
|
+
sizingTagShort: (_ra = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ra.sizingTagSm,
|
|
117
|
+
sizingTagTall: (_sa = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _sa.sizingTagMd,
|
|
118
|
+
sizingTagTallLg: (_ta = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ta.sizingTagLg,
|
|
119
|
+
sizingTabsIcon: (_ua = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ua.sizingIconGeneralSm,
|
|
120
|
+
sizingStepperInner: (_va = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _va.sizingIconGeneralSm,
|
|
121
|
+
sizingStepperOuter: (_wa = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _wa.sizingIconGeneralMd,
|
|
122
|
+
sizingStepperOuterLg: (_xa = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _xa.sizingIconGeneralLg,
|
|
123
|
+
sizingStepperInnerLg: (_ya = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ya.sizingIconGeneralMd,
|
|
124
|
+
sizingPaginationIcon: (_za = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _za.sizingIconUtilitySm,
|
|
125
|
+
sizingPaginationIconXs: (_Aa = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Aa.sizingIconUtilityXs,
|
|
126
|
+
sizingPaginationBackground: (_Ba = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ba.sizingIconGeneralMd,
|
|
127
|
+
sizingPaginationBackgroundLg: (_Ca = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ca.sizingIconGeneralLg,
|
|
128
|
+
sizingNotificationIcon: (_Da = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Da.sizingIconUtilitySm,
|
|
129
|
+
sizingBottomNavigationIcon: (_Ea = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ea.sizingIconGeneralSm,
|
|
130
|
+
sizingModalIcon: (_Fa = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Fa.sizingIconUtilitySm,
|
|
131
|
+
sizingLocationPinDefault: (_Ga = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ga.sizingIconUtilitySm,
|
|
132
|
+
sizingLocationPinActive: (_Ha = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ha.sizingIconUtilityLg,
|
|
133
|
+
sizingButtonIcon: (_Ia = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ia.sizingIconGeneralSm,
|
|
134
|
+
sizingListItemIconImage: (_Ja = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ja.sizingImageMd,
|
|
135
|
+
sizingListItemIconIcon: (_Ka = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ka.sizingIconGeneralMd,
|
|
136
|
+
sizingListItemIconIconStatus: (_La = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _La.sizingIconGeneralSm,
|
|
137
|
+
sizingListItemImageImage: (_Ma = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ma.sizingImageXxl,
|
|
138
|
+
sizingListItemImageIcon: (_Na = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Na.sizingIconGeneralXs,
|
|
139
|
+
sizingListItemImageIconLg: (_Oa = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Oa.sizingIconGeneralXs2,
|
|
140
|
+
sizingListItemImageThumbnail: (_Pa = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Pa.sizingImageLg,
|
|
141
|
+
sizingListItemIcon: (_Qa = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Qa.sizingIconUtilityXs,
|
|
142
|
+
sizingListItemIconLg: (_Ra = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ra.sizingIconUtilitySm,
|
|
143
|
+
sizingCirclePatternVariant1: (_Sa = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Sa.sizingCirclePatternMd,
|
|
144
|
+
sizingCirclePatternVariant1Lg: (_Ta = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ta.sizingCirclePatternLg,
|
|
145
|
+
sizingCirclePatternVariant2: (_Ua = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ua.sizingCirclePatternXs,
|
|
146
|
+
sizingCirclePatternVariant2Lg: (_Va = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Va.sizingCirclePatternSm,
|
|
147
|
+
sizingCarouselIcon: (_Wa = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Wa.sizingIconUtilitySm,
|
|
148
|
+
sizingCarouselIconBackground: (_Xa = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Xa.sizingIconUtilityLg,
|
|
149
|
+
sizingBannerIcon: (_Ya = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ya.sizingIconSpotXs,
|
|
150
|
+
sizingBannerIconLg: (_Za = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Za.sizingIconSpotLg,
|
|
151
|
+
sizingBulletListIcon: (__a = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : __a.sizingBullet,
|
|
152
|
+
sizingBulletListIconSm: (_$a = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _$a.sizingBulletSm,
|
|
153
|
+
sizingAccordionIcon: (_ab = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ab.sizingIconUtilityXs,
|
|
154
|
+
sizingAccordionIconLg: (_bb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _bb.sizingIconUtilitySm,
|
|
155
|
+
sizingCardIconSubtitle: (_cb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _cb.sizingIconGeneralXs,
|
|
156
|
+
sizingCardIconSubtitleLg: (_db = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _db.sizingIconGeneralXs2,
|
|
157
|
+
sizingCardIconTitle: (_eb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _eb.sizingIconGeneralXs,
|
|
158
|
+
sizingCardIconTitleLg: (_fb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _fb.sizingIconGeneralSm,
|
|
159
|
+
sizingCardThumbnailMd: (_gb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _gb.sizingImageMd,
|
|
160
|
+
sizingCardThumbnailLg: (_hb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _hb.sizingImageLg,
|
|
161
|
+
sizingCardThumbnailXl: (_ib = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ib.sizingImageXl,
|
|
162
|
+
sizingCardColorListSm: (_jb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _jb.sizingColorList,
|
|
163
|
+
sizingCalendarDate: (_kb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _kb.sizingTextBoxXs,
|
|
164
|
+
sizingCalendarDay: (_lb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _lb.sizingTextBoxXs,
|
|
165
|
+
sizingChipIconClose: (_mb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _mb.sizingIconUtilityXxs,
|
|
166
|
+
sizingIconButtonIconMedium: (_nb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _nb.sizingIconGeneralSm,
|
|
167
|
+
sizingIconButtonIconSmall: (_ob = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ob.sizingIconGeneralXs,
|
|
168
|
+
sizingDateTimePickerDate: (_pb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _pb.sizingTextBoxXs,
|
|
169
|
+
sizingDateTimePickerIcon: (_qb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _qb.sizingIconUtilitySm,
|
|
170
|
+
sizingDateTimePickerIconXs: (_rb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _rb.sizingIconUtilityXs,
|
|
171
|
+
sizingDateTimePickerDay: (_sb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _sb.sizingTextBoxXs,
|
|
172
|
+
sizingDateTimePickerTimeXs: (_tb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _tb.sizingTextBoxXs,
|
|
173
|
+
sizingDateTimePickerTime: (_ub = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ub.sizingTextBoxLg,
|
|
174
|
+
sizingDateTimePickerDayXs: (_vb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _vb.sizingTextBoxXxs,
|
|
175
|
+
spacingVoucherListViewTextPaddingHorizontal: (_wb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _wb.spacingGapMd,
|
|
176
|
+
spacingVoucherListViewTextVerticalGap: (_xb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _xb.spacingTextXs,
|
|
177
|
+
spacingVoucherListViewTextPointsPaddingLeft: (_yb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _yb.spacingTextXs,
|
|
178
|
+
spacingVoucherListViewNoImageTextPaddingHorizontal: (_zb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _zb.spacingGapMd,
|
|
179
|
+
spacingVoucherListViewNoImageTextVerticalGap: (_Ab = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ab.spacingTextXs,
|
|
180
|
+
spacingVoucherListViewNoImageCheckboxPaddingHorizontal: (_Bb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Bb.spacingGapXxl,
|
|
181
|
+
spacingRibbonHorizontalGap: (_Cb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Cb.spacingGapSm,
|
|
182
|
+
spacingVoucherGridViewPaddingHorizontal: (_Db = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Db.spacingGapMd,
|
|
183
|
+
spacingVoucherGridViewPaddingVertical: (_Eb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Eb.spacingGapMd,
|
|
184
|
+
spacingVoucherGridViewTextVerticalGap: (_Fb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Fb.spacingTextXs,
|
|
185
|
+
spacingVoucherGridViewTextHorizontalGap: (_Gb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Gb.spacingTextXs,
|
|
186
|
+
spacingVoucherGridViewLabelPaddingBottom: (_Hb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Hb.spacingTextMd,
|
|
187
|
+
spacingVoucherGridViewLabelPaddingTop: (_Ib = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ib.spacingTextXs,
|
|
188
|
+
spacingDrawerPaddingHorizontal: (_Jb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Jb.spacingGapMd,
|
|
189
|
+
spacingDrawerPaddingBottom: (_Kb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Kb.spacingGapLg,
|
|
190
|
+
spacingDrawerPaddingTop: (_Lb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Lb.spacingGapLg,
|
|
191
|
+
spacingDrawerVerticalGap: (_Mb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Mb.spacingGapMd,
|
|
192
|
+
spacingDrawerListOptionPaddingVertical: (_Nb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Nb.spacingGapSm,
|
|
193
|
+
spacingDrawerListOptionPaddingHorizontal: (_Ob = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ob.spacingGapMd,
|
|
194
|
+
spacingDrawerListOptionHorizontalGap: (_Pb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Pb.spacingGapMd,
|
|
195
|
+
spacingDrawerListVerticalGap: (_Qb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Qb.spacingGapSm,
|
|
196
|
+
spacingDrawerImageFlagPaddingRight: (_Rb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Rb.spacingGapSm,
|
|
197
|
+
spacingDrawerImageThumbnailPaddingRight: (_Sb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Sb.spacingGapMd,
|
|
198
|
+
spacingDrawerHeaderPaddingHorizontal: (_Tb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Tb.spacingGapMd,
|
|
199
|
+
spacingDrawerHeaderPaddingTop: (_Ub = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ub.spacingGapLg,
|
|
200
|
+
spacingDrawerSearchPaddingHorizontal: (_Vb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Vb.spacingGapMd,
|
|
201
|
+
spacingDrawerLabelPaddingHorizontal: (_Wb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Wb.spacingGapLg,
|
|
202
|
+
spacingDrawerLabelPaddingVertical: (_Xb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Xb.spacingGapMd,
|
|
203
|
+
spacingDrawerHandlePaddingTop: (_Yb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Yb.spacingGapSm,
|
|
204
|
+
spacingDrawerHandlePaddingBottom: (_Zb = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Zb.spacingGapLg,
|
|
205
|
+
spacingDrawerChipGroupVerticalGap: (__b = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : __b.spacingGapMd,
|
|
206
|
+
spacingDrawerChipGroupHorizontalGap: (_$b = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _$b.spacingGapSm,
|
|
207
|
+
spacingDrawerChipVerticalGap: (_ac = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ac.spacingGapMd,
|
|
208
|
+
spacingDrawerChipPaddingBottom: (_bc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _bc.spacingGapSm,
|
|
209
|
+
spacingStickyFooterPaddingHorizontal: (_cc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _cc.spacingGapMd,
|
|
210
|
+
spacingStickyFooterPaddingVertical: (_dc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _dc.spacingGapMd,
|
|
211
|
+
spacingStickyFooterPaddingBottom: (_ec = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ec.spacingGapLg,
|
|
212
|
+
spacingStickyFooterPaddingTop: (_fc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _fc.spacingGapMd,
|
|
213
|
+
spacingStickyFooterHorizontalGap: (_gc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _gc.spacingGapMd,
|
|
214
|
+
spacingStickyFooterVerticalGap: (_hc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _hc.spacingGapSm,
|
|
215
|
+
spacingStickyFooterTextLinkVerticalGap: (_ic = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ic.spacingGapMd,
|
|
216
|
+
spacingInputPaddingVertical: (_jc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _jc.spacingInputMd2,
|
|
217
|
+
spacingInputPaddingVerticalLg: (_kc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _kc.spacingInputMd3,
|
|
218
|
+
spacingInputPaddingVerticalActive: (_lc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _lc.spacingInputSm,
|
|
219
|
+
spacingInputPaddingVerticalLgActive: (_mc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _mc.spacingInputSm3,
|
|
220
|
+
spacingInputPaddingHorizontal: (_nc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _nc.spacingInputMd,
|
|
221
|
+
spacingInputVerticalGap: (_oc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _oc.spacingGapSm,
|
|
222
|
+
spacingInputHorizontalGap: (_pc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _pc.spacingTextSm,
|
|
223
|
+
spacingInputTextHintMessagePaddingTop: (_qc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _qc.spacingTextXs,
|
|
224
|
+
spacingInputTextCounterPaddingTop: (_rc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _rc.spacingTextXs,
|
|
225
|
+
spacingInputTextCounterPaddingLeft: (_sc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _sc.spacingTextMd,
|
|
226
|
+
spacingInputTextLabelPaddingRight: (_tc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _tc.spacingTextMd,
|
|
227
|
+
spacingInputTextPointsPaddingHorizontal: (_uc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _uc.spacingTextMd,
|
|
228
|
+
spacingInputTextLinkPaddingLeft: (_vc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _vc.spacingTextMd,
|
|
229
|
+
spacingInputTextNumberPaddingHorizontal: (_wc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _wc.spacingTextMd,
|
|
230
|
+
spacingInputThumbnailPaddingLeft: (_xc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _xc.spacingIconMd,
|
|
231
|
+
spacingInputIconPaddingLeft: (_yc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _yc.spacingIconMd,
|
|
232
|
+
spacingInputIconPaddingRight: (_zc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _zc.spacingGapSm,
|
|
233
|
+
spacingInputListOptionsPaddingHorizontal: (_Ac = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ac.spacingInputMd,
|
|
234
|
+
spacingInputListOptionsPaddingVertical: (_Bc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Bc.spacingInputSm,
|
|
235
|
+
spacingInputListOptionsHorizontalGap: (_Cc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Cc.spacingGapMd,
|
|
236
|
+
spacingInputListOptionsVerticalGap: (_Dc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Dc.spacingInputMd,
|
|
237
|
+
spacingInputOptionsPaddingVertical: (_Ec = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ec.spacingInputSm,
|
|
238
|
+
spacingInputImageFlagPaddingRight: (_Fc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Fc.spacingInputSm,
|
|
239
|
+
spacingSearchInputPaddingVertical: (_Gc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Gc.spacingInputSm2,
|
|
240
|
+
spacingSearchInputPaddingVerticalLg: (_Hc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Hc.spacingInputSm3,
|
|
241
|
+
spacingSearchInputVerticalGap: (_Ic = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ic.spacingGapSm,
|
|
242
|
+
spacingSearchInputPaddingHorizontal: (_Jc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Jc.spacingInputMd,
|
|
243
|
+
spacingSearchInputIconPaddingRight: (_Kc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Kc.spacingGapSm,
|
|
244
|
+
spacingSearchInputIconPaddingLeft: (_Lc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Lc.spacingGapMd,
|
|
245
|
+
spacingSearchInputResultLabelPaddingHorizontal: (_Mc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Mc.spacingGapMd,
|
|
246
|
+
spacingSearchInputResultListPaddingLeft: (_Nc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Nc.spacingGapXxl,
|
|
247
|
+
spacingSearchInputResultListPaddingRight: (_Oc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Oc.spacingGapMd,
|
|
248
|
+
spacingSearchInputResultPaddingVertical: (_Pc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Pc.spacingInputSm,
|
|
249
|
+
spacingFileInputTextLabelPaddingBottom: (_Qc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Qc.spacingInputXs,
|
|
250
|
+
spacingFileInputTextVerticalGap: (_Rc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Rc.spacingInputSm,
|
|
251
|
+
spacingFileInputTextLinkPaddingBottom: (_Sc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Sc.spacingInputXs,
|
|
252
|
+
spacingFileInputTextLinkPaddingLeft: (_Tc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Tc.spacingInputMd,
|
|
253
|
+
spacingRatingIconHorizontalGap: (_Uc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Uc.spacingIconXs,
|
|
254
|
+
spacingRatingHorizontalGap: (_Vc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Vc.spacingGapSm,
|
|
255
|
+
spacingSelectorPaddingHorizontal: (_Wc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Wc.spacingGapMd,
|
|
256
|
+
spacingSelectorPaddingVertical: (_Xc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Xc.spacingGapMd,
|
|
257
|
+
spacingSelectorVerticalGap: (_Yc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Yc.spacingGapMd,
|
|
258
|
+
spacingSelectorHorizontalGap: (_Zc = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Zc.spacingGapMd,
|
|
259
|
+
spacingSelectorVariant6PaddingHorizontal: (__c = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : __c.spacingGapSm,
|
|
260
|
+
spacingSelectorVariant6VerticalGap: (_$c = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _$c.spacingGapXs,
|
|
261
|
+
spacingSelectorVariant6SubtitlePaddingTop: (_ad = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ad.spacingTextXs,
|
|
262
|
+
spacingSelectorThumbnailPaddingLeft: (_bd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _bd.spacingIconMd,
|
|
263
|
+
spacingSelectorVariant7PaddingHorizontal: (_cd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _cd.spacingGapSm,
|
|
264
|
+
spacingSelectorTextUnavailablePaddingTop: (_dd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _dd.spacingTextXs,
|
|
265
|
+
spacingSelectorTextSubtitlePaddingTop: (_ed = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ed.spacingTextXs,
|
|
266
|
+
spacingSelectorTextPointsPaddingLeft: (_fd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _fd.spacingTextMd,
|
|
267
|
+
spacingSelectorTextTagPaddingLeft: (_gd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _gd.spacingTextSm,
|
|
268
|
+
spacingToastHorizontalGap: (_hd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _hd.spacingGapMd,
|
|
269
|
+
spacingToastPaddingHorizontal: (_id = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _id.spacingGapMd,
|
|
270
|
+
spacingToastPaddingVertical: (_jd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _jd.spacingGapMd,
|
|
271
|
+
spacingToastPaddingHorizontalLg: (_kd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _kd.spacingGapLg,
|
|
272
|
+
spacingToastPaddingVerticalLg: (_ld = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ld.spacingGapLg,
|
|
273
|
+
spacingTextLinkHorizontalGap: (_md = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _md.spacingGapSm,
|
|
274
|
+
spacingTagPaddingHorizontal: (_nd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _nd.spacingGapMd,
|
|
275
|
+
spacingTabsVerticalGap: (_od = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _od.spacingGapSm,
|
|
276
|
+
spacingTabsPaddingHorizontal: (_pd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _pd.spacingGapLg,
|
|
277
|
+
spacingTabsIconVerticalGap: (_qd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _qd.spacingIconXs,
|
|
278
|
+
spacingTablePaddingHorizontal: (_rd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _rd.spacingGapMd,
|
|
279
|
+
spacingTablePaddingHorizontalLg: (_sd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _sd.spacingGapLg,
|
|
280
|
+
spacingTableCellPaddingVertical: (_td = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _td.spacingGapSm,
|
|
281
|
+
spacingTableCellPaddingVerticalLg: (_ud = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ud.spacingGapLg,
|
|
282
|
+
spacingTableCellHorizontalGap: (_vd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _vd.spacingGapMd,
|
|
283
|
+
spacingPaginationHorizontalGapSm: (_wd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _wd.spacingGapMd,
|
|
284
|
+
spacingPaginationHorizontalGapLg: (_xd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _xd.spacingGapLg,
|
|
285
|
+
spacingPaginationIconPaddingHorizontal: (_yd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _yd.spacingGapSm2,
|
|
286
|
+
spacingPaginationIconPaddingHorizontalLg: (_zd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _zd.spacingGapSm,
|
|
287
|
+
spacingPaginationIconHorizontalGap: (_Ad = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ad.spacingGapMd,
|
|
288
|
+
spacingPaginationIconHorizontalGapLg: (_Bd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Bd.spacingGapSm,
|
|
289
|
+
spacingPaginationIconPaddingVertical: (_Cd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Cd.spacingGapSm2,
|
|
290
|
+
spacingPaginationIconPaddingVerticalLg: (_Dd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Dd.spacingGapSm,
|
|
291
|
+
spacingPaginationTextInputHorizontalGap: (_Ed = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ed.spacingGapSm,
|
|
292
|
+
spacingNumberedListHorizontalGap: (_Fd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Fd.spacingGapSm,
|
|
293
|
+
spacingNumberedListHorizontalGapXs: (_Gd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Gd.spacingGapXs,
|
|
294
|
+
spacingNumberedListVerticalGap: (_Hd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Hd.spacingGapSm,
|
|
295
|
+
spacingNotificationPaddingHorizontal: (_Id = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Id.spacingGapMd,
|
|
296
|
+
spacingNotificationPaddingVertical: (_Jd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Jd.spacingGapMd,
|
|
297
|
+
spacingNotificationVerticalGap: (_Kd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Kd.spacingGapSm,
|
|
298
|
+
spacingNotificationHorizontalGap: (_Ld = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ld.spacingGapSm,
|
|
299
|
+
spacingNotificationPaddingHorizontalLg: (_Md = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Md.spacingGapLg,
|
|
300
|
+
spacingNotificationPaddingVerticalLg: (_Nd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Nd.spacingGapLg,
|
|
301
|
+
spacingNotificationTextLinkPaddingTop: (_Od = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Od.spacingTextSm,
|
|
302
|
+
spacingTopNavigationPaddingHorizontal: (_Pd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Pd.spacingGapSm,
|
|
303
|
+
spacingTopNavigationPaddingBottom: (_Qd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Qd.spacingGapSm,
|
|
304
|
+
spacingTopNavigationHorizontalGap: (_Rd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Rd.spacingGapMd,
|
|
305
|
+
spacingTopNavigationIconButtonHorizontalGap: (_Sd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Sd.spacingIconSm,
|
|
306
|
+
spacingTopNavigationTextLinkPaddingRight: (_Td = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Td.spacingIconSm,
|
|
307
|
+
spacingTopNavigationTitlePaddingVertical: (_Ud = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ud.spacingIconSm,
|
|
308
|
+
spacingBottomNavigationPaddingVertical: (_Vd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Vd.spacingGapSm,
|
|
309
|
+
spacingBottomNavigationPaddingHorizontal: (_Wd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Wd.spacingGapSm,
|
|
310
|
+
spacingModalPaddingHorizontal: (_Xd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Xd.spacingGapMd,
|
|
311
|
+
spacingModalCardVerticalGap: (_Yd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Yd.spacingGapMd,
|
|
312
|
+
spacingModalCardPaddingHorizontal: (_Zd = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Zd.spacingGapLg,
|
|
313
|
+
spacingModalCardPaddingTop: (__d = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : __d.spacingGapLg,
|
|
314
|
+
spacingModalCardPaddingBottom: (_$d = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _$d.spacingGapXl,
|
|
315
|
+
spacingModalCardPaddingHorizontalLg: (_ae = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ae.spacingGapXl,
|
|
316
|
+
spacingModalCardPaddingHorizontalSm: (_be = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _be.spacingGapXl,
|
|
317
|
+
spacingModalCardPaddingTopLg: (_ce = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ce.spacingGapXl,
|
|
318
|
+
spacingModalCardPaddingTopSm: (_de = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _de.spacingGapXl,
|
|
319
|
+
spacingModalCardPaddingBottomLg: (_ee = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ee.spacingGapXxl,
|
|
320
|
+
spacingModalCardPaddingBottomSm: (_fe = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _fe.spacingGapXxl,
|
|
321
|
+
spacingModalIconPaddingLeft: (_ge = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ge.spacingIconMd,
|
|
322
|
+
spacingModalButtonPaddingTop: (_he = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _he.spacingGapSm,
|
|
323
|
+
spacingModalButtonStickyPaddingHorizontal: (_ie = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ie.spacingGapLg,
|
|
324
|
+
spacingModalButtonStickyPaddingVertical: (_je = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _je.spacingGapLg,
|
|
325
|
+
spacingButtonIconPaddingVerticalLg: (_ke = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ke.spacingIconXxs,
|
|
326
|
+
spacingButtonPaddingHorizontal: (_le = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _le.spacingGapLg,
|
|
327
|
+
spacingButtonPaddingVertical: (_me = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _me.spacingGapSm,
|
|
328
|
+
spacingButtonMiniPaddingHorizontal: (_ne = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ne.spacingGapMd,
|
|
329
|
+
spacingButtonMiniPaddingVertical: (_oe = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _oe.spacingGapXs,
|
|
330
|
+
spacingDividerHorizontalGap: (_pe = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _pe.spacingGapMd,
|
|
331
|
+
spacingListItemTextPaddingHorizontal: (_qe = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _qe.spacingTextMd,
|
|
332
|
+
spacingListItemIconStatusPaddingRight: (_re = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _re.spacingGapMd,
|
|
333
|
+
spacingListItemLinkPaddingRight: (_se = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _se.spacingGapMd,
|
|
334
|
+
spacingListItemTogglePaddingRight: (_te = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _te.spacingGapMd,
|
|
335
|
+
spacingListItemButtonPaddingLeft: (_ue = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ue.spacingGapSm,
|
|
336
|
+
spacingListItemIconPaddingLeft: (_ve = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ve.spacingIconSm,
|
|
337
|
+
spacingListItemImagePaddingRight: (_we = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _we.spacingImageMd,
|
|
338
|
+
spacingListItemIconImagePaddingVertical: (_xe = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _xe.spacingImageMd,
|
|
339
|
+
spacingListItemIconImagePaddingHorizontal: (_ye = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ye.spacingImageMd,
|
|
340
|
+
spacingListItemIconIconPaddingVertical: (_ze = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ze.spacingIconLg,
|
|
341
|
+
spacingListItemIconIconPaddingHorizontal: (_Ae = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ae.spacingIconLg,
|
|
342
|
+
spacingListItemImageIconPaddingRight: (_Be = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Be.spacingIconXs,
|
|
343
|
+
spacingListItemImagePointsPaddingTop: (_Ce = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ce.spacingIconXs,
|
|
344
|
+
spacingHeroBannerIndicatorPaddingBottom: (_De = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _De.spacingGapMd,
|
|
345
|
+
spacingHeroBannerIndicatorHorizontalGap: (_Ee = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ee.spacingGapSm,
|
|
346
|
+
spacingHeroBannerTextPaddingHorizontal: (_Fe = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Fe.spacingGapLg,
|
|
347
|
+
spacingCirclePatternVariant1TextPaddingTop: (_Ge = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ge.spacingTextMd,
|
|
348
|
+
spacingCirclePatternVariant1VerticalGap: (_He = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _He.spacingGapXxl,
|
|
349
|
+
spacingCirclePatternVariant2TextPaddingLeft: (_Ie = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ie.spacingTextMd,
|
|
350
|
+
spacingCirclePatternVariant2VerticalGap: (_Je = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Je.spacingGapLg,
|
|
351
|
+
spacingCirclePatternVariant2VerticalGapLg: (_Ke = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ke.spacingGapXl,
|
|
352
|
+
spacingCirclePatternVariant2HorizontalGapLg: (_Le = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Le.spacingGapXxxl,
|
|
353
|
+
spacingCarouselIndicatorPaddingTop: (_Me = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Me.spacingGapSm,
|
|
354
|
+
spacingCarouselIndicatorHorizontalGap: (_Ne = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ne.spacingGapSm,
|
|
355
|
+
spacingCarouselIndicatorPaddingTopLg: (_Oe = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Oe.spacingGapMd,
|
|
356
|
+
spacingCarouselPaddingTop: (_Pe = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Pe.spacingGapXxl,
|
|
357
|
+
spacingCarouselPaddingHorizontal: (_Qe = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Qe.spacingGapLg,
|
|
358
|
+
spacingCarouselPaddingHorizontalLg: (_Re = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Re.spacingGapXl,
|
|
359
|
+
spacingCarouselTextVerticalGap: (_Se = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Se.spacingGapMd,
|
|
360
|
+
spacingBannerPaddingTop: (_Te = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Te.spacingGapXl,
|
|
361
|
+
spacingBannerPaddingBottom: (_Ue = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ue.spacingGapXl,
|
|
362
|
+
spacingBannerPaddingHorizontal: (_Ve = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ve.spacingGapLg,
|
|
363
|
+
spacingBannerVerticalGap: (_We = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _We.spacingGapSm,
|
|
364
|
+
spacingBannerVerticalGapLg: (_Xe = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Xe.spacingGapMd,
|
|
365
|
+
spacingBannerButtonPaddingTop: (_Ye = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ye.spacingGapSm,
|
|
366
|
+
spacingBreadcrumbsHorizontalGap: (_Ze = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ze.spacingGapSm,
|
|
367
|
+
spacingBreadcrumbsDividerPaddingRight: (__e = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : __e.spacingGapSm,
|
|
368
|
+
spacingBulletListHorizontalGapSm: (_$e = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _$e.spacingGapSm,
|
|
369
|
+
spacingBulletListHorizontalGap: (_af = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _af.spacingGapSm2,
|
|
370
|
+
spacingBulletListPaddingLeft: (_bf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _bf.spacingGapSm,
|
|
371
|
+
spacingBulletListVerticalGap: (_cf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _cf.spacingGapSm,
|
|
372
|
+
spacingBulletListIconPaddingTopXs: (_df = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _df.spacingBulletXs,
|
|
373
|
+
spacingBulletListIconPaddingTopSm: (_ef = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ef.spacingBulletSm,
|
|
374
|
+
spacingBulletListIconPaddingTopMd: (_ff = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ff.spacingBulletMd,
|
|
375
|
+
spacingAccordionHorizontalGap: (_gf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _gf.spacingGapMd,
|
|
376
|
+
spacingAccordionTitlePaddingVertical: (_hf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _hf.spacingTextMd,
|
|
377
|
+
spacingAccordionBodyPaddingBottom: (_if = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _if.spacingTextMd,
|
|
378
|
+
spacingAccordionIconPaddingTop: (_jf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _jf.spacingIconXs,
|
|
379
|
+
spacingCardTitleImagePaddingRight: (_kf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _kf.spacingGapMd,
|
|
380
|
+
spacingCardPaddingHorizontal: (_lf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _lf.spacingGapMd,
|
|
381
|
+
spacingCardPaddingVertical: (_mf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _mf.spacingGapMd,
|
|
382
|
+
spacingCardPaddingBottom: (_nf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _nf.spacingGapMd,
|
|
383
|
+
spacingCardButtonPaddingLeft: (_of = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _of.spacingGapMd,
|
|
384
|
+
spacingCardTagPaddingBottom: (_pf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _pf.spacingGapSm,
|
|
385
|
+
spacingCardTitleVerticalGap: (_qf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _qf.spacingGapSm,
|
|
386
|
+
spacingCardTitleHorizontalGap: (_rf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _rf.spacingGapMd,
|
|
387
|
+
spacingCardTitleHorizontalGapXs: (_sf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _sf.spacingGapXs,
|
|
388
|
+
spacingCalendarMonthPaddingVertical: (_tf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _tf.spacingGapMd,
|
|
389
|
+
spacingCalendarMonthPaddingBottomLg: (_uf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _uf.spacingGapSm,
|
|
390
|
+
spacingCalendarDayPaddingVertical: (_vf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _vf.spacingGapMd,
|
|
391
|
+
spacingCalendarPaddingVerticalLg: (_wf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _wf.spacingGapMd,
|
|
392
|
+
spacingCalendarPaddingHorizontalLg: (_xf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _xf.spacingGapMd,
|
|
393
|
+
spacingCalendarPaddingHorizontal: (_yf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _yf.spacingGapLg,
|
|
394
|
+
spacingCalendarDatesVerticalGap: (_zf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _zf.spacingGapSm,
|
|
395
|
+
spacingCalendarButtonPaddingLeft: (_Af = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Af.spacingGapLg,
|
|
396
|
+
spacingChipPaddingHorizontal: (_Bf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Bf.spacingGapMd,
|
|
397
|
+
spacingChipPaddingVertical: (_Cf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Cf.spacingGapXs,
|
|
398
|
+
spacingChipTextLinkPaddingVertical: (_Df = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Df.spacingGapXs,
|
|
399
|
+
spacingChipTextLinkPaddingHorizontal: (_Ef = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ef.spacingGapSm,
|
|
400
|
+
spacingIconButtonPaddingHorizontal: (_Ff = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ff.spacingGapSm,
|
|
401
|
+
spacingIconButtonHorizontalGap: (_Gf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Gf.spacingGapSm,
|
|
402
|
+
spacingIconButtonPaddingVertical: (_Hf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Hf.spacingGapSm,
|
|
403
|
+
spacingIconButtonPaddingHorizontalSm: (_If = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _If.spacingGapXs,
|
|
404
|
+
spacingIconButtonHorizontalGapSm: (_Jf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Jf.spacingGapMd,
|
|
405
|
+
spacingIconButtonPaddingVerticalSm: (_Kf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Kf.spacingGapXs,
|
|
406
|
+
spacingCardIconListHorizontalGap: (_Lf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Lf.spacingGapSm,
|
|
407
|
+
spacingCardFooterVerticalGap: (_Mf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Mf.spacingGapMd,
|
|
408
|
+
spacingCardFooterHorizontalGap: (_Nf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Nf.spacingGapMd,
|
|
409
|
+
spacingCardBodyVerticalGap: (_Of = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Of.spacingGapSm,
|
|
410
|
+
spacingSwimlaneHorizontalGapSm: (_Pf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Pf.spacingGapSm,
|
|
411
|
+
spacingSwimlaneHorizontalGapMd: (_Qf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Qf.spacingGapMd,
|
|
412
|
+
spacingDateTimePickerMonthPaddingBottom: (_Rf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Rf.spacingGapSm,
|
|
413
|
+
spacingDateTimePickerPaddingTop: (_Sf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Sf.spacingGapMd,
|
|
414
|
+
spacingDateTimePickerPaddingBottom: (_Tf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Tf.spacingGapMd,
|
|
415
|
+
spacingDateTimePickerPaddingHorizontal: (_Uf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Uf.spacingGapMd,
|
|
416
|
+
spacingDateTimePickerVerticalGap: (_Vf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Vf.spacingGapMd,
|
|
417
|
+
spacingDateTimePickerButtonPaddingLeft: (_Wf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Wf.spacingGapLg,
|
|
418
|
+
spacingDateTimePickerTimePaddingVertical: (_Xf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Xf.spacingGapSm,
|
|
419
|
+
spacingDateTimePickerTimePaddingBottom: (_Yf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Yf.spacingGapSm,
|
|
420
|
+
spacingDateTimePickerYearPaddingVertical: (_Zf = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Zf.spacingGapSm,
|
|
421
|
+
spacingRadioInputVerticalGap: (__f = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : __f.spacingGapMd,
|
|
422
|
+
spacingRadioInputHorizontalGap: (_$f = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _$f.spacingGapMd,
|
|
423
|
+
spacingCardColorListHorizontalGap: (_ag = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ag.spacingGapXs,
|
|
424
|
+
spacingCoachmarkVerticalGap: (_bg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _bg.spacingGapSm,
|
|
425
|
+
spacingCoachmarkPaddingHorizontal: (_cg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _cg.spacingGapMd,
|
|
426
|
+
spacingCoachmarkPaddingVertical: (_dg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _dg.spacingGapMd,
|
|
427
|
+
spacingCoachmarkIndicatorPaddingLeft: (_eg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _eg.spacingGapSm2,
|
|
428
|
+
spacingCoachmarkIndicatorPaddingRight: (_fg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _fg.spacingGapSm2,
|
|
429
|
+
colorVoucherBackground: (_gg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _gg.colorBackgroundStandard,
|
|
430
|
+
colorVoucherBackgroundRedeemed: (_hg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _hg.colorBackgroundDisabled,
|
|
431
|
+
colorVoucherTextTitle: (_ig = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ig.colorTextNeutral,
|
|
432
|
+
colorVoucherTextSubtitle: (_jg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _jg.colorTextSubtle,
|
|
433
|
+
colorVoucherTextPoints: (_kg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _kg.colorTextNeutral,
|
|
434
|
+
colorVoucherTextPointsRedeemed: (_lg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _lg.colorTextSubtle,
|
|
435
|
+
colorVoucherTextTitleRedeemed: (_mg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _mg.colorTextNeutral,
|
|
436
|
+
colorVoucherTextSubtitleRedeemed: (_ng = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ng.colorTextSubtle,
|
|
437
|
+
colorVoucherTextSubtitleExpiring: (_og = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _og.colorTextAlert,
|
|
438
|
+
colorVoucherTextPointsStrikethrough: (_pg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _pg.colorTextStrikethrough,
|
|
439
|
+
colorVoucherIcon: (_qg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _qg.colorIconSubtle,
|
|
440
|
+
colorRibbonIconBackgroundPrimary: (_rg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _rg.colorRibbonPrimary2,
|
|
441
|
+
colorRibbonIconBackgroundSecondary: (_sg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _sg.colorRibbonSecondary2,
|
|
442
|
+
colorRibbonIconPrimary: (_tg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _tg.colorRibbonPrimary3,
|
|
443
|
+
colorRibbonIconSecondary: (_ug = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ug.colorRibbonSecondary,
|
|
444
|
+
colorRibbonTextPrimary: (_vg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _vg.colorRibbonPrimary,
|
|
445
|
+
colorRibbonTextPrimaryDark: (_wg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _wg.colorRibbonPrimaryDark,
|
|
446
|
+
colorRibbonTextSecondary: (_xg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _xg.colorRibbonSecondary,
|
|
447
|
+
colorRibbonTextSecondaryDark: (_yg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _yg.colorRibbonSecondaryDark,
|
|
448
|
+
colorDrawerBackgroundOverlay: (_zg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _zg.colorBackgroundOverlay,
|
|
449
|
+
colorDrawerBackgroundStandard: (_Ag = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ag.colorBackgroundStandard,
|
|
450
|
+
colorDrawerBackgroundSelected: (_Bg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Bg.colorBackgroundSelected,
|
|
451
|
+
colorDrawerBackgroundLabel: (_Cg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Cg.colorBackgroundSubtle,
|
|
452
|
+
colorDrawerTextHeader: (_Dg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Dg.colorTextNeutral,
|
|
453
|
+
colorDrawerTextHint: (_Eg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Eg.colorTextLabel,
|
|
454
|
+
colorDrawerTextTitlePinned: (_Fg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Fg.colorTextNeutral,
|
|
455
|
+
colorDrawerTextTitle: (_Gg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Gg.colorTextNeutral,
|
|
456
|
+
colorDrawerTextSubtitle: (_Hg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Hg.colorTextSubtle,
|
|
457
|
+
colorDrawerTextStrikethrough: (_Ig = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ig.colorTextStrikethrough,
|
|
458
|
+
colorDrawerTextLabel: (_Jg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Jg.colorTextLabel,
|
|
459
|
+
colorDrawerTextError: (_Kg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Kg.colorTextAlert,
|
|
460
|
+
colorDrawerTextLink: (_Lg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Lg.colorTextLink,
|
|
461
|
+
colorDrawerIcon: (_Mg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Mg.colorIconSubtle,
|
|
462
|
+
colorDrawerHandle: (_Ng = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ng.colorIconWeak,
|
|
463
|
+
colorButtonSecondaryBorderInverse: (_Og = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Og.colorBorderCtaInverse,
|
|
464
|
+
colorButtonSecondaryBorder: (_Pg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Pg.colorBorderCta,
|
|
465
|
+
colorButtonIconPrimary: (_Qg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Qg.colorIconCta,
|
|
466
|
+
colorButtonIconPrimaryInverse: (_Rg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Rg.colorIconCtaInverse,
|
|
467
|
+
colorButtonIconSecondaryInverse: (_Sg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Sg.colorIconCtaInverse,
|
|
468
|
+
colorButtonIconSecondary: (_Tg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Tg.colorIconCta,
|
|
469
|
+
colorButtonIconSuccess: (_Ug = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ug.colorIconInverse,
|
|
470
|
+
colorButtonTextPrimary: (_Vg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Vg.colorTextCtaInverse,
|
|
471
|
+
colorButtonTextSecondary: (_Wg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Wg.colorTextCta,
|
|
472
|
+
colorButtonTextPrimaryInverse: (_Xg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Xg.colorTextCta,
|
|
473
|
+
colorButtonTextSecondaryInverse: (_Yg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Yg.colorTextCtaInverse,
|
|
474
|
+
colorButtonBackgroundPrimary: (_Zg = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Zg.colorBackgroundCta,
|
|
475
|
+
colorButtonBackgroundPrimaryInverse: (__g = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : __g.colorBackgroundCtaInverse,
|
|
476
|
+
colorButtonBackgroundPrimaryPressed: (_$g = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _$g.colorBackgroundCtaPressed,
|
|
477
|
+
colorButtonBackgroundPrimaryInversePressed: (_ah = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ah.colorBackgroundCtaInversePressed,
|
|
478
|
+
colorButtonBackgroundSuccess: (_bh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _bh.colorBackgroundCtaSuccess,
|
|
479
|
+
colorStickyFooterText: (_ch = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ch.colorTextNeutral,
|
|
480
|
+
colorStickyFooterText2: (_dh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _dh.colorRibbonPrimary,
|
|
481
|
+
colorStickyFooterPrice: (_eh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _eh.colorTextNeutral,
|
|
482
|
+
colorStickyFooterPriceStrikethrough: (_fh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _fh.colorTextStrikethrough,
|
|
483
|
+
colorStickyFooterBorderTop: (_gh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _gh.colorBorderWeak,
|
|
484
|
+
colorStickyFooterBackground: (_hh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _hh.colorBackgroundStandard,
|
|
485
|
+
colorInputBackground: (_ih = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ih.colorBackgroundStandard,
|
|
486
|
+
colorInputBackgroundHaze: (_jh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _jh.colorBackgroundSubtle,
|
|
487
|
+
colorInputBackgroundSelected: (_kh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _kh.colorBackgroundSelected,
|
|
488
|
+
colorInputBackgroundHover: (_lh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _lh.colorBackgroundHover,
|
|
489
|
+
colorInputBorderActive: (_mh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _mh.colorBorderActive,
|
|
490
|
+
colorInputBorderError: (_nh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _nh.colorBorderError,
|
|
491
|
+
colorInputBorderStandard: (_oh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _oh.colorBorderStandard,
|
|
492
|
+
colorInputTextLabel: (_ph = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ph.colorTextNeutral,
|
|
493
|
+
colorInputTextHintMessage: (_qh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _qh.colorTextNeutral,
|
|
494
|
+
colorInputTextLabelActive: (_rh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _rh.colorTextLabel,
|
|
495
|
+
colorInputTextPlaceholder: (_sh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _sh.colorTextLabel,
|
|
496
|
+
colorInputTextActive: (_th = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _th.colorTextNeutral,
|
|
497
|
+
colorInputTextLink: (_uh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _uh.colorTextLink,
|
|
498
|
+
colorInputTextError: (_vh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _vh.colorTextAlert,
|
|
499
|
+
colorInputTextCounter: (_wh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _wh.colorTextLabel,
|
|
500
|
+
colorInputTextSuccess: (_xh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _xh.colorTextSuccess,
|
|
501
|
+
colorInputTextLoading: (_yh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _yh.colorTextDisabled,
|
|
502
|
+
colorInputTextOptions: (_zh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _zh.colorTextNeutral,
|
|
503
|
+
colorInputTextSearchString: (_Ah = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ah.colorTextNeutral,
|
|
504
|
+
colorInputTextNonsearchString: (_Bh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Bh.colorTextLabel,
|
|
505
|
+
colorInputTextNumber: (_Ch = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ch.colorTextNeutral,
|
|
506
|
+
colorInputTextDocumentName: (_Dh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Dh.colorTextNeutral,
|
|
507
|
+
colorInputIconLoader: (_Eh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Eh.colorIconLoader,
|
|
508
|
+
colorInputIconSuccess: (_Fh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Fh.colorIconSuccess,
|
|
509
|
+
colorInputIconInverse: (_Gh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Gh.colorIconInverse,
|
|
510
|
+
colorInputIconBackgroundActive: (_Hh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Hh.colorIconCta,
|
|
511
|
+
colorInputIconStandard: (_Ih = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ih.colorIconSubtle,
|
|
512
|
+
colorInputIconBackgroundDisabled: (_Jh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Jh.colorIconDisabled,
|
|
513
|
+
colorSearchInputBackground: (_Kh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Kh.colorBackgroundStandard,
|
|
514
|
+
colorSearchInputBackgroundHaze: (_Lh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Lh.colorBackgroundSubtle,
|
|
515
|
+
colorSearchInputBackgroundHover: (_Mh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Mh.colorBackgroundHover,
|
|
516
|
+
colorSearchInputBorderActive: (_Nh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Nh.colorBorderActive,
|
|
517
|
+
colorSearchInputBorderStandard: (_Oh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Oh.colorBorderStandard,
|
|
518
|
+
colorSearchInputTextPlaceholder: (_Ph = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ph.colorTextLabel,
|
|
519
|
+
colorSearchInputTextLabel: (_Qh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Qh.colorTextLabel,
|
|
520
|
+
colorSearchInputTextActive: (_Rh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Rh.colorTextNeutral,
|
|
521
|
+
colorSearchInputTextResults: (_Sh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Sh.colorTextNeutral,
|
|
522
|
+
colorSearchInputIconLoader: (_Th = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Th.colorIconLoader,
|
|
523
|
+
colorSearchInputIconStandard: (_Uh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Uh.colorIconSubtle,
|
|
524
|
+
colorToggleOn: (_Vh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Vh.colorToggleActiveWeak,
|
|
525
|
+
colorToggleBaseActive: (_Wh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Wh.colorToggleActiveStrong,
|
|
526
|
+
colorToggleOff: (_Xh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Xh.colorToggleInactiveWeak,
|
|
527
|
+
colorToggleBase: (_Yh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Yh.colorToggleInactiveStrong,
|
|
528
|
+
colorToggleIndicatorHover: (_Zh = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Zh.colorToggleIndicator,
|
|
529
|
+
colorRatingText: (__h = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : __h.colorTextLabel,
|
|
530
|
+
colorRatingIconActive: (_$h = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _$h.colorIconRating,
|
|
531
|
+
colorRatingIconBase: (_ai = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ai.colorIconDisabled,
|
|
532
|
+
colorCheckboxInputBorderError: (_bi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _bi.colorBorderError,
|
|
533
|
+
colorCheckboxInputBorderStandard: (_ci = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ci.colorBorderStandard,
|
|
534
|
+
colorCheckboxInputBorderHover: (_di = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _di.colorBorderActive,
|
|
535
|
+
colorCheckboxInputBackgroundStandard: (_ei = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ei.colorBackgroundStandard,
|
|
536
|
+
colorCheckboxInputBackgroundActive: (_fi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _fi.colorBackgroundActive,
|
|
537
|
+
colorRadioInputBackgroundStandard: (_gi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _gi.colorBackgroundStandard,
|
|
538
|
+
colorRadioInputBackgroundActive: (_hi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _hi.colorBackgroundActive,
|
|
539
|
+
colorRadioInputBorderError: (_ii = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ii.colorBorderError,
|
|
540
|
+
colorRadioInputBorderStandard: (_ji = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ji.colorBorderStandard,
|
|
541
|
+
colorRadioInputBorderHover: (_ki = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ki.colorBorderActive,
|
|
542
|
+
colorSelectorBackground: (_li = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _li.colorBackgroundStandard,
|
|
543
|
+
colorSelectorBackgroundSubtle: (_mi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _mi.colorBackgroundSubtle,
|
|
544
|
+
colorSelectorBorderActive: (_ni = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ni.colorBorderActive,
|
|
545
|
+
colorSelectorBorderStandard: (_oi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _oi.colorBorderStandard,
|
|
546
|
+
colorSelectorBorderDisabled: (_pi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _pi.colorBorderDisabled,
|
|
547
|
+
colorSelectorTextTitle: (_qi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _qi.colorTextNeutral,
|
|
548
|
+
colorSelectorTextBody: (_ri = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ri.colorTextNeutral,
|
|
549
|
+
colorSelectorTextPrice: (_si = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _si.colorTextNeutral,
|
|
550
|
+
colorSelectorTextSubtitle: (_ti = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ti.colorTextSubtle,
|
|
551
|
+
colorSelectorTextStrikethrough: (_ui = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ui.colorTextStrikethrough,
|
|
552
|
+
colorSelectorTextDisabled: (_vi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _vi.colorTextDisabled,
|
|
553
|
+
colorSelectorTextUnavailable: (_wi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _wi.colorTextNeutral,
|
|
554
|
+
colorSelectorColorIndicatorBorderInner: (_xi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _xi.colorBorderWeak,
|
|
555
|
+
colorSelectorColorIndicatorBorderOuter: (_yi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _yi.colorBorderStandard,
|
|
556
|
+
colorSelectorColorIndicatorStrikeout: (_zi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _zi.colorBorderStrikeout,
|
|
557
|
+
colorSelectorColorIndicatorStrikeoutInverse: (_Ai = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ai.colorBorderStrikeoutInverse,
|
|
558
|
+
colorToastTextInverse: (_Bi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Bi.colorTextInverse,
|
|
559
|
+
colorToastIconAlert: (_Ci = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ci.colorIconAlertInverse,
|
|
560
|
+
colorToastIconSuccess: (_Di = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Di.colorIconSuccess,
|
|
561
|
+
colorToastIconPending: (_Ei = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ei.colorIconPending,
|
|
562
|
+
colorToastTextLinkInverse: (_Fi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Fi.colorTextLinkInverse,
|
|
563
|
+
colorToastBackground: (_Gi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Gi.colorBackgroundDark,
|
|
564
|
+
colorTextLinkText: (_Hi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Hi.colorTextLink,
|
|
565
|
+
colorTextLinkTextInverse: (_Ii = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ii.colorTextLinkInverse,
|
|
566
|
+
colorTextLinkHeaderStandard: (_Ji = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ji.colorTextSubtle,
|
|
567
|
+
colorTextLinkHeaderStandardInverse: (_Ki = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ki.colorTextInverse,
|
|
568
|
+
colorTextLinkHeaderHover: (_Li = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Li.colorTextHeaderHighlight,
|
|
569
|
+
colorTextLinkHeaderHoverInverse: (_Mi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Mi.colorTextHeaderHighlightInverse,
|
|
570
|
+
colorTextLinkHeaderActive: (_Ni = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ni.colorTextHeaderHighlight,
|
|
571
|
+
colorTextLinkHeaderActiveInverse: (_Oi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Oi.colorTextHeaderHighlightInverse,
|
|
572
|
+
colorTextLinkHeaderActiveMain: (_Pi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Pi.colorTextHeaderActive,
|
|
573
|
+
colorTextLinkIcon: (_Qi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Qi.colorIconLink,
|
|
574
|
+
colorTextLinkIconInverse: (_Ri = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ri.colorIconLinkInverse,
|
|
575
|
+
colorTagText: (_Si = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Si.colorTextInverse,
|
|
576
|
+
colorTagBackgroundPrimary: (_Ti = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ti.colorTagPrimary,
|
|
577
|
+
colorTagBackgroundSecondary: (_Ui = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ui.colorTagSecondary,
|
|
578
|
+
colorTabsTextTitle: (_Vi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Vi.colorTextLink,
|
|
579
|
+
colorTabsTextTitleInverse: (_Wi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Wi.colorTextCtaInverse,
|
|
580
|
+
colorTabsTextSubtitle: (_Xi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Xi.colorTextLink,
|
|
581
|
+
colorTabsTextSubtitleInverse: (_Yi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Yi.colorTextCtaInverse,
|
|
582
|
+
colorTabsTextTitleInactive: (_Zi = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Zi.colorTextSubtle,
|
|
583
|
+
colorTabsTextTitleInverseInactive: (__i = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : __i.colorTextSubtleInverse,
|
|
584
|
+
colorTabsTextSubtitleInactive: (_$i = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _$i.colorTextSubtle,
|
|
585
|
+
colorTabsTextSubtitleInverseInactive: (_aj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _aj.colorTextSubtleInverse,
|
|
586
|
+
colorTabsBorderActive: (_bj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _bj.colorBorderActive,
|
|
587
|
+
colorTabsBorderActiveInverse: (_cj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _cj.colorBorderActiveInverse,
|
|
588
|
+
colorTabsBorderInactive: (_dj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _dj.colorBorderWeak,
|
|
589
|
+
colorTabsBorderInactiveInverse: (_ej = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ej.colorBorderWeakInverse,
|
|
590
|
+
colorTabsIconActive: (_fj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _fj.colorIconLink,
|
|
591
|
+
colorTabsIconActiveInverse: (_gj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _gj.colorIconCtaInverse,
|
|
592
|
+
colorTabsIconInactive: (_hj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _hj.colorIconSubtle,
|
|
593
|
+
colorTabsIconInactiveInverse: (_ij = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ij.colorIconSubtleInverse,
|
|
594
|
+
colorTableText: (_jj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _jj.colorTextNeutral,
|
|
595
|
+
colorTableBackground: (_kj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _kj.colorBackgroundStandard,
|
|
596
|
+
colorTableCellHover: (_lj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _lj.colorBackgroundHover,
|
|
597
|
+
colorTableCellSelected: (_mj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _mj.colorBackgroundSelected,
|
|
598
|
+
colorStepperTextInactive: (_nj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _nj.colorTextLabel,
|
|
599
|
+
colorStepperTextActive: (_oj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _oj.colorTextInverse,
|
|
600
|
+
colorStepperTextLabel: (_pj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _pj.colorTextSubtle,
|
|
601
|
+
colorStepperBackgroundActive: (_qj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _qj.colorBackgroundActive,
|
|
602
|
+
colorStepperBackgroundInactive: (_rj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _rj.colorIconInactive,
|
|
603
|
+
colorStepperBackgroundSuccess: (_sj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _sj.colorIconActive,
|
|
604
|
+
colorStepperIconSuccess: (_tj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _tj.colorIconInverse,
|
|
605
|
+
colorStepperBorderActive: (_uj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _uj.colorBorderActive,
|
|
606
|
+
colorStepperConnectorSuccess: (_vj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _vj.colorBorderStrong,
|
|
607
|
+
colorStepperConnectorInactive: (_wj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _wj.colorBorderWeak,
|
|
608
|
+
colorStepperTextNeutral: (_xj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _xj.colorTextNeutral,
|
|
609
|
+
colorStepperTextLabel2: (_yj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _yj.colorTextLabel,
|
|
610
|
+
colorStepperBackgroundActiveWeak: (_zj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _zj.colorBackgroundActiveWeak,
|
|
611
|
+
colorPaginationText: (_Aj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Aj.colorTextNeutral,
|
|
612
|
+
colorPaginationIcon: (_Bj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Bj.colorIconSubtle,
|
|
613
|
+
colorPaginationBackgroundHover: (_Cj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Cj.colorBackgroundHover,
|
|
614
|
+
colorNumberedListText: (_Dj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Dj.colorTextNeutral,
|
|
615
|
+
colorTopNavigationTitleStandard: (_Ej = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ej.colorTextNeutral,
|
|
616
|
+
colorTopNavigationTitleInverse: (_Fj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Fj.colorTextInverse,
|
|
617
|
+
colorTopNavigationGradient: (_Gj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Gj.colorGradientNeutral,
|
|
618
|
+
colorTopNavigationBackground: (_Hj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Hj.colorBackgroundStandard,
|
|
619
|
+
colorTopNavigationBackgroundHaze: (_Ij = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ij.colorBackgroundSubtle,
|
|
620
|
+
colorTopNavigationBackgroundInverse: (_Jj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Jj.colorBackgroundActive,
|
|
621
|
+
colorTopNavigationBorderBottom: (_Kj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Kj.colorBorderWeak,
|
|
622
|
+
colorBottomNavigationTextActive: (_Lj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Lj.colorTextNavigationActive,
|
|
623
|
+
colorBottomNavigationTextInactive: (_Mj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Mj.colorTextLabel,
|
|
624
|
+
colorBottomNavigationIconInactive: (_Nj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Nj.colorIconBottomNavigationInactive,
|
|
625
|
+
colorBottomNavigationIconActive: (_Oj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Oj.colorIconBottomNavigationActive,
|
|
626
|
+
colorBottomNavigationBackground: (_Pj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Pj.colorBackgroundStandard,
|
|
627
|
+
colorBottomNavigationBorderTop: (_Qj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Qj.colorBorderWeak,
|
|
628
|
+
colorModalTextHeader: (_Rj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Rj.colorTextNeutral,
|
|
629
|
+
colorModalTextBody: (_Sj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Sj.colorTextNeutral,
|
|
630
|
+
colorModalBackground: (_Tj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Tj.colorBackgroundStandard,
|
|
631
|
+
colorModalOverlay: (_Uj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Uj.colorBackgroundOverlay,
|
|
632
|
+
colorModalIcon: (_Vj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Vj.colorIconNeutral,
|
|
633
|
+
colorLocationPinDefault: (_Wj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Wj.colorIconLocationPin,
|
|
634
|
+
colorLocationPinActive: (_Xj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Xj.colorIconLocationPinActive,
|
|
635
|
+
colorLocationPinText: (_Yj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Yj.colorTextNeutral,
|
|
636
|
+
colorLocationPinTextBorder: (_Zj = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Zj.colorTextInverse,
|
|
637
|
+
colorListItemBackground: (__j = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : __j.colorBackgroundStandard,
|
|
638
|
+
colorListItemIconBackground: (_$j = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _$j.colorBackgroundSubtle,
|
|
639
|
+
colorListItemTextTitle: (_ak = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ak.colorTextNeutral,
|
|
640
|
+
colorListItemTextSubtitle: (_bk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _bk.colorTextSubtle,
|
|
641
|
+
colorListItemTextPoints: (_ck = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ck.colorTextNeutral,
|
|
642
|
+
colorListItemIconSubtle: (_dk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _dk.colorIconSubtle,
|
|
643
|
+
colorListItemIcon: (_ek = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ek.colorIconNeutral,
|
|
644
|
+
colorHeroBannerTextTitle: (_fk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _fk.colorTextNeutral,
|
|
645
|
+
colorHeroBannerTextTitleInverse: (_gk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _gk.colorTextInverse,
|
|
646
|
+
colorHeroBannerTextSubtitle: (_hk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _hk.colorTextNeutral,
|
|
647
|
+
colorHeroBannerTextSubtitleInverse: (_ik = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ik.colorTextInverse,
|
|
648
|
+
colorHeroBannerIndicatorInactive: (_jk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _jk.colorIconInactive,
|
|
649
|
+
colorHeroBannerIndicatorActive: (_kk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _kk.colorIconActive,
|
|
650
|
+
colorCirclePatternTextHeader: (_lk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _lk.colorTextNeutral,
|
|
651
|
+
colorCirclePatternTextTitle: (_mk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _mk.colorTextNeutral,
|
|
652
|
+
colorCirclePatternTextBody: (_nk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _nk.colorTextNeutral,
|
|
653
|
+
colorCarouselTextTitle: (_ok = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ok.colorTextNeutral,
|
|
654
|
+
colorCarouselTextBody: (_pk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _pk.colorTextNeutral,
|
|
655
|
+
colorCarouselTextTitleInverse: (_qk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _qk.colorTextInverse,
|
|
656
|
+
colorCarouselTextBodyInverse: (_rk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _rk.colorTextInverse,
|
|
657
|
+
colorCarouselIndicatorActive: (_sk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _sk.colorIconActive,
|
|
658
|
+
colorCarouselIndicatorInactive: (_tk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _tk.colorIconInactive,
|
|
659
|
+
colorCarouselArrowIcon: (_uk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _uk.colorIconNeutral,
|
|
660
|
+
colorCarouselArrowBackground: (_vk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _vk.colorIconInactive,
|
|
661
|
+
colorCarouselOverlay: (_wk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _wk.colorBackgroundOverlayLight,
|
|
662
|
+
colorBannerBackground: (_xk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _xk.colorBackgroundStandard,
|
|
663
|
+
colorBannerBackgroundLight: (_yk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _yk.colorBackgroundSubtle,
|
|
664
|
+
colorBannerBackgroundDark: (_zk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _zk.colorBackgroundDark2,
|
|
665
|
+
colorBannerTextTitle: (_Ak = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ak.colorTextNeutral,
|
|
666
|
+
colorBannerTextBody: (_Bk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Bk.colorTextNeutral,
|
|
667
|
+
colorBannerTextTitleInverse: (_Ck = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ck.colorTextInverse,
|
|
668
|
+
colorBannerTextBodyInverse: (_Dk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Dk.colorTextInverse,
|
|
669
|
+
colorBreadcrumbsTextCurrentPage: (_Ek = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ek.colorTextNeutral,
|
|
670
|
+
colorBreadcrumbsTextPages: (_Fk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Fk.colorTextLabel,
|
|
671
|
+
colorBreadcrumbsTextTruncation: (_Gk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Gk.colorTextLabel,
|
|
672
|
+
colorBreadcrumbsDivider: (_Hk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Hk.colorTextLabel,
|
|
673
|
+
colorBulletListText: (_Ik = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ik.colorTextNeutral,
|
|
674
|
+
colorBulletListIcon: (_Jk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Jk.colorTextNeutral,
|
|
675
|
+
colorAccordionIcon: (_Kk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Kk.colorIconSubtle,
|
|
676
|
+
colorAccordionIconInverse: (_Lk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Lk.colorIconInverse,
|
|
677
|
+
colorAccordionTextTitle: (_Mk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Mk.colorTextNeutral,
|
|
678
|
+
colorAccordionTextTitleInverse: (_Nk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Nk.colorTextInverse,
|
|
679
|
+
colorAccordionTextBody: (_Ok = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ok.colorTextNeutral,
|
|
680
|
+
colorAccordionTextBodyInverse: (_Pk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Pk.colorTextInverse,
|
|
681
|
+
colorCardTextTitle: (_Qk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Qk.colorTextNeutral,
|
|
682
|
+
colorCardTextTitleInverse: (_Rk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Rk.colorTextInverse,
|
|
683
|
+
colorCardTextSubtitle: (_Sk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Sk.colorTextSubtle,
|
|
684
|
+
colorCardTextSubtitleInverse: (_Tk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Tk.colorTextInverse,
|
|
685
|
+
colorCardTextBody: (_Uk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Uk.colorTextNeutral,
|
|
686
|
+
colorCardTextBodyInverse: (_Vk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Vk.colorTextInverse,
|
|
687
|
+
colorCardTextPrice: (_Wk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Wk.colorTextNeutral,
|
|
688
|
+
colorCardTextPriceInverse: (_Xk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Xk.colorTextSubtleInverse,
|
|
689
|
+
colorCardTextPriceStrikethrough: (_Yk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Yk.colorTextStrikethrough,
|
|
690
|
+
colorCardTextPriceStrikethroughInverse: (_Zk = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Zk.colorTextSubtleInverse,
|
|
691
|
+
colorCardTextLink: (__k = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : __k.colorTextLink,
|
|
692
|
+
colorCardTextHeader: (_$k = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _$k.colorTextNeutral,
|
|
693
|
+
colorCardTextHeaderInverse: (_al = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _al.colorTextInverse,
|
|
694
|
+
colorCardTextSubheader: (_bl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _bl.colorTextSubtle,
|
|
695
|
+
colorCardTextSubheaderInverse: (_cl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _cl.colorTextInverse,
|
|
696
|
+
colorCardTextHeaderDark: (_dl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _dl.colorTextNeutral,
|
|
697
|
+
colorCardIconSubtitle: (_el = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _el.colorIconSubtle,
|
|
698
|
+
colorCardIconTitle: (_fl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _fl.colorIconNeutral,
|
|
699
|
+
colorCardBackground: (_gl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _gl.colorBackgroundStandard,
|
|
700
|
+
colorCardBackgroundDark: (_hl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _hl.colorBackgroundDark2,
|
|
701
|
+
colorCardOverlay: (_il = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _il.colorGradientNeutral,
|
|
702
|
+
colorCardOverlayLight: (_jl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _jl.colorBackgroundOverlayLight,
|
|
703
|
+
colorCardBorder: (_kl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _kl.colorBorderWeak,
|
|
704
|
+
colorCardHeaderTitle: (_ll = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ll.colorTextNeutral,
|
|
705
|
+
colorCardHeaderSubtitle: (_ml = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ml.colorTextSubtle,
|
|
706
|
+
colorCalendarTextDay: (_nl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _nl.colorTextNeutral,
|
|
707
|
+
colorCalendarTextMonth: (_ol = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ol.colorTextNeutral,
|
|
708
|
+
colorCalendarTextDate: (_pl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _pl.colorTextNeutral,
|
|
709
|
+
colorCalendarTextDateStrikethrough: (_ql = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ql.colorTextDisabled,
|
|
710
|
+
colorCalendarTextDateSelected: (_rl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _rl.colorTextInverse,
|
|
711
|
+
colorCalendarBackgroundSelected: (_sl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _sl.colorBackgroundActive,
|
|
712
|
+
colorCalendarBackgroundSelectedRange: (_tl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _tl.colorBackgroundSelected,
|
|
713
|
+
colorCalendarBackgroundDay: (_ul = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ul.colorBackgroundSubtle,
|
|
714
|
+
colorCalendarBackgroundHover: (_vl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _vl.colorBackgroundHover,
|
|
715
|
+
colorCalendarIcon: (_wl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _wl.colorIconSubtle,
|
|
716
|
+
colorNotificationTextTitle: (_xl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _xl.colorTextNeutral,
|
|
717
|
+
colorNotificationTextBody: (_yl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _yl.colorTextNeutral,
|
|
718
|
+
colorNotificationBackgroundAlert: (_zl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _zl.colorNotificationAlert,
|
|
719
|
+
colorNotificationBackgroundInfo: (_Al = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Al.colorNotificationDefault,
|
|
720
|
+
colorNotificationBackgroundPromo: (_Bl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Bl.colorNotificationPromo,
|
|
721
|
+
colorNotificationIcon: (_Cl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Cl.colorIconNeutral,
|
|
722
|
+
colorChipBackgroundStandard: (_Dl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Dl.colorBackgroundStandard,
|
|
723
|
+
colorChipBackgroundHover: (_El = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _El.colorBackgroundHoverNeutral,
|
|
724
|
+
colorChipBackgroundActive: (_Fl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Fl.colorBackgroundSelected,
|
|
725
|
+
colorChipBorderActive: (_Gl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Gl.colorBorderActive,
|
|
726
|
+
colorChipBorderStandard: (_Hl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Hl.colorBorderStandard,
|
|
727
|
+
colorChipTextActive: (_Il = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Il.colorTextNeutral,
|
|
728
|
+
colorChipTextInactive: (_Jl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Jl.colorTextSubtle,
|
|
729
|
+
colorChipIcon: (_Kl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Kl.colorIconSubtle,
|
|
730
|
+
colorGraphBackgroundActiveStrong: (_Ll = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ll.colorBackgroundActive,
|
|
731
|
+
colorGraphBackgroundActiveWeak: (_Ml = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ml.colorBackgroundActiveWeak,
|
|
732
|
+
colorGraphBackgroundData: (_Nl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Nl.colorBackgroundDark,
|
|
733
|
+
colorGraphBackgroundDataInverse: (_Ol = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ol.colorBackgroundStandard,
|
|
734
|
+
colorGraphBackgroundActiveStrongInverse: (_Pl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Pl.colorBackgroundActiveInverse,
|
|
735
|
+
colorGraphBackgroundActiveWeakInverse: (_Ql = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ql.colorBackgroundActiveWeakInverse,
|
|
736
|
+
colorGraphBorderBenchmark: (_Rl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Rl.colorBorderBenchmark,
|
|
737
|
+
colorGraphBorderBenchmarkInverse: (_Sl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Sl.colorBorderBenchmarkInverse,
|
|
738
|
+
colorGraphBorderAxis: (_Tl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Tl.colorBorderStandard,
|
|
739
|
+
colorGraphBorderGridLine: (_Ul = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ul.colorBorderStandard,
|
|
740
|
+
colorGraphTextData: (_Vl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Vl.colorTextInverse,
|
|
741
|
+
colorGraphTextDataInverse: (_Wl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Wl.colorTextNeutral,
|
|
742
|
+
colorGraphTextAxisLabel: (_Xl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Xl.colorTextSubtle,
|
|
743
|
+
colorGraphTextAxisLabelInverse: (_Yl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Yl.colorTextSubtleInverse,
|
|
744
|
+
colorCardIconListThumbnailBorder: (_Zl = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Zl.colorBorderStandard,
|
|
745
|
+
colorCardIconListThumbnailBackground: (__l = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : __l.colorBackgroundSubtle,
|
|
746
|
+
colorIconButtonNeutral: (_$l = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _$l.colorIconNeutral,
|
|
747
|
+
colorIconButtonInverse: (_am = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _am.colorIconInverse,
|
|
748
|
+
colorButtonTextDisabled: (_bm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _bm.colorTextDisabled,
|
|
749
|
+
colorDateTimePickerTextDay: (_cm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _cm.colorTextNeutral,
|
|
750
|
+
colorDateTimePickerTextDate: (_dm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _dm.colorTextNeutral,
|
|
751
|
+
colorDateTimePickerTextMonth: (_em = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _em.colorTextNeutral,
|
|
752
|
+
colorDateTimePickerTextDateStrikethrough: (_fm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _fm.colorTextDisabled,
|
|
753
|
+
colorDateTimePickerTextDateSelected: (_gm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _gm.colorTextInverse,
|
|
754
|
+
colorDateTimePickerIcon: (_hm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _hm.colorIconSubtle,
|
|
755
|
+
colorDateTimePickerBorder: (_im = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _im.colorBorderStandard,
|
|
756
|
+
colorDateTimePickerBackgroundSelected: (_jm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _jm.colorBackgroundActive,
|
|
757
|
+
colorDateTimePickerBackgroundHover: (_km = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _km.colorBackgroundHover,
|
|
758
|
+
colorHeaderBackground: (_lm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _lm.colorBackgroundHeader,
|
|
759
|
+
colorHeaderBorder: (_mm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _mm.colorBorderWeak,
|
|
760
|
+
colorCardColorListBorder: (_nm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _nm.colorBorderWeak,
|
|
761
|
+
colorFooterBackground: (_om = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _om.colorBackgroundFooter,
|
|
762
|
+
colorCoachmarkBackground: (_pm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _pm.colorBackgroundCoachmark,
|
|
763
|
+
colorCoachmarkIndicator: (_qm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _qm.colorBackgroundCoachmark,
|
|
764
|
+
colorCoachmarkText: (_rm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _rm.colorTextInverse,
|
|
765
|
+
colorCoachmarkBackgroundCircle: (_sm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _sm.colorBackgroundCtaInverse,
|
|
766
|
+
shadowVoucherLow: (_tm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _tm.shadowLow,
|
|
767
|
+
shadowTable: (_um = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _um.shadowLow,
|
|
768
|
+
shadowToggle: (_vm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _vm.shadowLow,
|
|
769
|
+
shadowTopNavigation: (_wm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _wm.shadowLow,
|
|
770
|
+
shadowListItem: (_xm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _xm.shadowLow,
|
|
771
|
+
shadowCardLow: (_ym = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ym.shadowLow,
|
|
772
|
+
shadowCardHigh: (_zm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _zm.shadowHigh,
|
|
773
|
+
borderWidthInputStandard: (_Am = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Am.borderWidthStandard,
|
|
774
|
+
borderWidthDividerStandard: (_Bm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Bm.borderWidthStandard,
|
|
775
|
+
borderWidthSelectorStandard: (_Cm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Cm.borderWidthStandard,
|
|
776
|
+
borderWidthSelectorActive: (_Dm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Dm.borderWidthSelected,
|
|
777
|
+
borderWidthSelectorStrikeout: (_Em = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Em.borderWidthStrikeout,
|
|
778
|
+
borderWidthTabsStandard: (_Fm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Fm.borderWidthSelected,
|
|
779
|
+
borderWidthTabsActive: (_Gm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Gm.borderWidthSelected,
|
|
780
|
+
borderWidthStepperActive: (_Hm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Hm.borderWidthSelected,
|
|
781
|
+
borderWidthStepperConnector: (_Im = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Im.borderWidthStandard,
|
|
782
|
+
borderWidthButtonSecondary: (_Jm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Jm.borderWidthCta,
|
|
783
|
+
borderWidthChip: (_Km = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Km.borderWidthStandard,
|
|
784
|
+
borderRadiusDrawerTopLeft: (_Lm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Lm.borderRadiusMd,
|
|
785
|
+
borderRadiusDrawerTopRight: (_Mm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Mm.borderRadiusMd,
|
|
786
|
+
borderRadiusButton: (_Nm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Nm.borderRadiusButton,
|
|
787
|
+
borderRadiusCarouselFixed: (_Om = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Om.borderRadiusSm,
|
|
788
|
+
borderRadiusInput: (_Pm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Pm.borderRadiusSm,
|
|
789
|
+
borderRadiusSearchInput: (_Qm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Qm.borderRadiusSm,
|
|
790
|
+
borderRadiusCarouselFixedLg: (_Rm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Rm.borderRadiusMd,
|
|
791
|
+
borderRadiusSelector: (_Sm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Sm.borderRadiusSm,
|
|
792
|
+
borderRadiusToast: (_Tm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Tm.borderRadiusSm,
|
|
793
|
+
borderRadiusTag: (_Um = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Um.borderRadiusSm,
|
|
794
|
+
borderRadiusTable: (_Vm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Vm.borderRadiusSm,
|
|
795
|
+
borderRadiusTableLg: (_Wm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Wm.borderRadiusMd,
|
|
796
|
+
borderRadiusNotification: (_Xm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Xm.borderRadiusSm,
|
|
797
|
+
borderRadiusModal: (_Ym = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Ym.borderRadiusMd,
|
|
798
|
+
borderRadiusVoucher: (_Zm = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _Zm.borderRadiusSm,
|
|
799
|
+
borderRadiusChip: (__m = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : __m.borderRadiusXl,
|
|
800
|
+
borderRadiusCardSm: (_$m = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _$m.borderRadiusSm,
|
|
801
|
+
borderRadiusListItem: (_an = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _an.borderRadiusSm,
|
|
802
|
+
borderRadiusDatetimepicker: (_bn = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _bn.borderRadiusInput,
|
|
803
|
+
borderFileInput: (_cn = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _cn.borderUpload,
|
|
804
|
+
opacitySelectorTextDisabled: (_dn = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _dn.opacityDisabled,
|
|
805
|
+
opacitySelectorImageDisabled: (_en = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _en.opacityDisabled,
|
|
806
|
+
colorBackgroundDisabled: (_fn = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _fn.opacityOverlay,
|
|
807
|
+
colorDivider10Horizontal: (_gn = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _gn.colorDivider,
|
|
808
|
+
colorDivider10Text: (_hn = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _hn.colorTextSubtle,
|
|
809
|
+
opacityButtonHover: (_in = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _in.opacityHover,
|
|
810
|
+
opacityButtonPressed: (_jn = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _jn.opacityPressed,
|
|
811
|
+
colorButtonBackgroundPrimaryDisable: (_kn = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _kn.colorBackgroundDisabled,
|
|
812
|
+
colorButtonTextDisable: (_ln = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _ln.colorTextInverse,
|
|
813
|
+
fontFamilyPromaryBold: (_mn = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _mn.fontFamilyPromaryBold,
|
|
814
|
+
fontFamilyPromaryRegular: (_nn = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _nn.fontFamilyPromaryRegular,
|
|
815
|
+
fontFamilyPromarySemiBold: (_on = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _on.fontFamilyPromarySemiBold,
|
|
816
|
+
fontFamilySecondaryBold: (_pn = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _pn.fontFamilySecondaryBold,
|
|
817
|
+
fontFamilySecondaryRegular: (_qn = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _qn.fontFamilySecondaryRegular,
|
|
818
|
+
fontFamilySecondarySemiBold: (_rn = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _rn.fontFamilySecondarySemiBold
|
|
819
|
+
};
|
|
820
|
+
};
|
|
821
|
+
var tokenKey = (key) => getComponentToken()[key] || "";
|
|
822
|
+
var designTokenKey = (key) => {
|
|
823
|
+
var _a;
|
|
824
|
+
return ((_a = tokenRef == null ? void 0 : tokenRef.root) == null ? void 0 : _a[key]) || "#fff";
|
|
825
|
+
};
|
|
826
|
+
var TokenManager = {
|
|
827
|
+
tokenRef,
|
|
828
|
+
tokenKey,
|
|
829
|
+
designTokenKey,
|
|
830
|
+
setTokenRef,
|
|
831
|
+
getComponentToken
|
|
832
|
+
};
|
|
833
|
+
var tokenManager_default = TokenManager;
|