pds-dev-kit-web-test 0.1.9 → 0.1.10
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 +12 -1
- package/dist/index.d.ts +5 -5
- package/dist/index.js +6 -4
- package/dist/src/common/assets/icons/line/SectionIframe32.d.ts +4 -0
- package/dist/src/common/assets/icons/line/SectionIframe32.js +30 -0
- package/dist/src/common/assets/icons/line/SectionIframe40.d.ts +4 -0
- package/dist/src/common/assets/icons/line/SectionIframe40.js +30 -0
- package/dist/src/common/assets/icons/line/SectionMembership32.d.ts +4 -0
- package/dist/src/common/assets/icons/line/SectionMembership32.js +30 -0
- package/dist/src/common/assets/icons/line/SectionMembership40.d.ts +4 -0
- package/dist/src/common/assets/icons/line/SectionMembership40.js +30 -0
- package/dist/src/common/assets/icons/line/index.d.ts +4 -0
- package/dist/src/common/assets/icons/line/index.js +8 -0
- package/dist/src/common/components/CircularProgress/CircularProgress.d.ts +2 -2
- package/dist/src/common/components/ThreeBarProgress/ThreeBarProgress.d.ts +2 -2
- package/dist/src/common/index.d.ts +3 -2
- package/dist/src/common/index.js +4 -1
- package/dist/src/common/styles/colorSet/PaletteColor_Dark.json +296 -0
- package/dist/src/common/styles/colorSet/PaletteColor_light.json +296 -0
- package/dist/src/common/styles/colorSet/SemanticColor.json +106 -0
- package/dist/src/common/styles/colorSet/UIColor.json +763 -0
- package/dist/src/common/styles/colorSet/index.d.ts +1464 -0
- package/dist/src/common/styles/colorSet/index.js +17 -0
- package/dist/src/common/styles/colorSet/ui-type.d.ts +763 -0
- package/dist/src/common/styles/colorSet/ui-type.js +2 -0
- package/dist/src/common/styles/index.d.ts +1 -0
- package/dist/src/common/styles/index.js +3 -1
- package/dist/src/common/styles/theme.js +3 -3
- package/dist/src/common/styles/ui-colors.d.ts +10 -0
- package/dist/src/common/styles/ui-colors.js +48 -0
- package/dist/src/common/types/index.d.ts +1 -0
- package/dist/src/common/types/index.js +1 -0
- package/dist/src/common/types/uiColors.d.ts +2 -0
- package/dist/src/common/types/uiColors.js +2 -0
- package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.d.ts +2 -3
- package/dist/src/desktop/components/AdminList/AdminList.js +14 -6
- package/dist/src/desktop/components/BasicListItem/BasicListItem.d.ts +1 -0
- package/dist/src/desktop/components/BasicListItem/BasicListItem.js +10 -99
- package/dist/src/desktop/components/BasicListItem/Contents.d.ts +16 -0
- package/dist/src/desktop/components/BasicListItem/Contents.js +31 -0
- package/dist/src/desktop/components/BasicListItem/LeftBox/Badge.d.ts +7 -0
- package/dist/src/desktop/components/BasicListItem/LeftBox/Badge.js +27 -0
- package/dist/src/desktop/components/BasicListItem/LeftBox/Checkbox.d.ts +6 -0
- package/dist/src/desktop/components/BasicListItem/LeftBox/Checkbox.js +19 -0
- package/dist/src/desktop/components/BasicListItem/LeftBox/Icon.d.ts +8 -0
- package/dist/src/desktop/components/BasicListItem/LeftBox/Icon.js +19 -0
- package/dist/src/desktop/components/BasicListItem/LeftBox/Image.d.ts +8 -0
- package/dist/src/desktop/components/BasicListItem/LeftBox/Image.js +9 -0
- package/dist/src/desktop/components/BasicListItem/LeftBox/LeftBox.d.ts +17 -0
- package/dist/src/desktop/components/BasicListItem/LeftBox/LeftBox.js +42 -0
- package/dist/src/desktop/components/BasicListItem/LeftBox/Radio.d.ts +9 -0
- package/dist/src/desktop/components/BasicListItem/LeftBox/Radio.js +13 -0
- package/dist/src/desktop/components/BasicListItem/LeftBox/index.d.ts +2 -0
- package/dist/src/desktop/components/BasicListItem/LeftBox/index.js +8 -0
- package/dist/src/desktop/components/BasicListItem/RightBox/Description.d.ts +8 -0
- package/dist/src/desktop/components/BasicListItem/RightBox/Description.js +10 -0
- package/dist/src/desktop/components/BasicListItem/RightBox/IconButton.d.ts +9 -0
- package/dist/src/desktop/components/BasicListItem/RightBox/IconButton.js +19 -0
- package/dist/src/desktop/components/BasicListItem/RightBox/MainButton.d.ts +9 -0
- package/dist/src/desktop/components/BasicListItem/RightBox/MainButton.js +10 -0
- package/dist/src/desktop/components/BasicListItem/RightBox/RightBox.d.ts +15 -0
- package/dist/src/desktop/components/BasicListItem/RightBox/RightBox.js +40 -0
- package/dist/src/desktop/components/BasicListItem/RightBox/Switch.d.ts +10 -0
- package/dist/src/desktop/components/BasicListItem/RightBox/Switch.js +19 -0
- package/dist/src/desktop/components/BasicListItem/RightBox/index.d.ts +2 -0
- package/dist/src/desktop/components/BasicListItem/RightBox/index.js +8 -0
- package/dist/src/desktop/components/Chip/Chip.d.ts +3 -4
- package/dist/src/desktop/components/Dropdown/Dropdown.d.ts +2 -3
- package/dist/src/desktop/components/IconButton/IconButton.d.ts +4 -5
- package/dist/src/desktop/components/LottieReactionButton/LottieReactionButton.d.ts +2 -3
- package/dist/src/desktop/components/LottieReactionButton/LottieReactionButton.js +1 -1
- package/dist/src/desktop/components/Radio/Radio.js +2 -2
- package/dist/src/desktop/components/TextLabel/TextLabel.d.ts +4 -5
- package/dist/src/desktop/components/UploadIconButton/UploadIconButton.d.ts +4 -5
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/ContentsContainer.d.ts +3 -3
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFA.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFB.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFC.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFD.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFE.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFF.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFG.d.ts +3 -3
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFH.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFI.d.ts +3 -3
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFJ.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFK.d.ts +3 -3
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFL.d.ts +3 -3
- package/dist/src/desktop/layout/LayoutWF/ContainersBox/ContainersBox.d.ts +3 -3
- package/dist/src/desktop/layout/LayoutWH/Containers/ContentsContainer/ContentsContainer.d.ts +3 -3
- package/dist/src/desktop/layout/LayoutWH/Containers/ContentsContainer/variation/WHA.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWH/Containers/ContentsContainer/variation/WHB.d.ts +3 -3
- package/dist/src/desktop/layout/LayoutWH/Containers/ContentsContainer/variation/WHC.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWH/Containers/ContentsContainer/variation/WHD.d.ts +3 -3
- package/dist/src/desktop/layout/LayoutWH/Containers/ContentsContainer/variation/WHE.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWH/ContainersBox/ContainersBox.d.ts +3 -3
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/ContentsContainer.d.ts +3 -3
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSA.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSB.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSC.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSD.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSE.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSF.d.ts +3 -3
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSG.d.ts +3 -3
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSH.d.ts +3 -3
- package/dist/src/desktop/layout/LayoutWS/ContainersBox/ContainersBox.d.ts +3 -3
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/ContentsContainer.d.ts +4 -4
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/ContentsContainer.js +2 -1
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTA.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTB.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTC.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTD.d.ts +3 -3
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTE.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTF.d.ts +3 -3
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTG.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTH.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTI.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTJ.d.ts +3 -3
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTK.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTL.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTM.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTN.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTO.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTP.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTQ.d.ts +3 -3
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTS.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTT.d.ts +2 -2
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTU.d.ts +3 -3
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTV.d.ts +15 -0
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTV.js +81 -0
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/index.d.ts +1 -0
- package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/index.js +3 -1
- package/dist/src/desktop/layout/LayoutWT/ContainersBox/ContainersBox.d.ts +4 -4
- package/dist/src/desktop/layout/LayoutWT/ContainersBox/ContainersBox.js +8 -4
- package/dist/src/desktop/panels/AnnotationSheet/AnnotationSheet.d.ts +5 -5
- package/dist/src/desktop/panels/ContentSheet/ContentSheet.d.ts +5 -5
- package/dist/src/desktop/panels/SectionSheet/SectionSheet.d.ts +5 -5
- package/dist/src/hybrid/components/Icon/Icon.d.ts +2 -3
- package/dist/src/mobile/common/components/TextFieldBase/TextFieldBase.d.ts +2 -3
- package/dist/src/mobile/components/BasicListItem/BasicListItem.d.ts +1 -0
- package/dist/src/mobile/components/BasicListItem/BasicListItem.js +10 -99
- package/dist/src/mobile/components/BasicListItem/Contents.d.ts +16 -0
- package/dist/src/mobile/components/BasicListItem/Contents.js +31 -0
- package/dist/src/mobile/components/BasicListItem/LeftBox/Badge.d.ts +7 -0
- package/dist/src/mobile/components/BasicListItem/LeftBox/Badge.js +27 -0
- package/dist/src/mobile/components/BasicListItem/LeftBox/Checkbox.d.ts +6 -0
- package/dist/src/mobile/components/BasicListItem/LeftBox/Checkbox.js +19 -0
- package/dist/src/mobile/components/BasicListItem/LeftBox/Icon.d.ts +8 -0
- package/dist/src/mobile/components/BasicListItem/LeftBox/Icon.js +19 -0
- package/dist/src/mobile/components/BasicListItem/LeftBox/Image.d.ts +8 -0
- package/dist/src/mobile/components/BasicListItem/LeftBox/Image.js +9 -0
- package/dist/src/mobile/components/BasicListItem/LeftBox/LeftBox.d.ts +17 -0
- package/dist/src/mobile/components/BasicListItem/LeftBox/LeftBox.js +42 -0
- package/dist/src/mobile/components/BasicListItem/LeftBox/Radio.d.ts +9 -0
- package/dist/src/mobile/components/BasicListItem/LeftBox/Radio.js +13 -0
- package/dist/src/mobile/components/BasicListItem/LeftBox/index.d.ts +2 -0
- package/dist/src/mobile/components/BasicListItem/LeftBox/index.js +8 -0
- package/dist/src/mobile/components/BasicListItem/RightBox/Description.d.ts +8 -0
- package/dist/src/mobile/components/BasicListItem/RightBox/Description.js +10 -0
- package/dist/src/mobile/components/BasicListItem/RightBox/IconButton.d.ts +9 -0
- package/dist/src/mobile/components/BasicListItem/RightBox/IconButton.js +19 -0
- package/dist/src/mobile/components/BasicListItem/RightBox/MainButton.d.ts +9 -0
- package/dist/src/mobile/components/BasicListItem/RightBox/MainButton.js +10 -0
- package/dist/src/mobile/components/BasicListItem/RightBox/RightBox.d.ts +15 -0
- package/dist/src/mobile/components/BasicListItem/RightBox/RightBox.js +40 -0
- package/dist/src/mobile/components/BasicListItem/RightBox/Switch.d.ts +10 -0
- package/dist/src/mobile/components/BasicListItem/RightBox/Switch.js +19 -0
- package/dist/src/mobile/components/BasicListItem/RightBox/index.d.ts +2 -0
- package/dist/src/mobile/components/BasicListItem/RightBox/index.js +8 -0
- package/dist/src/mobile/components/Chip/Chip.d.ts +3 -4
- package/dist/src/mobile/components/Dropdown/Dropdown.d.ts +2 -3
- package/dist/src/mobile/components/IconButton/IconButton.d.ts +4 -5
- package/dist/src/mobile/components/LottieReactionButton/LottieReactionButton.d.ts +2 -3
- package/dist/src/mobile/components/LottieReactionButton/LottieReactionButton.js +1 -1
- package/dist/src/mobile/components/MobileHeaderBar/MobileHeaderBar.d.ts +3 -4
- package/dist/src/mobile/components/TextLabel/TextLabel.d.ts +3 -4
- package/dist/src/mobile/components/UploadIconButton/UploadIconButton.d.ts +4 -5
- package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/ContentsContainer.d.ts +3 -3
- package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/variation/MFA.d.ts +2 -2
- package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/variation/MFA.js +2 -2
- package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/variation/MFB.d.ts +3 -3
- package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/variation/MFB.js +4 -4
- package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/variation/MFC.d.ts +2 -2
- package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/variation/MFC.js +2 -2
- package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/variation/MFD.d.ts +2 -2
- package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/variation/MFD.js +2 -2
- package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/variation/MFE.d.ts +3 -3
- package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/variation/MFE.js +4 -4
- package/dist/src/mobile/layout/LayoutMF/ContainersBox/ContainersBox.d.ts +3 -3
- package/dist/src/mobile/layout/LayoutMM/Containers/ContentsContainer/ContentsContainer.d.ts +2 -2
- package/dist/src/mobile/layout/LayoutMM/Containers/ContentsContainer/variation/MMA.d.ts +2 -2
- package/dist/src/mobile/layout/LayoutMM/Containers/ContentsContainer/variation/MMA.js +2 -2
- package/dist/src/mobile/layout/LayoutMM/Containers/ContentsContainer/variation/MMB.d.ts +2 -2
- package/dist/src/mobile/layout/LayoutMM/Containers/ContentsContainer/variation/MMB.js +2 -2
- package/dist/src/mobile/layout/LayoutMM/ContainersBox/ContainersBox.d.ts +2 -2
- package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/ContentsContainer.d.ts +3 -3
- package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPA.d.ts +2 -2
- package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPA.js +2 -2
- package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPB.d.ts +2 -2
- package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPB.js +2 -2
- package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPC.d.ts +3 -3
- package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPC.js +4 -4
- package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPD.d.ts +2 -2
- package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPD.js +2 -2
- package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPE.d.ts +2 -2
- package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPE.js +2 -2
- package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPF.d.ts +3 -3
- package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPF.js +4 -4
- package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/ContentsContainer.d.ts +3 -3
- package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSA.d.ts +2 -2
- package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSA.js +2 -2
- package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSB.d.ts +2 -2
- package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSB.js +2 -2
- package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSC.d.ts +3 -3
- package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSC.js +4 -4
- package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSD.d.ts +2 -2
- package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSD.js +2 -2
- package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSE.d.ts +2 -2
- package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSE.js +2 -2
- package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSF.d.ts +3 -3
- package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSF.js +4 -4
- package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSG.d.ts +2 -2
- package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSG.js +2 -2
- package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSH.d.ts +2 -2
- package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSH.js +2 -2
- package/dist/src/mobile/layout/LayoutMS/ContainersBox/ContainersBox.d.ts +3 -3
- package/dist/src/mobile/panels/AnnotationSheet/AnnotationSheet.d.ts +5 -5
- package/dist/src/mobile/panels/ContentSheet/ContentSheet.d.ts +5 -5
- package/dist/src/mobile/panels/SectionSheet/SectionSheet.d.ts +5 -5
- package/dist/src/sub/AdminList/AdminList/AdminList.d.ts +14 -14
- package/dist/src/sub/AdminList/AdminList/AdminList.js +16 -8
- package/dist/src/sub/AdminList/AdminList/HeaderRow.d.ts +10 -10
- package/dist/src/sub/AdminList/AdminList/HeaderRow.js +2 -2
- package/dist/src/sub/AdminList/AdminListHeader/AdminListHeader.d.ts +3 -4
- package/dist/src/sub/AdminList/AdminListHeader/AdminListHeader.js +2 -2
- package/dist/src/sub/AdminList/AdminListHeader/HeaderBar.d.ts +2 -3
- package/dist/src/sub/AdminList/AdminListHeader/HeaderBar.js +2 -2
- package/dist/src/sub/AdminList/AdminListItem/AdminListItem.d.ts +4 -5
- package/dist/src/sub/AdminList/AdminListItem/AdminListItem.js +6 -6
- package/dist/src/sub/AdminList/BulkActionBar/BulkActionBar.d.ts +7 -8
- package/dist/src/sub/AdminList/BulkActionBar/BulkActionBar.js +2 -2
- package/dist/src/sub/AdminList/ToolBar/ChipList.d.ts +1 -1
- package/dist/src/sub/AdminList/ToolBar/ChipList.js +1 -1
- package/dist/src/sub/AdminList/ToolBar/SearchField.js +4 -4
- package/dist/src/sub/AdminList/ToolBar/ToolBar.d.ts +1 -1
- package/dist/src/sub/AdminList/ToolBar/ToolBar.js +3 -3
- package/dist/src/sub/DynamicLayout/DynamicLayout.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/DynamicLayout.js +4 -3
- package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/EditModeSectionMatcher.js +2 -1
- package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/SectionBox.d.ts +2 -1
- package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/SectionBox.js +6 -3
- package/dist/src/sub/DynamicLayout/components/Section/Section.js +5 -2
- package/dist/src/sub/DynamicLayout/components/SectionMatcher/SectionMatcher.js +2 -0
- package/dist/src/sub/DynamicLayout/components/desktop/Item/Item.js +1 -1
- package/dist/src/sub/DynamicLayout/components/mobile/Item/Item.js +1 -1
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/components/CircularProgress/CircularProgress.d.ts +2 -2
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/index.d.ts +5 -4
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/index.js +4 -1
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/PaletteColor_Dark.json +231 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/PaletteColor_light.json +231 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/SemanticColor.json +80 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/UIColor.json +650 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/index.d.ts +1195 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/index.js +17 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/ui-type.d.ts +650 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/ui-type.js +2 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/index.js +3 -1
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/theme.js +3 -3
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/ui-colors.d.ts +10 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/ui-colors.js +48 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/types/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/types/index.js +1 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/types/uiColors.d.ts +2 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/types/uiColors.js +2 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/desktop/IconButton/IconButton.d.ts +4 -5
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/desktop/TextLabel/TextLabel.d.ts +3 -4
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/hybrid/Icon/Icon.d.ts +2 -3
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/mobile/IconButton/IconButton.d.ts +4 -5
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/mobile/TextLabel/TextLabel.d.ts +3 -4
- package/dist/src/sub/DynamicLayout/mock_samplePage.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/mock_samplePage.js +84 -8
- package/dist/src/sub/DynamicLayout/sectionActionTypes.d.ts +19 -0
- package/dist/src/sub/DynamicLayout/sectionActionTypes.js +2 -0
- package/dist/src/sub/DynamicLayout/sections/FullscreenIframeSection/FullscreenIframeSection.d.ts +4 -0
- package/dist/src/sub/DynamicLayout/sections/FullscreenIframeSection/FullscreenIframeSection.js +51 -0
- package/dist/src/sub/DynamicLayout/sections/FullscreenIframeSection/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/FullscreenIframeSection/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/FullscreenIframeSection/templates/TemplateA/TemplateA.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/FullscreenIframeSection/templates/TemplateA/TemplateA.js +15 -0
- package/dist/src/sub/DynamicLayout/sections/FullscreenIframeSection/templates/TemplateA/desktop/D_TemplateA.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/FullscreenIframeSection/templates/TemplateA/desktop/D_TemplateA.js +20 -0
- package/dist/src/sub/DynamicLayout/sections/FullscreenIframeSection/templates/TemplateA/desktop/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/FullscreenIframeSection/templates/TemplateA/desktop/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/FullscreenIframeSection/templates/TemplateA/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/FullscreenIframeSection/templates/TemplateA/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/FullscreenIframeSection/templates/TemplateA/mobile/M_TemplateA.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/sections/FullscreenIframeSection/templates/TemplateA/mobile/M_TemplateA.js +20 -0
- package/dist/src/sub/DynamicLayout/sections/FullscreenIframeSection/templates/TemplateA/mobile/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/FullscreenIframeSection/templates/TemplateA/mobile/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/FullscreenIframeSection/templates/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/FullscreenIframeSection/templates/index.js +5 -0
- package/dist/src/sub/DynamicLayout/sections/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/index.js +3 -1
- package/dist/src/sub/DynamicLayout/types.d.ts +7 -4
- package/package.json +5 -3
- package/release-note.md +6 -5
|
@@ -0,0 +1,763 @@
|
|
|
1
|
+
{
|
|
2
|
+
"ui_cpnt_button_fill_base_primary": "usr_brand_primary",
|
|
3
|
+
"ui_cpnt_button_fill_base_default": "sys_component_base_01",
|
|
4
|
+
"ui_cpnt_button_fill_base_white": "sys_component_base_02",
|
|
5
|
+
"ui_cpnt_button_fill_on_base_hover": "sys_component_on_base_01",
|
|
6
|
+
"ui_cpnt_button_fill_on_base_pressed": "sys_component_on_base_02",
|
|
7
|
+
"ui_cpnt_button_fill_base_disabled": "sys_component_base_03",
|
|
8
|
+
"ui_cpnt_button_line_base_pressed": "sys_component_base_03",
|
|
9
|
+
"ui_cpnt_button_line_base_hover": "sys_component_base_01",
|
|
10
|
+
"ui_cpnt_button_line_border_default": "sys_border_line_01",
|
|
11
|
+
"ui_cpnt_button_line_border_enabled": "sys_border_line_02",
|
|
12
|
+
"ui_cpnt_button_line_border_disabled": "sys_border_line_01",
|
|
13
|
+
"ui_cpnt_button_line_border_primary": "usr_brand_primary",
|
|
14
|
+
"ui_cpnt_button_text_primary": "usr_brand_primary",
|
|
15
|
+
"ui_cpnt_button_text_on_primary": "usr_on_brand_primary",
|
|
16
|
+
"ui_cpnt_button_text_enabled": "sys_text_grey_01",
|
|
17
|
+
"ui_cpnt_button_text_disabled": "sys_text_grey_03",
|
|
18
|
+
"ui_cpnt_button_text_default": "sys_text_grey_02",
|
|
19
|
+
"ui_cpnt_button_icon_on_primary": "usr_on_brand_primary",
|
|
20
|
+
"ui_cpnt_button_icon_primary": "usr_brand_primary",
|
|
21
|
+
"ui_cpnt_button_icon_enabled": "sys_widget_grey_01",
|
|
22
|
+
"ui_cpnt_button_icon_disabled": "sys_widget_grey_03",
|
|
23
|
+
"ui_cpnt_button_icon_default": "sys_widget_grey_02",
|
|
24
|
+
"ui_cpnt_textfield_border_normal": "sys_border_line_10",
|
|
25
|
+
"ui_cpnt_textfield_border_focus": "sys_border_line_02",
|
|
26
|
+
"ui_cpnt_textfield_border_error": "sys_border_line_04",
|
|
27
|
+
"ui_cpnt_textfield_base_normal": "sys_component_base_06",
|
|
28
|
+
"ui_cpnt_textfield_base_disabled": "sys_component_base_07",
|
|
29
|
+
"ui_cpnt_textfield_text_hint": "sys_text_grey_02",
|
|
30
|
+
"ui_cpnt_textfield_text_typed": "sys_text_grey_01",
|
|
31
|
+
"ui_cpnt_textfield_text_error": "sys_text_error_01",
|
|
32
|
+
"ui_cpnt_textfield_text_disabled": "sys_text_grey_03",
|
|
33
|
+
"ui_cpnt_textfield_icon_01": "sys_widget_grey_01",
|
|
34
|
+
"ui_cpnt_textfield_icon_02": "sys_widget_grey_02",
|
|
35
|
+
"ui_cpnt_textfield_icon_03": "sys_widget_grey_03",
|
|
36
|
+
"ui_cpnt_list_base_area": "sys_component_base_white_opacity00",
|
|
37
|
+
"ui_cpnt_list_base_area_select": "sys_component_base_01",
|
|
38
|
+
"ui_cpnt_list_text_title": "sys_text_grey_01",
|
|
39
|
+
"ui_cpnt_list_text_description_01": "sys_text_grey_02",
|
|
40
|
+
"ui_cpnt_list_text_caption_01": "sys_text_grey_03",
|
|
41
|
+
"ui_cpnt_headerbar_base_area": "sys_component_base_02",
|
|
42
|
+
"ui_cpnt_headerbar_text_title": "sys_text_grey_01",
|
|
43
|
+
"ui_cpnt_headerbar_icon": "sys_widget_grey_01",
|
|
44
|
+
"ui_cpnt_headerbar_divider": "sys_border_line_01",
|
|
45
|
+
"ui_cpnt_tabbar_base_area": "sys_component_base_02",
|
|
46
|
+
"ui_cpnt_tabbar_divider": "sys_border_line_01",
|
|
47
|
+
"ui_cpnt_tabbar_base_area_sub": "sys_component_base_01",
|
|
48
|
+
"ui_cpnt_tabbar_border_active_indicator_primary": "usr_brand_primary",
|
|
49
|
+
"ui_cpnt_tabbar_text_active_primary": "usr_brand_primary",
|
|
50
|
+
"ui_cpnt_tabbar_border_active_indicator": "sys_border_line_05",
|
|
51
|
+
"ui_cpnt_tabbar_text_active": "sys_text_grey_01",
|
|
52
|
+
"ui_cpnt_tabbar_text_inactive_01": "sys_text_grey_02",
|
|
53
|
+
"ui_2": "sys_text_grey_01",
|
|
54
|
+
"ui_3": "sys_text_grey_02",
|
|
55
|
+
"ui_4": "sys_text_grey_03",
|
|
56
|
+
"ui_5": "sys_text_grey_01",
|
|
57
|
+
"ui_6": "sys_text_grey_02",
|
|
58
|
+
"ui_7": "sys_border_line_01",
|
|
59
|
+
"ui_8": "sys_text_grey_01",
|
|
60
|
+
"ui_9": "sys_text_grey_01",
|
|
61
|
+
"ui_cpnt_pagination_slide_dot_active": "sys_widget_grey_01",
|
|
62
|
+
"ui_cpnt_pagination_slide_dot_inactive": "sys_widget_grey_03",
|
|
63
|
+
"ui_10": "sys_text_grey_01",
|
|
64
|
+
"ui_11": "sys_text_grey_02",
|
|
65
|
+
"ui_cpnt_modal_header_text_title": "sys_text_grey_01",
|
|
66
|
+
"ui_cpnt_modal_header_icon_01": "sys_widget_grey_01",
|
|
67
|
+
"ui_cpnt_modal_header_base_area": "sys_component_base_white_opacity00",
|
|
68
|
+
"ui_cpnt_modal_header_base_line": "sys_border_line_01",
|
|
69
|
+
"ui_cpnt_modal_body_primary_text": "sys_text_grey_01",
|
|
70
|
+
"ui_cpnt_modal_body_secondary_text": "sys_text_grey_02",
|
|
71
|
+
"ui_cpnt_modal_footer_base_area": "sys_component_base_white_opacity00",
|
|
72
|
+
"ui_cpnt_modal_footer_divider": "sys_border_line_01",
|
|
73
|
+
"ui_cpnt_modal_base": "sys_component_base_02",
|
|
74
|
+
"ui_12": "sys_text_grey_02",
|
|
75
|
+
"ui_13": "sys_text_grey_02",
|
|
76
|
+
"ui_14": "sys_text_grey_01",
|
|
77
|
+
"ui_15": "sys_text_grey_01",
|
|
78
|
+
"ui_cpnt_text_emptystate": "sys_text_grey_02",
|
|
79
|
+
"ui_cpnt_chip_fill_icon_inactive": "sys_widget_grey_02",
|
|
80
|
+
"ui_cpnt_chip_fill_icon_active_01": "usr_on_brand_primary",
|
|
81
|
+
"ui_cpnt_chip_fill_text_inactive": "sys_text_grey_02",
|
|
82
|
+
"ui_cpnt_chip_fill_text_active_01": "usr_on_brand_primary",
|
|
83
|
+
"ui_cpnt_chip_fill_base_inactive": "sys_component_base_01",
|
|
84
|
+
"ui_cpnt_chip_fill_base_active_01": "usr_brand_primary",
|
|
85
|
+
"ui_cpnt_chip_line_icon_01": "sys_widget_grey_01",
|
|
86
|
+
"ui_cpnt_chip_line_text_01": "sys_text_grey_01",
|
|
87
|
+
"ui_cpnt_chip_line_text_disabled": "sys_text_grey_03",
|
|
88
|
+
"ui_cpnt_chip_line_border_01": "sys_border_line_01",
|
|
89
|
+
"ui_cpnt_chip_base_playtime": "sys_background_dimmed",
|
|
90
|
+
"ui_16": "sys_text_grey_01",
|
|
91
|
+
"ui_cpnt_list_icon_01": "sys_widget_grey_01",
|
|
92
|
+
"ui_cpnt_list_icon_02": "sys_widget_grey_02",
|
|
93
|
+
"ui_cpnt_bottomsheet_icon_01": "sys_widget_grey_01",
|
|
94
|
+
"ui_cpnt_bottomsheet_text_01": "sys_text_grey_01",
|
|
95
|
+
"ui_cpnt_bottomsheet_text_02": "sys_text_grey_02",
|
|
96
|
+
"ui_cpnt_bottomsheet_icon_02": "sys_widget_grey_02",
|
|
97
|
+
"ui_19": "sys_widget_grey_01",
|
|
98
|
+
"ui_20": "sys_text_grey_01",
|
|
99
|
+
"ui_cpnt_fab_default_base_white": "sys_component_base_white",
|
|
100
|
+
"ui_cpnt_fab_default_base_red": "sys_component_base_red",
|
|
101
|
+
"ui_cpnt_fab_default_base_primary": "usr_brand_primary",
|
|
102
|
+
"ui_cpnt_fab_default_base_hover": "sys_component_base_01",
|
|
103
|
+
"ui_cpnt_fab_default_on_base_hover": "sys_on_base_white_opacity30",
|
|
104
|
+
"ui_cpnt_fab_default_base_pressed": "sys_component_base_03",
|
|
105
|
+
"ui_cpnt_fab_default_on_base_pressed": "sys_on_base_black_opacity20",
|
|
106
|
+
"ui_cpnt_fab_default_base_disabled": "sys_component_base_03",
|
|
107
|
+
"ui_cpnt_fab_icon_enabled": "sys_widget_grey_01",
|
|
108
|
+
"ui_cpnt_fab_icon_on_primary": "usr_on_brand_primary",
|
|
109
|
+
"ui_cpnt_fab_icon_disabled": "sys_widget_grey_03",
|
|
110
|
+
"ui_cpnt_fab_extended_base_primary": "usr_brand_primary",
|
|
111
|
+
"ui_cpnt_fab_extended_on_base_hover": "sys_on_base_white_opacity30",
|
|
112
|
+
"ui_cpnt_fab_extended_on_base_pressed": "sys_on_base_black_opacity20",
|
|
113
|
+
"ui_cpnt_fab_extended_base_disabled": "sys_component_base_03",
|
|
114
|
+
"ui_cpnt_fab_text_on_primary": "usr_on_brand_primary",
|
|
115
|
+
"ui_cpnt_fab_text_disabled": "sys_text_grey_03",
|
|
116
|
+
"ui_cpnt_alertdialog_base": "sys_component_base_02",
|
|
117
|
+
"ui_cpnt_alertdialog_icon_success": "sys_widget_success_01",
|
|
118
|
+
"ui_cpnt_alertdialog_icon_error": "sys_widget_error_01",
|
|
119
|
+
"ui_cpnt_alertdialog_icon_warning": "sys_widget_warning_01",
|
|
120
|
+
"ui_cpnt_alertdialog_text_title": "sys_text_grey_01",
|
|
121
|
+
"ui_cpnt_alertdialog_text_body": "sys_text_grey_02",
|
|
122
|
+
"ui_21": "sys_widget_white",
|
|
123
|
+
"ui_22": "sys_widget_white",
|
|
124
|
+
"ui_23": "sys_widget_white",
|
|
125
|
+
"ui_24": "sys_widget_white",
|
|
126
|
+
"ui_25": "sys_widget_white",
|
|
127
|
+
"ui_26": "sys_widget_white",
|
|
128
|
+
"ui_27": "sys_widget_white",
|
|
129
|
+
"ui_cpnt_divider": "sys_border_line_01",
|
|
130
|
+
"ui_cpnt_select_border_normal": "sys_border_line_10",
|
|
131
|
+
"ui_cpnt_select_border_focus": "sys_border_line_02",
|
|
132
|
+
"ui_cpnt_select_base_normal": "sys_component_base_06",
|
|
133
|
+
"ui_cpnt_select_base_disabled": "sys_component_base_07",
|
|
134
|
+
"ui_cpnt_select_text_hint": "sys_text_grey_01",
|
|
135
|
+
"ui_cpnt_select_text_selected": "sys_text_grey_01",
|
|
136
|
+
"ui_cpnt_select_text_disabled": "sys_text_grey_03",
|
|
137
|
+
"ui_cpnt_select_icon_01": "sys_widget_grey_02",
|
|
138
|
+
"ui_cpnt_select_icon_02": "sys_widget_grey_03",
|
|
139
|
+
"ui_28": "sys_text_grey_01",
|
|
140
|
+
"ui_29": "sys_text_grey_02",
|
|
141
|
+
"ui_30": "sys_text_grey_02",
|
|
142
|
+
"ui_cpnt_videoplayer_icon_01": "sys_widget_white",
|
|
143
|
+
"ui_32": "sys_text_grey_01",
|
|
144
|
+
"ui_cpnt_selcontrols_icon_primary": "usr_brand_primary",
|
|
145
|
+
"ui_cpnt_selcontrols_icon_disabled": "sys_widget_grey_03",
|
|
146
|
+
"ui_cpnt_selcontrols_icon_default": "sys_widget_grey_02",
|
|
147
|
+
"ui_cpnt_selcontrols_text_disabled": "sys_text_grey_03",
|
|
148
|
+
"ui_cpnt_selcontrols_text_default": "sys_text_grey_02",
|
|
149
|
+
"ui_cpnt_selcontrols_icon_on_base_hover": "sys_on_base_white_opacity30",
|
|
150
|
+
"ui_cpnt_contextmenu_menu_base_normal": "sys_component_base_white_opacity00",
|
|
151
|
+
"ui_cpnt_contextmenu_menu_base_hover": "sys_component_base_01",
|
|
152
|
+
"ui_cpnt_contextmenu_menu_base_selected": "sys_component_base_01",
|
|
153
|
+
"ui_cpnt_contextmenu_text": "sys_text_grey_01",
|
|
154
|
+
"ui_cpnt_selcontrols_base_off": "sys_widget_grey_03",
|
|
155
|
+
"ui_cpnt_selcontrols_base_on": "sys_widget_lightgreen",
|
|
156
|
+
"ui_cpnt_tabbar_text_inactive_02": "sys_text_grey_03",
|
|
157
|
+
"ui_cpnt_videoplayer_unavailable": "sys_widget_grey_03",
|
|
158
|
+
"ui_cpnt_list_divider": "sys_border_line_01",
|
|
159
|
+
"ui_cpnt_button_fill_base_transparent": "sys_component_base_white_opacity00",
|
|
160
|
+
"ui_cpnt_list_badge_active": "sys_widget_status_active_01",
|
|
161
|
+
"ui_cpnt_list_badge_active_primary": "usr_brand_primary",
|
|
162
|
+
"ui_cpnt_list_badge_disabled": "sys_widget_grey_03",
|
|
163
|
+
"ui_cpnt_list_badge_cancel": "sys_widget_error_01",
|
|
164
|
+
"ui_cpnt_list_text_quantity_plus": "sys_text_brand_secondary_variant",
|
|
165
|
+
"ui_cpnt_content_card_base": "sys_component_base_03",
|
|
166
|
+
"ui_cpnt_content_icon_03": "sys_widget_grey_03",
|
|
167
|
+
"ui_cpnt_content_icon_01": "sys_widget_grey_01",
|
|
168
|
+
"ui_cpnt_content_icon_02": "sys_widget_grey_02",
|
|
169
|
+
"ui_cpnt_content_card_status_a": "sys_widget_primary_01",
|
|
170
|
+
"ui_cpnt_content_card_status_b": "sys_widget_success_01",
|
|
171
|
+
"ui_cpnt_content_card_status_c": "sys_widget_warning_01",
|
|
172
|
+
"ui_cpnt_content_card_status_d": "sys_widget_grey_03",
|
|
173
|
+
"ui_cpnt_textgroup_base_area": "sys_component_base_white_opacity00",
|
|
174
|
+
"ui_cpnt_imageslide_active": "sys_widget_white",
|
|
175
|
+
"ui_cpnt_imageslide_inactive": "sys_widget_grey_02",
|
|
176
|
+
"ui_cpnt_videoplayer_icon_02": "sys_widget_grey_01",
|
|
177
|
+
"ui_cpnt_videoplayer_text_01": "sys_text_white",
|
|
178
|
+
"ui_cpnt_videoplayer_text_02": "sys_text_white_opacity65",
|
|
179
|
+
"ui_cpnt_videoplayer_scrubber_01": "sys_widget_white",
|
|
180
|
+
"ui_cpnt_videoplayer_scrubber_primary": "usr_brand_primary",
|
|
181
|
+
"ui_cpnt_videoplayer_playbar_base": "sys_on_base_white_opacity30",
|
|
182
|
+
"ui_cpnt_videoplayer_playbar_02": "sys_widget_grey_04",
|
|
183
|
+
"ui_cpnt_videoplayer_playbar_primary": "usr_brand_primary",
|
|
184
|
+
"ui_cpnt_videoplayer_playbar_01": "sys_widget_grey_01",
|
|
185
|
+
"ui_cpnt_tableheadbar_title": "sys_text_grey_01",
|
|
186
|
+
"ui_cpnt_tableheaderbar_text_default": "sys_text_grey_01",
|
|
187
|
+
"ui_cpnt_tableheaderbar_text_disabled": "sys_text_grey_03",
|
|
188
|
+
"ui_cpnt_tableheaderbar_icon_01": "sys_widget_grey_01",
|
|
189
|
+
"ui_cpnt_datatable_text_01": "sys_text_grey_01",
|
|
190
|
+
"ui_cpnt_datatable_text_02": "sys_text_grey_02",
|
|
191
|
+
"ui_cpnt_datatable_text_03": "sys_text_grey_03",
|
|
192
|
+
"ui_cpnt_datatable_text_textbutton": "sys_text_brand_primary",
|
|
193
|
+
"ui_cpnt_datatable_text_active": "sys_text_active",
|
|
194
|
+
"ui_cpnt_datatable_base_default": "sys_component_base_white_opacity00",
|
|
195
|
+
"ui_cpnt_datatable_base_hover": "sys_component_base_hover_01",
|
|
196
|
+
"ui_cpnt_datatable_text_inactive": "sys_text_grey_03",
|
|
197
|
+
"ui_cpnt_datatable_bulkaction_base": "sys_widget_black",
|
|
198
|
+
"ui_cpnt_datatable_icon_01": "sys_widget_white",
|
|
199
|
+
"ui_cpnt_datatable_text_04": "sys_text_white",
|
|
200
|
+
"ui_cpnt_chip_fill_base_active_02": "sys_component_base_01",
|
|
201
|
+
"ui_cpnt_chip_fill_text_active_02": "sys_text_grey_01",
|
|
202
|
+
"ui_cpnt_chip_fill_icon_active_02": "sys_widget_grey_01",
|
|
203
|
+
"ui_cpnt_dropdown_border_normal": "sys_border_line_10",
|
|
204
|
+
"ui_cpnt_dropdown_border_focus": "sys_border_line_02",
|
|
205
|
+
"ui_cpnt_dropdown_base_normal": "sys_component_base_06",
|
|
206
|
+
"ui_cpnt_dropdown_base_disabled": "sys_component_base_07",
|
|
207
|
+
"ui_cpnt_dropdown_text_hint": "sys_text_grey_01",
|
|
208
|
+
"ui_cpnt_dropdown_text_selected": "sys_text_grey_01",
|
|
209
|
+
"ui_cpnt_dropdown_text_disabled": "sys_text_grey_03",
|
|
210
|
+
"ui_cpnt_dropdown_icon_01": "sys_widget_grey_02",
|
|
211
|
+
"ui_cpnt_dropdown_icon_02": "sys_widget_grey_03",
|
|
212
|
+
"ui_cpnt_datatable_textbutton_base_02": "sys_component_base_03",
|
|
213
|
+
"ui_cpnt_datatable_textbutton_base_01": "sys_component_base_white_opacity00",
|
|
214
|
+
"ui_cpnt_datatable_icon_02": "sys_widget_grey_01",
|
|
215
|
+
"ui_cpnt_datatable_icon_03": "sys_widget_grey_02",
|
|
216
|
+
"ui_cpnt_datatable_icon_04": "sys_widget_grey_03",
|
|
217
|
+
"ui_cpnt_sidebar_common_base": "sys_component_base_01",
|
|
218
|
+
"ui_cpnt_sidebar_header_base": "sys_component_base_01",
|
|
219
|
+
"ui_cpnt_sidebar_label_base": "sys_component_base_white_opacity00",
|
|
220
|
+
"ui_cpnt_sidebar_listitem_base_inactive": "sys_component_base_white_opacity00",
|
|
221
|
+
"ui_cpnt_sidebar_listitem_base_active": "usr_brand_primary",
|
|
222
|
+
"ui_cpnt_sidebar_footer_base": "sys_component_base_01",
|
|
223
|
+
"ui_cpnt_sidebar_label_icon": "sys_widget_grey_03",
|
|
224
|
+
"ui_cpnt_sidebar_listitem_icon_inactive": "usr_on_brand_primary",
|
|
225
|
+
"ui_cpnt_sidebar_listitem_icon_active": "usr_on_brand_primary",
|
|
226
|
+
"ui_cpnt_sidebar_icon_01": "sys_widget_white",
|
|
227
|
+
"ui_cpnt_modal_body_base": "sys_component_base_01",
|
|
228
|
+
"ui_cpnt_modal_header_icon_02": "sys_widget_grey_02",
|
|
229
|
+
"ui_cpnt_selectcard_base_selected": "sys_component_base_blue",
|
|
230
|
+
"ui_cpnt_selectcard_base_default": "sys_component_base_01",
|
|
231
|
+
"ui_cpnt_selectcard_icon_default": "sys_widget_grey_01",
|
|
232
|
+
"ui_cpnt_selectcard_icon_selected": "sys_widget_white",
|
|
233
|
+
"ui_cpnt_selectcard_text_01": "sys_text_grey_01",
|
|
234
|
+
"ui_cpnt_selectcard_text_02": "sys_text_grey_02",
|
|
235
|
+
"ui_cpnt_selectcard_text_03": "sys_text_white",
|
|
236
|
+
"ui_cpnt_bannerslidecontent_text_white": "sys_text_white",
|
|
237
|
+
"ui_cpnt_modal_header_icon_03": "sys_text_white",
|
|
238
|
+
"ui_cpnt_modal_body_tertiary_text": "sys_text_grey_03",
|
|
239
|
+
"ui_cpnt_list_timestatus_base": "sys_on_base_black_opacity65",
|
|
240
|
+
"ui_cpnt_list_text_timestatus": "sys_text_white",
|
|
241
|
+
"ui_cpnt_imageview_base_03": "sys_component_base_03",
|
|
242
|
+
"ui_34": "sys_widget_grey_03",
|
|
243
|
+
"ui_cpnt_editorsidebar_base": "sys_component_base_04",
|
|
244
|
+
"ui_cpnt_editorsidebar_visible_status_base": "sys_widget_status_active_01",
|
|
245
|
+
"ui_cpnt_editorsidebar_visible_status_text": "sys_text_grey01",
|
|
246
|
+
"ui_cpnt_editorsidebar_card_base_default": "sys_component_base_02",
|
|
247
|
+
"ui_cpnt_editorsidebar_card_base_selected": "sys_component_base_blue",
|
|
248
|
+
"ui_cpnt_editorsidebar_text_default": "sys_text_grey_01",
|
|
249
|
+
"ui_cpnt_editorsidebar_text_selected": "sys_text_white",
|
|
250
|
+
"ui_cpnt_editorsidebar_icon_default": "sys_widget_grey_01",
|
|
251
|
+
"ui_cpnt_editorsidebar_icon_selected": "sys_widget_white1",
|
|
252
|
+
"ui_cpnt_editorsidebar_card_border": "sys_border_line_01",
|
|
253
|
+
"ui_cpnt_step_base_area": "sys_component_base_white_opacity00",
|
|
254
|
+
"ui_cpnt_step_text_inactive": "sys_text_grey_03",
|
|
255
|
+
"ui_cpnt_step_text_active": "usr_brand_primary",
|
|
256
|
+
"ui_cpnt_step_circular_inactive": "sys_widget_grey_03",
|
|
257
|
+
"ui_cpnt_step_circular_active": "usr_brand_primary",
|
|
258
|
+
"ui_cpnt_step_icon": "sys_widget_white",
|
|
259
|
+
"ui_cpnt_step_text_number": "sys_text_white",
|
|
260
|
+
"ui_cpnt_imageslide_dot_area_1": "sys_component_base_black",
|
|
261
|
+
"ui_cpnt_imageslide_dot_area_2": "sys_component_base_black_opacity00",
|
|
262
|
+
"ui_cpnt_editorsidebar_text_disabled": "sys_text_grey_02",
|
|
263
|
+
"ui_cpnt_editorsidebar_icon_disabled": "sys_widget_grey_02",
|
|
264
|
+
"ui_cpnt_editorsidebar_card_border_disabled": "sys_widget_grey_02",
|
|
265
|
+
"ui_cpnt_userdesktopnavbar_base_area": "sys_component_base_white_opacity00",
|
|
266
|
+
"ui_cpnt_button_line_base_default": "sys_component_base_02",
|
|
267
|
+
"ui_cpnt_userdesktoptabbar_base_area": "sys_component_base_white_opacity00",
|
|
268
|
+
"ui_cpnt_userdesktoptabbar_divider": "sys_border_line_01",
|
|
269
|
+
"ui_cpnt_userdesktoptabbar_border_active_indicator": "usr_brand_primary",
|
|
270
|
+
"ui_cpnt_userdesktoptabbar_text_active": "sys_text_grey_01",
|
|
271
|
+
"ui_cpnt_userdesktoptabbar_text_inactive": "sys_text_grey_02",
|
|
272
|
+
"ui_cpnt_selcontrols_base_off_disabled": "sys_selcontrols_base_off_disabled",
|
|
273
|
+
"ui_cpnt_selcontrols_base_on_disabled": "sys_selcontrols_base_on_disabled",
|
|
274
|
+
"ui_cpnt_selcontrols_circular": "sys_widget_white",
|
|
275
|
+
"ui_cpnt_chip_line_icon_02": "sys_widget_grey_02",
|
|
276
|
+
"ui_cpnt_overlay_base": "sys_component_base_02",
|
|
277
|
+
"ui_cpnt_profile_base": "sys_component_base_white_opacity00",
|
|
278
|
+
"ui_cpnt_card_base": "sys_component_base_card",
|
|
279
|
+
"ui_cpnt_card_selected_border": "sys_border_line_06",
|
|
280
|
+
"ui_cpnt_card_icon_basic": "sys_widget_primary_01",
|
|
281
|
+
"ui_cpnt_card_icon_custom": "sys_widget_grey_01",
|
|
282
|
+
"ui_cpnt_card_icon_create": "sys_widget_grey_01",
|
|
283
|
+
"ui_cpnt_modal_dimmed": "sys_background_dimmed_02",
|
|
284
|
+
"ui_cpnt_alertdialog_dimmed": "sys_background_dimmed_02",
|
|
285
|
+
"ui_cpnt_bottomsheet_base": "sys_component_base_02",
|
|
286
|
+
"ui_cpnt_bottomsheet_icon_03": "sys_widget_grey_03",
|
|
287
|
+
"ui_cpnt_button_icon_white": "sys_widget_white",
|
|
288
|
+
"ui_cpnt_list_icon_03": "sys_widget_grey_03",
|
|
289
|
+
"ui_cpnt_list_icon_active_primary": "usr_brand_primary",
|
|
290
|
+
"ui_cpnt_alertdialog_icon_information": "sys_widget_primary_01",
|
|
291
|
+
"ui_cpnt_bottomsheet_bar": "sys_component_base_03",
|
|
292
|
+
"ui_cpnt_button_line_border_error": "sys_border_line_04",
|
|
293
|
+
"ui_cpnt_button_text_error": "sys_text_error_01",
|
|
294
|
+
"ui_cpnt_button_icon_error": "sys_widget_error_01",
|
|
295
|
+
"ui_cpnt_textlabel_sys_primary": "sys_text_grey_01",
|
|
296
|
+
"ui_cpnt_textlabel_sys_secondary": "sys_text_grey_02",
|
|
297
|
+
"ui_cpnt_textlabel_sys_tertiary": "sys_text_grey_03",
|
|
298
|
+
"ui_cpnt_textlabel_sys_white": "sys_text_white",
|
|
299
|
+
"ui_cpnt_textlabel_sys_brandprimary": "sys_text_brand_primary",
|
|
300
|
+
"ui_cpnt_textlabel_sys_error": "sys_text_error_01",
|
|
301
|
+
"ui_cpnt_textlabel_sys_brandseconvariant": "sys_text_brand_secondary_variant",
|
|
302
|
+
"ui_cpnt_textlabel_usr_brandprimary": "usr_brand_primary",
|
|
303
|
+
"ui_cpnt_textlabel_usr_brandseconvariant": "usr_brand_secondary_variant",
|
|
304
|
+
"ui_cpnt_textlabel_usr_brandonprimary": "usr_on_brand_primary",
|
|
305
|
+
"ui_cpnt_list_text_body": "sys_text_grey_02",
|
|
306
|
+
"ui_cpnt_card_icon_background_01": "sys_widget_primary_01",
|
|
307
|
+
"ui_cpnt_card_icon_background_02": "sys_widget_pink",
|
|
308
|
+
"ui_cpnt_card_icon_background_03": "sys_widget_success_01",
|
|
309
|
+
"ui_cpnt_bannerslide_gradient_1": "sys_component_base_05",
|
|
310
|
+
"ui_cpnt_bannerslide_gradient_2": "sys_component_base_05_opacity00",
|
|
311
|
+
"ui_cpnt_modal_gradient_1": "sys_component_base_black_opacity00",
|
|
312
|
+
"ui_cpnt_modal_gradient_2": "sys_component_base_black",
|
|
313
|
+
"ui_cpnt_list_icon_04": "sys_widget_white",
|
|
314
|
+
"ui_cpnt_list_thumbnail_border": "sys_border_line_01",
|
|
315
|
+
"ui_cpnt_list_thumbnail_gradient_1": "sys_component_base_black_opacity80",
|
|
316
|
+
"ui_cpnt_list_thumbnail_gradient_2": "sys_component_base_black_opacity00",
|
|
317
|
+
"ui_cpnt_list_base_area_active": "sys_component_base_01",
|
|
318
|
+
"ui_cpnt_contextmenu_base": "sys_component_base_02",
|
|
319
|
+
"ui_cpnt_videoplayer_gradient_1": "sys_component_base_black",
|
|
320
|
+
"ui_cpnt_videoplayer_gradient_2": "sys_component_base_black_opacity00",
|
|
321
|
+
"ui_cpnt_videoplayer_overlay": "sys_component_base_black_opacity50",
|
|
322
|
+
"ui_globalmenucontainer_background": "sys_container_background_01",
|
|
323
|
+
"ui_pagemenucontainer_background": "sys_container_background_01",
|
|
324
|
+
"ui_submenucontainer_background": "sys_container_background_01",
|
|
325
|
+
"ui_tabmenucontainer_background": "sys_container_background_01",
|
|
326
|
+
"ui_contentscontainer01_background": "sys_container_background_01",
|
|
327
|
+
"ui_contentscontainer02_background": "sys_container_background_01",
|
|
328
|
+
"ui_cpnt_bannerslide_icon_01": "sys_widget_white",
|
|
329
|
+
"ui_cpnt_card_shadow": "sys_widget_primary_opacity20",
|
|
330
|
+
"ui_cpnt_bannerslide_pagination_active": "sys_widget_white",
|
|
331
|
+
"ui_cpnt_bannerslide_pagination_inactive": "sys_widget_grey_02",
|
|
332
|
+
"ui_cpnt_icon_usr_brandprimary": "usr_brand_primary",
|
|
333
|
+
"ui_container_divider": "sys_border_line_01",
|
|
334
|
+
"ui_area_divider": "sys_border_line_09",
|
|
335
|
+
"ui_cpnt_list_base_area_seller": "sys_component_base_01",
|
|
336
|
+
"ui_temp_grey_01": "sys_temp_grey_01",
|
|
337
|
+
"ui_temp_grey_02": "sys_temp_grey_02",
|
|
338
|
+
"ui_temp_grey_03": "sys_temp_grey_03",
|
|
339
|
+
"ui_temp_grey_04": "sys_temp_grey_04",
|
|
340
|
+
"ui_temp_grey_05": "sys_temp_grey_05",
|
|
341
|
+
"ui_temp_white": "sys_temp_white",
|
|
342
|
+
"ui_temp_primary_01": "sys_temp_primary_01",
|
|
343
|
+
"ui_temp_secondary_01": "sys_temp_secondary_01",
|
|
344
|
+
"ui_temp_red": "sys_temp_red",
|
|
345
|
+
"ui_temp_white_opacity_00": "sys_temp_white_opacity_00",
|
|
346
|
+
"ui_temp_dimmed": "sys_temp_dimmed",
|
|
347
|
+
"ui_temp_black": "sys_temp_black",
|
|
348
|
+
"ui_temp_primary_02": "sys_temp_primary_02",
|
|
349
|
+
"ui_temp_primary_03": "sys_temp_primary_03",
|
|
350
|
+
"ui_temp_secondary_02": "sys_temp_secondary_02",
|
|
351
|
+
"ui_temp_lightgreen_01": "sys_temp_lightgreen_01",
|
|
352
|
+
"ui_cpnt_userdesktopnavbar_profile_border": "sys_border_line_01",
|
|
353
|
+
"ui_cpnt_textlabel_sys_grey_04": "sys_text_grey_04",
|
|
354
|
+
"ui_papp_post_social_background": "sys_papp_post_social_background",
|
|
355
|
+
"ui_papp_post_notice_background": "sys_papp_post_notice_background",
|
|
356
|
+
"ui_papp_post_free_background": "sys_papp_post_free_background",
|
|
357
|
+
"ui_papp_vod_background": "sys_papp_vod_background",
|
|
358
|
+
"ui_papp_vodplus_background": "sys_papp_vodplus_background",
|
|
359
|
+
"ui_papp_live_background": "sys_papp_live_background",
|
|
360
|
+
"ui_community_pagination_base_area": "sys_component_base_02",
|
|
361
|
+
"ui_cpnt_contextmenu_border": "sys_border_line_01",
|
|
362
|
+
"ui_profile_image_border": "sys_border_line_09",
|
|
363
|
+
"ui_cpnt_alertdialog_border": "sys_border_line_09",
|
|
364
|
+
"ui_cpnt_modal_border": "sys_border_line_09",
|
|
365
|
+
"ui_cpnt_card_border": "sys_border_line_01",
|
|
366
|
+
"ui_cpnt_overlay_border": "sys_border_line_01",
|
|
367
|
+
"ui_cpnt_datatable_base_selected": "sys_component_base_blue_opacity10",
|
|
368
|
+
"ui_cpnt_icon_sys_brandprimary": "sys_widget_primary_01",
|
|
369
|
+
"ui_cpnt_icon_sys_grey_01": "sys_widget_grey_01",
|
|
370
|
+
"ui_cpnt_icon_sys_grey_02": "sys_widget_grey_02",
|
|
371
|
+
"ui_cpnt_icon_sys_grey_03": "sys_widget_grey_03",
|
|
372
|
+
"ui_cpnt_icon_sys_error_01": "sys_widget_error_01",
|
|
373
|
+
"ui_cpnt_icon_sys_warning_01": "sys_widget_warning_01",
|
|
374
|
+
"ui_cpnt_icon_sys_success_01": "sys_widget_success_01",
|
|
375
|
+
"ui_cpnt_icon_usr_brandsecondary": "usr_brand_secondary",
|
|
376
|
+
"ui_papp_post_notice_link": "sys_papp_post_notice_link",
|
|
377
|
+
"ui_cpnt_headerbar_icon_02": "sys_widget_white",
|
|
378
|
+
"ui_m_navigationcontainer_background": "sys_container_background_01",
|
|
379
|
+
"ui_m_tabcontainer_background": "sys_container_background_01",
|
|
380
|
+
"ui_m_contentscontainer01_background": "sys_container_background_01",
|
|
381
|
+
"ui_m_contentscontainer02_background": "sys_container_background_01",
|
|
382
|
+
"ui_cpnt_statusblock_basic": "sys_component_base_navy_light",
|
|
383
|
+
"ui_cpnt_statusblock_standby": "sys_component_base_green",
|
|
384
|
+
"ui_cpnt_statusblock_proceeding": "sys_component_base_red",
|
|
385
|
+
"ui_cpnt_statusblock_cancel": "sys_component_base_grey",
|
|
386
|
+
"ui_cpnt_statusblock_end": "sys_component_base_grey",
|
|
387
|
+
"ui_cpnt_statusblock_error": "sys_component_base_orange",
|
|
388
|
+
"ui_cpnt_list_base_area_solid": "sys_component_base_02",
|
|
389
|
+
"ui_cpnt_list_base_area_translucent": "sys_component_base_black_opacity80",
|
|
390
|
+
"ui_cpnt_list_base_area_transparent": "sys_component_base_black_opacity00",
|
|
391
|
+
"ui_cpnt_list_text_caption_02": "sys_text_darkgrey_02",
|
|
392
|
+
"ui_cpnt_button_line_border_darktheme_enabled": "sys_border_line_darktheme_02",
|
|
393
|
+
"ui_cpnt_button_line_border_darktheme_disabled": "sys_border_line_darktheme_01",
|
|
394
|
+
"ui_cpnt_button_line_base_darktheme_default": "sys_component_base_darktheme_02",
|
|
395
|
+
"ui_cpnt_button_line_base_darktheme_hover": "sys_component_base_darktheme_01",
|
|
396
|
+
"ui_cpnt_button_line_base_darktheme_pressed": "sys_component_base_darktheme_03",
|
|
397
|
+
"ui_cpnt_button_text_darktheme_enabled": "sys_text_grey_darktheme_01",
|
|
398
|
+
"ui_cpnt_button_text_darktheme_disabled": "sys_text_grey_darktheme_03",
|
|
399
|
+
"ui_cpnt_button_icon_darktheme_enabled": "sys_widget_grey_darktheme_01",
|
|
400
|
+
"ui_cpnt_button_icon_darktheme_disabled": "sys_widget_grey_darktheme_03",
|
|
401
|
+
"ui_cpnt_icon_sys_white": "sys_widget_white",
|
|
402
|
+
"ui_cpnt_button_fill_base_media": "sys_component_base_black_opacity80",
|
|
403
|
+
"ui_cpnt_textfield_text_darktheme_enabled": "sys_text_grey_darktheme_01",
|
|
404
|
+
"ui_cpnt_textfield_text_darktheme_hint": "sys_text_grey_darktheme_02",
|
|
405
|
+
"ui_cpnt_textfield_text_darktheme_disabled": "sys_text_grey_darktheme_03",
|
|
406
|
+
"ui_cpnt_textfield_icon_darktheme_default": "sys_widget_grey_darktheme_02",
|
|
407
|
+
"ui_cpnt_textfield_icon_darktheme_disabled": "sys_widget_grey_darktheme_03",
|
|
408
|
+
"ui_cpnt_textfield_border_darktheme_normal": "sys_border_line_darktheme_07",
|
|
409
|
+
"ui_cpnt_textfield_border_darktheme_focus": "sys_border_line_darktheme_02",
|
|
410
|
+
"ui_cpnt_textfield_border_darktheme_error": "sys_border_line_darktheme_03",
|
|
411
|
+
"ui_cpnt_textfield_text_darktheme_error": "sys_text_error_darktheme_01",
|
|
412
|
+
"ui_cpnt_textfield_base_darktheme_disabled": "sys_component_base_darktheme_06",
|
|
413
|
+
"ui_cpnt_select_text_darktheme_enabled": "sys_text_grey_darktheme_01",
|
|
414
|
+
"ui_cpnt_select_text_darktheme_hint": "sys_text_grey_darktheme_01",
|
|
415
|
+
"ui_cpnt_select_text_darktheme_disabled": "sys_text_grey_darktheme_03",
|
|
416
|
+
"ui_cpnt_select_icon_darktheme_default": "sys_widget_grey_darktheme_02",
|
|
417
|
+
"ui_cpnt_select_icon_darktheme_disabled": "sys_widget_grey_darktheme_03",
|
|
418
|
+
"ui_cpnt_select_border_darktheme_normal": "sys_border_line_darktheme_07",
|
|
419
|
+
"ui_cpnt_select_border_darktheme_focus": "sys_border_line_darktheme_02",
|
|
420
|
+
"ui_cpnt_select_base_darktheme_disabled": "sys_component_base_darktheme_06",
|
|
421
|
+
"ui_cpnt_dropdown_text_darktheme_enabled": "sys_text_grey_darktheme_01",
|
|
422
|
+
"ui_cpnt_dropdown_text_darktheme_hint": "sys_text_grey_darktheme_01",
|
|
423
|
+
"ui_cpnt_dropdown_text_darktheme_disabled": "sys_text_grey_darktheme_03",
|
|
424
|
+
"ui_cpnt_dropdown_icon_darktheme_default": "sys_widget_grey_darktheme_02",
|
|
425
|
+
"ui_cpnt_dropdown_icon_darktheme_disabled": "sys_widget_grey_darktheme_03",
|
|
426
|
+
"ui_cpnt_dropdown_border_darktheme_normal": "sys_border_line_darktheme_07",
|
|
427
|
+
"ui_cpnt_dropdown_border_darktheme_focus": "sys_border_line_darktheme_02",
|
|
428
|
+
"ui_cpnt_dropdown_base_darktheme_disabled": "sys_component_base_darktheme_06",
|
|
429
|
+
"ui_cpnt_sheet_base": "sys_cpnt_sheet_base_01",
|
|
430
|
+
"ui_cpnt_button_icon_darktheme_default": "sys_widget_grey_darktheme_02",
|
|
431
|
+
"ui_cpnt_button_icon_darktheme_primary": "usr_widget_brand_primary_darktheme_01",
|
|
432
|
+
"ui_cpnt_button_text_darktheme_default": "sys_text_grey_darktheme_02",
|
|
433
|
+
"ui_cpnt_button_text_darktheme_primary": "usr_text_brand_primary_darktheme_01",
|
|
434
|
+
"ui_35": "black",
|
|
435
|
+
"ui_cpnt_button_fill_base_black_opacity50": "sys_component_base_black_opacity50",
|
|
436
|
+
"ui_cpnt_sheet_base_white": "sys_component_base_white",
|
|
437
|
+
"ui_cpnt_sheet_base_black": "sys_component_base_black",
|
|
438
|
+
"ui_cpnt_sheet_base_01": "sys_component_base_02",
|
|
439
|
+
"ui_cpnt_sheet_base_02": "sys_component_base_01",
|
|
440
|
+
"ui_temp_background": "sys_container_background_01",
|
|
441
|
+
"ui_list_progress_shape_normal": "sys_widget_primary_01",
|
|
442
|
+
"ui_list_progress_shape_error": "sys_widget_error_01",
|
|
443
|
+
"ui_list_progress_shape_base": "sys_widget_grey_04",
|
|
444
|
+
"ui_cpnt_textlabel_sys_brand_primary_opacity50": "sys_cpnt_textlabel_sys_brand_primary_opacity50",
|
|
445
|
+
"ui_cpnt_progressbar_01": "sys_widget_green_01",
|
|
446
|
+
"ui_cpnt_progressbar_02": "sys_widget_grey_04",
|
|
447
|
+
"ui_36": "sys_component_base_black_opacity80",
|
|
448
|
+
"ui_37": "sys_component_base_black_opacity30",
|
|
449
|
+
"ui_39": "sys_area_background",
|
|
450
|
+
"ui_cpnt_divider_white_opacity30": "sys_border_white_opacity30",
|
|
451
|
+
"ui_toppagemenucontainer_background_wt_m": "sys_container_background_wt",
|
|
452
|
+
"ui_contentscontainer_background_wt_m": "sys_container_background_wt",
|
|
453
|
+
"ui_toppagemenuarea_background_wt_m": "sys_container_background_01",
|
|
454
|
+
"ui_contentsarea_background_wt_m": "sys_container_background_01",
|
|
455
|
+
"ui_cpnt_standardbanner_base_default": "sys_component_base_02",
|
|
456
|
+
"ui_channeldesc_white": "sys_text_white",
|
|
457
|
+
"ui_channeldesc_grey_03": "sys_channeldesc_grey_03",
|
|
458
|
+
"ui_channeldesc_border_grey_03": "sys_channeldesc_border_grey_03",
|
|
459
|
+
"ui_cpnt_bottomsheet_border": "sys_border_line_01",
|
|
460
|
+
"ui_cpnt_userdesktopsidetab_base_area": "sys_component_base_white_opacity00",
|
|
461
|
+
"ui_cpnt_pg_gradient_01": "sys_gradient_base_01",
|
|
462
|
+
"ui_cpnt_pg_gradient_02": "sys_gradient_base_01_opacity00",
|
|
463
|
+
"ui_channeldesc_background": "sys_channeldesc_background",
|
|
464
|
+
"ui_channeldesc_bottomsheet_base": "sys_channeldesc_bottomsheet_base",
|
|
465
|
+
"ui_channeldesc_bottomsheet_border": "sys_channeldesc_bottomsheet_border",
|
|
466
|
+
"ui_channeldesc_contents_base": "sys_channeldesc_contents_base",
|
|
467
|
+
"ui_channeldesc_dimmed": "sys_channeldesc_dimmed",
|
|
468
|
+
"ui_cpnt_pg_gradient_03": "sys_gradient_base_01_opacity50",
|
|
469
|
+
"ui_cpnt_pg_gradient_04": "sys_gradient_base_01_opacity75",
|
|
470
|
+
"ui_cpnt_pg_gradient_05": "sys_gradient_base_01_opacity40",
|
|
471
|
+
"ui_cpnt_mask_base": "sys_component_base_02",
|
|
472
|
+
"ui_temp_usr_primary_01": "usr_brand_primary",
|
|
473
|
+
"ui_cpnt_sheet_base_02_opacity50": "sys_cpnt_sheet_base_02_opacity50",
|
|
474
|
+
"ui_menu_primarymenu_main": "usr_menu_primarymenu_main",
|
|
475
|
+
"ui_menu_primarymenu_sub": "usr_menu_primarymenu_sub",
|
|
476
|
+
"ui_menu_secondarymenu_main": "usr_menu_secondarymenu_main",
|
|
477
|
+
"ui_menu_secondarymenu_sub": "usr_menu_secondarymenu_sub",
|
|
478
|
+
"ui_menu_hover": "usr_menu_hover",
|
|
479
|
+
"ui_menu_active": "usr_menu_active",
|
|
480
|
+
"ui_menu_background": "usr_menu_background",
|
|
481
|
+
"ui_cpnt_video_progress_base": "sys_cpnt_base_white_opacity50",
|
|
482
|
+
"ui_cpnt_icon_sys_dark": "sys_widget_dark_01",
|
|
483
|
+
"ui_menu_background_gradient_opacity00": "usr_menu_background_gradient_opacity00",
|
|
484
|
+
"ui_cpnt_dropdown_border_white_normal": "sys_border_line_white",
|
|
485
|
+
"ui_cpnt_dropdown_text_white_enabled": "sys_text_white",
|
|
486
|
+
"ui_cpnt_dropdown_text_white_hint": "sys_text_white",
|
|
487
|
+
"ui_cpnt_dropdown_icon_white_default": "sys_widget_white",
|
|
488
|
+
"ui_cpnt_dropdown_border_white_focus": "sys_border_line_white",
|
|
489
|
+
"ui_cpnt_dropdown_base_white_normal": "sys_component_base_white_opacity00",
|
|
490
|
+
"ui_profile_image_border_brandprimary": "usr_brand_primary",
|
|
491
|
+
"ui_cpnt_dropdown_base_white_disabled": "sys_component_base_white_opacity10",
|
|
492
|
+
"ui_cpnt_dropdown_border_white_disabled": "sys_border_line_white_opacity50",
|
|
493
|
+
"ui_cpnt_sheet_base_white_opacity00": "sys_component_base_white_opacity00",
|
|
494
|
+
"ui_dimmed_01": "sys_background_dimmed_20",
|
|
495
|
+
"ui_cpnt_reactionbutton_base_01": "sys_component_base_01",
|
|
496
|
+
"ui_cpnt_textfield_border_disabled": "sys_border_line_07",
|
|
497
|
+
"ui_cpnt_dropdown_border_disabled": "sys_border_line_07",
|
|
498
|
+
"ui_cpnt_select_border_disabled": "sys_border_line_07",
|
|
499
|
+
"ui_cpnt_dropdown_base_darktheme_normal": "sys_component_base_darktheme_01",
|
|
500
|
+
"ui_cpnt_textfield_text_readonly": "sys_text_grey_03",
|
|
501
|
+
"ui_cpnt_select_text_readonly": "sys_text_grey_03",
|
|
502
|
+
"ui_cpnt_dropdown_text_readonly": "sys_text_grey_03",
|
|
503
|
+
"ui_cpnt_select_text_darktheme_readonly": "sys_text_grey_darktheme_03",
|
|
504
|
+
"ui_cpnt_dropdown_text_darktheme_readonly": "sys_text_grey_darktheme_03",
|
|
505
|
+
"ui_cpnt_dropdown_text_white_readonly": "sys_text_grey_03",
|
|
506
|
+
"ui_cpnt_blogtextfield_base_01": "sys_component_base_white_opacity00",
|
|
507
|
+
"ui_cpnt_textfield_base_darktheme_normal": "sys_component_base_darktheme_01",
|
|
508
|
+
"ui_cpnt_dropdown_border_darktheme_disabled": "sys_border_line_darktheme_06",
|
|
509
|
+
"ui_cpnt_select_border_darktheme_disabled": "sys_border_line_darktheme_06",
|
|
510
|
+
"ui_cpnt_dropdown_text_white_disabled": "sys_text_grey_03",
|
|
511
|
+
"ui_cpnt_select_base_darktheme_normal": "sys_component_base_darktheme_01",
|
|
512
|
+
"ui_hero_title_text": "sys_text_white",
|
|
513
|
+
"ui_hero_description_text": "sys_text_white",
|
|
514
|
+
"ui_cpnt_divider_area": "sys_border_area_01",
|
|
515
|
+
"ui_cpnt_button_white_base_hover": "sys_component_base_darktheme_01",
|
|
516
|
+
"ui_cpnt_button_white_base_pressed": "sys_component_base_darktheme_03",
|
|
517
|
+
"ui_cpnt_list_base_area_hover": "sys_component_base_02",
|
|
518
|
+
"ui_cpnt_sheet_border_01": "sys_border_line_01",
|
|
519
|
+
"ui_cpnt_sheet_border_02": "sys_border_line_03",
|
|
520
|
+
"ui_cpnt_sheet_border_03": "sys_border_line_11",
|
|
521
|
+
"ui_43": "sys_border_line_12",
|
|
522
|
+
"ui_44": "sys_component_base_white",
|
|
523
|
+
"ui_45": "sys_component_base_08",
|
|
524
|
+
"ui_46": "sys_base_dimmed_01",
|
|
525
|
+
"ui_47": "sys_kakao",
|
|
526
|
+
"ui_cpnt_sheet_base_03": "sys_component_base_white_opacity00",
|
|
527
|
+
"ui_48": "sys_text_social_login_01",
|
|
528
|
+
"ui_49": "sys_text_social_login_02",
|
|
529
|
+
"ui_50": "sys_text_white",
|
|
530
|
+
"ui_51": "sys_background_dimmed_65",
|
|
531
|
+
"ui_cpnt_list_text_caption_03": "sys_text_grey_darktheme_03",
|
|
532
|
+
"ui_cpnt_list_chatbubble_base_area": "sys_component_base_01",
|
|
533
|
+
"ui_cpnt_list_chatbubble_base_area_my": "sys_component_base_01",
|
|
534
|
+
"ui_cpnt_list_chatbubble_text_my": "sys_text_grey_01",
|
|
535
|
+
"ui_papp_livechat_link": "sys_papp_livechat_link",
|
|
536
|
+
"ui_cpnt_list_chatbubble_base_area_seller_color": "usr_brand_primary",
|
|
537
|
+
"ui_cpnt_list_chatbubble_text_seller_color": "usr_on_brand_primary",
|
|
538
|
+
"ui_cpnt_list_chatbubble_base_area_subscriber": "sys_component_base_01",
|
|
539
|
+
"ui_cpnt_list_chatbubble_text_subscriber": "sys_text_grey_01",
|
|
540
|
+
"ui_cpnt_list_chatbubble_base_area_my_color": "usr_brand_primary",
|
|
541
|
+
"ui_cpnt_list_chatbubble_text_my_color": "usr_on_brand_primary",
|
|
542
|
+
"ui_cpnt_list_chatbubble_base_area_seller": "usr_brand_primary",
|
|
543
|
+
"ui_cpnt_list_chatbubble_text_seller": "usr_on_brand_primary",
|
|
544
|
+
"ui_52": "sys_widget_success_01",
|
|
545
|
+
"ui_cpnt_imageview_dimmed": "sys_on_base_black_opacity65",
|
|
546
|
+
"ui_53": "sys_widget_primary_01",
|
|
547
|
+
"ui_54": "sys_text_lighttone_grey_01",
|
|
548
|
+
"ui_55": "sys_widget_lighttone_primary_01",
|
|
549
|
+
"ui_56": "sys_text_lighttone_grey_02",
|
|
550
|
+
"ui_cpnt_sheet_base_04": "sys_component_base_09",
|
|
551
|
+
"ui_cpnt_masking_base_01": "sys_component_base_03",
|
|
552
|
+
"ui_cpnt_masking_icon_01": "sys_widget_grey_03",
|
|
553
|
+
"ui_cpnt_list_base_area_transparent_seller": "sys_component_base_10",
|
|
554
|
+
"ui_57": "sys_component_base_darktheme_opacity20",
|
|
555
|
+
"ui_58": "sys_component_base_darktheme_disabled_opacity20",
|
|
556
|
+
"ui_cpnt_divider_white_opacity00": "sys_border_white_opacity00",
|
|
557
|
+
"ui_cpnt_textfield_text_colortheme_transparent_enabled": "sys_text_grey_darktheme_01",
|
|
558
|
+
"ui_cpnt_textfield_text_colortheme_transparent_hint": "sys_text_grey_darktheme_02",
|
|
559
|
+
"ui_cpnt_textfield_text_colortheme_transparent_disabled": "sys_text_grey_darktheme_03",
|
|
560
|
+
"ui_cpnt_textfield_icon_colortheme_transparent_default": "sys_widget_grey_darktheme_02",
|
|
561
|
+
"ui_cpnt_textfield_icon_colortheme_transparent_disabled": "sys_widget_grey_darktheme_03",
|
|
562
|
+
"ui_cpnt_textfield_border_colortheme_transparent_normal": "sys_border_line_darktheme_07_opacity00",
|
|
563
|
+
"ui_cpnt_textfield_border_colortheme_transparent_focus": "sys_border_line_darktheme_07_opacity20",
|
|
564
|
+
"ui_cpnt_textfield_border_colortheme_transparent_error": "sys_border_line_darktheme_03",
|
|
565
|
+
"ui_cpnt_textfield_text_colortheme_transparent_error": "sys_text_error_darktheme_01",
|
|
566
|
+
"ui_cpnt_textfield_base_colortheme_transparent_disabled": "sys_component_base_darktheme_disabled_opacity20",
|
|
567
|
+
"ui_cpnt_textfield_base_colortheme_transparent_normal": "sys_component_base_darktheme_opacity20",
|
|
568
|
+
"ui_cpnt_textfield_text_colortheme_transparent_readonly": "sys_text_grey_darktheme_03",
|
|
569
|
+
"ui_cpnt_textfield_icon_colortheme_transparent_readonly": "sys_widget_grey_darktheme_03",
|
|
570
|
+
"ui_cpnt_textfield_base_colortheme_transparent_readonly": "sys_component_base_darktheme_disabled_opacity20",
|
|
571
|
+
"ui_cpnt_textfield_border_colortheme_transparent_disabled": "sys_border_line_darktheme_07_opacity00",
|
|
572
|
+
"ui_cpnt_textfield_border_colortheme_transparent_readonly": "sys_border_line_darktheme_07_opacity00",
|
|
573
|
+
"ui_cpnt_lottiereactionbutton_base_01": "sys_component_pastel_base_01",
|
|
574
|
+
"ui_cpnt_lottiereactionbutton_base_02": "sys_component_pastel_base_02",
|
|
575
|
+
"ui_cpnt_lottiereactionbutton_base_03": "sys_component_pastel_base_03",
|
|
576
|
+
"ui_cpnt_lottiereactionbutton_base_04": "sys_component_pastel_base_04",
|
|
577
|
+
"ui_cpnt_lottiereactionbutton_base_05": "sys_component_pastel_base_05",
|
|
578
|
+
"ui_60": "sys_component_base_11",
|
|
579
|
+
"ui_61": "sys_background_dimmed_02",
|
|
580
|
+
"ui_loading_skeleton_01": "sys_loading_skeleton_01",
|
|
581
|
+
"ui_loading_skeleton_02": "sys_loading_skeleton_02",
|
|
582
|
+
"ui_loading_linear_bar": "sys_loading_linear_bar",
|
|
583
|
+
"ui_loading_linear_base": "sys_loading_linear_base",
|
|
584
|
+
"ui_loading_three_bar": "sys_loading_three_bar",
|
|
585
|
+
"ui_menu_button_base": "usr_menu_background",
|
|
586
|
+
"ui_cpnt_calendar_status_a": "usr_brand_primary",
|
|
587
|
+
"ui_cpnt_calendar_status_b": "sys_widget_grey_03",
|
|
588
|
+
"ui_cpnt_calendar_status_c": "sys_widget_grey_05",
|
|
589
|
+
"ui_menu_background_transparent": "sys_menu_background_transparent",
|
|
590
|
+
"ui_globalmenucontainer_background_transparent": "sys_container_background_04",
|
|
591
|
+
"ui_pagemenucontainer_background_transparent": "sys_container_background_04",
|
|
592
|
+
"ui_submenucontainer_background_transparent": "sys_container_background_04",
|
|
593
|
+
"ui_tabmenucontainer_background_transparent": "sys_container_background_04",
|
|
594
|
+
"ui_contentscontainer01_background_transparent": "sys_container_background_04",
|
|
595
|
+
"ui_contentscontainer02_background_transparent": "sys_container_background_04",
|
|
596
|
+
"ui_toppagemenucontainer_background_wt_m_transparent": "sys_container_background_04",
|
|
597
|
+
"ui_contentscontainer_background_wt_m_transparent": "sys_container_background_04",
|
|
598
|
+
"ui_menu_button_base_transparent": "sys_menu_button_base",
|
|
599
|
+
"ui_dimmed_02": "sys_background_dimmed_03",
|
|
600
|
+
"ui_cpnt_sheet_base_05": "sys_cpnt_sheet_base_03",
|
|
601
|
+
"ui_62": "sys_widget_black",
|
|
602
|
+
"ui_cpnt_calendar_date_hover": "sys_widget_grey_05",
|
|
603
|
+
"ui_cpnt_calendar_date_pressed": "sys_widget_grey_04",
|
|
604
|
+
"ui_cpnt_imageview_dimmed_gradient_01": "sys_dimmed_gradient_01",
|
|
605
|
+
"ui_cpnt_imageview_dimmed_gradient_02": "sys_dimmed_gradient_02",
|
|
606
|
+
"ui_cpnt_calendar_base": "sys_component_base_white_opacity00",
|
|
607
|
+
"ui_cpnt_calendar_border": "sys_border_line_01",
|
|
608
|
+
"ui_cpnt_calendar_label_base_schedules": "sys_component_base_11",
|
|
609
|
+
"ui_cpnt_calendar_label_base_expired_schedules": "sys_component_base_01",
|
|
610
|
+
"ui_cpnt_calendar_label_border_default": "sys_border_line_white",
|
|
611
|
+
"ui_cpnt_calendar_label_border_schedules": "sys_border_line_13",
|
|
612
|
+
"ui_cpnt_calendar_label_border_expired_schedules": "sys_border_line_02",
|
|
613
|
+
"ui_cpnt_calendar_real_time_line": "sys_border_line_04",
|
|
614
|
+
"ui_cpnt_calendar_date_selected": "sys_component_base_blue",
|
|
615
|
+
"ui_pagination_base_area": "white/opacity00",
|
|
616
|
+
"ui_cpnt_calendar_label_base_standby_selected": "sys_component_base_12",
|
|
617
|
+
"ui_cpnt_calendar_label_border_standby": "sys_border_line_14",
|
|
618
|
+
"ui_cpnt_calendar_text_status_standby": "sys_widget_orange_01",
|
|
619
|
+
"ui_cpnt_calendar_label_base_booked_selected": "sys_component_base_13",
|
|
620
|
+
"ui_cpnt_calendar_label_border_booked": "sys_border_line_13",
|
|
621
|
+
"ui_cpnt_calendar_text_status_booked": "sys_widget_success_01",
|
|
622
|
+
"ui_cpnt_calendar_label_base_expired_selected": "sys_component_base_14",
|
|
623
|
+
"ui_cpnt_calendar_label_border_expired": "sys_border_line_02",
|
|
624
|
+
"ui_cpnt_calendar_text_status_expired": "sys_widget_grey_02",
|
|
625
|
+
"ui_cpnt_calendar_label_base_standby_default": "sys_component_base_15",
|
|
626
|
+
"ui_cpnt_calendar_label_base_booked_default": "sys_component_base_16",
|
|
627
|
+
"ui_cpnt_calendar_label_base_expired_default": "sys_component_base_17",
|
|
628
|
+
"ui_cpnt_calendar_badge_standby": "sys_widget_orange_01",
|
|
629
|
+
"ui_cpnt_calendar_badge_booked": "sys_widget_success_01",
|
|
630
|
+
"ui_cpnt_calendar_badge_expired": "sys_widget_grey_03",
|
|
631
|
+
"ui_cpnt_calendar_text_today": "sys_widget_red_01",
|
|
632
|
+
"ui_cpnt_textlabel_sys_warning": "sys_text_warning_01",
|
|
633
|
+
"ui_cpnt_lottiereactionbutton_base_default": "sys_component_base_18",
|
|
634
|
+
"ui_cpnt_sheet_base_06": "sys_cpnt_sheet_base_04",
|
|
635
|
+
"ui_cpnt_sheet_base_07": "sys_cpnt_sheet_base_05",
|
|
636
|
+
"ui_cpnt_sheet_base_08": "sys_cpnt_sheet_base_06",
|
|
637
|
+
"ui_cpnt_pagination_dot_01": "sys_cpnt_pagination_dot_01",
|
|
638
|
+
"ui_cpnt_pagination_dot_02": "sys_cpnt_pagination_dot_02",
|
|
639
|
+
"ui_cpnt_pagination_dot_border": "sys_border_line_02",
|
|
640
|
+
"ui_63": "sys_facebook",
|
|
641
|
+
"ui_64": "sys_text_white",
|
|
642
|
+
"ui_cpnt_sheet_border_04": "sys_border_line_02",
|
|
643
|
+
"ui_cpnt_button_fill_base_01": "sys_component_base_05",
|
|
644
|
+
"ui_cpnt_button_fill_base_hangup": "sys_component_base_red",
|
|
645
|
+
"ui_cpnt_refund_text_status_issued": "sys_widget_orange_01",
|
|
646
|
+
"ui_cpnt_refund_text_status_refunded": "sys_widget_success_01",
|
|
647
|
+
"ui_cpnt_divider_white_01": "sys_component_base_19",
|
|
648
|
+
"ui_cpnt_timer_base_01": "sys_component_base_23",
|
|
649
|
+
"ui_cpnt_timer_base_timeup": "sys_component_base_21",
|
|
650
|
+
"ui_66": "sys_component_base_black_opacity50",
|
|
651
|
+
"ui_67": "sys_component_base_white_opacity50",
|
|
652
|
+
"ui_cpnt_videoplayer_gradient_3": "sys_component_base_black_opacity50",
|
|
653
|
+
"ui_68": "sys_component_base_22",
|
|
654
|
+
"ui_69": "sys_component_base_darkgreen",
|
|
655
|
+
"ui_cpnt_divider_white_02": "sys_component_base_20",
|
|
656
|
+
"ui_cpnt_list_chatbubble_base_brand_primary": "usr_brand_primary",
|
|
657
|
+
"ui_cpnt_list_chatbubble_base_grey": "sys_component_base_01",
|
|
658
|
+
"ui_cpnt_list_chatbubble_base_translucent_white": "sys_component_base_20",
|
|
659
|
+
"ui_cpnt_list_chatbubble_base_translucent_black": "sys_component_base_24",
|
|
660
|
+
"ui_avatar_border_translucent_white": "sys_border_line_15",
|
|
661
|
+
"ui_avatar_border_translucent_black": "sys_border_line_16",
|
|
662
|
+
"ui_cpnt_textfield_base_hover": "sys_component_base_hover_02",
|
|
663
|
+
"ui_cpnt_textfield_base_pressed": "sys_component_base_pressed_01",
|
|
664
|
+
"ui_cpnt_button_secondary_on_base_hover": "sys_component_on_base_03",
|
|
665
|
+
"ui_cpnt_button_secondary_on_base_pressed": "sys_component_on_base_02",
|
|
666
|
+
"ui_cpnt_select_base_hover": "sys_component_base_hover_02",
|
|
667
|
+
"ui_cpnt_select_base_pressed": "sys_component_base_pressed_01",
|
|
668
|
+
"ui_cpnt_dropdown_base_hover": "sys_component_base_hover_02",
|
|
669
|
+
"ui_cpnt_dropdown_base_pressed": "sys_component_base_pressed_01",
|
|
670
|
+
"ui_cpnt_sheet_base_09": "sys_component_base_orange",
|
|
671
|
+
"ui_wizard_pagemenucontainer_background": "sys_container_background_04",
|
|
672
|
+
"ui_stepcontainer_background": "sys_container_background_04",
|
|
673
|
+
"ui_wizard_contentscontainer01_background": "sys_container_background_01",
|
|
674
|
+
"ui_wizard_contentscontainer02_background": "sys_container_background_01",
|
|
675
|
+
"ui_70": "sys_component_base_black",
|
|
676
|
+
"ui_cpnt_button_primary_variation_base_enabled": "sys_component_base_white",
|
|
677
|
+
"ui_cpnt_button_text_secondary_variation_disabled": "sys_widget_white_02",
|
|
678
|
+
"ui_cpnt_button_icon_secondary_variation_disabled": "sys_widget_white_02",
|
|
679
|
+
"ui_cpnt_button_secondary_variation_base_default": "sys_component_base_25",
|
|
680
|
+
"ui_cpnt_button_secondary_variation_base_hover": "sys_component_base_hover_03",
|
|
681
|
+
"ui_cpnt_button_secondary_variation_base_pressed": "sys_component_base_pressed_02",
|
|
682
|
+
"ui_editor_base_pages": "sys_editor_base_pages",
|
|
683
|
+
"ui_editor_base_papp": "sys_editor_base_papp",
|
|
684
|
+
"ui_container_scroll": "sys_component_base_03",
|
|
685
|
+
"ui_pages_section_dimmed": "sys_background_dimmed_20",
|
|
686
|
+
"ui_71": "sys_component_base_white",
|
|
687
|
+
"ui_cpnt_textlabel_sys_black": "sys_text_black",
|
|
688
|
+
"ui_cpnt_sheet_base_10": "usr_brand_primary",
|
|
689
|
+
"ui_cpnt_sheet_base_11": "sys_component_base_white_opacity00",
|
|
690
|
+
"ui_72": "sys_component_base_26",
|
|
691
|
+
"ui_73": "sys_component_base_27",
|
|
692
|
+
"ui_cpnt_sidebar_listitem_base_hover": "sys_component_base_04",
|
|
693
|
+
"ui_avatar_border_brandprimary": "usr_brand_primary",
|
|
694
|
+
"ui_avatar_border": "sys_border_line_09",
|
|
695
|
+
"ui_editor_rightside_title_tabbar_base": "sys_component_base_02",
|
|
696
|
+
"ui_editor_preview_base": "sys_component_base_29",
|
|
697
|
+
"ui_editor_preview_divice_area_border": "sys_border_line_02",
|
|
698
|
+
"ui_editor_preview_background": "sys_component_base_06",
|
|
699
|
+
"ui_editor_leftside_base": "sys_component_base_04",
|
|
700
|
+
"ui_cpnt_sidebar_label_text": "sys_widget_sidebar_label_text",
|
|
701
|
+
"ui_cpnt_dropdown_base_hover_darktheme": "sys_component_base_hover_darktheme",
|
|
702
|
+
"ui_cpnt_dropdown_base_pressed_darktheme": "sys_component_base_pressed_darktheme",
|
|
703
|
+
"ui_cpnt_dropdown_base_hover_white": "sys_component_base_hover_white",
|
|
704
|
+
"ui_cpnt_dropdown_base_pressed_white": "sys_component_base_pressed_white",
|
|
705
|
+
"ui_cpnt_textfield_base_hover_darktheme": "sys_component_base_hover_darktheme",
|
|
706
|
+
"ui_cpnt_textfield_base_pressed_darktheme": "sys_component_base_pressed_darktheme",
|
|
707
|
+
"ui_cpnt_select_base_hover_darktheme": "sys_component_base_hover_darktheme",
|
|
708
|
+
"ui_cpnt_select_base_pressed_darktheme": "sys_component_base_pressed_darktheme",
|
|
709
|
+
"ui_cpnt_textfield_base_hover_transparent": "sys_component_base_hover_transparent",
|
|
710
|
+
"ui_cpnt_textfield_base_pressed_transparent": "sys_component_base_pressed_transparent",
|
|
711
|
+
"ui_cpnt_reactionbutton_base_02": "sys_component_base_03",
|
|
712
|
+
"ui_create_ch_step_prev": "sys_text_white_opacity_01",
|
|
713
|
+
"ui_editor_preview_editing": "sys_widget_status_active_01",
|
|
714
|
+
"ui_cpnt_icon_sys_black": "sys_widget_black",
|
|
715
|
+
"ui_cpnt_textbutton_white_variation_base_hover": "sys_component_base_hover_04",
|
|
716
|
+
"ui_cpnt_textbutton_white_variation_base_pressed": "sys_component_base_pressed_03",
|
|
717
|
+
"ui_74": "sys_component_base_darktheme_02",
|
|
718
|
+
"ui_cpnt_help_window": "sys_widget_primary_01",
|
|
719
|
+
"ui_cpnt_tutorialmodal_sidetab_hover": "sys_component_base_hover_01",
|
|
720
|
+
"ui_cpnt_tutorialmodal_sidetab_pressed": "sys_component_base_01",
|
|
721
|
+
"ui_cpnt_sheet_base_12": "sys_cpnt_sheet_base_07",
|
|
722
|
+
"ui_cpnt_sheet_base_13": "sys_cpnt_sheet_base_08",
|
|
723
|
+
"ui_cpnt_sheet_border_05": "sys_border_line_12",
|
|
724
|
+
"ui_cpnt_sheet_border_06": "sys_border_line_13",
|
|
725
|
+
"ui_75": "sys_widget_grey_darktheme_03",
|
|
726
|
+
"ui_cpnt_sheet_border_07": "sys_border_line_04",
|
|
727
|
+
"ui_cpnt_sheet_base_14": "sys_cpnt_sheet_base_09",
|
|
728
|
+
"ui_cpnt_sheet_base_15": "sys_cpnt_sheet_base_10",
|
|
729
|
+
"ui_cpnt_tutorialmodal_sidetab_default": "sys_component_base_white_opacity00",
|
|
730
|
+
"ui_cpnt_tutorialmodal_info_base": "sys_component_base_06",
|
|
731
|
+
"ui_domain_record_card_status_1": "sys_component_base_green",
|
|
732
|
+
"ui_domain_record_card_status_2": "sys_component_base_orange",
|
|
733
|
+
"ui_domain_record_card_status_3": "sys_component_base_red",
|
|
734
|
+
"ui_domain_record_card_status_4": "sys_component_base_grey",
|
|
735
|
+
"ui_cpnt_button_fill_base_tutorialmodal": "sys_component_base_black_opacity30",
|
|
736
|
+
"ui_cpnt_toolbar_base": "sys_component_base_white_opacity00",
|
|
737
|
+
"ui_76": "sys_border_line_darktheme_07",
|
|
738
|
+
"ui_89": "sys_storyboard_group_base_grey01",
|
|
739
|
+
"ui_90": "sys_storyboard_group_base_blue01",
|
|
740
|
+
"ui_91": "sys_storyboard_group_base_red01",
|
|
741
|
+
"ui_92": "sys_storyboard_group_base_green01",
|
|
742
|
+
"ui_93": "sys_storyboard_card_base_blue01",
|
|
743
|
+
"ui_94": "sys_storyboard_card_base_red01",
|
|
744
|
+
"ui_95": "sys_storyboard_card_base_green01",
|
|
745
|
+
"ui_cpnt_icon_sys_brandsecondary_variant": "sys_brand_secondary_variant",
|
|
746
|
+
"ui_96": "sys_component_base_10",
|
|
747
|
+
"ui_97": "sys_component_base_black",
|
|
748
|
+
"ui_cpnt_button_tooltip_base": "sys_button_tooltip_base",
|
|
749
|
+
"ui_cpnt_textlabel_button_tooltip": "sys_text_button_tooltip",
|
|
750
|
+
"ui_cpnt_textlabel_step_prev": "sys_text_white_opacity_01",
|
|
751
|
+
"ui_membership_button_base": "sys_membership_button_base",
|
|
752
|
+
"ui_membership_item_membership_base": "sys_membership_item_membership_base",
|
|
753
|
+
"ui_membership_item_price_product_base": "sys_membership_item_price_product_base",
|
|
754
|
+
"ui_cpnt_sheet_base_16": "sys_component_base_30",
|
|
755
|
+
"ui_cpnt_sheet_base_17": "sys_component_base_31",
|
|
756
|
+
"ui_cpnt_sheet_base_18": "sys_component_base_32",
|
|
757
|
+
"ui_cpnt_sheet_base_19": "sys_component_base_33",
|
|
758
|
+
"ui_cpnt_badge_base_hot": "sys_component_base_34",
|
|
759
|
+
"ui_cpnt_badge_base_new": "sys_component_base_35",
|
|
760
|
+
"ui_cpnt_badge_base_sale": "sys_component_base_36",
|
|
761
|
+
"ui_cpnt_badge_base_timesale": "sys_component_base_37",
|
|
762
|
+
"ui_cpnt_badge_base_best": "sys_component_base_38"
|
|
763
|
+
}
|