pds-dev-kit-web-test 2.5.510 → 2.5.511
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/dist/index.d.ts +4 -4
- package/dist/index.js +3 -6
- package/dist/src/common/assets/icons/fill/index.d.ts +0 -1
- package/dist/src/common/assets/icons/fill/index.js +0 -2
- package/dist/src/common/assets/icons/line/index.d.ts +0 -1
- package/dist/src/common/assets/icons/line/index.js +0 -2
- package/dist/src/common/hooks/useTooltip.js +1 -1
- package/dist/src/common/services/i18n/resources/en.json +1 -50
- package/dist/src/common/services/i18n/resources/es.json +1 -50
- package/dist/src/common/services/i18n/resources/fil.json +1 -50
- package/dist/src/common/services/i18n/resources/index.d.ts +0 -343
- package/dist/src/common/services/i18n/resources/ja.json +1 -50
- package/dist/src/common/services/i18n/resources/ko.json +1 -50
- package/dist/src/common/services/i18n/resources/zh-cn.json +1 -50
- package/dist/src/common/services/i18n/resources/zh-tw.json +1 -50
- package/dist/src/common/styles/colorSet/index.d.ts +2 -2
- package/dist/src/common/styles/colorSet/index.js +2 -2
- package/dist/src/common/types/components.d.ts +0 -9
- package/dist/src/common/types/components.js +0 -8
- package/dist/src/common/types/form.d.ts +9 -0
- package/dist/src/common/types/form.js +10 -0
- package/dist/src/common/types/index.d.ts +1 -1
- package/dist/src/common/types/index.js +1 -1
- package/dist/src/common/utils/SystemUIPositionGenerator/hoverTypeSystemUICssGenerator.js +1 -1
- package/dist/src/common/utils/dateHelper.d.ts +0 -3
- package/dist/src/common/utils/dateHelper.js +0 -37
- package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.d.ts +1 -2
- package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.js +16 -20
- package/dist/src/desktop/components/BasicButtonGroup/BasicButtonGroup.js +1 -1
- package/dist/src/desktop/components/BasicFormGroup/BasicFormGroup.d.ts +2 -6
- package/dist/src/desktop/components/BasicFormGroup/BasicFormGroup.js +6 -67
- package/dist/src/desktop/components/ChatBubbleListItem/ChatBubbleListItem.d.ts +3 -2
- package/dist/src/desktop/components/ChatBubbleListItem/ChatBubbleListItem.js +8 -3
- package/dist/src/desktop/components/ChatList/Body.d.ts +1 -1
- package/dist/src/desktop/components/index.d.ts +1 -3
- package/dist/src/desktop/components/index.js +1 -6
- package/dist/src/desktop/index.d.ts +1 -1
- package/dist/src/desktop/index.js +2 -4
- package/dist/src/desktop/panels/DesktopHeadlessModal/DesktopHeadlessModal.d.ts +2 -17
- package/dist/src/desktop/panels/DesktopHeadlessModal/DesktopHeadlessModal.js +6 -37
- package/dist/src/desktop/panels/index.d.ts +1 -2
- package/dist/src/desktop/panels/index.js +1 -6
- package/dist/src/hybrid/components/Divider/Divider.d.ts +1 -3
- package/dist/src/hybrid/components/Divider/Divider.js +7 -9
- package/dist/src/mobile/common/components/TextFieldBase/TextFieldBase.d.ts +1 -2
- package/dist/src/mobile/common/components/TextFieldBase/TextFieldBase.js +16 -20
- package/dist/src/mobile/components/ChatBubbleListItem/ChatBubbleListItem.d.ts +3 -2
- package/dist/src/mobile/components/ChatBubbleListItem/ChatBubbleListItem.js +8 -3
- package/dist/src/mobile/components/ChatList/Body.d.ts +1 -1
- package/dist/src/mobile/components/index.d.ts +1 -2
- package/dist/src/mobile/components/index.js +1 -3
- package/dist/src/mobile/index.d.ts +1 -1
- package/dist/src/mobile/index.js +2 -3
- package/dist/src/sub/DynamicLayout/CompositionEditor/CompositionEditor.d.ts +22 -0
- package/dist/src/sub/DynamicLayout/CompositionEditor/CompositionEditor.js +1133 -0
- package/dist/src/sub/DynamicLayout/CompositionRenderer/ComponentBlockMatcher.js +4 -1
- package/dist/src/sub/DynamicLayout/CompositionRenderer/Composition.d.ts +5 -3
- package/dist/src/sub/DynamicLayout/CompositionRenderer/Composition.js +53 -53
- package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionBackground.d.ts +11 -0
- package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionBackground.js +45 -0
- package/dist/src/sub/DynamicLayout/CompositionRenderer/createCompositions.d.ts +10 -0
- package/dist/src/sub/DynamicLayout/CompositionRenderer/createCompositions.js +79 -0
- package/dist/src/sub/DynamicLayout/DynamicLayout.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/DynamicLayout.js +4 -2
- package/dist/src/sub/DynamicLayout/components/Section/components/CustomSectionBackgroundMedia.js +24 -2
- package/dist/src/sub/DynamicLayout/components/Section/sectionContext.d.ts +2 -2
- package/dist/src/sub/DynamicLayout/components/Section/util/parseSectionBackgroundMediaData.js +3 -1
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/downIcons.d.ts +12 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/downIcons.js +76 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/index.d.ts +4 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/index.js +47 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/leftIcons.d.ts +12 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/leftIcons.js +76 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/rightIcons.d.ts +12 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/rightIcons.js +76 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/upIcons.d.ts +12 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/upIcons.js +76 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/index.d.ts +40 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/index.js +36 -177
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/PaletteColor_Dark.json +152 -4
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/PaletteColor_light.json +150 -2
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/SemanticColor.json +45 -1
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/UIColor.json +262 -9
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/index.d.ts +593 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/ui-type.d.ts +253 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/desktop/IconButton/IconButton.d.ts +3 -1
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/desktop/IconButton/IconButton.js +5 -3
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/hybrid/Icon/Icon.d.ts +2 -1
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/hybrid/Icon/Icon.js +9 -2
- package/dist/src/sub/DynamicLayout/compositionActionTypes.d.ts +139 -0
- package/dist/src/sub/DynamicLayout/compositionQueryContext.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/compositionQueryContext.js +14 -0
- package/dist/src/sub/DynamicLayout/mock_componentBlocks.d.ts +776 -0
- package/dist/src/sub/DynamicLayout/mock_componentBlocks.js +4236 -0
- package/dist/src/sub/DynamicLayout/mock_composition.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/mock_composition.js +1607 -0
- package/dist/src/sub/DynamicLayout/mock_contentsCarousel.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/mock_contentsCarousel.js +1111 -0
- package/dist/src/sub/DynamicLayout/mock_contentsList.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/mock_contentsList.js +1091 -0
- package/dist/src/sub/DynamicLayout/mock_queryData.d.ts +96 -0
- package/dist/src/sub/DynamicLayout/mock_queryData.js +2639 -0
- package/dist/src/sub/DynamicLayout/mock_slideBanner.d.ts +842 -0
- package/dist/src/sub/DynamicLayout/mock_slideBanner.js +854 -0
- package/dist/src/sub/DynamicLayout/mock_video.d.ts +368 -0
- package/dist/src/sub/DynamicLayout/mock_video.js +371 -0
- package/dist/src/sub/DynamicLayout/mock_video_cb.d.ts +0 -1
- package/dist/src/sub/DynamicLayout/mock_video_cb.js +4 -5
- package/dist/src/sub/DynamicLayout/mocks.d.ts +8 -961
- package/dist/src/sub/DynamicLayout/mocks.js +55 -4239
- package/dist/src/sub/DynamicLayout/sectionActionTypes.d.ts +4 -4
- package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.js +7 -7
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlockMatcher.js +13 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/Button.js +18 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarousel.d.ts +10 -4
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarousel.js +134 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarouselCore.d.ts +12 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarouselCore.js +61 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationNextBtn.d.ts +15 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationNextBtn.js +69 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationPrevBtn.d.ts +15 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationPrevBtn.js +69 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomProgressbar.d.ts +9 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomProgressbar.js +87 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/navigationConfigs.d.ts +4 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/navigationConfigs.js +849 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/progressConfigs.d.ts +43 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/progressConfigs.js +162 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/contentsCarouselUtils.d.ts +39 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/contentsCarouselUtils.js +182 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useFlexGridLayout.d.ts +18 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useFlexGridLayout.js +229 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useSwiper.d.ts +14 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useSwiper.js +46 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/types.d.ts +139 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsList.d.ts +14 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsList.js +206 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsListCore.d.ts +17 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsListCore.js +39 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/CustomPagination.d.ts +10 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/CustomPagination.js +85 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/paginationConfigs.d.ts +25 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/paginationConfigs.js +183 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/contentsListUtils.d.ts +29 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/contentsListUtils.js +128 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/hooks/useFlexGridLayout.d.ts +18 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/hooks/useFlexGridLayout.js +229 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/index.d.ts +1 -0
- package/dist/src/{desktop/panels/MultilingualModal → sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList}/index.js +3 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/types.d.ts +67 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/types.js +2 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Image/Image.js +39 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBanner.d.ts +14 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBanner.js +151 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBannerCore.d.ts +12 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBannerCore.js +39 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationNextBtn.d.ts +15 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationNextBtn.js +69 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationPrevBtn.d.ts +15 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationPrevBtn.js +69 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomPagination.d.ts +20 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomPagination.js +173 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomProgressbar.d.ts +9 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomProgressbar.js +87 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/navigationConfigs.d.ts +4 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/navigationConfigs.js +849 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/progressConfigs.d.ts +43 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/progressConfigs.js +162 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useFlexGridLayout.d.ts +18 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useFlexGridLayout.js +229 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useSwiper.d.ts +16 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useSwiper.js +63 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/index.d.ts +1 -0
- package/dist/src/{desktop/components/BoxItem/LeftBox → sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner}/index.js +3 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/slideBannerUtils.d.ts +46 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/slideBannerUtils.js +186 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/types.d.ts +163 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/types.js +2 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/Text.js +38 -7
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/textSpecFormatOptions.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/textSpecFormatOptions.js +211 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/VideoPlayer/VideoPlayer.js +3 -28
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/VideoPlayer/helper.d.ts +0 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/VideoPlayer/helper.js +5 -15
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/types.d.ts +49 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/group.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/replaceUndefinedValues.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/types.d.ts +27 -10
- package/dist/src/sub/DynamicLayout/sections/CustomSection/types.js +3 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/effectPropParsers/parseEffectPropEntAnim.d.ts +4 -4
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/layoutPropParsers/parseLayoutPropPadding.d.ts +2 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseCompositionPlacement.d.ts +14 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseCompositionPlacement.js +26 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseJsonProperties.d.ts +2 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.d.ts +7 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.js +10 -5
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseProperties.d.ts +2 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropTextSpec.js +2 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/types.d.ts +53 -3
- package/dist/src/sub/DynamicLayout/sections/FlexGridCustomSection.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/sections/FlexGridCustomSection.js +1 -0
- package/dist/src/sub/DynamicLayout/types.d.ts +64 -17
- package/package.json +3 -2
- package/release-note.md +2 -2
- package/dist/src/common/assets/icons/fill/Translate.d.ts +0 -4
- package/dist/src/common/assets/icons/fill/Translate.js +0 -30
- package/dist/src/common/assets/icons/line/Translate.d.ts +0 -4
- package/dist/src/common/assets/icons/line/Translate.js +0 -30
- package/dist/src/common/types/multilingual.d.ts +0 -16
- package/dist/src/desktop/components/BoxItem/BoxItem.d.ts +0 -62
- package/dist/src/desktop/components/BoxItem/BoxItem.js +0 -104
- package/dist/src/desktop/components/BoxItem/LeftBox/Checkbox.d.ts +0 -7
- package/dist/src/desktop/components/BoxItem/LeftBox/Checkbox.js +0 -9
- package/dist/src/desktop/components/BoxItem/LeftBox/Image.d.ts +0 -11
- package/dist/src/desktop/components/BoxItem/LeftBox/Image.js +0 -9
- package/dist/src/desktop/components/BoxItem/LeftBox/LeftBox.d.ts +0 -11
- package/dist/src/desktop/components/BoxItem/LeftBox/LeftBox.js +0 -36
- package/dist/src/desktop/components/BoxItem/LeftBox/index.d.ts +0 -2
- package/dist/src/desktop/components/BoxItem/index.d.ts +0 -1
- package/dist/src/desktop/components/BoxItem/index.js +0 -8
- package/dist/src/desktop/components/Calendar/AllDaySchedulesSection.d.ts +0 -13
- package/dist/src/desktop/components/Calendar/AllDaySchedulesSection.js +0 -132
- package/dist/src/desktop/components/Calendar/Calendar.d.ts +0 -4
- package/dist/src/desktop/components/Calendar/Calendar.js +0 -397
- package/dist/src/desktop/components/Calendar/CurrentTimeIndicator.d.ts +0 -7
- package/dist/src/desktop/components/Calendar/CurrentTimeIndicator.js +0 -48
- package/dist/src/desktop/components/Calendar/DailyView.d.ts +0 -19
- package/dist/src/desktop/components/Calendar/DailyView.js +0 -64
- package/dist/src/desktop/components/Calendar/MonthlyView.d.ts +0 -29
- package/dist/src/desktop/components/Calendar/MonthlyView.js +0 -314
- package/dist/src/desktop/components/Calendar/MultiWeekSchedulesLayer.d.ts +0 -20
- package/dist/src/desktop/components/Calendar/MultiWeekSchedulesLayer.js +0 -155
- package/dist/src/desktop/components/Calendar/ScheduleItem.d.ts +0 -17
- package/dist/src/desktop/components/Calendar/ScheduleItem.js +0 -56
- package/dist/src/desktop/components/Calendar/TimeBasedScheduleItem.d.ts +0 -12
- package/dist/src/desktop/components/Calendar/TimeBasedScheduleItem.js +0 -189
- package/dist/src/desktop/components/Calendar/WeeklyView.d.ts +0 -24
- package/dist/src/desktop/components/Calendar/WeeklyView.js +0 -92
- package/dist/src/desktop/components/Calendar/YearlyView.d.ts +0 -12
- package/dist/src/desktop/components/Calendar/YearlyView.js +0 -76
- package/dist/src/desktop/components/Calendar/calendarUtils.d.ts +0 -24
- package/dist/src/desktop/components/Calendar/calendarUtils.js +0 -87
- package/dist/src/desktop/components/Calendar/constants.d.ts +0 -1
- package/dist/src/desktop/components/Calendar/constants.js +0 -31
- package/dist/src/desktop/components/Calendar/index.d.ts +0 -10
- package/dist/src/desktop/components/Calendar/index.js +0 -37
- package/dist/src/desktop/components/Calendar/timeFormatUtils.d.ts +0 -16
- package/dist/src/desktop/components/Calendar/timeFormatUtils.js +0 -45
- package/dist/src/desktop/components/Calendar/types.d.ts +0 -61
- package/dist/src/desktop/panels/MultilingualModal/MultilingualModal.d.ts +0 -11
- package/dist/src/desktop/panels/MultilingualModal/MultilingualModal.js +0 -198
- package/dist/src/desktop/panels/MultilingualModal/index.d.ts +0 -1
- package/dist/src/mobile/components/BoxItem/BoxItem.d.ts +0 -62
- package/dist/src/mobile/components/BoxItem/BoxItem.js +0 -104
- package/dist/src/mobile/components/BoxItem/LeftBox/Checkbox.d.ts +0 -7
- package/dist/src/mobile/components/BoxItem/LeftBox/Checkbox.js +0 -9
- package/dist/src/mobile/components/BoxItem/LeftBox/Image.d.ts +0 -11
- package/dist/src/mobile/components/BoxItem/LeftBox/Image.js +0 -9
- package/dist/src/mobile/components/BoxItem/LeftBox/LeftBox.d.ts +0 -11
- package/dist/src/mobile/components/BoxItem/LeftBox/LeftBox.js +0 -36
- package/dist/src/mobile/components/BoxItem/LeftBox/index.d.ts +0 -2
- package/dist/src/mobile/components/BoxItem/LeftBox/index.js +0 -8
- package/dist/src/mobile/components/BoxItem/index.d.ts +0 -1
- package/dist/src/mobile/components/BoxItem/index.js +0 -8
- package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionRenderer.d.ts +0 -6
- package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionRenderer.js +0 -27
- /package/dist/src/{common/types/multilingual.js → sub/DynamicLayout/compositionActionTypes.js} +0 -0
- /package/dist/src/{desktop/components/Calendar → sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel}/types.js +0 -0
|
@@ -35,55 +35,6 @@ declare const locale: {
|
|
|
35
35
|
str_3891: string;
|
|
36
36
|
str_3892: string;
|
|
37
37
|
str_3893: string;
|
|
38
|
-
calendar_all_day: string;
|
|
39
|
-
str_calendar_schedule_more: string;
|
|
40
|
-
str_calendar_today: string;
|
|
41
|
-
calendar_month_1: string;
|
|
42
|
-
calendar_month_2: string;
|
|
43
|
-
calendar_month_3: string;
|
|
44
|
-
calendar_month_4: string;
|
|
45
|
-
calendar_month_5: string;
|
|
46
|
-
calendar_month_6: string;
|
|
47
|
-
calendar_month_7: string;
|
|
48
|
-
calendar_month_8: string;
|
|
49
|
-
calendar_month_9: string;
|
|
50
|
-
calendar_month_10: string;
|
|
51
|
-
calendar_month_11: string;
|
|
52
|
-
calendar_month_12: string;
|
|
53
|
-
str_fm_datetime_am: string;
|
|
54
|
-
str_fm_datetime_pm: string;
|
|
55
|
-
calendar_duration_hour: string;
|
|
56
|
-
calendar_duration_hours: string;
|
|
57
|
-
str_fm_datetime_noon: string;
|
|
58
|
-
str_calendar_daily_header: string;
|
|
59
|
-
calendar_header_weekly_same_month: string;
|
|
60
|
-
calendar_header_weekly_diff_month: string;
|
|
61
|
-
str_calendar_yearly_header: string;
|
|
62
|
-
str_calendar_monthly_header: string;
|
|
63
|
-
str_calendar_weekly_header: string;
|
|
64
|
-
calendar_view_monthly: string;
|
|
65
|
-
calendar_view_weekly: string;
|
|
66
|
-
calendar_view_daily: string;
|
|
67
|
-
calendar_view_yearly: string;
|
|
68
|
-
calendar_date_format: string;
|
|
69
|
-
multilingual_settings: string;
|
|
70
|
-
str_multilingual_ko: string;
|
|
71
|
-
str_multilingual_en: string;
|
|
72
|
-
str_multilingual_ja: string;
|
|
73
|
-
str_multilingual_zh_cn: string;
|
|
74
|
-
str_multilingual_zh_tw: string;
|
|
75
|
-
str_multilingual_fr: string;
|
|
76
|
-
str_multilingual_es: string;
|
|
77
|
-
str_9071: string;
|
|
78
|
-
str_original_text: string;
|
|
79
|
-
str_apply: string;
|
|
80
|
-
str_cancel: string;
|
|
81
|
-
str_calendar_weekly_date: string;
|
|
82
|
-
str_fm_year: string;
|
|
83
|
-
str_fm_month: string;
|
|
84
|
-
str_fm_day: string;
|
|
85
|
-
str_fm_week: string;
|
|
86
|
-
str_multilingual_settings: string;
|
|
87
38
|
};
|
|
88
39
|
};
|
|
89
40
|
readonly en: {
|
|
@@ -122,55 +73,6 @@ declare const locale: {
|
|
|
122
73
|
str_3891: string;
|
|
123
74
|
str_3892: string;
|
|
124
75
|
str_3893: string;
|
|
125
|
-
calendar_all_day: string;
|
|
126
|
-
str_calendar_schedule_more: string;
|
|
127
|
-
str_calendar_today: string;
|
|
128
|
-
calendar_month_1: string;
|
|
129
|
-
calendar_month_2: string;
|
|
130
|
-
calendar_month_3: string;
|
|
131
|
-
calendar_month_4: string;
|
|
132
|
-
calendar_month_5: string;
|
|
133
|
-
calendar_month_6: string;
|
|
134
|
-
calendar_month_7: string;
|
|
135
|
-
calendar_month_8: string;
|
|
136
|
-
calendar_month_9: string;
|
|
137
|
-
calendar_month_10: string;
|
|
138
|
-
calendar_month_11: string;
|
|
139
|
-
calendar_month_12: string;
|
|
140
|
-
str_fm_datetime_am: string;
|
|
141
|
-
str_fm_datetime_pm: string;
|
|
142
|
-
calendar_duration_hour: string;
|
|
143
|
-
calendar_duration_hours: string;
|
|
144
|
-
str_fm_datetime_noon: string;
|
|
145
|
-
str_calendar_daily_header: string;
|
|
146
|
-
calendar_header_weekly_same_month: string;
|
|
147
|
-
calendar_header_weekly_diff_month: string;
|
|
148
|
-
str_calendar_yearly_header: string;
|
|
149
|
-
str_calendar_monthly_header: string;
|
|
150
|
-
str_calendar_weekly_header: string;
|
|
151
|
-
calendar_view_monthly: string;
|
|
152
|
-
calendar_view_weekly: string;
|
|
153
|
-
calendar_view_daily: string;
|
|
154
|
-
calendar_view_yearly: string;
|
|
155
|
-
calendar_date_format: string;
|
|
156
|
-
multilingual_settings: string;
|
|
157
|
-
str_multilingual_ko: string;
|
|
158
|
-
str_multilingual_en: string;
|
|
159
|
-
str_multilingual_ja: string;
|
|
160
|
-
str_multilingual_zh_cn: string;
|
|
161
|
-
str_multilingual_zh_tw: string;
|
|
162
|
-
str_multilingual_fr: string;
|
|
163
|
-
str_multilingual_es: string;
|
|
164
|
-
str_9071: string;
|
|
165
|
-
str_original_text: string;
|
|
166
|
-
str_apply: string;
|
|
167
|
-
str_cancel: string;
|
|
168
|
-
str_calendar_weekly_date: string;
|
|
169
|
-
str_fm_year: string;
|
|
170
|
-
str_fm_month: string;
|
|
171
|
-
str_fm_day: string;
|
|
172
|
-
str_fm_week: string;
|
|
173
|
-
str_multilingual_settings: string;
|
|
174
76
|
};
|
|
175
77
|
};
|
|
176
78
|
readonly ja: {
|
|
@@ -209,55 +111,6 @@ declare const locale: {
|
|
|
209
111
|
str_3891: string;
|
|
210
112
|
str_3892: string;
|
|
211
113
|
str_3893: string;
|
|
212
|
-
calendar_all_day: string;
|
|
213
|
-
str_calendar_schedule_more: string;
|
|
214
|
-
str_calendar_today: string;
|
|
215
|
-
calendar_month_1: string;
|
|
216
|
-
calendar_month_2: string;
|
|
217
|
-
calendar_month_3: string;
|
|
218
|
-
calendar_month_4: string;
|
|
219
|
-
calendar_month_5: string;
|
|
220
|
-
calendar_month_6: string;
|
|
221
|
-
calendar_month_7: string;
|
|
222
|
-
calendar_month_8: string;
|
|
223
|
-
calendar_month_9: string;
|
|
224
|
-
calendar_month_10: string;
|
|
225
|
-
calendar_month_11: string;
|
|
226
|
-
calendar_month_12: string;
|
|
227
|
-
str_fm_datetime_am: string;
|
|
228
|
-
str_fm_datetime_pm: string;
|
|
229
|
-
calendar_duration_hour: string;
|
|
230
|
-
calendar_duration_hours: string;
|
|
231
|
-
str_fm_datetime_noon: string;
|
|
232
|
-
str_calendar_daily_header: string;
|
|
233
|
-
calendar_header_weekly_same_month: string;
|
|
234
|
-
calendar_header_weekly_diff_month: string;
|
|
235
|
-
str_calendar_yearly_header: string;
|
|
236
|
-
str_calendar_monthly_header: string;
|
|
237
|
-
str_calendar_weekly_header: string;
|
|
238
|
-
calendar_view_monthly: string;
|
|
239
|
-
calendar_view_weekly: string;
|
|
240
|
-
calendar_view_daily: string;
|
|
241
|
-
calendar_view_yearly: string;
|
|
242
|
-
calendar_date_format: string;
|
|
243
|
-
multilingual_settings: string;
|
|
244
|
-
str_multilingual_ko: string;
|
|
245
|
-
str_multilingual_en: string;
|
|
246
|
-
str_multilingual_ja: string;
|
|
247
|
-
str_multilingual_zh_cn: string;
|
|
248
|
-
str_multilingual_zh_tw: string;
|
|
249
|
-
str_multilingual_fr: string;
|
|
250
|
-
str_multilingual_es: string;
|
|
251
|
-
str_9071: string;
|
|
252
|
-
str_original_text: string;
|
|
253
|
-
str_apply: string;
|
|
254
|
-
str_cancel: string;
|
|
255
|
-
str_calendar_weekly_date: string;
|
|
256
|
-
str_fm_year: string;
|
|
257
|
-
str_fm_month: string;
|
|
258
|
-
str_fm_day: string;
|
|
259
|
-
str_fm_week: string;
|
|
260
|
-
str_multilingual_settings: string;
|
|
261
114
|
};
|
|
262
115
|
};
|
|
263
116
|
readonly es: {
|
|
@@ -296,55 +149,6 @@ declare const locale: {
|
|
|
296
149
|
str_3891: string;
|
|
297
150
|
str_3892: string;
|
|
298
151
|
str_3893: string;
|
|
299
|
-
calendar_all_day: string;
|
|
300
|
-
str_calendar_schedule_more: string;
|
|
301
|
-
str_calendar_today: string;
|
|
302
|
-
calendar_month_1: string;
|
|
303
|
-
calendar_month_2: string;
|
|
304
|
-
calendar_month_3: string;
|
|
305
|
-
calendar_month_4: string;
|
|
306
|
-
calendar_month_5: string;
|
|
307
|
-
calendar_month_6: string;
|
|
308
|
-
calendar_month_7: string;
|
|
309
|
-
calendar_month_8: string;
|
|
310
|
-
calendar_month_9: string;
|
|
311
|
-
calendar_month_10: string;
|
|
312
|
-
calendar_month_11: string;
|
|
313
|
-
calendar_month_12: string;
|
|
314
|
-
str_fm_datetime_am: string;
|
|
315
|
-
str_fm_datetime_pm: string;
|
|
316
|
-
calendar_duration_hour: string;
|
|
317
|
-
calendar_duration_hours: string;
|
|
318
|
-
str_fm_datetime_noon: string;
|
|
319
|
-
str_calendar_daily_header: string;
|
|
320
|
-
calendar_header_weekly_same_month: string;
|
|
321
|
-
calendar_header_weekly_diff_month: string;
|
|
322
|
-
str_calendar_yearly_header: string;
|
|
323
|
-
str_calendar_monthly_header: string;
|
|
324
|
-
str_calendar_weekly_header: string;
|
|
325
|
-
calendar_view_monthly: string;
|
|
326
|
-
calendar_view_weekly: string;
|
|
327
|
-
calendar_view_daily: string;
|
|
328
|
-
calendar_view_yearly: string;
|
|
329
|
-
multilingual_settings: string;
|
|
330
|
-
str_multilingual_ko: string;
|
|
331
|
-
str_multilingual_en: string;
|
|
332
|
-
str_multilingual_ja: string;
|
|
333
|
-
str_multilingual_zh_cn: string;
|
|
334
|
-
str_multilingual_zh_tw: string;
|
|
335
|
-
str_multilingual_fr: string;
|
|
336
|
-
str_multilingual_es: string;
|
|
337
|
-
str_9071: string;
|
|
338
|
-
str_original_text: string;
|
|
339
|
-
str_apply: string;
|
|
340
|
-
str_cancel: string;
|
|
341
|
-
calendar_date_format: string;
|
|
342
|
-
str_calendar_weekly_date: string;
|
|
343
|
-
str_fm_year: string;
|
|
344
|
-
str_fm_month: string;
|
|
345
|
-
str_fm_day: string;
|
|
346
|
-
str_fm_week: string;
|
|
347
|
-
str_multilingual_settings: string;
|
|
348
152
|
};
|
|
349
153
|
};
|
|
350
154
|
readonly 'zh-cn': {
|
|
@@ -383,55 +187,6 @@ declare const locale: {
|
|
|
383
187
|
str_3891: string;
|
|
384
188
|
str_3892: string;
|
|
385
189
|
str_3893: string;
|
|
386
|
-
calendar_all_day: string;
|
|
387
|
-
str_calendar_schedule_more: string;
|
|
388
|
-
str_calendar_today: string;
|
|
389
|
-
calendar_month_1: string;
|
|
390
|
-
calendar_month_2: string;
|
|
391
|
-
calendar_month_3: string;
|
|
392
|
-
calendar_month_4: string;
|
|
393
|
-
calendar_month_5: string;
|
|
394
|
-
calendar_month_6: string;
|
|
395
|
-
calendar_month_7: string;
|
|
396
|
-
calendar_month_8: string;
|
|
397
|
-
calendar_month_9: string;
|
|
398
|
-
calendar_month_10: string;
|
|
399
|
-
calendar_month_11: string;
|
|
400
|
-
calendar_month_12: string;
|
|
401
|
-
str_fm_datetime_am: string;
|
|
402
|
-
str_fm_datetime_pm: string;
|
|
403
|
-
calendar_duration_hour: string;
|
|
404
|
-
calendar_duration_hours: string;
|
|
405
|
-
str_fm_datetime_noon: string;
|
|
406
|
-
str_calendar_daily_header: string;
|
|
407
|
-
calendar_header_weekly_same_month: string;
|
|
408
|
-
calendar_header_weekly_diff_month: string;
|
|
409
|
-
str_calendar_yearly_header: string;
|
|
410
|
-
str_calendar_monthly_header: string;
|
|
411
|
-
str_calendar_weekly_header: string;
|
|
412
|
-
calendar_view_monthly: string;
|
|
413
|
-
calendar_view_weekly: string;
|
|
414
|
-
calendar_view_daily: string;
|
|
415
|
-
calendar_view_yearly: string;
|
|
416
|
-
calendar_date_format: string;
|
|
417
|
-
multilingual_settings: string;
|
|
418
|
-
str_multilingual_ko: string;
|
|
419
|
-
str_multilingual_en: string;
|
|
420
|
-
str_multilingual_ja: string;
|
|
421
|
-
str_multilingual_zh_cn: string;
|
|
422
|
-
str_multilingual_zh_tw: string;
|
|
423
|
-
str_multilingual_fr: string;
|
|
424
|
-
str_multilingual_es: string;
|
|
425
|
-
str_9071: string;
|
|
426
|
-
str_original_text: string;
|
|
427
|
-
str_apply: string;
|
|
428
|
-
str_cancel: string;
|
|
429
|
-
str_calendar_weekly_date: string;
|
|
430
|
-
str_fm_year: string;
|
|
431
|
-
str_fm_month: string;
|
|
432
|
-
str_fm_day: string;
|
|
433
|
-
str_fm_week: string;
|
|
434
|
-
str_multilingual_settings: string;
|
|
435
190
|
};
|
|
436
191
|
};
|
|
437
192
|
readonly 'zh-tw': {
|
|
@@ -470,55 +225,6 @@ declare const locale: {
|
|
|
470
225
|
str_3891: string;
|
|
471
226
|
str_3892: string;
|
|
472
227
|
str_3893: string;
|
|
473
|
-
calendar_all_day: string;
|
|
474
|
-
str_calendar_schedule_more: string;
|
|
475
|
-
str_calendar_today: string;
|
|
476
|
-
calendar_month_1: string;
|
|
477
|
-
calendar_month_2: string;
|
|
478
|
-
calendar_month_3: string;
|
|
479
|
-
calendar_month_4: string;
|
|
480
|
-
calendar_month_5: string;
|
|
481
|
-
calendar_month_6: string;
|
|
482
|
-
calendar_month_7: string;
|
|
483
|
-
calendar_month_8: string;
|
|
484
|
-
calendar_month_9: string;
|
|
485
|
-
calendar_month_10: string;
|
|
486
|
-
calendar_month_11: string;
|
|
487
|
-
calendar_month_12: string;
|
|
488
|
-
str_fm_datetime_am: string;
|
|
489
|
-
str_fm_datetime_pm: string;
|
|
490
|
-
calendar_duration_hour: string;
|
|
491
|
-
calendar_duration_hours: string;
|
|
492
|
-
str_fm_datetime_noon: string;
|
|
493
|
-
str_calendar_daily_header: string;
|
|
494
|
-
calendar_header_weekly_same_month: string;
|
|
495
|
-
calendar_header_weekly_diff_month: string;
|
|
496
|
-
str_calendar_yearly_header: string;
|
|
497
|
-
str_calendar_monthly_header: string;
|
|
498
|
-
str_calendar_weekly_header: string;
|
|
499
|
-
calendar_view_monthly: string;
|
|
500
|
-
calendar_view_weekly: string;
|
|
501
|
-
calendar_view_daily: string;
|
|
502
|
-
calendar_view_yearly: string;
|
|
503
|
-
calendar_date_format: string;
|
|
504
|
-
multilingual_settings: string;
|
|
505
|
-
str_multilingual_ko: string;
|
|
506
|
-
str_multilingual_en: string;
|
|
507
|
-
str_multilingual_ja: string;
|
|
508
|
-
str_multilingual_zh_cn: string;
|
|
509
|
-
str_multilingual_zh_tw: string;
|
|
510
|
-
str_multilingual_fr: string;
|
|
511
|
-
str_multilingual_es: string;
|
|
512
|
-
str_9071: string;
|
|
513
|
-
str_original_text: string;
|
|
514
|
-
str_apply: string;
|
|
515
|
-
str_cancel: string;
|
|
516
|
-
str_calendar_weekly_date: string;
|
|
517
|
-
str_fm_year: string;
|
|
518
|
-
str_fm_month: string;
|
|
519
|
-
str_fm_day: string;
|
|
520
|
-
str_fm_week: string;
|
|
521
|
-
str_multilingual_settings: string;
|
|
522
228
|
};
|
|
523
229
|
};
|
|
524
230
|
readonly fil: {
|
|
@@ -557,55 +263,6 @@ declare const locale: {
|
|
|
557
263
|
str_3891: string;
|
|
558
264
|
str_3892: string;
|
|
559
265
|
str_3893: string;
|
|
560
|
-
calendar_all_day: string;
|
|
561
|
-
str_calendar_schedule_more: string;
|
|
562
|
-
str_calendar_today: string;
|
|
563
|
-
calendar_month_1: string;
|
|
564
|
-
calendar_month_2: string;
|
|
565
|
-
calendar_month_3: string;
|
|
566
|
-
calendar_month_4: string;
|
|
567
|
-
calendar_month_5: string;
|
|
568
|
-
calendar_month_6: string;
|
|
569
|
-
calendar_month_7: string;
|
|
570
|
-
calendar_month_8: string;
|
|
571
|
-
calendar_month_9: string;
|
|
572
|
-
calendar_month_10: string;
|
|
573
|
-
calendar_month_11: string;
|
|
574
|
-
calendar_month_12: string;
|
|
575
|
-
str_fm_datetime_am: string;
|
|
576
|
-
str_fm_datetime_pm: string;
|
|
577
|
-
calendar_duration_hour: string;
|
|
578
|
-
calendar_duration_hours: string;
|
|
579
|
-
str_fm_datetime_noon: string;
|
|
580
|
-
str_calendar_daily_header: string;
|
|
581
|
-
calendar_header_weekly_same_month: string;
|
|
582
|
-
calendar_header_weekly_diff_month: string;
|
|
583
|
-
str_calendar_yearly_header: string;
|
|
584
|
-
str_calendar_monthly_header: string;
|
|
585
|
-
str_calendar_weekly_header: string;
|
|
586
|
-
calendar_view_monthly: string;
|
|
587
|
-
calendar_view_weekly: string;
|
|
588
|
-
calendar_view_daily: string;
|
|
589
|
-
calendar_view_yearly: string;
|
|
590
|
-
multilingual_settings: string;
|
|
591
|
-
str_multilingual_ko: string;
|
|
592
|
-
str_multilingual_en: string;
|
|
593
|
-
str_multilingual_ja: string;
|
|
594
|
-
str_multilingual_zh_cn: string;
|
|
595
|
-
str_multilingual_zh_tw: string;
|
|
596
|
-
str_multilingual_fr: string;
|
|
597
|
-
str_multilingual_es: string;
|
|
598
|
-
str_9071: string;
|
|
599
|
-
str_original_text: string;
|
|
600
|
-
str_apply: string;
|
|
601
|
-
str_cancel: string;
|
|
602
|
-
calendar_date_format: string;
|
|
603
|
-
str_calendar_weekly_date: string;
|
|
604
|
-
str_fm_year: string;
|
|
605
|
-
str_fm_month: string;
|
|
606
|
-
str_fm_day: string;
|
|
607
|
-
str_fm_week: string;
|
|
608
|
-
str_multilingual_settings: string;
|
|
609
266
|
};
|
|
610
267
|
};
|
|
611
268
|
};
|
|
@@ -33,55 +33,6 @@
|
|
|
33
33
|
"str_3890": "木",
|
|
34
34
|
"str_3891": "金",
|
|
35
35
|
"str_3892": "土",
|
|
36
|
-
"str_3893": "日"
|
|
37
|
-
"calendar_all_day": "終日",
|
|
38
|
-
"str_calendar_schedule_more": "{{count}}件以上",
|
|
39
|
-
"str_calendar_today": "今日",
|
|
40
|
-
"calendar_month_1": "1月",
|
|
41
|
-
"calendar_month_2": "2月",
|
|
42
|
-
"calendar_month_3": "3月",
|
|
43
|
-
"calendar_month_4": "4月",
|
|
44
|
-
"calendar_month_5": "5月",
|
|
45
|
-
"calendar_month_6": "6月",
|
|
46
|
-
"calendar_month_7": "7月",
|
|
47
|
-
"calendar_month_8": "8月",
|
|
48
|
-
"calendar_month_9": "9月",
|
|
49
|
-
"calendar_month_10": "10月",
|
|
50
|
-
"calendar_month_11": "11月",
|
|
51
|
-
"calendar_month_12": "12月",
|
|
52
|
-
"str_fm_datetime_am": "午前{{hour}}時",
|
|
53
|
-
"str_fm_datetime_pm": "午後{{hour}}時",
|
|
54
|
-
"calendar_duration_hour": "時間",
|
|
55
|
-
"calendar_duration_hours": "時間",
|
|
56
|
-
"str_fm_datetime_noon": "昼",
|
|
57
|
-
"str_calendar_daily_header": "{{month}} {{day}}, {{year}}",
|
|
58
|
-
"calendar_header_weekly_same_month": "{{month}}{{startDay}}日 - {{endDay}}日",
|
|
59
|
-
"calendar_header_weekly_diff_month": "{{startMonth}}{{startDay}}日 - {{endMonth}}{{endDay}}日",
|
|
60
|
-
"str_calendar_yearly_header": "{{year}}",
|
|
61
|
-
"str_calendar_monthly_header": "{{month}}.{{year}}",
|
|
62
|
-
"str_calendar_weekly_header": "{{month}}.{{year}}",
|
|
63
|
-
"calendar_view_monthly": "月",
|
|
64
|
-
"calendar_view_weekly": "週",
|
|
65
|
-
"calendar_view_daily": "日",
|
|
66
|
-
"calendar_view_yearly": "年",
|
|
67
|
-
"calendar_date_format": "{{day}}日 ({{dayText}})",
|
|
68
|
-
"multilingual_settings": "多言語設定",
|
|
69
|
-
"str_multilingual_ko": "韓国語",
|
|
70
|
-
"str_multilingual_en": "英語",
|
|
71
|
-
"str_multilingual_ja": "日本語",
|
|
72
|
-
"str_multilingual_zh_cn": "中国語 - 簡体",
|
|
73
|
-
"str_multilingual_zh_tw": "中国語 - 繁体",
|
|
74
|
-
"str_multilingual_fr": "フランス語",
|
|
75
|
-
"str_multilingual_es": "スペイン語",
|
|
76
|
-
"str_9071": "国に適した言語を入力してください。",
|
|
77
|
-
"str_original_text": "原文",
|
|
78
|
-
"str_apply": "適用",
|
|
79
|
-
"str_cancel": "キャンセル",
|
|
80
|
-
"str_calendar_weekly_date": "{{month}}月{{date}}日 ({{day}})",
|
|
81
|
-
"str_fm_year": "年",
|
|
82
|
-
"str_fm_month": "月",
|
|
83
|
-
"str_fm_day": "日",
|
|
84
|
-
"str_fm_week": "週",
|
|
85
|
-
"str_multilingual_settings": "多言語設定"
|
|
36
|
+
"str_3893": "日"
|
|
86
37
|
}
|
|
87
38
|
}
|
|
@@ -33,55 +33,6 @@
|
|
|
33
33
|
"str_3890": "목",
|
|
34
34
|
"str_3891": "금",
|
|
35
35
|
"str_3892": "토",
|
|
36
|
-
"str_3893": "일"
|
|
37
|
-
"calendar_all_day": "종일",
|
|
38
|
-
"str_calendar_schedule_more": "{{count}}개 더보기",
|
|
39
|
-
"str_calendar_today": "오늘",
|
|
40
|
-
"calendar_month_1": "1월",
|
|
41
|
-
"calendar_month_2": "2월",
|
|
42
|
-
"calendar_month_3": "3월",
|
|
43
|
-
"calendar_month_4": "4월",
|
|
44
|
-
"calendar_month_5": "5월",
|
|
45
|
-
"calendar_month_6": "6월",
|
|
46
|
-
"calendar_month_7": "7월",
|
|
47
|
-
"calendar_month_8": "8월",
|
|
48
|
-
"calendar_month_9": "9월",
|
|
49
|
-
"calendar_month_10": "10월",
|
|
50
|
-
"calendar_month_11": "11월",
|
|
51
|
-
"calendar_month_12": "12월",
|
|
52
|
-
"str_fm_datetime_am": "오전 {{hour}}시",
|
|
53
|
-
"str_fm_datetime_pm": "오후 {{hour}}시",
|
|
54
|
-
"calendar_duration_hour": "시간",
|
|
55
|
-
"calendar_duration_hours": "시간",
|
|
56
|
-
"str_fm_datetime_noon": "정오",
|
|
57
|
-
"str_calendar_daily_header": "{{year}}년 {{month}}월 {{day}}일",
|
|
58
|
-
"calendar_header_weekly_same_month": "{{month}} {{startDay}}일 - {{endDay}}일",
|
|
59
|
-
"calendar_header_weekly_diff_month": "{{startMonth}} {{startDay}}일 - {{endMonth}} {{endDay}}일",
|
|
60
|
-
"str_calendar_yearly_header": "{{year}}년",
|
|
61
|
-
"str_calendar_monthly_header": "{{year}}년 {{month}}월",
|
|
62
|
-
"str_calendar_weekly_header": "{{year}}년 {{month}}월",
|
|
63
|
-
"calendar_view_monthly": "월간",
|
|
64
|
-
"calendar_view_weekly": "주간",
|
|
65
|
-
"calendar_view_daily": "일간",
|
|
66
|
-
"calendar_view_yearly": "연간",
|
|
67
|
-
"calendar_date_format": "{{day}}일 ({{dayText}})",
|
|
68
|
-
"multilingual_settings": "다국어 설정",
|
|
69
|
-
"str_multilingual_ko": "한국어",
|
|
70
|
-
"str_multilingual_en": "영어",
|
|
71
|
-
"str_multilingual_ja": "일본어",
|
|
72
|
-
"str_multilingual_zh_cn": "중국어 - 간체",
|
|
73
|
-
"str_multilingual_zh_tw": "중국어 - 번체",
|
|
74
|
-
"str_multilingual_fr": "프랑스어",
|
|
75
|
-
"str_multilingual_es": "스페인어",
|
|
76
|
-
"str_9071": "국가에 맞는 언어를 입력해 주세요.",
|
|
77
|
-
"str_original_text": "원문",
|
|
78
|
-
"str_apply": "적용",
|
|
79
|
-
"str_cancel": "취소",
|
|
80
|
-
"str_calendar_weekly_date": "{{month}}월 {{date}}일 ({{day}})",
|
|
81
|
-
"str_fm_year": "년",
|
|
82
|
-
"str_fm_month": "월",
|
|
83
|
-
"str_fm_day": "일",
|
|
84
|
-
"str_fm_week": "주",
|
|
85
|
-
"str_multilingual_settings": "다국어 설정"
|
|
36
|
+
"str_3893": "일"
|
|
86
37
|
}
|
|
87
38
|
}
|
|
@@ -33,55 +33,6 @@
|
|
|
33
33
|
"str_3890": "Thu",
|
|
34
34
|
"str_3891": "Fri",
|
|
35
35
|
"str_3892": "Sat",
|
|
36
|
-
"str_3893": "Sun"
|
|
37
|
-
"calendar_all_day": "全天",
|
|
38
|
-
"str_calendar_schedule_more": "{{count}} 更多",
|
|
39
|
-
"str_calendar_today": "今天",
|
|
40
|
-
"calendar_month_1": "1月",
|
|
41
|
-
"calendar_month_2": "2月",
|
|
42
|
-
"calendar_month_3": "3月",
|
|
43
|
-
"calendar_month_4": "4月",
|
|
44
|
-
"calendar_month_5": "5月",
|
|
45
|
-
"calendar_month_6": "6月",
|
|
46
|
-
"calendar_month_7": "7月",
|
|
47
|
-
"calendar_month_8": "8月",
|
|
48
|
-
"calendar_month_9": "9月",
|
|
49
|
-
"calendar_month_10": "10月",
|
|
50
|
-
"calendar_month_11": "11月",
|
|
51
|
-
"calendar_month_12": "12月",
|
|
52
|
-
"str_fm_datetime_am": "上午{{hour}}时",
|
|
53
|
-
"str_fm_datetime_pm": "下午{{hour}}时",
|
|
54
|
-
"calendar_duration_hour": "小时",
|
|
55
|
-
"calendar_duration_hours": "小时",
|
|
56
|
-
"str_fm_datetime_noon": "中午",
|
|
57
|
-
"str_calendar_daily_header": "{{year}}年{{month}}{{day}}日",
|
|
58
|
-
"calendar_header_weekly_same_month": "{{month}}{{startDay}}日 - {{endDay}}日",
|
|
59
|
-
"calendar_header_weekly_diff_month": "{{startMonth}}{{startDay}}日 - {{endMonth}}{{endDay}}日",
|
|
60
|
-
"str_calendar_yearly_header": "{{year}}",
|
|
61
|
-
"str_calendar_monthly_header": "{{month}}.{{year}}",
|
|
62
|
-
"str_calendar_weekly_header": "{{month}}.{{year}}",
|
|
63
|
-
"calendar_view_monthly": "月",
|
|
64
|
-
"calendar_view_weekly": "周",
|
|
65
|
-
"calendar_view_daily": "日",
|
|
66
|
-
"calendar_view_yearly": "年",
|
|
67
|
-
"calendar_date_format": "{{day}}日 ({{dayText}})",
|
|
68
|
-
"multilingual_settings": "多语言设置",
|
|
69
|
-
"str_multilingual_ko": "韩语",
|
|
70
|
-
"str_multilingual_en": "英语",
|
|
71
|
-
"str_multilingual_ja": "日语",
|
|
72
|
-
"str_multilingual_zh_cn": "中文 - 简体",
|
|
73
|
-
"str_multilingual_zh_tw": "中文 - 繁体",
|
|
74
|
-
"str_multilingual_fr": "法语",
|
|
75
|
-
"str_multilingual_es": "西班牙语",
|
|
76
|
-
"str_9071": "请输入适合您国家的语言。",
|
|
77
|
-
"str_original_text": "原文",
|
|
78
|
-
"str_apply": "应用",
|
|
79
|
-
"str_cancel": "取消",
|
|
80
|
-
"str_calendar_weekly_date": "{{month}}月{{date}}日 ({{day}})",
|
|
81
|
-
"str_fm_year": "年份",
|
|
82
|
-
"str_fm_month": "月",
|
|
83
|
-
"str_fm_day": "日",
|
|
84
|
-
"str_fm_week": "周",
|
|
85
|
-
"str_multilingual_settings": "多语言设置"
|
|
36
|
+
"str_3893": "Sun"
|
|
86
37
|
}
|
|
87
38
|
}
|
|
@@ -33,55 +33,6 @@
|
|
|
33
33
|
"str_3890": "Thu",
|
|
34
34
|
"str_3891": "Fri",
|
|
35
35
|
"str_3892": "Sat",
|
|
36
|
-
"str_3893": "Sun"
|
|
37
|
-
"calendar_all_day": "全天",
|
|
38
|
-
"str_calendar_schedule_more": "{{count}} 更多",
|
|
39
|
-
"str_calendar_today": "今天",
|
|
40
|
-
"calendar_month_1": "1月",
|
|
41
|
-
"calendar_month_2": "2月",
|
|
42
|
-
"calendar_month_3": "3月",
|
|
43
|
-
"calendar_month_4": "4月",
|
|
44
|
-
"calendar_month_5": "5月",
|
|
45
|
-
"calendar_month_6": "6月",
|
|
46
|
-
"calendar_month_7": "7月",
|
|
47
|
-
"calendar_month_8": "8月",
|
|
48
|
-
"calendar_month_9": "9月",
|
|
49
|
-
"calendar_month_10": "10月",
|
|
50
|
-
"calendar_month_11": "11月",
|
|
51
|
-
"calendar_month_12": "12月",
|
|
52
|
-
"str_fm_datetime_am": "上午{{hour}}時",
|
|
53
|
-
"str_fm_datetime_pm": "下午{{hour}}時",
|
|
54
|
-
"calendar_duration_hour": "小時",
|
|
55
|
-
"calendar_duration_hours": "小時",
|
|
56
|
-
"str_fm_datetime_noon": "中午",
|
|
57
|
-
"str_calendar_daily_header": "{{year}}年{{month}}{{day}}日",
|
|
58
|
-
"calendar_header_weekly_same_month": "{{month}}{{startDay}}日 - {{endDay}}日",
|
|
59
|
-
"calendar_header_weekly_diff_month": "{{startMonth}}{{startDay}}日 - {{endMonth}}{{endDay}}日",
|
|
60
|
-
"str_calendar_yearly_header": "{{year}}",
|
|
61
|
-
"str_calendar_monthly_header": "{{month}}.{{year}}",
|
|
62
|
-
"str_calendar_weekly_header": "{{month}}.{{year}}",
|
|
63
|
-
"calendar_view_monthly": "月",
|
|
64
|
-
"calendar_view_weekly": "周",
|
|
65
|
-
"calendar_view_daily": "日",
|
|
66
|
-
"calendar_view_yearly": "年",
|
|
67
|
-
"calendar_date_format": "{{day}}日 ({{dayText}})",
|
|
68
|
-
"multilingual_settings": "多語言設置",
|
|
69
|
-
"str_multilingual_ko": "韓語",
|
|
70
|
-
"str_multilingual_en": "英語",
|
|
71
|
-
"str_multilingual_ja": "日語",
|
|
72
|
-
"str_multilingual_zh_cn": "中文 - 簡體",
|
|
73
|
-
"str_multilingual_zh_tw": "中文 - 繁體",
|
|
74
|
-
"str_multilingual_fr": "法語",
|
|
75
|
-
"str_multilingual_es": "西班牙語",
|
|
76
|
-
"str_9071": "請輸入適合您國家的語言。",
|
|
77
|
-
"str_original_text": "原文",
|
|
78
|
-
"str_apply": "應用",
|
|
79
|
-
"str_cancel": "取消",
|
|
80
|
-
"str_calendar_weekly_date": "{{month}}月{{date}}日 ({{day}})",
|
|
81
|
-
"str_fm_year": "年份",
|
|
82
|
-
"str_fm_month": "月",
|
|
83
|
-
"str_fm_day": "日",
|
|
84
|
-
"str_fm_week": "週",
|
|
85
|
-
"str_multilingual_settings": "多語言設定"
|
|
36
|
+
"str_3893": "Sun"
|
|
86
37
|
}
|
|
87
38
|
}
|
|
@@ -123,7 +123,7 @@ declare const colorSet: {
|
|
|
123
123
|
grey450: string;
|
|
124
124
|
darkgrey450: string;
|
|
125
125
|
};
|
|
126
|
-
readonly
|
|
126
|
+
readonly PaletteColor_Dark: {
|
|
127
127
|
sys_container_background_01: string;
|
|
128
128
|
sys_container_background_02: string;
|
|
129
129
|
sys_container_background_03: string;
|
|
@@ -503,7 +503,7 @@ declare const colorSet: {
|
|
|
503
503
|
sys_cpnt_sheet_base_54: string;
|
|
504
504
|
sys_component_border_01: string;
|
|
505
505
|
};
|
|
506
|
-
readonly
|
|
506
|
+
readonly PaletteColor_light: {
|
|
507
507
|
sys_container_background_01: string;
|
|
508
508
|
sys_container_background_02: string;
|
|
509
509
|
sys_container_background_03: string;
|
|
@@ -5,13 +5,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
/* eslint-disable import/order */
|
|
7
7
|
var SemanticColor_json_1 = __importDefault(require("./SemanticColor.json"));
|
|
8
|
-
var PaletteColor_light_json_1 = __importDefault(require("./PaletteColor_light.json"));
|
|
9
8
|
var PaletteColor_Dark_json_1 = __importDefault(require("./PaletteColor_Dark.json"));
|
|
9
|
+
var PaletteColor_light_json_1 = __importDefault(require("./PaletteColor_light.json"));
|
|
10
10
|
var UIColor_json_1 = __importDefault(require("./UIColor.json"));
|
|
11
11
|
var colorSet = {
|
|
12
12
|
SemanticColor: SemanticColor_json_1.default,
|
|
13
|
-
PaletteColor_light: PaletteColor_light_json_1.default,
|
|
14
13
|
PaletteColor_Dark: PaletteColor_Dark_json_1.default,
|
|
14
|
+
PaletteColor_light: PaletteColor_light_json_1.default,
|
|
15
15
|
UIColor: UIColor_json_1.default
|
|
16
16
|
};
|
|
17
17
|
exports.default = colorSet;
|
|
@@ -55,12 +55,3 @@ export type SegmentedButtonGroupValueOption = Pick<PDSValueOption, 'value'> & {
|
|
|
55
55
|
tooltipPosition?: IconCaseTooltipPositionType;
|
|
56
56
|
};
|
|
57
57
|
export type ForwardedRefType<T> = ForwardedRef<T | null>;
|
|
58
|
-
export interface IFormValues {
|
|
59
|
-
[key: string]: string;
|
|
60
|
-
}
|
|
61
|
-
/**
|
|
62
|
-
* 중첩된 객체 구조에서 점(.)으로 구분된 경로를 통해 에러 객체를 조회합니다
|
|
63
|
-
*/
|
|
64
|
-
export declare const getErrorByName: (errors: {
|
|
65
|
-
[x: string]: any;
|
|
66
|
-
}, name: string) => any;
|
|
@@ -1,10 +1,2 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.getErrorByName = void 0;
|
|
4
|
-
/**
|
|
5
|
-
* 중첩된 객체 구조에서 점(.)으로 구분된 경로를 통해 에러 객체를 조회합니다
|
|
6
|
-
*/
|
|
7
|
-
var getErrorByName = function (errors, name) {
|
|
8
|
-
return name.split('.').reduce(function (errors, property) { return errors && errors[property]; }, errors);
|
|
9
|
-
};
|
|
10
|
-
exports.getErrorByName = getErrorByName;
|