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
|
@@ -50,7 +50,7 @@ var overrideStyleContainer2 = (0, styled_components_1.css)(templateObject_2 || (
|
|
|
50
50
|
return overrideContainer2ColorKey && theme[overrideContainer2ColorKey];
|
|
51
51
|
});
|
|
52
52
|
var S_Box = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n display: flex;\n flex-direction: column;\n height: 100%;\n"], ["\n display: flex;\n flex-direction: column;\n height: 100%;\n"])));
|
|
53
|
-
var S_ContentsContainer1 = styled_components_1.default.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n background-color: ", ";\n
|
|
53
|
+
var S_ContentsContainer1 = styled_components_1.default.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n background-color: ", ";\n\n ", ";\n ", ";\n\n ", "\n"], ["\n background-color: ", ";\n\n ", ";\n ", ";\n\n ", "\n"])), function (_a) {
|
|
54
54
|
var theme = _a.theme;
|
|
55
55
|
return theme.ui_m_contentscontainer01_background;
|
|
56
56
|
}, function (_a) {
|
|
@@ -63,18 +63,18 @@ var S_ContentsContainer1 = styled_components_1.default.div(templateObject_4 || (
|
|
|
63
63
|
var containerColor = _a.containerColor;
|
|
64
64
|
return "background-color: " + containerColor;
|
|
65
65
|
}, overrideStyleContainer1);
|
|
66
|
-
var S_ContentsContainer2 = styled_components_1.default.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n background-color: ", ";\n flex: 1;\n height: 100%;\n
|
|
66
|
+
var S_ContentsContainer2 = styled_components_1.default.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n background-color: ", ";\n flex: 1;\n height: 100%;\n overflow-x: hidden;\n overflow-y: auto;\n ", ";\n\n ", "\n"], ["\n background-color: ", ";\n flex: 1;\n height: 100%;\n overflow-x: hidden;\n overflow-y: auto;\n ", ";\n\n ", "\n"])), function (_a) {
|
|
67
67
|
var theme = _a.theme;
|
|
68
68
|
return theme.ui_m_contentscontainer02_background;
|
|
69
69
|
}, function (_a) {
|
|
70
70
|
var containerColor = _a.containerColor;
|
|
71
71
|
return "background-color: " + containerColor;
|
|
72
72
|
}, overrideStyleContainer2);
|
|
73
|
-
var S_ContentsArea1 = styled_components_1.default.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n height: 100%;\n
|
|
73
|
+
var S_ContentsArea1 = styled_components_1.default.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n height: 100%;\n\n ", ";\n"], ["\n height: 100%;\n\n ", ";\n"])), function (_a) {
|
|
74
74
|
var areaColor = _a.areaColor;
|
|
75
75
|
return "background-color: " + areaColor;
|
|
76
76
|
});
|
|
77
|
-
var S_ContentsArea2 = styled_components_1.default.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n
|
|
77
|
+
var S_ContentsArea2 = styled_components_1.default.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n padding-bottom: 88px;\n ", ";\n"], ["\n padding-bottom: 88px;\n ", ";\n"])), function (_a) {
|
|
78
78
|
var areaColor = _a.areaColor;
|
|
79
79
|
return "background-color: " + areaColor;
|
|
80
80
|
});
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type MFCProps = {
|
|
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 MFC: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: MFCProps) => JSX.Element;
|
|
11
11
|
export default MFC;
|
|
@@ -45,14 +45,14 @@ var overrideStyleContainer1 = (0, styled_components_1.css)(templateObject_1 || (
|
|
|
45
45
|
var theme = _a.theme, overrideContainer1ColorKey = _a.overrideContainer1ColorKey;
|
|
46
46
|
return overrideContainer1ColorKey && theme[overrideContainer1ColorKey];
|
|
47
47
|
});
|
|
48
|
-
var S_ContentsContainer = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n flex: 1;\n height: 100%;\n
|
|
48
|
+
var S_ContentsContainer = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n flex: 1;\n height: 100%;\n ", ";\n\n ", "\n"], ["\n background-color: ", ";\n flex: 1;\n height: 100%;\n ", ";\n\n ", "\n"])), function (_a) {
|
|
49
49
|
var theme = _a.theme;
|
|
50
50
|
return theme.ui_m_contentscontainer01_background;
|
|
51
51
|
}, function (_a) {
|
|
52
52
|
var containerColor = _a.containerColor;
|
|
53
53
|
return "background-color: " + containerColor;
|
|
54
54
|
}, overrideStyleContainer1);
|
|
55
|
-
var S_ContentsArea = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n height: 100%;\n
|
|
55
|
+
var S_ContentsArea = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n height: 100%;\n ", ";\n"], ["\n height: 100%;\n ", ";\n"])), function (_a) {
|
|
56
56
|
var areaColor = _a.areaColor;
|
|
57
57
|
return "background-color: " + areaColor;
|
|
58
58
|
});
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type MFDProps = {
|
|
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 MFD: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: MFDProps) => JSX.Element;
|
|
11
11
|
export default MFD;
|
|
@@ -45,14 +45,14 @@ var overrideStyleContainer1 = (0, styled_components_1.css)(templateObject_1 || (
|
|
|
45
45
|
var theme = _a.theme, overrideContainer1ColorKey = _a.overrideContainer1ColorKey;
|
|
46
46
|
return overrideContainer1ColorKey && theme[overrideContainer1ColorKey];
|
|
47
47
|
});
|
|
48
|
-
var S_ContentsContainer = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n flex: 1;\n height: 100%;\n
|
|
48
|
+
var S_ContentsContainer = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n flex: 1;\n height: 100%;\n\n ", ";\n\n ", "\n"], ["\n background-color: ", ";\n flex: 1;\n height: 100%;\n\n ", ";\n\n ", "\n"])), function (_a) {
|
|
49
49
|
var theme = _a.theme;
|
|
50
50
|
return theme.ui_m_contentscontainer01_background;
|
|
51
51
|
}, function (_a) {
|
|
52
52
|
var containerColor = _a.containerColor;
|
|
53
53
|
return "background-color: " + containerColor;
|
|
54
54
|
}, overrideStyleContainer1);
|
|
55
|
-
var S_ContentsArea = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n height: 100%;\n
|
|
55
|
+
var S_ContentsArea = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n height: 100%;\n\n ", ";\n"], ["\n height: 100%;\n\n ", ";\n"])), function (_a) {
|
|
56
56
|
var areaColor = _a.areaColor;
|
|
57
57
|
return "background-color: " + areaColor;
|
|
58
58
|
});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type MFEProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
content2?: JSX.Element;
|
|
@@ -8,8 +8,8 @@ export declare type MFEProps = {
|
|
|
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 MFE: ({ content1, content2, layoutType, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: MFEProps) => JSX.Element;
|
|
15
15
|
export default MFE;
|
|
@@ -50,7 +50,7 @@ var overrideStyleContainer2 = (0, styled_components_1.css)(templateObject_2 || (
|
|
|
50
50
|
return overrideContainer2ColorKey && theme[overrideContainer2ColorKey];
|
|
51
51
|
});
|
|
52
52
|
var S_Box = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n display: flex;\n flex-direction: column;\n height: 100%;\n"], ["\n display: flex;\n flex-direction: column;\n height: 100%;\n"])));
|
|
53
|
-
var S_ContentsContainer1 = styled_components_1.default.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n background-color: ", ";\n
|
|
53
|
+
var S_ContentsContainer1 = styled_components_1.default.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n background-color: ", ";\n\n ", ";\n ", ";\n\n ", "\n"], ["\n background-color: ", ";\n\n ", ";\n ", ";\n\n ", "\n"])), function (_a) {
|
|
54
54
|
var theme = _a.theme;
|
|
55
55
|
return theme.ui_m_contentscontainer01_background;
|
|
56
56
|
}, function (_a) {
|
|
@@ -63,18 +63,18 @@ var S_ContentsContainer1 = styled_components_1.default.div(templateObject_4 || (
|
|
|
63
63
|
var containerColor = _a.containerColor;
|
|
64
64
|
return "background-color: " + containerColor;
|
|
65
65
|
}, overrideStyleContainer1);
|
|
66
|
-
var S_ContentsContainer2 = styled_components_1.default.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n background-color: ", ";\n flex: 1;\n height: 100%;\n
|
|
66
|
+
var S_ContentsContainer2 = styled_components_1.default.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n background-color: ", ";\n flex: 1;\n height: 100%;\n\n ", ";\n\n ", "\n"], ["\n background-color: ", ";\n flex: 1;\n height: 100%;\n\n ", ";\n\n ", "\n"])), function (_a) {
|
|
67
67
|
var theme = _a.theme;
|
|
68
68
|
return theme.ui_m_contentscontainer02_background;
|
|
69
69
|
}, function (_a) {
|
|
70
70
|
var containerColor = _a.containerColor;
|
|
71
71
|
return "background-color: " + containerColor;
|
|
72
72
|
}, overrideStyleContainer2);
|
|
73
|
-
var S_ContentsArea1 = styled_components_1.default.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n height: 100%;\n
|
|
73
|
+
var S_ContentsArea1 = styled_components_1.default.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n height: 100%;\n\n ", ";\n"], ["\n height: 100%;\n\n ", ";\n"])), function (_a) {
|
|
74
74
|
var areaColor = _a.areaColor;
|
|
75
75
|
return "background-color: " + areaColor;
|
|
76
76
|
});
|
|
77
|
-
var S_ContentsArea2 = styled_components_1.default.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n height: 100%;\n
|
|
77
|
+
var S_ContentsArea2 = styled_components_1.default.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n height: 100%;\n padding-bottom: 88px;\n ", ";\n"], ["\n height: 100%;\n padding-bottom: 88px;\n ", ";\n"])), function (_a) {
|
|
78
78
|
var areaColor = _a.areaColor;
|
|
79
79
|
return "background-color: " + areaColor;
|
|
80
80
|
});
|
|
@@ -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: 'MFA_1' | 'MFB_1' | 'MFB_2' | 'MFC_1' | 'MFD_1' | 'MFE_1' | 'MFE_2';
|
|
5
5
|
content1?: 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, content1, content2, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: ContainersBoxProps) => JSX.Element;
|
|
16
16
|
export default ContainersBox;
|
|
@@ -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;
|
|
@@ -7,7 +7,7 @@ export declare type ContentsContainerProps = {
|
|
|
7
7
|
containerColor?: string;
|
|
8
8
|
areaColor?: string;
|
|
9
9
|
isLoadingContainer1?: boolean;
|
|
10
|
-
overrideContainer1ColorKey?:
|
|
10
|
+
overrideContainer1ColorKey?: UiColors;
|
|
11
11
|
};
|
|
12
12
|
declare const ContentsContainer: ({ content1, layoutType, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: ContentsContainerProps) => JSX.Element;
|
|
13
13
|
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 MMAProps = {
|
|
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 MMA: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: MMAProps) => JSX.Element;
|
|
11
11
|
export default MMA;
|
|
@@ -45,14 +45,14 @@ var overrideStyleContainer1 = (0, styled_components_1.css)(templateObject_1 || (
|
|
|
45
45
|
var theme = _a.theme, overrideContainer1ColorKey = _a.overrideContainer1ColorKey;
|
|
46
46
|
return overrideContainer1ColorKey && theme[overrideContainer1ColorKey];
|
|
47
47
|
});
|
|
48
|
-
var S_ContentsContainer = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n height: 100%;\n
|
|
48
|
+
var S_ContentsContainer = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n height: 100%;\n overflow-x: hidden;\n overflow-y: auto;\n ", ";\n\n ", "\n"], ["\n background-color: ", ";\n height: 100%;\n overflow-x: hidden;\n overflow-y: auto;\n ", ";\n\n ", "\n"])), function (_a) {
|
|
49
49
|
var theme = _a.theme;
|
|
50
50
|
return theme.ui_m_contentscontainer01_background;
|
|
51
51
|
}, function (_a) {
|
|
52
52
|
var containerColor = _a.containerColor;
|
|
53
53
|
return "background-color: " + containerColor;
|
|
54
54
|
}, overrideStyleContainer1);
|
|
55
|
-
var S_ContentsArea = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n
|
|
55
|
+
var S_ContentsArea = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n padding-bottom: 88px;\n ", ";\n"], ["\n padding-bottom: 88px;\n ", ";\n"])), function (_a) {
|
|
56
56
|
var areaColor = _a.areaColor;
|
|
57
57
|
return "background-color: " + areaColor;
|
|
58
58
|
});
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type MMBProps = {
|
|
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 MMB: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: MMBProps) => JSX.Element;
|
|
11
11
|
export default MMB;
|
|
@@ -45,14 +45,14 @@ var overrideStyleContainer1 = (0, styled_components_1.css)(templateObject_1 || (
|
|
|
45
45
|
var theme = _a.theme, overrideContainer1ColorKey = _a.overrideContainer1ColorKey;
|
|
46
46
|
return overrideContainer1ColorKey && theme[overrideContainer1ColorKey];
|
|
47
47
|
});
|
|
48
|
-
var S_ContentsContainer = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n height: 100%;\n
|
|
48
|
+
var S_ContentsContainer = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n height: 100%;\n\n ", ";\n\n ", "\n"], ["\n background-color: ", ";\n height: 100%;\n\n ", ";\n\n ", "\n"])), function (_a) {
|
|
49
49
|
var theme = _a.theme;
|
|
50
50
|
return theme.ui_m_contentscontainer01_background;
|
|
51
51
|
}, function (_a) {
|
|
52
52
|
var containerColor = _a.containerColor;
|
|
53
53
|
return "background-color: " + containerColor;
|
|
54
54
|
}, overrideStyleContainer1);
|
|
55
|
-
var S_ContentsArea = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n height: 100%;\n
|
|
55
|
+
var S_ContentsArea = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n height: 100%;\n\n ", ";\n"], ["\n height: 100%;\n\n ", ";\n"])), function (_a) {
|
|
56
56
|
var areaColor = _a.areaColor;
|
|
57
57
|
return "background-color: " + areaColor;
|
|
58
58
|
});
|
|
@@ -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: 'MMA_1' | 'MMB_1';
|
|
5
5
|
content1?: JSX.Element;
|
|
@@ -7,7 +7,7 @@ export declare type ContainersBoxProps = {
|
|
|
7
7
|
containerColor?: string;
|
|
8
8
|
areaColor?: string;
|
|
9
9
|
isLoadingContainer1?: boolean;
|
|
10
|
-
overrideContainer1ColorKey?:
|
|
10
|
+
overrideContainer1ColorKey?: UiColors;
|
|
11
11
|
};
|
|
12
12
|
declare const ContainersBox: ({ layoutType, content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: ContainersBoxProps) => JSX.Element;
|
|
13
13
|
export default ContainersBox;
|
|
@@ -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 MPAProps = {
|
|
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 MPA: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: MPAProps) => JSX.Element;
|
|
11
11
|
export default MPA;
|
|
@@ -45,14 +45,14 @@ var overrideStyleContainer1 = (0, styled_components_1.css)(templateObject_1 || (
|
|
|
45
45
|
var theme = _a.theme, overrideContainer1ColorKey = _a.overrideContainer1ColorKey;
|
|
46
46
|
return overrideContainer1ColorKey && theme[overrideContainer1ColorKey];
|
|
47
47
|
});
|
|
48
|
-
var S_ContentsContainer = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n height: 100%;\n
|
|
48
|
+
var S_ContentsContainer = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n height: 100%;\n overflow-x: hidden;\n overflow-y: auto;\n ", ";\n\n ", "\n"], ["\n background-color: ", ";\n height: 100%;\n overflow-x: hidden;\n overflow-y: auto;\n ", ";\n\n ", "\n"])), function (_a) {
|
|
49
49
|
var theme = _a.theme;
|
|
50
50
|
return theme.ui_m_contentscontainer01_background;
|
|
51
51
|
}, function (_a) {
|
|
52
52
|
var containerColor = _a.containerColor;
|
|
53
53
|
return "background-color: " + containerColor;
|
|
54
54
|
}, overrideStyleContainer1);
|
|
55
|
-
var S_ContentsArea = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n /* TODO: infinity scroll\uC744 \uC704\uD574 \uC784\uC2DC\uB85C height: 100%;\uD55C \uC0C1\uD0DC. \uD574\uB2F9 \uC0C1\uD0DC\uC5D0\uC11C\uB294 padding-bottom\uC774 \uBB34\uC2DC\uB418\uACE0 \uC788\uC73C\uBBC0\uB85C 2/8 \uC774\uD6C4 \uD574\uACB0 \uD544\uC694 */\n height: 100%;\n
|
|
55
|
+
var S_ContentsArea = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n /* TODO: infinity scroll\uC744 \uC704\uD574 \uC784\uC2DC\uB85C height: 100%;\uD55C \uC0C1\uD0DC. \uD574\uB2F9 \uC0C1\uD0DC\uC5D0\uC11C\uB294 padding-bottom\uC774 \uBB34\uC2DC\uB418\uACE0 \uC788\uC73C\uBBC0\uB85C 2/8 \uC774\uD6C4 \uD574\uACB0 \uD544\uC694 */\n height: 100%;\n\n ", ";\n /* padding-bottom: 88px; */\n"], ["\n /* TODO: infinity scroll\uC744 \uC704\uD574 \uC784\uC2DC\uB85C height: 100%;\uD55C \uC0C1\uD0DC. \uD574\uB2F9 \uC0C1\uD0DC\uC5D0\uC11C\uB294 padding-bottom\uC774 \uBB34\uC2DC\uB418\uACE0 \uC788\uC73C\uBBC0\uB85C 2/8 \uC774\uD6C4 \uD574\uACB0 \uD544\uC694 */\n height: 100%;\n\n ", ";\n /* padding-bottom: 88px; */\n"])), function (_a) {
|
|
56
56
|
var areaColor = _a.areaColor;
|
|
57
57
|
return "background-color: " + areaColor;
|
|
58
58
|
});
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type MPBProps = {
|
|
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 MPB: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: MPBProps) => JSX.Element;
|
|
11
11
|
export default MPB;
|
|
@@ -45,14 +45,14 @@ var overrideStyleContainer1 = (0, styled_components_1.css)(templateObject_1 || (
|
|
|
45
45
|
var theme = _a.theme, overrideContainer1ColorKey = _a.overrideContainer1ColorKey;
|
|
46
46
|
return overrideContainer1ColorKey && theme[overrideContainer1ColorKey];
|
|
47
47
|
});
|
|
48
|
-
var S_ContentsContainer = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n height: 100%;\n
|
|
48
|
+
var S_ContentsContainer = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n height: 100%;\n overflow-x: hidden;\n overflow-y: auto;\n ", ";\n\n ", "\n"], ["\n background-color: ", ";\n height: 100%;\n overflow-x: hidden;\n overflow-y: auto;\n ", ";\n\n ", "\n"])), function (_a) {
|
|
49
49
|
var theme = _a.theme;
|
|
50
50
|
return theme.ui_m_contentscontainer01_background;
|
|
51
51
|
}, function (_a) {
|
|
52
52
|
var containerColor = _a.containerColor;
|
|
53
53
|
return "background-color: " + containerColor;
|
|
54
54
|
}, overrideStyleContainer1);
|
|
55
|
-
var S_ContentsArea = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n /* TODO: infinity scroll\uC744 \uC704\uD574 \uC784\uC2DC\uB85C height: 100%;\uD55C \uC0C1\uD0DC. \uD574\uB2F9 \uC0C1\uD0DC\uC5D0\uC11C\uB294 padding-bottom\uC774 \uBB34\uC2DC\uB418\uACE0 \uC788\uC73C\uBBC0\uB85C 2/8 \uC774\uD6C4 \uD574\uACB0 \uD544\uC694 */\n height: 100%;\n
|
|
55
|
+
var S_ContentsArea = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n /* TODO: infinity scroll\uC744 \uC704\uD574 \uC784\uC2DC\uB85C height: 100%;\uD55C \uC0C1\uD0DC. \uD574\uB2F9 \uC0C1\uD0DC\uC5D0\uC11C\uB294 padding-bottom\uC774 \uBB34\uC2DC\uB418\uACE0 \uC788\uC73C\uBBC0\uB85C 2/8 \uC774\uD6C4 \uD574\uACB0 \uD544\uC694 */\n height: 100%;\n\n ", ";\n /* padding-bottom: 88px; */\n"], ["\n /* TODO: infinity scroll\uC744 \uC704\uD574 \uC784\uC2DC\uB85C height: 100%;\uD55C \uC0C1\uD0DC. \uD574\uB2F9 \uC0C1\uD0DC\uC5D0\uC11C\uB294 padding-bottom\uC774 \uBB34\uC2DC\uB418\uACE0 \uC788\uC73C\uBBC0\uB85C 2/8 \uC774\uD6C4 \uD574\uACB0 \uD544\uC694 */\n height: 100%;\n\n ", ";\n /* padding-bottom: 88px; */\n"])), function (_a) {
|
|
56
56
|
var areaColor = _a.areaColor;
|
|
57
57
|
return "background-color: " + areaColor;
|
|
58
58
|
});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type MPCProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
content2?: JSX.Element;
|
|
@@ -8,8 +8,8 @@ export declare type MPCProps = {
|
|
|
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 MPC: ({ content1, content2, layoutType, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: MPCProps) => JSX.Element;
|
|
15
15
|
export default MPC;
|
|
@@ -50,7 +50,7 @@ var overrideStyleContainer2 = (0, styled_components_1.css)(templateObject_2 || (
|
|
|
50
50
|
return overrideContainer2ColorKey && theme[overrideContainer2ColorKey];
|
|
51
51
|
});
|
|
52
52
|
var S_Box = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n display: flex;\n flex-direction: column;\n height: 100%;\n"], ["\n display: flex;\n flex-direction: column;\n height: 100%;\n"])));
|
|
53
|
-
var S_ContentsContainer1 = styled_components_1.default.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n background-color: ", ";\n
|
|
53
|
+
var S_ContentsContainer1 = styled_components_1.default.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n background-color: ", ";\n\n ", ";\n ", ";\n\n ", "\n"], ["\n background-color: ", ";\n\n ", ";\n ", ";\n\n ", "\n"])), function (_a) {
|
|
54
54
|
var theme = _a.theme;
|
|
55
55
|
return theme.ui_m_contentscontainer01_background;
|
|
56
56
|
}, function (_a) {
|
|
@@ -63,18 +63,18 @@ var S_ContentsContainer1 = styled_components_1.default.div(templateObject_4 || (
|
|
|
63
63
|
var containerColor = _a.containerColor;
|
|
64
64
|
return "background-color: " + containerColor;
|
|
65
65
|
}, overrideStyleContainer1);
|
|
66
|
-
var S_ContentsContainer2 = styled_components_1.default.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n background-color: ", ";\n flex: 1;\n height: 100%;\n
|
|
66
|
+
var S_ContentsContainer2 = styled_components_1.default.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n background-color: ", ";\n flex: 1;\n height: 100%;\n overflow-x: hidden;\n overflow-y: auto;\n ", ";\n\n ", "\n"], ["\n background-color: ", ";\n flex: 1;\n height: 100%;\n overflow-x: hidden;\n overflow-y: auto;\n ", ";\n\n ", "\n"])), function (_a) {
|
|
67
67
|
var theme = _a.theme;
|
|
68
68
|
return theme.ui_m_contentscontainer02_background;
|
|
69
69
|
}, function (_a) {
|
|
70
70
|
var containerColor = _a.containerColor;
|
|
71
71
|
return "background-color: " + containerColor;
|
|
72
72
|
}, overrideStyleContainer2);
|
|
73
|
-
var S_ContentsArea1 = styled_components_1.default.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n height: 100%;\n
|
|
73
|
+
var S_ContentsArea1 = styled_components_1.default.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n height: 100%;\n\n ", ";\n"], ["\n height: 100%;\n\n ", ";\n"])), function (_a) {
|
|
74
74
|
var areaColor = _a.areaColor;
|
|
75
75
|
return "background-color: " + areaColor;
|
|
76
76
|
});
|
|
77
|
-
var S_ContentsArea2 = styled_components_1.default.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n
|
|
77
|
+
var S_ContentsArea2 = styled_components_1.default.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n padding-bottom: 88px;\n ", ";\n"], ["\n padding-bottom: 88px;\n ", ";\n"])), function (_a) {
|
|
78
78
|
var areaColor = _a.areaColor;
|
|
79
79
|
return "background-color: " + areaColor;
|
|
80
80
|
});
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type MPDProps = {
|
|
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 MPD: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: MPDProps) => JSX.Element;
|
|
11
11
|
export default MPD;
|
|
@@ -45,14 +45,14 @@ var overrideStyleContainer1 = (0, styled_components_1.css)(templateObject_1 || (
|
|
|
45
45
|
var theme = _a.theme, overrideContainer1ColorKey = _a.overrideContainer1ColorKey;
|
|
46
46
|
return overrideContainer1ColorKey && theme[overrideContainer1ColorKey];
|
|
47
47
|
});
|
|
48
|
-
var S_ContentsContainer = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n height: 100%;\n
|
|
48
|
+
var S_ContentsContainer = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n height: 100%;\n\n ", ";\n\n ", "\n"], ["\n background-color: ", ";\n height: 100%;\n\n ", ";\n\n ", "\n"])), function (_a) {
|
|
49
49
|
var theme = _a.theme;
|
|
50
50
|
return theme.ui_m_contentscontainer01_background;
|
|
51
51
|
}, function (_a) {
|
|
52
52
|
var containerColor = _a.containerColor;
|
|
53
53
|
return "background-color: " + containerColor;
|
|
54
54
|
}, overrideStyleContainer1);
|
|
55
|
-
var S_ContentsArea = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n height: 100%;\n
|
|
55
|
+
var S_ContentsArea = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n height: 100%;\n\n ", ";\n"], ["\n height: 100%;\n\n ", ";\n"])), function (_a) {
|
|
56
56
|
var areaColor = _a.areaColor;
|
|
57
57
|
return "background-color: " + areaColor;
|
|
58
58
|
});
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type MPEProps = {
|
|
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 MPE: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: MPEProps) => JSX.Element;
|
|
11
11
|
export default MPE;
|
|
@@ -45,14 +45,14 @@ var overrideStyleContainer1 = (0, styled_components_1.css)(templateObject_1 || (
|
|
|
45
45
|
var theme = _a.theme, overrideContainer1ColorKey = _a.overrideContainer1ColorKey;
|
|
46
46
|
return overrideContainer1ColorKey && theme[overrideContainer1ColorKey];
|
|
47
47
|
});
|
|
48
|
-
var S_ContentsContainer = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n height: 100%;\n
|
|
48
|
+
var S_ContentsContainer = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n height: 100%;\n\n ", ";\n\n ", "\n"], ["\n background-color: ", ";\n height: 100%;\n\n ", ";\n\n ", "\n"])), function (_a) {
|
|
49
49
|
var theme = _a.theme;
|
|
50
50
|
return theme.ui_m_contentscontainer01_background;
|
|
51
51
|
}, function (_a) {
|
|
52
52
|
var containerColor = _a.containerColor;
|
|
53
53
|
return "background-color: " + containerColor;
|
|
54
54
|
}, overrideStyleContainer1);
|
|
55
|
-
var S_ContentsArea = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n height: 100%;\n
|
|
55
|
+
var S_ContentsArea = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n height: 100%;\n\n ", ";\n"], ["\n height: 100%;\n\n ", ";\n"])), function (_a) {
|
|
56
56
|
var areaColor = _a.areaColor;
|
|
57
57
|
return "background-color: " + areaColor;
|
|
58
58
|
});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type MPFProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
content2?: JSX.Element;
|
|
@@ -8,8 +8,8 @@ export declare type MPFProps = {
|
|
|
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 MPF: ({ content1, content2, layoutType, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: MPFProps) => JSX.Element;
|
|
15
15
|
export default MPF;
|
|
@@ -50,7 +50,7 @@ var overrideStyleContainer2 = (0, styled_components_1.css)(templateObject_2 || (
|
|
|
50
50
|
return overrideContainer2ColorKey && theme[overrideContainer2ColorKey];
|
|
51
51
|
});
|
|
52
52
|
var S_Box = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n display: flex;\n flex-direction: column;\n height: 100%;\n"], ["\n display: flex;\n flex-direction: column;\n height: 100%;\n"])));
|
|
53
|
-
var S_ContentsContainer1 = styled_components_1.default.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n background-color: ", ";\n
|
|
53
|
+
var S_ContentsContainer1 = styled_components_1.default.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n background-color: ", ";\n\n ", ";\n ", ";\n\n ", "\n"], ["\n background-color: ", ";\n\n ", ";\n ", ";\n\n ", "\n"])), function (_a) {
|
|
54
54
|
var theme = _a.theme;
|
|
55
55
|
return theme.ui_m_contentscontainer01_background;
|
|
56
56
|
}, function (_a) {
|
|
@@ -63,18 +63,18 @@ var S_ContentsContainer1 = styled_components_1.default.div(templateObject_4 || (
|
|
|
63
63
|
var containerColor = _a.containerColor;
|
|
64
64
|
return "background-color: " + containerColor;
|
|
65
65
|
}, overrideStyleContainer1);
|
|
66
|
-
var S_ContentsContainer2 = styled_components_1.default.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n background-color: ", ";\n flex: 1;\n height: 100%;\n
|
|
66
|
+
var S_ContentsContainer2 = styled_components_1.default.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n background-color: ", ";\n flex: 1;\n height: 100%;\n\n ", ";\n\n ", "\n"], ["\n background-color: ", ";\n flex: 1;\n height: 100%;\n\n ", ";\n\n ", "\n"])), function (_a) {
|
|
67
67
|
var theme = _a.theme;
|
|
68
68
|
return theme.ui_m_contentscontainer02_background;
|
|
69
69
|
}, function (_a) {
|
|
70
70
|
var containerColor = _a.containerColor;
|
|
71
71
|
return "background-color: " + containerColor;
|
|
72
72
|
}, overrideStyleContainer2);
|
|
73
|
-
var S_ContentsArea1 = styled_components_1.default.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n height: 100%;\n
|
|
73
|
+
var S_ContentsArea1 = styled_components_1.default.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n height: 100%;\n\n ", ";\n"], ["\n height: 100%;\n\n ", ";\n"])), function (_a) {
|
|
74
74
|
var areaColor = _a.areaColor;
|
|
75
75
|
return "background-color: " + areaColor;
|
|
76
76
|
});
|
|
77
|
-
var S_ContentsArea2 = styled_components_1.default.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n height: 100%;\n
|
|
77
|
+
var S_ContentsArea2 = styled_components_1.default.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n height: 100%;\n padding-bottom: 88px;\n ", ";\n"], ["\n height: 100%;\n padding-bottom: 88px;\n ", ";\n"])), function (_a) {
|
|
78
78
|
var areaColor = _a.areaColor;
|
|
79
79
|
return "background-color: " + areaColor;
|
|
80
80
|
});
|
|
@@ -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 ContentsContainerProps = {
|
|
4
4
|
content1?: 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
|
container1Ref?: MutableRefObject<HTMLDivElement | null>;
|
|
14
14
|
};
|
|
15
15
|
declare const ContentsContainer: ({ content1, content2, layoutType, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey, container1Ref }: ContentsContainerProps) => 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 MSAProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
@@ -6,7 +6,7 @@ export declare type MSAProps = {
|
|
|
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 MSA: ({ content1, layoutType, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey, container1Ref }: MSAProps) => JSX.Element;
|
|
@@ -45,14 +45,14 @@ var overrideStyleContainer1 = (0, styled_components_1.css)(templateObject_1 || (
|
|
|
45
45
|
var theme = _a.theme, overrideContainer1ColorKey = _a.overrideContainer1ColorKey;
|
|
46
46
|
return overrideContainer1ColorKey && theme[overrideContainer1ColorKey];
|
|
47
47
|
});
|
|
48
|
-
var S_ContentsContainer = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n height: 100%;\n
|
|
48
|
+
var S_ContentsContainer = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n height: 100%;\n\n overflow-x: hidden;\n overflow-y: auto;\n ", ";\n\n ", "\n"], ["\n background-color: ", ";\n height: 100%;\n\n overflow-x: hidden;\n overflow-y: auto;\n ", ";\n\n ", "\n"])), function (_a) {
|
|
49
49
|
var theme = _a.theme;
|
|
50
50
|
return theme.ui_m_contentscontainer01_background;
|
|
51
51
|
}, function (_a) {
|
|
52
52
|
var containerColor = _a.containerColor;
|
|
53
53
|
return "background-color: " + containerColor;
|
|
54
54
|
}, overrideStyleContainer1);
|
|
55
|
-
var S_ContentsArea = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n
|
|
55
|
+
var S_ContentsArea = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n ", ";\n ", ";\n"], ["\n ", ";\n ", ";\n"])), function (_a) {
|
|
56
56
|
var layoutType = _a.layoutType;
|
|
57
57
|
return ({
|
|
58
58
|
MSA_1: 'padding-bottom: 88px;',
|