pds-dev-kit-web-test 2.5.489 → 2.5.491
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 +6 -3
- package/dist/src/common/hooks/useTooltip.js +1 -1
- package/dist/src/common/services/i18n/resources/en.json +42 -1
- package/dist/src/common/services/i18n/resources/es.json +41 -1
- package/dist/src/common/services/i18n/resources/fil.json +41 -1
- package/dist/src/common/services/i18n/resources/index.d.ts +285 -0
- package/dist/src/common/services/i18n/resources/ja.json +42 -1
- package/dist/src/common/services/i18n/resources/ko.json +42 -1
- package/dist/src/common/services/i18n/resources/zh-cn.json +42 -1
- package/dist/src/common/services/i18n/resources/zh-tw.json +42 -1
- 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 +9 -0
- package/dist/src/common/types/components.js +8 -0
- package/dist/src/common/types/index.d.ts +0 -1
- package/dist/src/common/types/index.js +0 -1
- package/dist/src/common/utils/SystemUIPositionGenerator/hoverTypeSystemUICssGenerator.js +1 -1
- package/dist/src/common/utils/dateHelper.d.ts +3 -0
- package/dist/src/common/utils/dateHelper.js +37 -0
- package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.d.ts +2 -1
- package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.js +20 -16
- package/dist/src/desktop/components/BasicButtonGroup/BasicButtonGroup.js +1 -1
- package/dist/src/desktop/components/BasicFormGroup/BasicFormGroup.d.ts +18 -1
- package/dist/src/desktop/components/BasicFormGroup/BasicFormGroup.js +46 -3
- package/dist/src/desktop/components/BoxItem/BoxItem.d.ts +62 -0
- package/dist/src/desktop/components/BoxItem/BoxItem.js +104 -0
- package/dist/src/desktop/components/BoxItem/LeftBox/Checkbox.d.ts +7 -0
- package/dist/src/desktop/components/BoxItem/LeftBox/Checkbox.js +9 -0
- package/dist/src/desktop/components/BoxItem/LeftBox/Image.d.ts +11 -0
- package/dist/src/desktop/components/BoxItem/LeftBox/Image.js +9 -0
- package/dist/src/desktop/components/BoxItem/LeftBox/LeftBox.d.ts +11 -0
- package/dist/src/desktop/components/BoxItem/LeftBox/LeftBox.js +36 -0
- package/dist/src/desktop/components/BoxItem/LeftBox/index.d.ts +2 -0
- package/dist/src/{sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner → desktop/components/BoxItem/LeftBox}/index.js +3 -3
- package/dist/src/desktop/components/BoxItem/index.d.ts +1 -0
- package/dist/src/desktop/components/BoxItem/index.js +8 -0
- package/dist/src/desktop/components/Calendar/AllDaySchedulesSection.d.ts +13 -0
- package/dist/src/desktop/components/Calendar/AllDaySchedulesSection.js +132 -0
- package/dist/src/desktop/components/Calendar/Calendar.d.ts +4 -0
- package/dist/src/desktop/components/Calendar/Calendar.js +384 -0
- package/dist/src/desktop/components/Calendar/CurrentTimeIndicator.d.ts +7 -0
- package/dist/src/desktop/components/Calendar/CurrentTimeIndicator.js +48 -0
- package/dist/src/desktop/components/Calendar/DailyView.d.ts +17 -0
- package/dist/src/desktop/components/Calendar/DailyView.js +64 -0
- package/dist/src/desktop/components/Calendar/MonthlyView.d.ts +27 -0
- package/dist/src/desktop/components/Calendar/MonthlyView.js +263 -0
- package/dist/src/desktop/components/Calendar/MultiWeekSchedulesLayer.d.ts +19 -0
- package/dist/src/desktop/components/Calendar/MultiWeekSchedulesLayer.js +73 -0
- package/dist/src/desktop/components/Calendar/ScheduleItem.d.ts +16 -0
- package/dist/src/desktop/components/Calendar/ScheduleItem.js +50 -0
- package/dist/src/desktop/components/Calendar/TimeBasedScheduleItem.d.ts +9 -0
- package/dist/src/desktop/components/Calendar/TimeBasedScheduleItem.js +170 -0
- package/dist/src/desktop/components/Calendar/WeeklyView.d.ts +21 -0
- package/dist/src/desktop/components/Calendar/WeeklyView.js +91 -0
- package/dist/src/desktop/components/Calendar/YearlyView.d.ts +12 -0
- package/dist/src/desktop/components/Calendar/YearlyView.js +76 -0
- package/dist/src/desktop/components/Calendar/calendarUtils.d.ts +24 -0
- package/dist/src/desktop/components/Calendar/calendarUtils.js +112 -0
- package/dist/src/desktop/components/Calendar/constants.d.ts +1 -0
- package/dist/src/desktop/components/Calendar/constants.js +31 -0
- package/dist/src/desktop/components/Calendar/index.d.ts +10 -0
- package/dist/src/desktop/components/Calendar/index.js +37 -0
- package/dist/src/desktop/components/Calendar/timeFormatUtils.d.ts +16 -0
- package/dist/src/desktop/components/Calendar/timeFormatUtils.js +45 -0
- package/dist/src/desktop/components/Calendar/types.d.ts +60 -0
- package/dist/src/desktop/components/ChatBubbleListItem/ChatBubbleListItem.d.ts +2 -3
- package/dist/src/desktop/components/ChatBubbleListItem/ChatBubbleListItem.js +3 -8
- package/dist/src/desktop/components/ChatList/Body.d.ts +1 -1
- package/dist/src/desktop/components/index.d.ts +3 -1
- package/dist/src/desktop/components/index.js +6 -1
- package/dist/src/desktop/index.d.ts +1 -1
- package/dist/src/desktop/index.js +4 -2
- package/dist/src/desktop/panels/DesktopHeadlessModal/DesktopHeadlessModal.d.ts +17 -2
- package/dist/src/desktop/panels/DesktopHeadlessModal/DesktopHeadlessModal.js +37 -6
- package/dist/src/desktop/panels/MultilingualModal/MultilingualModal.d.ts +23 -0
- package/dist/src/desktop/panels/MultilingualModal/MultilingualModal.js +199 -0
- package/dist/src/desktop/panels/MultilingualModal/index.d.ts +1 -0
- package/dist/src/{sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList → desktop/panels/MultilingualModal}/index.js +3 -3
- package/dist/src/desktop/panels/index.d.ts +2 -1
- package/dist/src/desktop/panels/index.js +6 -1
- package/dist/src/hybrid/components/Divider/Divider.d.ts +3 -1
- package/dist/src/hybrid/components/Divider/Divider.js +9 -7
- package/dist/src/mobile/common/components/TextFieldBase/TextFieldBase.d.ts +2 -1
- package/dist/src/mobile/common/components/TextFieldBase/TextFieldBase.js +20 -16
- package/dist/src/mobile/components/BoxItem/BoxItem.d.ts +62 -0
- package/dist/src/mobile/components/BoxItem/BoxItem.js +104 -0
- package/dist/src/mobile/components/BoxItem/LeftBox/Checkbox.d.ts +7 -0
- package/dist/src/mobile/components/BoxItem/LeftBox/Checkbox.js +9 -0
- package/dist/src/mobile/components/BoxItem/LeftBox/Image.d.ts +11 -0
- package/dist/src/mobile/components/BoxItem/LeftBox/Image.js +9 -0
- package/dist/src/mobile/components/BoxItem/LeftBox/LeftBox.d.ts +11 -0
- package/dist/src/mobile/components/BoxItem/LeftBox/LeftBox.js +36 -0
- package/dist/src/mobile/components/BoxItem/LeftBox/index.d.ts +2 -0
- package/dist/src/mobile/components/BoxItem/LeftBox/index.js +8 -0
- package/dist/src/mobile/components/BoxItem/index.d.ts +1 -0
- package/dist/src/mobile/components/BoxItem/index.js +8 -0
- package/dist/src/mobile/components/ChatBubbleListItem/ChatBubbleListItem.d.ts +2 -3
- package/dist/src/mobile/components/ChatBubbleListItem/ChatBubbleListItem.js +3 -8
- package/dist/src/mobile/components/ChatList/Body.d.ts +1 -1
- package/dist/src/mobile/components/index.d.ts +2 -1
- package/dist/src/mobile/components/index.js +3 -1
- package/dist/src/mobile/index.d.ts +1 -1
- package/dist/src/mobile/index.js +3 -2
- package/dist/src/sub/DynamicLayout/CompositionRenderer/ComponentBlockMatcher.js +1 -4
- package/dist/src/sub/DynamicLayout/CompositionRenderer/Composition.d.ts +3 -5
- package/dist/src/sub/DynamicLayout/CompositionRenderer/Composition.js +53 -53
- package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionRenderer.d.ts +6 -0
- package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionRenderer.js +27 -0
- package/dist/src/sub/DynamicLayout/DynamicLayout.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/DynamicLayout.js +2 -4
- package/dist/src/sub/DynamicLayout/components/Section/components/CustomSectionBackgroundMedia.js +2 -24
- package/dist/src/sub/DynamicLayout/components/Section/sectionContext.d.ts +2 -2
- package/dist/src/sub/DynamicLayout/components/Section/util/parseSectionBackgroundMediaData.js +1 -3
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/index.d.ts +0 -40
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/index.js +177 -36
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/PaletteColor_Dark.json +4 -152
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/PaletteColor_light.json +2 -150
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/SemanticColor.json +1 -45
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/UIColor.json +9 -262
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/index.d.ts +0 -593
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/ui-type.d.ts +0 -253
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/desktop/IconButton/IconButton.d.ts +1 -3
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/desktop/IconButton/IconButton.js +3 -5
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/hybrid/Icon/Icon.d.ts +1 -2
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/hybrid/Icon/Icon.js +2 -9
- package/dist/src/sub/DynamicLayout/mock_video_cb.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/mock_video_cb.js +5 -4
- package/dist/src/sub/DynamicLayout/mocks.d.ts +961 -8
- package/dist/src/sub/DynamicLayout/mocks.js +4239 -55
- 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 +12 -12
- package/dist/src/sub/DynamicLayout/sections/CustomSection/FlexGridItem.js +6 -12
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlockMatcher.js +3 -13
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/Button.js +2 -18
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarousel.d.ts +4 -10
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarousel.js +3 -134
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Image/Image.js +3 -39
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/Text.js +7 -31
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/VideoPlayer/VideoPlayer.js +28 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/VideoPlayer/helper.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/VideoPlayer/helper.js +15 -5
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/types.d.ts +3 -45
- 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 +10 -27
- package/dist/src/sub/DynamicLayout/sections/CustomSection/types.js +1 -3
- 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/parseJsonProperties.d.ts +2 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.d.ts +2 -7
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.js +5 -10
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseProperties.d.ts +2 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/types.d.ts +3 -53
- package/dist/src/sub/DynamicLayout/sections/FlexGridCustomSection.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/sections/FlexGridCustomSection.js +4 -5
- package/dist/src/sub/DynamicLayout/types.d.ts +17 -64
- package/package.json +2 -3
- package/release-note.md +2 -2
- package/dist/src/common/types/form.d.ts +0 -9
- package/dist/src/common/types/form.js +0 -10
- package/dist/src/sub/DynamicLayout/CompositionEditor/CompositionEditor.d.ts +0 -22
- package/dist/src/sub/DynamicLayout/CompositionEditor/CompositionEditor.js +0 -1133
- package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionBackground.d.ts +0 -11
- package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionBackground.js +0 -45
- package/dist/src/sub/DynamicLayout/CompositionRenderer/createCompositions.d.ts +0 -10
- package/dist/src/sub/DynamicLayout/CompositionRenderer/createCompositions.js +0 -79
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/downIcons.d.ts +0 -12
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/downIcons.js +0 -76
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/index.d.ts +0 -4
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/index.js +0 -47
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/leftIcons.d.ts +0 -12
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/leftIcons.js +0 -76
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/rightIcons.d.ts +0 -12
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/rightIcons.js +0 -76
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/upIcons.d.ts +0 -12
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/upIcons.js +0 -76
- package/dist/src/sub/DynamicLayout/compositionActionTypes.d.ts +0 -139
- package/dist/src/sub/DynamicLayout/compositionActionTypes.js +0 -2
- package/dist/src/sub/DynamicLayout/compositionQueryContext.d.ts +0 -8
- package/dist/src/sub/DynamicLayout/compositionQueryContext.js +0 -14
- package/dist/src/sub/DynamicLayout/mock_componentBlocks.d.ts +0 -776
- package/dist/src/sub/DynamicLayout/mock_componentBlocks.js +0 -4236
- package/dist/src/sub/DynamicLayout/mock_composition.d.ts +0 -3
- package/dist/src/sub/DynamicLayout/mock_composition.js +0 -1607
- package/dist/src/sub/DynamicLayout/mock_contentsCarousel.d.ts +0 -1
- package/dist/src/sub/DynamicLayout/mock_contentsCarousel.js +0 -1111
- package/dist/src/sub/DynamicLayout/mock_contentsList.d.ts +0 -1
- package/dist/src/sub/DynamicLayout/mock_contentsList.js +0 -1091
- package/dist/src/sub/DynamicLayout/mock_queryData.d.ts +0 -96
- package/dist/src/sub/DynamicLayout/mock_queryData.js +0 -2639
- package/dist/src/sub/DynamicLayout/mock_slideBanner.d.ts +0 -842
- package/dist/src/sub/DynamicLayout/mock_slideBanner.js +0 -854
- package/dist/src/sub/DynamicLayout/mock_video.d.ts +0 -368
- package/dist/src/sub/DynamicLayout/mock_video.js +0 -371
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarouselCore.d.ts +0 -12
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarouselCore.js +0 -61
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationNextBtn.d.ts +0 -15
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationNextBtn.js +0 -69
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationPrevBtn.d.ts +0 -15
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationPrevBtn.js +0 -69
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomProgressbar.d.ts +0 -9
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomProgressbar.js +0 -87
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/navigationConfigs.d.ts +0 -4
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/navigationConfigs.js +0 -849
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/progressConfigs.d.ts +0 -43
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/progressConfigs.js +0 -162
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/contentsCarouselUtils.d.ts +0 -39
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/contentsCarouselUtils.js +0 -182
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useFlexGridLayout.d.ts +0 -18
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useFlexGridLayout.js +0 -229
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useSwiper.d.ts +0 -14
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/hooks/useSwiper.js +0 -46
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/index.d.ts +0 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/index.js +0 -8
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/types.d.ts +0 -139
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsList.d.ts +0 -14
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsList.js +0 -206
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsListCore.d.ts +0 -17
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsListCore.js +0 -39
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/CustomPagination.d.ts +0 -10
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/CustomPagination.js +0 -85
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/paginationConfigs.d.ts +0 -25
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/paginationConfigs.js +0 -183
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/contentsListUtils.d.ts +0 -29
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/contentsListUtils.js +0 -128
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/hooks/useFlexGridLayout.d.ts +0 -18
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/hooks/useFlexGridLayout.js +0 -229
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/index.d.ts +0 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/types.d.ts +0 -67
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/types.js +0 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBanner.d.ts +0 -14
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBanner.js +0 -151
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBannerCore.d.ts +0 -12
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBannerCore.js +0 -39
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationNextBtn.d.ts +0 -15
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationNextBtn.js +0 -69
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationPrevBtn.d.ts +0 -15
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationPrevBtn.js +0 -69
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomPagination.d.ts +0 -20
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomPagination.js +0 -173
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomProgressbar.d.ts +0 -9
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomProgressbar.js +0 -87
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/navigationConfigs.d.ts +0 -4
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/navigationConfigs.js +0 -849
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/progressConfigs.d.ts +0 -43
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/progressConfigs.js +0 -162
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useFlexGridLayout.d.ts +0 -18
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useFlexGridLayout.js +0 -229
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useSwiper.d.ts +0 -16
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/hooks/useSwiper.js +0 -63
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/index.d.ts +0 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/slideBannerUtils.d.ts +0 -46
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/slideBannerUtils.js +0 -186
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/types.d.ts +0 -163
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/types.js +0 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseCompositionPlacement.d.ts +0 -14
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseCompositionPlacement.js +0 -26
- /package/dist/src/{sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel → desktop/components/Calendar}/types.js +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -8,20 +8,20 @@ export { AdminListItemTransition, InputTransition, ButtonTransition } from './sr
|
|
|
8
8
|
export { Form };
|
|
9
9
|
import { Divider, Icon, ImageView, LinearProgress, LottieIcon, Spacing, Switch } from './src/hybrid';
|
|
10
10
|
export { Divider, Icon, ImageView, LinearProgress, LottieIcon, Spacing, Switch };
|
|
11
|
-
import { LayoutWF, WFContainersBox, LayoutWH, WHContainersBox, LayoutWS, WSGlobalMenuContainer, WSContainersBox, LayoutWT, WTGlobalMenuContainer, WTContainersBox, D_AdminList, D_AdminListHeader, D_AdminListItem, D_BasicButtonGroup, D_BasicChatListItem, D_BasicFormGroup, D_BasicList, D_BasicListItem, D_BlogTextField, D_BodyTextGroup, D_Card, D_CardList, D_ChatBubbleListItem, D_ChatList, D_Checkbox, D_Chip, D_ContextMenu, D_ContextMenuItem, D_DesktopAlertDialog, D_DesktopHeaderBar, D_DesktopTabBar, D_Dropdown, D_DynamicDesktopNavBar, D_DynamicDesktopNavBarTemplates, D_EditApplyTextField, D_FilterBar, D_FloatingActionButton, D_Hero, D_HorizontalFormGroup, D_IconButton, D_ImageSlide, D_LottieReactionButton, D_MainButton, D_PageTitleTextGroup, D_Radio, D_ReactionButton, D_SegmentedButtonGroup, D_Select, D_Slider, D_StatusBlock, D_TextButton, D_TextField, D_TextLabel, D_UploadIconButton, D_UploadMainButton, D_UploadTextButton, D_UserDesktopNavBar, D_UserDesktopTabBar, D_UserDesktopSideTab, D_AnnotationSheet, D_ContentSheet, D_DesktopBasicModal, D_DesktopBasicModalWithTab, DesktopBasicModalWithTabInfoType, D_DesktopHeadlessModal, D_DesktopTutorialModal, DesktopTutorialModalInfoType, D_SectionSheet } from './src/desktop';
|
|
11
|
+
import { LayoutWF, WFContainersBox, LayoutWH, WHContainersBox, LayoutWS, WSGlobalMenuContainer, WSContainersBox, LayoutWT, WTGlobalMenuContainer, WTContainersBox, D_AdminList, D_AdminListHeader, D_AdminListItem, D_BasicButtonGroup, D_BasicChatListItem, D_BasicFormGroup, D_BasicList, D_BasicListItem, D_BlogTextField, D_BodyTextGroup, D_BoxItem, D_Card, D_CardList, D_ChatBubbleListItem, D_ChatList, D_Checkbox, D_Chip, D_ContextMenu, D_ContextMenuItem, D_DesktopAlertDialog, D_DesktopHeaderBar, D_DesktopTabBar, D_Dropdown, D_DynamicDesktopNavBar, D_DynamicDesktopNavBarTemplates, D_EditApplyTextField, D_FilterBar, D_FloatingActionButton, D_Hero, D_HorizontalFormGroup, D_IconButton, D_ImageSlide, D_LottieReactionButton, D_MainButton, D_PageTitleTextGroup, D_Radio, D_ReactionButton, D_SegmentedButtonGroup, D_Select, D_Slider, D_StatusBlock, D_TextButton, D_TextField, D_TextLabel, D_UploadIconButton, D_UploadMainButton, D_UploadTextButton, D_UserDesktopNavBar, D_UserDesktopTabBar, D_UserDesktopSideTab, D_AnnotationSheet, D_ContentSheet, D_DesktopBasicModal, D_DesktopBasicModalWithTab, DesktopBasicModalWithTabInfoType, D_DesktopHeadlessModal, D_DesktopTutorialModal, DesktopTutorialModalInfoType, D_SectionSheet, D_Calendar } from './src/desktop';
|
|
12
12
|
export { LayoutWF, WFContainersBox };
|
|
13
13
|
export { LayoutWH, WHContainersBox };
|
|
14
14
|
export { LayoutWS, WSGlobalMenuContainer, WSContainersBox };
|
|
15
15
|
export { LayoutWT, WTGlobalMenuContainer, WTContainersBox };
|
|
16
|
-
export { D_AdminList, D_AdminListHeader, D_AdminListItem, D_BasicButtonGroup, D_BasicChatListItem, D_BasicFormGroup, D_BasicList, D_BasicListItem, D_BlogTextField, D_BodyTextGroup, D_Card, D_CardList, D_ChatBubbleListItem, D_ChatList, D_Checkbox, D_Chip, D_ContextMenu, D_ContextMenuItem, D_DesktopAlertDialog, D_DesktopHeaderBar, D_DesktopTabBar, D_Dropdown, D_DynamicDesktopNavBar, D_DynamicDesktopNavBarTemplates, D_EditApplyTextField, D_FilterBar, D_FloatingActionButton, D_Hero, D_HorizontalFormGroup, D_IconButton, D_ImageSlide, D_LottieReactionButton, D_MainButton, D_PageTitleTextGroup, D_Radio, D_ReactionButton, D_SegmentedButtonGroup, D_Select, D_Slider, D_StatusBlock, D_TextButton, D_TextField, D_TextLabel, D_UploadIconButton, D_UploadMainButton, D_UploadTextButton, D_UserDesktopNavBar, D_UserDesktopTabBar, D_UserDesktopSideTab };
|
|
16
|
+
export { D_AdminList, D_AdminListHeader, D_AdminListItem, D_BasicButtonGroup, D_BasicChatListItem, D_BasicFormGroup, D_BasicList, D_BasicListItem, D_BlogTextField, D_BodyTextGroup, D_BoxItem, D_Card, D_CardList, D_ChatBubbleListItem, D_ChatList, D_Checkbox, D_Chip, D_ContextMenu, D_ContextMenuItem, D_DesktopAlertDialog, D_DesktopHeaderBar, D_DesktopTabBar, D_Dropdown, D_DynamicDesktopNavBar, D_DynamicDesktopNavBarTemplates, D_EditApplyTextField, D_FilterBar, D_FloatingActionButton, D_Hero, D_HorizontalFormGroup, D_IconButton, D_ImageSlide, D_LottieReactionButton, D_MainButton, D_PageTitleTextGroup, D_Radio, D_ReactionButton, D_SegmentedButtonGroup, D_Select, D_Slider, D_StatusBlock, D_TextButton, D_TextField, D_TextLabel, D_UploadIconButton, D_UploadMainButton, D_UploadTextButton, D_UserDesktopNavBar, D_UserDesktopTabBar, D_UserDesktopSideTab, D_Calendar };
|
|
17
17
|
export { D_AnnotationSheet, D_ContentSheet, D_DesktopBasicModal, D_DesktopBasicModalWithTab, D_DesktopHeadlessModal, D_DesktopTutorialModal, D_SectionSheet };
|
|
18
18
|
export type { DesktopBasicModalWithTabInfoType, DesktopTutorialModalInfoType };
|
|
19
|
-
import { LayoutMF, MFContainersBox, LayoutMM, MMNavigationContainer, MMContainersBox, LayoutMP, MPNavigationContainer, MPTabContainer, MPContainersBox, LayoutMS, MSNavigationContainer, MSContainersBox, M_BasicButtonGroup, M_BasicChatListItem, M_BasicFormGroup, M_BasicList, M_BasicListItem, M_BlogTextField, M_BodyTextGroup, M_Card, M_CardList, M_ChatBubbleListItem, M_ChatList, M_Checkbox, M_Chip, M_ContextMenu, M_ContextMenuItem, M_DatePicker, M_Dropdown, M_FloatingActionButton, M_HorizontalFormGroup, M_IconButton, M_ImageSlide, M_LottieReactionButton, M_MainButton, M_MobileAlertDialog, M_MobileHeaderBar, M_MobileTabBar, M_Radio, M_ReactionButton, M_SegmentedButtonGroup, M_Select, M_Slider, M_StatusBlock, M_TextButton, M_TextField, M_TextLabel, M_UploadIconButton, M_UploadMainButton, M_UploadTextButton, M_AnnotationSheet, M_ContentSheet, M_MobileBasicModal, M_SectionSheet } from './src/mobile';
|
|
19
|
+
import { LayoutMF, MFContainersBox, LayoutMM, MMNavigationContainer, MMContainersBox, LayoutMP, MPNavigationContainer, MPTabContainer, MPContainersBox, LayoutMS, MSNavigationContainer, MSContainersBox, M_BasicButtonGroup, M_BasicChatListItem, M_BasicFormGroup, M_BasicList, M_BasicListItem, M_BlogTextField, M_BodyTextGroup, M_BoxItem, M_Card, M_CardList, M_ChatBubbleListItem, M_ChatList, M_Checkbox, M_Chip, M_ContextMenu, M_ContextMenuItem, M_DatePicker, M_Dropdown, M_FloatingActionButton, M_HorizontalFormGroup, M_IconButton, M_ImageSlide, M_LottieReactionButton, M_MainButton, M_MobileAlertDialog, M_MobileHeaderBar, M_MobileTabBar, M_Radio, M_ReactionButton, M_SegmentedButtonGroup, M_Select, M_Slider, M_StatusBlock, M_TextButton, M_TextField, M_TextLabel, M_UploadIconButton, M_UploadMainButton, M_UploadTextButton, M_AnnotationSheet, M_ContentSheet, M_MobileBasicModal, M_SectionSheet } from './src/mobile';
|
|
20
20
|
export { LayoutMF, MFContainersBox };
|
|
21
21
|
export { LayoutMM, MMNavigationContainer, MMContainersBox };
|
|
22
22
|
export { LayoutMP, MPNavigationContainer, MPTabContainer, MPContainersBox };
|
|
23
23
|
export { LayoutMS, MSNavigationContainer, MSContainersBox };
|
|
24
|
-
export { M_BasicButtonGroup, M_BasicChatListItem, M_BasicFormGroup, M_BasicList, M_BasicListItem, M_BlogTextField, M_BodyTextGroup, M_Card, M_CardList, M_ChatBubbleListItem, M_ChatList, M_Checkbox, M_Chip, M_ContextMenu, M_ContextMenuItem, M_DatePicker, M_Dropdown, M_FloatingActionButton, M_HorizontalFormGroup, M_IconButton, M_ImageSlide, M_LottieReactionButton, M_MainButton, M_MobileAlertDialog, M_MobileHeaderBar, M_MobileTabBar, M_Radio, M_ReactionButton, M_SegmentedButtonGroup, M_Select, M_Slider, M_StatusBlock, M_TextButton, M_TextField, M_TextLabel, M_UploadIconButton, M_UploadMainButton, M_UploadTextButton };
|
|
24
|
+
export { M_BasicButtonGroup, M_BasicChatListItem, M_BasicFormGroup, M_BasicList, M_BasicListItem, M_BlogTextField, M_BodyTextGroup, M_BoxItem, M_Card, M_CardList, M_ChatBubbleListItem, M_ChatList, M_Checkbox, M_Chip, M_ContextMenu, M_ContextMenuItem, M_DatePicker, M_Dropdown, M_FloatingActionButton, M_HorizontalFormGroup, M_IconButton, M_ImageSlide, M_LottieReactionButton, M_MainButton, M_MobileAlertDialog, M_MobileHeaderBar, M_MobileTabBar, M_Radio, M_ReactionButton, M_SegmentedButtonGroup, M_Select, M_Slider, M_StatusBlock, M_TextButton, M_TextField, M_TextLabel, M_UploadIconButton, M_UploadMainButton, M_UploadTextButton };
|
|
25
25
|
export { M_AnnotationSheet, M_ContentSheet, M_MobileBasicModal, M_SectionSheet };
|
|
26
26
|
import { DynamicLayout } from './src/sub';
|
|
27
27
|
export { DynamicLayout };
|
package/dist/index.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.LayoutWF = exports.Switch = exports.Spacing = exports.LottieIcon = exports.LinearProgress = exports.ImageView = exports.Icon = exports.Divider = exports.Form = exports.ButtonTransition = exports.InputTransition = exports.AdminListItemTransition = exports.scaleBounceOutIncludeTranslate02 = exports.scaleBounceInIncludeTranslate02 = exports.scaleBounceOutIncludeTranslate = exports.scaleBounceInIncludeTranslate = exports.scaleBounceOut02 = exports.scaleBounceOut = exports.scaleBounceIn02 = exports.scaleBounceIn = exports.gelatine = exports.scaleDownIncludeTranslate = exports.scaleUpIncludeTranslate = exports.scaleDown = exports.scaleUp = exports.glow = exports.fadeOut = exports.fadeIn = exports.modalOverlayOffAni = exports.modalOverlayOnAni = exports.modalOffAni = exports.modalOnAni = exports.dialogOverlayOffAni = exports.dialogOverlayOnAni = exports.dialogOffAni = exports.dialogOnAni = exports.theme = exports.customTheme = exports.uiColors = exports.spacing = exports.boxShadow = exports.mobileEditorLineHeight = exports.mobileEditorFontSize = exports.mobileLineHeight = exports.mobileFontSize = exports.desktopEditorLineHeight = exports.desktopEditorFontSize = exports.desktopLineHeight = exports.desktopFontSize = exports.fontWeight = void 0;
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.ToolBar = exports.BulkActionBar = exports.AdminListItem = exports.AdminListHeader = exports.AdminList = exports.DynamicLayout = exports.M_SectionSheet = exports.M_MobileBasicModal = exports.M_ContentSheet = exports.M_AnnotationSheet = exports.M_UploadTextButton = exports.M_UploadMainButton = exports.M_UploadIconButton = exports.M_TextLabel = exports.M_TextField = exports.M_TextButton = exports.M_StatusBlock = exports.M_Slider = exports.M_Select = exports.M_SegmentedButtonGroup = exports.M_ReactionButton = exports.M_Radio = exports.M_MobileTabBar = exports.M_MobileHeaderBar = exports.M_MobileAlertDialog = void 0;
|
|
4
|
+
exports.D_StatusBlock = exports.D_Slider = exports.D_Select = exports.D_SegmentedButtonGroup = exports.D_ReactionButton = exports.D_Radio = exports.D_PageTitleTextGroup = exports.D_MainButton = exports.D_LottieReactionButton = exports.D_ImageSlide = exports.D_IconButton = exports.D_HorizontalFormGroup = exports.D_Hero = exports.D_FloatingActionButton = exports.D_FilterBar = exports.D_EditApplyTextField = exports.D_DynamicDesktopNavBarTemplates = exports.D_DynamicDesktopNavBar = exports.D_Dropdown = exports.D_DesktopTabBar = exports.D_DesktopHeaderBar = exports.D_DesktopAlertDialog = exports.D_ContextMenuItem = exports.D_ContextMenu = exports.D_Chip = exports.D_Checkbox = exports.D_ChatList = exports.D_ChatBubbleListItem = exports.D_CardList = exports.D_Card = exports.D_BoxItem = exports.D_BodyTextGroup = exports.D_BlogTextField = exports.D_BasicListItem = exports.D_BasicList = exports.D_BasicFormGroup = exports.D_BasicChatListItem = exports.D_BasicButtonGroup = exports.D_AdminListItem = exports.D_AdminListHeader = exports.D_AdminList = exports.WTContainersBox = exports.WTGlobalMenuContainer = exports.LayoutWT = exports.WSContainersBox = exports.WSGlobalMenuContainer = exports.LayoutWS = exports.WHContainersBox = exports.LayoutWH = exports.WFContainersBox = void 0;
|
|
5
|
+
exports.M_IconButton = exports.M_HorizontalFormGroup = exports.M_FloatingActionButton = exports.M_Dropdown = exports.M_DatePicker = exports.M_ContextMenuItem = exports.M_ContextMenu = exports.M_Chip = exports.M_Checkbox = exports.M_ChatList = exports.M_ChatBubbleListItem = exports.M_CardList = exports.M_Card = exports.M_BoxItem = exports.M_BodyTextGroup = exports.M_BlogTextField = exports.M_BasicListItem = exports.M_BasicList = exports.M_BasicFormGroup = exports.M_BasicChatListItem = exports.M_BasicButtonGroup = exports.MSContainersBox = exports.MSNavigationContainer = exports.LayoutMS = exports.MPContainersBox = exports.MPTabContainer = exports.MPNavigationContainer = exports.LayoutMP = exports.MMContainersBox = exports.MMNavigationContainer = exports.LayoutMM = exports.MFContainersBox = exports.LayoutMF = exports.D_SectionSheet = exports.D_DesktopTutorialModal = exports.D_DesktopHeadlessModal = exports.D_DesktopBasicModalWithTab = exports.D_DesktopBasicModal = exports.D_ContentSheet = exports.D_AnnotationSheet = exports.D_Calendar = exports.D_UserDesktopSideTab = exports.D_UserDesktopTabBar = exports.D_UserDesktopNavBar = exports.D_UploadTextButton = exports.D_UploadMainButton = exports.D_UploadIconButton = exports.D_TextLabel = exports.D_TextField = exports.D_TextButton = void 0;
|
|
6
|
+
exports.ToolBar = exports.BulkActionBar = exports.AdminListItem = exports.AdminListHeader = exports.AdminList = exports.DynamicLayout = exports.M_SectionSheet = exports.M_MobileBasicModal = exports.M_ContentSheet = exports.M_AnnotationSheet = exports.M_UploadTextButton = exports.M_UploadMainButton = exports.M_UploadIconButton = exports.M_TextLabel = exports.M_TextField = exports.M_TextButton = exports.M_StatusBlock = exports.M_Slider = exports.M_Select = exports.M_SegmentedButtonGroup = exports.M_ReactionButton = exports.M_Radio = exports.M_MobileTabBar = exports.M_MobileHeaderBar = exports.M_MobileAlertDialog = exports.M_MainButton = exports.M_LottieReactionButton = exports.M_ImageSlide = void 0;
|
|
7
7
|
/* eslint-disable import/order */
|
|
8
8
|
/* eslint-disable import/first */
|
|
9
9
|
// common
|
|
@@ -87,6 +87,7 @@ Object.defineProperty(exports, "D_BasicList", { enumerable: true, get: function
|
|
|
87
87
|
Object.defineProperty(exports, "D_BasicListItem", { enumerable: true, get: function () { return desktop_1.D_BasicListItem; } });
|
|
88
88
|
Object.defineProperty(exports, "D_BlogTextField", { enumerable: true, get: function () { return desktop_1.D_BlogTextField; } });
|
|
89
89
|
Object.defineProperty(exports, "D_BodyTextGroup", { enumerable: true, get: function () { return desktop_1.D_BodyTextGroup; } });
|
|
90
|
+
Object.defineProperty(exports, "D_BoxItem", { enumerable: true, get: function () { return desktop_1.D_BoxItem; } });
|
|
90
91
|
Object.defineProperty(exports, "D_Card", { enumerable: true, get: function () { return desktop_1.D_Card; } });
|
|
91
92
|
Object.defineProperty(exports, "D_CardList", { enumerable: true, get: function () { return desktop_1.D_CardList; } });
|
|
92
93
|
Object.defineProperty(exports, "D_ChatBubbleListItem", { enumerable: true, get: function () { return desktop_1.D_ChatBubbleListItem; } });
|
|
@@ -133,6 +134,7 @@ Object.defineProperty(exports, "D_DesktopBasicModalWithTab", { enumerable: true,
|
|
|
133
134
|
Object.defineProperty(exports, "D_DesktopHeadlessModal", { enumerable: true, get: function () { return desktop_1.D_DesktopHeadlessModal; } });
|
|
134
135
|
Object.defineProperty(exports, "D_DesktopTutorialModal", { enumerable: true, get: function () { return desktop_1.D_DesktopTutorialModal; } });
|
|
135
136
|
Object.defineProperty(exports, "D_SectionSheet", { enumerable: true, get: function () { return desktop_1.D_SectionSheet; } });
|
|
137
|
+
Object.defineProperty(exports, "D_Calendar", { enumerable: true, get: function () { return desktop_1.D_Calendar; } });
|
|
136
138
|
// mobile
|
|
137
139
|
var mobile_1 = require("./src/mobile");
|
|
138
140
|
Object.defineProperty(exports, "LayoutMF", { enumerable: true, get: function () { return mobile_1.LayoutMF; } });
|
|
@@ -154,6 +156,7 @@ Object.defineProperty(exports, "M_BasicList", { enumerable: true, get: function
|
|
|
154
156
|
Object.defineProperty(exports, "M_BasicListItem", { enumerable: true, get: function () { return mobile_1.M_BasicListItem; } });
|
|
155
157
|
Object.defineProperty(exports, "M_BlogTextField", { enumerable: true, get: function () { return mobile_1.M_BlogTextField; } });
|
|
156
158
|
Object.defineProperty(exports, "M_BodyTextGroup", { enumerable: true, get: function () { return mobile_1.M_BodyTextGroup; } });
|
|
159
|
+
Object.defineProperty(exports, "M_BoxItem", { enumerable: true, get: function () { return mobile_1.M_BoxItem; } });
|
|
157
160
|
Object.defineProperty(exports, "M_Card", { enumerable: true, get: function () { return mobile_1.M_Card; } });
|
|
158
161
|
Object.defineProperty(exports, "M_CardList", { enumerable: true, get: function () { return mobile_1.M_CardList; } });
|
|
159
162
|
Object.defineProperty(exports, "M_ChatBubbleListItem", { enumerable: true, get: function () { return mobile_1.M_ChatBubbleListItem; } });
|
|
@@ -66,7 +66,7 @@ function UseTooltip(_a) {
|
|
|
66
66
|
systemUIPosition: tooltipPosition,
|
|
67
67
|
distance: distance
|
|
68
68
|
});
|
|
69
|
-
return tooltipText ? ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: (0, react_dom_1.createPortal)((0, jsx_runtime_1.jsx)(S_TooltipWrapper, __assign({ className: "TooltipWrapper", ref: tooltipRef, tooltipPositionCss: tooltipPositionCss }, { children: tooltipText })), document.
|
|
69
|
+
return tooltipText ? ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: (0, react_dom_1.createPortal)((0, jsx_runtime_1.jsx)(S_TooltipWrapper, __assign({ className: "TooltipWrapper", ref: tooltipRef, tooltipPositionCss: tooltipPositionCss }, { children: tooltipText })), document.body) })) : ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, {}));
|
|
70
70
|
}
|
|
71
71
|
var S_TooltipWrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n ", "\n\n ", ";\n"], ["\n ", "\n\n ", ";\n"])), systemUI_1.TooltipWrapperStyle, function (_a) {
|
|
72
72
|
var tooltipPositionCss = _a.tooltipPositionCss;
|
|
@@ -33,6 +33,47 @@
|
|
|
33
33
|
"str_3890": "Thu",
|
|
34
34
|
"str_3891": "Fri",
|
|
35
35
|
"str_3892": "Sat",
|
|
36
|
-
"str_3893": "Sun"
|
|
36
|
+
"str_3893": "Sun",
|
|
37
|
+
"calendar_all_day": "All day",
|
|
38
|
+
"calendar_more_schedules": "more",
|
|
39
|
+
"calendar_today": "Today",
|
|
40
|
+
"calendar_month_1": "Jan",
|
|
41
|
+
"calendar_month_2": "Feb",
|
|
42
|
+
"calendar_month_3": "Mar",
|
|
43
|
+
"calendar_month_4": "Apr",
|
|
44
|
+
"calendar_month_5": "May",
|
|
45
|
+
"calendar_month_6": "Jun",
|
|
46
|
+
"calendar_month_7": "Jul",
|
|
47
|
+
"calendar_month_8": "Aug",
|
|
48
|
+
"calendar_month_9": "Sep",
|
|
49
|
+
"calendar_month_10": "Oct",
|
|
50
|
+
"calendar_month_11": "Nov",
|
|
51
|
+
"calendar_month_12": "Dec",
|
|
52
|
+
"calendar_time_am": "AM",
|
|
53
|
+
"calendar_time_pm": "PM",
|
|
54
|
+
"calendar_time_hour": "",
|
|
55
|
+
"calendar_duration_hour": " hour",
|
|
56
|
+
"calendar_duration_hours": " hours",
|
|
57
|
+
"calendar_time_noon": "Noon",
|
|
58
|
+
"calendar_header_daily": "{{dayText}}, {{month}} {{day}}, {{year}}",
|
|
59
|
+
"calendar_header_weekly_same_month": "{{month}} {{startDay}} - {{endDay}}",
|
|
60
|
+
"calendar_header_weekly_diff_month": "{{startMonth}} {{startDay}} - {{endMonth}} {{endDay}}",
|
|
61
|
+
"calendar_header_monthly": "{{month}} {{year}}",
|
|
62
|
+
"calendar_view_monthly": "Monthly",
|
|
63
|
+
"calendar_view_weekly": "Weekly",
|
|
64
|
+
"calendar_view_daily": "Daily",
|
|
65
|
+
"calendar_view_yearly": "Yearly",
|
|
66
|
+
"calendar_date_format": "{{day}} ({{dayText}})",
|
|
67
|
+
"multilingual_settings": "Multilingual Settings",
|
|
68
|
+
"str_multilingual_ko": "Korean",
|
|
69
|
+
"str_multilingual_en": "English",
|
|
70
|
+
"str_multilingual_ja": "Japanese",
|
|
71
|
+
"str_multilingual_zh_cn": "Chinese (Simplified)",
|
|
72
|
+
"str_multilingual_zh_tw": "Chinese (Traditional)",
|
|
73
|
+
"str_multilingual_fr": "French",
|
|
74
|
+
"str_multilingual_es": "Spanish",
|
|
75
|
+
"str_9071": "Please enter the text in the appropriate language for your country.",
|
|
76
|
+
"apply": "Apply",
|
|
77
|
+
"cancel": "Cancel"
|
|
37
78
|
}
|
|
38
79
|
}
|
|
@@ -33,6 +33,46 @@
|
|
|
33
33
|
"str_3890": "Thu",
|
|
34
34
|
"str_3891": "Fri",
|
|
35
35
|
"str_3892": "Sat",
|
|
36
|
-
"str_3893": "Sun"
|
|
36
|
+
"str_3893": "Sun",
|
|
37
|
+
"calendar_all_day": "Todo el día",
|
|
38
|
+
"calendar_more_schedules": "más",
|
|
39
|
+
"calendar_today": "Hoy",
|
|
40
|
+
"calendar_month_1": "Ene",
|
|
41
|
+
"calendar_month_2": "Feb",
|
|
42
|
+
"calendar_month_3": "Mar",
|
|
43
|
+
"calendar_month_4": "Abr",
|
|
44
|
+
"calendar_month_5": "May",
|
|
45
|
+
"calendar_month_6": "Jun",
|
|
46
|
+
"calendar_month_7": "Jul",
|
|
47
|
+
"calendar_month_8": "Ago",
|
|
48
|
+
"calendar_month_9": "Sep",
|
|
49
|
+
"calendar_month_10": "Oct",
|
|
50
|
+
"calendar_month_11": "Nov",
|
|
51
|
+
"calendar_month_12": "Dic",
|
|
52
|
+
"calendar_time_am": "AM",
|
|
53
|
+
"calendar_time_pm": "PM",
|
|
54
|
+
"calendar_time_hour": "",
|
|
55
|
+
"calendar_duration_hour": " hora",
|
|
56
|
+
"calendar_duration_hours": " horas",
|
|
57
|
+
"calendar_time_noon": "Mediodía",
|
|
58
|
+
"calendar_header_daily": "{{dayText}}, {{day}} de {{month}}, {{year}}",
|
|
59
|
+
"calendar_header_weekly_same_month": "{{month}} {{startDay}} - {{endDay}}",
|
|
60
|
+
"calendar_header_weekly_diff_month": "{{startMonth}} {{startDay}} - {{endMonth}} {{endDay}}",
|
|
61
|
+
"calendar_header_monthly": "{{month}} {{year}}",
|
|
62
|
+
"calendar_view_monthly": "Mensual",
|
|
63
|
+
"calendar_view_weekly": "Semanal",
|
|
64
|
+
"calendar_view_daily": "Diario",
|
|
65
|
+
"calendar_view_yearly": "Anual",
|
|
66
|
+
"multilingual_settings": "Configuración Multiidioma",
|
|
67
|
+
"str_multilingual_ko": "Coreano",
|
|
68
|
+
"str_multilingual_en": "Inglés",
|
|
69
|
+
"str_multilingual_ja": "Japonés",
|
|
70
|
+
"str_multilingual_zh_cn": "Chino (Simplificado)",
|
|
71
|
+
"str_multilingual_zh_tw": "Chino (Tradicional)",
|
|
72
|
+
"str_multilingual_fr": "Francés",
|
|
73
|
+
"str_multilingual_es": "Español",
|
|
74
|
+
"str_9071": "Por favor, ingrese el texto en el idioma apropiado para su país.",
|
|
75
|
+
"apply": "Aplicar",
|
|
76
|
+
"cancel": "Cancelar"
|
|
37
77
|
}
|
|
38
78
|
}
|
|
@@ -33,6 +33,46 @@
|
|
|
33
33
|
"str_3890": "Thu",
|
|
34
34
|
"str_3891": "Fri",
|
|
35
35
|
"str_3892": "Sat",
|
|
36
|
-
"str_3893": "Sun"
|
|
36
|
+
"str_3893": "Sun",
|
|
37
|
+
"calendar_all_day": "Buong araw",
|
|
38
|
+
"calendar_more_schedules": "pa",
|
|
39
|
+
"calendar_today": "Ngayon",
|
|
40
|
+
"calendar_month_1": "Ene",
|
|
41
|
+
"calendar_month_2": "Peb",
|
|
42
|
+
"calendar_month_3": "Mar",
|
|
43
|
+
"calendar_month_4": "Abr",
|
|
44
|
+
"calendar_month_5": "May",
|
|
45
|
+
"calendar_month_6": "Hun",
|
|
46
|
+
"calendar_month_7": "Hul",
|
|
47
|
+
"calendar_month_8": "Ago",
|
|
48
|
+
"calendar_month_9": "Set",
|
|
49
|
+
"calendar_month_10": "Okt",
|
|
50
|
+
"calendar_month_11": "Nob",
|
|
51
|
+
"calendar_month_12": "Dis",
|
|
52
|
+
"calendar_time_am": "NU",
|
|
53
|
+
"calendar_time_pm": "NH",
|
|
54
|
+
"calendar_time_hour": "",
|
|
55
|
+
"calendar_duration_hour": " oras",
|
|
56
|
+
"calendar_duration_hours": " oras",
|
|
57
|
+
"calendar_time_noon": "Tanghali",
|
|
58
|
+
"calendar_header_daily": "{{dayText}}, {{month}} {{day}}, {{year}}",
|
|
59
|
+
"calendar_header_weekly_same_month": "{{month}} {{startDay}} - {{endDay}}",
|
|
60
|
+
"calendar_header_weekly_diff_month": "{{startMonth}} {{startDay}} - {{endMonth}} {{endDay}}",
|
|
61
|
+
"calendar_header_monthly": "{{month}} {{year}}",
|
|
62
|
+
"calendar_view_monthly": "Buwanan",
|
|
63
|
+
"calendar_view_weekly": "Linggo",
|
|
64
|
+
"calendar_view_daily": "Araw-araw",
|
|
65
|
+
"calendar_view_yearly": "Taon",
|
|
66
|
+
"multilingual_settings": "Multilingual Settings",
|
|
67
|
+
"str_multilingual_ko": "Korean",
|
|
68
|
+
"str_multilingual_en": "English",
|
|
69
|
+
"str_multilingual_ja": "Japanese",
|
|
70
|
+
"str_multilingual_zh_cn": "Chinese (Simplified)",
|
|
71
|
+
"str_multilingual_zh_tw": "Chinese (Traditional)",
|
|
72
|
+
"str_multilingual_fr": "French",
|
|
73
|
+
"str_multilingual_es": "Spanish",
|
|
74
|
+
"str_9071": "Mangyaring ilagay ang teksto sa naaangkop na wika para sa inyong bansa.",
|
|
75
|
+
"apply": "Apply",
|
|
76
|
+
"cancel": "Cancel"
|
|
37
77
|
}
|
|
38
78
|
}
|
|
@@ -35,6 +35,47 @@ declare const locale: {
|
|
|
35
35
|
str_3891: string;
|
|
36
36
|
str_3892: string;
|
|
37
37
|
str_3893: string;
|
|
38
|
+
calendar_all_day: string;
|
|
39
|
+
calendar_more_schedules: string;
|
|
40
|
+
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
|
+
calendar_time_am: string;
|
|
54
|
+
calendar_time_pm: string;
|
|
55
|
+
calendar_time_hour: string;
|
|
56
|
+
calendar_duration_hour: string;
|
|
57
|
+
calendar_duration_hours: string;
|
|
58
|
+
calendar_time_noon: string;
|
|
59
|
+
calendar_header_daily: string;
|
|
60
|
+
calendar_header_weekly_same_month: string;
|
|
61
|
+
calendar_header_weekly_diff_month: string;
|
|
62
|
+
calendar_header_monthly: string;
|
|
63
|
+
calendar_view_monthly: string;
|
|
64
|
+
calendar_view_weekly: string;
|
|
65
|
+
calendar_view_daily: string;
|
|
66
|
+
calendar_view_yearly: string;
|
|
67
|
+
calendar_date_format: string;
|
|
68
|
+
multilingual_settings: string;
|
|
69
|
+
str_multilingual_ko: string;
|
|
70
|
+
str_multilingual_en: string;
|
|
71
|
+
str_multilingual_ja: string;
|
|
72
|
+
str_multilingual_zh_cn: string;
|
|
73
|
+
str_multilingual_zh_tw: string;
|
|
74
|
+
str_multilingual_fr: string;
|
|
75
|
+
str_multilingual_es: string;
|
|
76
|
+
str_9071: string;
|
|
77
|
+
apply: string;
|
|
78
|
+
cancel: string;
|
|
38
79
|
};
|
|
39
80
|
};
|
|
40
81
|
readonly en: {
|
|
@@ -73,6 +114,47 @@ declare const locale: {
|
|
|
73
114
|
str_3891: string;
|
|
74
115
|
str_3892: string;
|
|
75
116
|
str_3893: string;
|
|
117
|
+
calendar_all_day: string;
|
|
118
|
+
calendar_more_schedules: string;
|
|
119
|
+
calendar_today: string;
|
|
120
|
+
calendar_month_1: string;
|
|
121
|
+
calendar_month_2: string;
|
|
122
|
+
calendar_month_3: string;
|
|
123
|
+
calendar_month_4: string;
|
|
124
|
+
calendar_month_5: string;
|
|
125
|
+
calendar_month_6: string;
|
|
126
|
+
calendar_month_7: string;
|
|
127
|
+
calendar_month_8: string;
|
|
128
|
+
calendar_month_9: string;
|
|
129
|
+
calendar_month_10: string;
|
|
130
|
+
calendar_month_11: string;
|
|
131
|
+
calendar_month_12: string;
|
|
132
|
+
calendar_time_am: string;
|
|
133
|
+
calendar_time_pm: string;
|
|
134
|
+
calendar_time_hour: string;
|
|
135
|
+
calendar_duration_hour: string;
|
|
136
|
+
calendar_duration_hours: string;
|
|
137
|
+
calendar_time_noon: string;
|
|
138
|
+
calendar_header_daily: string;
|
|
139
|
+
calendar_header_weekly_same_month: string;
|
|
140
|
+
calendar_header_weekly_diff_month: string;
|
|
141
|
+
calendar_header_monthly: string;
|
|
142
|
+
calendar_view_monthly: string;
|
|
143
|
+
calendar_view_weekly: string;
|
|
144
|
+
calendar_view_daily: string;
|
|
145
|
+
calendar_view_yearly: string;
|
|
146
|
+
calendar_date_format: string;
|
|
147
|
+
multilingual_settings: string;
|
|
148
|
+
str_multilingual_ko: string;
|
|
149
|
+
str_multilingual_en: string;
|
|
150
|
+
str_multilingual_ja: string;
|
|
151
|
+
str_multilingual_zh_cn: string;
|
|
152
|
+
str_multilingual_zh_tw: string;
|
|
153
|
+
str_multilingual_fr: string;
|
|
154
|
+
str_multilingual_es: string;
|
|
155
|
+
str_9071: string;
|
|
156
|
+
apply: string;
|
|
157
|
+
cancel: string;
|
|
76
158
|
};
|
|
77
159
|
};
|
|
78
160
|
readonly ja: {
|
|
@@ -111,6 +193,47 @@ declare const locale: {
|
|
|
111
193
|
str_3891: string;
|
|
112
194
|
str_3892: string;
|
|
113
195
|
str_3893: string;
|
|
196
|
+
calendar_all_day: string;
|
|
197
|
+
calendar_more_schedules: string;
|
|
198
|
+
calendar_today: string;
|
|
199
|
+
calendar_month_1: string;
|
|
200
|
+
calendar_month_2: string;
|
|
201
|
+
calendar_month_3: string;
|
|
202
|
+
calendar_month_4: string;
|
|
203
|
+
calendar_month_5: string;
|
|
204
|
+
calendar_month_6: string;
|
|
205
|
+
calendar_month_7: string;
|
|
206
|
+
calendar_month_8: string;
|
|
207
|
+
calendar_month_9: string;
|
|
208
|
+
calendar_month_10: string;
|
|
209
|
+
calendar_month_11: string;
|
|
210
|
+
calendar_month_12: string;
|
|
211
|
+
calendar_time_am: string;
|
|
212
|
+
calendar_time_pm: string;
|
|
213
|
+
calendar_time_hour: string;
|
|
214
|
+
calendar_duration_hour: string;
|
|
215
|
+
calendar_duration_hours: string;
|
|
216
|
+
calendar_time_noon: string;
|
|
217
|
+
calendar_header_daily: string;
|
|
218
|
+
calendar_header_weekly_same_month: string;
|
|
219
|
+
calendar_header_weekly_diff_month: string;
|
|
220
|
+
calendar_header_monthly: string;
|
|
221
|
+
calendar_view_monthly: string;
|
|
222
|
+
calendar_view_weekly: string;
|
|
223
|
+
calendar_view_daily: string;
|
|
224
|
+
calendar_view_yearly: string;
|
|
225
|
+
calendar_date_format: string;
|
|
226
|
+
multilingual_settings: string;
|
|
227
|
+
str_multilingual_ko: string;
|
|
228
|
+
str_multilingual_en: string;
|
|
229
|
+
str_multilingual_ja: string;
|
|
230
|
+
str_multilingual_zh_cn: string;
|
|
231
|
+
str_multilingual_zh_tw: string;
|
|
232
|
+
str_multilingual_fr: string;
|
|
233
|
+
str_multilingual_es: string;
|
|
234
|
+
str_9071: string;
|
|
235
|
+
apply: string;
|
|
236
|
+
cancel: string;
|
|
114
237
|
};
|
|
115
238
|
};
|
|
116
239
|
readonly es: {
|
|
@@ -149,6 +272,46 @@ declare const locale: {
|
|
|
149
272
|
str_3891: string;
|
|
150
273
|
str_3892: string;
|
|
151
274
|
str_3893: string;
|
|
275
|
+
calendar_all_day: string;
|
|
276
|
+
calendar_more_schedules: string;
|
|
277
|
+
calendar_today: string;
|
|
278
|
+
calendar_month_1: string;
|
|
279
|
+
calendar_month_2: string;
|
|
280
|
+
calendar_month_3: string;
|
|
281
|
+
calendar_month_4: string;
|
|
282
|
+
calendar_month_5: string;
|
|
283
|
+
calendar_month_6: string;
|
|
284
|
+
calendar_month_7: string;
|
|
285
|
+
calendar_month_8: string;
|
|
286
|
+
calendar_month_9: string;
|
|
287
|
+
calendar_month_10: string;
|
|
288
|
+
calendar_month_11: string;
|
|
289
|
+
calendar_month_12: string;
|
|
290
|
+
calendar_time_am: string;
|
|
291
|
+
calendar_time_pm: string;
|
|
292
|
+
calendar_time_hour: string;
|
|
293
|
+
calendar_duration_hour: string;
|
|
294
|
+
calendar_duration_hours: string;
|
|
295
|
+
calendar_time_noon: string;
|
|
296
|
+
calendar_header_daily: string;
|
|
297
|
+
calendar_header_weekly_same_month: string;
|
|
298
|
+
calendar_header_weekly_diff_month: string;
|
|
299
|
+
calendar_header_monthly: string;
|
|
300
|
+
calendar_view_monthly: string;
|
|
301
|
+
calendar_view_weekly: string;
|
|
302
|
+
calendar_view_daily: string;
|
|
303
|
+
calendar_view_yearly: string;
|
|
304
|
+
multilingual_settings: string;
|
|
305
|
+
str_multilingual_ko: string;
|
|
306
|
+
str_multilingual_en: string;
|
|
307
|
+
str_multilingual_ja: string;
|
|
308
|
+
str_multilingual_zh_cn: string;
|
|
309
|
+
str_multilingual_zh_tw: string;
|
|
310
|
+
str_multilingual_fr: string;
|
|
311
|
+
str_multilingual_es: string;
|
|
312
|
+
str_9071: string;
|
|
313
|
+
apply: string;
|
|
314
|
+
cancel: string;
|
|
152
315
|
};
|
|
153
316
|
};
|
|
154
317
|
readonly 'zh-cn': {
|
|
@@ -187,6 +350,47 @@ declare const locale: {
|
|
|
187
350
|
str_3891: string;
|
|
188
351
|
str_3892: string;
|
|
189
352
|
str_3893: string;
|
|
353
|
+
calendar_all_day: string;
|
|
354
|
+
calendar_more_schedules: string;
|
|
355
|
+
calendar_today: string;
|
|
356
|
+
calendar_month_1: string;
|
|
357
|
+
calendar_month_2: string;
|
|
358
|
+
calendar_month_3: string;
|
|
359
|
+
calendar_month_4: string;
|
|
360
|
+
calendar_month_5: string;
|
|
361
|
+
calendar_month_6: string;
|
|
362
|
+
calendar_month_7: string;
|
|
363
|
+
calendar_month_8: string;
|
|
364
|
+
calendar_month_9: string;
|
|
365
|
+
calendar_month_10: string;
|
|
366
|
+
calendar_month_11: string;
|
|
367
|
+
calendar_month_12: string;
|
|
368
|
+
calendar_time_am: string;
|
|
369
|
+
calendar_time_pm: string;
|
|
370
|
+
calendar_time_hour: string;
|
|
371
|
+
calendar_duration_hour: string;
|
|
372
|
+
calendar_duration_hours: string;
|
|
373
|
+
calendar_time_noon: string;
|
|
374
|
+
calendar_header_daily: string;
|
|
375
|
+
calendar_header_weekly_same_month: string;
|
|
376
|
+
calendar_header_weekly_diff_month: string;
|
|
377
|
+
calendar_header_monthly: string;
|
|
378
|
+
calendar_view_monthly: string;
|
|
379
|
+
calendar_view_weekly: string;
|
|
380
|
+
calendar_view_daily: string;
|
|
381
|
+
calendar_view_yearly: string;
|
|
382
|
+
calendar_date_format: string;
|
|
383
|
+
multilingual_settings: string;
|
|
384
|
+
str_multilingual_ko: string;
|
|
385
|
+
str_multilingual_en: string;
|
|
386
|
+
str_multilingual_ja: string;
|
|
387
|
+
str_multilingual_zh_cn: string;
|
|
388
|
+
str_multilingual_zh_tw: string;
|
|
389
|
+
str_multilingual_fr: string;
|
|
390
|
+
str_multilingual_es: string;
|
|
391
|
+
str_9071: string;
|
|
392
|
+
apply: string;
|
|
393
|
+
cancel: string;
|
|
190
394
|
};
|
|
191
395
|
};
|
|
192
396
|
readonly 'zh-tw': {
|
|
@@ -225,6 +429,47 @@ declare const locale: {
|
|
|
225
429
|
str_3891: string;
|
|
226
430
|
str_3892: string;
|
|
227
431
|
str_3893: string;
|
|
432
|
+
calendar_all_day: string;
|
|
433
|
+
calendar_more_schedules: string;
|
|
434
|
+
calendar_today: string;
|
|
435
|
+
calendar_month_1: string;
|
|
436
|
+
calendar_month_2: string;
|
|
437
|
+
calendar_month_3: string;
|
|
438
|
+
calendar_month_4: string;
|
|
439
|
+
calendar_month_5: string;
|
|
440
|
+
calendar_month_6: string;
|
|
441
|
+
calendar_month_7: string;
|
|
442
|
+
calendar_month_8: string;
|
|
443
|
+
calendar_month_9: string;
|
|
444
|
+
calendar_month_10: string;
|
|
445
|
+
calendar_month_11: string;
|
|
446
|
+
calendar_month_12: string;
|
|
447
|
+
calendar_time_am: string;
|
|
448
|
+
calendar_time_pm: string;
|
|
449
|
+
calendar_time_hour: string;
|
|
450
|
+
calendar_duration_hour: string;
|
|
451
|
+
calendar_duration_hours: string;
|
|
452
|
+
calendar_time_noon: string;
|
|
453
|
+
calendar_header_daily: string;
|
|
454
|
+
calendar_header_weekly_same_month: string;
|
|
455
|
+
calendar_header_weekly_diff_month: string;
|
|
456
|
+
calendar_header_monthly: string;
|
|
457
|
+
calendar_view_monthly: string;
|
|
458
|
+
calendar_view_weekly: string;
|
|
459
|
+
calendar_view_daily: string;
|
|
460
|
+
calendar_view_yearly: string;
|
|
461
|
+
calendar_date_format: string;
|
|
462
|
+
multilingual_settings: string;
|
|
463
|
+
str_multilingual_ko: string;
|
|
464
|
+
str_multilingual_en: string;
|
|
465
|
+
str_multilingual_ja: string;
|
|
466
|
+
str_multilingual_zh_cn: string;
|
|
467
|
+
str_multilingual_zh_tw: string;
|
|
468
|
+
str_multilingual_fr: string;
|
|
469
|
+
str_multilingual_es: string;
|
|
470
|
+
str_9071: string;
|
|
471
|
+
apply: string;
|
|
472
|
+
cancel: string;
|
|
228
473
|
};
|
|
229
474
|
};
|
|
230
475
|
readonly fil: {
|
|
@@ -263,6 +508,46 @@ declare const locale: {
|
|
|
263
508
|
str_3891: string;
|
|
264
509
|
str_3892: string;
|
|
265
510
|
str_3893: string;
|
|
511
|
+
calendar_all_day: string;
|
|
512
|
+
calendar_more_schedules: string;
|
|
513
|
+
calendar_today: string;
|
|
514
|
+
calendar_month_1: string;
|
|
515
|
+
calendar_month_2: string;
|
|
516
|
+
calendar_month_3: string;
|
|
517
|
+
calendar_month_4: string;
|
|
518
|
+
calendar_month_5: string;
|
|
519
|
+
calendar_month_6: string;
|
|
520
|
+
calendar_month_7: string;
|
|
521
|
+
calendar_month_8: string;
|
|
522
|
+
calendar_month_9: string;
|
|
523
|
+
calendar_month_10: string;
|
|
524
|
+
calendar_month_11: string;
|
|
525
|
+
calendar_month_12: string;
|
|
526
|
+
calendar_time_am: string;
|
|
527
|
+
calendar_time_pm: string;
|
|
528
|
+
calendar_time_hour: string;
|
|
529
|
+
calendar_duration_hour: string;
|
|
530
|
+
calendar_duration_hours: string;
|
|
531
|
+
calendar_time_noon: string;
|
|
532
|
+
calendar_header_daily: string;
|
|
533
|
+
calendar_header_weekly_same_month: string;
|
|
534
|
+
calendar_header_weekly_diff_month: string;
|
|
535
|
+
calendar_header_monthly: string;
|
|
536
|
+
calendar_view_monthly: string;
|
|
537
|
+
calendar_view_weekly: string;
|
|
538
|
+
calendar_view_daily: string;
|
|
539
|
+
calendar_view_yearly: string;
|
|
540
|
+
multilingual_settings: string;
|
|
541
|
+
str_multilingual_ko: string;
|
|
542
|
+
str_multilingual_en: string;
|
|
543
|
+
str_multilingual_ja: string;
|
|
544
|
+
str_multilingual_zh_cn: string;
|
|
545
|
+
str_multilingual_zh_tw: string;
|
|
546
|
+
str_multilingual_fr: string;
|
|
547
|
+
str_multilingual_es: string;
|
|
548
|
+
str_9071: string;
|
|
549
|
+
apply: string;
|
|
550
|
+
cancel: string;
|
|
266
551
|
};
|
|
267
552
|
};
|
|
268
553
|
};
|
|
@@ -33,6 +33,47 @@
|
|
|
33
33
|
"str_3890": "木",
|
|
34
34
|
"str_3891": "金",
|
|
35
35
|
"str_3892": "土",
|
|
36
|
-
"str_3893": "日"
|
|
36
|
+
"str_3893": "日",
|
|
37
|
+
"calendar_all_day": "終日",
|
|
38
|
+
"calendar_more_schedules": "件以上",
|
|
39
|
+
"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
|
+
"calendar_time_am": "午前",
|
|
53
|
+
"calendar_time_pm": "午後",
|
|
54
|
+
"calendar_time_hour": "時",
|
|
55
|
+
"calendar_duration_hour": "時間",
|
|
56
|
+
"calendar_duration_hours": "時間",
|
|
57
|
+
"calendar_time_noon": "昼",
|
|
58
|
+
"calendar_header_daily": "{{year}}年{{month}}{{day}}日 {{dayText}}曜日",
|
|
59
|
+
"calendar_header_weekly_same_month": "{{month}}{{startDay}}日 - {{endDay}}日",
|
|
60
|
+
"calendar_header_weekly_diff_month": "{{startMonth}}{{startDay}}日 - {{endMonth}}{{endDay}}日",
|
|
61
|
+
"calendar_header_monthly": "{{year}}年{{month}}",
|
|
62
|
+
"calendar_view_monthly": "月",
|
|
63
|
+
"calendar_view_weekly": "週",
|
|
64
|
+
"calendar_view_daily": "日",
|
|
65
|
+
"calendar_view_yearly": "年",
|
|
66
|
+
"calendar_date_format": "{{day}}日 ({{dayText}})",
|
|
67
|
+
"multilingual_settings": "多言語設定",
|
|
68
|
+
"str_multilingual_ko": "韓国語",
|
|
69
|
+
"str_multilingual_en": "英語",
|
|
70
|
+
"str_multilingual_ja": "日本語",
|
|
71
|
+
"str_multilingual_zh_cn": "中国語(簡体)",
|
|
72
|
+
"str_multilingual_zh_tw": "中国語(繁体)",
|
|
73
|
+
"str_multilingual_fr": "フランス語",
|
|
74
|
+
"str_multilingual_es": "スペイン語",
|
|
75
|
+
"str_9071": "国に適した言語を入力してください。",
|
|
76
|
+
"apply": "適用",
|
|
77
|
+
"cancel": "キャンセル"
|
|
37
78
|
}
|
|
38
79
|
}
|