pds-dev-kit-web 1.9.0-beta.4 → 1.9.0-beta.6
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 +2 -0
- package/dist/index.js +14 -0
- package/dist/src/common/assets/icons/fill/ArrowDown.js +1 -1
- package/dist/src/common/assets/icons/fill/ArrowUp.js +1 -1
- package/dist/src/common/assets/icons/line/CsBold.d.ts +4 -0
- package/dist/src/common/assets/icons/line/CsBold.js +34 -0
- package/dist/src/common/assets/icons/line/CsFace.d.ts +4 -0
- package/dist/src/common/assets/icons/line/CsFace.js +34 -0
- package/dist/src/common/assets/icons/line/index.d.ts +2 -0
- package/dist/src/common/assets/icons/line/index.js +4 -0
- package/dist/src/common/styles/colorSet/PaletteColor_Dark.json +1 -1
- package/dist/src/common/styles/colorSet/PaletteColor_light.json +1 -1
- package/dist/src/common/styles/colorSet/SemanticColor.json +3 -1
- package/dist/src/common/styles/colorSet/UIColor.json +3 -2
- package/dist/src/common/styles/colorSet/index.d.ts +97 -94
- package/dist/src/common/styles/colorSet/index.js +2 -2
- package/dist/src/common/styles/colorSet/ui-type.d.ts +1 -0
- package/dist/src/common/styles/movement/animationStyle.d.ts +8 -0
- package/dist/src/common/styles/movement/animationStyle.js +18 -0
- package/dist/src/common/styles/movement/keyframes.d.ts +14 -0
- package/dist/src/common/styles/movement/keyframes.js +23 -0
- package/dist/src/common/styles/movement/transitionStyle.d.ts +3 -0
- package/dist/src/common/styles/movement/transitionStyle.js +12 -0
- package/dist/src/common/styles/scroll/scrollbarStyle.d.ts +2 -0
- package/dist/src/common/styles/scroll/scrollbarStyle.js +14 -0
- package/dist/src/desktop/components/AdminList/AdminList.d.ts +2 -1
- package/dist/src/desktop/components/AdminList/AdminList.js +4 -4
- package/dist/src/desktop/components/AdminList/HeaderRow.d.ts +2 -1
- package/dist/src/desktop/components/AdminList/HeaderRow.js +21 -17
- package/dist/src/desktop/components/AdminListItem/AdminListItem.d.ts +1 -0
- package/dist/src/desktop/components/AdminListItem/AdminListItem.js +20 -15
- package/dist/src/desktop/components/DesktopAlertDialog/DesktopAlertDialog.js +5 -4
- package/dist/src/desktop/components/Dropdown/Dropdown.js +34 -3
- package/dist/src/desktop/components/EditApplyTextField/EditApplyTextField.js +15 -4
- package/dist/src/desktop/components/FloatingActionButton/FloatingActionButton.js +5 -4
- package/dist/src/desktop/components/IconButton/IconButton.js +7 -6
- package/dist/src/desktop/components/LottieReactionButton/LottieReactionButton.js +4 -3
- package/dist/src/desktop/components/MainButton/MainButton.d.ts +1 -1
- package/dist/src/desktop/components/MainButton/MainButton.js +129 -41
- package/dist/src/desktop/components/ReactionButton/ReactionButton.js +5 -1
- package/dist/src/desktop/components/Select/Select.js +29 -2
- package/dist/src/desktop/components/TextButton/TextButton.js +3 -2
- package/dist/src/desktop/components/TextField/TextField.js +35 -4
- package/dist/src/desktop/components/UploadIconButton/UploadIconButton.js +7 -6
- package/dist/src/desktop/components/UploadMainButton/UploadMainButton.d.ts +1 -1
- package/dist/src/desktop/components/UploadMainButton/UploadMainButton.js +141 -49
- package/dist/src/desktop/components/UploadMainButton/types.d.ts +0 -10
- package/dist/src/desktop/components/UploadMainButton/types.js +1 -11
- package/dist/src/desktop/components/UploadTextButton/UploadTextButton.js +3 -2
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFA.js +9 -12
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFB.js +8 -11
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFE.js +17 -20
- package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFL.js +11 -33
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSA.js +3 -2
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSD.js +3 -2
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSE.js +3 -2
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSF.js +5 -4
- package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSG.js +5 -4
- package/dist/src/desktop/panels/DesktopBasicModal/DesktopBasicModal.d.ts +3 -2
- package/dist/src/desktop/panels/DesktopBasicModal/DesktopBasicModal.js +32 -18
- package/dist/src/desktop/panels/DesktopHeadlessModal/DesktopHeadlessModal.js +12 -14
- package/dist/src/mobile/components/Dropdown/Dropdown.js +21 -3
- package/dist/src/mobile/components/FloatingActionButton/FloatingActionButton.js +4 -3
- package/dist/src/mobile/components/IconButton/IconButton.js +6 -5
- package/dist/src/mobile/components/LottieReactionButton/LottieReactionButton.js +3 -2
- package/dist/src/mobile/components/MainButton/MainButton.d.ts +1 -1
- package/dist/src/mobile/components/MainButton/MainButton.js +122 -37
- package/dist/src/mobile/components/MobileAlertDialog/MobileAlertDialog.js +5 -4
- package/dist/src/mobile/components/Select/Select.js +18 -2
- package/dist/src/mobile/components/TextButton/TextButton.js +2 -1
- package/dist/src/mobile/components/TextField/TextField.js +22 -4
- package/dist/src/mobile/components/UploadIconButton/UploadIconButton.js +6 -5
- package/dist/src/mobile/components/UploadMainButton/UploadMainButton.d.ts +1 -1
- package/dist/src/mobile/components/UploadMainButton/UploadMainButton.js +134 -42
- package/dist/src/mobile/components/UploadMainButton/types.d.ts +0 -10
- package/dist/src/mobile/components/UploadMainButton/types.js +1 -11
- package/dist/src/mobile/components/UploadTextButton/UploadTextButton.js +3 -2
- package/dist/src/mobile/panels/MobileBasicModal/MobileBasicModal.js +5 -4
- package/dist/storybook-static/{0.8a8ae8fa.iframe.bundle.d.ts → 0.2023c95c.iframe.bundle.d.ts} +0 -0
- package/dist/storybook-static/{0.8a8ae8fa.iframe.bundle.js → 0.2023c95c.iframe.bundle.js} +4 -4
- package/dist/storybook-static/{4.0cae350a.iframe.bundle.d.ts → 4.d1de0501.iframe.bundle.d.ts} +0 -0
- package/dist/storybook-static/{4.0cae350a.iframe.bundle.js → 4.d1de0501.iframe.bundle.js} +68 -68
- package/dist/storybook-static/{5.6dd988b7.iframe.bundle.d.ts → 5.2f192ddf.iframe.bundle.d.ts} +0 -0
- package/dist/storybook-static/{5.6dd988b7.iframe.bundle.js → 5.2f192ddf.iframe.bundle.js} +10 -10
- package/dist/storybook-static/{6.16e7a5f8.iframe.bundle.d.ts → 6.62fc7663.iframe.bundle.d.ts} +0 -0
- package/dist/storybook-static/{6.16e7a5f8.iframe.bundle.js → 6.62fc7663.iframe.bundle.js} +5 -5
- package/dist/storybook-static/{7.d9eac22c.iframe.bundle.d.ts → 7.3518bf24.iframe.bundle.d.ts} +0 -0
- package/dist/storybook-static/{7.d9eac22c.iframe.bundle.js → 7.3518bf24.iframe.bundle.js} +1 -1
- package/dist/storybook-static/{main.a2e80e11.iframe.bundle.d.ts → main.c8ffb728.iframe.bundle.d.ts} +296 -326
- package/dist/storybook-static/{main.a2e80e11.iframe.bundle.js → main.c8ffb728.iframe.bundle.js} +146 -57
- package/dist/storybook-static/{runtime~main.d6679bc3.iframe.bundle.d.ts → runtime~main.54fba058.iframe.bundle.d.ts} +0 -0
- package/dist/storybook-static/{runtime~main.d6679bc3.iframe.bundle.js → runtime~main.54fba058.iframe.bundle.js} +1 -1
- package/dist/storybook-static/{vendors~main.acdf7090.iframe.bundle.d.ts → vendors~main.dd7c8d3f.iframe.bundle.d.ts} +0 -0
- package/dist/storybook-static/{vendors~main.acdf7090.iframe.bundle.js → vendors~main.dd7c8d3f.iframe.bundle.js} +14 -14
- package/package.json +1 -1
- package/release-note.md +17 -7
package/dist/storybook-static/{main.a2e80e11.iframe.bundle.d.ts → main.c8ffb728.iframe.bundle.d.ts}
RENAMED
|
@@ -2,7 +2,7 @@ export = webpackContext;
|
|
|
2
2
|
export = webpackContext;
|
|
3
3
|
declare function webpackContext(req: any): any;
|
|
4
4
|
declare namespace webpackContext {
|
|
5
|
-
export { keys, webpackContextResolve as resolve, id, __esModule, Divider, Icon, ImageView, LinearProgress, LottieIcon, Spacing, Switch, CircularProgress, Form, ThreeBarProgress, TextLabel, AdminListItemTransition, InputTransition, ButtonTransition, Section, sectionContext, dynamicLayoutContext, IconButton, Item, withFormProvider, theme, skeletonLoadingStyle, NavLink, Navs, ContextTextLabelNav, TextLabelNav, LayoutWF, WFContainersBox, LayoutWH, WHContainersBox, LayoutWS, WSGlobalMenuContainer, WSContainersBox, LayoutWT, WTGlobalMenuContainer, WTContainersBox, D_AdminList, D_AdminListHeader, D_AdminListItem, D_BasicChatListItem, D_BasicFormGroup, D_BasicList, D_BasicListItem, D_BlogTextField, D_BodyTextGroup, D_Card, D_CardList, D_ChatBubbleListItem, D_ChatList, D_Checkbox, D_Chip, D_ContextMenu, D_ContextMenuItem, D_DesktopAlertDialog, D_DesktopHeaderBar, D_DesktopTabBar, D_Dropdown, D_DynamicDesktopNavBar, D_DynamicDesktopNavBarTemplates, D_EditApplyTextField, D_FilterBar, D_FloatingActionButton, D_Hero, D_HorizontalFormGroup, D_IconButton, D_ImageSlide, D_LottieReactionButton, D_MainButton, D_PageTitleTextGroup, D_Radio, D_ReactionButton, D_Select, D_StatusBlock, D_TextButton, D_TextField, D_TextLabel, D_UploadIconButton, D_UploadMainButton, D_UploadTextButton, D_UserDesktopNavBar, D_UserDesktopTabBar, D_UserDesktopSideTab, D_AnnotationSheet, D_ContentSheet, D_DesktopBasicModal, D_DesktopHeadlessModal, D_SectionSheet,
|
|
5
|
+
export { keys, webpackContextResolve as resolve, id, __esModule, Divider, Icon, ImageView, LinearProgress, LottieIcon, Spacing, Switch, CircularProgress, Form, ThreeBarProgress, TextLabel, AdminListItemTransition, InputTransition, ButtonTransition, Section, sectionContext, dynamicLayoutContext, IconButton, Item, withFormProvider, theme, skeletonLoadingStyle, NavLink, Navs, ContextTextLabelNav, TextLabelNav, LayoutWF, WFContainersBox, LayoutWH, WHContainersBox, LayoutWS, WSGlobalMenuContainer, WSContainersBox, LayoutWT, WTGlobalMenuContainer, WTContainersBox, D_AdminList, D_AdminListHeader, D_AdminListItem, D_BasicChatListItem, D_BasicFormGroup, D_BasicList, D_BasicListItem, D_BlogTextField, D_BodyTextGroup, D_Card, D_CardList, D_ChatBubbleListItem, D_ChatList, D_Checkbox, D_Chip, D_ContextMenu, D_ContextMenuItem, D_DesktopAlertDialog, D_DesktopHeaderBar, D_DesktopTabBar, D_Dropdown, D_DynamicDesktopNavBar, D_DynamicDesktopNavBarTemplates, D_EditApplyTextField, D_FilterBar, D_FloatingActionButton, D_Hero, D_HorizontalFormGroup, D_IconButton, D_ImageSlide, D_LottieReactionButton, D_MainButton, D_PageTitleTextGroup, D_Radio, D_ReactionButton, D_Select, D_StatusBlock, D_TextButton, D_TextField, D_TextLabel, D_UploadIconButton, D_UploadMainButton, D_UploadTextButton, D_UserDesktopNavBar, D_UserDesktopTabBar, D_UserDesktopSideTab, D_AnnotationSheet, D_ContentSheet, D_DesktopBasicModal, D_DesktopHeadlessModal, D_SectionSheet, OverlayBorders as default, M_MainButton, M_TextLabel, M_TextButton, M_IconButton, ContextMenu, MainButton, fontWeight, desktopFontSize, desktopLineHeight, desktopEditorFontSize, desktopEditorLineHeight, mobileFontSize, mobileLineHeight, mobileEditorFontSize, mobileEditorLineHeight, boxShadow, spacing, uiColors, customTheme, themeByGivenTone, AdminList, AdminListHeader, AdminListItem, BasicChatListItem, BasicFormGroup, BasicList, BasicListItem, BlogTextField, BodyTextGroup, Card, CardList, ChatBubbleListItem, ChatList, Checkbox, Chip, ContextMenuItem, DesktopAlertDialog, DesktopHeaderBar, DesktopTabBar, Dropdown, DynamicDesktopNavBar, DynamicDesktopNavBarTemplates, EditApplyTextField, FilterBar, FloatingActionButton, Hero, HorizontalFormGroup, ImageSlide, LottieReactionButton, PageTitleTextGroup, Radio, ReactionButton, Select, StatusBlock, TextButton, TextField, UploadIconButton, UploadMainButton, UploadTextButton, UserDesktopNavBar, UserDesktopSideTab, UserDesktopTabBar, dialogOnAni, dialogOffAni, dialogOverlayOnAni, dialogOverlayOffAni, modalOnAni, modalOffAni, modalOverlayOnAni, modalOverlayOffAni, BasePathContext, samplePageIntroSection, samplePageContentsCarouselSection, samplePageIntroSection2, samplePageContentsSection, samplePageInfoBoxSection, samplePageIntroSection3, samplePageFooterSection, samplePage, ContentsContainer, GlobalMenuContainer, PageMenuContainer, TabMenuContainer, SubMenuContainer, formatCompactNumber, formatStandardNumber, ContainersBox, TextFieldBase, NavigationContainer, TabContainer, parameters, globalTypes, decorators, Col, Grid, Row, useDetectOverflow, usePrevious, MenuItemNav, getSearchExceptGivenName, Default, ChipDefault, SearchFieldDefault, DefaultCard, ImageCard, MobileAlertDialog, MobileHeaderBar, MobileTabBar, SectionMatcher, ContentsCarouselSection, ContentsSection, FooterSection, InfoBoxSection, IntroSection, ToggleTone, StepContainer, WFA, WFB, WFC, WFD, WFE, WFF, WFG, WFH, WFI, WFJ, WFK, WFL, PageMenu, WizardPageMenu, TabMenu, LeftSubMenu, Step, WHA, WHB, WHC, WHD, WHE, PrimaryGlobalMenu, SecondaryGlobalMenu, WSA, WSB, WSC, WSD, WSE, WSF, WSG, WSH, GlobalMenu, WTA, WTB, WTC, WTD, WTE, WTF, WTG, WTH, WTI, WTJ, WTK, WTL, WTM, WTN, WTO, WTP, WTQ, WTS, WTT, WTU, TopPageMenu, LeftPageMenu, Popup, PopupProvider, iconStateColors, iconThemeColorLineColors, fadeIn, fadeOut, glow, scaleUp, scaleDown, scaleUpIncludeTranslate, scaleDownIncludeTranslate, gelatine, scaleBounceIn, scaleBounceIn02, scaleBounceInIncludeTranslate, scaleBounceOutIncludeTranslate, scaleBounceInIncludeTranslate02, scaleBounceOutIncludeTranslate02, BrandLogo, PrimaryMenu, SecondaryMenu, UserProfile, ContextMenuNavs, ContextMenuItemNav, defaultValue, TEMPLATES_DATA, textStyles, iconFillTypeColors, iconStyleThemeColors, AnnotationSheet, ContentSheet, DesktopBasicModal, DesktopHeadlessModal, SectionSheet, Single, Multi, Auto, readOnly, disabled, Low, Medium, High, Empty, TextFieldType, SelectType, SwitchType, MixType, DefaultBasicList, Image, Badge, Validate, MultiState, MultiRows, AutoState, AutoRows, TitleOnly, WithDescription, WithContent, Both, DefaultCardList, MultiCardList, Grey01, Primary, LongText, SellerTail, Seller, SubscriberTail, Subscriber, MyTail, My, WithImage, AllVariation, AllIcon, WithChatBubbleListItem, CategoryChoice, FilterSingle, FilterMulti, Removable, Label, Time, Information, DefaultContextMenu, ListContextMenu, DefaultContextMenuItem, TitleDefault, IconDefault, tBtn3TextDefault, StackDefault, LeftBtnDesktopHeaderBar, RightBtnDesktopHeaderBar, ComplexBtnDesktopHeaderBar, MainDefault, SubDefault, ContentDefault, LeftIconButton, OverrideUserProfile, ColorThemeTransparent, SingleSize, SingleState, SinglePreventBlankMode, SingleValidation, MultiSizeOnlyLarge, MultiValidation, AutoSizeOnlyLarge, AutoValidation, TextFieldForm, MultiTextFieldForm, EditApply_textfieldForm, DropdownForm, TextStringType, EditButton, List, Disabled, TextType, CountTypeFormatting, CountTypeNonFormatting, OnlyHintText, OnlyDefaultValue, HintAndDefaultValue, NoHintNoDefaultValue, All, SingleSizeIcon, SingleStateIcon, SingleColorTheme, TransparentColorTheme, ShortText, LongTextWithLineBreakTab, TextDefault, CenterNoneDefault, WFA_1, WFA_2, WFB_1, WFC_1, WFD_1, WFD_2, WFE_1, WFE_2, WFE_3, WFE_4, WFF_1, WFG_1, WFG_2, WFG_3, WFG_4, WFG_5, WFG_6, WFH_1, WFI_1, WFI_2, WFI_3, WFI_4, WFI_5, WFI_6, WFJ_1, WFK_1, WFL_1, WHA_1, WHB_1, WHB_2, WHB_3, WHB_4, WHB_5, WHB_6, WHC_1, WHD_1, WHD_2, WHD_3, WHD_4, WHD_5, WHD_6, WHE_1, WHE_2, WSA_1, WSB_1, WSB_2, WSC_1, WSD_1, WSE_1, WSF_1, WSF_2, WSF_3, WSF_4, WSF_5, WSF_6, WSF_7, WSG_1, WSG_2, WSG_3, WSG_4, WSG_5, WSH_1, WTA_1, WTA_2, WTA_3, WTB_1, WTC_1, WTD_1, WTD_2, WTD_3, WTD_4, WTD_5, WTD_6, WTE_1, WTF_1, WTF_2, WTF_3, WTF_4, WTF_5, WTF_6, WTG_1, WTH_1, WTH_2, WTH_3, WTI_1, WTI_2, WTJ_1, WTK_1, WTK_2, WTK_3, WTK_4, WTL_1, WTM_1, WTM_2, WTM_3, WTN_1, WTN_2, WTN_3, WTO_1, WTP_1, WTQ_1, WTS_1, WTS_2, WTT_1, WTT_2, WTU_1, UseCase1MoreInformation, UseCase1Community, UseCase2Thumbnail, BodyScrollDefault, BodyOverflowVisible, imageMainButtonCase, imageFocusCase, imageHeaderCase, imageHeaderFixedCase, UseCase1PostsSettingSection, AllLineIcon, AllFillIcon, LineIcon, FillIcon, AutoWidthResponsive, AutoWidth300, AutoWidth300NoImage400, AutoHeightResponsive, AutoHeight300, AutoHeight300NoImage400, AutoWidth300Height500, RatioResponsive, Ratio300, MultiAutoHeight, MultiAutoWidth, AllLottieIcon, OneLottieIcon, IconLongTextDefault, Profile, CaptionText, MFA_1, MFB_1, MFB_2, MFC_1, MFD_1, MFE_1, MFE_2, MFA, MFB, MFC, MFD, MFE, MMA_1, MMB_1, MMA, MMB, Navigation, MPA_1, MPB_1, MPC_1, MPC_2, MPD_1, MPE_1, MPF_1, MPF_2, MPA, MPB, MPC, MPD, MPE, MPF, Tab, MSA_1, MSA_2, MSB_1, MSC_1, MSC_2, MSD_1, MSE_1, MSF_1, MSF_2, MSG_1, MSH_1, MSA, MSB, MSC, MSD, MSE, MSF, MSG, MSH, TwoButton, ContentTextScrollDefault, Sample, EditModeSectionMatcher, YouTubeIframe, TemplateA, TemplateB, D_TemplateA, Carousel, SectionTitle, SectionDescription, SectionImage, SectionButton, M_TemplateA, D_TemplateB, M_TemplateB, TemplateC, TemplateD, D_TemplateC, M_TemplateC, D_TemplateD, M_TemplateD, useLazyUnmount, TemplateA_desktop, TemplateA_mobile, TemplateB_desktop, TemplateB_mobile, TemplateC_desktop, TemplateC_mobile, TemplateD_desktop, TemplateD_mobile };
|
|
6
6
|
}
|
|
7
7
|
declare function keys(): string[];
|
|
8
8
|
declare function webpackContextResolve(req: any): any;
|
|
@@ -104,8 +104,8 @@ declare var D_ContentSheet: any;
|
|
|
104
104
|
declare var D_DesktopBasicModal: any;
|
|
105
105
|
declare var D_DesktopHeadlessModal: any;
|
|
106
106
|
declare var D_SectionSheet: any;
|
|
107
|
-
declare function
|
|
108
|
-
declare namespace
|
|
107
|
+
declare function OverlayBorders(_a: any): any;
|
|
108
|
+
declare namespace OverlayBorders {
|
|
109
109
|
const displayName_2: string;
|
|
110
110
|
export { displayName_2 as displayName };
|
|
111
111
|
export namespace __docgenInfo_1 {
|
|
@@ -114,7 +114,7 @@ declare namespace SectionBox {
|
|
|
114
114
|
const displayName_3: string;
|
|
115
115
|
export { displayName_3 as displayName };
|
|
116
116
|
export namespace props_1 {
|
|
117
|
-
namespace
|
|
117
|
+
namespace zIndex {
|
|
118
118
|
export const defaultValue: null;
|
|
119
119
|
const description_2: string;
|
|
120
120
|
export { description_2 as description };
|
|
@@ -125,21 +125,6 @@ declare namespace SectionBox {
|
|
|
125
125
|
export { name_1 as name };
|
|
126
126
|
}
|
|
127
127
|
}
|
|
128
|
-
namespace onClick {
|
|
129
|
-
const defaultValue_1: null;
|
|
130
|
-
export { defaultValue_1 as defaultValue };
|
|
131
|
-
const description_3: string;
|
|
132
|
-
export { description_3 as description };
|
|
133
|
-
const name_2: string;
|
|
134
|
-
export { name_2 as name };
|
|
135
|
-
const required_1: boolean;
|
|
136
|
-
export { required_1 as required };
|
|
137
|
-
export namespace type_1 {
|
|
138
|
-
const name_3: string;
|
|
139
|
-
export { name_3 as name };
|
|
140
|
-
}
|
|
141
|
-
export { type_1 as type };
|
|
142
|
-
}
|
|
143
128
|
}
|
|
144
129
|
export { props_1 as props };
|
|
145
130
|
}
|
|
@@ -247,8 +232,8 @@ declare namespace samplePageIntroSection {
|
|
|
247
232
|
export const carouselAutoplayMode: string;
|
|
248
233
|
export const carouselAutoplayTime: number;
|
|
249
234
|
export const carouselInfiniteLoopMode: string;
|
|
250
|
-
const
|
|
251
|
-
export {
|
|
235
|
+
const description_3: string;
|
|
236
|
+
export { description_3 as description };
|
|
252
237
|
export const itemLinkMethod: string;
|
|
253
238
|
export const sectionContentMediaSrc: string;
|
|
254
239
|
export const sectionContentMediaType: string;
|
|
@@ -365,8 +350,8 @@ declare namespace samplePageContentsCarouselSection {
|
|
|
365
350
|
export { carouselAutoplayTime_1 as carouselAutoplayTime };
|
|
366
351
|
const carouselInfiniteLoopMode_1: string;
|
|
367
352
|
export { carouselInfiniteLoopMode_1 as carouselInfiniteLoopMode };
|
|
368
|
-
const
|
|
369
|
-
export {
|
|
353
|
+
const description_4: string;
|
|
354
|
+
export { description_4 as description };
|
|
370
355
|
const itemLinkMethod_1: string;
|
|
371
356
|
export { itemLinkMethod_1 as itemLinkMethod };
|
|
372
357
|
const sectionContentMediaSrc_1: string;
|
|
@@ -496,8 +481,8 @@ declare namespace samplePageIntroSection2 {
|
|
|
496
481
|
export { carouselAutoplayTime_2 as carouselAutoplayTime };
|
|
497
482
|
const carouselInfiniteLoopMode_2: string;
|
|
498
483
|
export { carouselInfiniteLoopMode_2 as carouselInfiniteLoopMode };
|
|
499
|
-
const
|
|
500
|
-
export {
|
|
484
|
+
const description_5: string;
|
|
485
|
+
export { description_5 as description };
|
|
501
486
|
const itemLinkMethod_2: string;
|
|
502
487
|
export { itemLinkMethod_2 as itemLinkMethod };
|
|
503
488
|
const sectionContentMediaSrc_2: string;
|
|
@@ -627,8 +612,8 @@ declare namespace samplePageContentsSection {
|
|
|
627
612
|
export { carouselAutoplayTime_3 as carouselAutoplayTime };
|
|
628
613
|
const carouselInfiniteLoopMode_3: string;
|
|
629
614
|
export { carouselInfiniteLoopMode_3 as carouselInfiniteLoopMode };
|
|
630
|
-
const
|
|
631
|
-
export {
|
|
615
|
+
const description_6: string;
|
|
616
|
+
export { description_6 as description };
|
|
632
617
|
const itemLinkMethod_3: string;
|
|
633
618
|
export { itemLinkMethod_3 as itemLinkMethod };
|
|
634
619
|
const sectionContentMediaSrc_3: string;
|
|
@@ -779,8 +764,8 @@ declare namespace samplePageInfoBoxSection {
|
|
|
779
764
|
export { carouselAutoplayTime_4 as carouselAutoplayTime };
|
|
780
765
|
const carouselInfiniteLoopMode_4: string;
|
|
781
766
|
export { carouselInfiniteLoopMode_4 as carouselInfiniteLoopMode };
|
|
782
|
-
const
|
|
783
|
-
export {
|
|
767
|
+
const description_7: string;
|
|
768
|
+
export { description_7 as description };
|
|
784
769
|
const itemLinkMethod_4: string;
|
|
785
770
|
export { itemLinkMethod_4 as itemLinkMethod };
|
|
786
771
|
const sectionContentMediaSrc_4: string;
|
|
@@ -910,8 +895,8 @@ declare namespace samplePageIntroSection3 {
|
|
|
910
895
|
export { carouselAutoplayTime_5 as carouselAutoplayTime };
|
|
911
896
|
const carouselInfiniteLoopMode_5: string;
|
|
912
897
|
export { carouselInfiniteLoopMode_5 as carouselInfiniteLoopMode };
|
|
913
|
-
const
|
|
914
|
-
export {
|
|
898
|
+
const description_8: string;
|
|
899
|
+
export { description_8 as description };
|
|
915
900
|
const itemLinkMethod_5: string;
|
|
916
901
|
export { itemLinkMethod_5 as itemLinkMethod };
|
|
917
902
|
const sectionContentMediaSrc_5: string;
|
|
@@ -1062,8 +1047,8 @@ declare namespace samplePageFooterSection {
|
|
|
1062
1047
|
export { carouselAutoplayTime_6 as carouselAutoplayTime };
|
|
1063
1048
|
const carouselInfiniteLoopMode_6: string;
|
|
1064
1049
|
export { carouselInfiniteLoopMode_6 as carouselInfiniteLoopMode };
|
|
1065
|
-
const
|
|
1066
|
-
export {
|
|
1050
|
+
const description_9: string;
|
|
1051
|
+
export { description_9 as description };
|
|
1067
1052
|
const itemLinkMethod_6: string;
|
|
1068
1053
|
export { itemLinkMethod_6 as itemLinkMethod };
|
|
1069
1054
|
const sectionContentMediaSrc_6: string;
|
|
@@ -1162,12 +1147,12 @@ declare namespace parameters {
|
|
|
1162
1147
|
}
|
|
1163
1148
|
declare namespace globalTypes {
|
|
1164
1149
|
namespace theme {
|
|
1165
|
-
const
|
|
1166
|
-
export {
|
|
1167
|
-
const
|
|
1168
|
-
export {
|
|
1169
|
-
const
|
|
1170
|
-
export {
|
|
1150
|
+
const name_2: string;
|
|
1151
|
+
export { name_2 as name };
|
|
1152
|
+
const description_10: string;
|
|
1153
|
+
export { description_10 as description };
|
|
1154
|
+
const defaultValue_1: string;
|
|
1155
|
+
export { defaultValue_1 as defaultValue };
|
|
1171
1156
|
export namespace toolbar {
|
|
1172
1157
|
const icon: string;
|
|
1173
1158
|
const items: {
|
|
@@ -1263,13 +1248,30 @@ declare namespace Popup {
|
|
|
1263
1248
|
const displayName_4: string;
|
|
1264
1249
|
export { displayName_4 as displayName };
|
|
1265
1250
|
export namespace __docgenInfo_2 {
|
|
1266
|
-
const
|
|
1267
|
-
export {
|
|
1251
|
+
const description_11: string;
|
|
1252
|
+
export { description_11 as description };
|
|
1268
1253
|
const displayName_5: string;
|
|
1269
1254
|
export { displayName_5 as displayName };
|
|
1270
1255
|
export namespace props_2 {
|
|
1271
|
-
|
|
1272
|
-
const
|
|
1256
|
+
namespace targetRef {
|
|
1257
|
+
const defaultValue_2: null;
|
|
1258
|
+
export { defaultValue_2 as defaultValue };
|
|
1259
|
+
const description_12: string;
|
|
1260
|
+
export { description_12 as description };
|
|
1261
|
+
const name_3: string;
|
|
1262
|
+
export { name_3 as name };
|
|
1263
|
+
const required_1: boolean;
|
|
1264
|
+
export { required_1 as required };
|
|
1265
|
+
export namespace type_1 {
|
|
1266
|
+
const name_4: string;
|
|
1267
|
+
export { name_4 as name };
|
|
1268
|
+
}
|
|
1269
|
+
export { type_1 as type };
|
|
1270
|
+
}
|
|
1271
|
+
namespace isOpen {
|
|
1272
|
+
export namespace defaultValue_3 {
|
|
1273
|
+
const value: string;
|
|
1274
|
+
}
|
|
1273
1275
|
export { defaultValue_3 as defaultValue };
|
|
1274
1276
|
const description_13: string;
|
|
1275
1277
|
export { description_13 as description };
|
|
@@ -1283,10 +1285,8 @@ declare namespace Popup {
|
|
|
1283
1285
|
}
|
|
1284
1286
|
export { type_2 as type };
|
|
1285
1287
|
}
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
const value: string;
|
|
1289
|
-
}
|
|
1288
|
+
namespace onClickOutside {
|
|
1289
|
+
const defaultValue_4: null;
|
|
1290
1290
|
export { defaultValue_4 as defaultValue };
|
|
1291
1291
|
const description_14: string;
|
|
1292
1292
|
export { description_14 as description };
|
|
@@ -1300,7 +1300,7 @@ declare namespace Popup {
|
|
|
1300
1300
|
}
|
|
1301
1301
|
export { type_3 as type };
|
|
1302
1302
|
}
|
|
1303
|
-
|
|
1303
|
+
namespace onClick {
|
|
1304
1304
|
const defaultValue_5: null;
|
|
1305
1305
|
export { defaultValue_5 as defaultValue };
|
|
1306
1306
|
const description_15: string;
|
|
@@ -1315,8 +1315,11 @@ declare namespace Popup {
|
|
|
1315
1315
|
}
|
|
1316
1316
|
export { type_4 as type };
|
|
1317
1317
|
}
|
|
1318
|
-
|
|
1319
|
-
|
|
1318
|
+
namespace placement {
|
|
1319
|
+
export namespace defaultValue_6 {
|
|
1320
|
+
const value_1: string;
|
|
1321
|
+
export { value_1 as value };
|
|
1322
|
+
}
|
|
1320
1323
|
export { defaultValue_6 as defaultValue };
|
|
1321
1324
|
const description_16: string;
|
|
1322
1325
|
export { description_16 as description };
|
|
@@ -1330,12 +1333,8 @@ declare namespace Popup {
|
|
|
1330
1333
|
}
|
|
1331
1334
|
export { type_5 as type };
|
|
1332
1335
|
}
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
export namespace defaultValue_7 {
|
|
1336
|
-
const value_1: string;
|
|
1337
|
-
export { value_1 as value };
|
|
1338
|
-
}
|
|
1336
|
+
namespace wrapperHeight {
|
|
1337
|
+
const defaultValue_7: null;
|
|
1339
1338
|
export { defaultValue_7 as defaultValue };
|
|
1340
1339
|
const description_17: string;
|
|
1341
1340
|
export { description_17 as description };
|
|
@@ -1349,21 +1348,6 @@ declare namespace Popup {
|
|
|
1349
1348
|
}
|
|
1350
1349
|
export { type_6 as type };
|
|
1351
1350
|
}
|
|
1352
|
-
export namespace wrapperHeight {
|
|
1353
|
-
const defaultValue_8: null;
|
|
1354
|
-
export { defaultValue_8 as defaultValue };
|
|
1355
|
-
const description_18: string;
|
|
1356
|
-
export { description_18 as description };
|
|
1357
|
-
const name_15: string;
|
|
1358
|
-
export { name_15 as name };
|
|
1359
|
-
const required_7: boolean;
|
|
1360
|
-
export { required_7 as required };
|
|
1361
|
-
export namespace type_7 {
|
|
1362
|
-
const name_16: string;
|
|
1363
|
-
export { name_16 as name };
|
|
1364
|
-
}
|
|
1365
|
-
export { type_7 as type };
|
|
1366
|
-
}
|
|
1367
1351
|
}
|
|
1368
1352
|
export { props_2 as props };
|
|
1369
1353
|
}
|
|
@@ -1374,8 +1358,8 @@ declare namespace PopupProvider {
|
|
|
1374
1358
|
const displayName_6: string;
|
|
1375
1359
|
export { displayName_6 as displayName };
|
|
1376
1360
|
export namespace __docgenInfo_3 {
|
|
1377
|
-
const
|
|
1378
|
-
export {
|
|
1361
|
+
const description_18: string;
|
|
1362
|
+
export { description_18 as description };
|
|
1379
1363
|
const displayName_7: string;
|
|
1380
1364
|
export { displayName_7 as displayName };
|
|
1381
1365
|
const props_3: {};
|
|
@@ -1597,13 +1581,6 @@ declare namespace textStyles {
|
|
|
1597
1581
|
const small: string;
|
|
1598
1582
|
const xsmall: string;
|
|
1599
1583
|
}
|
|
1600
|
-
declare namespace textThemeColorLines {
|
|
1601
|
-
const line1_1: string;
|
|
1602
|
-
export { line1_1 as line1 };
|
|
1603
|
-
const line2_1: string;
|
|
1604
|
-
export { line2_1 as line2 };
|
|
1605
|
-
export const line3: string;
|
|
1606
|
-
}
|
|
1607
1584
|
declare namespace iconFillTypeColors {
|
|
1608
1585
|
const fill_1: string;
|
|
1609
1586
|
export { fill_1 as fill };
|
|
@@ -1614,14 +1591,6 @@ declare namespace iconStyleThemeColors {
|
|
|
1614
1591
|
const primary: string;
|
|
1615
1592
|
const secondary: string;
|
|
1616
1593
|
}
|
|
1617
|
-
declare namespace iconColorThemeLineColors {
|
|
1618
|
-
const line1_2: string;
|
|
1619
|
-
export { line1_2 as line1 };
|
|
1620
|
-
const line2_2: string;
|
|
1621
|
-
export { line2_2 as line2 };
|
|
1622
|
-
const line3_1: string;
|
|
1623
|
-
export { line3_1 as line3 };
|
|
1624
|
-
}
|
|
1625
1594
|
declare var AnnotationSheet: any;
|
|
1626
1595
|
declare var ContentSheet: any;
|
|
1627
1596
|
declare var DesktopBasicModal: any;
|
|
@@ -1923,12 +1892,27 @@ declare namespace SectionTitle {
|
|
|
1923
1892
|
const displayName_8: string;
|
|
1924
1893
|
export { displayName_8 as displayName };
|
|
1925
1894
|
export namespace __docgenInfo_4 {
|
|
1926
|
-
const
|
|
1927
|
-
export {
|
|
1895
|
+
const description_19: string;
|
|
1896
|
+
export { description_19 as description };
|
|
1928
1897
|
const displayName_9: string;
|
|
1929
1898
|
export { displayName_9 as displayName };
|
|
1930
1899
|
export namespace props_4 {
|
|
1931
1900
|
namespace text {
|
|
1901
|
+
const defaultValue_8: null;
|
|
1902
|
+
export { defaultValue_8 as defaultValue };
|
|
1903
|
+
const description_20: string;
|
|
1904
|
+
export { description_20 as description };
|
|
1905
|
+
const name_15: string;
|
|
1906
|
+
export { name_15 as name };
|
|
1907
|
+
const required_7: boolean;
|
|
1908
|
+
export { required_7 as required };
|
|
1909
|
+
export namespace type_7 {
|
|
1910
|
+
const name_16: string;
|
|
1911
|
+
export { name_16 as name };
|
|
1912
|
+
}
|
|
1913
|
+
export { type_7 as type };
|
|
1914
|
+
}
|
|
1915
|
+
namespace color {
|
|
1932
1916
|
const defaultValue_9: null;
|
|
1933
1917
|
export { defaultValue_9 as defaultValue };
|
|
1934
1918
|
const description_21: string;
|
|
@@ -1943,7 +1927,7 @@ declare namespace SectionTitle {
|
|
|
1943
1927
|
}
|
|
1944
1928
|
export { type_8 as type };
|
|
1945
1929
|
}
|
|
1946
|
-
namespace
|
|
1930
|
+
namespace tooltipText {
|
|
1947
1931
|
const defaultValue_10: null;
|
|
1948
1932
|
export { defaultValue_10 as defaultValue };
|
|
1949
1933
|
const description_22: string;
|
|
@@ -1958,7 +1942,7 @@ declare namespace SectionTitle {
|
|
|
1958
1942
|
}
|
|
1959
1943
|
export { type_9 as type };
|
|
1960
1944
|
}
|
|
1961
|
-
namespace
|
|
1945
|
+
namespace tooltipPosition {
|
|
1962
1946
|
const defaultValue_11: null;
|
|
1963
1947
|
export { defaultValue_11 as defaultValue };
|
|
1964
1948
|
const description_23: string;
|
|
@@ -1970,10 +1954,14 @@ declare namespace SectionTitle {
|
|
|
1970
1954
|
export namespace type_10 {
|
|
1971
1955
|
const name_22: string;
|
|
1972
1956
|
export { name_22 as name };
|
|
1957
|
+
const value_2: {
|
|
1958
|
+
value: string;
|
|
1959
|
+
}[];
|
|
1960
|
+
export { value_2 as value };
|
|
1973
1961
|
}
|
|
1974
1962
|
export { type_10 as type };
|
|
1975
1963
|
}
|
|
1976
|
-
namespace
|
|
1964
|
+
namespace textAlign {
|
|
1977
1965
|
const defaultValue_12: null;
|
|
1978
1966
|
export { defaultValue_12 as defaultValue };
|
|
1979
1967
|
const description_24: string;
|
|
@@ -1985,14 +1973,14 @@ declare namespace SectionTitle {
|
|
|
1985
1973
|
export namespace type_11 {
|
|
1986
1974
|
const name_24: string;
|
|
1987
1975
|
export { name_24 as name };
|
|
1988
|
-
const
|
|
1976
|
+
const value_3: {
|
|
1989
1977
|
value: string;
|
|
1990
1978
|
}[];
|
|
1991
|
-
export {
|
|
1979
|
+
export { value_3 as value };
|
|
1992
1980
|
}
|
|
1993
1981
|
export { type_11 as type };
|
|
1994
1982
|
}
|
|
1995
|
-
namespace
|
|
1983
|
+
namespace styleTheme {
|
|
1996
1984
|
const defaultValue_13: null;
|
|
1997
1985
|
export { defaultValue_13 as defaultValue };
|
|
1998
1986
|
const description_25: string;
|
|
@@ -2004,14 +1992,14 @@ declare namespace SectionTitle {
|
|
|
2004
1992
|
export namespace type_12 {
|
|
2005
1993
|
const name_26: string;
|
|
2006
1994
|
export { name_26 as name };
|
|
2007
|
-
const
|
|
1995
|
+
const value_4: {
|
|
2008
1996
|
value: string;
|
|
2009
1997
|
}[];
|
|
2010
|
-
export {
|
|
1998
|
+
export { value_4 as value };
|
|
2011
1999
|
}
|
|
2012
2000
|
export { type_12 as type };
|
|
2013
2001
|
}
|
|
2014
|
-
namespace
|
|
2002
|
+
namespace colorOverride {
|
|
2015
2003
|
const defaultValue_14: null;
|
|
2016
2004
|
export { defaultValue_14 as defaultValue };
|
|
2017
2005
|
const description_26: string;
|
|
@@ -2023,14 +2011,14 @@ declare namespace SectionTitle {
|
|
|
2023
2011
|
export namespace type_13 {
|
|
2024
2012
|
const name_28: string;
|
|
2025
2013
|
export { name_28 as name };
|
|
2026
|
-
const
|
|
2014
|
+
const value_5: {
|
|
2027
2015
|
value: string;
|
|
2028
2016
|
}[];
|
|
2029
|
-
export {
|
|
2017
|
+
export { value_5 as value };
|
|
2030
2018
|
}
|
|
2031
2019
|
export { type_13 as type };
|
|
2032
2020
|
}
|
|
2033
|
-
namespace
|
|
2021
|
+
namespace colorTheme {
|
|
2034
2022
|
const defaultValue_15: null;
|
|
2035
2023
|
export { defaultValue_15 as defaultValue };
|
|
2036
2024
|
const description_27: string;
|
|
@@ -2042,14 +2030,14 @@ declare namespace SectionTitle {
|
|
|
2042
2030
|
export namespace type_14 {
|
|
2043
2031
|
const name_30: string;
|
|
2044
2032
|
export { name_30 as name };
|
|
2045
|
-
const
|
|
2033
|
+
const value_6: {
|
|
2046
2034
|
value: string;
|
|
2047
2035
|
}[];
|
|
2048
|
-
export {
|
|
2036
|
+
export { value_6 as value };
|
|
2049
2037
|
}
|
|
2050
2038
|
export { type_14 as type };
|
|
2051
2039
|
}
|
|
2052
|
-
namespace
|
|
2040
|
+
namespace singleLineMode {
|
|
2053
2041
|
const defaultValue_16: null;
|
|
2054
2042
|
export { defaultValue_16 as defaultValue };
|
|
2055
2043
|
const description_28: string;
|
|
@@ -2061,14 +2049,14 @@ declare namespace SectionTitle {
|
|
|
2061
2049
|
export namespace type_15 {
|
|
2062
2050
|
const name_32: string;
|
|
2063
2051
|
export { name_32 as name };
|
|
2064
|
-
const
|
|
2052
|
+
const value_7: {
|
|
2065
2053
|
value: string;
|
|
2066
2054
|
}[];
|
|
2067
|
-
export {
|
|
2055
|
+
export { value_7 as value };
|
|
2068
2056
|
}
|
|
2069
2057
|
export { type_15 as type };
|
|
2070
2058
|
}
|
|
2071
|
-
namespace
|
|
2059
|
+
namespace ellipsisMode {
|
|
2072
2060
|
const defaultValue_17: null;
|
|
2073
2061
|
export { defaultValue_17 as defaultValue };
|
|
2074
2062
|
const description_29: string;
|
|
@@ -2080,14 +2068,14 @@ declare namespace SectionTitle {
|
|
|
2080
2068
|
export namespace type_16 {
|
|
2081
2069
|
const name_34: string;
|
|
2082
2070
|
export { name_34 as name };
|
|
2083
|
-
const
|
|
2071
|
+
const value_8: {
|
|
2084
2072
|
value: string;
|
|
2085
2073
|
}[];
|
|
2086
|
-
export {
|
|
2074
|
+
export { value_8 as value };
|
|
2087
2075
|
}
|
|
2088
2076
|
export { type_16 as type };
|
|
2089
2077
|
}
|
|
2090
|
-
namespace
|
|
2078
|
+
namespace lineLimit {
|
|
2091
2079
|
const defaultValue_18: null;
|
|
2092
2080
|
export { defaultValue_18 as defaultValue };
|
|
2093
2081
|
const description_30: string;
|
|
@@ -2099,14 +2087,10 @@ declare namespace SectionTitle {
|
|
|
2099
2087
|
export namespace type_17 {
|
|
2100
2088
|
const name_36: string;
|
|
2101
2089
|
export { name_36 as name };
|
|
2102
|
-
const value_8: {
|
|
2103
|
-
value: string;
|
|
2104
|
-
}[];
|
|
2105
|
-
export { value_8 as value };
|
|
2106
2090
|
}
|
|
2107
2091
|
export { type_17 as type };
|
|
2108
2092
|
}
|
|
2109
|
-
namespace
|
|
2093
|
+
namespace userSelectMode {
|
|
2110
2094
|
const defaultValue_19: null;
|
|
2111
2095
|
export { defaultValue_19 as defaultValue };
|
|
2112
2096
|
const description_31: string;
|
|
@@ -2118,10 +2102,14 @@ declare namespace SectionTitle {
|
|
|
2118
2102
|
export namespace type_18 {
|
|
2119
2103
|
const name_38: string;
|
|
2120
2104
|
export { name_38 as name };
|
|
2105
|
+
const value_9: {
|
|
2106
|
+
value: string;
|
|
2107
|
+
}[];
|
|
2108
|
+
export { value_9 as value };
|
|
2121
2109
|
}
|
|
2122
2110
|
export { type_18 as type };
|
|
2123
2111
|
}
|
|
2124
|
-
namespace
|
|
2112
|
+
namespace customFontSize {
|
|
2125
2113
|
const defaultValue_20: null;
|
|
2126
2114
|
export { defaultValue_20 as defaultValue };
|
|
2127
2115
|
const description_32: string;
|
|
@@ -2133,14 +2121,10 @@ declare namespace SectionTitle {
|
|
|
2133
2121
|
export namespace type_19 {
|
|
2134
2122
|
const name_40: string;
|
|
2135
2123
|
export { name_40 as name };
|
|
2136
|
-
const value_9: {
|
|
2137
|
-
value: string;
|
|
2138
|
-
}[];
|
|
2139
|
-
export { value_9 as value };
|
|
2140
2124
|
}
|
|
2141
2125
|
export { type_19 as type };
|
|
2142
2126
|
}
|
|
2143
|
-
namespace
|
|
2127
|
+
namespace customFontWeight {
|
|
2144
2128
|
const defaultValue_21: null;
|
|
2145
2129
|
export { defaultValue_21 as defaultValue };
|
|
2146
2130
|
const description_33: string;
|
|
@@ -2152,10 +2136,14 @@ declare namespace SectionTitle {
|
|
|
2152
2136
|
export namespace type_20 {
|
|
2153
2137
|
const name_42: string;
|
|
2154
2138
|
export { name_42 as name };
|
|
2139
|
+
const value_10: {
|
|
2140
|
+
value: string;
|
|
2141
|
+
}[];
|
|
2142
|
+
export { value_10 as value };
|
|
2155
2143
|
}
|
|
2156
2144
|
export { type_20 as type };
|
|
2157
2145
|
}
|
|
2158
|
-
namespace
|
|
2146
|
+
namespace textDecorationType {
|
|
2159
2147
|
const defaultValue_22: null;
|
|
2160
2148
|
export { defaultValue_22 as defaultValue };
|
|
2161
2149
|
const description_34: string;
|
|
@@ -2167,14 +2155,14 @@ declare namespace SectionTitle {
|
|
|
2167
2155
|
export namespace type_21 {
|
|
2168
2156
|
const name_44: string;
|
|
2169
2157
|
export { name_44 as name };
|
|
2170
|
-
const
|
|
2158
|
+
const value_11: {
|
|
2171
2159
|
value: string;
|
|
2172
2160
|
}[];
|
|
2173
|
-
export {
|
|
2161
|
+
export { value_11 as value };
|
|
2174
2162
|
}
|
|
2175
2163
|
export { type_21 as type };
|
|
2176
2164
|
}
|
|
2177
|
-
namespace
|
|
2165
|
+
namespace requirementMode {
|
|
2178
2166
|
const defaultValue_23: null;
|
|
2179
2167
|
export { defaultValue_23 as defaultValue };
|
|
2180
2168
|
const description_35: string;
|
|
@@ -2186,14 +2174,14 @@ declare namespace SectionTitle {
|
|
|
2186
2174
|
export namespace type_22 {
|
|
2187
2175
|
const name_46: string;
|
|
2188
2176
|
export { name_46 as name };
|
|
2189
|
-
const
|
|
2177
|
+
const value_12: {
|
|
2190
2178
|
value: string;
|
|
2191
2179
|
}[];
|
|
2192
|
-
export {
|
|
2180
|
+
export { value_12 as value };
|
|
2193
2181
|
}
|
|
2194
2182
|
export { type_22 as type };
|
|
2195
2183
|
}
|
|
2196
|
-
namespace
|
|
2184
|
+
namespace bulletPointMode {
|
|
2197
2185
|
const defaultValue_24: null;
|
|
2198
2186
|
export { defaultValue_24 as defaultValue };
|
|
2199
2187
|
const description_36: string;
|
|
@@ -2205,14 +2193,14 @@ declare namespace SectionTitle {
|
|
|
2205
2193
|
export namespace type_23 {
|
|
2206
2194
|
const name_48: string;
|
|
2207
2195
|
export { name_48 as name };
|
|
2208
|
-
const
|
|
2196
|
+
const value_13: {
|
|
2209
2197
|
value: string;
|
|
2210
2198
|
}[];
|
|
2211
|
-
export {
|
|
2199
|
+
export { value_13 as value };
|
|
2212
2200
|
}
|
|
2213
2201
|
export { type_23 as type };
|
|
2214
2202
|
}
|
|
2215
|
-
namespace
|
|
2203
|
+
namespace wordBreak {
|
|
2216
2204
|
const defaultValue_25: null;
|
|
2217
2205
|
export { defaultValue_25 as defaultValue };
|
|
2218
2206
|
const description_37: string;
|
|
@@ -2224,15 +2212,18 @@ declare namespace SectionTitle {
|
|
|
2224
2212
|
export namespace type_24 {
|
|
2225
2213
|
const name_50: string;
|
|
2226
2214
|
export { name_50 as name };
|
|
2227
|
-
const
|
|
2215
|
+
const value_14: {
|
|
2228
2216
|
value: string;
|
|
2229
2217
|
}[];
|
|
2230
|
-
export {
|
|
2218
|
+
export { value_14 as value };
|
|
2231
2219
|
}
|
|
2232
2220
|
export { type_24 as type };
|
|
2233
2221
|
}
|
|
2234
|
-
namespace
|
|
2235
|
-
|
|
2222
|
+
namespace lineHeight {
|
|
2223
|
+
export namespace defaultValue_26 {
|
|
2224
|
+
const value_15: string;
|
|
2225
|
+
export { value_15 as value };
|
|
2226
|
+
}
|
|
2236
2227
|
export { defaultValue_26 as defaultValue };
|
|
2237
2228
|
const description_38: string;
|
|
2238
2229
|
export { description_38 as description };
|
|
@@ -2243,31 +2234,9 @@ declare namespace SectionTitle {
|
|
|
2243
2234
|
export namespace type_25 {
|
|
2244
2235
|
const name_52: string;
|
|
2245
2236
|
export { name_52 as name };
|
|
2246
|
-
const value_14: {
|
|
2247
|
-
value: string;
|
|
2248
|
-
}[];
|
|
2249
|
-
export { value_14 as value };
|
|
2250
2237
|
}
|
|
2251
2238
|
export { type_25 as type };
|
|
2252
2239
|
}
|
|
2253
|
-
namespace lineHeight {
|
|
2254
|
-
export namespace defaultValue_27 {
|
|
2255
|
-
const value_15: string;
|
|
2256
|
-
export { value_15 as value };
|
|
2257
|
-
}
|
|
2258
|
-
export { defaultValue_27 as defaultValue };
|
|
2259
|
-
const description_39: string;
|
|
2260
|
-
export { description_39 as description };
|
|
2261
|
-
const name_53: string;
|
|
2262
|
-
export { name_53 as name };
|
|
2263
|
-
const required_26: boolean;
|
|
2264
|
-
export { required_26 as required };
|
|
2265
|
-
export namespace type_26 {
|
|
2266
|
-
const name_54: string;
|
|
2267
|
-
export { name_54 as name };
|
|
2268
|
-
}
|
|
2269
|
-
export { type_26 as type };
|
|
2270
|
-
}
|
|
2271
2240
|
}
|
|
2272
2241
|
export { props_4 as props };
|
|
2273
2242
|
}
|
|
@@ -2278,12 +2247,28 @@ declare namespace SectionDescription {
|
|
|
2278
2247
|
const displayName_10: string;
|
|
2279
2248
|
export { displayName_10 as displayName };
|
|
2280
2249
|
export namespace __docgenInfo_5 {
|
|
2281
|
-
const
|
|
2282
|
-
export {
|
|
2250
|
+
const description_39: string;
|
|
2251
|
+
export { description_39 as description };
|
|
2283
2252
|
const displayName_11: string;
|
|
2284
2253
|
export { displayName_11 as displayName };
|
|
2285
2254
|
export namespace props_5 {
|
|
2286
2255
|
export namespace text_1 {
|
|
2256
|
+
const defaultValue_27: null;
|
|
2257
|
+
export { defaultValue_27 as defaultValue };
|
|
2258
|
+
const description_40: string;
|
|
2259
|
+
export { description_40 as description };
|
|
2260
|
+
const name_53: string;
|
|
2261
|
+
export { name_53 as name };
|
|
2262
|
+
const required_26: boolean;
|
|
2263
|
+
export { required_26 as required };
|
|
2264
|
+
export namespace type_26 {
|
|
2265
|
+
const name_54: string;
|
|
2266
|
+
export { name_54 as name };
|
|
2267
|
+
}
|
|
2268
|
+
export { type_26 as type };
|
|
2269
|
+
}
|
|
2270
|
+
export { text_1 as text };
|
|
2271
|
+
export namespace color_1 {
|
|
2287
2272
|
const defaultValue_28: null;
|
|
2288
2273
|
export { defaultValue_28 as defaultValue };
|
|
2289
2274
|
const description_41: string;
|
|
@@ -2298,8 +2283,8 @@ declare namespace SectionDescription {
|
|
|
2298
2283
|
}
|
|
2299
2284
|
export { type_27 as type };
|
|
2300
2285
|
}
|
|
2301
|
-
export {
|
|
2302
|
-
export namespace
|
|
2286
|
+
export { color_1 as color };
|
|
2287
|
+
export namespace tooltipText_1 {
|
|
2303
2288
|
const defaultValue_29: null;
|
|
2304
2289
|
export { defaultValue_29 as defaultValue };
|
|
2305
2290
|
const description_42: string;
|
|
@@ -2314,8 +2299,8 @@ declare namespace SectionDescription {
|
|
|
2314
2299
|
}
|
|
2315
2300
|
export { type_28 as type };
|
|
2316
2301
|
}
|
|
2317
|
-
export {
|
|
2318
|
-
export namespace
|
|
2302
|
+
export { tooltipText_1 as tooltipText };
|
|
2303
|
+
export namespace tooltipPosition_1 {
|
|
2319
2304
|
const defaultValue_30: null;
|
|
2320
2305
|
export { defaultValue_30 as defaultValue };
|
|
2321
2306
|
const description_43: string;
|
|
@@ -2327,11 +2312,15 @@ declare namespace SectionDescription {
|
|
|
2327
2312
|
export namespace type_29 {
|
|
2328
2313
|
const name_60: string;
|
|
2329
2314
|
export { name_60 as name };
|
|
2315
|
+
const value_16: {
|
|
2316
|
+
value: string;
|
|
2317
|
+
}[];
|
|
2318
|
+
export { value_16 as value };
|
|
2330
2319
|
}
|
|
2331
2320
|
export { type_29 as type };
|
|
2332
2321
|
}
|
|
2333
|
-
export {
|
|
2334
|
-
export namespace
|
|
2322
|
+
export { tooltipPosition_1 as tooltipPosition };
|
|
2323
|
+
export namespace textAlign_1 {
|
|
2335
2324
|
const defaultValue_31: null;
|
|
2336
2325
|
export { defaultValue_31 as defaultValue };
|
|
2337
2326
|
const description_44: string;
|
|
@@ -2343,15 +2332,15 @@ declare namespace SectionDescription {
|
|
|
2343
2332
|
export namespace type_30 {
|
|
2344
2333
|
const name_62: string;
|
|
2345
2334
|
export { name_62 as name };
|
|
2346
|
-
const
|
|
2335
|
+
const value_17: {
|
|
2347
2336
|
value: string;
|
|
2348
2337
|
}[];
|
|
2349
|
-
export {
|
|
2338
|
+
export { value_17 as value };
|
|
2350
2339
|
}
|
|
2351
2340
|
export { type_30 as type };
|
|
2352
2341
|
}
|
|
2353
|
-
export {
|
|
2354
|
-
export namespace
|
|
2342
|
+
export { textAlign_1 as textAlign };
|
|
2343
|
+
export namespace styleTheme_1 {
|
|
2355
2344
|
const defaultValue_32: null;
|
|
2356
2345
|
export { defaultValue_32 as defaultValue };
|
|
2357
2346
|
const description_45: string;
|
|
@@ -2363,15 +2352,15 @@ declare namespace SectionDescription {
|
|
|
2363
2352
|
export namespace type_31 {
|
|
2364
2353
|
const name_64: string;
|
|
2365
2354
|
export { name_64 as name };
|
|
2366
|
-
const
|
|
2355
|
+
const value_18: {
|
|
2367
2356
|
value: string;
|
|
2368
2357
|
}[];
|
|
2369
|
-
export {
|
|
2358
|
+
export { value_18 as value };
|
|
2370
2359
|
}
|
|
2371
2360
|
export { type_31 as type };
|
|
2372
2361
|
}
|
|
2373
|
-
export {
|
|
2374
|
-
export namespace
|
|
2362
|
+
export { styleTheme_1 as styleTheme };
|
|
2363
|
+
export namespace colorOverride_1 {
|
|
2375
2364
|
const defaultValue_33: null;
|
|
2376
2365
|
export { defaultValue_33 as defaultValue };
|
|
2377
2366
|
const description_46: string;
|
|
@@ -2383,15 +2372,15 @@ declare namespace SectionDescription {
|
|
|
2383
2372
|
export namespace type_32 {
|
|
2384
2373
|
const name_66: string;
|
|
2385
2374
|
export { name_66 as name };
|
|
2386
|
-
const
|
|
2375
|
+
const value_19: {
|
|
2387
2376
|
value: string;
|
|
2388
2377
|
}[];
|
|
2389
|
-
export {
|
|
2378
|
+
export { value_19 as value };
|
|
2390
2379
|
}
|
|
2391
2380
|
export { type_32 as type };
|
|
2392
2381
|
}
|
|
2393
|
-
export {
|
|
2394
|
-
export namespace
|
|
2382
|
+
export { colorOverride_1 as colorOverride };
|
|
2383
|
+
export namespace colorTheme_1 {
|
|
2395
2384
|
const defaultValue_34: null;
|
|
2396
2385
|
export { defaultValue_34 as defaultValue };
|
|
2397
2386
|
const description_47: string;
|
|
@@ -2403,15 +2392,15 @@ declare namespace SectionDescription {
|
|
|
2403
2392
|
export namespace type_33 {
|
|
2404
2393
|
const name_68: string;
|
|
2405
2394
|
export { name_68 as name };
|
|
2406
|
-
const
|
|
2395
|
+
const value_20: {
|
|
2407
2396
|
value: string;
|
|
2408
2397
|
}[];
|
|
2409
|
-
export {
|
|
2398
|
+
export { value_20 as value };
|
|
2410
2399
|
}
|
|
2411
2400
|
export { type_33 as type };
|
|
2412
2401
|
}
|
|
2413
|
-
export {
|
|
2414
|
-
export namespace
|
|
2402
|
+
export { colorTheme_1 as colorTheme };
|
|
2403
|
+
export namespace singleLineMode_1 {
|
|
2415
2404
|
const defaultValue_35: null;
|
|
2416
2405
|
export { defaultValue_35 as defaultValue };
|
|
2417
2406
|
const description_48: string;
|
|
@@ -2423,15 +2412,15 @@ declare namespace SectionDescription {
|
|
|
2423
2412
|
export namespace type_34 {
|
|
2424
2413
|
const name_70: string;
|
|
2425
2414
|
export { name_70 as name };
|
|
2426
|
-
const
|
|
2415
|
+
const value_21: {
|
|
2427
2416
|
value: string;
|
|
2428
2417
|
}[];
|
|
2429
|
-
export {
|
|
2418
|
+
export { value_21 as value };
|
|
2430
2419
|
}
|
|
2431
2420
|
export { type_34 as type };
|
|
2432
2421
|
}
|
|
2433
|
-
export {
|
|
2434
|
-
export namespace
|
|
2422
|
+
export { singleLineMode_1 as singleLineMode };
|
|
2423
|
+
export namespace ellipsisMode_1 {
|
|
2435
2424
|
const defaultValue_36: null;
|
|
2436
2425
|
export { defaultValue_36 as defaultValue };
|
|
2437
2426
|
const description_49: string;
|
|
@@ -2443,15 +2432,15 @@ declare namespace SectionDescription {
|
|
|
2443
2432
|
export namespace type_35 {
|
|
2444
2433
|
const name_72: string;
|
|
2445
2434
|
export { name_72 as name };
|
|
2446
|
-
const
|
|
2435
|
+
const value_22: {
|
|
2447
2436
|
value: string;
|
|
2448
2437
|
}[];
|
|
2449
|
-
export {
|
|
2438
|
+
export { value_22 as value };
|
|
2450
2439
|
}
|
|
2451
2440
|
export { type_35 as type };
|
|
2452
2441
|
}
|
|
2453
|
-
export {
|
|
2454
|
-
export namespace
|
|
2442
|
+
export { ellipsisMode_1 as ellipsisMode };
|
|
2443
|
+
export namespace lineLimit_1 {
|
|
2455
2444
|
const defaultValue_37: null;
|
|
2456
2445
|
export { defaultValue_37 as defaultValue };
|
|
2457
2446
|
const description_50: string;
|
|
@@ -2463,15 +2452,11 @@ declare namespace SectionDescription {
|
|
|
2463
2452
|
export namespace type_36 {
|
|
2464
2453
|
const name_74: string;
|
|
2465
2454
|
export { name_74 as name };
|
|
2466
|
-
const value_22: {
|
|
2467
|
-
value: string;
|
|
2468
|
-
}[];
|
|
2469
|
-
export { value_22 as value };
|
|
2470
2455
|
}
|
|
2471
2456
|
export { type_36 as type };
|
|
2472
2457
|
}
|
|
2473
|
-
export {
|
|
2474
|
-
export namespace
|
|
2458
|
+
export { lineLimit_1 as lineLimit };
|
|
2459
|
+
export namespace userSelectMode_1 {
|
|
2475
2460
|
const defaultValue_38: null;
|
|
2476
2461
|
export { defaultValue_38 as defaultValue };
|
|
2477
2462
|
const description_51: string;
|
|
@@ -2483,11 +2468,15 @@ declare namespace SectionDescription {
|
|
|
2483
2468
|
export namespace type_37 {
|
|
2484
2469
|
const name_76: string;
|
|
2485
2470
|
export { name_76 as name };
|
|
2471
|
+
const value_23: {
|
|
2472
|
+
value: string;
|
|
2473
|
+
}[];
|
|
2474
|
+
export { value_23 as value };
|
|
2486
2475
|
}
|
|
2487
2476
|
export { type_37 as type };
|
|
2488
2477
|
}
|
|
2489
|
-
export {
|
|
2490
|
-
export namespace
|
|
2478
|
+
export { userSelectMode_1 as userSelectMode };
|
|
2479
|
+
export namespace customFontSize_1 {
|
|
2491
2480
|
const defaultValue_39: null;
|
|
2492
2481
|
export { defaultValue_39 as defaultValue };
|
|
2493
2482
|
const description_52: string;
|
|
@@ -2499,15 +2488,11 @@ declare namespace SectionDescription {
|
|
|
2499
2488
|
export namespace type_38 {
|
|
2500
2489
|
const name_78: string;
|
|
2501
2490
|
export { name_78 as name };
|
|
2502
|
-
const value_23: {
|
|
2503
|
-
value: string;
|
|
2504
|
-
}[];
|
|
2505
|
-
export { value_23 as value };
|
|
2506
2491
|
}
|
|
2507
2492
|
export { type_38 as type };
|
|
2508
2493
|
}
|
|
2509
|
-
export {
|
|
2510
|
-
export namespace
|
|
2494
|
+
export { customFontSize_1 as customFontSize };
|
|
2495
|
+
export namespace customFontWeight_1 {
|
|
2511
2496
|
const defaultValue_40: null;
|
|
2512
2497
|
export { defaultValue_40 as defaultValue };
|
|
2513
2498
|
const description_53: string;
|
|
@@ -2519,11 +2504,15 @@ declare namespace SectionDescription {
|
|
|
2519
2504
|
export namespace type_39 {
|
|
2520
2505
|
const name_80: string;
|
|
2521
2506
|
export { name_80 as name };
|
|
2507
|
+
const value_24: {
|
|
2508
|
+
value: string;
|
|
2509
|
+
}[];
|
|
2510
|
+
export { value_24 as value };
|
|
2522
2511
|
}
|
|
2523
2512
|
export { type_39 as type };
|
|
2524
2513
|
}
|
|
2525
|
-
export {
|
|
2526
|
-
export namespace
|
|
2514
|
+
export { customFontWeight_1 as customFontWeight };
|
|
2515
|
+
export namespace textDecorationType_1 {
|
|
2527
2516
|
const defaultValue_41: null;
|
|
2528
2517
|
export { defaultValue_41 as defaultValue };
|
|
2529
2518
|
const description_54: string;
|
|
@@ -2535,15 +2524,15 @@ declare namespace SectionDescription {
|
|
|
2535
2524
|
export namespace type_40 {
|
|
2536
2525
|
const name_82: string;
|
|
2537
2526
|
export { name_82 as name };
|
|
2538
|
-
const
|
|
2527
|
+
const value_25: {
|
|
2539
2528
|
value: string;
|
|
2540
2529
|
}[];
|
|
2541
|
-
export {
|
|
2530
|
+
export { value_25 as value };
|
|
2542
2531
|
}
|
|
2543
2532
|
export { type_40 as type };
|
|
2544
2533
|
}
|
|
2545
|
-
export {
|
|
2546
|
-
export namespace
|
|
2534
|
+
export { textDecorationType_1 as textDecorationType };
|
|
2535
|
+
export namespace requirementMode_1 {
|
|
2547
2536
|
const defaultValue_42: null;
|
|
2548
2537
|
export { defaultValue_42 as defaultValue };
|
|
2549
2538
|
const description_55: string;
|
|
@@ -2555,15 +2544,15 @@ declare namespace SectionDescription {
|
|
|
2555
2544
|
export namespace type_41 {
|
|
2556
2545
|
const name_84: string;
|
|
2557
2546
|
export { name_84 as name };
|
|
2558
|
-
const
|
|
2547
|
+
const value_26: {
|
|
2559
2548
|
value: string;
|
|
2560
2549
|
}[];
|
|
2561
|
-
export {
|
|
2550
|
+
export { value_26 as value };
|
|
2562
2551
|
}
|
|
2563
2552
|
export { type_41 as type };
|
|
2564
2553
|
}
|
|
2565
|
-
export {
|
|
2566
|
-
export namespace
|
|
2554
|
+
export { requirementMode_1 as requirementMode };
|
|
2555
|
+
export namespace bulletPointMode_1 {
|
|
2567
2556
|
const defaultValue_43: null;
|
|
2568
2557
|
export { defaultValue_43 as defaultValue };
|
|
2569
2558
|
const description_56: string;
|
|
@@ -2575,15 +2564,15 @@ declare namespace SectionDescription {
|
|
|
2575
2564
|
export namespace type_42 {
|
|
2576
2565
|
const name_86: string;
|
|
2577
2566
|
export { name_86 as name };
|
|
2578
|
-
const
|
|
2567
|
+
const value_27: {
|
|
2579
2568
|
value: string;
|
|
2580
2569
|
}[];
|
|
2581
|
-
export {
|
|
2570
|
+
export { value_27 as value };
|
|
2582
2571
|
}
|
|
2583
2572
|
export { type_42 as type };
|
|
2584
2573
|
}
|
|
2585
|
-
export {
|
|
2586
|
-
export namespace
|
|
2574
|
+
export { bulletPointMode_1 as bulletPointMode };
|
|
2575
|
+
export namespace wordBreak_1 {
|
|
2587
2576
|
const defaultValue_44: null;
|
|
2588
2577
|
export { defaultValue_44 as defaultValue };
|
|
2589
2578
|
const description_57: string;
|
|
@@ -2595,15 +2584,15 @@ declare namespace SectionDescription {
|
|
|
2595
2584
|
export namespace type_43 {
|
|
2596
2585
|
const name_88: string;
|
|
2597
2586
|
export { name_88 as name };
|
|
2598
|
-
const
|
|
2587
|
+
const value_28: {
|
|
2599
2588
|
value: string;
|
|
2600
2589
|
}[];
|
|
2601
|
-
export {
|
|
2590
|
+
export { value_28 as value };
|
|
2602
2591
|
}
|
|
2603
2592
|
export { type_43 as type };
|
|
2604
2593
|
}
|
|
2605
|
-
export {
|
|
2606
|
-
export namespace
|
|
2594
|
+
export { wordBreak_1 as wordBreak };
|
|
2595
|
+
export namespace fontWeight {
|
|
2607
2596
|
const defaultValue_45: null;
|
|
2608
2597
|
export { defaultValue_45 as defaultValue };
|
|
2609
2598
|
const description_58: string;
|
|
@@ -2615,29 +2604,9 @@ declare namespace SectionDescription {
|
|
|
2615
2604
|
export namespace type_44 {
|
|
2616
2605
|
const name_90: string;
|
|
2617
2606
|
export { name_90 as name };
|
|
2618
|
-
const value_28: {
|
|
2619
|
-
value: string;
|
|
2620
|
-
}[];
|
|
2621
|
-
export { value_28 as value };
|
|
2622
2607
|
}
|
|
2623
2608
|
export { type_44 as type };
|
|
2624
2609
|
}
|
|
2625
|
-
export { wordBreak_1 as wordBreak };
|
|
2626
|
-
export namespace fontWeight {
|
|
2627
|
-
const defaultValue_46: null;
|
|
2628
|
-
export { defaultValue_46 as defaultValue };
|
|
2629
|
-
const description_59: string;
|
|
2630
|
-
export { description_59 as description };
|
|
2631
|
-
const name_91: string;
|
|
2632
|
-
export { name_91 as name };
|
|
2633
|
-
const required_45: boolean;
|
|
2634
|
-
export { required_45 as required };
|
|
2635
|
-
export namespace type_45 {
|
|
2636
|
-
const name_92: string;
|
|
2637
|
-
export { name_92 as name };
|
|
2638
|
-
}
|
|
2639
|
-
export { type_45 as type };
|
|
2640
|
-
}
|
|
2641
2610
|
}
|
|
2642
2611
|
export { props_5 as props };
|
|
2643
2612
|
}
|
|
@@ -2648,12 +2617,27 @@ declare namespace SectionImage {
|
|
|
2648
2617
|
const displayName_12: string;
|
|
2649
2618
|
export { displayName_12 as displayName };
|
|
2650
2619
|
export namespace __docgenInfo_6 {
|
|
2651
|
-
const
|
|
2652
|
-
export {
|
|
2620
|
+
const description_59: string;
|
|
2621
|
+
export { description_59 as description };
|
|
2653
2622
|
const displayName_13: string;
|
|
2654
2623
|
export { displayName_13 as displayName };
|
|
2655
2624
|
export namespace props_6 {
|
|
2656
2625
|
export namespace src {
|
|
2626
|
+
const defaultValue_46: null;
|
|
2627
|
+
export { defaultValue_46 as defaultValue };
|
|
2628
|
+
const description_60: string;
|
|
2629
|
+
export { description_60 as description };
|
|
2630
|
+
const name_91: string;
|
|
2631
|
+
export { name_91 as name };
|
|
2632
|
+
const required_45: boolean;
|
|
2633
|
+
export { required_45 as required };
|
|
2634
|
+
export namespace type_45 {
|
|
2635
|
+
const name_92: string;
|
|
2636
|
+
export { name_92 as name };
|
|
2637
|
+
}
|
|
2638
|
+
export { type_45 as type };
|
|
2639
|
+
}
|
|
2640
|
+
export namespace shapeType {
|
|
2657
2641
|
const defaultValue_47: null;
|
|
2658
2642
|
export { defaultValue_47 as defaultValue };
|
|
2659
2643
|
const description_61: string;
|
|
@@ -2665,10 +2649,14 @@ declare namespace SectionImage {
|
|
|
2665
2649
|
export namespace type_46 {
|
|
2666
2650
|
const name_94: string;
|
|
2667
2651
|
export { name_94 as name };
|
|
2652
|
+
const value_29: {
|
|
2653
|
+
value: string;
|
|
2654
|
+
}[];
|
|
2655
|
+
export { value_29 as value };
|
|
2668
2656
|
}
|
|
2669
2657
|
export { type_46 as type };
|
|
2670
2658
|
}
|
|
2671
|
-
export namespace
|
|
2659
|
+
export namespace radius {
|
|
2672
2660
|
const defaultValue_48: null;
|
|
2673
2661
|
export { defaultValue_48 as defaultValue };
|
|
2674
2662
|
const description_62: string;
|
|
@@ -2680,14 +2668,14 @@ declare namespace SectionImage {
|
|
|
2680
2668
|
export namespace type_47 {
|
|
2681
2669
|
const name_96: string;
|
|
2682
2670
|
export { name_96 as name };
|
|
2683
|
-
const
|
|
2671
|
+
const value_30: {
|
|
2684
2672
|
value: string;
|
|
2685
2673
|
}[];
|
|
2686
|
-
export {
|
|
2674
|
+
export { value_30 as value };
|
|
2687
2675
|
}
|
|
2688
2676
|
export { type_47 as type };
|
|
2689
2677
|
}
|
|
2690
|
-
export namespace
|
|
2678
|
+
export namespace width_1 {
|
|
2691
2679
|
const defaultValue_49: null;
|
|
2692
2680
|
export { defaultValue_49 as defaultValue };
|
|
2693
2681
|
const description_63: string;
|
|
@@ -2699,14 +2687,11 @@ declare namespace SectionImage {
|
|
|
2699
2687
|
export namespace type_48 {
|
|
2700
2688
|
const name_98: string;
|
|
2701
2689
|
export { name_98 as name };
|
|
2702
|
-
const value_30: {
|
|
2703
|
-
value: string;
|
|
2704
|
-
}[];
|
|
2705
|
-
export { value_30 as value };
|
|
2706
2690
|
}
|
|
2707
2691
|
export { type_48 as type };
|
|
2708
2692
|
}
|
|
2709
|
-
export
|
|
2693
|
+
export { width_1 as width };
|
|
2694
|
+
export namespace height {
|
|
2710
2695
|
const defaultValue_50: null;
|
|
2711
2696
|
export { defaultValue_50 as defaultValue };
|
|
2712
2697
|
const description_64: string;
|
|
@@ -2721,8 +2706,7 @@ declare namespace SectionImage {
|
|
|
2721
2706
|
}
|
|
2722
2707
|
export { type_49 as type };
|
|
2723
2708
|
}
|
|
2724
|
-
export
|
|
2725
|
-
export namespace height {
|
|
2709
|
+
export namespace noImageHeight {
|
|
2726
2710
|
const defaultValue_51: null;
|
|
2727
2711
|
export { defaultValue_51 as defaultValue };
|
|
2728
2712
|
const description_65: string;
|
|
@@ -2737,7 +2721,7 @@ declare namespace SectionImage {
|
|
|
2737
2721
|
}
|
|
2738
2722
|
export { type_50 as type };
|
|
2739
2723
|
}
|
|
2740
|
-
export namespace
|
|
2724
|
+
export namespace noImageWidth {
|
|
2741
2725
|
const defaultValue_52: null;
|
|
2742
2726
|
export { defaultValue_52 as defaultValue };
|
|
2743
2727
|
const description_66: string;
|
|
@@ -2752,7 +2736,7 @@ declare namespace SectionImage {
|
|
|
2752
2736
|
}
|
|
2753
2737
|
export { type_51 as type };
|
|
2754
2738
|
}
|
|
2755
|
-
export namespace
|
|
2739
|
+
export namespace ratio {
|
|
2756
2740
|
const defaultValue_53: null;
|
|
2757
2741
|
export { defaultValue_53 as defaultValue };
|
|
2758
2742
|
const description_67: string;
|
|
@@ -2764,10 +2748,14 @@ declare namespace SectionImage {
|
|
|
2764
2748
|
export namespace type_52 {
|
|
2765
2749
|
const name_106: string;
|
|
2766
2750
|
export { name_106 as name };
|
|
2751
|
+
const value_31: {
|
|
2752
|
+
value: string;
|
|
2753
|
+
}[];
|
|
2754
|
+
export { value_31 as value };
|
|
2767
2755
|
}
|
|
2768
2756
|
export { type_52 as type };
|
|
2769
2757
|
}
|
|
2770
|
-
export namespace
|
|
2758
|
+
export namespace scaleType {
|
|
2771
2759
|
const defaultValue_54: null;
|
|
2772
2760
|
export { defaultValue_54 as defaultValue };
|
|
2773
2761
|
const description_68: string;
|
|
@@ -2779,14 +2767,14 @@ declare namespace SectionImage {
|
|
|
2779
2767
|
export namespace type_53 {
|
|
2780
2768
|
const name_108: string;
|
|
2781
2769
|
export { name_108 as name };
|
|
2782
|
-
const
|
|
2770
|
+
const value_32: {
|
|
2783
2771
|
value: string;
|
|
2784
2772
|
}[];
|
|
2785
|
-
export {
|
|
2773
|
+
export { value_32 as value };
|
|
2786
2774
|
}
|
|
2787
2775
|
export { type_53 as type };
|
|
2788
2776
|
}
|
|
2789
|
-
export namespace
|
|
2777
|
+
export namespace borderMode {
|
|
2790
2778
|
const defaultValue_55: null;
|
|
2791
2779
|
export { defaultValue_55 as defaultValue };
|
|
2792
2780
|
const description_69: string;
|
|
@@ -2798,14 +2786,14 @@ declare namespace SectionImage {
|
|
|
2798
2786
|
export namespace type_54 {
|
|
2799
2787
|
const name_110: string;
|
|
2800
2788
|
export { name_110 as name };
|
|
2801
|
-
const
|
|
2789
|
+
const value_33: {
|
|
2802
2790
|
value: string;
|
|
2803
2791
|
}[];
|
|
2804
|
-
export {
|
|
2792
|
+
export { value_33 as value };
|
|
2805
2793
|
}
|
|
2806
2794
|
export { type_54 as type };
|
|
2807
2795
|
}
|
|
2808
|
-
export namespace
|
|
2796
|
+
export namespace backgroundFillMode {
|
|
2809
2797
|
const defaultValue_56: null;
|
|
2810
2798
|
export { defaultValue_56 as defaultValue };
|
|
2811
2799
|
const description_70: string;
|
|
@@ -2817,14 +2805,14 @@ declare namespace SectionImage {
|
|
|
2817
2805
|
export namespace type_55 {
|
|
2818
2806
|
const name_112: string;
|
|
2819
2807
|
export { name_112 as name };
|
|
2820
|
-
const
|
|
2808
|
+
const value_34: {
|
|
2821
2809
|
value: string;
|
|
2822
2810
|
}[];
|
|
2823
|
-
export {
|
|
2811
|
+
export { value_34 as value };
|
|
2824
2812
|
}
|
|
2825
2813
|
export { type_55 as type };
|
|
2826
2814
|
}
|
|
2827
|
-
export namespace
|
|
2815
|
+
export namespace isLoading {
|
|
2828
2816
|
const defaultValue_57: null;
|
|
2829
2817
|
export { defaultValue_57 as defaultValue };
|
|
2830
2818
|
const description_71: string;
|
|
@@ -2836,28 +2824,9 @@ declare namespace SectionImage {
|
|
|
2836
2824
|
export namespace type_56 {
|
|
2837
2825
|
const name_114: string;
|
|
2838
2826
|
export { name_114 as name };
|
|
2839
|
-
const value_34: {
|
|
2840
|
-
value: string;
|
|
2841
|
-
}[];
|
|
2842
|
-
export { value_34 as value };
|
|
2843
2827
|
}
|
|
2844
2828
|
export { type_56 as type };
|
|
2845
2829
|
}
|
|
2846
|
-
export namespace isLoading {
|
|
2847
|
-
const defaultValue_58: null;
|
|
2848
|
-
export { defaultValue_58 as defaultValue };
|
|
2849
|
-
const description_72: string;
|
|
2850
|
-
export { description_72 as description };
|
|
2851
|
-
const name_115: string;
|
|
2852
|
-
export { name_115 as name };
|
|
2853
|
-
const required_57: boolean;
|
|
2854
|
-
export { required_57 as required };
|
|
2855
|
-
export namespace type_57 {
|
|
2856
|
-
const name_116: string;
|
|
2857
|
-
export { name_116 as name };
|
|
2858
|
-
}
|
|
2859
|
-
export { type_57 as type };
|
|
2860
|
-
}
|
|
2861
2830
|
}
|
|
2862
2831
|
export { props_6 as props };
|
|
2863
2832
|
}
|
|
@@ -2868,16 +2837,35 @@ declare namespace SectionButton {
|
|
|
2868
2837
|
const displayName_14: string;
|
|
2869
2838
|
export { displayName_14 as displayName };
|
|
2870
2839
|
export namespace __docgenInfo_7 {
|
|
2871
|
-
const
|
|
2872
|
-
export {
|
|
2840
|
+
const description_72: string;
|
|
2841
|
+
export { description_72 as description };
|
|
2873
2842
|
const displayName_15: string;
|
|
2874
2843
|
export { displayName_15 as displayName };
|
|
2875
2844
|
export namespace props_7 {
|
|
2876
2845
|
export namespace linkType {
|
|
2877
|
-
export namespace
|
|
2846
|
+
export namespace defaultValue_58 {
|
|
2878
2847
|
const value_35: string;
|
|
2879
2848
|
export { value_35 as value };
|
|
2880
2849
|
}
|
|
2850
|
+
export { defaultValue_58 as defaultValue };
|
|
2851
|
+
const description_73: string;
|
|
2852
|
+
export { description_73 as description };
|
|
2853
|
+
const name_115: string;
|
|
2854
|
+
export { name_115 as name };
|
|
2855
|
+
const required_57: boolean;
|
|
2856
|
+
export { required_57 as required };
|
|
2857
|
+
export namespace type_57 {
|
|
2858
|
+
const name_116: string;
|
|
2859
|
+
export { name_116 as name };
|
|
2860
|
+
const value_36: {
|
|
2861
|
+
value: string;
|
|
2862
|
+
}[];
|
|
2863
|
+
export { value_36 as value };
|
|
2864
|
+
}
|
|
2865
|
+
export { type_57 as type };
|
|
2866
|
+
}
|
|
2867
|
+
export namespace buttonType {
|
|
2868
|
+
const defaultValue_59: null;
|
|
2881
2869
|
export { defaultValue_59 as defaultValue };
|
|
2882
2870
|
const description_74: string;
|
|
2883
2871
|
export { description_74 as description };
|
|
@@ -2888,14 +2876,10 @@ declare namespace SectionButton {
|
|
|
2888
2876
|
export namespace type_58 {
|
|
2889
2877
|
const name_118: string;
|
|
2890
2878
|
export { name_118 as name };
|
|
2891
|
-
const value_36: {
|
|
2892
|
-
value: string;
|
|
2893
|
-
}[];
|
|
2894
|
-
export { value_36 as value };
|
|
2895
2879
|
}
|
|
2896
2880
|
export { type_58 as type };
|
|
2897
2881
|
}
|
|
2898
|
-
export namespace
|
|
2882
|
+
export namespace backgroundColor {
|
|
2899
2883
|
const defaultValue_60: null;
|
|
2900
2884
|
export { defaultValue_60 as defaultValue };
|
|
2901
2885
|
const description_75: string;
|
|
@@ -2910,7 +2894,7 @@ declare namespace SectionButton {
|
|
|
2910
2894
|
}
|
|
2911
2895
|
export { type_59 as type };
|
|
2912
2896
|
}
|
|
2913
|
-
export namespace
|
|
2897
|
+
export namespace textColor {
|
|
2914
2898
|
const defaultValue_61: null;
|
|
2915
2899
|
export { defaultValue_61 as defaultValue };
|
|
2916
2900
|
const description_76: string;
|
|
@@ -2925,7 +2909,7 @@ declare namespace SectionButton {
|
|
|
2925
2909
|
}
|
|
2926
2910
|
export { type_60 as type };
|
|
2927
2911
|
}
|
|
2928
|
-
export namespace
|
|
2912
|
+
export namespace text_2 {
|
|
2929
2913
|
const defaultValue_62: null;
|
|
2930
2914
|
export { defaultValue_62 as defaultValue };
|
|
2931
2915
|
const description_77: string;
|
|
@@ -2940,8 +2924,12 @@ declare namespace SectionButton {
|
|
|
2940
2924
|
}
|
|
2941
2925
|
export { type_61 as type };
|
|
2942
2926
|
}
|
|
2943
|
-
export
|
|
2944
|
-
|
|
2927
|
+
export { text_2 as text };
|
|
2928
|
+
export namespace src_1 {
|
|
2929
|
+
export namespace defaultValue_63 {
|
|
2930
|
+
const value_37: string;
|
|
2931
|
+
export { value_37 as value };
|
|
2932
|
+
}
|
|
2945
2933
|
export { defaultValue_63 as defaultValue };
|
|
2946
2934
|
const description_78: string;
|
|
2947
2935
|
export { description_78 as description };
|
|
@@ -2955,12 +2943,9 @@ declare namespace SectionButton {
|
|
|
2955
2943
|
}
|
|
2956
2944
|
export { type_62 as type };
|
|
2957
2945
|
}
|
|
2958
|
-
export {
|
|
2959
|
-
export namespace
|
|
2960
|
-
|
|
2961
|
-
const value_37: string;
|
|
2962
|
-
export { value_37 as value };
|
|
2963
|
-
}
|
|
2946
|
+
export { src_1 as src };
|
|
2947
|
+
export namespace borderColor {
|
|
2948
|
+
const defaultValue_64: null;
|
|
2964
2949
|
export { defaultValue_64 as defaultValue };
|
|
2965
2950
|
const description_79: string;
|
|
2966
2951
|
export { description_79 as description };
|
|
@@ -2974,9 +2959,11 @@ declare namespace SectionButton {
|
|
|
2974
2959
|
}
|
|
2975
2960
|
export { type_63 as type };
|
|
2976
2961
|
}
|
|
2977
|
-
export
|
|
2978
|
-
|
|
2979
|
-
|
|
2962
|
+
export namespace state {
|
|
2963
|
+
export namespace defaultValue_65 {
|
|
2964
|
+
const value_38: string;
|
|
2965
|
+
export { value_38 as value };
|
|
2966
|
+
}
|
|
2980
2967
|
export { defaultValue_65 as defaultValue };
|
|
2981
2968
|
const description_80: string;
|
|
2982
2969
|
export { description_80 as description };
|
|
@@ -2987,30 +2974,12 @@ declare namespace SectionButton {
|
|
|
2987
2974
|
export namespace type_64 {
|
|
2988
2975
|
const name_130: string;
|
|
2989
2976
|
export { name_130 as name };
|
|
2990
|
-
}
|
|
2991
|
-
export { type_64 as type };
|
|
2992
|
-
}
|
|
2993
|
-
export namespace state {
|
|
2994
|
-
export namespace defaultValue_66 {
|
|
2995
|
-
const value_38: string;
|
|
2996
|
-
export { value_38 as value };
|
|
2997
|
-
}
|
|
2998
|
-
export { defaultValue_66 as defaultValue };
|
|
2999
|
-
const description_81: string;
|
|
3000
|
-
export { description_81 as description };
|
|
3001
|
-
const name_131: string;
|
|
3002
|
-
export { name_131 as name };
|
|
3003
|
-
const required_65: boolean;
|
|
3004
|
-
export { required_65 as required };
|
|
3005
|
-
export namespace type_65 {
|
|
3006
|
-
const name_132: string;
|
|
3007
|
-
export { name_132 as name };
|
|
3008
2977
|
const value_39: {
|
|
3009
2978
|
value: string;
|
|
3010
2979
|
}[];
|
|
3011
2980
|
export { value_39 as value };
|
|
3012
2981
|
}
|
|
3013
|
-
export {
|
|
2982
|
+
export { type_64 as type };
|
|
3014
2983
|
}
|
|
3015
2984
|
}
|
|
3016
2985
|
export { props_7 as props };
|
|
@@ -3026,6 +2995,7 @@ declare var D_TemplateC: any;
|
|
|
3026
2995
|
declare var M_TemplateC: any;
|
|
3027
2996
|
declare var D_TemplateD: any;
|
|
3028
2997
|
declare var M_TemplateD: any;
|
|
2998
|
+
declare var useLazyUnmount: any;
|
|
3029
2999
|
declare var TemplateA_desktop: any;
|
|
3030
3000
|
declare var TemplateA_mobile: any;
|
|
3031
3001
|
declare var TemplateB_desktop: any;
|