pds-dev-kit-web-test 2.7.166 → 2.7.168
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 +7 -7
- package/dist/index.js +16 -3
- package/dist/scripts/copy-tinymce.d.ts +1 -0
- package/dist/scripts/copy-tinymce.js +32 -0
- package/dist/src/common/assets/icons/fill/Gift.d.ts +4 -0
- package/dist/src/common/assets/icons/fill/Gift.js +30 -0
- package/dist/src/common/assets/icons/fill/Translate.d.ts +4 -0
- package/dist/src/common/assets/icons/fill/Translate.js +30 -0
- package/dist/src/common/assets/icons/fill/index.d.ts +2 -0
- package/dist/src/common/assets/icons/fill/index.js +5 -1
- package/dist/src/common/assets/icons/line/Gift.d.ts +4 -0
- package/dist/src/common/assets/icons/line/Gift.js +30 -0
- package/dist/src/common/assets/icons/line/TimeExtension.d.ts +4 -0
- package/dist/src/common/assets/icons/line/TimeExtension.js +30 -0
- package/dist/src/common/assets/icons/line/Translate.d.ts +4 -0
- package/dist/src/common/assets/icons/line/Translate.js +30 -0
- package/dist/src/common/assets/icons/line/index.d.ts +3 -0
- package/dist/src/common/assets/icons/line/index.js +7 -1
- package/dist/src/common/hooks/index.d.ts +1 -0
- package/dist/src/common/hooks/index.js +3 -1
- package/dist/src/common/hooks/useParentResizeObserver.d.ts +2 -0
- package/dist/src/common/hooks/useParentResizeObserver.js +20 -0
- package/dist/src/common/hooks/useResizeObserver.d.ts +3 -0
- package/dist/src/common/hooks/useResizeObserver.js +27 -0
- package/dist/src/common/hooks/useScrollbarDetector.d.ts +9 -0
- package/dist/src/common/hooks/useScrollbarDetector.js +70 -0
- package/dist/src/common/hooks/useTooltip.js +1 -1
- package/dist/src/common/hooks/useWindowSize.d.ts +4 -0
- package/dist/src/common/hooks/useWindowSize.js +22 -0
- package/dist/src/common/index.d.ts +1 -1
- package/dist/src/common/services/i18n/resources/en.json +71 -1
- package/dist/src/common/services/i18n/resources/es.json +71 -1
- package/dist/src/common/services/i18n/resources/fil.json +64 -1
- package/dist/src/common/services/i18n/resources/index.d.ts +484 -0
- package/dist/src/common/services/i18n/resources/ja.json +71 -1
- package/dist/src/common/services/i18n/resources/ko.json +72 -1
- package/dist/src/common/services/i18n/resources/zh-cn.json +71 -1
- package/dist/src/common/services/i18n/resources/zh-tw.json +71 -1
- package/dist/src/common/styles/colorSet/PaletteColor_Dark.json +5 -1
- package/dist/src/common/styles/colorSet/PaletteColor_light.json +5 -1
- package/dist/src/common/styles/colorSet/UIColor.json +12 -1
- package/dist/src/common/styles/colorSet/index.d.ts +19 -0
- package/dist/src/common/styles/colorSet/ui-type.d.ts +11 -0
- package/dist/src/common/styles/editorContentStyle.d.ts +1 -0
- package/dist/src/common/styles/editorContentStyle.js +76 -0
- package/dist/src/common/styles/scroll/scrollbarStyle.d.ts +2 -0
- package/dist/src/common/styles/scroll/scrollbarStyle.js +4 -3
- package/dist/src/common/types/LocalizedContent.d.ts +4 -0
- 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 +1 -1
- package/dist/src/common/types/index.js +1 -1
- package/dist/src/common/types/systemUI.d.ts +1 -0
- package/dist/src/common/types/text.d.ts +2 -0
- 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/core/pricing/formatter.d.ts +4 -0
- package/dist/src/core/pricing/formatter.js +18 -0
- package/dist/src/core/pricing/index.d.ts +2 -0
- package/dist/src/core/pricing/index.js +18 -0
- package/dist/src/core/pricing/policy.d.ts +26 -0
- package/dist/src/core/pricing/policy.js +98 -0
- package/dist/src/core/pricing/service.d.ts +62 -0
- package/dist/src/core/pricing/service.js +157 -0
- package/dist/src/core/pricing/translator.d.ts +27 -0
- package/dist/src/core/pricing/translator.js +54 -0
- package/dist/src/core/pricing/types.d.ts +19 -0
- package/dist/src/core/pricing/types.js +31 -0
- package/dist/src/core/pricing/validator.d.ts +29 -0
- package/dist/src/core/pricing/validator.js +105 -0
- package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.d.ts +4 -1
- package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.js +32 -23
- package/dist/src/desktop/components/AdminList/AdminList.d.ts +11 -1
- package/dist/src/desktop/components/AdminList/AdminList.js +47 -19
- package/dist/src/desktop/components/AdminList/HeaderRow.d.ts +10 -1
- package/dist/src/desktop/components/AdminList/HeaderRow.js +2 -2
- package/dist/src/desktop/components/AdminListHeader/AdminListHeader.d.ts +3 -1
- package/dist/src/desktop/components/AdminListHeader/AdminListHeader.js +3 -2
- package/dist/src/desktop/components/AdminListHeader/HeaderBar.d.ts +2 -1
- package/dist/src/desktop/components/AdminListHeader/HeaderBar.js +2 -2
- package/dist/src/desktop/components/AdminListItem/AdminListItem.d.ts +2 -0
- package/dist/src/desktop/components/AdminListItem/AdminListItem.js +10 -3
- package/dist/src/desktop/components/BasicButtonGroup/BasicButtonGroup.js +1 -1
- package/dist/src/desktop/components/BasicFormGroup/BasicFormGroup.d.ts +5 -2
- package/dist/src/desktop/components/BasicFormGroup/BasicFormGroup.js +17 -6
- package/dist/src/desktop/components/BodyTextGroup/BodyTextGroup.d.ts +4 -1
- package/dist/src/desktop/components/BodyTextGroup/BodyTextGroup.js +22 -2
- package/dist/src/desktop/components/BoxItem/BoxItem.d.ts +68 -0
- package/dist/src/desktop/components/BoxItem/BoxItem.js +107 -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/desktop/components/BoxItem/LeftBox/index.js +8 -0
- 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/Calendar.d.ts +4 -0
- package/dist/src/desktop/components/Calendar/Calendar.js +434 -0
- package/dist/src/desktop/components/Calendar/components/CurrentTimeIndicator/CurrentTimeIndicator.d.ts +7 -0
- package/dist/src/desktop/components/Calendar/components/CurrentTimeIndicator/CurrentTimeIndicator.js +47 -0
- package/dist/src/desktop/components/Calendar/components/CurrentTimeIndicator/index.d.ts +2 -0
- package/dist/src/desktop/components/Calendar/components/CurrentTimeIndicator/index.js +4 -0
- package/dist/src/desktop/components/Calendar/components/Schedule/AllDaySchedulesSection.d.ts +12 -0
- package/dist/src/desktop/components/Calendar/components/Schedule/AllDaySchedulesSection.js +140 -0
- package/dist/src/desktop/components/Calendar/components/Schedule/MultiWeekSchedulesLayer.d.ts +21 -0
- package/dist/src/desktop/components/Calendar/components/Schedule/MultiWeekSchedulesLayer.js +186 -0
- package/dist/src/desktop/components/Calendar/components/Schedule/ScheduleItem.d.ts +25 -0
- package/dist/src/desktop/components/Calendar/components/Schedule/ScheduleItem.js +56 -0
- package/dist/src/desktop/components/Calendar/components/Schedule/TimeBasedScheduleItem.d.ts +12 -0
- package/dist/src/desktop/components/Calendar/components/Schedule/TimeBasedScheduleItem.js +183 -0
- package/dist/src/desktop/components/Calendar/components/Schedule/index.d.ts +4 -0
- package/dist/src/desktop/components/Calendar/components/Schedule/index.js +11 -0
- package/dist/src/desktop/components/Calendar/constants.d.ts +2 -0
- package/dist/src/desktop/components/Calendar/constants.js +49 -0
- package/dist/src/desktop/components/Calendar/context/CalendarContext.d.ts +53 -0
- package/dist/src/desktop/components/Calendar/context/CalendarContext.js +63 -0
- package/dist/src/desktop/components/Calendar/hooks/useTimeDragSelection.d.ts +16 -0
- package/dist/src/desktop/components/Calendar/hooks/useTimeDragSelection.js +81 -0
- package/dist/src/desktop/components/Calendar/index.d.ts +5 -0
- package/dist/src/desktop/components/Calendar/index.js +27 -0
- package/dist/src/desktop/components/Calendar/types/types.d.ts +70 -0
- package/dist/src/desktop/components/Calendar/types/types.js +10 -0
- package/dist/src/desktop/components/Calendar/utils/calendarUtils.d.ts +13 -0
- package/dist/src/desktop/components/Calendar/utils/calendarUtils.js +60 -0
- package/dist/src/desktop/components/Calendar/utils/index.d.ts +2 -0
- package/dist/src/desktop/components/Calendar/utils/index.js +18 -0
- package/dist/src/desktop/components/Calendar/utils/timeFormatUtils.d.ts +18 -0
- package/dist/src/desktop/components/Calendar/utils/timeFormatUtils.js +59 -0
- package/dist/src/desktop/components/Calendar/views/DailyView.d.ts +8 -0
- package/dist/src/desktop/components/Calendar/views/DailyView.js +116 -0
- package/dist/src/desktop/components/Calendar/views/MonthlyView.d.ts +29 -0
- package/dist/src/desktop/components/Calendar/views/MonthlyView.js +501 -0
- package/dist/src/desktop/components/Calendar/views/WeeklyView.d.ts +9 -0
- package/dist/src/desktop/components/Calendar/views/WeeklyView.js +150 -0
- package/dist/src/desktop/components/Calendar/views/YearlyView.d.ts +13 -0
- package/dist/src/desktop/components/Calendar/views/YearlyView.js +77 -0
- package/dist/src/desktop/components/ChatBubbleListItem/ChatBubbleListItem.d.ts +13 -3
- package/dist/src/desktop/components/ChatBubbleListItem/ChatBubbleListItem.js +12 -12
- package/dist/src/desktop/components/ChatBubbleListItem/components/ReactionBubble.d.ts +11 -0
- package/dist/src/desktop/components/ChatBubbleListItem/components/ReactionBubble.js +86 -0
- package/dist/src/desktop/components/ChatBubbleListItem/components/ReactionRow.d.ts +18 -0
- package/dist/src/desktop/components/ChatBubbleListItem/components/ReactionRow.js +133 -0
- package/dist/src/desktop/components/ChatBubbleListItem/components/index.d.ts +1 -0
- package/dist/src/{sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner → desktop/components/ChatBubbleListItem/components}/index.js +3 -3
- package/dist/src/desktop/components/ChatList/Body.d.ts +1 -1
- package/dist/src/desktop/components/DesktopTabBar/DesktopTabBar.d.ts +1 -1
- package/dist/src/desktop/components/DesktopTabBar/DesktopTabBar.js +21 -8
- package/dist/src/desktop/components/DynamicDesktopNavBar/blocks/BrandLogo.js +1 -1
- package/dist/src/desktop/components/EditApplyTextField/EditApplyTextField.d.ts +3 -1
- package/dist/src/desktop/components/EditApplyTextField/EditApplyTextField.js +22 -10
- package/dist/src/desktop/components/LocalizedButton/LocalizedButton.d.ts +8 -0
- package/dist/src/desktop/components/LocalizedButton/LocalizedButton.js +44 -0
- package/dist/src/desktop/components/LocalizedButton/index.d.ts +1 -0
- package/dist/src/desktop/components/LocalizedButton/index.js +8 -0
- package/dist/src/desktop/components/PriceTextField/PriceTextField.d.ts +44 -0
- package/dist/src/desktop/components/PriceTextField/PriceTextField.js +587 -0
- package/dist/src/desktop/components/PriceTextField/index.d.ts +1 -0
- package/dist/src/desktop/components/PriceTextField/index.js +8 -0
- package/dist/src/desktop/components/PriceTextLabel/PriceTextLabel.d.ts +14 -0
- package/dist/src/desktop/components/PriceTextLabel/PriceTextLabel.js +47 -0
- package/dist/src/desktop/components/PriceTextLabel/index.d.ts +1 -0
- package/dist/src/desktop/components/PriceTextLabel/index.js +8 -0
- package/dist/src/desktop/components/RichTextEditor/HTMLReader.d.ts +5 -0
- package/dist/src/desktop/components/RichTextEditor/HTMLReader.js +35 -0
- package/dist/src/desktop/components/RichTextEditor/RichTextEditor.d.ts +37 -0
- package/dist/src/desktop/components/RichTextEditor/RichTextEditor.js +276 -0
- package/dist/src/desktop/components/RichTextEditor/index.d.ts +2 -0
- package/dist/src/desktop/components/RichTextEditor/index.js +8 -0
- package/dist/src/desktop/components/Snackbar/Snackbar.d.ts +17 -0
- package/dist/src/desktop/components/Snackbar/Snackbar.js +221 -0
- package/dist/src/desktop/components/Snackbar/index.d.ts +1 -0
- package/dist/src/desktop/components/Snackbar/index.js +8 -0
- package/dist/src/desktop/components/Snackbar/provider.d.ts +11 -0
- package/dist/src/desktop/components/Snackbar/provider.js +43 -0
- package/dist/src/desktop/components/SpeechBubble/SpeechBubble.d.ts +40 -0
- package/dist/src/desktop/components/SpeechBubble/SpeechBubble.js +146 -0
- package/dist/src/desktop/components/SpeechBubble/index.d.ts +1 -0
- package/dist/src/{sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList → desktop/components/SpeechBubble}/index.js +3 -3
- package/dist/src/desktop/components/TextButton/TextButton.d.ts +7 -3
- package/dist/src/desktop/components/TextButton/TextButton.js +75 -40
- package/dist/src/desktop/components/TextField/TextField.d.ts +4 -1
- package/dist/src/desktop/components/TextField/TextField.js +29 -14
- package/dist/src/desktop/components/TextLabel/TextLabel.d.ts +3 -3
- package/dist/src/desktop/components/UploadTextButton/UploadTextButton.d.ts +1 -1
- package/dist/src/desktop/components/UploadTextButton/UploadTextButton.js +56 -39
- package/dist/src/desktop/components/index.d.ts +9 -1
- package/dist/src/desktop/components/index.js +18 -1
- package/dist/src/desktop/index.d.ts +2 -2
- package/dist/src/desktop/index.js +11 -2
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFA.js +1 -1
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFB.js +1 -1
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFE.js +1 -1
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFL.js +8 -5
- package/dist/src/desktop/panels/DesktopBasicModal/DesktopBasicModal.d.ts +3 -2
- package/dist/src/desktop/panels/DesktopBasicModal/DesktopBasicModal.js +13 -9
- package/dist/src/desktop/panels/DesktopBasicModalWithTab/DesktopBasicModalWithTab.d.ts +3 -1
- package/dist/src/desktop/panels/DesktopBasicModalWithTab/DesktopBasicModalWithTab.js +16 -10
- package/dist/src/desktop/panels/DesktopHeadlessModal/DesktopHeadlessModal.d.ts +19 -3
- package/dist/src/desktop/panels/DesktopHeadlessModal/DesktopHeadlessModal.js +42 -31
- package/dist/src/desktop/panels/DesktopTutorialModal/DesktopTutorialModal.d.ts +3 -1
- package/dist/src/desktop/panels/DesktopTutorialModal/DesktopTutorialModal.js +11 -5
- package/dist/src/desktop/panels/LocalizedContentModal/LocalizedContentModal.d.ts +34 -0
- package/dist/src/desktop/panels/LocalizedContentModal/LocalizedContentModal.js +188 -0
- package/dist/src/desktop/panels/LocalizedContentModal/index.d.ts +1 -0
- package/dist/src/desktop/panels/LocalizedContentModal/index.js +8 -0
- 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/hybrid/components/LottieIcon/LottieIcon.js +1 -1
- package/dist/src/mobile/common/components/TextFieldBase/TextFieldBase.d.ts +3 -1
- package/dist/src/mobile/common/components/TextFieldBase/TextFieldBase.js +26 -22
- package/dist/src/mobile/components/BoxItem/BoxItem.d.ts +68 -0
- package/dist/src/mobile/components/BoxItem/BoxItem.js +106 -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 +13 -3
- package/dist/src/mobile/components/ChatBubbleListItem/ChatBubbleListItem.js +12 -12
- package/dist/src/mobile/components/ChatBubbleListItem/components/ReactionBubble.d.ts +11 -0
- package/dist/src/mobile/components/ChatBubbleListItem/components/ReactionBubble.js +86 -0
- package/dist/src/mobile/components/ChatBubbleListItem/components/ReactionRow.d.ts +18 -0
- package/dist/src/mobile/components/ChatBubbleListItem/components/ReactionRow.js +126 -0
- package/dist/src/mobile/components/ChatBubbleListItem/components/index.d.ts +1 -0
- package/dist/src/mobile/components/ChatBubbleListItem/components/index.js +8 -0
- package/dist/src/mobile/components/ChatList/Body.d.ts +1 -1
- package/dist/src/mobile/components/MobileTabBar/MobileTabBar.d.ts +3 -1
- package/dist/src/mobile/components/MobileTabBar/MobileTabBar.js +36 -13
- package/dist/src/mobile/components/PriceTextField/PriceTextField.d.ts +43 -0
- package/dist/src/mobile/components/PriceTextField/PriceTextField.js +574 -0
- package/dist/src/mobile/components/PriceTextField/index.d.ts +1 -0
- package/dist/src/mobile/components/PriceTextField/index.js +8 -0
- package/dist/src/mobile/components/PriceTextLabel/PriceTextLabel.d.ts +14 -0
- package/dist/src/mobile/components/PriceTextLabel/PriceTextLabel.js +47 -0
- package/dist/src/mobile/components/PriceTextLabel/index.d.ts +1 -0
- package/dist/src/mobile/components/PriceTextLabel/index.js +8 -0
- package/dist/src/mobile/components/RichTextEditor/RichTextEditor.d.ts +37 -0
- package/dist/src/mobile/components/RichTextEditor/RichTextEditor.js +281 -0
- package/dist/src/mobile/components/RichTextEditor/index.d.ts +2 -0
- package/dist/src/mobile/components/RichTextEditor/index.js +8 -0
- package/dist/src/mobile/components/Snackbar/Snackbar.d.ts +17 -0
- package/dist/src/mobile/components/Snackbar/Snackbar.js +221 -0
- package/dist/src/mobile/components/Snackbar/index.d.ts +1 -0
- package/dist/src/mobile/components/Snackbar/index.js +8 -0
- package/dist/src/mobile/components/Snackbar/provider.d.ts +11 -0
- package/dist/src/mobile/components/Snackbar/provider.js +43 -0
- package/dist/src/mobile/components/SpeechBubble/SpeechBubble.d.ts +40 -0
- package/dist/src/mobile/components/SpeechBubble/SpeechBubble.js +146 -0
- package/dist/src/mobile/components/SpeechBubble/index.d.ts +1 -0
- package/dist/src/mobile/components/SpeechBubble/index.js +8 -0
- package/dist/src/mobile/components/TextButton/TextButton.d.ts +7 -3
- package/dist/src/mobile/components/TextButton/TextButton.js +63 -31
- package/dist/src/mobile/components/TextField/TextField.d.ts +2 -1
- package/dist/src/mobile/components/TextField/TextField.js +9 -8
- package/dist/src/mobile/components/TextLabel/TextLabel.d.ts +3 -3
- package/dist/src/mobile/components/UploadTextButton/UploadTextButton.d.ts +1 -1
- package/dist/src/mobile/components/UploadTextButton/UploadTextButton.js +44 -30
- package/dist/src/mobile/components/index.d.ts +7 -1
- package/dist/src/mobile/components/index.js +13 -1
- package/dist/src/mobile/index.d.ts +1 -1
- package/dist/src/mobile/index.js +8 -2
- package/dist/src/mobile/panels/MobileBasicModal/MobileBasicModal.d.ts +3 -1
- package/dist/src/mobile/panels/MobileBasicModal/MobileBasicModal.js +14 -7
- package/dist/src/sub/AdminList/AdminList/AdminList.d.ts +10 -1
- package/dist/src/sub/AdminList/AdminList/AdminList.js +51 -20
- package/dist/src/sub/AdminList/AdminList/HeaderRow.d.ts +10 -1
- package/dist/src/sub/AdminList/AdminList/HeaderRow.js +2 -2
- package/dist/src/sub/AdminList/AdminListItem/AdminListItem.d.ts +2 -0
- package/dist/src/sub/AdminList/AdminListItem/AdminListItem.js +15 -5
- package/dist/src/sub/AdminList/ToolBar/ToolBar.d.ts +2 -1
- package/dist/src/sub/AdminList/ToolBar/ToolBar.js +3 -3
- 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 +62 -142
- 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/CompositionRenderer/FlexGridItem.d.ts +2 -6
- package/dist/src/sub/DynamicLayout/CompositionRenderer/FlexGridItem.js +15 -11
- 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 -7
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/desktop/IconButton/IconButton.js +17 -23
- 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/gleStyles.js +1 -1
- 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 +4237 -43
- 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 +14 -12
- package/dist/src/sub/DynamicLayout/sections/CustomSection/FlexGridItem.js +6 -7
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/{ComponentBlockMatcherWithCCB.d.ts → ComponentBlockMatcher.d.ts} +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/{ComponentBlockMatcherWithCCB.js → ComponentBlockMatcher.js} +5 -15
- 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 -211
- 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.d.ts +2 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/Text.js +9 -60
- 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 -48
- 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 +20 -6
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.js +5 -16
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseProperties.d.ts +2 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseProperties.js +3 -4
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropBorder.js +0 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropTextSpec.js +0 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/types.d.ts +3 -58
- package/dist/src/sub/DynamicLayout/sections/FlexGridCustomSection.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/sections/FlexGridCustomSection.js +11 -30
- package/dist/src/sub/DynamicLayout/types.d.ts +17 -69
- package/dist/tinymce/CHANGELOG.md +3453 -0
- package/dist/tinymce/README.md +73 -0
- package/dist/tinymce/bower.json +27 -0
- package/dist/tinymce/composer.json +52 -0
- package/dist/tinymce/icons/default/icons.js +194 -0
- package/dist/tinymce/icons/default/icons.min.js +1 -0
- package/dist/tinymce/icons/default/index.js +7 -0
- package/dist/tinymce/license.txt +21 -0
- package/dist/tinymce/models/dom/index.js +7 -0
- package/dist/tinymce/models/dom/model.js +8040 -0
- package/dist/tinymce/models/dom/model.min.js +1 -0
- package/dist/tinymce/notices.txt +21 -0
- package/dist/tinymce/package.json +32 -0
- package/dist/tinymce/plugins/accordion/index.js +7 -0
- package/dist/tinymce/plugins/accordion/plugin.js +1054 -0
- package/dist/tinymce/plugins/accordion/plugin.min.js +5 -0
- package/dist/tinymce/plugins/advlist/index.js +7 -0
- package/dist/tinymce/plugins/advlist/plugin.js +259 -0
- package/dist/tinymce/plugins/advlist/plugin.min.js +5 -0
- package/dist/tinymce/plugins/anchor/index.js +7 -0
- package/dist/tinymce/plugins/anchor/plugin.js +214 -0
- package/dist/tinymce/plugins/anchor/plugin.min.js +5 -0
- package/dist/tinymce/plugins/autolink/index.js +7 -0
- package/dist/tinymce/plugins/autolink/plugin.js +228 -0
- package/dist/tinymce/plugins/autolink/plugin.min.js +5 -0
- package/dist/tinymce/plugins/autoresize/index.js +7 -0
- package/dist/tinymce/plugins/autoresize/plugin.js +192 -0
- package/dist/tinymce/plugins/autoresize/plugin.min.js +5 -0
- package/dist/tinymce/plugins/autosave/index.js +7 -0
- package/dist/tinymce/plugins/autosave/plugin.js +233 -0
- package/dist/tinymce/plugins/autosave/plugin.min.js +5 -0
- package/dist/tinymce/plugins/charmap/index.js +7 -0
- package/dist/tinymce/plugins/charmap/plugin.js +1658 -0
- package/dist/tinymce/plugins/charmap/plugin.min.js +5 -0
- package/dist/tinymce/plugins/code/index.js +7 -0
- package/dist/tinymce/plugins/code/plugin.js +85 -0
- package/dist/tinymce/plugins/code/plugin.min.js +5 -0
- package/dist/tinymce/plugins/codesample/index.js +7 -0
- package/dist/tinymce/plugins/codesample/plugin.js +2471 -0
- package/dist/tinymce/plugins/codesample/plugin.min.js +13 -0
- package/dist/tinymce/plugins/directionality/index.js +7 -0
- package/dist/tinymce/plugins/directionality/plugin.js +395 -0
- package/dist/tinymce/plugins/directionality/plugin.min.js +5 -0
- package/dist/tinymce/plugins/emoticons/index.js +7 -0
- package/dist/tinymce/plugins/emoticons/js/emojiimages.js +1 -0
- package/dist/tinymce/plugins/emoticons/js/emojiimages.min.js +1 -0
- package/dist/tinymce/plugins/emoticons/js/emojis.js +1 -0
- package/dist/tinymce/plugins/emoticons/js/emojis.min.js +1 -0
- package/dist/tinymce/plugins/emoticons/plugin.js +595 -0
- package/dist/tinymce/plugins/emoticons/plugin.min.js +5 -0
- package/dist/tinymce/plugins/fullscreen/index.js +7 -0
- package/dist/tinymce/plugins/fullscreen/plugin.js +1249 -0
- package/dist/tinymce/plugins/fullscreen/plugin.min.js +5 -0
- package/dist/tinymce/plugins/help/index.js +7 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/ar.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/bg_BG.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/ca.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/cs.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/da.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/de.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/el.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/en.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/es.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/eu.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/fa.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/fi.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/fr_FR.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/he_IL.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/hi.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/hr.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/hu_HU.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/id.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/it.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/ja.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/kk.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/ko_KR.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/ms.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/nb_NO.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/nl.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/pl.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/pt_BR.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/pt_PT.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/ro.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/ru.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/sk.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/sl_SI.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/sv_SE.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/th_TH.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/tr.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/uk.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/vi.js +90 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/zh_CN.js +84 -0
- package/dist/tinymce/plugins/help/js/i18n/keynav/zh_TW.js +90 -0
- package/dist/tinymce/plugins/help/plugin.js +898 -0
- package/dist/tinymce/plugins/help/plugin.min.js +5 -0
- package/dist/tinymce/plugins/image/index.js +7 -0
- package/dist/tinymce/plugins/image/plugin.js +1505 -0
- package/dist/tinymce/plugins/image/plugin.min.js +5 -0
- package/dist/tinymce/plugins/importcss/index.js +7 -0
- package/dist/tinymce/plugins/importcss/plugin.js +344 -0
- package/dist/tinymce/plugins/importcss/plugin.min.js +5 -0
- package/dist/tinymce/plugins/insertdatetime/index.js +7 -0
- package/dist/tinymce/plugins/insertdatetime/plugin.js +187 -0
- package/dist/tinymce/plugins/insertdatetime/plugin.min.js +5 -0
- package/dist/tinymce/plugins/link/index.js +7 -0
- package/dist/tinymce/plugins/link/plugin.js +1242 -0
- package/dist/tinymce/plugins/link/plugin.min.js +5 -0
- package/dist/tinymce/plugins/lists/index.js +7 -0
- package/dist/tinymce/plugins/lists/plugin.js +2172 -0
- package/dist/tinymce/plugins/lists/plugin.min.js +5 -0
- package/dist/tinymce/plugins/media/index.js +7 -0
- package/dist/tinymce/plugins/media/plugin.js +1217 -0
- package/dist/tinymce/plugins/media/plugin.min.js +5 -0
- package/dist/tinymce/plugins/nonbreaking/index.js +7 -0
- package/dist/tinymce/plugins/nonbreaking/plugin.js +123 -0
- package/dist/tinymce/plugins/nonbreaking/plugin.min.js +5 -0
- package/dist/tinymce/plugins/pagebreak/index.js +7 -0
- package/dist/tinymce/plugins/pagebreak/plugin.js +117 -0
- package/dist/tinymce/plugins/pagebreak/plugin.min.js +5 -0
- package/dist/tinymce/plugins/preview/index.js +7 -0
- package/dist/tinymce/plugins/preview/plugin.js +97 -0
- package/dist/tinymce/plugins/preview/plugin.min.js +5 -0
- package/dist/tinymce/plugins/quickbars/index.js +7 -0
- package/dist/tinymce/plugins/quickbars/plugin.js +447 -0
- package/dist/tinymce/plugins/quickbars/plugin.min.js +5 -0
- package/dist/tinymce/plugins/save/index.js +7 -0
- package/dist/tinymce/plugins/save/plugin.js +118 -0
- package/dist/tinymce/plugins/save/plugin.min.js +5 -0
- package/dist/tinymce/plugins/searchreplace/index.js +7 -0
- package/dist/tinymce/plugins/searchreplace/plugin.js +1093 -0
- package/dist/tinymce/plugins/searchreplace/plugin.min.js +5 -0
- package/dist/tinymce/plugins/table/index.js +7 -0
- package/dist/tinymce/plugins/table/plugin.js +3462 -0
- package/dist/tinymce/plugins/table/plugin.min.js +5 -0
- package/dist/tinymce/plugins/template/index.js +7 -0
- package/dist/tinymce/plugins/template/plugin.js +567 -0
- package/dist/tinymce/plugins/template/plugin.min.js +5 -0
- package/dist/tinymce/plugins/visualblocks/index.js +7 -0
- package/dist/tinymce/plugins/visualblocks/plugin.js +98 -0
- package/dist/tinymce/plugins/visualblocks/plugin.min.js +5 -0
- package/dist/tinymce/plugins/visualchars/index.js +7 -0
- package/dist/tinymce/plugins/visualchars/plugin.js +560 -0
- package/dist/tinymce/plugins/visualchars/plugin.min.js +5 -0
- package/dist/tinymce/plugins/wordcount/index.js +7 -0
- package/dist/tinymce/plugins/wordcount/plugin.js +405 -0
- package/dist/tinymce/plugins/wordcount/plugin.min.js +5 -0
- package/dist/tinymce/skins/content/dark/content.css +79 -0
- package/dist/tinymce/skins/content/dark/content.js +15 -0
- package/dist/tinymce/skins/content/dark/content.min.css +14 -0
- package/dist/tinymce/skins/content/default/content.css +74 -0
- package/dist/tinymce/skins/content/default/content.js +15 -0
- package/dist/tinymce/skins/content/default/content.min.css +14 -0
- package/dist/tinymce/skins/content/document/content.css +79 -0
- package/dist/tinymce/skins/content/document/content.js +15 -0
- package/dist/tinymce/skins/content/document/content.min.css +14 -0
- package/dist/tinymce/skins/content/tinymce-5/content.css +74 -0
- package/dist/tinymce/skins/content/tinymce-5/content.js +15 -0
- package/dist/tinymce/skins/content/tinymce-5/content.min.css +14 -0
- package/dist/tinymce/skins/content/tinymce-5-dark/content.css +79 -0
- package/dist/tinymce/skins/content/tinymce-5-dark/content.js +15 -0
- package/dist/tinymce/skins/content/tinymce-5-dark/content.min.css +14 -0
- package/dist/tinymce/skins/content/writer/content.css +75 -0
- package/dist/tinymce/skins/content/writer/content.js +15 -0
- package/dist/tinymce/skins/content/writer/content.min.css +14 -0
- package/dist/tinymce/skins/ui/oxide/content.css +798 -0
- package/dist/tinymce/skins/ui/oxide/content.inline.css +792 -0
- package/dist/tinymce/skins/ui/oxide/content.inline.js +15 -0
- package/dist/tinymce/skins/ui/oxide/content.inline.min.css +14 -0
- package/dist/tinymce/skins/ui/oxide/content.js +15 -0
- package/dist/tinymce/skins/ui/oxide/content.min.css +14 -0
- package/dist/tinymce/skins/ui/oxide/skin.css +3763 -0
- package/dist/tinymce/skins/ui/oxide/skin.js +2 -0
- package/dist/tinymce/skins/ui/oxide/skin.min.css +1 -0
- package/dist/tinymce/skins/ui/oxide/skin.shadowdom.css +30 -0
- package/dist/tinymce/skins/ui/oxide/skin.shadowdom.js +2 -0
- package/dist/tinymce/skins/ui/oxide/skin.shadowdom.min.css +1 -0
- package/dist/tinymce/skins/ui/oxide-dark/content.css +779 -0
- package/dist/tinymce/skins/ui/oxide-dark/content.inline.css +792 -0
- package/dist/tinymce/skins/ui/oxide-dark/content.inline.js +15 -0
- package/dist/tinymce/skins/ui/oxide-dark/content.inline.min.css +14 -0
- package/dist/tinymce/skins/ui/oxide-dark/content.js +15 -0
- package/dist/tinymce/skins/ui/oxide-dark/content.min.css +14 -0
- package/dist/tinymce/skins/ui/oxide-dark/skin.css +3766 -0
- package/dist/tinymce/skins/ui/oxide-dark/skin.js +2 -0
- package/dist/tinymce/skins/ui/oxide-dark/skin.min.css +1 -0
- package/dist/tinymce/skins/ui/oxide-dark/skin.shadowdom.css +30 -0
- package/dist/tinymce/skins/ui/oxide-dark/skin.shadowdom.js +2 -0
- package/dist/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css +1 -0
- package/dist/tinymce/skins/ui/tinymce-5/content.css +798 -0
- package/dist/tinymce/skins/ui/tinymce-5/content.inline.css +792 -0
- package/dist/tinymce/skins/ui/tinymce-5/content.inline.js +15 -0
- package/dist/tinymce/skins/ui/tinymce-5/content.inline.min.css +14 -0
- package/dist/tinymce/skins/ui/tinymce-5/content.js +15 -0
- package/dist/tinymce/skins/ui/tinymce-5/content.min.css +14 -0
- package/dist/tinymce/skins/ui/tinymce-5/skin.css +3857 -0
- package/dist/tinymce/skins/ui/tinymce-5/skin.js +2 -0
- package/dist/tinymce/skins/ui/tinymce-5/skin.min.css +1 -0
- package/dist/tinymce/skins/ui/tinymce-5/skin.shadowdom.css +30 -0
- package/dist/tinymce/skins/ui/tinymce-5/skin.shadowdom.js +2 -0
- package/dist/tinymce/skins/ui/tinymce-5/skin.shadowdom.min.css +1 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/content.css +779 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/content.inline.css +792 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/content.inline.js +15 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/content.inline.min.css +14 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/content.js +15 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/content.min.css +14 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/skin.css +3857 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/skin.js +2 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/skin.min.css +1 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.css +30 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.js +2 -0
- package/dist/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.min.css +1 -0
- package/dist/tinymce/themes/silver/index.js +7 -0
- package/dist/tinymce/themes/silver/theme.js +30775 -0
- package/dist/tinymce/themes/silver/theme.min.js +1 -0
- package/dist/tinymce/tinymce.d.ts +3238 -0
- package/dist/tinymce/tinymce.js +31779 -0
- package/dist/tinymce/tinymce.min.js +11 -0
- package/package.json +9 -5
- package/release-note.md +5 -3
- package/scripts/copy-tinymce.js +37 -0
- 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 -1134
- 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/FlexGridItemForCCB.d.ts +0 -14
- package/dist/src/sub/DynamicLayout/CompositionRenderer/FlexGridItemForCCB.js +0 -68
- package/dist/src/sub/DynamicLayout/CompositionRenderer/createCompositions.d.ts +0 -10
- package/dist/src/sub/DynamicLayout/CompositionRenderer/createCompositions.js +0 -80
- package/dist/src/sub/DynamicLayout/GridAutoRowEditor/GridAutoRowEditor.d.ts +0 -9
- package/dist/src/sub/DynamicLayout/GridAutoRowEditor/GridAutoRowEditor.js +0 -361
- 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/compositionQueryContext.d.ts +0 -8
- package/dist/src/sub/DynamicLayout/compositionQueryContext.js +0 -14
- package/dist/src/sub/DynamicLayout/mock.json +0 -8163
- package/dist/src/sub/DynamicLayout/mock_componentBlocks.d.ts +0 -911
- package/dist/src/sub/DynamicLayout/mock_componentBlocks.js +0 -4238
- package/dist/src/sub/DynamicLayout/mock_composition.d.ts +0 -3
- package/dist/src/sub/DynamicLayout/mock_composition.js +0 -1669
- package/dist/src/sub/DynamicLayout/mock_contentsCarousel.d.ts +0 -1
- package/dist/src/sub/DynamicLayout/mock_contentsCarousel.js +0 -1168
- package/dist/src/sub/DynamicLayout/mock_contentsList.d.ts +0 -1
- package/dist/src/sub/DynamicLayout/mock_contentsList.js +0 -5517
- 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 -11
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarouselCore.js +0 -76
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigationNextBtn.d.ts +0 -16
- 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 -16
- 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/ContentsCarousel/types.js +0 -2
- 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 -275
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsListCore.d.ts +0 -16
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsListCore.js +0 -38
- 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 -130
- 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 -201
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBannerCore.d.ts +0 -11
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBannerCore.js +0 -38
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationNextBtn.d.ts +0 -16
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationNextBtn.js +0 -70
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigationPrevBtn.d.ts +0 -16
- 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 -179
- 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/components/ComponentBlock/componentBlocks/Text/textSpecFormatOptions.d.ts +0 -7
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/textSpecFormatOptions.js +0 -211
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/propComponent/CBBackgroundMedia.d.ts +0 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/propComponent/CBBackgroundMedia.js +0 -17
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/StyledSwiper/StyledSwiper.d.ts +0 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/StyledSwiper/StyledSwiper.js +0 -13
- 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/utils/groupUtils.d.ts +0 -24
- package/dist/src/sub/DynamicLayout/utils/groupUtils.js +0 -224
- /package/dist/src/{sub/DynamicLayout/compositionActionTypes.js → common/types/LocalizedContent.js} +0 -0
package/dist/src/sub/DynamicLayout/sections/CustomSection/components/StyledSwiper/StyledSwiper.js
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
3
|
-
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
4
|
-
return cooked;
|
|
5
|
-
};
|
|
6
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
7
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
8
|
-
};
|
|
9
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
-
var styled_components_1 = __importDefault(require("styled-components"));
|
|
11
|
-
var StyledSwiperWrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n /**\n * Swiper 9.4.1\n * Most modern mobile touch slider and framework with hardware accelerated transitions\n * https://swiperjs.com\n *\n * Copyright 2014-2023 Vladimir Kharlampidi\n *\n * Released under the MIT License\n *\n * Released on: June 13, 2023\n */\n\n && {\n /* FONT_START */\n @font-face {\n font-family: 'swiper-icons';\n src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');\n font-weight: 400;\n font-style: normal;\n }\n /* FONT_END */\n :root {\n --swiper-theme-color: #007aff;\n /*\n --swiper-preloader-color: var(--swiper-theme-color);\n --swiper-wrapper-transition-timing-function: initial;\n */\n }\n .swiper,\n swiper-container {\n display: block;\n list-style: none;\n margin-left: auto;\n margin-right: auto;\n overflow: hidden;\n padding: 0;\n /* Fix of Webkit flickering */\n position: relative;\n z-index: 1;\n }\n .swiper-vertical > .swiper-wrapper {\n flex-direction: column;\n }\n .swiper-wrapper {\n box-sizing: content-box;\n display: flex;\n height: 100%;\n position: relative;\n transition-property: transform;\n transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);\n width: 100%;\n z-index: 1;\n }\n .swiper-android .swiper-slide,\n .swiper-wrapper {\n transform: translate3d(0px, 0, 0);\n }\n .swiper-horizontal {\n touch-action: pan-y;\n }\n .swiper-vertical {\n touch-action: pan-x;\n }\n .swiper-slide,\n swiper-slide {\n display: block;\n flex-shrink: 0;\n height: 100%;\n position: relative;\n transition-property: transform;\n width: 100%;\n }\n .swiper-slide-invisible-blank {\n visibility: hidden;\n }\n /* Auto Height */\n .swiper-autoheight,\n .swiper-autoheight .swiper-slide {\n height: auto;\n }\n .swiper-autoheight .swiper-wrapper {\n align-items: flex-start;\n transition-property: transform, height;\n }\n .swiper-backface-hidden .swiper-slide {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n transform: translateZ(0);\n }\n /* 3D Effects */\n .swiper-3d.swiper-css-mode .swiper-wrapper {\n perspective: 1200px;\n }\n .swiper-3d .swiper-wrapper {\n transform-style: preserve-3d;\n }\n .swiper-3d {\n perspective: 1200px;\n }\n .swiper-3d .swiper-slide,\n .swiper-3d .swiper-slide-shadow,\n .swiper-3d .swiper-slide-shadow-left,\n .swiper-3d .swiper-slide-shadow-right,\n .swiper-3d .swiper-slide-shadow-top,\n .swiper-3d .swiper-slide-shadow-bottom,\n .swiper-3d .swiper-cube-shadow {\n transform-style: preserve-3d;\n }\n .swiper-3d .swiper-slide-shadow,\n .swiper-3d .swiper-slide-shadow-left,\n .swiper-3d .swiper-slide-shadow-right,\n .swiper-3d .swiper-slide-shadow-top,\n .swiper-3d .swiper-slide-shadow-bottom {\n height: 100%;\n left: 0;\n pointer-events: none;\n position: absolute;\n top: 0;\n width: 100%;\n z-index: 10;\n }\n .swiper-3d .swiper-slide-shadow {\n background: rgba(0, 0, 0, 0.15);\n }\n .swiper-3d .swiper-slide-shadow-left {\n background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n .swiper-3d .swiper-slide-shadow-right {\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n .swiper-3d .swiper-slide-shadow-top {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n .swiper-3d .swiper-slide-shadow-bottom {\n background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n /* CSS Mode */\n .swiper-css-mode > .swiper-wrapper {\n -ms-overflow-style: none;\n overflow: auto;\n /* For Firefox */\n scrollbar-width: none;\n /* For Internet Explorer and Edge */\n }\n .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {\n display: none;\n }\n .swiper-css-mode > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: start start;\n }\n .swiper-horizontal.swiper-css-mode > .swiper-wrapper {\n scroll-snap-type: x mandatory;\n }\n .swiper-vertical.swiper-css-mode > .swiper-wrapper {\n scroll-snap-type: y mandatory;\n }\n .swiper-css-mode.swiper-free-mode > .swiper-wrapper {\n scroll-snap-type: none;\n }\n .swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: none;\n }\n .swiper-centered > .swiper-wrapper::before {\n content: '';\n flex-shrink: 0;\n order: 9999;\n }\n .swiper-centered > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: center center;\n scroll-snap-stop: always;\n }\n .swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {\n margin-inline-start: var(--swiper-centered-offset-before);\n }\n .swiper-centered.swiper-horizontal > .swiper-wrapper::before {\n height: 100%;\n min-height: 1px;\n width: var(--swiper-centered-offset-after);\n }\n .swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {\n margin-block-start: var(--swiper-centered-offset-before);\n }\n .swiper-centered.swiper-vertical > .swiper-wrapper::before {\n height: var(--swiper-centered-offset-after);\n min-width: 1px;\n width: 100%;\n }\n .swiper-lazy-preloader {\n border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));\n border-radius: 50%;\n border-top-color: transparent;\n box-sizing: border-box;\n height: 42px;\n left: 50%;\n margin-left: -21px;\n margin-top: -21px;\n position: absolute;\n top: 50%;\n transform-origin: 50%;\n width: 42px;\n z-index: 10;\n }\n .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,\n swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,\n .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {\n animation: swiper-preloader-spin 1s infinite linear;\n }\n .swiper-lazy-preloader-white {\n --swiper-preloader-color: #fff;\n }\n .swiper-lazy-preloader-black {\n --swiper-preloader-color: #000;\n }\n @keyframes swiper-preloader-spin {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n }\n .swiper-virtual .swiper-slide {\n -webkit-backface-visibility: hidden;\n transform: translateZ(0);\n }\n .swiper-virtual.swiper-css-mode .swiper-wrapper::after {\n content: '';\n left: 0;\n pointer-events: none;\n position: absolute;\n top: 0;\n }\n .swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {\n height: 1px;\n width: var(--swiper-virtual-size);\n }\n .swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {\n height: var(--swiper-virtual-size);\n width: 1px;\n }\n :root {\n --swiper-navigation-size: 44px;\n /*\n --swiper-navigation-top-offset: 50%;\n --swiper-navigation-sides-offset: 10px;\n --swiper-navigation-color: var(--swiper-theme-color);\n */\n }\n .swiper-button-prev,\n .swiper-button-next {\n align-items: center;\n color: var(--swiper-navigation-color, var(--swiper-theme-color));\n cursor: pointer;\n display: flex;\n height: var(--swiper-navigation-size);\n justify-content: center;\n margin-top: calc(0px - (var(--swiper-navigation-size) / 2));\n position: absolute;\n top: var(--swiper-navigation-top-offset, 50%);\n width: calc(var(--swiper-navigation-size) / 44 * 27);\n z-index: 10;\n }\n .swiper-button-prev.swiper-button-disabled,\n .swiper-button-next.swiper-button-disabled {\n cursor: auto;\n opacity: 0.35;\n pointer-events: none;\n }\n .swiper-button-prev.swiper-button-hidden,\n .swiper-button-next.swiper-button-hidden {\n cursor: auto;\n opacity: 0;\n pointer-events: none;\n }\n .swiper-navigation-disabled .swiper-button-prev,\n .swiper-navigation-disabled .swiper-button-next {\n display: none !important;\n }\n .swiper-button-prev:after,\n .swiper-button-next:after {\n font-family: swiper-icons;\n font-size: var(--swiper-navigation-size);\n font-variant: initial;\n letter-spacing: 0;\n line-height: 1;\n text-transform: none !important;\n }\n .swiper-button-prev,\n .swiper-rtl .swiper-button-next {\n left: var(--swiper-navigation-sides-offset, 10px);\n right: auto;\n }\n .swiper-button-prev:after,\n .swiper-rtl .swiper-button-next:after {\n content: 'prev';\n }\n .swiper-button-next,\n .swiper-rtl .swiper-button-prev {\n left: auto;\n right: var(--swiper-navigation-sides-offset, 10px);\n }\n .swiper-button-next:after,\n .swiper-rtl .swiper-button-prev:after {\n content: 'next';\n }\n .swiper-button-lock {\n display: none;\n }\n :root {\n /*\n --swiper-pagination-color: var(--swiper-theme-color);\n --swiper-pagination-left: auto;\n --swiper-pagination-right: 8px;\n --swiper-pagination-bottom: 8px;\n --swiper-pagination-top: auto;\n --swiper-pagination-fraction-color: inherit;\n --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);\n --swiper-pagination-progressbar-size: 4px;\n --swiper-pagination-bullet-size: 8px;\n --swiper-pagination-bullet-width: 8px;\n --swiper-pagination-bullet-height: 8px;\n --swiper-pagination-bullet-border-radius: 50%;\n --swiper-pagination-bullet-inactive-color: #000;\n --swiper-pagination-bullet-inactive-opacity: 0.2;\n --swiper-pagination-bullet-opacity: 1;\n --swiper-pagination-bullet-horizontal-gap: 4px;\n --swiper-pagination-bullet-vertical-gap: 6px;\n */\n }\n .swiper-pagination {\n position: absolute;\n text-align: center;\n transform: translate3d(0, 0, 0);\n transition: 300ms opacity;\n z-index: 10;\n }\n .swiper-pagination.swiper-pagination-hidden {\n opacity: 0;\n }\n .swiper-pagination-disabled > .swiper-pagination,\n .swiper-pagination.swiper-pagination-disabled {\n display: none !important;\n }\n /* Common Styles */\n .swiper-pagination-fraction,\n .swiper-pagination-custom,\n .swiper-horizontal > .swiper-pagination-bullets,\n .swiper-pagination-bullets.swiper-pagination-horizontal {\n bottom: var(--swiper-pagination-bottom, 8px);\n left: 0;\n top: var(--swiper-pagination-top, auto);\n width: 100%;\n }\n /* Bullets */\n .swiper-pagination-bullets-dynamic {\n font-size: 0;\n overflow: hidden;\n }\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {\n position: relative;\n transform: scale(0.33);\n }\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {\n transform: scale(1);\n }\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {\n transform: scale(1);\n }\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {\n transform: scale(0.66);\n }\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {\n transform: scale(0.33);\n }\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {\n transform: scale(0.66);\n }\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {\n transform: scale(0.33);\n }\n .swiper-pagination-bullet {\n background: var(--swiper-pagination-bullet-inactive-color, #000);\n border-radius: var(--swiper-pagination-bullet-border-radius, 50%);\n display: inline-block;\n height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));\n opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);\n width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));\n }\n button.swiper-pagination-bullet {\n -webkit-appearance: none;\n appearance: none;\n border: none;\n box-shadow: none;\n margin: 0;\n padding: 0;\n }\n .swiper-pagination-clickable .swiper-pagination-bullet {\n cursor: pointer;\n }\n .swiper-pagination-bullet:only-child {\n display: none !important;\n }\n .swiper-pagination-bullet-active {\n background: var(--swiper-pagination-color, var(--swiper-theme-color));\n opacity: var(--swiper-pagination-bullet-opacity, 1);\n }\n .swiper-vertical > .swiper-pagination-bullets,\n .swiper-pagination-vertical.swiper-pagination-bullets {\n left: var(--swiper-pagination-left, auto);\n right: var(--swiper-pagination-right, 8px);\n top: 50%;\n transform: translate3d(0px, -50%, 0);\n }\n .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,\n .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {\n display: block;\n margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;\n }\n .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,\n .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {\n top: 50%;\n transform: translateY(-50%);\n width: 8px;\n }\n .swiper-vertical\n > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet,\n .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet {\n display: inline-block;\n transition: 200ms transform, 200ms top;\n }\n .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,\n .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {\n margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);\n }\n .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,\n .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {\n left: 50%;\n transform: translateX(-50%);\n white-space: nowrap;\n }\n .swiper-horizontal\n > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet,\n .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet {\n transition: 200ms transform, 200ms left;\n }\n .swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,\n :host(.swiper-horizontal.swiper-rtl)\n .swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet {\n transition: 200ms transform, 200ms right;\n }\n /* Fraction */\n .swiper-pagination-fraction {\n color: var(--swiper-pagination-fraction-color, inherit);\n }\n /* Progress */\n .swiper-pagination-progressbar {\n background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));\n position: absolute;\n /*ADD_HOST*/\n }\n .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {\n background: var(--swiper-pagination-color, var(--swiper-theme-color));\n height: 100%;\n left: 0;\n position: absolute;\n top: 0;\n transform: scale(0);\n transform-origin: left top;\n width: 100%;\n }\n .swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {\n transform-origin: right top;\n }\n .swiper-horizontal > .swiper-pagination-progressbar,\n .swiper-pagination-progressbar.swiper-pagination-horizontal,\n .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,\n .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {\n height: var(--swiper-pagination-progressbar-size, 4px);\n left: 0;\n top: 0;\n width: 100%;\n }\n .swiper-vertical > .swiper-pagination-progressbar,\n .swiper-pagination-progressbar.swiper-pagination-vertical,\n .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,\n .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {\n height: 100%;\n left: 0;\n top: 0;\n width: var(--swiper-pagination-progressbar-size, 4px);\n }\n .swiper-pagination-lock {\n display: none;\n }\n :root {\n /*\n --swiper-scrollbar-border-radius: 10px;\n --swiper-scrollbar-top: auto;\n --swiper-scrollbar-bottom: 4px;\n --swiper-scrollbar-left: auto;\n --swiper-scrollbar-right: 4px;\n --swiper-scrollbar-sides-offset: 1%;\n --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);\n --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);\n --swiper-scrollbar-size: 4px;\n */\n }\n .swiper-scrollbar {\n -ms-touch-action: none;\n background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));\n border-radius: var(--swiper-scrollbar-border-radius, 10px);\n position: relative;\n }\n .swiper-scrollbar-disabled > .swiper-scrollbar,\n .swiper-scrollbar.swiper-scrollbar-disabled {\n display: none !important;\n }\n .swiper-horizontal > .swiper-scrollbar,\n .swiper-scrollbar.swiper-scrollbar-horizontal {\n bottom: var(--swiper-scrollbar-bottom, 4px);\n height: var(--swiper-scrollbar-size, 4px);\n left: var(--swiper-scrollbar-sides-offset, 1%);\n position: absolute;\n top: var(--swiper-scrollbar-top, auto);\n width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));\n z-index: 50;\n }\n .swiper-vertical > .swiper-scrollbar,\n .swiper-scrollbar.swiper-scrollbar-vertical {\n height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));\n left: var(--swiper-scrollbar-left, auto);\n position: absolute;\n right: var(--swiper-scrollbar-right, 4px);\n top: var(--swiper-scrollbar-sides-offset, 1%);\n width: var(--swiper-scrollbar-size, 4px);\n z-index: 50;\n }\n .swiper-scrollbar-drag {\n background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));\n border-radius: var(--swiper-scrollbar-border-radius, 10px);\n height: 100%;\n left: 0;\n position: relative;\n top: 0;\n width: 100%;\n }\n .swiper-scrollbar-cursor-drag {\n cursor: move;\n }\n .swiper-scrollbar-lock {\n display: none;\n }\n .swiper-zoom-container {\n align-items: center;\n display: flex;\n height: 100%;\n justify-content: center;\n text-align: center;\n width: 100%;\n }\n .swiper-zoom-container > img,\n .swiper-zoom-container > svg,\n .swiper-zoom-container > canvas {\n max-height: 100%;\n max-width: 100%;\n object-fit: contain;\n }\n .swiper-slide-zoomed {\n cursor: move;\n touch-action: none;\n }\n /* a11y */\n .swiper .swiper-notification,\n swiper-container .swiper-notification {\n left: 0;\n opacity: 0;\n pointer-events: none;\n position: absolute;\n top: 0;\n z-index: -1000;\n }\n .swiper-free-mode > .swiper-wrapper {\n margin: 0 auto;\n transition-timing-function: ease-out;\n }\n .swiper-grid > .swiper-wrapper {\n flex-wrap: wrap;\n }\n .swiper-grid-column > .swiper-wrapper {\n flex-direction: column;\n flex-wrap: wrap;\n }\n .swiper-fade.swiper-free-mode .swiper-slide {\n transition-timing-function: ease-out;\n }\n .swiper-fade .swiper-slide {\n pointer-events: none;\n transition-property: opacity;\n }\n .swiper-fade .swiper-slide .swiper-slide {\n pointer-events: none;\n }\n .swiper-fade .swiper-slide-active,\n .swiper-fade .swiper-slide-active .swiper-slide-active {\n pointer-events: auto;\n }\n .swiper-cube {\n overflow: visible;\n }\n .swiper-cube .swiper-slide {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n height: 100%;\n pointer-events: none;\n transform-origin: 0 0;\n visibility: hidden;\n width: 100%;\n z-index: 1;\n }\n .swiper-cube .swiper-slide .swiper-slide {\n pointer-events: none;\n }\n .swiper-cube.swiper-rtl .swiper-slide {\n transform-origin: 100% 0;\n }\n .swiper-cube .swiper-slide-active,\n .swiper-cube .swiper-slide-active .swiper-slide-active {\n pointer-events: auto;\n }\n .swiper-cube .swiper-slide-active,\n .swiper-cube .swiper-slide-next,\n .swiper-cube .swiper-slide-prev,\n .swiper-cube .swiper-slide-next + .swiper-slide {\n pointer-events: auto;\n visibility: visible;\n }\n .swiper-cube .swiper-slide-shadow-top,\n .swiper-cube .swiper-slide-shadow-bottom,\n .swiper-cube .swiper-slide-shadow-left,\n .swiper-cube .swiper-slide-shadow-right {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n z-index: 0;\n }\n .swiper-cube .swiper-cube-shadow {\n bottom: 0px;\n height: 100%;\n left: 0;\n opacity: 0.6;\n position: absolute;\n width: 100%;\n z-index: 0;\n }\n .swiper-cube .swiper-cube-shadow:before {\n background: #000;\n bottom: 0;\n content: '';\n filter: blur(50px);\n left: 0;\n position: absolute;\n right: 0;\n top: 0;\n }\n .swiper-flip {\n overflow: visible;\n }\n .swiper-flip .swiper-slide {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n pointer-events: none;\n z-index: 1;\n }\n .swiper-flip .swiper-slide .swiper-slide {\n pointer-events: none;\n }\n .swiper-flip .swiper-slide-active,\n .swiper-flip .swiper-slide-active .swiper-slide-active {\n pointer-events: auto;\n }\n .swiper-flip .swiper-slide-shadow-top,\n .swiper-flip .swiper-slide-shadow-bottom,\n .swiper-flip .swiper-slide-shadow-left,\n .swiper-flip .swiper-slide-shadow-right {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n z-index: 0;\n }\n .swiper-creative .swiper-slide {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n overflow: hidden;\n transition-property: transform, opacity, height;\n }\n .swiper-cards {\n overflow: visible !important;\n }\n\n .swiper-cards .swiper-slide {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n overflow: visible;\n transform-origin: center bottom;\n }\n }\n"], ["\n /**\n * Swiper 9.4.1\n * Most modern mobile touch slider and framework with hardware accelerated transitions\n * https://swiperjs.com\n *\n * Copyright 2014-2023 Vladimir Kharlampidi\n *\n * Released under the MIT License\n *\n * Released on: June 13, 2023\n */\n\n && {\n /* FONT_START */\n @font-face {\n font-family: 'swiper-icons';\n src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');\n font-weight: 400;\n font-style: normal;\n }\n /* FONT_END */\n :root {\n --swiper-theme-color: #007aff;\n /*\n --swiper-preloader-color: var(--swiper-theme-color);\n --swiper-wrapper-transition-timing-function: initial;\n */\n }\n .swiper,\n swiper-container {\n display: block;\n list-style: none;\n margin-left: auto;\n margin-right: auto;\n overflow: hidden;\n padding: 0;\n /* Fix of Webkit flickering */\n position: relative;\n z-index: 1;\n }\n .swiper-vertical > .swiper-wrapper {\n flex-direction: column;\n }\n .swiper-wrapper {\n box-sizing: content-box;\n display: flex;\n height: 100%;\n position: relative;\n transition-property: transform;\n transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);\n width: 100%;\n z-index: 1;\n }\n .swiper-android .swiper-slide,\n .swiper-wrapper {\n transform: translate3d(0px, 0, 0);\n }\n .swiper-horizontal {\n touch-action: pan-y;\n }\n .swiper-vertical {\n touch-action: pan-x;\n }\n .swiper-slide,\n swiper-slide {\n display: block;\n flex-shrink: 0;\n height: 100%;\n position: relative;\n transition-property: transform;\n width: 100%;\n }\n .swiper-slide-invisible-blank {\n visibility: hidden;\n }\n /* Auto Height */\n .swiper-autoheight,\n .swiper-autoheight .swiper-slide {\n height: auto;\n }\n .swiper-autoheight .swiper-wrapper {\n align-items: flex-start;\n transition-property: transform, height;\n }\n .swiper-backface-hidden .swiper-slide {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n transform: translateZ(0);\n }\n /* 3D Effects */\n .swiper-3d.swiper-css-mode .swiper-wrapper {\n perspective: 1200px;\n }\n .swiper-3d .swiper-wrapper {\n transform-style: preserve-3d;\n }\n .swiper-3d {\n perspective: 1200px;\n }\n .swiper-3d .swiper-slide,\n .swiper-3d .swiper-slide-shadow,\n .swiper-3d .swiper-slide-shadow-left,\n .swiper-3d .swiper-slide-shadow-right,\n .swiper-3d .swiper-slide-shadow-top,\n .swiper-3d .swiper-slide-shadow-bottom,\n .swiper-3d .swiper-cube-shadow {\n transform-style: preserve-3d;\n }\n .swiper-3d .swiper-slide-shadow,\n .swiper-3d .swiper-slide-shadow-left,\n .swiper-3d .swiper-slide-shadow-right,\n .swiper-3d .swiper-slide-shadow-top,\n .swiper-3d .swiper-slide-shadow-bottom {\n height: 100%;\n left: 0;\n pointer-events: none;\n position: absolute;\n top: 0;\n width: 100%;\n z-index: 10;\n }\n .swiper-3d .swiper-slide-shadow {\n background: rgba(0, 0, 0, 0.15);\n }\n .swiper-3d .swiper-slide-shadow-left {\n background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n .swiper-3d .swiper-slide-shadow-right {\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n .swiper-3d .swiper-slide-shadow-top {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n .swiper-3d .swiper-slide-shadow-bottom {\n background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n }\n /* CSS Mode */\n .swiper-css-mode > .swiper-wrapper {\n -ms-overflow-style: none;\n overflow: auto;\n /* For Firefox */\n scrollbar-width: none;\n /* For Internet Explorer and Edge */\n }\n .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {\n display: none;\n }\n .swiper-css-mode > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: start start;\n }\n .swiper-horizontal.swiper-css-mode > .swiper-wrapper {\n scroll-snap-type: x mandatory;\n }\n .swiper-vertical.swiper-css-mode > .swiper-wrapper {\n scroll-snap-type: y mandatory;\n }\n .swiper-css-mode.swiper-free-mode > .swiper-wrapper {\n scroll-snap-type: none;\n }\n .swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: none;\n }\n .swiper-centered > .swiper-wrapper::before {\n content: '';\n flex-shrink: 0;\n order: 9999;\n }\n .swiper-centered > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: center center;\n scroll-snap-stop: always;\n }\n .swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {\n margin-inline-start: var(--swiper-centered-offset-before);\n }\n .swiper-centered.swiper-horizontal > .swiper-wrapper::before {\n height: 100%;\n min-height: 1px;\n width: var(--swiper-centered-offset-after);\n }\n .swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {\n margin-block-start: var(--swiper-centered-offset-before);\n }\n .swiper-centered.swiper-vertical > .swiper-wrapper::before {\n height: var(--swiper-centered-offset-after);\n min-width: 1px;\n width: 100%;\n }\n .swiper-lazy-preloader {\n border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));\n border-radius: 50%;\n border-top-color: transparent;\n box-sizing: border-box;\n height: 42px;\n left: 50%;\n margin-left: -21px;\n margin-top: -21px;\n position: absolute;\n top: 50%;\n transform-origin: 50%;\n width: 42px;\n z-index: 10;\n }\n .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,\n swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,\n .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {\n animation: swiper-preloader-spin 1s infinite linear;\n }\n .swiper-lazy-preloader-white {\n --swiper-preloader-color: #fff;\n }\n .swiper-lazy-preloader-black {\n --swiper-preloader-color: #000;\n }\n @keyframes swiper-preloader-spin {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n }\n .swiper-virtual .swiper-slide {\n -webkit-backface-visibility: hidden;\n transform: translateZ(0);\n }\n .swiper-virtual.swiper-css-mode .swiper-wrapper::after {\n content: '';\n left: 0;\n pointer-events: none;\n position: absolute;\n top: 0;\n }\n .swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {\n height: 1px;\n width: var(--swiper-virtual-size);\n }\n .swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {\n height: var(--swiper-virtual-size);\n width: 1px;\n }\n :root {\n --swiper-navigation-size: 44px;\n /*\n --swiper-navigation-top-offset: 50%;\n --swiper-navigation-sides-offset: 10px;\n --swiper-navigation-color: var(--swiper-theme-color);\n */\n }\n .swiper-button-prev,\n .swiper-button-next {\n align-items: center;\n color: var(--swiper-navigation-color, var(--swiper-theme-color));\n cursor: pointer;\n display: flex;\n height: var(--swiper-navigation-size);\n justify-content: center;\n margin-top: calc(0px - (var(--swiper-navigation-size) / 2));\n position: absolute;\n top: var(--swiper-navigation-top-offset, 50%);\n width: calc(var(--swiper-navigation-size) / 44 * 27);\n z-index: 10;\n }\n .swiper-button-prev.swiper-button-disabled,\n .swiper-button-next.swiper-button-disabled {\n cursor: auto;\n opacity: 0.35;\n pointer-events: none;\n }\n .swiper-button-prev.swiper-button-hidden,\n .swiper-button-next.swiper-button-hidden {\n cursor: auto;\n opacity: 0;\n pointer-events: none;\n }\n .swiper-navigation-disabled .swiper-button-prev,\n .swiper-navigation-disabled .swiper-button-next {\n display: none !important;\n }\n .swiper-button-prev:after,\n .swiper-button-next:after {\n font-family: swiper-icons;\n font-size: var(--swiper-navigation-size);\n font-variant: initial;\n letter-spacing: 0;\n line-height: 1;\n text-transform: none !important;\n }\n .swiper-button-prev,\n .swiper-rtl .swiper-button-next {\n left: var(--swiper-navigation-sides-offset, 10px);\n right: auto;\n }\n .swiper-button-prev:after,\n .swiper-rtl .swiper-button-next:after {\n content: 'prev';\n }\n .swiper-button-next,\n .swiper-rtl .swiper-button-prev {\n left: auto;\n right: var(--swiper-navigation-sides-offset, 10px);\n }\n .swiper-button-next:after,\n .swiper-rtl .swiper-button-prev:after {\n content: 'next';\n }\n .swiper-button-lock {\n display: none;\n }\n :root {\n /*\n --swiper-pagination-color: var(--swiper-theme-color);\n --swiper-pagination-left: auto;\n --swiper-pagination-right: 8px;\n --swiper-pagination-bottom: 8px;\n --swiper-pagination-top: auto;\n --swiper-pagination-fraction-color: inherit;\n --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);\n --swiper-pagination-progressbar-size: 4px;\n --swiper-pagination-bullet-size: 8px;\n --swiper-pagination-bullet-width: 8px;\n --swiper-pagination-bullet-height: 8px;\n --swiper-pagination-bullet-border-radius: 50%;\n --swiper-pagination-bullet-inactive-color: #000;\n --swiper-pagination-bullet-inactive-opacity: 0.2;\n --swiper-pagination-bullet-opacity: 1;\n --swiper-pagination-bullet-horizontal-gap: 4px;\n --swiper-pagination-bullet-vertical-gap: 6px;\n */\n }\n .swiper-pagination {\n position: absolute;\n text-align: center;\n transform: translate3d(0, 0, 0);\n transition: 300ms opacity;\n z-index: 10;\n }\n .swiper-pagination.swiper-pagination-hidden {\n opacity: 0;\n }\n .swiper-pagination-disabled > .swiper-pagination,\n .swiper-pagination.swiper-pagination-disabled {\n display: none !important;\n }\n /* Common Styles */\n .swiper-pagination-fraction,\n .swiper-pagination-custom,\n .swiper-horizontal > .swiper-pagination-bullets,\n .swiper-pagination-bullets.swiper-pagination-horizontal {\n bottom: var(--swiper-pagination-bottom, 8px);\n left: 0;\n top: var(--swiper-pagination-top, auto);\n width: 100%;\n }\n /* Bullets */\n .swiper-pagination-bullets-dynamic {\n font-size: 0;\n overflow: hidden;\n }\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {\n position: relative;\n transform: scale(0.33);\n }\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {\n transform: scale(1);\n }\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {\n transform: scale(1);\n }\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {\n transform: scale(0.66);\n }\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {\n transform: scale(0.33);\n }\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {\n transform: scale(0.66);\n }\n .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {\n transform: scale(0.33);\n }\n .swiper-pagination-bullet {\n background: var(--swiper-pagination-bullet-inactive-color, #000);\n border-radius: var(--swiper-pagination-bullet-border-radius, 50%);\n display: inline-block;\n height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));\n opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);\n width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));\n }\n button.swiper-pagination-bullet {\n -webkit-appearance: none;\n appearance: none;\n border: none;\n box-shadow: none;\n margin: 0;\n padding: 0;\n }\n .swiper-pagination-clickable .swiper-pagination-bullet {\n cursor: pointer;\n }\n .swiper-pagination-bullet:only-child {\n display: none !important;\n }\n .swiper-pagination-bullet-active {\n background: var(--swiper-pagination-color, var(--swiper-theme-color));\n opacity: var(--swiper-pagination-bullet-opacity, 1);\n }\n .swiper-vertical > .swiper-pagination-bullets,\n .swiper-pagination-vertical.swiper-pagination-bullets {\n left: var(--swiper-pagination-left, auto);\n right: var(--swiper-pagination-right, 8px);\n top: 50%;\n transform: translate3d(0px, -50%, 0);\n }\n .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,\n .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {\n display: block;\n margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;\n }\n .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,\n .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {\n top: 50%;\n transform: translateY(-50%);\n width: 8px;\n }\n .swiper-vertical\n > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet,\n .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet {\n display: inline-block;\n transition: 200ms transform, 200ms top;\n }\n .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,\n .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {\n margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);\n }\n .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,\n .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {\n left: 50%;\n transform: translateX(-50%);\n white-space: nowrap;\n }\n .swiper-horizontal\n > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet,\n .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet {\n transition: 200ms transform, 200ms left;\n }\n .swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,\n :host(.swiper-horizontal.swiper-rtl)\n .swiper-pagination-bullets-dynamic\n .swiper-pagination-bullet {\n transition: 200ms transform, 200ms right;\n }\n /* Fraction */\n .swiper-pagination-fraction {\n color: var(--swiper-pagination-fraction-color, inherit);\n }\n /* Progress */\n .swiper-pagination-progressbar {\n background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));\n position: absolute;\n /*ADD_HOST*/\n }\n .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {\n background: var(--swiper-pagination-color, var(--swiper-theme-color));\n height: 100%;\n left: 0;\n position: absolute;\n top: 0;\n transform: scale(0);\n transform-origin: left top;\n width: 100%;\n }\n .swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {\n transform-origin: right top;\n }\n .swiper-horizontal > .swiper-pagination-progressbar,\n .swiper-pagination-progressbar.swiper-pagination-horizontal,\n .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,\n .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {\n height: var(--swiper-pagination-progressbar-size, 4px);\n left: 0;\n top: 0;\n width: 100%;\n }\n .swiper-vertical > .swiper-pagination-progressbar,\n .swiper-pagination-progressbar.swiper-pagination-vertical,\n .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,\n .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {\n height: 100%;\n left: 0;\n top: 0;\n width: var(--swiper-pagination-progressbar-size, 4px);\n }\n .swiper-pagination-lock {\n display: none;\n }\n :root {\n /*\n --swiper-scrollbar-border-radius: 10px;\n --swiper-scrollbar-top: auto;\n --swiper-scrollbar-bottom: 4px;\n --swiper-scrollbar-left: auto;\n --swiper-scrollbar-right: 4px;\n --swiper-scrollbar-sides-offset: 1%;\n --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);\n --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);\n --swiper-scrollbar-size: 4px;\n */\n }\n .swiper-scrollbar {\n -ms-touch-action: none;\n background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));\n border-radius: var(--swiper-scrollbar-border-radius, 10px);\n position: relative;\n }\n .swiper-scrollbar-disabled > .swiper-scrollbar,\n .swiper-scrollbar.swiper-scrollbar-disabled {\n display: none !important;\n }\n .swiper-horizontal > .swiper-scrollbar,\n .swiper-scrollbar.swiper-scrollbar-horizontal {\n bottom: var(--swiper-scrollbar-bottom, 4px);\n height: var(--swiper-scrollbar-size, 4px);\n left: var(--swiper-scrollbar-sides-offset, 1%);\n position: absolute;\n top: var(--swiper-scrollbar-top, auto);\n width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));\n z-index: 50;\n }\n .swiper-vertical > .swiper-scrollbar,\n .swiper-scrollbar.swiper-scrollbar-vertical {\n height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));\n left: var(--swiper-scrollbar-left, auto);\n position: absolute;\n right: var(--swiper-scrollbar-right, 4px);\n top: var(--swiper-scrollbar-sides-offset, 1%);\n width: var(--swiper-scrollbar-size, 4px);\n z-index: 50;\n }\n .swiper-scrollbar-drag {\n background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));\n border-radius: var(--swiper-scrollbar-border-radius, 10px);\n height: 100%;\n left: 0;\n position: relative;\n top: 0;\n width: 100%;\n }\n .swiper-scrollbar-cursor-drag {\n cursor: move;\n }\n .swiper-scrollbar-lock {\n display: none;\n }\n .swiper-zoom-container {\n align-items: center;\n display: flex;\n height: 100%;\n justify-content: center;\n text-align: center;\n width: 100%;\n }\n .swiper-zoom-container > img,\n .swiper-zoom-container > svg,\n .swiper-zoom-container > canvas {\n max-height: 100%;\n max-width: 100%;\n object-fit: contain;\n }\n .swiper-slide-zoomed {\n cursor: move;\n touch-action: none;\n }\n /* a11y */\n .swiper .swiper-notification,\n swiper-container .swiper-notification {\n left: 0;\n opacity: 0;\n pointer-events: none;\n position: absolute;\n top: 0;\n z-index: -1000;\n }\n .swiper-free-mode > .swiper-wrapper {\n margin: 0 auto;\n transition-timing-function: ease-out;\n }\n .swiper-grid > .swiper-wrapper {\n flex-wrap: wrap;\n }\n .swiper-grid-column > .swiper-wrapper {\n flex-direction: column;\n flex-wrap: wrap;\n }\n .swiper-fade.swiper-free-mode .swiper-slide {\n transition-timing-function: ease-out;\n }\n .swiper-fade .swiper-slide {\n pointer-events: none;\n transition-property: opacity;\n }\n .swiper-fade .swiper-slide .swiper-slide {\n pointer-events: none;\n }\n .swiper-fade .swiper-slide-active,\n .swiper-fade .swiper-slide-active .swiper-slide-active {\n pointer-events: auto;\n }\n .swiper-cube {\n overflow: visible;\n }\n .swiper-cube .swiper-slide {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n height: 100%;\n pointer-events: none;\n transform-origin: 0 0;\n visibility: hidden;\n width: 100%;\n z-index: 1;\n }\n .swiper-cube .swiper-slide .swiper-slide {\n pointer-events: none;\n }\n .swiper-cube.swiper-rtl .swiper-slide {\n transform-origin: 100% 0;\n }\n .swiper-cube .swiper-slide-active,\n .swiper-cube .swiper-slide-active .swiper-slide-active {\n pointer-events: auto;\n }\n .swiper-cube .swiper-slide-active,\n .swiper-cube .swiper-slide-next,\n .swiper-cube .swiper-slide-prev,\n .swiper-cube .swiper-slide-next + .swiper-slide {\n pointer-events: auto;\n visibility: visible;\n }\n .swiper-cube .swiper-slide-shadow-top,\n .swiper-cube .swiper-slide-shadow-bottom,\n .swiper-cube .swiper-slide-shadow-left,\n .swiper-cube .swiper-slide-shadow-right {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n z-index: 0;\n }\n .swiper-cube .swiper-cube-shadow {\n bottom: 0px;\n height: 100%;\n left: 0;\n opacity: 0.6;\n position: absolute;\n width: 100%;\n z-index: 0;\n }\n .swiper-cube .swiper-cube-shadow:before {\n background: #000;\n bottom: 0;\n content: '';\n filter: blur(50px);\n left: 0;\n position: absolute;\n right: 0;\n top: 0;\n }\n .swiper-flip {\n overflow: visible;\n }\n .swiper-flip .swiper-slide {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n pointer-events: none;\n z-index: 1;\n }\n .swiper-flip .swiper-slide .swiper-slide {\n pointer-events: none;\n }\n .swiper-flip .swiper-slide-active,\n .swiper-flip .swiper-slide-active .swiper-slide-active {\n pointer-events: auto;\n }\n .swiper-flip .swiper-slide-shadow-top,\n .swiper-flip .swiper-slide-shadow-bottom,\n .swiper-flip .swiper-slide-shadow-left,\n .swiper-flip .swiper-slide-shadow-right {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n z-index: 0;\n }\n .swiper-creative .swiper-slide {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n overflow: hidden;\n transition-property: transform, opacity, height;\n }\n .swiper-cards {\n overflow: visible !important;\n }\n\n .swiper-cards .swiper-slide {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n overflow: visible;\n transform-origin: center bottom;\n }\n }\n"])));
|
|
12
|
-
exports.default = StyledSwiperWrapper;
|
|
13
|
-
var templateObject_1;
|
package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseCompositionPlacement.d.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import type { ICompositionJsonProperties } from '../../../../DynamicLayout/types';
|
|
2
|
-
type Props = {
|
|
3
|
-
isMobile: boolean;
|
|
4
|
-
compositionProps: ICompositionJsonProperties['data']['CB_PLACEMENT_PROP_COMPOSITION'];
|
|
5
|
-
};
|
|
6
|
-
declare function parseCompositionPlacement({ isMobile, compositionProps }: Props): {
|
|
7
|
-
minHeight: number | null;
|
|
8
|
-
maxHeight: number | null;
|
|
9
|
-
minWidth: number | null;
|
|
10
|
-
maxWidth: number | null;
|
|
11
|
-
rows: number;
|
|
12
|
-
columns: number;
|
|
13
|
-
};
|
|
14
|
-
export default parseCompositionPlacement;
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
function parseCompositionPlacement(_a) {
|
|
4
|
-
var _b, _c, _d, _e, _f, _g;
|
|
5
|
-
var isMobile = _a.isMobile, compositionProps = _a.compositionProps;
|
|
6
|
-
var CB_PLACEMENT_PROP_COMPOSITION_SPEC_MAXHEIGHT = compositionProps.CB_PLACEMENT_PROP_COMPOSITION_SPEC_MAXHEIGHT, CB_PLACEMENT_PROP_COMPOSITION_SPEC_MINHEIGHT = compositionProps.CB_PLACEMENT_PROP_COMPOSITION_SPEC_MINHEIGHT, CB_PLACEMENT_PROP_COMPOSITION_SPEC_MAXWIDTH = compositionProps.CB_PLACEMENT_PROP_COMPOSITION_SPEC_MAXWIDTH, CB_PLACEMENT_PROP_COMPOSITION_SPEC_MINWIDTH = compositionProps.CB_PLACEMENT_PROP_COMPOSITION_SPEC_MINWIDTH, CB_PLACEMENT_PROP_COMPOSITION_SPEC_ROWS = compositionProps.CB_PLACEMENT_PROP_COMPOSITION_SPEC_ROWS, CB_PLACEMENT_PROP_COMPOSITION_SPEC_COLUMNS = compositionProps.CB_PLACEMENT_PROP_COMPOSITION_SPEC_COLUMNS;
|
|
7
|
-
if (isMobile) {
|
|
8
|
-
return {
|
|
9
|
-
minHeight: (_b = compositionProps['CB_PLACEMENT_PROP_COMPOSITION_SPEC_MINHEIGHT:MOBILE']) !== null && _b !== void 0 ? _b : CB_PLACEMENT_PROP_COMPOSITION_SPEC_MINHEIGHT,
|
|
10
|
-
maxHeight: (_c = compositionProps['CB_PLACEMENT_PROP_COMPOSITION_SPEC_MAXHEIGHT:MOBILE']) !== null && _c !== void 0 ? _c : CB_PLACEMENT_PROP_COMPOSITION_SPEC_MAXHEIGHT,
|
|
11
|
-
minWidth: (_d = compositionProps['CB_PLACEMENT_PROP_COMPOSITION_SPEC_MINWIDTH:MOBILE']) !== null && _d !== void 0 ? _d : CB_PLACEMENT_PROP_COMPOSITION_SPEC_MINWIDTH,
|
|
12
|
-
maxWidth: (_e = compositionProps['CB_PLACEMENT_PROP_COMPOSITION_SPEC_MAXWIDTH:MOBILE']) !== null && _e !== void 0 ? _e : CB_PLACEMENT_PROP_COMPOSITION_SPEC_MAXWIDTH,
|
|
13
|
-
rows: (_f = compositionProps['CB_PLACEMENT_PROP_COMPOSITION_SPEC_ROWS:MOBILE']) !== null && _f !== void 0 ? _f : CB_PLACEMENT_PROP_COMPOSITION_SPEC_ROWS,
|
|
14
|
-
columns: (_g = compositionProps['CB_PLACEMENT_PROP_COMPOSITION_SPEC_COLUMNS:MOBILE']) !== null && _g !== void 0 ? _g : CB_PLACEMENT_PROP_COMPOSITION_SPEC_COLUMNS
|
|
15
|
-
};
|
|
16
|
-
}
|
|
17
|
-
return {
|
|
18
|
-
minHeight: CB_PLACEMENT_PROP_COMPOSITION_SPEC_MINHEIGHT,
|
|
19
|
-
maxHeight: CB_PLACEMENT_PROP_COMPOSITION_SPEC_MAXHEIGHT,
|
|
20
|
-
minWidth: CB_PLACEMENT_PROP_COMPOSITION_SPEC_MINWIDTH,
|
|
21
|
-
maxWidth: CB_PLACEMENT_PROP_COMPOSITION_SPEC_MAXWIDTH,
|
|
22
|
-
rows: CB_PLACEMENT_PROP_COMPOSITION_SPEC_ROWS,
|
|
23
|
-
columns: CB_PLACEMENT_PROP_COMPOSITION_SPEC_COLUMNS
|
|
24
|
-
};
|
|
25
|
-
}
|
|
26
|
-
exports.default = parseCompositionPlacement;
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import type { ComponentBlock } from '../sections/CustomSection/types';
|
|
3
|
-
import type { Device } from '../sections/CustomSection/util/types';
|
|
4
|
-
import type { LayoutItem } from 'publ-echo/dist/lib';
|
|
5
|
-
import type { Block } from 'publ-echo/dist/lib/GridLayoutEditor/group';
|
|
6
|
-
export declare function findAllChildrenCbIds(block: Block, targetGroupId: string): number[];
|
|
7
|
-
export default function RenderPedigreeRecursively({ isEditMode, block, layoutItems, cbs, parentGroupArea, rowHeight, device, selectedRows, pinnedGBs, isParentGroupPinned, onToggleGBPinned }: {
|
|
8
|
-
isEditMode: boolean;
|
|
9
|
-
block: Block;
|
|
10
|
-
layoutItems: LayoutItem[];
|
|
11
|
-
cbs: ComponentBlock[];
|
|
12
|
-
rowHeight: number;
|
|
13
|
-
device: Device;
|
|
14
|
-
selectedRows: number[];
|
|
15
|
-
pinnedGBs: string[];
|
|
16
|
-
onToggleGBPinned: (gbId: string) => void;
|
|
17
|
-
isParentGroupPinned?: boolean;
|
|
18
|
-
parentGroupArea?: {
|
|
19
|
-
rowStart: number;
|
|
20
|
-
colStart: number;
|
|
21
|
-
rowEnd: number;
|
|
22
|
-
colEnd: number;
|
|
23
|
-
};
|
|
24
|
-
}): JSX.Element;
|
|
@@ -1,224 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
3
|
-
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
4
|
-
return cooked;
|
|
5
|
-
};
|
|
6
|
-
var __assign = (this && this.__assign) || function () {
|
|
7
|
-
__assign = Object.assign || function(t) {
|
|
8
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
9
|
-
s = arguments[i];
|
|
10
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
11
|
-
t[p] = s[p];
|
|
12
|
-
}
|
|
13
|
-
return t;
|
|
14
|
-
};
|
|
15
|
-
return __assign.apply(this, arguments);
|
|
16
|
-
};
|
|
17
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18
|
-
if (k2 === undefined) k2 = k;
|
|
19
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
20
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
21
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
22
|
-
}
|
|
23
|
-
Object.defineProperty(o, k2, desc);
|
|
24
|
-
}) : (function(o, m, k, k2) {
|
|
25
|
-
if (k2 === undefined) k2 = k;
|
|
26
|
-
o[k2] = m[k];
|
|
27
|
-
}));
|
|
28
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
29
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
30
|
-
}) : function(o, v) {
|
|
31
|
-
o["default"] = v;
|
|
32
|
-
});
|
|
33
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
34
|
-
if (mod && mod.__esModule) return mod;
|
|
35
|
-
var result = {};
|
|
36
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
37
|
-
__setModuleDefault(result, mod);
|
|
38
|
-
return result;
|
|
39
|
-
};
|
|
40
|
-
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
41
|
-
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
42
|
-
if (ar || !(i in from)) {
|
|
43
|
-
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
44
|
-
ar[i] = from[i];
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
return to.concat(ar || Array.prototype.slice.call(from));
|
|
48
|
-
};
|
|
49
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
50
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
51
|
-
};
|
|
52
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
53
|
-
exports.findAllChildrenCbIds = void 0;
|
|
54
|
-
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
55
|
-
var renderHelpers_1 = require("publ-echo-test/dist/lib/GridLayoutEditor/utils/renderHelpers");
|
|
56
|
-
var styled_components_1 = __importDefault(require("styled-components"));
|
|
57
|
-
var ErrorBoundary_1 = require("../components/Section/ErrorBoundary");
|
|
58
|
-
var FlexGridItem_1 = __importStar(require("../CompositionRenderer/FlexGridItem"));
|
|
59
|
-
function findAllChildrenCbIds(block, targetGroupId) {
|
|
60
|
-
// 현재 블록이 target group이면, 모든 하위 컴포넌트 블록 ID를 수집
|
|
61
|
-
if (block.blockId === targetGroupId) {
|
|
62
|
-
if (block.type === 'COMPONENT_BLOCK') {
|
|
63
|
-
return [block.componentBlockId];
|
|
64
|
-
}
|
|
65
|
-
// GROUP_BLOCK인 경우 모든 자식들의 ID를 재귀적으로 수집
|
|
66
|
-
return block.children.reduce(function (acc, child) {
|
|
67
|
-
return __spreadArray(__spreadArray([], acc, true), findAllChildrenCbIds(child, child.blockId), true);
|
|
68
|
-
}, []);
|
|
69
|
-
}
|
|
70
|
-
// 현재 블록이 target group이 아니고 COMPONENT_BLOCK이면 빈 배열 반환
|
|
71
|
-
if (block.type === 'COMPONENT_BLOCK') {
|
|
72
|
-
return [];
|
|
73
|
-
}
|
|
74
|
-
// GROUP_BLOCK이면 자식들에 대해 재귀적으로 탐색
|
|
75
|
-
return block.children.reduce(function (acc, child) {
|
|
76
|
-
return __spreadArray(__spreadArray([], acc, true), findAllChildrenCbIds(child, targetGroupId), true);
|
|
77
|
-
}, []);
|
|
78
|
-
}
|
|
79
|
-
exports.findAllChildrenCbIds = findAllChildrenCbIds;
|
|
80
|
-
function RenderPedigreeRecursively(_a) {
|
|
81
|
-
var isEditMode = _a.isEditMode, block = _a.block, layoutItems = _a.layoutItems, cbs = _a.cbs, parentGroupArea = _a.parentGroupArea, rowHeight = _a.rowHeight, device = _a.device, selectedRows = _a.selectedRows, pinnedGBs = _a.pinnedGBs, _b = _a.isParentGroupPinned, isParentGroupPinned = _b === void 0 ? false : _b, onToggleGBPinned = _a.onToggleGBPinned;
|
|
82
|
-
var type = block.type;
|
|
83
|
-
if (type === 'GROUP_BLOCK') {
|
|
84
|
-
var childrenIds = findAllChildrenCbIds(block, block.blockId).map(function (i) { return i.toString(); });
|
|
85
|
-
var bounding_1 = (0, renderHelpers_1.getBoundingArea)(layoutItems, childrenIds);
|
|
86
|
-
if (!bounding_1) {
|
|
87
|
-
return (0, jsx_runtime_1.jsx)("div", { children: "GROUP: NO BOUNDING AREA" });
|
|
88
|
-
}
|
|
89
|
-
var gridArea_1 = getGridAreaFromGroup({
|
|
90
|
-
x: bounding_1.x,
|
|
91
|
-
y: bounding_1.y,
|
|
92
|
-
cols: bounding_1.w,
|
|
93
|
-
rows: bounding_1.h
|
|
94
|
-
});
|
|
95
|
-
var relativeGridArea_1 = parentGroupArea
|
|
96
|
-
? calculateRelativeGridArea(gridArea_1, parentGroupArea)
|
|
97
|
-
: gridArea_1;
|
|
98
|
-
// 그룹의 시작 행을 기준으로 상대적인 selectedRows 계산
|
|
99
|
-
var relativeSelectedRows_1 = selectedRows
|
|
100
|
-
.map(function (row) { return row - gridArea_1.rowStart + 1; })
|
|
101
|
-
.filter(function (row) { return row >= 0 && row <= bounding_1.h; });
|
|
102
|
-
var isGBPinned_1 = pinnedGBs.includes(block.blockId);
|
|
103
|
-
var defaultHeight = getMaxHeight({ cols: bounding_1.w, rows: bounding_1.h, x: bounding_1.x, y: bounding_1.y }, rowHeight);
|
|
104
|
-
return ((0, jsx_runtime_1.jsxs)(S_GroupItem, __assign({ cols: bounding_1.w, sectionRow: bounding_1.h, isEditMode: isEditMode, rowHeight: rowHeight, selectedRows: relativeSelectedRows_1, style: {
|
|
105
|
-
gridArea: gridAreaObjToString(relativeGridArea_1),
|
|
106
|
-
display: 'grid',
|
|
107
|
-
zIndex: device === 'DESKTOP'
|
|
108
|
-
? block.zOrderDesktopInternal
|
|
109
|
-
: block.zOrderMobileInternal,
|
|
110
|
-
maxHeight: isGBPinned_1 ? defaultHeight : 'none'
|
|
111
|
-
} }, { children: [isEditMode && ((0, jsx_runtime_1.jsx)(S_Pinned, { children: isGBPinned_1 ? ((0, jsx_runtime_1.jsx)("button", __assign({ type: "button", onClick: function () { return onToggleGBPinned(block.blockId); } }, { children: "H\uACE0\uC815\uB428 \uD83D\uDCCC" }))) : ((0, jsx_runtime_1.jsx)("button", __assign({ type: "button", onClick: function () { return onToggleGBPinned(block.blockId); } }, { children: "H\uB298\uC5B4\uB0A8 \uD83E\uDEB1" }))) })), block.children.map(function (child) { return ((0, jsx_runtime_1.jsx)(RenderPedigreeRecursively, { rowHeight: rowHeight, block: child, layoutItems: layoutItems, cbs: cbs, parentGroupArea: gridArea_1, device: device, selectedRows: relativeSelectedRows_1, pinnedGBs: pinnedGBs, onToggleGBPinned: onToggleGBPinned, isEditMode: isEditMode, isParentGroupPinned: isGBPinned_1 }, child.blockId)); })] })));
|
|
112
|
-
}
|
|
113
|
-
// default: TYPE === 'COMPONENT_BLOCK'
|
|
114
|
-
var cbIndex = cbs.findIndex(function (c) { return c.blockId === block.blockId; });
|
|
115
|
-
var cb = cbs[cbIndex];
|
|
116
|
-
if (!cb) {
|
|
117
|
-
return (0, jsx_runtime_1.jsxs)("div", { children: ["NO CB FOUND FOR ", block.blockId] });
|
|
118
|
-
}
|
|
119
|
-
var originalGridAreaString = (0, FlexGridItem_1.getGridAreaFromCB)(cb.jsonProperties.data.CB_PLACEMENT_PROP_PLACEMENT, device);
|
|
120
|
-
var originalGridArea = parseGridArea(originalGridAreaString);
|
|
121
|
-
// 부모 그룹이 있는 경우, 상대적 위치 계산
|
|
122
|
-
var relativeGridArea = parentGroupArea
|
|
123
|
-
? calculateRelativeGridArea(originalGridArea, parentGroupArea)
|
|
124
|
-
: originalGridArea;
|
|
125
|
-
return (
|
|
126
|
-
// <S_GridItem
|
|
127
|
-
// style={{
|
|
128
|
-
// gridArea: gridAreaObjToString(relativeGridArea)
|
|
129
|
-
// }}
|
|
130
|
-
// data-og-grid-area={originalGridAreaString}
|
|
131
|
-
// data-rel-grid-area={gridAreaObjToString(relativeGridArea)}
|
|
132
|
-
// >
|
|
133
|
-
(0, jsx_runtime_1.jsx)(ErrorBoundary_1.ErrorBoundary, { children: (0, jsx_runtime_1.jsx)(FlexGridItem_1.default, { cb: cb, index: cbIndex, device: device, rowHeight: rowHeight, zIndex: device === 'DESKTOP'
|
|
134
|
-
? block.zOrderDesktopInternal
|
|
135
|
-
: block.zOrderMobileInternal, style: {
|
|
136
|
-
gridArea: gridAreaObjToString(relativeGridArea),
|
|
137
|
-
pointerEvents: isEditMode ? 'none' : 'auto',
|
|
138
|
-
boxShadow: isEditMode ? '0 0 0 2px red' : ''
|
|
139
|
-
}, showPinned: isEditMode && !parentGroupArea, isParentGroupPinned: isParentGroupPinned }) }, cb.id)
|
|
140
|
-
// </S_GridItem>
|
|
141
|
-
);
|
|
142
|
-
}
|
|
143
|
-
exports.default = RenderPedigreeRecursively;
|
|
144
|
-
var S_Pinned = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n pointer-events: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: 9999999;\n"], ["\n pointer-events: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: 9999999;\n"])));
|
|
145
|
-
function clamp(num, min, max) {
|
|
146
|
-
return Math.max(Math.min(num, max), min);
|
|
147
|
-
}
|
|
148
|
-
function gridAreaObjToString(area) {
|
|
149
|
-
var rowStart = area.rowStart, colStart = area.colStart, rowEnd = area.rowEnd, colEnd = area.colEnd;
|
|
150
|
-
return "".concat(rowStart, " / ").concat(colStart, " / ").concat(rowEnd, " / ").concat(colEnd);
|
|
151
|
-
}
|
|
152
|
-
function getGridAreaFromGroup(position) {
|
|
153
|
-
var x = position.x, y = position.y, cols = position.cols, rows = position.rows;
|
|
154
|
-
var colStart = clamp(x + 1, 1, Math.max(1, 25 - cols));
|
|
155
|
-
var rowStart = clamp(y + 1, 1, Infinity);
|
|
156
|
-
var rowEnd = clamp(rows + rowStart, rowStart + 1, Infinity);
|
|
157
|
-
var colEnd = clamp(colStart + cols, colStart + 1, 25);
|
|
158
|
-
return {
|
|
159
|
-
rowStart: rowStart,
|
|
160
|
-
colStart: colStart,
|
|
161
|
-
rowEnd: rowEnd,
|
|
162
|
-
colEnd: colEnd
|
|
163
|
-
};
|
|
164
|
-
// const startXMobile = props['CB_PLACEMENT_PROP_PLACEMENT_SPEC_STARTX:MOBILE'];
|
|
165
|
-
// const startYMobile = props['CB_PLACEMENT_PROP_PLACEMENT_SPEC_STARTY:MOBILE'];
|
|
166
|
-
// const colsMobile = props['CB_PLACEMENT_PROP_PLACEMENT_SPEC_COLS:MOBILE'];
|
|
167
|
-
// const rowsMobile = props['CB_PLACEMENT_PROP_PLACEMENT_SPEC_ROWS:MOBILE'];
|
|
168
|
-
// const colStart = clamp(startXMobile + 1, 1, Math.max(1, 9 - colsMobile));
|
|
169
|
-
// const rowStart = clamp(startYMobile + 1, 1, Infinity);
|
|
170
|
-
// const rowEnd = clamp(rowsMobile + rowStart, rowStart + 1, Infinity);
|
|
171
|
-
// const colEnd = clamp(colStart + colsMobile, colStart + 1, 9);
|
|
172
|
-
// return `${rowStart} / ${colStart} / ${rowEnd} / ${colEnd}`;
|
|
173
|
-
}
|
|
174
|
-
/**
|
|
175
|
-
* grid-area 문자열을 파싱하여 객체로 변환합니다.
|
|
176
|
-
* 예: "1 / 2 / 3 / 4" => { rowStart: 1, colStart: 2, rowEnd: 3, colEnd: 4 }
|
|
177
|
-
*/
|
|
178
|
-
function parseGridArea(gridArea) {
|
|
179
|
-
var _a = gridArea
|
|
180
|
-
.split('/')
|
|
181
|
-
.map(function (str) { return parseInt(str.trim(), 10); }), rowStart = _a[0], colStart = _a[1], rowEnd = _a[2], colEnd = _a[3];
|
|
182
|
-
return { rowStart: rowStart, colStart: colStart, rowEnd: rowEnd, colEnd: colEnd };
|
|
183
|
-
}
|
|
184
|
-
/**
|
|
185
|
-
* 부모 그룹 영역을 기준으로 컴포넌트의 상대적 위치를 계산합니다.
|
|
186
|
-
* 예: 부모가 row 21에서 시작하고 컴포넌트가 row 21에 있다면, 상대적으로는 row 1에 위치하게 됩니다.
|
|
187
|
-
*/
|
|
188
|
-
function calculateRelativeGridArea(componentArea, parentArea) {
|
|
189
|
-
return {
|
|
190
|
-
// 컴포넌트의 시작 위치에서 부모의 시작 위치를 빼서 상대적 위치 계산
|
|
191
|
-
rowStart: componentArea.rowStart - parentArea.rowStart + 1,
|
|
192
|
-
colStart: componentArea.colStart - parentArea.colStart + 1,
|
|
193
|
-
// 상대적 끝 위치도 같은 방식으로 계산
|
|
194
|
-
rowEnd: componentArea.rowEnd - parentArea.rowStart + 1,
|
|
195
|
-
colEnd: componentArea.colEnd - parentArea.colStart + 1
|
|
196
|
-
};
|
|
197
|
-
}
|
|
198
|
-
function getMaxHeight(props, rowHeight) {
|
|
199
|
-
var gap = 10;
|
|
200
|
-
var rows = props.rows;
|
|
201
|
-
var height = rows * rowHeight + (rows - 1) * gap;
|
|
202
|
-
return height;
|
|
203
|
-
// if (device === 'DESKTOP') {
|
|
204
|
-
// const { rows } = props;
|
|
205
|
-
// const height = rows * rowHeight + (rows - 1) * gap;
|
|
206
|
-
// return height;
|
|
207
|
-
// }
|
|
208
|
-
// const rowsMobile = props['CB_PLACEMENT_PROP_PLACEMENT_SPEC_ROWS:MOBILE'];
|
|
209
|
-
// const height = rowsMobile * rowHeight + (rowsMobile - 1) * gap;
|
|
210
|
-
// return height;
|
|
211
|
-
}
|
|
212
|
-
var S_GroupItem = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n box-shadow: ", ";\n gap: 10px;\n grid-template-columns: repeat(", ", 1fr);\n grid-template-rows: ", ";\n pointer-events: none;\n position: relative; /* \uBC30\uC5F4\uC744 \uACF5\uBC31\uC73C\uB85C \uAD6C\uBD84\uB41C \uBB38\uC790\uC5F4\uB85C \uD569\uCE69\uB2C8\uB2E4. */\n"], ["\n box-shadow: ", ";\n gap: 10px;\n grid-template-columns: repeat(", ", 1fr);\n grid-template-rows: ", ";\n pointer-events: none;\n position: relative; /* \uBC30\uC5F4\uC744 \uACF5\uBC31\uC73C\uB85C \uAD6C\uBD84\uB41C \uBB38\uC790\uC5F4\uB85C \uD569\uCE69\uB2C8\uB2E4. */\n"])), function (props) { return (props.isEditMode ? '0 0 0 2px blue' : 'none'); }, function (props) { return props.cols; }, function (props) {
|
|
213
|
-
// // 전체 행 개수만큼 배열을 생성하여 각 행의 CSS 값을 정의합니다.
|
|
214
|
-
return Array.from({ length: props.sectionRow })
|
|
215
|
-
.map(function (_, index) {
|
|
216
|
-
// props로 받은 selectedRows 배열에 현재 행(index)이 포함되어 있는지 확인합니다.
|
|
217
|
-
return props.selectedRows.includes(index)
|
|
218
|
-
? "minmax(".concat(props.rowHeight, "px, auto)") // 포함되어 있다면 minmax 사용
|
|
219
|
-
: "".concat(props.rowHeight, "px");
|
|
220
|
-
} // 포함되어 있지 않다면 고정 높이 사용
|
|
221
|
-
)
|
|
222
|
-
.join(' ');
|
|
223
|
-
});
|
|
224
|
-
var templateObject_1, templateObject_2;
|
/package/dist/src/{sub/DynamicLayout/compositionActionTypes.js → common/types/LocalizedContent.js}
RENAMED
|
File without changes
|