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
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type MSBProps = {
|
|
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 MSB: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: MSBProps) => JSX.Element;
|
|
11
11
|
export default MSB;
|
|
@@ -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,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type MSCProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
content2?: JSX.Element;
|
|
@@ -8,8 +8,8 @@ export declare type MSCProps = {
|
|
|
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 MSC: ({ content1, content2, layoutType, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: MSCProps) => JSX.Element;
|
|
15
15
|
export default MSC;
|
|
@@ -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 MSDProps = {
|
|
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 MSD: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: MSDProps) => JSX.Element;
|
|
11
11
|
export default MSD;
|
|
@@ -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 MSEProps = {
|
|
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 MSE: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: MSEProps) => JSX.Element;
|
|
11
11
|
export default MSE;
|
|
@@ -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 MSFProps = {
|
|
4
4
|
content1?: JSX.Element;
|
|
5
5
|
content2?: JSX.Element;
|
|
@@ -8,8 +8,8 @@ export declare type MSFProps = {
|
|
|
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 MSF: ({ content1, content2, layoutType, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey }: MSFProps) => JSX.Element;
|
|
15
15
|
export default MSF;
|
|
@@ -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,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { UiColors } from '../../../../../../common';
|
|
3
3
|
export declare type MSGProps = {
|
|
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 MSG: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: MSGProps) => JSX.Element;
|
|
11
11
|
export default MSG;
|
|
@@ -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 MSHProps = {
|
|
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 MSH: ({ content1, containerColor, areaColor, isLoadingContainer1, overrideContainer1ColorKey }: MSHProps) => JSX.Element;
|
|
11
11
|
export default MSH;
|
|
@@ -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,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { UiColors } from '../../../../common';
|
|
2
2
|
import type { MutableRefObject } from 'react';
|
|
3
3
|
export declare type ContainersBoxProps = {
|
|
4
4
|
layoutType: 'MSA_1' | 'MSA_2' | 'MSB_1' | 'MSC_1' | 'MSC_2' | 'MSD_1' | 'MSE_1' | 'MSF_1' | 'MSF_2' | 'MSG_1' | 'MSH_1';
|
|
@@ -10,8 +10,8 @@ export declare type ContainersBoxProps = {
|
|
|
10
10
|
areaColor?: string;
|
|
11
11
|
isLoadingContainer1?: boolean;
|
|
12
12
|
isLoadingContainer2?: boolean;
|
|
13
|
-
overrideContainer1ColorKey?:
|
|
14
|
-
overrideContainer2ColorKey?:
|
|
13
|
+
overrideContainer1ColorKey?: UiColors;
|
|
14
|
+
overrideContainer2ColorKey?: UiColors;
|
|
15
15
|
container1Ref?: MutableRefObject<HTMLDivElement | null>;
|
|
16
16
|
};
|
|
17
17
|
declare const ContainersBox: ({ layoutType, tabContent, content1, content2, containerColor, areaColor, isLoadingContainer1, isLoadingContainer2, overrideContainer1ColorKey, overrideContainer2ColorKey, container1Ref }: ContainersBoxProps) => JSX.Element;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { UiColors } from '../../../common';
|
|
2
2
|
import type { CSSProperties } from 'react';
|
|
3
3
|
declare type PaddingSpacingType = 'none' | keyof typeof paddingSpacing;
|
|
4
4
|
export declare type AnnotationSheetProps = {
|
|
5
5
|
width: string;
|
|
6
6
|
height: string;
|
|
7
7
|
backgroundColorTheme?: 'transparent' | 'white' | 'black' | 'base1' | 'base2' | 'base3';
|
|
8
|
-
overrideBackgroundColorKey?:
|
|
8
|
+
overrideBackgroundColorKey?: UiColors;
|
|
9
9
|
borderMode?: 'none' | 'use';
|
|
10
10
|
borderWidth?: 1 | 2;
|
|
11
11
|
borderColorTheme?: 'grey' | 'blue' | 'green';
|
|
12
|
-
overrideBorderColorKey?:
|
|
12
|
+
overrideBorderColorKey?: UiColors;
|
|
13
13
|
shapeType?: 'rectangle' | 'round';
|
|
14
14
|
radius?: 8 | 16 | 24;
|
|
15
15
|
paddingTop?: PaddingSpacingType;
|
|
@@ -24,11 +24,11 @@ export declare type StyleProps = {
|
|
|
24
24
|
$width?: string;
|
|
25
25
|
$height?: string;
|
|
26
26
|
$backgroundColorTheme?: 'transparent' | 'white' | 'black' | 'base1' | 'base2' | 'base3';
|
|
27
|
-
overrideBackgroundColorKey?:
|
|
27
|
+
overrideBackgroundColorKey?: UiColors;
|
|
28
28
|
borderMode?: 'none' | 'use';
|
|
29
29
|
$borderWidth?: 1 | 2;
|
|
30
30
|
$borderColorTheme?: 'grey' | 'blue' | 'green';
|
|
31
|
-
overrideBorderColorKey?:
|
|
31
|
+
overrideBorderColorKey?: UiColors;
|
|
32
32
|
shapeType?: 'rectangle' | 'round';
|
|
33
33
|
$radius?: 8 | 16 | 24;
|
|
34
34
|
paddingTop?: PaddingSpacingType;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { UiColors } from '../../../common';
|
|
2
2
|
import type react from 'react';
|
|
3
3
|
declare type PaddingSpacingType = 'none' | keyof typeof paddingSpacing;
|
|
4
4
|
export declare type ContentSheetProps = {
|
|
5
5
|
width: string;
|
|
6
6
|
height: string;
|
|
7
7
|
backgroundColorTheme?: 'transparent' | 'white' | 'black' | 'base1' | 'base2' | 'base3';
|
|
8
|
-
overrideBackgroundColorKey?:
|
|
8
|
+
overrideBackgroundColorKey?: UiColors;
|
|
9
9
|
borderMode?: 'none' | 'use';
|
|
10
10
|
borderWidth?: 1 | 2;
|
|
11
11
|
borderColorTheme?: 'grey' | 'blue' | 'green';
|
|
12
|
-
overrideBorderColorKey?:
|
|
12
|
+
overrideBorderColorKey?: UiColors;
|
|
13
13
|
shapeType?: 'rectangle' | 'round';
|
|
14
14
|
radius?: 8 | 16 | 24;
|
|
15
15
|
paddingTop?: PaddingSpacingType;
|
|
@@ -27,11 +27,11 @@ export declare type StyleProps = {
|
|
|
27
27
|
$width?: string;
|
|
28
28
|
$height?: string;
|
|
29
29
|
$backgroundColorTheme?: 'transparent' | 'white' | 'black' | 'base1' | 'base2' | 'base3';
|
|
30
|
-
overrideBackgroundColorKey?:
|
|
30
|
+
overrideBackgroundColorKey?: UiColors;
|
|
31
31
|
borderMode?: 'none' | 'use';
|
|
32
32
|
$borderWidth?: 1 | 2;
|
|
33
33
|
$borderColorTheme?: 'grey' | 'blue' | 'green';
|
|
34
|
-
overrideBorderColorKey?:
|
|
34
|
+
overrideBorderColorKey?: UiColors;
|
|
35
35
|
shapeType?: 'rectangle' | 'round';
|
|
36
36
|
$radius?: 8 | 16 | 24;
|
|
37
37
|
paddingTop?: PaddingSpacingType;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { UiColors } from '../../../common';
|
|
2
2
|
import type { CSSProperties } from 'react';
|
|
3
3
|
declare type PaddingSpacingType = 'none' | keyof typeof paddingSpacing;
|
|
4
4
|
export declare type SectionSheetProps = {
|
|
5
5
|
width: string;
|
|
6
6
|
height: string;
|
|
7
7
|
backgroundColorTheme?: 'transparent' | 'white' | 'black' | 'base1' | 'base2' | 'base3';
|
|
8
|
-
overrideBackgroundColorKey?:
|
|
8
|
+
overrideBackgroundColorKey?: UiColors;
|
|
9
9
|
borderMode?: 'none' | 'use';
|
|
10
10
|
borderWidth?: 1 | 2;
|
|
11
11
|
borderColorTheme?: 'grey' | 'blue' | 'green';
|
|
12
|
-
overrideBorderColorKey?:
|
|
12
|
+
overrideBorderColorKey?: UiColors;
|
|
13
13
|
shapeType?: 'rectangle' | 'round';
|
|
14
14
|
radius?: 8 | 16 | 24;
|
|
15
15
|
paddingTop?: PaddingSpacingType;
|
|
@@ -24,11 +24,11 @@ export declare type StyleProps = {
|
|
|
24
24
|
$width?: string;
|
|
25
25
|
$height?: string;
|
|
26
26
|
$backgroundColorTheme?: 'transparent' | 'white' | 'black' | 'base1' | 'base2' | 'base3';
|
|
27
|
-
overrideBackgroundColorKey?:
|
|
27
|
+
overrideBackgroundColorKey?: UiColors;
|
|
28
28
|
borderMode?: 'none' | 'use';
|
|
29
29
|
$borderWidth?: 1 | 2;
|
|
30
30
|
$borderColorTheme?: 'grey' | 'blue' | 'green';
|
|
31
|
-
overrideBorderColorKey?:
|
|
31
|
+
overrideBorderColorKey?: UiColors;
|
|
32
32
|
shapeType?: 'rectangle' | 'round';
|
|
33
33
|
$radius?: 8 | 16 | 24;
|
|
34
34
|
paddingTop?: PaddingSpacingType;
|
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { BulkActionBar } from '../BulkActionBar';
|
|
3
3
|
import type { ToolBar } from '../ToolBar';
|
|
4
|
-
import type {
|
|
4
|
+
import type { PDSTextType } from '../../../common/types';
|
|
5
5
|
declare type ColumnWidthType = 'small' | 'medium' | 'large' | 'xlarge';
|
|
6
6
|
declare type Props = {
|
|
7
7
|
selectionMode?: 'none' | 'single' | 'multi';
|
|
8
8
|
headerRowMode?: 'none' | 'use';
|
|
9
|
-
column2HeaderText:
|
|
10
|
-
column3HeaderText?:
|
|
9
|
+
column2HeaderText: PDSTextType;
|
|
10
|
+
column3HeaderText?: PDSTextType;
|
|
11
11
|
column3Width?: ColumnWidthType;
|
|
12
|
-
column4HeaderText?:
|
|
12
|
+
column4HeaderText?: PDSTextType;
|
|
13
13
|
column4Width?: ColumnWidthType;
|
|
14
|
-
column5HeaderText?:
|
|
14
|
+
column5HeaderText?: PDSTextType;
|
|
15
15
|
column5Width?: ColumnWidthType;
|
|
16
|
-
column6HeaderText?:
|
|
16
|
+
column6HeaderText?: PDSTextType;
|
|
17
17
|
column6Width?: ColumnWidthType;
|
|
18
|
-
column7HeaderText?:
|
|
18
|
+
column7HeaderText?: PDSTextType;
|
|
19
19
|
column7Width?: ColumnWidthType;
|
|
20
|
-
column8HeaderText?:
|
|
20
|
+
column8HeaderText?: PDSTextType;
|
|
21
21
|
column8Width?: ColumnWidthType;
|
|
22
|
-
column9HeaderText?:
|
|
22
|
+
column9HeaderText?: PDSTextType;
|
|
23
23
|
column9Width?: ColumnWidthType;
|
|
24
|
-
column10HeaderText?:
|
|
24
|
+
column10HeaderText?: PDSTextType;
|
|
25
25
|
column10Width?: ColumnWidthType;
|
|
26
26
|
quickActionBtnMode?: 'none' | 'btn_amount1' | 'btn_amount2' | 'btn_amount3';
|
|
27
|
-
quickActionBtn1Text?:
|
|
28
|
-
quickActionBtn2Text?:
|
|
29
|
-
quickActionBtn3Text?:
|
|
27
|
+
quickActionBtn1Text?: PDSTextType;
|
|
28
|
+
quickActionBtn2Text?: PDSTextType;
|
|
29
|
+
quickActionBtn3Text?: PDSTextType;
|
|
30
30
|
quickActionBtnType?: 'hover' | 'fix';
|
|
31
|
-
emptyText?:
|
|
31
|
+
emptyText?: PDSTextType;
|
|
32
32
|
scrollMode?: 'infinite' | 'none' | 'page';
|
|
33
33
|
scrollVisibleType?: 'moving' | 'hidden' | 'visible';
|
|
34
34
|
headerRowCheckboxName?: string;
|
|
@@ -49,8 +49,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
49
49
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
50
50
|
var react_1 = __importStar(require("react"));
|
|
51
51
|
var react_hook_form_1 = require("react-hook-form");
|
|
52
|
-
var components_1 = require("
|
|
53
|
-
var components_2 = require("
|
|
52
|
+
var components_1 = require("../../../desktop/components");
|
|
53
|
+
var components_2 = require("../../../hybrid/components");
|
|
54
54
|
var styled_components_1 = __importStar(require("styled-components"));
|
|
55
55
|
var HeaderRow_1 = __importDefault(require("./HeaderRow"));
|
|
56
56
|
function AdminList(_a) {
|
|
@@ -62,6 +62,12 @@ function AdminList(_a) {
|
|
|
62
62
|
control: selectAllMethods.control
|
|
63
63
|
});
|
|
64
64
|
var _t = (0, react_1.useState)(false), isBulkActionBarOpen = _t[0], setIsBulkActionBarOpen = _t[1];
|
|
65
|
+
var childrenPropIds = [];
|
|
66
|
+
if (children && Array.isArray(children)) {
|
|
67
|
+
childrenPropIds = react_1.default.Children.map(children, function (child) {
|
|
68
|
+
return child.props.id;
|
|
69
|
+
});
|
|
70
|
+
}
|
|
65
71
|
/**
|
|
66
72
|
* @when AdminListItem이 선택되었을 때
|
|
67
73
|
* @expected 벌크액션바 활성화 여부와 체크박스 선택 여부를 결정합니다.
|
|
@@ -72,7 +78,7 @@ function AdminList(_a) {
|
|
|
72
78
|
}
|
|
73
79
|
if (!selectedIds.length) {
|
|
74
80
|
checkboxMethods.reset();
|
|
75
|
-
selectAllMethods.
|
|
81
|
+
selectAllMethods.setValue(headerRowCheckboxName, false);
|
|
76
82
|
if (maintainIds === null || maintainIds === void 0 ? void 0 : maintainIds.length) {
|
|
77
83
|
setIsBulkActionBarOpen(true);
|
|
78
84
|
maintainIds.forEach(function (id) { return checkboxMethods.setValue(id.toString(), true); });
|
|
@@ -89,19 +95,21 @@ function AdminList(_a) {
|
|
|
89
95
|
}
|
|
90
96
|
setIsBulkActionBarOpen(true);
|
|
91
97
|
selectedIds.forEach(function (val) { return checkboxMethods.setValue(val.toString(), true); });
|
|
98
|
+
// NOTE Children에 포함된 요소의 id와 선택되어 있는 id를 비교해 전체 체크박스의 상태를 변경합니다.
|
|
99
|
+
var hasAllIds = childrenPropIds === null || childrenPropIds === void 0 ? void 0 : childrenPropIds.every(function (id) { return selectedIds.includes(id) || (maintainIds === null || maintainIds === void 0 ? void 0 : maintainIds.includes(id)); });
|
|
100
|
+
selectAllMethods.setValue(headerRowCheckboxName, hasAllIds ? true : false);
|
|
92
101
|
}, [selectedIds, maintainIds]);
|
|
93
102
|
var handleSelectAllCheckbox = function () {
|
|
94
|
-
var
|
|
95
|
-
var basicIds = allIds.filter(function (id) { return !(maintainIds === null || maintainIds === void 0 ? void 0 : maintainIds.includes(id)); });
|
|
103
|
+
var basicIds = childrenPropIds === null || childrenPropIds === void 0 ? void 0 : childrenPropIds.filter(function (id) { return !(maintainIds === null || maintainIds === void 0 ? void 0 : maintainIds.includes(id)); });
|
|
96
104
|
if (!isAllCheckboxSelected) {
|
|
97
|
-
|
|
98
|
-
if (onSelect) {
|
|
105
|
+
childrenPropIds === null || childrenPropIds === void 0 ? void 0 : childrenPropIds.forEach(function (id) { return checkboxMethods.setValue(id.toString(), true); });
|
|
106
|
+
if (onSelect && basicIds) {
|
|
99
107
|
onSelect(basicIds);
|
|
100
108
|
}
|
|
101
109
|
return;
|
|
102
110
|
}
|
|
103
111
|
if (maintainIds === null || maintainIds === void 0 ? void 0 : maintainIds.length) {
|
|
104
|
-
basicIds.forEach(function (id) { return checkboxMethods.setValue(id.toString(), false); });
|
|
112
|
+
basicIds === null || basicIds === void 0 ? void 0 : basicIds.forEach(function (id) { return checkboxMethods.setValue(id.toString(), false); });
|
|
105
113
|
if (onSelect) {
|
|
106
114
|
onSelect([]);
|
|
107
115
|
}
|
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type {
|
|
2
|
+
import type { PDSTextType } from '../../../common/types';
|
|
3
3
|
declare type ColumnWidthType = 'small' | 'medium' | 'large' | 'xlarge';
|
|
4
4
|
declare type Props = {
|
|
5
5
|
selectionMode: 'none' | 'single' | 'multi';
|
|
6
|
-
column2HeaderText?:
|
|
7
|
-
column3HeaderText?:
|
|
6
|
+
column2HeaderText?: PDSTextType;
|
|
7
|
+
column3HeaderText?: PDSTextType;
|
|
8
8
|
column3HeaderWidth?: ColumnWidthType;
|
|
9
|
-
column4HeaderText?:
|
|
9
|
+
column4HeaderText?: PDSTextType;
|
|
10
10
|
column4HeaderWidth?: ColumnWidthType;
|
|
11
|
-
column5HeaderText?:
|
|
11
|
+
column5HeaderText?: PDSTextType;
|
|
12
12
|
column5HeaderWidth?: ColumnWidthType;
|
|
13
|
-
column6HeaderText?:
|
|
13
|
+
column6HeaderText?: PDSTextType;
|
|
14
14
|
column6HeaderWidth?: ColumnWidthType;
|
|
15
|
-
column7HeaderText?:
|
|
15
|
+
column7HeaderText?: PDSTextType;
|
|
16
16
|
column7HeaderWidth?: ColumnWidthType;
|
|
17
|
-
column8HeaderText?:
|
|
17
|
+
column8HeaderText?: PDSTextType;
|
|
18
18
|
column8HeaderWidth?: ColumnWidthType;
|
|
19
|
-
column9HeaderText?:
|
|
19
|
+
column9HeaderText?: PDSTextType;
|
|
20
20
|
column9HeaderWidth?: ColumnWidthType;
|
|
21
|
-
column10HeaderText?:
|
|
21
|
+
column10HeaderText?: PDSTextType;
|
|
22
22
|
column10HeaderWidth?: ColumnWidthType;
|
|
23
23
|
quickActionBtnType?: 'hover' | 'fix';
|
|
24
24
|
quickActionButtonCount?: number;
|
|
@@ -35,8 +35,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
35
35
|
};
|
|
36
36
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37
37
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
38
|
-
var components_1 = require("
|
|
39
|
-
var components_2 = require("
|
|
38
|
+
var components_1 = require("../../../desktop/components");
|
|
39
|
+
var components_2 = require("../../../hybrid/components");
|
|
40
40
|
var styled_components_1 = __importStar(require("styled-components"));
|
|
41
41
|
function HeaderRow(_a) {
|
|
42
42
|
var _b = _a.selectionMode, selectionMode = _b === void 0 ? 'multi' : _b, column2HeaderText = _a.column2HeaderText, column3HeaderText = _a.column3HeaderText, _c = _a.column3HeaderWidth, column3HeaderWidth = _c === void 0 ? 'small' : _c, column4HeaderText = _a.column4HeaderText, _d = _a.column4HeaderWidth, column4HeaderWidth = _d === void 0 ? 'small' : _d, column5HeaderText = _a.column5HeaderText, _e = _a.column5HeaderWidth, column5HeaderWidth = _e === void 0 ? 'small' : _e, column6HeaderText = _a.column6HeaderText, _f = _a.column6HeaderWidth, column6HeaderWidth = _f === void 0 ? 'small' : _f, column7HeaderText = _a.column7HeaderText, _g = _a.column7HeaderWidth, column7HeaderWidth = _g === void 0 ? 'small' : _g, column8HeaderText = _a.column8HeaderText, _h = _a.column8HeaderWidth, column8HeaderWidth = _h === void 0 ? 'small' : _h, column9HeaderText = _a.column9HeaderText, _j = _a.column9HeaderWidth, column9HeaderWidth = _j === void 0 ? 'small' : _j, column10HeaderText = _a.column10HeaderText, _k = _a.column10HeaderWidth, column10HeaderWidth = _k === void 0 ? 'small' : _k, _l = _a.quickActionBtnType, quickActionBtnType = _l === void 0 ? 'fix' : _l, _m = _a.quickActionButtonCount, quickActionButtonCount = _m === void 0 ? 2 : _m, _o = _a.headerRowCheckboxName, headerRowCheckboxName = _o === void 0 ? 'all' : _o, _p = _a.flexibleHideInfoMode, flexibleHideInfoMode = _p === void 0 ? 'use' : _p, onClickSelectAllCheckbox = _a.onClickSelectAllCheckbox;
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type { PDSTextType, PDSValueOption } from '
|
|
3
|
-
import type { TFunctionResult } from 'i18next';
|
|
2
|
+
import type { PDSTextType, PDSValueOption } from '../../../common/types';
|
|
4
3
|
declare type Props = {
|
|
5
4
|
headerBarSize?: 'regular' | 'small';
|
|
6
|
-
headerBarTitleText?:
|
|
5
|
+
headerBarTitleText?: PDSTextType;
|
|
7
6
|
tooltipText?: PDSTextType;
|
|
8
7
|
currentPage?: number;
|
|
9
8
|
totalPage?: number;
|
|
10
|
-
contentText?:
|
|
9
|
+
contentText?: PDSTextType;
|
|
11
10
|
dropdownTextArray?: PDSValueOption[];
|
|
12
11
|
dropdownDefaultValue?: PDSValueOption;
|
|
13
12
|
onChangeCount?: (option: PDSValueOption) => void;
|
|
@@ -19,8 +19,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
19
19
|
};
|
|
20
20
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21
21
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
22
|
-
var components_1 = require("
|
|
23
|
-
var components_2 = require("
|
|
22
|
+
var components_1 = require("../../../desktop/components");
|
|
23
|
+
var components_2 = require("../../../hybrid/components");
|
|
24
24
|
var styled_components_1 = __importDefault(require("styled-components"));
|
|
25
25
|
var HeaderBar_1 = __importDefault(require("./HeaderBar"));
|
|
26
26
|
var defaultPaginationTextArray = [
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type { PDSTextType, PDSValueOption } from '
|
|
3
|
-
import type { TFunctionResult } from 'i18next';
|
|
2
|
+
import type { PDSTextType, PDSValueOption } from '../../../common/types';
|
|
4
3
|
declare type Props = {
|
|
5
|
-
titleText?:
|
|
4
|
+
titleText?: PDSTextType;
|
|
6
5
|
tooltipText?: PDSTextType;
|
|
7
6
|
size?: 'regular' | 'small';
|
|
8
7
|
currentPage?: number;
|
|
@@ -36,8 +36,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
36
36
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37
37
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
38
38
|
var react_i18next_1 = require("react-i18next");
|
|
39
|
-
var components_1 = require("
|
|
40
|
-
var components_2 = require("
|
|
39
|
+
var components_1 = require("../../../desktop/components");
|
|
40
|
+
var components_2 = require("../../../hybrid/components");
|
|
41
41
|
var styled_components_1 = __importStar(require("styled-components"));
|
|
42
42
|
function HeaderBar(_a) {
|
|
43
43
|
var titleText = _a.titleText, tooltipText = _a.tooltipText, _b = _a.size, size = _b === void 0 ? 'regular' : _b, _c = _a.currentPage, currentPage = _c === void 0 ? 1 : _c, _d = _a.totalPage, totalPage = _d === void 0 ? 1 : _d, dropdownTextArray = _a.dropdownTextArray, dropdownDefaultValue = _a.dropdownDefaultValue, onChangeDropdown = _a.onChangeDropdown, onClickIBtn1 = _a.onClickIBtn1, onClickIBtn2 = _a.onClickIBtn2;
|