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
|
@@ -12,7 +12,7 @@ var __assign = (this && this.__assign) || function () {
|
|
|
12
12
|
};
|
|
13
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
14
|
exports.themeByGivenTone = exports.spacing = exports.boxShadow = exports.mobileEditorLineHeight = exports.mobileEditorFontSize = exports.mobileLineHeight = exports.mobileFontSize = exports.desktopEditorLineHeight = exports.desktopEditorFontSize = exports.desktopLineHeight = exports.desktopFontSize = exports.fontWeight = void 0;
|
|
15
|
-
var
|
|
15
|
+
var ui_colors_1 = require("./ui-colors");
|
|
16
16
|
exports.fontWeight = {
|
|
17
17
|
normal: '500',
|
|
18
18
|
bold: '700'
|
|
@@ -119,7 +119,7 @@ exports.spacing = {
|
|
|
119
119
|
spacingM: '288px',
|
|
120
120
|
spacingN: '320px'
|
|
121
121
|
};
|
|
122
|
-
var theme = __assign({ fontWeight: exports.fontWeight, desktopFontSize: exports.desktopFontSize, desktopLineHeight: exports.desktopLineHeight, desktopEditorFontSize: exports.desktopEditorFontSize, desktopEditorLineHeight: exports.desktopEditorLineHeight, mobileFontSize: exports.mobileFontSize, mobileLineHeight: exports.mobileLineHeight, mobileEditorFontSize: exports.mobileEditorFontSize, mobileEditorLineHeight: exports.mobileEditorLineHeight, boxShadow: exports.boxShadow, spacing: exports.spacing }, (0,
|
|
123
|
-
var themeByGivenTone = function (tone) { return (__assign(__assign({}, (0,
|
|
122
|
+
var theme = __assign({ fontWeight: exports.fontWeight, desktopFontSize: exports.desktopFontSize, desktopLineHeight: exports.desktopLineHeight, desktopEditorFontSize: exports.desktopEditorFontSize, desktopEditorLineHeight: exports.desktopEditorLineHeight, mobileFontSize: exports.mobileFontSize, mobileLineHeight: exports.mobileLineHeight, mobileEditorFontSize: exports.mobileEditorFontSize, mobileEditorLineHeight: exports.mobileEditorLineHeight, boxShadow: exports.boxShadow, spacing: exports.spacing }, (0, ui_colors_1.customTheme)(window.PdsUtils ? window.PdsUtils.tone : 'DARK', window.PdsUtils ? window.PdsUtils.palette : {}));
|
|
123
|
+
var themeByGivenTone = function (tone) { return (__assign(__assign({}, (0, ui_colors_1.customTheme)(tone)), { fontWeight: exports.fontWeight, desktopFontSize: exports.desktopFontSize, desktopLineHeight: exports.desktopLineHeight, desktopEditorFontSize: exports.desktopEditorFontSize, desktopEditorLineHeight: exports.desktopEditorLineHeight, mobileFontSize: exports.mobileFontSize, mobileLineHeight: exports.mobileLineHeight, mobileEditorFontSize: exports.mobileEditorFontSize, mobileEditorLineHeight: exports.mobileEditorLineHeight, boxShadow: exports.boxShadow, spacing: exports.spacing })); };
|
|
124
124
|
exports.themeByGivenTone = themeByGivenTone;
|
|
125
125
|
exports.default = theme;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { UITheme } from './colorSet/ui-type';
|
|
2
|
+
export declare const uiColors: UITheme;
|
|
3
|
+
declare global {
|
|
4
|
+
interface Window {
|
|
5
|
+
PdsUtils: any;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
export declare const customTheme: (tone: string, palette?: {
|
|
9
|
+
[key: string]: string;
|
|
10
|
+
} | undefined) => any;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.customTheme = exports.uiColors = void 0;
|
|
7
|
+
var colorSet_1 = __importDefault(require("./colorSet"));
|
|
8
|
+
function buildCascadedColors(lowLevel, highLevel, override) {
|
|
9
|
+
if (override === void 0) { override = {}; }
|
|
10
|
+
return Object.keys(highLevel).reduce(function (acc, key) {
|
|
11
|
+
var keyInLowLevelColors = highLevel[key];
|
|
12
|
+
var colorValue;
|
|
13
|
+
if (keyInLowLevelColors.indexOf('/') !== -1) {
|
|
14
|
+
colorValue = override[key]
|
|
15
|
+
? override[key]
|
|
16
|
+
: lowLevel[keyInLowLevelColors.split('/')[0]] + lowLevel[keyInLowLevelColors.split('/')[1]];
|
|
17
|
+
}
|
|
18
|
+
else {
|
|
19
|
+
colorValue = override[key] ? override[key] : lowLevel[keyInLowLevelColors];
|
|
20
|
+
}
|
|
21
|
+
acc[key] = colorValue;
|
|
22
|
+
return acc;
|
|
23
|
+
}, {});
|
|
24
|
+
}
|
|
25
|
+
// fetch-palette-phase
|
|
26
|
+
// 서버로부터 해당 채널이 라이트 톤을 사용하는지, 다크 톤을 사용하는지 가져오기
|
|
27
|
+
// 서버로부터 해당 채널에서 커스텀으로 설정한 팔레트 가져오기
|
|
28
|
+
// from server (원래는 비동기)
|
|
29
|
+
var colorSetting = {
|
|
30
|
+
tone: 'DARK',
|
|
31
|
+
palette: {
|
|
32
|
+
usr_good_job: '#999999'
|
|
33
|
+
}
|
|
34
|
+
};
|
|
35
|
+
var phaseTwoJSON = colorSetting.tone === 'LIGHT' ? colorSet_1.default.PaletteColor_light : colorSet_1.default.PaletteColor_Dark;
|
|
36
|
+
// ui-color-build-phase
|
|
37
|
+
var paletteColors = buildCascadedColors(colorSet_1.default.SemanticColor, phaseTwoJSON, colorSetting.palette);
|
|
38
|
+
exports.uiColors = buildCascadedColors(paletteColors, colorSet_1.default.UIColor);
|
|
39
|
+
window.PdsUtils = {
|
|
40
|
+
tone: 'DARK'
|
|
41
|
+
};
|
|
42
|
+
var customTheme = function (tone, palette) {
|
|
43
|
+
window.PdsUtils.tone = tone;
|
|
44
|
+
window.PdsUtils.palette = palette;
|
|
45
|
+
var buildedColors = buildCascadedColors(buildCascadedColors(colorSet_1.default.SemanticColor, tone === 'LIGHT' ? colorSet_1.default.PaletteColor_light : colorSet_1.default.PaletteColor_Dark, palette), colorSet_1.default.UIColor);
|
|
46
|
+
return buildedColors;
|
|
47
|
+
};
|
|
48
|
+
exports.customTheme = customTheme;
|
|
@@ -14,4 +14,5 @@ __exportStar(require("./form"), exports);
|
|
|
14
14
|
__exportStar(require("./icon"), exports);
|
|
15
15
|
__exportStar(require("./styled-components"), exports);
|
|
16
16
|
__exportStar(require("./text"), exports);
|
|
17
|
+
__exportStar(require("./uiColors"), exports);
|
|
17
18
|
__exportStar(require("./components"), exports);
|
package/dist/src/sub/DynamicLayout/components/pdsOriginal/desktop/IconButton/IconButton.d.ts
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type { FillIconNameKeys, LineIconNameKeys } from '../../common';
|
|
3
|
-
import type { ColorType } from 'pds-dev-kit-color-web';
|
|
2
|
+
import type { FillIconNameKeys, LineIconNameKeys, UiColors } from '../../common';
|
|
4
3
|
export declare type IconButtonProps = {
|
|
5
4
|
fillType?: 'fill' | 'line';
|
|
6
5
|
shapeType?: 'circular' | 'rectangle';
|
|
7
6
|
baseSize?: 'xxlarge' | 'large' | 'medium' | 'small' | 'xsmall';
|
|
8
|
-
baseColorKey?:
|
|
9
|
-
borderColorKey?:
|
|
7
|
+
baseColorKey?: UiColors;
|
|
8
|
+
borderColorKey?: UiColors;
|
|
10
9
|
iconSize?: 12 | 16 | 20 | 24 | 48 | 72;
|
|
11
10
|
iconFillType?: 'fill' | 'line';
|
|
12
11
|
iconName: FillIconNameKeys | LineIconNameKeys;
|
|
13
|
-
iconColorKey?:
|
|
12
|
+
iconColorKey?: UiColors;
|
|
14
13
|
shadow?: 'hidden' | 'visible';
|
|
15
14
|
colorTheme?: 'none' | 'line1' | 'line2';
|
|
16
15
|
type?: 'submit' | 'reset' | 'button';
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type { PDSTextType } from '../../common';
|
|
3
|
-
import type { ColorType } from 'pds-dev-kit-color-web';
|
|
2
|
+
import type { PDSTextType, UiColors } from '../../common';
|
|
4
3
|
export declare type TextLabelProps = {
|
|
5
4
|
text: PDSTextType;
|
|
6
5
|
tooltipText?: PDSTextType;
|
|
7
6
|
tooltipPosition?: 'left_top' | 'left_bottom' | 'right_top' | 'right_bottom';
|
|
8
7
|
textAlign?: 'left' | 'center' | 'right';
|
|
9
8
|
styleTheme?: 'displayBold' | 'headingBold' | 'leadParaBold' | 'leadParaRegular' | 'subTitleBold' | 'subTitleRegular' | 'body1Bold' | 'body1Regular' | 'body2Bold' | 'body2Regular' | 'caption1Bold' | 'caption1Regular' | 'caption2Bold' | 'caption2Regular' | 'form1Regular' | 'form2Regular' | 'blog1Regular';
|
|
10
|
-
colorOverride?:
|
|
9
|
+
colorOverride?: UiColors;
|
|
11
10
|
colorTheme?: 'sysTextPrimary' | 'sysTextSecondary' | 'sysTextTertiary' | 'sysTextWhite' | 'sysTextError' | 'sysTextWarning' | 'sysTextBrandPrimary' | 'sysTextBrandSeconVariant' | 'usrTextBrandPrimary' | 'usrTextBrandSeconVariant' | 'usrTextBrandOnPrimary';
|
|
12
11
|
singleLineMode?: 'none' | 'use';
|
|
13
12
|
ellipsisMode?: 'none' | 'use';
|
|
@@ -24,7 +23,7 @@ export declare type TextStyleProps = {
|
|
|
24
23
|
textAlign?: 'left' | 'center' | 'right';
|
|
25
24
|
tooltipPosition?: 'left_top' | 'left_bottom' | 'right_top' | 'right_bottom';
|
|
26
25
|
styleTheme?: 'displayBold' | 'headingBold' | 'leadParaBold' | 'leadParaRegular' | 'subTitleBold' | 'subTitleRegular' | 'body1Bold' | 'body1Regular' | 'body2Bold' | 'body2Regular' | 'caption1Bold' | 'caption1Regular' | 'caption2Bold' | 'caption2Regular' | 'form1Regular' | 'form2Regular' | 'blog1Regular';
|
|
27
|
-
colorOverride?:
|
|
26
|
+
colorOverride?: UiColors;
|
|
28
27
|
colorTheme?: 'sysTextPrimary' | 'sysTextSecondary' | 'sysTextTertiary' | 'sysTextWhite' | 'sysTextError' | 'sysTextWarning' | 'sysTextBrandPrimary' | 'sysTextBrandSeconVariant' | 'usrTextBrandPrimary' | 'usrTextBrandSeconVariant' | 'usrTextBrandOnPrimary';
|
|
29
28
|
singleLineMode?: 'none' | 'use';
|
|
30
29
|
ellipsisMode?: 'none' | 'use';
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type { FillIconNameKeys, LineIconNameKeys } from '../../common';
|
|
3
|
-
import type { ColorType } from 'pds-dev-kit-color-web';
|
|
2
|
+
import type { FillIconNameKeys, LineIconNameKeys, UiColors } from '../../common';
|
|
4
3
|
export declare type IconProps = {
|
|
5
4
|
iconName?: FillIconNameKeys | LineIconNameKeys;
|
|
6
5
|
size?: 12 | 16 | 20 | 24 | 32 | 48 | 56 | 64 | 72;
|
|
7
|
-
colorKey?:
|
|
6
|
+
colorKey?: UiColors;
|
|
8
7
|
fillType?: 'line' | 'fill';
|
|
9
8
|
} & Record<string, any>;
|
|
10
9
|
declare const Icon: ({ iconName, size, colorKey, fillType }: IconProps) => JSX.Element;
|
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type { FillIconNameKeys, LineIconNameKeys } from '../../common';
|
|
3
|
-
import type { ColorType } from 'pds-dev-kit-color-web';
|
|
2
|
+
import type { FillIconNameKeys, LineIconNameKeys, UiColors } from '../../common';
|
|
4
3
|
export declare type IconButtonProps = {
|
|
5
4
|
fillType?: 'fill' | 'line';
|
|
6
5
|
shapeType?: 'circular' | 'rectangle';
|
|
7
6
|
baseSize?: 'xxlarge' | 'large' | 'medium' | 'small' | 'xsmall';
|
|
8
|
-
baseColorKey?:
|
|
9
|
-
borderColorKey?:
|
|
7
|
+
baseColorKey?: UiColors;
|
|
8
|
+
borderColorKey?: UiColors;
|
|
10
9
|
iconSize?: 12 | 16 | 20 | 24 | 48 | 72;
|
|
11
10
|
iconFillType?: 'fill' | 'line';
|
|
12
11
|
iconName: FillIconNameKeys | LineIconNameKeys;
|
|
13
|
-
iconColorKey?:
|
|
12
|
+
iconColorKey?: UiColors;
|
|
14
13
|
shadow?: 'hidden' | 'visible';
|
|
15
14
|
colorTheme?: 'none' | 'line1' | 'line2';
|
|
16
15
|
type?: 'submit' | 'reset' | 'button';
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type { PDSTextType } from '../../common';
|
|
3
|
-
import type { ColorType } from 'pds-dev-kit-color-web';
|
|
2
|
+
import type { PDSTextType, UiColors } from '../../common';
|
|
4
3
|
export declare type TextLabelProps = {
|
|
5
4
|
text: PDSTextType;
|
|
6
5
|
textAlign?: 'left' | 'center' | 'right';
|
|
7
6
|
styleTheme?: 'displayBold' | 'headingBold' | 'leadParaBold' | 'leadParaRegular' | 'subTitleBold' | 'subTitleRegular' | 'body1Bold' | 'body1Regular' | 'body2Bold' | 'body2Regular' | 'caption1Bold' | 'caption1Regular' | 'caption2Bold' | 'caption2Regular' | 'form1Regular' | 'form2Regular' | 'blog1Regular';
|
|
8
|
-
colorOverride?:
|
|
7
|
+
colorOverride?: UiColors;
|
|
9
8
|
colorTheme?: 'sysTextPrimary' | 'sysTextSecondary' | 'sysTextTertiary' | 'sysTextWhite' | 'sysTextError' | 'sysTextWarning' | 'sysTextBrandPrimary' | 'sysTextBrandSeconVariant' | 'usrTextBrandPrimary' | 'usrTextBrandSeconVariant' | 'usrTextBrandOnPrimary';
|
|
10
9
|
singleLineMode?: 'none' | 'use';
|
|
11
10
|
ellipsisMode?: 'none' | 'use';
|
|
@@ -21,7 +20,7 @@ export declare type TextLabelProps = {
|
|
|
21
20
|
export declare type TextStyleProps = {
|
|
22
21
|
textAlign?: 'left' | 'center' | 'right';
|
|
23
22
|
styleTheme?: 'displayBold' | 'headingBold' | 'leadParaBold' | 'leadParaRegular' | 'subTitleBold' | 'subTitleRegular' | 'body1Bold' | 'body1Regular' | 'body2Bold' | 'body2Regular' | 'caption1Bold' | 'caption1Regular' | 'caption2Bold' | 'caption2Regular' | 'form1Regular' | 'form2Regular' | 'blog1Regular';
|
|
24
|
-
colorOverride?:
|
|
23
|
+
colorOverride?: UiColors;
|
|
25
24
|
colorTheme?: 'sysTextPrimary' | 'sysTextSecondary' | 'sysTextTertiary' | 'sysTextWhite' | 'sysTextError' | 'sysTextWarning' | 'sysTextBrandPrimary' | 'sysTextBrandSeconVariant' | 'usrTextBrandPrimary' | 'usrTextBrandSeconVariant' | 'usrTextBrandOnPrimary';
|
|
26
25
|
singleLineMode?: 'none' | 'use';
|
|
27
26
|
ellipsisMode?: 'none' | 'use';
|
|
@@ -6,4 +6,5 @@ export declare const samplePageContentsSection: ISection;
|
|
|
6
6
|
export declare const samplePageInfoBoxSection: ISection;
|
|
7
7
|
export declare const samplePageIntroSection3: ISection;
|
|
8
8
|
export declare const samplePageFooterSection: ISection;
|
|
9
|
+
export declare const samplePageFullscreenIframeSection: ISection;
|
|
9
10
|
export declare const samplePage: ISection[];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.samplePage = exports.samplePageFooterSection = exports.samplePageIntroSection3 = exports.samplePageInfoBoxSection = exports.samplePageContentsSection = exports.samplePageIntroSection2 = exports.samplePageContentsCarouselSection = exports.samplePageIntroSection = void 0;
|
|
3
|
+
exports.samplePage = exports.samplePageFullscreenIframeSection = exports.samplePageFooterSection = exports.samplePageIntroSection3 = exports.samplePageInfoBoxSection = exports.samplePageContentsSection = exports.samplePageIntroSection2 = exports.samplePageContentsCarouselSection = exports.samplePageIntroSection = void 0;
|
|
4
4
|
exports.samplePageIntroSection = {
|
|
5
5
|
display: true,
|
|
6
6
|
dynamicLayoutSectionItems: [],
|
|
@@ -64,7 +64,8 @@ exports.samplePageIntroSection = {
|
|
|
64
64
|
itemLinkMethod: 'CLICK_BUTTON_IN_ITEM',
|
|
65
65
|
sectionContentMediaSrc: '',
|
|
66
66
|
sectionContentMediaType: 'IMAGE',
|
|
67
|
-
title: 'Entertainment Business Sample'
|
|
67
|
+
title: 'Entertainment Business Sample',
|
|
68
|
+
multiPurposeUrl: ''
|
|
68
69
|
},
|
|
69
70
|
styles: {
|
|
70
71
|
backgroundColorInHex: '#EFF0F3FF',
|
|
@@ -332,7 +333,8 @@ exports.samplePageContentsCarouselSection = {
|
|
|
332
333
|
itemLinkMethod: 'CLICK_BUTTON_IN_ITEM',
|
|
333
334
|
sectionContentMediaSrc: '',
|
|
334
335
|
sectionContentMediaType: 'IMAGE',
|
|
335
|
-
title: 'Music Festival'
|
|
336
|
+
title: 'Music Festival',
|
|
337
|
+
multiPurposeUrl: ''
|
|
336
338
|
},
|
|
337
339
|
styles: {
|
|
338
340
|
backgroundColorInHex: '#FFFFFFFF',
|
|
@@ -428,7 +430,8 @@ exports.samplePageIntroSection2 = {
|
|
|
428
430
|
itemLinkMethod: 'CLICK_BUTTON_IN_ITEM',
|
|
429
431
|
sectionContentMediaSrc: '',
|
|
430
432
|
sectionContentMediaType: 'IMAGE',
|
|
431
|
-
title: 'Sample'
|
|
433
|
+
title: 'Sample',
|
|
434
|
+
multiPurposeUrl: ''
|
|
432
435
|
},
|
|
433
436
|
styles: {
|
|
434
437
|
backgroundColorInHex: '#EFF0F3FF',
|
|
@@ -514,7 +517,8 @@ exports.samplePageContentsSection = {
|
|
|
514
517
|
itemLinkMethod: 'CLICK_BUTTON_IN_ITEM',
|
|
515
518
|
sectionContentMediaSrc: 'https://publ-upload-dev.s3.ap-northeast-2.amazonaws.com/be9aaa5a-ec5c-4727-b374-d7027b18f7ee.jpg',
|
|
516
519
|
sectionContentMediaType: 'IMAGE',
|
|
517
|
-
title: 'Sample'
|
|
520
|
+
title: 'Sample',
|
|
521
|
+
multiPurposeUrl: ''
|
|
518
522
|
},
|
|
519
523
|
styles: {
|
|
520
524
|
backgroundColorInHex: '#EFF0F3FF',
|
|
@@ -689,7 +693,8 @@ exports.samplePageInfoBoxSection = {
|
|
|
689
693
|
itemLinkMethod: 'CLICK_ITEM',
|
|
690
694
|
sectionContentMediaSrc: '',
|
|
691
695
|
sectionContentMediaType: 'IMAGE',
|
|
692
|
-
title: 'Sample'
|
|
696
|
+
title: 'Sample',
|
|
697
|
+
multiPurposeUrl: ''
|
|
693
698
|
},
|
|
694
699
|
styles: {
|
|
695
700
|
backgroundColorInHex: '#EFF0F3FF',
|
|
@@ -785,7 +790,8 @@ exports.samplePageIntroSection3 = {
|
|
|
785
790
|
itemLinkMethod: 'CLICK_BUTTON_IN_ITEM',
|
|
786
791
|
sectionContentMediaSrc: '',
|
|
787
792
|
sectionContentMediaType: 'IMAGE',
|
|
788
|
-
title: 'Contact Us'
|
|
793
|
+
title: 'Contact Us',
|
|
794
|
+
multiPurposeUrl: ''
|
|
789
795
|
},
|
|
790
796
|
styles: {
|
|
791
797
|
backgroundColorInHex: '#EFF0F3FF',
|
|
@@ -884,7 +890,8 @@ exports.samplePageFooterSection = {
|
|
|
884
890
|
itemLinkMethod: 'CLICK_BUTTON_IN_ITEM',
|
|
885
891
|
sectionContentMediaSrc: '',
|
|
886
892
|
sectionContentMediaType: 'IMAGE',
|
|
887
|
-
title: ''
|
|
893
|
+
title: '',
|
|
894
|
+
multiPurposeUrl: ''
|
|
888
895
|
},
|
|
889
896
|
styles: {
|
|
890
897
|
backgroundColorInHex: '#0F0F10FF',
|
|
@@ -917,6 +924,75 @@ exports.samplePageFooterSection = {
|
|
|
917
924
|
template: 'BASE_FOOTER_B',
|
|
918
925
|
updatedAt: '2023-01-06T09:05:45'
|
|
919
926
|
};
|
|
927
|
+
exports.samplePageFullscreenIframeSection = {
|
|
928
|
+
display: false,
|
|
929
|
+
dynamicLayoutSectionItems: null,
|
|
930
|
+
id: 999,
|
|
931
|
+
insertedAt: '2023-01-06T09:05:45',
|
|
932
|
+
manifest: {
|
|
933
|
+
availableProperties: ['multi_purpose_url'],
|
|
934
|
+
availableStyles: [],
|
|
935
|
+
availableTemplates: ['EXP_IFRAME_A'],
|
|
936
|
+
schema: 'EXP_IFRAME'
|
|
937
|
+
},
|
|
938
|
+
order: 7,
|
|
939
|
+
properties: {
|
|
940
|
+
buttonAlphaLabel: '',
|
|
941
|
+
buttonAlphaLinkSrc: '',
|
|
942
|
+
buttonAlphaLinkType: 'WEB_LINK',
|
|
943
|
+
buttonBravoLabel: '',
|
|
944
|
+
buttonBravoLinkSrc: '',
|
|
945
|
+
buttonBravoLinkType: 'WEB_LINK',
|
|
946
|
+
buttonCharlieLabel: '',
|
|
947
|
+
buttonCharlieLinkSrc: '',
|
|
948
|
+
buttonCharlieLinkType: 'WEB_LINK',
|
|
949
|
+
buttonDeltaLabel: '',
|
|
950
|
+
buttonDeltaLinkSrc: '',
|
|
951
|
+
buttonDeltaLinkType: 'WEB_LINK',
|
|
952
|
+
buttonEchoLabel: '',
|
|
953
|
+
buttonEchoLinkSrc: '',
|
|
954
|
+
buttonEchoLinkType: 'WEB_LINK',
|
|
955
|
+
carouselAutoplayMode: 'MANUAL',
|
|
956
|
+
carouselAutoplayTime: 3,
|
|
957
|
+
carouselInfiniteLoopMode: 'NO_USE',
|
|
958
|
+
description: '',
|
|
959
|
+
itemLinkMethod: 'CLICK_BUTTON_IN_ITEM',
|
|
960
|
+
sectionContentMediaSrc: '',
|
|
961
|
+
sectionContentMediaType: 'IMAGE',
|
|
962
|
+
title: '',
|
|
963
|
+
multiPurposeUrl: 'https://app.publr.co/'
|
|
964
|
+
},
|
|
965
|
+
styles: {
|
|
966
|
+
backgroundColorInHex: '#0F0F10FF',
|
|
967
|
+
backgroundMediaSrc: '',
|
|
968
|
+
backgroundMediaType: 'IMAGE',
|
|
969
|
+
backgroundOverlayColorInHex: '#00000000',
|
|
970
|
+
buttonAlphaBackgroundColorInHex: '#455EEFFF',
|
|
971
|
+
buttonAlphaDesignType: 'A',
|
|
972
|
+
buttonAlphaLabelColorInHex: '#FFFFFFFF',
|
|
973
|
+
buttonBravoBackgroundColorInHex: '#455EEFFF',
|
|
974
|
+
buttonBravoDesignType: 'A',
|
|
975
|
+
buttonBravoLabelColorInHex: '#FFFFFFFF',
|
|
976
|
+
buttonCharlieBackgroundColorInHex: '#455EEFFF',
|
|
977
|
+
buttonCharlieDesignType: 'A',
|
|
978
|
+
buttonCharlieLabelColorInHex: '#FFFFFFFF',
|
|
979
|
+
buttonDeltaBackgroundColorInHex: '#455EEFFF',
|
|
980
|
+
buttonDeltaDesignType: 'A',
|
|
981
|
+
buttonDeltaLabelColorInHex: '#FFFFFFFF',
|
|
982
|
+
buttonEchoBackgroundColorInHex: '#455EEFFF',
|
|
983
|
+
buttonEchoDesignType: 'A',
|
|
984
|
+
buttonEchoLabelColorInHex: '#FFFFFFFF',
|
|
985
|
+
descriptionColorInHex: '#68686BFF',
|
|
986
|
+
itemButtonBackgroundColorInHex: '#455EEFFF',
|
|
987
|
+
itemButtonDesignType: 'A',
|
|
988
|
+
itemButtonLabelColorInHex: '#FFFFFFFF',
|
|
989
|
+
itemDescriptionColorInHex: '#676970FF',
|
|
990
|
+
itemTitleColorInHex: '#1E1E20FF',
|
|
991
|
+
titleColorInHex: '#1E1E20FF'
|
|
992
|
+
},
|
|
993
|
+
template: 'EXP_IFRAME_A',
|
|
994
|
+
updatedAt: '2023-01-06T09:05:45'
|
|
995
|
+
};
|
|
920
996
|
exports.samplePage = [
|
|
921
997
|
exports.samplePageIntroSection,
|
|
922
998
|
exports.samplePageContentsCarouselSection,
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare type TypeOfSectionAction = ActionMap<ActionHandlerPayload>[keyof ActionMap<ActionHandlerPayload>];
|
|
3
|
+
declare type ActionHandlerPayload = {
|
|
4
|
+
'@EXP_IFRAME/IFRAME_ON_LOADED': {
|
|
5
|
+
event: React.SyntheticEvent<HTMLIFrameElement, Event>;
|
|
6
|
+
multiPurposeUrl: string;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
declare type ActionMap<M extends {
|
|
10
|
+
[index: string]: any;
|
|
11
|
+
}> = {
|
|
12
|
+
[Key in keyof M]: M[Key] extends undefined ? {
|
|
13
|
+
type: Key;
|
|
14
|
+
} : {
|
|
15
|
+
type: Key;
|
|
16
|
+
payload: M[Key];
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
export {};
|
package/dist/src/sub/DynamicLayout/sections/FullscreenIframeSection/FullscreenIframeSection.js
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
3
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
4
|
+
return cooked;
|
|
5
|
+
};
|
|
6
|
+
var __assign = (this && this.__assign) || function () {
|
|
7
|
+
__assign = Object.assign || function(t) {
|
|
8
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
9
|
+
s = arguments[i];
|
|
10
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
11
|
+
t[p] = s[p];
|
|
12
|
+
}
|
|
13
|
+
return t;
|
|
14
|
+
};
|
|
15
|
+
return __assign.apply(this, arguments);
|
|
16
|
+
};
|
|
17
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
18
|
+
var t = {};
|
|
19
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
20
|
+
t[p] = s[p];
|
|
21
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
22
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
23
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
24
|
+
t[p[i]] = s[p[i]];
|
|
25
|
+
}
|
|
26
|
+
return t;
|
|
27
|
+
};
|
|
28
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
30
|
+
};
|
|
31
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
32
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
33
|
+
var styled_components_1 = __importDefault(require("styled-components"));
|
|
34
|
+
var components_1 = require("../../components");
|
|
35
|
+
var templates_1 = require("./templates");
|
|
36
|
+
function FullscreenIframeSection(_a) {
|
|
37
|
+
var props = __rest(_a, []);
|
|
38
|
+
return ((0, jsx_runtime_1.jsx)(S_SectionWrapper, __assign({ "x-dlayout-section-type": "FullscreenIframe" }, { children: (0, jsx_runtime_1.jsx)(components_1.Section, __assign({}, props, { children: (0, jsx_runtime_1.jsx)(TemplateMather, { styleTemplate: props.template }, void 0) }), void 0) }), void 0));
|
|
39
|
+
}
|
|
40
|
+
var S_SectionWrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n display: flex;\n height: 100%;\n"], ["\n display: flex;\n height: 100%;\n"])));
|
|
41
|
+
function TemplateMather(_a) {
|
|
42
|
+
var styleTemplate = _a.styleTemplate;
|
|
43
|
+
switch (styleTemplate) {
|
|
44
|
+
case 'EXP_IFRAME_A':
|
|
45
|
+
return (0, jsx_runtime_1.jsx)(templates_1.TemplateA, {}, void 0);
|
|
46
|
+
default:
|
|
47
|
+
return (0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, {}, void 0);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
exports.default = FullscreenIframeSection;
|
|
51
|
+
var templateObject_1;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as FullscreenIframeSection } from './FullscreenIframeSection';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.FullscreenIframeSection = void 0;
|
|
7
|
+
var FullscreenIframeSection_1 = require("./FullscreenIframeSection");
|
|
8
|
+
Object.defineProperty(exports, "FullscreenIframeSection", { enumerable: true, get: function () { return __importDefault(FullscreenIframeSection_1).default; } });
|
package/dist/src/sub/DynamicLayout/sections/FullscreenIframeSection/templates/TemplateA/TemplateA.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
|
+
var react_1 = require("react");
|
|
5
|
+
var dynamicLayoutContext_1 = require("../../../../dynamicLayoutContext");
|
|
6
|
+
var desktop_1 = require("./desktop");
|
|
7
|
+
var mobile_1 = require("./mobile");
|
|
8
|
+
function TemplateA() {
|
|
9
|
+
var device = (0, react_1.useContext)(dynamicLayoutContext_1.dynamicLayoutContext).device;
|
|
10
|
+
return ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: {
|
|
11
|
+
MOBILE: (0, jsx_runtime_1.jsx)(mobile_1.M_TemplateA, {}, void 0),
|
|
12
|
+
DESKTOP: (0, jsx_runtime_1.jsx)(desktop_1.D_TemplateA, {}, void 0)
|
|
13
|
+
}[device] }, void 0));
|
|
14
|
+
}
|
|
15
|
+
exports.default = TemplateA;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
|
+
var react_1 = require("react");
|
|
5
|
+
var DynamicLayout_1 = require("../../../../../../DynamicLayout");
|
|
6
|
+
var Section_1 = require("../../../../../components/Section");
|
|
7
|
+
function TemplateA() {
|
|
8
|
+
var sectionActionHandler = (0, react_1.useContext)(DynamicLayout_1.dynamicLayoutContext).sectionActionHandler;
|
|
9
|
+
var section = (0, react_1.useContext)(Section_1.sectionContext);
|
|
10
|
+
var onIframeLoad = function (event) {
|
|
11
|
+
if (sectionActionHandler) {
|
|
12
|
+
sectionActionHandler({
|
|
13
|
+
type: '@EXP_IFRAME/IFRAME_ON_LOADED',
|
|
14
|
+
payload: { event: event, multiPurposeUrl: section.properties.multiPurposeUrl }
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
return ((0, jsx_runtime_1.jsx)("iframe", { "x-dlayout-section-element-name": "Iframe", id: String(section.id), title: section.manifest.schema, src: section.properties.multiPurposeUrl, style: { border: 'none', width: '100%', height: '100%', display: 'block' }, referrerPolicy: "strict-origin", sandbox: "allow-forms allow-same-origin allow-scripts allow-popups", onLoad: onIframeLoad }, void 0));
|
|
19
|
+
}
|
|
20
|
+
exports.default = TemplateA;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as D_TemplateA } from './D_TemplateA';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.D_TemplateA = void 0;
|
|
7
|
+
var D_TemplateA_1 = require("./D_TemplateA");
|
|
8
|
+
Object.defineProperty(exports, "D_TemplateA", { enumerable: true, get: function () { return __importDefault(D_TemplateA_1).default; } });
|
package/dist/src/sub/DynamicLayout/sections/FullscreenIframeSection/templates/TemplateA/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as TemplateA } from './TemplateA';
|
package/dist/src/sub/DynamicLayout/sections/FullscreenIframeSection/templates/TemplateA/index.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.TemplateA = void 0;
|
|
7
|
+
var TemplateA_1 = require("./TemplateA");
|
|
8
|
+
Object.defineProperty(exports, "TemplateA", { enumerable: true, get: function () { return __importDefault(TemplateA_1).default; } });
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
|
+
var react_1 = require("react");
|
|
5
|
+
var DynamicLayout_1 = require("../../../../../../DynamicLayout");
|
|
6
|
+
var Section_1 = require("../../../../../components/Section");
|
|
7
|
+
function TemplateA() {
|
|
8
|
+
var sectionActionHandler = (0, react_1.useContext)(DynamicLayout_1.dynamicLayoutContext).sectionActionHandler;
|
|
9
|
+
var section = (0, react_1.useContext)(Section_1.sectionContext);
|
|
10
|
+
var onIframeLoad = function (event) {
|
|
11
|
+
if (sectionActionHandler) {
|
|
12
|
+
sectionActionHandler({
|
|
13
|
+
type: '@EXP_IFRAME/IFRAME_ON_LOADED',
|
|
14
|
+
payload: { event: event, multiPurposeUrl: section.properties.multiPurposeUrl }
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
return ((0, jsx_runtime_1.jsx)("iframe", { "x-dlayout-section-element-name": "Iframe", id: String(section.id), title: section.manifest.schema, src: section.properties.multiPurposeUrl, style: { border: 'none', width: '100%', height: '100%', display: 'block' }, referrerPolicy: "strict-origin", sandbox: "allow-forms allow-same-origin allow-scripts", onLoad: onIframeLoad }, void 0));
|
|
19
|
+
}
|
|
20
|
+
exports.default = TemplateA;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as M_TemplateA } from './M_TemplateA';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.M_TemplateA = void 0;
|
|
7
|
+
var M_TemplateA_1 = require("./M_TemplateA");
|
|
8
|
+
Object.defineProperty(exports, "M_TemplateA", { enumerable: true, get: function () { return __importDefault(M_TemplateA_1).default; } });
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { TemplateA } from './TemplateA';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TemplateA = void 0;
|
|
4
|
+
var TemplateA_1 = require("./TemplateA");
|
|
5
|
+
Object.defineProperty(exports, "TemplateA", { enumerable: true, get: function () { return TemplateA_1.TemplateA; } });
|
|
@@ -3,3 +3,4 @@ export { ContentsSection } from './ContentsSection';
|
|
|
3
3
|
export { FooterSection } from './FooterSection';
|
|
4
4
|
export { InfoBoxSection } from './InfoBoxSection';
|
|
5
5
|
export { IntroSection } from './IntroSection';
|
|
6
|
+
export { FullscreenIframeSection } from './FullscreenIframeSection';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IntroSection = exports.InfoBoxSection = exports.FooterSection = exports.ContentsSection = exports.ContentsCarouselSection = void 0;
|
|
3
|
+
exports.FullscreenIframeSection = exports.IntroSection = exports.InfoBoxSection = exports.FooterSection = exports.ContentsSection = exports.ContentsCarouselSection = void 0;
|
|
4
4
|
var ContentsCarouselSection_1 = require("./ContentsCarouselSection");
|
|
5
5
|
Object.defineProperty(exports, "ContentsCarouselSection", { enumerable: true, get: function () { return ContentsCarouselSection_1.ContentsCarouselSection; } });
|
|
6
6
|
var ContentsSection_1 = require("./ContentsSection");
|
|
@@ -11,3 +11,5 @@ var InfoBoxSection_1 = require("./InfoBoxSection");
|
|
|
11
11
|
Object.defineProperty(exports, "InfoBoxSection", { enumerable: true, get: function () { return InfoBoxSection_1.InfoBoxSection; } });
|
|
12
12
|
var IntroSection_1 = require("./IntroSection");
|
|
13
13
|
Object.defineProperty(exports, "IntroSection", { enumerable: true, get: function () { return IntroSection_1.IntroSection; } });
|
|
14
|
+
var FullscreenIframeSection_1 = require("./FullscreenIframeSection");
|
|
15
|
+
Object.defineProperty(exports, "FullscreenIframeSection", { enumerable: true, get: function () { return FullscreenIframeSection_1.FullscreenIframeSection; } });
|