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
package/dist/src/desktop/layout/LayoutWH/Containers/ContentsContainer/ContentsContainer.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../common';
|
|
3
3
|
export declare type ContentsContainerProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
content2?: JSX.Element;
|
|
@@ -8,8 +8,8 @@ export declare type ContentsContainerProps = {
|
|
|
8
8
|
areaColor?: string;
|
|
9
9
|
isLoadingContainer1?: boolean;
|
|
10
10
|
isLoadingContainer2?: boolean;
|
|
11
|
-
overrideContainer1ColorKey?:
|
|
12
|
-
overrideContainer2ColorKey?:
|
|
11
|
+
overrideContainer1ColorKey?: UiColors;
|
|
12
|
+
overrideContainer2ColorKey?: UiColors;
|
|
13
13
|
};
|
|
14
14
|
declare const ContentsContainer: ({ content1, content2, layoutType, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: ContentsContainerProps) => JSX.Element;
|
|
15
15
|
export default ContentsContainer;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WHAProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
containerColor?: string;
|
|
6
6
|
areaColor?: string;
|
|
7
7
|
isLoadingContainer1?: boolean;
|
|
8
|
-
overrideContainer1ColorKey?:
|
|
8
|
+
overrideContainer1ColorKey?: UiColors;
|
|
9
9
|
};
|
|
10
10
|
declare const WHA: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WHAProps) => JSX.Element;
|
|
11
11
|
export default WHA;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WHBProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
content2?: JSX.Element;
|
|
@@ -8,8 +8,8 @@ export declare type WHBProps = {
|
|
|
8
8
|
areaColor?: string;
|
|
9
9
|
isLoadingContainer1?: boolean;
|
|
10
10
|
isLoadingContainer2?: boolean;
|
|
11
|
-
overrideContainer1ColorKey?:
|
|
12
|
-
overrideContainer2ColorKey?:
|
|
11
|
+
overrideContainer1ColorKey?: UiColors;
|
|
12
|
+
overrideContainer2ColorKey?: UiColors;
|
|
13
13
|
};
|
|
14
14
|
declare const WHB: ({ content1, content2, layoutType, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: WHBProps) => JSX.Element;
|
|
15
15
|
export default WHB;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WHCProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
containerColor?: string;
|
|
6
6
|
areaColor?: string;
|
|
7
7
|
isLoadingContainer1?: boolean;
|
|
8
|
-
overrideContainer1ColorKey?:
|
|
8
|
+
overrideContainer1ColorKey?: UiColors;
|
|
9
9
|
};
|
|
10
10
|
declare const WHC: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WHCProps) => JSX.Element;
|
|
11
11
|
export default WHC;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WHDProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
content2?: JSX.Element;
|
|
@@ -8,8 +8,8 @@ export declare type WHDProps = {
|
|
|
8
8
|
areaColor?: string;
|
|
9
9
|
isLoadingContainer1?: boolean;
|
|
10
10
|
isLoadingContainer2?: boolean;
|
|
11
|
-
overrideContainer1ColorKey?:
|
|
12
|
-
overrideContainer2ColorKey?:
|
|
11
|
+
overrideContainer1ColorKey?: UiColors;
|
|
12
|
+
overrideContainer2ColorKey?: UiColors;
|
|
13
13
|
};
|
|
14
14
|
declare const WHD: ({ content1, content2, layoutType, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: WHDProps) => JSX.Element;
|
|
15
15
|
export default WHD;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WHEProps = {
|
|
4
4
|
layoutType: 'WHE_1' | 'WHE_2';
|
|
5
5
|
content1?: JSX.Element;
|
|
6
6
|
containerColor?: string;
|
|
7
7
|
areaColor?: string;
|
|
8
8
|
isLoadingContainer1?: boolean;
|
|
9
|
-
overrideContainer1ColorKey?:
|
|
9
|
+
overrideContainer1ColorKey?: UiColors;
|
|
10
10
|
};
|
|
11
11
|
declare const WHE: ({ layoutType, content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WHEProps) => JSX.Element;
|
|
12
12
|
export default WHE;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../common';
|
|
3
3
|
export declare type ContainersBoxProps = {
|
|
4
4
|
layoutType: 'WHA_1' | 'WHB_1' | 'WHB_2' | 'WHB_3' | 'WHB_4' | 'WHB_5' | 'WHB_6' | 'WHC_1' | 'WHD_1' | 'WHD_2' | 'WHD_3' | 'WHD_4' | 'WHD_5' | 'WHD_6' | 'WHE_1' | 'WHE_2';
|
|
5
5
|
tabMenuContent?: JSX.Element;
|
|
@@ -9,8 +9,8 @@ export declare type ContainersBoxProps = {
|
|
|
9
9
|
areaColor?: string;
|
|
10
10
|
isLoadingContainer1?: boolean;
|
|
11
11
|
isLoadingContainer2?: boolean;
|
|
12
|
-
overrideContainer1ColorKey?:
|
|
13
|
-
overrideContainer2ColorKey?:
|
|
12
|
+
overrideContainer1ColorKey?: UiColors;
|
|
13
|
+
overrideContainer2ColorKey?: UiColors;
|
|
14
14
|
};
|
|
15
15
|
declare const ContainersBox: ({ layoutType, tabMenuContent, content1, content2, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: ContainersBoxProps) => JSX.Element;
|
|
16
16
|
export default ContainersBox;
|
package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/ContentsContainer.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../common';
|
|
3
3
|
export declare type ContentsContainerProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
content2?: JSX.Element;
|
|
@@ -8,8 +8,8 @@ export declare type ContentsContainerProps = {
|
|
|
8
8
|
areaColor?: string;
|
|
9
9
|
isLoadingContainer1?: boolean;
|
|
10
10
|
isLoadingContainer2?: boolean;
|
|
11
|
-
overrideContainer1ColorKey?:
|
|
12
|
-
overrideContainer2ColorKey?:
|
|
11
|
+
overrideContainer1ColorKey?: UiColors;
|
|
12
|
+
overrideContainer2ColorKey?: UiColors;
|
|
13
13
|
};
|
|
14
14
|
declare const ContentsContainer: ({ content1, content2, layoutType, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: ContentsContainerProps) => JSX.Element;
|
|
15
15
|
export default ContentsContainer;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WSAProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
containerColor?: string;
|
|
6
6
|
areaColor?: string;
|
|
7
7
|
isLoadingContainer1?: boolean;
|
|
8
|
-
overrideContainer1ColorKey?:
|
|
8
|
+
overrideContainer1ColorKey?: UiColors;
|
|
9
9
|
};
|
|
10
10
|
declare const WSA: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WSAProps) => JSX.Element;
|
|
11
11
|
export default WSA;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WSBProps = {
|
|
4
4
|
layoutType: 'WSB_1' | 'WSB_2';
|
|
5
5
|
content1?: JSX.Element;
|
|
6
6
|
containerColor?: string;
|
|
7
7
|
areaColor?: string;
|
|
8
8
|
isLoadingContainer1?: boolean;
|
|
9
|
-
overrideContainer1ColorKey?:
|
|
9
|
+
overrideContainer1ColorKey?: UiColors;
|
|
10
10
|
};
|
|
11
11
|
declare const WSB: ({ layoutType, content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WSBProps) => JSX.Element;
|
|
12
12
|
export default WSB;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WSCProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
containerColor?: string;
|
|
6
6
|
areaColor?: string;
|
|
7
7
|
isLoadingContainer1?: boolean;
|
|
8
|
-
overrideContainer1ColorKey?:
|
|
8
|
+
overrideContainer1ColorKey?: UiColors;
|
|
9
9
|
};
|
|
10
10
|
declare const WSC: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WSCProps) => JSX.Element;
|
|
11
11
|
export default WSC;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WSDProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
containerColor?: string;
|
|
6
6
|
areaColor?: string;
|
|
7
7
|
isLoadingContainer1?: boolean;
|
|
8
|
-
overrideContainer1ColorKey?:
|
|
8
|
+
overrideContainer1ColorKey?: UiColors;
|
|
9
9
|
};
|
|
10
10
|
declare const WSD: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WSDProps) => JSX.Element;
|
|
11
11
|
export default WSD;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WSEProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
content2?: JSX.Element;
|
|
6
6
|
containerColor?: string;
|
|
7
7
|
areaColor?: string;
|
|
8
8
|
isLoadingContainer1?: boolean;
|
|
9
|
-
overrideContainer1ColorKey?:
|
|
9
|
+
overrideContainer1ColorKey?: UiColors;
|
|
10
10
|
};
|
|
11
11
|
declare const WSE: ({ content1, content2, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WSEProps) => JSX.Element;
|
|
12
12
|
export default WSE;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WSFProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
content2?: JSX.Element;
|
|
@@ -8,8 +8,8 @@ export declare type WSFProps = {
|
|
|
8
8
|
areaColor?: string;
|
|
9
9
|
isLoadingContainer1?: boolean;
|
|
10
10
|
isLoadingContainer2?: boolean;
|
|
11
|
-
overrideContainer1ColorKey?:
|
|
12
|
-
overrideContainer2ColorKey?:
|
|
11
|
+
overrideContainer1ColorKey?: UiColors;
|
|
12
|
+
overrideContainer2ColorKey?: UiColors;
|
|
13
13
|
};
|
|
14
14
|
declare const WSF: ({ content1, content2, layoutType, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: WSFProps) => JSX.Element;
|
|
15
15
|
export default WSF;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WSGProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
content2?: JSX.Element;
|
|
@@ -8,8 +8,8 @@ export declare type WSGProps = {
|
|
|
8
8
|
areaColor?: string;
|
|
9
9
|
isLoadingContainer1?: boolean;
|
|
10
10
|
isLoadingContainer2?: boolean;
|
|
11
|
-
overrideContainer1ColorKey?:
|
|
12
|
-
overrideContainer2ColorKey?:
|
|
11
|
+
overrideContainer1ColorKey?: UiColors;
|
|
12
|
+
overrideContainer2ColorKey?: UiColors;
|
|
13
13
|
};
|
|
14
14
|
declare const WSG: ({ content1, content2, layoutType, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: WSGProps) => JSX.Element;
|
|
15
15
|
export default WSG;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WSHProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
content2?: JSX.Element;
|
|
@@ -8,8 +8,8 @@ export declare type WSHProps = {
|
|
|
8
8
|
areaColor?: string;
|
|
9
9
|
isLoadingContainer1?: boolean;
|
|
10
10
|
isLoadingContainer2?: boolean;
|
|
11
|
-
overrideContainer1ColorKey?:
|
|
12
|
-
overrideContainer2ColorKey?:
|
|
11
|
+
overrideContainer1ColorKey?: UiColors;
|
|
12
|
+
overrideContainer2ColorKey?: UiColors;
|
|
13
13
|
};
|
|
14
14
|
declare const WSH: ({ content1, content2, layoutType, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: WSHProps) => JSX.Element;
|
|
15
15
|
export default WSH;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../common';
|
|
3
3
|
export declare type ContainersBoxProps = {
|
|
4
4
|
layoutType: 'WSA_1' | 'WSB_1' | 'WSB_2' | 'WSC_1' | 'WSD_1' | 'WSE_1' | 'WSF_1' | 'WSF_2' | 'WSF_3' | 'WSF_4' | 'WSF_5' | 'WSF_6' | 'WSF_7' | 'WSG_1' | 'WSG_2' | 'WSG_3' | 'WSG_4' | 'WSG_5' | 'WSH_1';
|
|
5
5
|
pageMenuContent?: JSX.Element;
|
|
@@ -11,8 +11,8 @@ export declare type ContainersBoxProps = {
|
|
|
11
11
|
areaColor?: string;
|
|
12
12
|
isLoadingContainer1?: boolean;
|
|
13
13
|
isLoadingContainer2?: boolean;
|
|
14
|
-
overrideContainer1ColorKey?:
|
|
15
|
-
overrideContainer2ColorKey?:
|
|
14
|
+
overrideContainer1ColorKey?: UiColors;
|
|
15
|
+
overrideContainer2ColorKey?: UiColors;
|
|
16
16
|
};
|
|
17
17
|
declare const ContainersBox: ({ layoutType, pageMenuContent, content1, content2, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: ContainersBoxProps) => JSX.Element;
|
|
18
18
|
export default ContainersBox;
|
package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/ContentsContainer.d.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { UiColors } from '../../../../../common';
|
|
2
2
|
import type { MutableRefObject } from 'react';
|
|
3
3
|
export declare type ContentsContainerProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
content2?: JSX.Element;
|
|
6
|
-
layoutType: 'WTA_1' | 'WTA_2' | 'WTA_3' | 'WTB_1' | 'WTC_1' | 'WTD_1' | 'WTD_2' | 'WTD_3' | 'WTD_4' | 'WTD_5' | 'WTD_6' | 'WTE_1' | 'WTF_1' | 'WTF_2' | 'WTF_3' | 'WTF_4' | 'WTF_5' | 'WTF_6' | 'WTG_1' | 'WTH_1' | 'WTH_2' | 'WTH_3' | 'WTI_1' | 'WTI_2' | 'WTJ_1' | 'WTK_1' | 'WTK_2' | 'WTK_3' | 'WTK_4' | 'WTL_1' | 'WTM_1' | 'WTM_2' | 'WTM_3' | 'WTN_1' | 'WTN_2' | 'WTN_3' | 'WTO_1' | 'WTP_1' | 'WTP_2' | 'WTQ_1' | 'WTS_1' | 'WTS_2' | 'WTT_1' | 'WTT_2' | 'WTU_1';
|
|
6
|
+
layoutType: 'WTA_1' | 'WTA_2' | 'WTA_3' | 'WTB_1' | 'WTC_1' | 'WTD_1' | 'WTD_2' | 'WTD_3' | 'WTD_4' | 'WTD_5' | 'WTD_6' | 'WTE_1' | 'WTF_1' | 'WTF_2' | 'WTF_3' | 'WTF_4' | 'WTF_5' | 'WTF_6' | 'WTG_1' | 'WTH_1' | 'WTH_2' | 'WTH_3' | 'WTI_1' | 'WTI_2' | 'WTJ_1' | 'WTK_1' | 'WTK_2' | 'WTK_3' | 'WTK_4' | 'WTL_1' | 'WTM_1' | 'WTM_2' | 'WTM_3' | 'WTN_1' | 'WTN_2' | 'WTN_3' | 'WTO_1' | 'WTP_1' | 'WTP_2' | 'WTQ_1' | 'WTS_1' | 'WTS_2' | 'WTT_1' | 'WTT_2' | 'WTU_1' | 'WTV_1';
|
|
7
7
|
containerColor?: string;
|
|
8
8
|
areaColor?: string;
|
|
9
9
|
isLoadingContainer1?: boolean;
|
|
10
10
|
isLoadingContainer2?: boolean;
|
|
11
|
-
overrideContainer1ColorKey?:
|
|
12
|
-
overrideContainer2ColorKey?:
|
|
11
|
+
overrideContainer1ColorKey?: UiColors;
|
|
12
|
+
overrideContainer2ColorKey?: UiColors;
|
|
13
13
|
container1Ref?: MutableRefObject<HTMLDivElement | null>;
|
|
14
14
|
};
|
|
15
15
|
declare const ContentsContainer: ({ content1, content2, layoutType, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey, container1Ref }: ContentsContainerProps) => JSX.Element;
|
|
@@ -49,7 +49,8 @@ var ContentsContainer = function (_a) {
|
|
|
49
49
|
WTS_2: ((0, jsx_runtime_1.jsx)(variation_1.WTS, { layoutType: "WTS_2", content1: content1, content2: content2, containerColor: containerColor, areaColor: areaColor, container1Ref: container1Ref, isLoadingContainer1: isLoadingContainer1, overrideContainer1ColorKey: overrideContainer1ColorKey }, void 0)),
|
|
50
50
|
WTT_1: ((0, jsx_runtime_1.jsx)(variation_1.WTT, { layoutType: "WTT_1", content1: content1, content2: content2, containerColor: containerColor, areaColor: areaColor, container1Ref: container1Ref, isLoadingContainer1: isLoadingContainer1, overrideContainer1ColorKey: overrideContainer1ColorKey }, void 0)),
|
|
51
51
|
WTT_2: ((0, jsx_runtime_1.jsx)(variation_1.WTT, { layoutType: "WTT_2", content1: content1, content2: content2, containerColor: containerColor, areaColor: areaColor, container1Ref: container1Ref, isLoadingContainer1: isLoadingContainer1, overrideContainer1ColorKey: overrideContainer1ColorKey }, void 0)),
|
|
52
|
-
WTU_1: ((0, jsx_runtime_1.jsx)(variation_1.WTU, { layoutType: "WTU_1", content1: content1, content2: content2, containerColor: containerColor, areaColor: areaColor, isLoadingContainer1: isLoadingContainer1, isLoadingContainer2: isLoadingContainer2, overrideContainer1ColorKey: overrideContainer1ColorKey, overrideContainer2ColorKey: overrideContainer2ColorKey }, void 0))
|
|
52
|
+
WTU_1: ((0, jsx_runtime_1.jsx)(variation_1.WTU, { layoutType: "WTU_1", content1: content1, content2: content2, containerColor: containerColor, areaColor: areaColor, isLoadingContainer1: isLoadingContainer1, isLoadingContainer2: isLoadingContainer2, overrideContainer1ColorKey: overrideContainer1ColorKey, overrideContainer2ColorKey: overrideContainer2ColorKey }, void 0)),
|
|
53
|
+
WTV_1: ((0, jsx_runtime_1.jsx)(variation_1.WTV, { layoutType: "WTV_1", content1: content1, content2: content2, containerColor: containerColor, areaColor: areaColor, isLoadingContainer1: isLoadingContainer1, isLoadingContainer2: isLoadingContainer2, overrideContainer1ColorKey: overrideContainer1ColorKey, overrideContainer2ColorKey: overrideContainer2ColorKey }, void 0))
|
|
53
54
|
}[layoutType] }, void 0));
|
|
54
55
|
};
|
|
55
56
|
exports.default = ContentsContainer;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WTAProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
layoutType: 'WTA_1' | 'WTA_2' | 'WTA_3';
|
|
6
6
|
containerColor?: string;
|
|
7
7
|
areaColor?: string;
|
|
8
8
|
isLoadingContainer1?: boolean;
|
|
9
|
-
overrideContainer1ColorKey?:
|
|
9
|
+
overrideContainer1ColorKey?: UiColors;
|
|
10
10
|
};
|
|
11
11
|
declare const WTA: ({ content1, layoutType, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WTAProps) => JSX.Element;
|
|
12
12
|
export default WTA;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WTBProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
containerColor?: string;
|
|
6
6
|
areaColor?: string;
|
|
7
7
|
isLoadingContainer1?: boolean;
|
|
8
|
-
overrideContainer1ColorKey?:
|
|
8
|
+
overrideContainer1ColorKey?: UiColors;
|
|
9
9
|
};
|
|
10
10
|
declare const WTB: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WTBProps) => JSX.Element;
|
|
11
11
|
export default WTB;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WTCProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
containerColor?: string;
|
|
6
6
|
areaColor?: string;
|
|
7
7
|
isLoadingContainer1?: boolean;
|
|
8
|
-
overrideContainer1ColorKey?:
|
|
8
|
+
overrideContainer1ColorKey?: UiColors;
|
|
9
9
|
};
|
|
10
10
|
declare const WTC: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WTCProps) => JSX.Element;
|
|
11
11
|
export default WTC;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WTDProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
content2?: JSX.Element;
|
|
@@ -8,8 +8,8 @@ export declare type WTDProps = {
|
|
|
8
8
|
areaColor?: string;
|
|
9
9
|
isLoadingContainer1?: boolean;
|
|
10
10
|
isLoadingContainer2?: boolean;
|
|
11
|
-
overrideContainer1ColorKey?:
|
|
12
|
-
overrideContainer2ColorKey?:
|
|
11
|
+
overrideContainer1ColorKey?: UiColors;
|
|
12
|
+
overrideContainer2ColorKey?: UiColors;
|
|
13
13
|
};
|
|
14
14
|
declare const WTD: ({ content1, content2, layoutType, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: WTDProps) => JSX.Element;
|
|
15
15
|
export default WTD;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WTEProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
containerColor?: string;
|
|
6
6
|
areaColor?: string;
|
|
7
7
|
isLoadingContainer1?: boolean;
|
|
8
|
-
overrideContainer1ColorKey?:
|
|
8
|
+
overrideContainer1ColorKey?: UiColors;
|
|
9
9
|
};
|
|
10
10
|
declare const WTE: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WTEProps) => JSX.Element;
|
|
11
11
|
export default WTE;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WTFProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
content2?: JSX.Element;
|
|
@@ -8,8 +8,8 @@ export declare type WTFProps = {
|
|
|
8
8
|
areaColor?: string;
|
|
9
9
|
isLoadingContainer1?: boolean;
|
|
10
10
|
isLoadingContainer2?: boolean;
|
|
11
|
-
overrideContainer1ColorKey?:
|
|
12
|
-
overrideContainer2ColorKey?:
|
|
11
|
+
overrideContainer1ColorKey?: UiColors;
|
|
12
|
+
overrideContainer2ColorKey?: UiColors;
|
|
13
13
|
};
|
|
14
14
|
declare const WTF: ({ content1, content2, layoutType, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: WTFProps) => JSX.Element;
|
|
15
15
|
export default WTF;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WTGProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
containerColor?: string;
|
|
6
6
|
areaColor?: string;
|
|
7
7
|
isLoadingContainer1?: boolean;
|
|
8
|
-
overrideContainer1ColorKey?:
|
|
8
|
+
overrideContainer1ColorKey?: UiColors;
|
|
9
9
|
};
|
|
10
10
|
declare const WTG: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WTGProps) => JSX.Element;
|
|
11
11
|
export default WTG;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WTHProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
layoutType: 'WTH_1' | 'WTH_2' | 'WTH_3';
|
|
6
6
|
containerColor?: string;
|
|
7
7
|
areaColor?: string;
|
|
8
8
|
isLoadingContainer1?: boolean;
|
|
9
|
-
overrideContainer1ColorKey?:
|
|
9
|
+
overrideContainer1ColorKey?: UiColors;
|
|
10
10
|
};
|
|
11
11
|
declare const WTH: ({ content1, layoutType, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WTHProps) => JSX.Element;
|
|
12
12
|
export default WTH;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WTIProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
layoutType: 'WTI_1' | 'WTI_2';
|
|
6
6
|
containerColor?: string;
|
|
7
7
|
areaColor?: string;
|
|
8
8
|
isLoadingContainer1?: boolean;
|
|
9
|
-
overrideContainer1ColorKey?:
|
|
9
|
+
overrideContainer1ColorKey?: UiColors;
|
|
10
10
|
};
|
|
11
11
|
declare const WTI: ({ content1, containerColor, areaColor, layoutType, isLoadingContainer1, overrideContainer1ColorKey }: WTIProps) => JSX.Element;
|
|
12
12
|
export default WTI;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WTJProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
content2?: JSX.Element;
|
|
@@ -8,8 +8,8 @@ export declare type WTJProps = {
|
|
|
8
8
|
areaColor?: string;
|
|
9
9
|
isLoadingContainer1?: boolean;
|
|
10
10
|
isLoadingContainer2?: boolean;
|
|
11
|
-
overrideContainer1ColorKey?:
|
|
12
|
-
overrideContainer2ColorKey?:
|
|
11
|
+
overrideContainer1ColorKey?: UiColors;
|
|
12
|
+
overrideContainer2ColorKey?: UiColors;
|
|
13
13
|
};
|
|
14
14
|
declare const WTJ: ({ content1, content2, layoutType, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: WTJProps) => JSX.Element;
|
|
15
15
|
export default WTJ;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { UiColors } from '../../../../../../common';
|
|
2
2
|
import type { MutableRefObject } from 'react';
|
|
3
3
|
export declare type WTKProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
@@ -6,7 +6,7 @@ export declare type WTKProps = {
|
|
|
6
6
|
containerColor?: string;
|
|
7
7
|
areaColor?: string;
|
|
8
8
|
isLoadingContainer1?: boolean;
|
|
9
|
-
overrideContainer1ColorKey?:
|
|
9
|
+
overrideContainer1ColorKey?: UiColors;
|
|
10
10
|
container1Ref?: MutableRefObject<HTMLDivElement | null>;
|
|
11
11
|
};
|
|
12
12
|
declare const WTK: ({ content1, layoutType, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey, container1Ref }: WTKProps) => JSX.Element;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WTLProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
containerColor?: string;
|
|
6
6
|
areaColor?: string;
|
|
7
7
|
isLoadingContainer1?: boolean;
|
|
8
|
-
overrideContainer1ColorKey?:
|
|
8
|
+
overrideContainer1ColorKey?: UiColors;
|
|
9
9
|
};
|
|
10
10
|
declare const WTL: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WTLProps) => JSX.Element;
|
|
11
11
|
export default WTL;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WTMProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
layoutType: 'WTM_1' | 'WTM_2' | 'WTM_3';
|
|
6
6
|
containerColor?: string;
|
|
7
7
|
areaColor?: string;
|
|
8
8
|
isLoadingContainer1?: boolean;
|
|
9
|
-
overrideContainer1ColorKey?:
|
|
9
|
+
overrideContainer1ColorKey?: UiColors;
|
|
10
10
|
};
|
|
11
11
|
declare const WTM: ({ content1, layoutType, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: WTMProps) => JSX.Element;
|
|
12
12
|
export default WTM;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { UiColors } from '../../../../../../common';
|
|
2
2
|
import type { MutableRefObject } from 'react';
|
|
3
3
|
export declare type WTNProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
@@ -6,7 +6,7 @@ export declare type WTNProps = {
|
|
|
6
6
|
containerColor?: string;
|
|
7
7
|
areaColor?: string;
|
|
8
8
|
isLoadingContainer1?: boolean;
|
|
9
|
-
overrideContainer1ColorKey?:
|
|
9
|
+
overrideContainer1ColorKey?: UiColors;
|
|
10
10
|
container1Ref?: MutableRefObject<HTMLDivElement | null>;
|
|
11
11
|
};
|
|
12
12
|
declare const WTN: ({ content1, containerColor, areaColor, layoutType, isLoadingContainer1, overrideContainer1ColorKey, container1Ref }: WTNProps) => JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { UiColors } from '../../../../../../common';
|
|
2
2
|
import type { MutableRefObject } from 'react';
|
|
3
3
|
export declare type WTOProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
@@ -6,7 +6,7 @@ export declare type WTOProps = {
|
|
|
6
6
|
containerColor?: string;
|
|
7
7
|
areaColor?: string;
|
|
8
8
|
isLoadingContainer1?: boolean;
|
|
9
|
-
overrideContainer1ColorKey?:
|
|
9
|
+
overrideContainer1ColorKey?: UiColors;
|
|
10
10
|
container1Ref?: MutableRefObject<HTMLDivElement | null>;
|
|
11
11
|
};
|
|
12
12
|
declare const WTO: ({ content1, layoutType, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey, container1Ref }: WTOProps) => JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { UiColors } from '../../../../../../common';
|
|
2
2
|
import type { MutableRefObject } from 'react';
|
|
3
3
|
export declare type WTPProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
@@ -6,7 +6,7 @@ export declare type WTPProps = {
|
|
|
6
6
|
containerColor?: string;
|
|
7
7
|
areaColor?: string;
|
|
8
8
|
isLoadingContainer1?: boolean;
|
|
9
|
-
overrideContainer1ColorKey?:
|
|
9
|
+
overrideContainer1ColorKey?: UiColors;
|
|
10
10
|
container1Ref?: MutableRefObject<HTMLDivElement | null>;
|
|
11
11
|
};
|
|
12
12
|
declare const WTP: ({ content1, layoutType, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey, container1Ref }: WTPProps) => JSX.Element;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type WTQProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
content2?: JSX.Element;
|
|
@@ -8,8 +8,8 @@ export declare type WTQProps = {
|
|
|
8
8
|
areaColor?: string;
|
|
9
9
|
isLoadingContainer1?: boolean;
|
|
10
10
|
isLoadingContainer2?: boolean;
|
|
11
|
-
overrideContainer1ColorKey?:
|
|
12
|
-
overrideContainer2ColorKey?:
|
|
11
|
+
overrideContainer1ColorKey?: UiColors;
|
|
12
|
+
overrideContainer2ColorKey?: UiColors;
|
|
13
13
|
};
|
|
14
14
|
declare const WTQ: ({ content1, content2, layoutType, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: WTQProps) => JSX.Element;
|
|
15
15
|
export default WTQ;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { UiColors } from '../../../../../../common';
|
|
2
2
|
import type { MutableRefObject } from 'react';
|
|
3
3
|
export declare type WTSProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
@@ -7,7 +7,7 @@ export declare type WTSProps = {
|
|
|
7
7
|
containerColor?: string;
|
|
8
8
|
areaColor?: string;
|
|
9
9
|
isLoadingContainer1?: boolean;
|
|
10
|
-
overrideContainer1ColorKey?:
|
|
10
|
+
overrideContainer1ColorKey?: UiColors;
|
|
11
11
|
container1Ref?: MutableRefObject<HTMLDivElement | null>;
|
|
12
12
|
};
|
|
13
13
|
declare const WTS: ({ content1, content2, containerColor, areaColor, layoutType, isLoadingContainer1, overrideContainer1ColorKey, container1Ref }: WTSProps) => JSX.Element;
|