@layers-app/shared 0.4.1 → 0.4.3
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/components/AnimatedFigurePage/AnimatedFigurePage.module.css.js +13 -13
- package/dist/components/AppContainer/components/menus/HelpMenu/HelpMenu.d.ts.map +1 -1
- package/dist/components/AppContainer/components/menus/HelpMenu/HelpMenu.js +15 -16
- package/dist/components/AttachmentsGalleryModal/components/ModalHeader.d.ts.map +1 -1
- package/dist/components/AttachmentsGalleryModal/components/ModalHeader.js +55 -59
- package/dist/components/AttachmentsGalleryModal/styles.module.css.js +24 -22
- package/dist/components/ColorPicker/ColorPicker.d.ts.map +1 -1
- package/dist/components/ColorPicker/ColorPicker.js +109 -83
- package/dist/components/ColorPicker/ColorPickerList.d.ts.map +1 -1
- package/dist/components/ColorPicker/ColorPickerList.js +62 -63
- package/dist/components/ColorPicker/ColorPickerToolbar.d.ts.map +1 -1
- package/dist/components/ColorPicker/ColorPickerToolbar.js +128 -120
- package/dist/components/ColorPicker/icons.js +3 -3
- package/dist/components/ColorPicker/types.d.ts +3 -1
- package/dist/components/ColorPicker/types.d.ts.map +1 -1
- package/dist/components/ColorPicker/types.js +11 -5
- package/dist/components/CommentComposer/CommentEditorHotkeys.d.ts.map +1 -1
- package/dist/components/CommentComposer/CommentEditorHotkeys.js +55 -45
- package/dist/components/EmojiPicker/EmojiPanel.js +6 -6
- package/dist/components/EmojiPicker/IconsPanel.js +11 -11
- package/dist/components/FilePicker/FilePicker.d.ts +3 -1
- package/dist/components/FilePicker/FilePicker.d.ts.map +1 -1
- package/dist/components/FilePicker/FilePicker.js +44 -42
- package/dist/components/FilePicker/FilePickerUpload.d.ts +3 -1
- package/dist/components/FilePicker/FilePickerUpload.d.ts.map +1 -1
- package/dist/components/FilePicker/FilePickerUpload.js +28 -28
- package/dist/components/FormViewer/helpers/steps.d.ts.map +1 -1
- package/dist/components/FormViewer/helpers/steps.js +11 -11
- package/dist/components/LanguagePicker/LanguagePicker.d.ts +13 -3
- package/dist/components/LanguagePicker/LanguagePicker.d.ts.map +1 -1
- package/dist/components/LanguagePicker/LanguagePicker.js +65 -43
- package/dist/components/MusicPlayerBar/MusicPlayerBar.d.ts +3 -0
- package/dist/components/MusicPlayerBar/MusicPlayerBar.d.ts.map +1 -0
- package/dist/components/MusicPlayerBar/MusicPlayerBar.js +239 -0
- package/dist/components/MusicPlayerBar/MusicPlayerBar.module.css.js +49 -0
- package/dist/components/MusicPlayerBar/components/HiddenAudio.d.ts +10 -0
- package/dist/components/MusicPlayerBar/components/HiddenAudio.d.ts.map +1 -0
- package/dist/components/MusicPlayerBar/components/HiddenAudio.js +35 -0
- package/dist/components/MusicPlayerBar/components/HoverActions.d.ts +20 -0
- package/dist/components/MusicPlayerBar/components/HoverActions.d.ts.map +1 -0
- package/dist/components/MusicPlayerBar/components/HoverActions.js +88 -0
- package/dist/components/MusicPlayerBar/components/MobileActionsDrawer.d.ts +18 -0
- package/dist/components/MusicPlayerBar/components/MobileActionsDrawer.d.ts.map +1 -0
- package/dist/components/MusicPlayerBar/components/MobileActionsDrawer.js +91 -0
- package/dist/components/MusicPlayerBar/components/MobileSpeedDrawer.d.ts +11 -0
- package/dist/components/MusicPlayerBar/components/MobileSpeedDrawer.d.ts.map +1 -0
- package/dist/components/MusicPlayerBar/components/MobileSpeedDrawer.js +38 -0
- package/dist/components/MusicPlayerBar/components/MobileTailControls.d.ts +11 -0
- package/dist/components/MusicPlayerBar/components/MobileTailControls.d.ts.map +1 -0
- package/dist/components/MusicPlayerBar/components/MobileTailControls.js +50 -0
- package/dist/components/MusicPlayerBar/components/PlayButton.d.ts +9 -0
- package/dist/components/MusicPlayerBar/components/PlayButton.d.ts.map +1 -0
- package/dist/components/MusicPlayerBar/components/PlayButton.js +28 -0
- package/dist/components/MusicPlayerBar/components/SpeedPopover.d.ts +11 -0
- package/dist/components/MusicPlayerBar/components/SpeedPopover.d.ts.map +1 -0
- package/dist/components/MusicPlayerBar/components/SpeedPopover.js +90 -0
- package/dist/components/MusicPlayerBar/components/Timer.d.ts +8 -0
- package/dist/components/MusicPlayerBar/components/Timer.d.ts.map +1 -0
- package/dist/components/MusicPlayerBar/components/Timer.js +25 -0
- package/dist/components/MusicPlayerBar/components/VolumePopover.d.ts +15 -0
- package/dist/components/MusicPlayerBar/components/VolumePopover.d.ts.map +1 -0
- package/dist/components/MusicPlayerBar/components/VolumePopover.js +86 -0
- package/dist/components/MusicPlayerBar/components/Waveform.d.ts +12 -0
- package/dist/components/MusicPlayerBar/components/Waveform.d.ts.map +1 -0
- package/dist/components/MusicPlayerBar/components/Waveform.js +47 -0
- package/dist/components/MusicPlayerBar/constants.d.ts +19 -0
- package/dist/components/MusicPlayerBar/constants.d.ts.map +1 -0
- package/dist/components/MusicPlayerBar/constants.js +21 -0
- package/dist/components/MusicPlayerBar/helpers.d.ts +11 -0
- package/dist/components/MusicPlayerBar/helpers.d.ts.map +1 -0
- package/dist/components/MusicPlayerBar/helpers.js +44 -0
- package/dist/components/MusicPlayerBar/hooks/useAudioPlayback.d.ts +23 -0
- package/dist/components/MusicPlayerBar/hooks/useAudioPlayback.d.ts.map +1 -0
- package/dist/components/MusicPlayerBar/hooks/useAudioPlayback.js +49 -0
- package/dist/components/MusicPlayerBar/hooks/useCopyFeedback.d.ts +6 -0
- package/dist/components/MusicPlayerBar/hooks/useCopyFeedback.d.ts.map +1 -0
- package/dist/components/MusicPlayerBar/hooks/useCopyFeedback.js +17 -0
- package/dist/components/MusicPlayerBar/hooks/useHoverPopover.d.ts +9 -0
- package/dist/components/MusicPlayerBar/hooks/useHoverPopover.d.ts.map +1 -0
- package/dist/components/MusicPlayerBar/hooks/useHoverPopover.js +18 -0
- package/dist/components/MusicPlayerBar/hooks/useMusicPlayerLabels.d.ts +3 -0
- package/dist/components/MusicPlayerBar/hooks/useMusicPlayerLabels.d.ts.map +1 -0
- package/dist/components/MusicPlayerBar/hooks/useMusicPlayerLabels.js +26 -0
- package/dist/components/MusicPlayerBar/hooks/useWaveform.d.ts +7 -0
- package/dist/components/MusicPlayerBar/hooks/useWaveform.d.ts.map +1 -0
- package/dist/components/MusicPlayerBar/hooks/useWaveform.js +28 -0
- package/dist/components/MusicPlayerBar/index.d.ts +3 -0
- package/dist/components/MusicPlayerBar/index.d.ts.map +1 -0
- package/dist/components/MusicPlayerBar/types.d.ts +33 -0
- package/dist/components/MusicPlayerBar/types.d.ts.map +1 -0
- package/dist/components/NavbarResizer/NavbarResizer.js +1 -1
- package/dist/components/OnboardingTour/OnboardingTourFooter.d.ts +6 -1
- package/dist/components/OnboardingTour/OnboardingTourFooter.d.ts.map +1 -1
- package/dist/components/OnboardingTour/OnboardingTourFooter.js +39 -21
- package/dist/components/OnboardingTour/OnboardingTourWrapper.d.ts +4 -5
- package/dist/components/OnboardingTour/OnboardingTourWrapper.d.ts.map +1 -1
- package/dist/components/OnboardingTour/OnboardingTourWrapper.js +86 -118
- package/dist/components/OnboardingTour/index.d.ts +1 -1
- package/dist/components/OnboardingTour/index.d.ts.map +1 -1
- package/dist/components/OnboardingTour/useOnboardingTour.d.ts +4 -0
- package/dist/components/OnboardingTour/useOnboardingTour.d.ts.map +1 -1
- package/dist/components/OnboardingTour/useOnboardingTour.js +65 -36
- package/dist/components/UserAvatar/index.d.ts.map +1 -1
- package/dist/components/UserAvatar/index.js +38 -31
- package/dist/components/table/hooks/useColumnsResizing.d.ts.map +1 -1
- package/dist/components/table/hooks/useColumnsResizing.js +1 -1
- package/dist/config/brand.d.ts +2 -0
- package/dist/config/brand.d.ts.map +1 -1
- package/dist/config/brand.js +28 -22
- package/dist/config/envConfig.d.ts +4 -0
- package/dist/config/envConfig.d.ts.map +1 -1
- package/dist/helpers/isNoAccessError.d.ts +2 -0
- package/dist/helpers/isNoAccessError.d.ts.map +1 -0
- package/dist/helpers/isNoAccessError.js +7 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +454 -448
- package/dist/lang/locales/ui_en.json.js +6 -4
- package/dist/lang/locales/ui_es.json.js +8 -6
- package/dist/lang/locales/ui_ru.json.js +9 -7
- package/dist/store/featureProgress.d.ts +3 -6
- package/dist/store/featureProgress.d.ts.map +1 -1
- package/dist/store/featureProgress.js +56 -22
- package/dist/store/plansModal.d.ts.map +1 -1
- package/dist/store/plansModal.js +10 -10
- package/package.json +3 -3
- package/dist/assets/images/person.png.js +0 -4
- package/dist/assets/images/person2.png.js +0 -4
- package/dist/assets/images/person3.png.js +0 -4
- package/dist/assets/images/person4.png.js +0 -4
- package/dist/components/OnBoarding/OnBoardingPage.d.ts +0 -2
- package/dist/components/OnBoarding/OnBoardingPage.d.ts.map +0 -1
- package/dist/components/OnBoarding/OnBoardingPage.js +0 -80
- package/dist/components/OnBoarding/ProjectBoard.d.ts +0 -5
- package/dist/components/OnBoarding/ProjectBoard.d.ts.map +0 -1
- package/dist/components/OnBoarding/ProjectBoard.js +0 -141
- package/dist/components/OnBoarding/StepsNavBar.d.ts +0 -5
- package/dist/components/OnBoarding/StepsNavBar.d.ts.map +0 -1
- package/dist/components/OnBoarding/StepsNavBar.js +0 -21
- package/dist/components/OnBoarding/index.d.ts +0 -2
- package/dist/components/OnBoarding/index.d.ts.map +0 -1
- package/dist/components/OnBoarding/steps/AddTasks/AddTasksNav.d.ts +0 -3
- package/dist/components/OnBoarding/steps/AddTasks/AddTasksNav.d.ts.map +0 -1
- package/dist/components/OnBoarding/steps/AddTasks/AddTasksNav.js +0 -42
- package/dist/components/OnBoarding/steps/AddTasks/TasksListBoard.d.ts +0 -3
- package/dist/components/OnBoarding/steps/AddTasks/TasksListBoard.d.ts.map +0 -1
- package/dist/components/OnBoarding/steps/AddTasks/TasksListBoard.js +0 -51
- package/dist/components/OnBoarding/steps/CreateFirstProject.d.ts +0 -3
- package/dist/components/OnBoarding/steps/CreateFirstProject.d.ts.map +0 -1
- package/dist/components/OnBoarding/steps/CreateFirstProject.js +0 -45
- package/dist/components/OnBoarding/steps/DefineStatuses/DefineStatusesNav.d.ts +0 -3
- package/dist/components/OnBoarding/steps/DefineStatuses/DefineStatusesNav.d.ts.map +0 -1
- package/dist/components/OnBoarding/steps/DefineStatuses/DefineStatusesNav.js +0 -42
- package/dist/components/OnBoarding/steps/DefineStatuses/StatusBadge.d.ts +0 -9
- package/dist/components/OnBoarding/steps/DefineStatuses/StatusBadge.d.ts.map +0 -1
- package/dist/components/OnBoarding/steps/DefineStatuses/StatusBadge.js +0 -22
- package/dist/components/OnBoarding/steps/DefineStatuses/StatusesListBoard.d.ts +0 -3
- package/dist/components/OnBoarding/steps/DefineStatuses/StatusesListBoard.d.ts.map +0 -1
- package/dist/components/OnBoarding/steps/DefineStatuses/StatusesListBoard.js +0 -217
- package/dist/components/OnBoarding/steps/DifferentLayouts/DifferentLayoutsBoard.d.ts +0 -3
- package/dist/components/OnBoarding/steps/DifferentLayouts/DifferentLayoutsBoard.d.ts.map +0 -1
- package/dist/components/OnBoarding/steps/DifferentLayouts/DifferentLayoutsBoard.js +0 -16
- package/dist/components/OnBoarding/steps/DifferentLayouts/DifferentLayoutsNav.d.ts +0 -3
- package/dist/components/OnBoarding/steps/DifferentLayouts/DifferentLayoutsNav.d.ts.map +0 -1
- package/dist/components/OnBoarding/steps/DifferentLayouts/DifferentLayoutsNav.js +0 -56
- package/dist/components/OnBoarding/steps/DifferentLayouts/KanbanLayout.d.ts +0 -3
- package/dist/components/OnBoarding/steps/DifferentLayouts/KanbanLayout.d.ts.map +0 -1
- package/dist/components/OnBoarding/steps/DifferentLayouts/KanbanLayout.js +0 -272
- package/dist/components/OnBoarding/steps/DifferentLayouts/styles.module.css.js +0 -9
- package/dist/components/OnBoarding/steps/InviteUsers/BoardModal.d.ts +0 -3
- package/dist/components/OnBoarding/steps/InviteUsers/BoardModal.d.ts.map +0 -1
- package/dist/components/OnBoarding/steps/InviteUsers/BoardModal.js +0 -86
- package/dist/components/OnBoarding/steps/InviteUsers/InviteUsers.d.ts +0 -3
- package/dist/components/OnBoarding/steps/InviteUsers/InviteUsers.d.ts.map +0 -1
- package/dist/components/OnBoarding/steps/InviteUsers/InviteUsers.js +0 -26
- package/dist/components/OnBoarding/steps/SelectCategory/CategorySelect.d.ts +0 -9
- package/dist/components/OnBoarding/steps/SelectCategory/CategorySelect.d.ts.map +0 -1
- package/dist/components/OnBoarding/steps/SelectCategory/CategorySelect.js +0 -61
- package/dist/components/OnBoarding/steps/SelectCategory/SelectCategoryNav.d.ts +0 -3
- package/dist/components/OnBoarding/steps/SelectCategory/SelectCategoryNav.d.ts.map +0 -1
- package/dist/components/OnBoarding/steps/SelectCategory/SelectCategoryNav.js +0 -42
- package/dist/components/OnBoarding/steps/StartedStep.d.ts +0 -3
- package/dist/components/OnBoarding/steps/StartedStep.d.ts.map +0 -1
- package/dist/components/OnBoarding/steps/StartedStep.js +0 -71
- package/dist/components/OnBoarding/steps/Wrapper.d.ts +0 -15
- package/dist/components/OnBoarding/steps/Wrapper.d.ts.map +0 -1
- package/dist/components/OnBoarding/steps/Wrapper.js +0 -49
- package/dist/components/OnBoarding/steps/styles.module.css.js +0 -17
- package/dist/components/OnBoarding/styles.module.css.js +0 -15
- package/dist/store/onboarding.d.ts +0 -30
- package/dist/store/onboarding.d.ts.map +0 -1
- package/dist/store/onboarding.js +0 -53
package/dist/index.js
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { AnimatedFigurePage as r } from "./components/AnimatedFigurePage/AnimatedFigurePage.js";
|
|
2
2
|
import { SettingsSection as a } from "./components/SettingsSection/index.js";
|
|
3
3
|
import { SocialLinkRow as p } from "./components/SocialLinkRow/index.js";
|
|
4
|
-
import { TimezonePicker as
|
|
4
|
+
import { TimezonePicker as i } from "./components/TimezonePicker/index.js";
|
|
5
5
|
import { AliasTextInput as n } from "./components/AliasTextInput/AliasTextInput.js";
|
|
6
6
|
import { NoData as x, illustrationMap as u } from "./components/NoData/NoData.js";
|
|
7
7
|
import { FilePickerUpload as d } from "./components/FilePicker/FilePickerUpload.js";
|
|
8
8
|
import { EmojiPicker as S } from "./components/EmojiPicker/EmojiPicker.js";
|
|
9
9
|
import { EmojiPanel as T } from "./components/EmojiPicker/EmojiPanel.js";
|
|
10
|
-
import { AppContainer as
|
|
10
|
+
import { AppContainer as E } from "./components/AppContainer/AppContainer.js";
|
|
11
11
|
import { MeetWidgetProvider as M, useMeetWidget as D } from "./components/AppContainer/MeetWidgetContext.js";
|
|
12
12
|
import { CustomKBD as A } from "./components/CustomKBD/index.js";
|
|
13
13
|
import { openSubmitModal as R } from "./components/SubmitModal/index.js";
|
|
14
14
|
import { UserAvatar as U } from "./components/UserAvatar/index.js";
|
|
15
|
-
import { GroupAvatar as
|
|
16
|
-
import { ShakaVideoPlayer as
|
|
15
|
+
import { GroupAvatar as N } from "./components/GroupAvatar/index.js";
|
|
16
|
+
import { ShakaVideoPlayer as _ } from "./components/AttachmentsGalleryModal/components/ShakePlayer/ShakaPlayer.js";
|
|
17
17
|
import { ActiveWorkspace as O, WorkspaceMenu as w } from "./components/WorkspaceMenu/WorkspaceMenu.js";
|
|
18
18
|
import { WorkspaceAvatar as B } from "./components/WorkspaceAvatar/WorkspaceAvatar.js";
|
|
19
19
|
import { NavbarResizer as H } from "./components/NavbarResizer/NavbarResizer.js";
|
|
@@ -24,508 +24,514 @@ import { NotFound as Q } from "./components/NotFound/NoFound.js";
|
|
|
24
24
|
import { ErrorAlert as Y } from "./components/ErrorAlert/index.js";
|
|
25
25
|
import { IconEntity as $, IconType as ee, ProjectIcon as oe, renderIcon as re } from "./components/ProjectIcon/ProjectIcon.js";
|
|
26
26
|
import { ColorCircle as ae, ColorPicker as me } from "./components/ColorPicker/ColorPicker.js";
|
|
27
|
-
import { ColorPickerList as
|
|
27
|
+
import { ColorPickerList as se } from "./components/ColorPicker/ColorPickerList.js";
|
|
28
28
|
import { ColorPickerToolbar as le } from "./components/ColorPicker/ColorPickerToolbar.js";
|
|
29
29
|
import { HighlightSwatch as fe, TextColorIcon as xe } from "./components/ColorPicker/icons.js";
|
|
30
|
-
import { isDefaultColor as ce, normalizeColorItem as de } from "./components/ColorPicker/types.js";
|
|
31
|
-
import { useRecentColors as
|
|
32
|
-
import { NewColorPicker as
|
|
30
|
+
import { isDefaultColor as ce, normalizeColorItem as de, resolveColorLabel as ge } from "./components/ColorPicker/types.js";
|
|
31
|
+
import { useRecentColors as Ce } from "./components/ColorPicker/useRecentColors.js";
|
|
32
|
+
import { NewColorPicker as Ie } from "./components/NewColorPicker/index.js";
|
|
33
33
|
import { ColorPickerPopover as Fe } from "./components/ColorPicker/ColorPickerPopover.js";
|
|
34
|
-
import { AnimationWrapper as
|
|
35
|
-
import { SearchFilters as
|
|
36
|
-
import { SearchHelpModal as
|
|
34
|
+
import { AnimationWrapper as De } from "./components/AnimationWrapper/index.js";
|
|
35
|
+
import { SearchFilters as Ae } from "./components/SearchFilters/SearchFilters.js";
|
|
36
|
+
import { SearchHelpModal as Re, closeSearchHelpModal as be, openSearchHelpModal as Ue } from "./components/SearchFilters/components/SearchHelp.js";
|
|
37
37
|
import { AttachmentsGalleryModal as Ne } from "./components/AttachmentsGalleryModal/AttachmentsGalleryModal.js";
|
|
38
|
-
import { ImageModal as _e, closeImageModal as
|
|
39
|
-
import { LayersLogoCopyright as
|
|
40
|
-
import { ThemeIndicator as
|
|
41
|
-
import { AttachmentsPreview as
|
|
42
|
-
import { CommentComposer as
|
|
43
|
-
import { StorageUsageProgress as
|
|
44
|
-
import { LanguagePicker as
|
|
45
|
-
import { FrontTable as
|
|
46
|
-
import { aggregationReselect as
|
|
47
|
-
import { tableColumnDateTypes as
|
|
48
|
-
import { createTableStore as
|
|
38
|
+
import { ImageModal as _e, closeImageModal as he, openImageModal as Oe, useChangePasswordModalStore as we } from "./components/ImageModal/ImageModal.js";
|
|
39
|
+
import { LayersLogoCopyright as Be, LayersLogoIcon as Ve, Logotype as He } from "./components/Logotype.js";
|
|
40
|
+
import { ThemeIndicator as We } from "./components/ThemeIndicator/index.js";
|
|
41
|
+
import { AttachmentsPreview as je } from "./components/AttachmentsPreview/AttachmentsPreview.js";
|
|
42
|
+
import { CommentComposer as Ze } from "./components/CommentComposer/index.js";
|
|
43
|
+
import { StorageUsageProgress as Qe } from "./components/StorageUsageProgress/index.js";
|
|
44
|
+
import { LanguagePicker as Ye } from "./components/LanguagePicker/LanguagePicker.js";
|
|
45
|
+
import { FrontTable as $e } from "./components/table/FrontTable.js";
|
|
46
|
+
import { aggregationReselect as oo, columnsMapReselect as ro, columnsReselect as to, metaReselect as ao, paginationMetaReselect as mo, rowsReselect as po, searchedRowsReselect as so, selectionReselect as io, sortedRowsReselect as lo, variableReselect as no, visibleColumnsBySideReselect as fo, visibleColumnsReselect as xo, visibleRowsReselect as uo } from "./components/table/selectors.js";
|
|
47
|
+
import { tableColumnDateTypes as go, tableColumnNumberTypes as So } from "./components/table/types.js";
|
|
48
|
+
import { createTableStore as To } from "./components/table/store.js";
|
|
49
49
|
import { useTableStore as Eo } from "./components/table/hooks/useTableStore.js";
|
|
50
|
-
import { EXPAND_COLUMN_FIELD as
|
|
51
|
-
import { CommunitiesDialog as
|
|
52
|
-
import { NotPublicPanel as
|
|
50
|
+
import { EXPAND_COLUMN_FIELD as Mo, SELECT_COLUMN_FIELD as Do, TABLE_AGGREGATION_ROW_ID as Lo, TABLE_ATTRIBUTES as Ao } from "./components/table/constants.js";
|
|
51
|
+
import { CommunitiesDialog as Ro } from "./components/CommunitiesDialog/index.js";
|
|
52
|
+
import { NotPublicPanel as Uo } from "./components/NotPublicPanel/NotPublicPanel.js";
|
|
53
53
|
import { BottomDrawerWithoutHeader as No } from "./components/BottomDrawerWithoutHeader/index.js";
|
|
54
54
|
import { Copyright as _o } from "./components/Copyright/index.js";
|
|
55
|
-
import { EntityTitle as
|
|
56
|
-
import { CircleColorPicker as
|
|
57
|
-
import { TableMenu as
|
|
58
|
-
import { BouncingLogo as
|
|
59
|
-
import { activeControlReselect as
|
|
60
|
-
import { CREATE_CONDITION_FORM_ID as
|
|
61
|
-
import { DEFAULT_THEME as
|
|
62
|
-
import { openRemoveConfirmModal as
|
|
55
|
+
import { EntityTitle as Oo } from "./components/EntityTitle/EntityTitle.js";
|
|
56
|
+
import { CircleColorPicker as ko } from "./components/CircleColorPicker/CircleColorPicker.js";
|
|
57
|
+
import { TableMenu as Vo } from "./components/table/components/TableMenu.js";
|
|
58
|
+
import { BouncingLogo as zo } from "./components/BouncingLogo/BouncingLogo.js";
|
|
59
|
+
import { activeControlReselect as Go, activeStepIdReselect as jo, activeStepReselect as Xo, controlsReselect as Zo, isFormDirtyReselect as Ko, questionNumberReselect as Qo, startStepReselect as qo, stepByControlReselect as Yo, stepsReselect as Jo, themeReselect as $o } from "./components/FormViewer/store/selectors.js";
|
|
60
|
+
import { CREATE_CONDITION_FORM_ID as or, DEFAULT_END_STEP_ID as rr, DEFAULT_MAX as tr, DEFAULT_MEDIA_BRIGHTNESS as ar, DEFAULT_MEDIA_SIZE as mr, DEFAULT_MIN as pr, DEFAULT_OPTIONS_MIN as sr, DEFAULT_OPTION_MAX_LENGTH as ir, DEFAULT_START_STEP_ID as lr, EDIT_CONDITION_FORM_ID as nr, MAX_OPTIONS_COUNT as fr, getDefaultDropdownOptions as xr, getDefaultEndStep as ur, getDefaultStartStep as cr, getFirstStep as dr, getRandomId as gr } from "./components/FormViewer/helpers/steps.js";
|
|
61
|
+
import { DEFAULT_THEME as Cr } from "./components/FormViewer/constants/defaultTheme.js";
|
|
62
|
+
import { openRemoveConfirmModal as Ir } from "./components/modals/RemoveConfirmModal.js";
|
|
63
63
|
import { AppSidebarButton as Fr } from "./components/AppContainer/components/AppSidebarButton.js";
|
|
64
|
-
import { Numbers as
|
|
65
|
-
import { EntityIcon as
|
|
66
|
-
import { showErrorNotification as
|
|
67
|
-
import { isOfflineSuppressed as
|
|
68
|
-
import { showFeatureFeedback as
|
|
69
|
-
import { pickRandomEmoji as
|
|
70
|
-
import { useIsDarkTheme as
|
|
71
|
-
import { combineStatuses as
|
|
72
|
-
import { downloadCSVAsBlob as
|
|
73
|
-
import { generateLink as
|
|
74
|
-
import { appFeature as
|
|
75
|
-
import { DEFAULT_MODE as
|
|
76
|
-
import { getMimeType as
|
|
77
|
-
import { formatBytes as
|
|
78
|
-
import { filterHierarchyByTypes as
|
|
79
|
-
import { getRandomIconColor as
|
|
80
|
-
import { getFileIcons as
|
|
81
|
-
import { getFileType as
|
|
64
|
+
import { Numbers as Dr } from "./components/table/helpers/formatters.js";
|
|
65
|
+
import { EntityIcon as Ar } from "./components/EntityIcon.js";
|
|
66
|
+
import { showErrorNotification as Rr, showMessageNotification as br, showRequestNotifications as Ur, showSuccessNotification as vr, showWarningNotification as Nr, updateMessageNotification as yr } from "./helpers/showNotifications.js";
|
|
67
|
+
import { isOfflineSuppressed as hr, setOfflineSuppression as Or } from "./helpers/offlineSuppression.js";
|
|
68
|
+
import { showFeatureFeedback as kr } from "./helpers/showFeatureFeedback.js";
|
|
69
|
+
import { pickRandomEmoji as Vr } from "./helpers/pickRandomEmoji.js";
|
|
70
|
+
import { useIsDarkTheme as zr } from "./helpers/themeUtils.js";
|
|
71
|
+
import { combineStatuses as Gr } from "./helpers/combineStatuses.js";
|
|
72
|
+
import { downloadCSVAsBlob as Xr, downloadImageFromExternalUrl as Zr, downloadURL as Kr } from "./helpers/download.js";
|
|
73
|
+
import { generateLink as qr } from "./helpers/generateLink.js";
|
|
74
|
+
import { appFeature as Jr, isFeature as $r } from "./helpers/feature.js";
|
|
75
|
+
import { DEFAULT_MODE as ot, appDesktop as rt, appServer as tt, getPlatformInfo as at } from "./helpers/platform.js";
|
|
76
|
+
import { getMimeType as pt, isGalleryMediaFile as st, isMobileDevice as it, isVideoFile as lt } from "./helpers/fileUtils.js";
|
|
77
|
+
import { formatBytes as ft } from "./helpers/formatBytes.js";
|
|
78
|
+
import { filterHierarchyByTypes as ut } from "./helpers/filterHierarchyByTypes.js";
|
|
79
|
+
import { getRandomIconColor as dt } from "./helpers/getRandomIconColor.js";
|
|
80
|
+
import { getFileIcons as St } from "./helpers/getFileIcons.js";
|
|
81
|
+
import { getFileType as Tt } from "./helpers/getFileType.js";
|
|
82
82
|
import { getPartOfTheDay as Et } from "./helpers/getPartOfTheDay.js";
|
|
83
|
-
import { isAppMode as
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import { useWorkspacesOrder as
|
|
83
|
+
import { isAppMode as Mt } from "./helpers/isAppMode.js";
|
|
84
|
+
import { isNoAccessError as Lt } from "./helpers/isNoAccessError.js";
|
|
85
|
+
import { parseDate as Pt } from "./helpers/dates.js";
|
|
86
|
+
import { initHotjar as bt } from "./helpers/hotjar.js";
|
|
87
|
+
import { validateAliasFormat as vt } from "./helpers/validateAliasFormat.js";
|
|
88
|
+
import { getBrowserTimeZone as yt, getSafeFormatter as _t, getTimeZones as ht, getUtcOffset as Ot, isValidTimeZone as wt, parseInvalidTz as kt } from "./helpers/timezones.js";
|
|
89
|
+
import { useMenu as Vt } from "./hooks/useMenu.js";
|
|
90
|
+
import { usePlatform as zt } from "./hooks/usePlatform.js";
|
|
91
|
+
import { dateFnsLocales as Gt, useDateFnsLocale as jt } from "./hooks/useDateFnsLocale.js";
|
|
92
|
+
import { useFormatDistance as Zt } from "./hooks/useFormatDistance.js";
|
|
93
|
+
import { useSwipeDetect as Qt } from "./hooks/useSwipeDetect.js";
|
|
94
|
+
import { AuthErrors as Yt, useOAuthErrorParams as Jt } from "./hooks/useOAuthErrorParams.js";
|
|
95
|
+
import { useDateUtils as ea } from "./hooks/useDateUtils.js";
|
|
96
|
+
import { isNumberValue as ra, useQueryParam as ta, useRouteParam as aa } from "./hooks/useNumberQueryParam.js";
|
|
97
|
+
import { useDisableWindowScrollDuringDrag as pa } from "./hooks/useDisableWindowScroll.js";
|
|
98
|
+
import { useAsyncStatus as ia } from "./hooks/useAsyncStatus.js";
|
|
99
|
+
import { useVideoUploadGuard as na } from "./hooks/useVideoUploadGuard.js";
|
|
100
|
+
import { FEATURE_KEYS as xa, trackFeatureFeedback as ua, useDelayedFeatureFeedback as ca } from "./hooks/useFeatureFeedback.js";
|
|
101
|
+
import { useAppContainer as ga } from "./components/AppContainer/hooks/useAppContainer.js";
|
|
102
|
+
import { appContainerStore as Ca } from "./components/AppContainer/hooks/useAppContainerStore.js";
|
|
103
|
+
import { useAppContainerDataStore as Ia } from "./components/AppContainer/hooks/useAppContainerDataStore.js";
|
|
104
|
+
import { closeSearchModal as Fa, openSearchModal as Ma, useSearchModalStore as Da } from "./store/searchModal.js";
|
|
105
|
+
import { closeTrashModal as Aa, openTrashModal as Pa, useTrashModalStore as Ra } from "./store/trashModal.js";
|
|
106
|
+
import { useWorkspacesOrder as Ua } from "./store/workspacesOrder.js";
|
|
107
107
|
import { updateTimezone as Na, useLocalTimezone as ya } from "./store/timezoneStore.js";
|
|
108
|
-
import { closeUserPlansModal as
|
|
109
|
-
import { closeUserDiscordDialog as
|
|
110
|
-
import { completeFeatureStep as
|
|
111
|
-
import { orderMap as
|
|
112
|
-
import { formatStorage as
|
|
113
|
-
import { getCroppedBlob as
|
|
114
|
-
import { getPlanBadgeColor as
|
|
115
|
-
import { addQueryParam as
|
|
116
|
-
import { getFeatureRating as
|
|
117
|
-
import { brand as
|
|
118
|
-
import { getEnvConfig as
|
|
119
|
-
import { COLOR_SCHEMES as
|
|
120
|
-
import { default as
|
|
121
|
-
import { default as
|
|
122
|
-
import { default as
|
|
123
|
-
import { default as
|
|
124
|
-
import { CollapsibleContainer as
|
|
125
|
-
import { Error404 as
|
|
126
|
-
import { Error406 as
|
|
127
|
-
import { Error500 as
|
|
128
|
-
import { FeatureProgress as
|
|
129
|
-
import { FeatureProgressKey as
|
|
130
|
-
import { FilePicker as
|
|
131
|
-
import { FormContextProvider as
|
|
132
|
-
import { FormStoreProvider as
|
|
133
|
-
import { FormViewer as
|
|
134
|
-
import { GoogleDriveIcon as
|
|
135
|
-
import { ImageCropper as
|
|
136
|
-
import { IntegrationFlowAnimation as
|
|
137
|
-
import { LastEditedButton as
|
|
138
|
-
import { LayersCubeIcon as
|
|
139
|
-
import { MediaLibrary as
|
|
140
|
-
import { MediaLibraryBrowser as
|
|
141
|
-
import {
|
|
142
|
-
import {
|
|
143
|
-
import {
|
|
144
|
-
import {
|
|
145
|
-
import {
|
|
146
|
-
import {
|
|
147
|
-
import { OnboardingTourWrapper as
|
|
148
|
-
import { PinModal as
|
|
149
|
-
import { STATIC_CLASSES as
|
|
150
|
-
import { Schemes as
|
|
151
|
-
import { SortableList as
|
|
152
|
-
import { StorageEntityItem as
|
|
153
|
-
import { StorageEntityList as
|
|
154
|
-
import { TablePagination as
|
|
155
|
-
import { TableSearch as
|
|
156
|
-
import { TreeIndentContainer as
|
|
157
|
-
import { alignList as
|
|
158
|
-
import { alignRelation as
|
|
159
|
-
import {
|
|
160
|
-
import {
|
|
161
|
-
import {
|
|
162
|
-
import {
|
|
163
|
-
import {
|
|
164
|
-
import {
|
|
165
|
-
import { default as
|
|
166
|
-
import {
|
|
167
|
-
import {
|
|
168
|
-
import {
|
|
169
|
-
import {
|
|
170
|
-
import {
|
|
171
|
-
import { mergeTheme as
|
|
172
|
-
import { default as
|
|
173
|
-
import { serializeToLexicalHtml as
|
|
174
|
-
import { useActiveControl as
|
|
175
|
-
import { useActiveStep as
|
|
176
|
-
import { useCreateTable as
|
|
177
|
-
import { useCropInteraction as
|
|
178
|
-
import { useFormMobile as
|
|
179
|
-
import { useInterpolate as
|
|
180
|
-
import { useSaveRowCount as
|
|
108
|
+
import { closeUserPlansModal as ha, openUserPlansModal as Oa, useUserPlansModalStore as wa } from "./store/plansModal.js";
|
|
109
|
+
import { closeUserDiscordDialog as Ba, openUserDiscordDialog as Va, useDiscordDialogStore as Ha } from "./store/discordDialogStore.js";
|
|
110
|
+
import { completeFeatureStep as Wa, finishFeatureFlow as Ga, getFeatureCompletedSteps as ja, isFeatureDone as Xa, resetFeatureFlow as Za, setActiveFeatureTour as Ka, setFeatureProgressUserId as Qa, useFeatureProgressStore as qa } from "./store/featureProgress.js";
|
|
111
|
+
import { orderMap as Ja, storageCategoryColors as $a } from "./types/storageCategories.js";
|
|
112
|
+
import { formatStorage as om, formatStoragePercent as rm, resolveStorageLimit as tm } from "./utils/formatStorage.js";
|
|
113
|
+
import { getCroppedBlob as mm } from "./utils/getCroppedBlob.js";
|
|
114
|
+
import { getPlanBadgeColor as sm } from "./utils/getPlanBadgeColor.js";
|
|
115
|
+
import { addQueryParam as lm, removeQueryParam as nm } from "./utils/queryParams.js";
|
|
116
|
+
import { getFeatureRating as xm, getVisitData as um, isFeatureRated as cm, setFeatureRating as dm, setVisitData as gm } from "./lib/layersVisitData.js";
|
|
117
|
+
import { brand as Cm, brandI18nVariables as Tm } from "./config/brand.js";
|
|
118
|
+
import { getEnvConfig as Em, getEnvValue as Fm, getMaxUploadSize as Mm, getOfficeUrl as Dm, isLivekitEnabled as Lm, isOfficeEnabled as Am, joinBaseUrlPath as Pm, normalizeBaseUrl as Rm, normalizeUrl as bm, parseSizeToBytes as Um, resolveNonBlankString as vm } from "./config/envConfig.js";
|
|
119
|
+
import { COLOR_SCHEMES as ym, DEFAULT_COLOR_SCHEME as _m, DEFAULT_FONT_FAMILY as hm, DEFAULT_VALUES as Om, isValidColorScheme as wm } from "./constants.js";
|
|
120
|
+
import { default as Bm } from "./assets/enitityIcons/flow.svg.js";
|
|
121
|
+
import { default as Hm } from "./assets/enitityIcons/form.svg.js";
|
|
122
|
+
import { default as Wm } from "./assets/enitityIcons/page.svg.js";
|
|
123
|
+
import { default as jm } from "./assets/enitityIcons/sprint.svg.js";
|
|
124
|
+
import { CollapsibleContainer as Zm } from "./components/CollapsibleContainer/CollapsibleContainer.js";
|
|
125
|
+
import { Error404 as Qm } from "./components/ErrorPage/components/Error404.js";
|
|
126
|
+
import { Error406 as Ym } from "./components/ErrorPage/components/Error406.js";
|
|
127
|
+
import { Error500 as $m } from "./components/ErrorPage/components/Error500.js";
|
|
128
|
+
import { FeatureProgress as op } from "./components/FeatureProgress/FeatureProgress.js";
|
|
129
|
+
import { FeatureProgressKey as tp } from "./components/FeatureProgress/constants.js";
|
|
130
|
+
import { FilePicker as mp } from "./components/FilePicker/FilePicker.js";
|
|
131
|
+
import { FormContextProvider as sp, StepsContext as ip, useSteps as lp } from "./components/FormViewer/hooks/useCreateFormContext.js";
|
|
132
|
+
import { FormStoreProvider as fp, createFormStore as xp, useFormViewerStore as up } from "./components/FormViewer/store/formStore.js";
|
|
133
|
+
import { FormViewer as dp } from "./components/FormViewer/FormViewer.js";
|
|
134
|
+
import { GoogleDriveIcon as Sp } from "./components/IntegrationFlowAnimation/icons/GoogleDriveIcon.js";
|
|
135
|
+
import { ImageCropper as Tp } from "./components/ImageCropper/ImageCropper.js";
|
|
136
|
+
import { IntegrationFlowAnimation as Ep } from "./components/IntegrationFlowAnimation/IntegrationFlowAnimation.js";
|
|
137
|
+
import { LastEditedButton as Mp } from "./components/LastEditedButton/LastEditedButton.js";
|
|
138
|
+
import { LayersCubeIcon as Lp } from "./components/IntegrationFlowAnimation/icons/LayersCubeIcon.js";
|
|
139
|
+
import { MediaLibrary as Pp } from "./components/MediaLibrary/MediaLibrary.js";
|
|
140
|
+
import { MediaLibraryBrowser as bp } from "./components/MediaLibrary/MediaLibraryBrowser.js";
|
|
141
|
+
import { MusicPlayerBar as vp } from "./components/MusicPlayerBar/MusicPlayerBar.js";
|
|
142
|
+
import { NavMenu as yp } from "./components/NavMenu/NavMenu.js";
|
|
143
|
+
import { NavMenuItem as hp, NavMenuLoadMore as Op } from "./components/NavMenu/components/NavMenuItem.js";
|
|
144
|
+
import { NavMenuLabel as kp } from "./components/NavMenu/components/NavMenuLabel.js";
|
|
145
|
+
import { NavMenuProvider as Vp, createNavMenuStore as Hp, useNavMenuStore as zp } from "./components/NavMenu/store.js";
|
|
146
|
+
import { NotionIcon as Gp } from "./components/IntegrationFlowAnimation/icons/NotionIcon.js";
|
|
147
|
+
import { OnboardingTourWrapper as Xp } from "./components/OnboardingTour/OnboardingTourWrapper.js";
|
|
148
|
+
import { PinModal as Kp } from "./components/PinModal/PinModal.js";
|
|
149
|
+
import { STATIC_CLASSES as qp, combineClasses as Yp, getPageNumberClass as Jp } from "./components/FormViewer/helpers/staticClasses.js";
|
|
150
|
+
import { Schemes as es } from "./components/FormViewer/types/schemes.js";
|
|
151
|
+
import { SortableList as rs } from "./components/SortableList/SortableList.js";
|
|
152
|
+
import { StorageEntityItem as as } from "./components/StorageUsageEntityList/StorageEntityItem.js";
|
|
153
|
+
import { StorageEntityList as ps } from "./components/StorageUsageEntityList/StorageUsageEntityList.js";
|
|
154
|
+
import { TablePagination as is } from "./components/table/components/TablePagination.js";
|
|
155
|
+
import { TableSearch as ns } from "./components/table/components/TableSearch.js";
|
|
156
|
+
import { TreeIndentContainer as xs, TreeIndentItem as us } from "./components/TreeIndent/TreeIndent.js";
|
|
157
|
+
import { alignList as ds, conditionOperatorsList as gs, isLayout as Ss, isSize as Cs, isSlideAnimation as Ts, layoutList as Is, mediaContentLayoutList as Es, mediaFullLayoutList as Fs, mediaLayoutList as Ms, sizeList as Ds, slideAnimationList as Ls } from "./components/FormViewer/types/form.js";
|
|
158
|
+
import { alignRelation as Ps } from "./components/FormViewer/helpers/themeUtils.js";
|
|
159
|
+
import { clearSavedStep as bs, getSavedStepIndex as Us, isOnboardingCompleted as vs, resetOnboarding as Ns, saveStepIndex as ys, setOnboardingUserId as _s, useOnboardingTour as hs } from "./components/OnboardingTour/useOnboardingTour.js";
|
|
160
|
+
import { closePinModal as ws, openPinModal as ks, usePinModalStore as Bs } from "./components/PinModal/slice.js";
|
|
161
|
+
import { controlsDataMap as Hs } from "./components/FormViewer/helpers/controls.js";
|
|
162
|
+
import { coverCollections as Ws } from "./components/FilePicker/coverCollections.js";
|
|
163
|
+
import { createFormStoreApi as js } from "./components/FormViewer/store/formStoreApi.js";
|
|
164
|
+
import { cropImage as Zs } from "./components/ImageCropper/cropUtils.js";
|
|
165
|
+
import { default as Qs } from "./lang/locales/ui_en.json.js";
|
|
166
|
+
import { default as Ys } from "./lang/locales/ui_es.json.js";
|
|
167
|
+
import { escapeHtml as $s, getVideoEmbedUrl as ei, isVideoPlatformUrl as oi, parseEmbedUrl as ri, parseVideoUrl as ti } from "./lib/contentImport/utils.js";
|
|
168
|
+
import { filterPinnedColumns as mi, getAggregateValue as pi, getAggregationColumns as si, getColumnId as ii, getColumnsProps as li, getCurrencyColumn as ni, getDateColumn as fi, getExpandingColumn as xi, getHeaderStyles as ui, getNumberColumn as ci, getPercentColumn as di, getRatioColumn as gi, getSelectionColumn as Si, isTechnicalColumn as Ci, mergeColumn as Ti } from "./components/table/helpers/columns.js";
|
|
169
|
+
import { getNextStep as Ei, operatorsRelation as Fi } from "./components/FormViewer/helpers/conditions.js";
|
|
170
|
+
import { getTextValidation as Di, isImageUrl as Li, isValidEmail as Ai, isValidUrl as Pi, useValidation as Ri } from "./components/FormViewer/helpers/validation.js";
|
|
171
|
+
import { mergeTheme as Ui, sortSteps as vi } from "./components/FormViewer/helpers/helpers.js";
|
|
172
|
+
import { default as yi } from "./lang/locales/ui_ru.json.js";
|
|
173
|
+
import { serializeToLexicalHtml as hi } from "./lib/contentImport/lexicalSerializer.js";
|
|
174
|
+
import { useActiveControl as wi } from "./components/FormViewer/hooks/useActiveControl.js";
|
|
175
|
+
import { useActiveStep as Bi } from "./components/FormViewer/hooks/useActiveStep.js";
|
|
176
|
+
import { useCreateTable as Hi } from "./components/table/hooks/useCreateTable.js";
|
|
177
|
+
import { useCropInteraction as Wi } from "./components/ImageCropper/useCropInteraction.js";
|
|
178
|
+
import { useFormMobile as ji } from "./components/FormViewer/hooks/useFormMobile.js";
|
|
179
|
+
import { useInterpolate as Zi, useInterpolateText as Ki } from "./components/FormViewer/hooks/useInterpolateText.js";
|
|
180
|
+
import { useSaveRowCount as qi } from "./components/table/hooks/useSaveRowCount.js";
|
|
181
181
|
export {
|
|
182
182
|
O as ActiveWorkspace,
|
|
183
183
|
Z as AlertsBlock,
|
|
184
184
|
n as AliasTextInput,
|
|
185
185
|
r as AnimatedFigurePage,
|
|
186
|
-
|
|
187
|
-
|
|
186
|
+
De as AnimationWrapper,
|
|
187
|
+
E as AppContainer,
|
|
188
188
|
Fr as AppSidebarButton,
|
|
189
189
|
Ne as AttachmentsGalleryModal,
|
|
190
|
-
|
|
191
|
-
|
|
190
|
+
je as AttachmentsPreview,
|
|
191
|
+
Yt as AuthErrors,
|
|
192
192
|
No as BottomDrawerWithoutHeader,
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
193
|
+
zo as BouncingLogo,
|
|
194
|
+
ym as COLOR_SCHEMES,
|
|
195
|
+
or as CREATE_CONDITION_FORM_ID,
|
|
196
|
+
ko as CircleColorPicker,
|
|
197
|
+
Zm as CollapsibleContainer,
|
|
198
198
|
ae as ColorCircle,
|
|
199
199
|
me as ColorPicker,
|
|
200
|
-
|
|
200
|
+
se as ColorPickerList,
|
|
201
201
|
Fe as ColorPickerPopover,
|
|
202
202
|
le as ColorPickerToolbar,
|
|
203
|
-
|
|
204
|
-
|
|
203
|
+
Ze as CommentComposer,
|
|
204
|
+
Ro as CommunitiesDialog,
|
|
205
205
|
_o as Copyright,
|
|
206
206
|
A as CustomKBD,
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
207
|
+
_m as DEFAULT_COLOR_SCHEME,
|
|
208
|
+
rr as DEFAULT_END_STEP_ID,
|
|
209
|
+
hm as DEFAULT_FONT_FAMILY,
|
|
210
|
+
tr as DEFAULT_MAX,
|
|
211
|
+
ar as DEFAULT_MEDIA_BRIGHTNESS,
|
|
212
|
+
mr as DEFAULT_MEDIA_SIZE,
|
|
213
|
+
pr as DEFAULT_MIN,
|
|
214
|
+
ot as DEFAULT_MODE,
|
|
215
|
+
sr as DEFAULT_OPTIONS_MIN,
|
|
216
216
|
ir as DEFAULT_OPTION_MAX_LENGTH,
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
217
|
+
lr as DEFAULT_START_STEP_ID,
|
|
218
|
+
Cr as DEFAULT_THEME,
|
|
219
|
+
Om as DEFAULT_VALUES,
|
|
220
|
+
nr as EDIT_CONDITION_FORM_ID,
|
|
221
|
+
Mo as EXPAND_COLUMN_FIELD,
|
|
222
222
|
T as EmojiPanel,
|
|
223
223
|
S as EmojiPicker,
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
224
|
+
Ar as EntityIcon,
|
|
225
|
+
Oo as EntityTitle,
|
|
226
|
+
Qm as Error404,
|
|
227
|
+
Ym as Error406,
|
|
228
|
+
$m as Error500,
|
|
229
229
|
Y as ErrorAlert,
|
|
230
230
|
j as ErrorPage,
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
231
|
+
xa as FEATURE_KEYS,
|
|
232
|
+
op as FeatureProgress,
|
|
233
|
+
tp as FeatureProgressKey,
|
|
234
|
+
mp as FilePicker,
|
|
235
235
|
d as FilePickerUpload,
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
236
|
+
Bm as FlowIcon,
|
|
237
|
+
sp as FormContextProvider,
|
|
238
|
+
Hm as FormIcon,
|
|
239
|
+
fp as FormStoreProvider,
|
|
240
|
+
dp as FormViewer,
|
|
241
|
+
$e as FrontTable,
|
|
242
|
+
Sp as GoogleDriveIcon,
|
|
243
|
+
N as GroupAvatar,
|
|
244
244
|
fe as HighlightSwatch,
|
|
245
245
|
$ as IconEntity,
|
|
246
246
|
ee as IconType,
|
|
247
|
-
|
|
247
|
+
Tp as ImageCropper,
|
|
248
248
|
_e as ImageModal,
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
249
|
+
Ep as IntegrationFlowAnimation,
|
|
250
|
+
Ye as LanguagePicker,
|
|
251
|
+
Mp as LastEditedButton,
|
|
252
|
+
Lp as LayersCubeIcon,
|
|
253
|
+
Be as LayersLogoCopyright,
|
|
254
|
+
Ve as LayersLogoIcon,
|
|
255
|
+
He as Logotype,
|
|
256
|
+
fr as MAX_OPTIONS_COUNT,
|
|
257
|
+
Pp as MediaLibrary,
|
|
258
|
+
bp as MediaLibraryBrowser,
|
|
259
259
|
M as MeetWidgetProvider,
|
|
260
260
|
W as MenuUserDropdown,
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
Op as
|
|
261
|
+
vp as MusicPlayerBar,
|
|
262
|
+
yp as NavMenu,
|
|
263
|
+
hp as NavMenuItem,
|
|
264
|
+
kp as NavMenuLabel,
|
|
265
|
+
Op as NavMenuLoadMore,
|
|
266
|
+
Vp as NavMenuProvider,
|
|
266
267
|
H as NavbarResizer,
|
|
267
|
-
|
|
268
|
+
Ie as NewColorPicker,
|
|
268
269
|
x as NoData,
|
|
269
270
|
Q as NotFound,
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
Xp as PinModal,
|
|
271
|
+
Uo as NotPublicPanel,
|
|
272
|
+
Gp as NotionIcon,
|
|
273
|
+
Dr as Numbers,
|
|
274
|
+
Xp as OnboardingTourWrapper,
|
|
275
|
+
Wm as PageIcon,
|
|
276
|
+
Kp as PinModal,
|
|
277
277
|
oe as ProjectIcon,
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
278
|
+
Do as SELECT_COLUMN_FIELD,
|
|
279
|
+
qp as STATIC_CLASSES,
|
|
280
|
+
es as Schemes,
|
|
281
|
+
Ae as SearchFilters,
|
|
282
|
+
Re as SearchHelpModal,
|
|
283
283
|
a as SettingsSection,
|
|
284
|
-
|
|
284
|
+
_ as ShakaVideoPlayer,
|
|
285
285
|
p as SocialLinkRow,
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
286
|
+
rs as SortableList,
|
|
287
|
+
jm as SprintIcon,
|
|
288
|
+
ip as StepsContext,
|
|
289
|
+
as as StorageEntityItem,
|
|
290
|
+
ps as StorageEntityList,
|
|
291
|
+
Qe as StorageUsageProgress,
|
|
292
|
+
Lo as TABLE_AGGREGATION_ROW_ID,
|
|
293
|
+
Ao as TABLE_ATTRIBUTES,
|
|
294
|
+
Vo as TableMenu,
|
|
295
|
+
is as TablePagination,
|
|
296
|
+
ns as TableSearch,
|
|
297
297
|
xe as TextColorIcon,
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
298
|
+
We as ThemeIndicator,
|
|
299
|
+
i as TimezonePicker,
|
|
300
|
+
xs as TreeIndentContainer,
|
|
301
|
+
us as TreeIndentItem,
|
|
302
302
|
U as UserAvatar,
|
|
303
303
|
B as WorkspaceAvatar,
|
|
304
304
|
w as WorkspaceMenu,
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
ro as
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
Xr as
|
|
342
|
-
Zr as
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
xr as
|
|
363
|
-
ur as
|
|
364
|
-
|
|
365
|
-
Em as
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
305
|
+
Go as activeControlReselect,
|
|
306
|
+
jo as activeStepIdReselect,
|
|
307
|
+
Xo as activeStepReselect,
|
|
308
|
+
lm as addQueryParam,
|
|
309
|
+
oo as aggregationReselect,
|
|
310
|
+
ds as alignList,
|
|
311
|
+
Ps as alignRelation,
|
|
312
|
+
Ca as appContainerStore,
|
|
313
|
+
rt as appDesktop,
|
|
314
|
+
Jr as appFeature,
|
|
315
|
+
tt as appServer,
|
|
316
|
+
Cm as brand,
|
|
317
|
+
Tm as brandI18nVariables,
|
|
318
|
+
bs as clearSavedStep,
|
|
319
|
+
he as closeImageModal,
|
|
320
|
+
ws as closePinModal,
|
|
321
|
+
be as closeSearchHelpModal,
|
|
322
|
+
Fa as closeSearchModal,
|
|
323
|
+
Aa as closeTrashModal,
|
|
324
|
+
Ba as closeUserDiscordDialog,
|
|
325
|
+
ha as closeUserPlansModal,
|
|
326
|
+
ro as columnsMapReselect,
|
|
327
|
+
to as columnsReselect,
|
|
328
|
+
Yp as combineClasses,
|
|
329
|
+
Gr as combineStatuses,
|
|
330
|
+
Wa as completeFeatureStep,
|
|
331
|
+
gs as conditionOperatorsList,
|
|
332
|
+
Hs as controlsDataMap,
|
|
333
|
+
Zo as controlsReselect,
|
|
334
|
+
Ws as coverCollections,
|
|
335
|
+
xp as createFormStore,
|
|
336
|
+
js as createFormStoreApi,
|
|
337
|
+
Hp as createNavMenuStore,
|
|
338
|
+
To as createTableStore,
|
|
339
|
+
Zs as cropImage,
|
|
340
|
+
Gt as dateFnsLocales,
|
|
341
|
+
Xr as downloadCSVAsBlob,
|
|
342
|
+
Zr as downloadImageFromExternalUrl,
|
|
343
|
+
Kr as downloadURL,
|
|
344
|
+
Qs as enUI,
|
|
345
|
+
Ys as esUI,
|
|
346
|
+
$s as escapeHtml,
|
|
347
|
+
ut as filterHierarchyByTypes,
|
|
348
|
+
mi as filterPinnedColumns,
|
|
349
|
+
Ga as finishFeatureFlow,
|
|
350
|
+
ft as formatBytes,
|
|
351
|
+
om as formatStorage,
|
|
352
|
+
rm as formatStoragePercent,
|
|
353
|
+
qr as generateLink,
|
|
354
|
+
pi as getAggregateValue,
|
|
355
|
+
si as getAggregationColumns,
|
|
356
|
+
yt as getBrowserTimeZone,
|
|
357
|
+
ii as getColumnId,
|
|
358
|
+
li as getColumnsProps,
|
|
359
|
+
mm as getCroppedBlob,
|
|
360
|
+
ni as getCurrencyColumn,
|
|
361
|
+
fi as getDateColumn,
|
|
362
|
+
xr as getDefaultDropdownOptions,
|
|
363
|
+
ur as getDefaultEndStep,
|
|
364
|
+
cr as getDefaultStartStep,
|
|
365
|
+
Em as getEnvConfig,
|
|
366
|
+
Fm as getEnvValue,
|
|
367
|
+
xi as getExpandingColumn,
|
|
368
|
+
ja as getFeatureCompletedSteps,
|
|
369
|
+
xm as getFeatureRating,
|
|
370
|
+
St as getFileIcons,
|
|
371
|
+
Tt as getFileType,
|
|
372
|
+
dr as getFirstStep,
|
|
373
|
+
ui as getHeaderStyles,
|
|
374
|
+
Mm as getMaxUploadSize,
|
|
375
|
+
pt as getMimeType,
|
|
376
|
+
Ei as getNextStep,
|
|
377
|
+
ci as getNumberColumn,
|
|
378
|
+
Dm as getOfficeUrl,
|
|
379
|
+
Jp as getPageNumberClass,
|
|
379
380
|
Et as getPartOfTheDay,
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
381
|
+
di as getPercentColumn,
|
|
382
|
+
sm as getPlanBadgeColor,
|
|
383
|
+
at as getPlatformInfo,
|
|
384
|
+
dt as getRandomIconColor,
|
|
385
|
+
gr as getRandomId,
|
|
386
|
+
gi as getRatioColumn,
|
|
387
|
+
_t as getSafeFormatter,
|
|
388
|
+
Us as getSavedStepIndex,
|
|
389
|
+
Si as getSelectionColumn,
|
|
390
|
+
Di as getTextValidation,
|
|
391
|
+
ht as getTimeZones,
|
|
392
|
+
Ot as getUtcOffset,
|
|
393
|
+
ei as getVideoEmbedUrl,
|
|
394
|
+
um as getVisitData,
|
|
393
395
|
u as illustrationMap,
|
|
394
|
-
|
|
395
|
-
|
|
396
|
+
bt as initHotjar,
|
|
397
|
+
Mt as isAppMode,
|
|
396
398
|
ce as isDefaultColor,
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
399
|
+
$r as isFeature,
|
|
400
|
+
Xa as isFeatureDone,
|
|
401
|
+
cm as isFeatureRated,
|
|
402
|
+
Ko as isFormDirtyReselect,
|
|
403
|
+
st as isGalleryMediaFile,
|
|
404
|
+
Li as isImageUrl,
|
|
405
|
+
Ss as isLayout,
|
|
406
|
+
Lm as isLivekitEnabled,
|
|
405
407
|
it as isMobileDevice,
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
408
|
+
Lt as isNoAccessError,
|
|
409
|
+
ra as isNumberValue,
|
|
410
|
+
Am as isOfficeEnabled,
|
|
411
|
+
hr as isOfflineSuppressed,
|
|
412
|
+
vs as isOnboardingCompleted,
|
|
413
|
+
Cs as isSize,
|
|
414
|
+
Ts as isSlideAnimation,
|
|
415
|
+
Ci as isTechnicalColumn,
|
|
416
|
+
wm as isValidColorScheme,
|
|
417
|
+
Ai as isValidEmail,
|
|
418
|
+
wt as isValidTimeZone,
|
|
419
|
+
Pi as isValidUrl,
|
|
420
|
+
lt as isVideoFile,
|
|
421
|
+
oi as isVideoPlatformUrl,
|
|
422
|
+
Pm as joinBaseUrlPath,
|
|
423
|
+
Is as layoutList,
|
|
424
|
+
Es as mediaContentLayoutList,
|
|
425
|
+
Fs as mediaFullLayoutList,
|
|
426
|
+
Ms as mediaLayoutList,
|
|
427
|
+
Ti as mergeColumn,
|
|
428
|
+
Ui as mergeTheme,
|
|
429
|
+
ao as metaReselect,
|
|
430
|
+
Rm as normalizeBaseUrl,
|
|
428
431
|
de as normalizeColorItem,
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
432
|
+
bm as normalizeUrl,
|
|
433
|
+
Oe as openImageModal,
|
|
434
|
+
ks as openPinModal,
|
|
435
|
+
Ir as openRemoveConfirmModal,
|
|
436
|
+
Ue as openSearchHelpModal,
|
|
437
|
+
Ma as openSearchModal,
|
|
435
438
|
R as openSubmitModal,
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
439
|
+
Pa as openTrashModal,
|
|
440
|
+
Va as openUserDiscordDialog,
|
|
441
|
+
Oa as openUserPlansModal,
|
|
442
|
+
Fi as operatorsRelation,
|
|
443
|
+
Ja as orderMap,
|
|
444
|
+
mo as paginationMetaReselect,
|
|
445
|
+
Pt as parseDate,
|
|
446
|
+
ri as parseEmbedUrl,
|
|
447
|
+
kt as parseInvalidTz,
|
|
448
|
+
Um as parseSizeToBytes,
|
|
449
|
+
ti as parseVideoUrl,
|
|
450
|
+
Vr as pickRandomEmoji,
|
|
451
|
+
Qo as questionNumberReselect,
|
|
452
|
+
nm as removeQueryParam,
|
|
450
453
|
re as renderIcon,
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
454
|
+
Za as resetFeatureFlow,
|
|
455
|
+
Ns as resetOnboarding,
|
|
456
|
+
ge as resolveColorLabel,
|
|
457
|
+
vm as resolveNonBlankString,
|
|
458
|
+
tm as resolveStorageLimit,
|
|
459
|
+
po as rowsReselect,
|
|
460
|
+
yi as ruUI,
|
|
461
|
+
ys as saveStepIndex,
|
|
462
|
+
so as searchedRowsReselect,
|
|
458
463
|
io as selectionReselect,
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
Rr as
|
|
467
|
-
|
|
468
|
-
|
|
464
|
+
hi as serializeToLexicalHtml,
|
|
465
|
+
Ka as setActiveFeatureTour,
|
|
466
|
+
Qa as setFeatureProgressUserId,
|
|
467
|
+
dm as setFeatureRating,
|
|
468
|
+
Or as setOfflineSuppression,
|
|
469
|
+
_s as setOnboardingUserId,
|
|
470
|
+
gm as setVisitData,
|
|
471
|
+
Rr as showErrorNotification,
|
|
472
|
+
kr as showFeatureFeedback,
|
|
473
|
+
br as showMessageNotification,
|
|
474
|
+
Ur as showRequestNotifications,
|
|
475
|
+
vr as showSuccessNotification,
|
|
469
476
|
Nr as showWarningNotification,
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
477
|
+
Ds as sizeList,
|
|
478
|
+
Ls as slideAnimationList,
|
|
479
|
+
vi as sortSteps,
|
|
480
|
+
lo as sortedRowsReselect,
|
|
481
|
+
qo as startStepReselect,
|
|
482
|
+
Yo as stepByControlReselect,
|
|
483
|
+
Jo as stepsReselect,
|
|
484
|
+
$a as storageCategoryColors,
|
|
485
|
+
go as tableColumnDateTypes,
|
|
486
|
+
So as tableColumnNumberTypes,
|
|
487
|
+
$o as themeReselect,
|
|
488
|
+
ua as trackFeatureFeedback,
|
|
482
489
|
yr as updateMessageNotification,
|
|
483
490
|
Na as updateTimezone,
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
491
|
+
wi as useActiveControl,
|
|
492
|
+
Bi as useActiveStep,
|
|
493
|
+
ga as useAppContainer,
|
|
494
|
+
Ia as useAppContainerDataStore,
|
|
495
|
+
ia as useAsyncStatus,
|
|
496
|
+
we as useChangePasswordModalStore,
|
|
497
|
+
Hi as useCreateTable,
|
|
498
|
+
Wi as useCropInteraction,
|
|
499
|
+
jt as useDateFnsLocale,
|
|
500
|
+
ea as useDateUtils,
|
|
501
|
+
ca as useDelayedFeatureFeedback,
|
|
502
|
+
pa as useDisableWindowScrollDuringDrag,
|
|
503
|
+
Ha as useDiscordDialogStore,
|
|
504
|
+
qa as useFeatureProgressStore,
|
|
505
|
+
ji as useFormMobile,
|
|
506
|
+
up as useFormViewerStore,
|
|
507
|
+
Zt as useFormatDistance,
|
|
508
|
+
Zi as useInterpolate,
|
|
509
|
+
Ki as useInterpolateText,
|
|
510
|
+
zr as useIsDarkTheme,
|
|
504
511
|
ya as useLocalTimezone,
|
|
505
512
|
D as useMeetWidget,
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
Xt as useSwipeDetect,
|
|
513
|
+
Vt as useMenu,
|
|
514
|
+
zp as useNavMenuStore,
|
|
515
|
+
Jt as useOAuthErrorParams,
|
|
516
|
+
hs as useOnboardingTour,
|
|
517
|
+
Bs as usePinModalStore,
|
|
518
|
+
zt as usePlatform,
|
|
519
|
+
ta as useQueryParam,
|
|
520
|
+
Ce as useRecentColors,
|
|
521
|
+
aa as useRouteParam,
|
|
522
|
+
qi as useSaveRowCount,
|
|
523
|
+
Da as useSearchModalStore,
|
|
524
|
+
lp as useSteps,
|
|
525
|
+
Qt as useSwipeDetect,
|
|
520
526
|
Eo as useTableStore,
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
527
|
+
Ra as useTrashModalStore,
|
|
528
|
+
wa as useUserPlansModalStore,
|
|
529
|
+
Ri as useValidation,
|
|
530
|
+
na as useVideoUploadGuard,
|
|
531
|
+
Ua as useWorkspacesOrder,
|
|
532
|
+
vt as validateAliasFormat,
|
|
533
|
+
no as variableReselect,
|
|
534
|
+
fo as visibleColumnsBySideReselect,
|
|
535
|
+
xo as visibleColumnsReselect,
|
|
536
|
+
uo as visibleRowsReselect
|
|
531
537
|
};
|