@edifice.io/react 2.5.6 → 2.5.8
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/_virtual/_commonjsHelpers.js +8 -0
- package/dist/_virtual/common.js +4 -0
- package/dist/_virtual/de_DE.js +4 -0
- package/dist/_virtual/de_DE2.js +4 -0
- package/dist/_virtual/de_DE3.js +4 -0
- package/dist/_virtual/de_DE4.js +4 -0
- package/dist/_virtual/de_DE5.js +4 -0
- package/dist/_virtual/de_DE6.js +4 -0
- package/dist/_virtual/defineProperty.js +4 -0
- package/dist/_virtual/es_ES.js +4 -0
- package/dist/_virtual/es_ES2.js +4 -0
- package/dist/_virtual/es_ES3.js +4 -0
- package/dist/_virtual/es_ES4.js +4 -0
- package/dist/_virtual/es_ES5.js +4 -0
- package/dist/_virtual/es_ES6.js +4 -0
- package/dist/_virtual/fr_FR.js +4 -0
- package/dist/_virtual/fr_FR2.js +4 -0
- package/dist/_virtual/fr_FR3.js +4 -0
- package/dist/_virtual/fr_FR4.js +4 -0
- package/dist/_virtual/fr_FR5.js +4 -0
- package/dist/_virtual/fr_FR6.js +4 -0
- package/dist/_virtual/interopRequireDefault.js +4 -0
- package/dist/_virtual/it_IT.js +4 -0
- package/dist/_virtual/it_IT2.js +4 -0
- package/dist/_virtual/it_IT3.js +4 -0
- package/dist/_virtual/it_IT4.js +4 -0
- package/dist/_virtual/it_IT5.js +4 -0
- package/dist/_virtual/it_IT6.js +4 -0
- package/dist/_virtual/localeData.js +4 -0
- package/dist/_virtual/objectSpread2.js +4 -0
- package/dist/_virtual/pt_PT.js +4 -0
- package/dist/_virtual/pt_PT2.js +4 -0
- package/dist/_virtual/pt_PT3.js +4 -0
- package/dist/_virtual/pt_PT4.js +4 -0
- package/dist/_virtual/pt_PT5.js +4 -0
- package/dist/_virtual/pt_PT6.js +4 -0
- package/dist/_virtual/toPrimitive.js +4 -0
- package/dist/_virtual/toPropertyKey.js +4 -0
- package/dist/_virtual/typeof.js +4 -0
- package/dist/_virtual/weekday.js +4 -0
- package/dist/components/AppIcon/index.d.ts +1 -0
- package/dist/components/Badge/Badge.d.ts +12 -1
- package/dist/components/Badge/Badge.js +15 -2
- package/dist/components/Combobox/Combobox.js +1 -1
- package/dist/components/Combobox/ComboboxTrigger.js +1 -1
- package/dist/components/DatePicker/DatePicker.js +35 -0
- package/dist/components/DatePicker/index.d.ts +2 -0
- package/dist/components/Divider/Divider.d.ts +38 -0
- package/dist/components/Divider/Divider.js +11 -0
- package/dist/components/Divider/index.d.ts +2 -0
- package/dist/components/Flex/Flex.js +1 -1
- package/dist/components/Menu/components/MenuButton.d.ts +2 -0
- package/dist/components/Menu/components/MenuButton.js +13 -4
- package/dist/components/SegmentedControl/SegmentedControl.d.ts +59 -0
- package/dist/components/SegmentedControl/SegmentedControl.js +24 -0
- package/dist/components/SegmentedControl/index.d.ts +2 -0
- package/dist/components/Select/Select.d.ts +6 -2
- package/dist/components/Select/Select.js +10 -4
- package/dist/components/index.d.ts +3 -0
- package/dist/editor.js +40 -36
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/useDropzone/useDropzone.d.ts +2 -2
- package/dist/hooks/useDropzone/useDropzone.js +20 -5
- package/dist/hooks/useInfiniteScroll/index.d.ts +1 -0
- package/dist/hooks/useInfiniteScroll/useInfiniteScroll.d.ts +33 -0
- package/dist/hooks/useInfiniteScroll/useInfiniteScroll.js +20 -0
- package/dist/icons.js +302 -298
- package/dist/index.js +188 -170
- package/dist/modals.js +8 -6
- package/dist/modules/comments/components/Comment.js +4 -2
- package/dist/modules/comments/components/CommentList.js +1 -1
- package/dist/modules/comments/components/DeleteModal.js +14 -8
- package/dist/modules/editor/components/Editor/Editor.js +1 -1
- package/dist/modules/editor/components/Editor/EditorPreview.d.ts +14 -0
- package/dist/modules/editor/components/Editor/EditorPreview.js +56 -0
- package/dist/modules/editor/components/Editor/EditorPreviewSkeleton.d.ts +8 -0
- package/dist/modules/editor/components/Editor/EditorPreviewSkeleton.js +24 -0
- package/dist/modules/editor/components/Editor/index.d.ts +2 -0
- package/dist/modules/editor/components/Renderer/AttachmentRenderer.js +2 -2
- package/dist/modules/editor/hooks/useMediaLibraryEditor.js +4 -3
- package/dist/modules/icons/components/IconClockAlert.d.ts +7 -0
- package/dist/modules/icons/components/IconClockAlert.js +17 -0
- package/dist/modules/icons/components/IconSubmitToValidate.d.ts +7 -0
- package/dist/modules/icons/components/IconSubmitToValidate.js +12 -0
- package/dist/modules/icons/components/index.d.ts +2 -0
- package/dist/modules/modals/ShareModal/ShareBookmark.d.ts +1 -1
- package/dist/modules/modals/ShareModal/ShareBookmark.js +6 -3
- package/dist/modules/modals/ShareModal/ShareBookmarkLine.js +4 -4
- package/dist/modules/modals/ShareModal/ShareModal.d.ts +1 -11
- package/dist/modules/modals/ShareModal/ShareModal.js +13 -105
- package/dist/modules/modals/ShareModal/ShareResources.d.ts +187 -0
- package/dist/modules/modals/ShareModal/ShareResources.js +145 -0
- package/dist/modules/modals/ShareModal/hooks/useSearch.d.ts +5 -3
- package/dist/modules/modals/ShareModal/hooks/useSearch.js +12 -16
- package/dist/modules/modals/ShareModal/hooks/useShare.d.ts +12 -5
- package/dist/modules/modals/ShareModal/hooks/useShare.js +20 -13
- package/dist/modules/modals/ShareModal/hooks/useShareBookmark.d.ts +1 -1
- package/dist/modules/modals/ShareModal/hooks/useShareBookmark.js +1 -1
- package/dist/modules/modals/ShareModal/index.d.ts +3 -1
- package/dist/modules/multimedia/MediaLibrary/index.d.ts +2 -0
- package/dist/modules/multimedia/MediaLibrary/innertabs/Upload.js +1 -1
- package/dist/modules/multimedia/index.d.ts +1 -0
- package/dist/multimedia.js +14 -8
- package/dist/node_modules/.pnpm/@babel_runtime@7.28.6/node_modules/@babel/runtime/helpers/defineProperty.js +18 -0
- package/dist/node_modules/.pnpm/@babel_runtime@7.28.6/node_modules/@babel/runtime/helpers/interopRequireDefault.js +13 -0
- package/dist/node_modules/.pnpm/@babel_runtime@7.28.6/node_modules/@babel/runtime/helpers/objectSpread2.js +31 -0
- package/dist/node_modules/.pnpm/@babel_runtime@7.28.6/node_modules/@babel/runtime/helpers/toPrimitive.js +20 -0
- package/dist/node_modules/.pnpm/@babel_runtime@7.28.6/node_modules/@babel/runtime/helpers/toPropertyKey.js +15 -0
- package/dist/node_modules/.pnpm/@babel_runtime@7.28.6/node_modules/@babel/runtime/helpers/typeof.js +16 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/lib/calendar/locale/de_DE.js +11 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/lib/calendar/locale/es_ES.js +11 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/lib/calendar/locale/fr_FR.js +11 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/lib/calendar/locale/it_IT.js +11 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/lib/calendar/locale/pt_PT.js +11 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/lib/date-picker/locale/de_DE.js +22 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/lib/date-picker/locale/es_ES.js +22 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/lib/date-picker/locale/fr_FR.js +27 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/lib/date-picker/locale/it_IT.js +20 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/lib/date-picker/locale/pt_PT.js +45 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/lib/locale/de_DE.js +145 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/lib/locale/es_ES.js +145 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/lib/locale/fr_FR.js +144 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/lib/locale/it_IT.js +156 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/lib/locale/pt_PT.js +158 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/lib/time-picker/locale/de_DE.js +10 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/lib/time-picker/locale/es_ES.js +10 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/lib/time-picker/locale/fr_FR.js +10 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/lib/time-picker/locale/it_IT.js +10 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/lib/time-picker/locale/pt_PT.js +10 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/locale/de_DE.js +8 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/locale/es_ES.js +8 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/locale/fr_FR.js +8 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/locale/it_IT.js +8 -0
- package/dist/node_modules/.pnpm/antd@5.29.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/antd/locale/pt_PT.js +8 -0
- package/dist/node_modules/.pnpm/dayjs@1.11.19/node_modules/dayjs/plugin/localeData.js +82 -0
- package/dist/node_modules/.pnpm/dayjs@1.11.19/node_modules/dayjs/plugin/weekday.js +19 -0
- package/dist/node_modules/.pnpm/rc-pagination@5.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/rc-pagination/lib/locale/de_DE.js +21 -0
- package/dist/node_modules/.pnpm/rc-pagination@5.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/rc-pagination/lib/locale/es_ES.js +21 -0
- package/dist/node_modules/.pnpm/rc-pagination@5.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/rc-pagination/lib/locale/fr_FR.js +21 -0
- package/dist/node_modules/.pnpm/rc-pagination@5.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/rc-pagination/lib/locale/it_IT.js +21 -0
- package/dist/node_modules/.pnpm/rc-pagination@5.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/rc-pagination/lib/locale/pt_PT.js +21 -0
- package/dist/node_modules/.pnpm/rc-picker@4.11.3_dayjs@1.11.19_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/rc-picker/lib/locale/common.js +14 -0
- package/dist/node_modules/.pnpm/rc-picker@4.11.3_dayjs@1.11.19_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/rc-picker/lib/locale/de_DE.js +37 -0
- package/dist/node_modules/.pnpm/rc-picker@4.11.3_dayjs@1.11.19_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/rc-picker/lib/locale/es_ES.js +37 -0
- package/dist/node_modules/.pnpm/rc-picker@4.11.3_dayjs@1.11.19_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/rc-picker/lib/locale/fr_FR.js +38 -0
- package/dist/node_modules/.pnpm/rc-picker@4.11.3_dayjs@1.11.19_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/rc-picker/lib/locale/it_IT.js +37 -0
- package/dist/node_modules/.pnpm/rc-picker@4.11.3_dayjs@1.11.19_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/rc-picker/lib/locale/pt_PT.js +39 -0
- package/dist/providers/AntThemeProvider/AntProvider.d.ts +2 -2
- package/dist/providers/AntThemeProvider/AntProvider.js +19 -2
- package/dist/style.css +1 -1
- package/dist/utilities/index.d.ts +1 -0
- package/dist/utilities/react-query/index.d.ts +1 -0
- package/dist/utilities/react-query/react-query-utils.d.ts +21 -0
- package/dist/utilities/react-query/react-query-utils.js +13 -0
- package/package.json +8 -7
package/dist/index.js
CHANGED
|
@@ -15,93 +15,100 @@ import { default as default15 } from "./components/Checkbox/Checkbox.js";
|
|
|
15
15
|
import { default as default16 } from "./components/ColorPicker/ColorPicker.js";
|
|
16
16
|
import { default as default17 } from "./components/ColorPicker/ColorPickerItem.js";
|
|
17
17
|
import { default as default18 } from "./components/Combobox/Combobox.js";
|
|
18
|
-
import { default as default19 } from "./components/
|
|
19
|
-
import { default as default20 } from "./components/
|
|
20
|
-
import { default as default21 } from "./components/
|
|
21
|
-
import { default as default22 } from "./components/
|
|
22
|
-
import { default as default23 } from "./components/
|
|
23
|
-
import { default as default24 } from "./components/
|
|
24
|
-
import { default as default25 } from "./components/
|
|
25
|
-
import { default as default26 } from "./components/
|
|
26
|
-
import { default as default27 } from "./components/
|
|
27
|
-
import { default as default28 } from "./components/
|
|
28
|
-
import { default as default29 } from "./components/
|
|
29
|
-
import { default as default30 } from "./components/
|
|
30
|
-
import { default as default31 } from "./components/
|
|
31
|
-
import { default as default32 } from "./components/
|
|
32
|
-
import { default as default33 } from "./components/
|
|
33
|
-
import { default as default34 } from "./components/
|
|
34
|
-
import { default as default35 } from "./components/
|
|
35
|
-
import { default as default36 } from "./components/
|
|
36
|
-
import { default as default37 } from "./components/
|
|
37
|
-
import { default as default38 } from "./components/
|
|
38
|
-
import { default as default39 } from "./components/
|
|
39
|
-
import { default as default40 } from "./components/
|
|
40
|
-
import { default as default41 } from "./components/
|
|
41
|
-
import { default as default42 } from "./components/
|
|
42
|
-
import { default as default43 } from "./components/
|
|
43
|
-
import { default as default44 } from "./components/
|
|
44
|
-
import { default as default45 } from "./components/
|
|
18
|
+
import { default as default19 } from "./components/DatePicker/DatePicker.js";
|
|
19
|
+
import { default as default20 } from "./components/Divider/Divider.js";
|
|
20
|
+
import { default as default21 } from "./components/Dropdown/Dropdown.js";
|
|
21
|
+
import { default as default22 } from "./components/Dropzone/Dropzone.js";
|
|
22
|
+
import { default as default23 } from "./components/EmptyScreen/EmptyScreen.js";
|
|
23
|
+
import { default as default24 } from "./components/Flex/Flex.js";
|
|
24
|
+
import { default as default25 } from "./components/Form/FormText.js";
|
|
25
|
+
import { default as default26 } from "./components/Form/FormControl.js";
|
|
26
|
+
import { default as default27 } from "./components/Heading/Heading.js";
|
|
27
|
+
import { default as default28 } from "./components/Image/Image.js";
|
|
28
|
+
import { default as default29 } from "./components/Input/Input.js";
|
|
29
|
+
import { default as default30 } from "./components/Label/Label.js";
|
|
30
|
+
import { default as default31 } from "./components/Loading/Loading.js";
|
|
31
|
+
import { default as default32 } from "./components/LoadingScreen/LoadingScreen.js";
|
|
32
|
+
import { default as default33 } from "./components/Logo/Logo.js";
|
|
33
|
+
import { default as default34 } from "./components/Modal/Modal.js";
|
|
34
|
+
import { default as default35 } from "./components/PreventPropagation/PreventPropagation.js";
|
|
35
|
+
import { default as default36 } from "./components/Radio/Radio.js";
|
|
36
|
+
import { default as default37 } from "./components/RadioCard/RadioCard.js";
|
|
37
|
+
import { default as default38 } from "./components/SearchBar/SearchBar.js";
|
|
38
|
+
import { default as default39 } from "./components/SegmentedControl/SegmentedControl.js";
|
|
39
|
+
import { default as default40 } from "./components/Select/Select.js";
|
|
40
|
+
import { default as default41 } from "./components/Skeleton/ButtonSkeleton.js";
|
|
41
|
+
import { default as default42 } from "./components/Skeleton/TextSkeleton.js";
|
|
42
|
+
import { default as default43 } from "./components/StackedGroup/StackedGroup.js";
|
|
43
|
+
import { default as default44 } from "./components/Stepper/Stepper.js";
|
|
44
|
+
import { default as default45 } from "./components/Switch/Switch.js";
|
|
45
|
+
import { default as default46 } from "./components/Table/components/Table.js";
|
|
46
|
+
import { default as default47 } from "./components/TextArea/TextArea.js";
|
|
47
|
+
import { default as default48 } from "./components/Tooltip/Tooltip.js";
|
|
45
48
|
import { DndTree } from "./components/Tree/components/DndTree.js";
|
|
46
|
-
import { default as
|
|
47
|
-
import { default as
|
|
48
|
-
import { default as
|
|
49
|
-
import { default as
|
|
50
|
-
import { default as
|
|
51
|
-
import { default as
|
|
52
|
-
import { default as
|
|
53
|
-
import { default as
|
|
54
|
-
import { default as
|
|
55
|
-
import { default as
|
|
56
|
-
import { default as
|
|
57
|
-
import { default as
|
|
58
|
-
import { default as
|
|
59
|
-
import { default as
|
|
60
|
-
import { default as
|
|
61
|
-
import { default as
|
|
62
|
-
import { default as
|
|
63
|
-
import { default as
|
|
49
|
+
import { default as default49 } from "./components/Tree/components/SortableTree.js";
|
|
50
|
+
import { default as default50 } from "./components/Tree/components/Tree.js";
|
|
51
|
+
import { default as default51 } from "./components/TreeView/TreeView.js";
|
|
52
|
+
import { default as default52 } from "./components/VisuallyHidden/VisuallyHidden.js";
|
|
53
|
+
import { default as default53 } from "./hooks/useBookmark/useBookmark.js";
|
|
54
|
+
import { default as default54 } from "./hooks/useBreakpoint/useBreakpoint.js";
|
|
55
|
+
import { default as default55 } from "./hooks/useBrowserInfo/useBrowserInfo.js";
|
|
56
|
+
import { default as default56 } from "./hooks/useCantoo/useCantoo.js";
|
|
57
|
+
import { default as default57 } from "./hooks/useClickOutside/useClickOutside.js";
|
|
58
|
+
import { default as default58 } from "./hooks/useConversation/useConversation.js";
|
|
59
|
+
import { default as default59 } from "./hooks/useDate/useDate.js";
|
|
60
|
+
import { default as default60 } from "./hooks/useDebounce/useDebounce.js";
|
|
61
|
+
import { default as default61 } from "./hooks/useDirectory/useDirectory.js";
|
|
62
|
+
import { default as default62 } from "./hooks/useDropdown/useDropdown.js";
|
|
63
|
+
import { default as default63 } from "./hooks/useDropzone/useDropzone.js";
|
|
64
|
+
import { default as default64 } from "./hooks/useEdificeIcons/useEdificeIcons.js";
|
|
65
|
+
import { default as default65 } from "./hooks/useHasWorkflow/useHasWorkflow.js";
|
|
66
|
+
import { default as default66 } from "./hooks/useHover/useHover.js";
|
|
64
67
|
import { useHttpErrorToast } from "./hooks/useHttpErrorToast/useHttpErrorToast.js";
|
|
65
|
-
import { default as
|
|
66
|
-
import { default as
|
|
67
|
-
import { default as
|
|
68
|
-
import { default as
|
|
69
|
-
import { default as
|
|
70
|
-
import { default as
|
|
71
|
-
import { default as
|
|
72
|
-
import { default as
|
|
73
|
-
import { default as
|
|
74
|
-
import { default as
|
|
75
|
-
import { default as
|
|
76
|
-
import { default as
|
|
77
|
-
import { default as
|
|
78
|
-
import { default as
|
|
79
|
-
import { default as
|
|
80
|
-
import { default as
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as
|
|
83
|
-
import {
|
|
84
|
-
import { default as
|
|
85
|
-
import { default as
|
|
86
|
-
import { default as
|
|
87
|
-
import { default as
|
|
88
|
-
import { default as
|
|
89
|
-
import { default as
|
|
90
|
-
import { default as
|
|
91
|
-
import { default as
|
|
92
|
-
import { default as
|
|
93
|
-
import { default as
|
|
94
|
-
import { default as
|
|
95
|
-
import { default as
|
|
96
|
-
import { default as
|
|
97
|
-
import { default as
|
|
98
|
-
import { default as
|
|
99
|
-
import { default as
|
|
100
|
-
import { default as
|
|
101
|
-
import { default as
|
|
102
|
-
import { default as
|
|
103
|
-
import { default as
|
|
104
|
-
import { default as
|
|
68
|
+
import { default as default67 } from "./hooks/useImage/useImage.js";
|
|
69
|
+
import { default as default68 } from "./hooks/useInfiniteScroll/useInfiniteScroll.js";
|
|
70
|
+
import { default as default69 } from "./hooks/useIsAdml/useIsAdml.js";
|
|
71
|
+
import { default as default70 } from "./hooks/useIsAdmc/useIsAdmc.js";
|
|
72
|
+
import { default as default71 } from "./hooks/useIsAdmlcOrAdmc/useIsAdmlcOrAdmc.js";
|
|
73
|
+
import { default as default72 } from "./hooks/useKeyPress/useKeyPress.js";
|
|
74
|
+
import { default as default73 } from "./hooks/useLibraryUrl/useLibraryUrl.js";
|
|
75
|
+
import { default as default74 } from "./hooks/useMediaLibrary/useMediaLibrary.js";
|
|
76
|
+
import { default as default75 } from "./hooks/useScrollToTop/useScrollToTop.js";
|
|
77
|
+
import { default as default76 } from "./hooks/useTitle/useTitle.js";
|
|
78
|
+
import { default as default77 } from "./hooks/useToast/useToast.js";
|
|
79
|
+
import { default as default78 } from "./hooks/useToggle/useToggle.js";
|
|
80
|
+
import { default as default79 } from "./hooks/useTrapFocus/useTrapFocus.js";
|
|
81
|
+
import { default as default80 } from "./hooks/useTrashedResource/useTrashedResource.js";
|
|
82
|
+
import { default as default81 } from "./hooks/useUpload/useUpload.js";
|
|
83
|
+
import { default as default82 } from "./hooks/useUploadFiles/useUploadFiles.js";
|
|
84
|
+
import { default as default83 } from "./hooks/useUser/useUser.js";
|
|
85
|
+
import { default as default84 } from "./hooks/useWorkspaceFile/useWorkspaceFile.js";
|
|
86
|
+
import { default as default85 } from "./hooks/useWorkspaceFolders/useWorkspaceFolders.js";
|
|
87
|
+
import { WORKSPACE_SHARED_FOLDER_ID, WORKSPACE_USER_FOLDER_ID, default as default86 } from "./hooks/useWorkspaceFolders/useWorkspaceFoldersTree.js";
|
|
88
|
+
import { default as default87 } from "./hooks/useWorkspaceSearch/useWorkspaceSearch.js";
|
|
89
|
+
import { default as default88 } from "./hooks/useXitiTrackPageLoad/useXitiTrackPageLoad.js";
|
|
90
|
+
import { default as default89 } from "./hooks/useZendeskGuide/useZendeskGuide.js";
|
|
91
|
+
import { default as default90 } from "./modules/modals/ConfirmModal/ConfirmModal.js";
|
|
92
|
+
import { default as default91 } from "./modules/modals/OnboardingModal/OnboardingModal.js";
|
|
93
|
+
import { default as default92 } from "./modules/modals/PublishModal/PublishModal.js";
|
|
94
|
+
import { default as default93 } from "./modules/modals/ResourceModal/apps/BlogPublic.js";
|
|
95
|
+
import { default as default94 } from "./modules/modals/ResourceModal/hooks/useUpdateMutation.js";
|
|
96
|
+
import { default as default95 } from "./modules/modals/ShareModal/apps/ShareBlog.js";
|
|
97
|
+
import { default as default96 } from "./modules/modals/ShareModal/hooks/useShareMutation.js";
|
|
98
|
+
import { default as default97 } from "./modules/modals/ShareModal/ShareModal.js";
|
|
99
|
+
import { default as default98 } from "./modules/modals/ShareModal/ShareResources.js";
|
|
100
|
+
import { default as default99 } from "./modules/multimedia/AudioRecorder/AudioRecorder.js";
|
|
101
|
+
import { default as default100 } from "./modules/multimedia/Embed/Embed.js";
|
|
102
|
+
import { default as default101 } from "./modules/multimedia/ImageEditor/components/ImageEditor.js";
|
|
103
|
+
import { default as default102 } from "./modules/multimedia/ImagePicker/ImagePicker.js";
|
|
104
|
+
import { default as default103 } from "./modules/multimedia/FileCard/FileCard.js";
|
|
105
|
+
import { default as default104 } from "./modules/multimedia/MediaLibrary/MediaLibrary.js";
|
|
106
|
+
import { default as default105 } from "./modules/multimedia/UploadFiles/UploadFiles.js";
|
|
107
|
+
import { default as default106 } from "./modules/multimedia/UploadCard/UploadCard.js";
|
|
108
|
+
import { default as default107 } from "./modules/multimedia/VideoEmbed/VideoEmbed.js";
|
|
109
|
+
import { default as default108 } from "./modules/multimedia/VideoRecorder/VideoRecorder.js";
|
|
110
|
+
import { default as default109 } from "./modules/multimedia/Workspace/Workspace.js";
|
|
111
|
+
import { default as default110 } from "./modules/multimedia/WorkspaceFolders/WorkspaceFolders.js";
|
|
105
112
|
import { AccessiblePalette, DefaultPalette } from "./components/ColorPicker/ColorPalette.js";
|
|
106
113
|
import { DropzoneContext, useDropzoneContext } from "./components/Dropzone/DropzoneContext.js";
|
|
107
114
|
import { Column, Grid } from "./components/Grid/Grid.js";
|
|
@@ -120,6 +127,7 @@ import { useCheckable } from "./hooks/useCheckable/useCheckable.js";
|
|
|
120
127
|
import { ResourceModal } from "./modules/modals/ResourceModal/ResourceModal.js";
|
|
121
128
|
import { ExternalLinker } from "./modules/multimedia/Linker/ExternalLinker/ExternalLinker.js";
|
|
122
129
|
import { InternalLinker } from "./modules/multimedia/Linker/InternalLinker/InternalLinker.js";
|
|
130
|
+
import { Upload } from "./modules/multimedia/MediaLibrary/innertabs/Upload.js";
|
|
123
131
|
import { AntProvider } from "./providers/AntThemeProvider/AntProvider.js";
|
|
124
132
|
import { EdificeClientProvider } from "./providers/EdificeClientProvider/EdificeClientProvider.js";
|
|
125
133
|
import { EdificeClientContext } from "./providers/EdificeClientProvider/EdificeClientProvider.context.js";
|
|
@@ -130,6 +138,7 @@ import { useEdificeTheme } from "./providers/EdificeThemeProvider/EdificeThemePr
|
|
|
130
138
|
import { MockedProvider } from "./providers/MockedProvider/MockedProvider.js";
|
|
131
139
|
import { checkUserRight } from "./utilities/check-user-rights/check-user-rights.js";
|
|
132
140
|
import { emptyScreenMapping } from "./utilities/emptyscreen-mapping/emptyscreen-mapping.js";
|
|
141
|
+
import { invalidateQueriesWithFirstPage } from "./utilities/react-query/react-query-utils.js";
|
|
133
142
|
import { mergeRefs, setRef } from "./utilities/refs/ref.js";
|
|
134
143
|
export {
|
|
135
144
|
AccessiblePalette,
|
|
@@ -139,91 +148,98 @@ export {
|
|
|
139
148
|
default4 as AppHeader,
|
|
140
149
|
default5 as AppIcon,
|
|
141
150
|
default6 as Attachment,
|
|
142
|
-
|
|
151
|
+
default99 as AudioRecorder,
|
|
143
152
|
default7 as Avatar,
|
|
144
153
|
default8 as AvatarGroup,
|
|
145
154
|
default9 as Badge,
|
|
146
|
-
|
|
155
|
+
default93 as BlogPublic,
|
|
147
156
|
default10 as Breadcrumb,
|
|
148
157
|
default11 as Button,
|
|
149
|
-
|
|
158
|
+
default41 as ButtonSkeleton,
|
|
150
159
|
default14 as Card,
|
|
151
160
|
default15 as Checkbox,
|
|
152
161
|
default16 as ColorPicker,
|
|
153
162
|
default17 as ColorPickerItem,
|
|
154
163
|
Column,
|
|
155
164
|
default18 as Combobox,
|
|
156
|
-
|
|
165
|
+
default90 as ConfirmModal,
|
|
166
|
+
default19 as DatePicker,
|
|
157
167
|
DefaultPalette,
|
|
168
|
+
default20 as Divider,
|
|
158
169
|
DndTree,
|
|
159
|
-
|
|
160
|
-
|
|
170
|
+
default21 as Dropdown,
|
|
171
|
+
default22 as Dropzone,
|
|
161
172
|
DropzoneContext,
|
|
162
173
|
EdificeClientContext,
|
|
163
174
|
EdificeClientProvider,
|
|
164
175
|
EdificeThemeContext,
|
|
165
176
|
EdificeThemeProvider,
|
|
166
|
-
|
|
167
|
-
|
|
177
|
+
default100 as Embed,
|
|
178
|
+
default23 as EmptyScreen,
|
|
168
179
|
ExternalLinker,
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
180
|
+
default103 as FileCard,
|
|
181
|
+
default24 as Flex,
|
|
182
|
+
default26 as FormControl,
|
|
183
|
+
default25 as FormText,
|
|
173
184
|
Grid,
|
|
174
|
-
|
|
185
|
+
default27 as Heading,
|
|
175
186
|
default12 as IconButton,
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
187
|
+
default28 as Image,
|
|
188
|
+
default101 as ImageEditor,
|
|
189
|
+
default102 as ImagePicker,
|
|
190
|
+
default29 as Input,
|
|
180
191
|
InternalLinker,
|
|
181
|
-
|
|
192
|
+
default30 as Label,
|
|
182
193
|
Layout,
|
|
183
194
|
List,
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
195
|
+
default31 as Loading,
|
|
196
|
+
default32 as LoadingScreen,
|
|
197
|
+
default33 as Logo,
|
|
198
|
+
default104 as MediaLibrary,
|
|
188
199
|
Menu,
|
|
189
200
|
MockedProvider,
|
|
190
|
-
|
|
191
|
-
|
|
201
|
+
default34 as Modal,
|
|
202
|
+
default91 as OnboardingModal,
|
|
192
203
|
Popover,
|
|
193
204
|
PopoverBody,
|
|
194
205
|
PopoverFooter,
|
|
195
206
|
PopoverHeader,
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
207
|
+
default35 as PreventPropagation,
|
|
208
|
+
default92 as PublishModal,
|
|
209
|
+
default36 as Radio,
|
|
210
|
+
default37 as RadioCard,
|
|
200
211
|
ResourceModal,
|
|
201
|
-
|
|
212
|
+
default38 as SearchBar,
|
|
202
213
|
default13 as SearchButton,
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
214
|
+
default39 as SegmentedControl,
|
|
215
|
+
default40 as Select,
|
|
216
|
+
default95 as ShareBlog,
|
|
217
|
+
default97 as ShareModal,
|
|
218
|
+
default98 as ShareResources,
|
|
219
|
+
default49 as SortableTree,
|
|
220
|
+
default43 as StackedGroup,
|
|
221
|
+
default44 as Stepper,
|
|
222
|
+
default45 as Switch,
|
|
223
|
+
default46 as Table,
|
|
211
224
|
Tabs,
|
|
212
|
-
|
|
213
|
-
|
|
225
|
+
default47 as TextArea,
|
|
226
|
+
default42 as TextSkeleton,
|
|
214
227
|
Toolbar,
|
|
215
|
-
|
|
216
|
-
|
|
228
|
+
default48 as Tooltip,
|
|
229
|
+
default50 as Tree,
|
|
217
230
|
TreeNode,
|
|
218
231
|
TreeNodeFolderWrapper,
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
232
|
+
default51 as TreeView,
|
|
233
|
+
Upload,
|
|
234
|
+
default106 as UploadCard,
|
|
235
|
+
default105 as UploadFiles,
|
|
236
|
+
default107 as VideoEmbed,
|
|
237
|
+
default108 as VideoRecorder,
|
|
238
|
+
default52 as VisuallyHidden,
|
|
223
239
|
WORKSPACE_SHARED_FOLDER_ID,
|
|
224
240
|
WORKSPACE_USER_FOLDER_ID,
|
|
225
|
-
|
|
226
|
-
|
|
241
|
+
default109 as Workspace,
|
|
242
|
+
default110 as WorkspaceFolders,
|
|
227
243
|
addNode,
|
|
228
244
|
arrayUnique,
|
|
229
245
|
buildTree,
|
|
@@ -245,56 +261,58 @@ export {
|
|
|
245
261
|
getIndicesToUpdate,
|
|
246
262
|
getProjection,
|
|
247
263
|
hasChildren,
|
|
264
|
+
invalidateQueriesWithFirstPage,
|
|
248
265
|
mergeRefs,
|
|
249
266
|
modifyNode,
|
|
250
267
|
moveNode,
|
|
251
268
|
setRef,
|
|
252
269
|
updateNode,
|
|
253
270
|
updateParentIds,
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
271
|
+
default53 as useBookmark,
|
|
272
|
+
default54 as useBreakpoint,
|
|
273
|
+
default55 as useBrowserInfo,
|
|
274
|
+
default56 as useCantoo,
|
|
258
275
|
useCheckable,
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
276
|
+
default57 as useClickOutside,
|
|
277
|
+
default58 as useConversation,
|
|
278
|
+
default59 as useDate,
|
|
279
|
+
default60 as useDebounce,
|
|
280
|
+
default61 as useDirectory,
|
|
281
|
+
default62 as useDropdown,
|
|
282
|
+
default63 as useDropzone,
|
|
266
283
|
useDropzoneContext,
|
|
267
284
|
useEdificeClient,
|
|
268
|
-
|
|
285
|
+
default64 as useEdificeIcons,
|
|
269
286
|
useEdificeTheme,
|
|
270
|
-
|
|
271
|
-
|
|
287
|
+
default65 as useHasWorkflow,
|
|
288
|
+
default66 as useHover,
|
|
272
289
|
useHttpErrorToast,
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
290
|
+
default67 as useImage,
|
|
291
|
+
default68 as useInfiniteScroll,
|
|
292
|
+
default70 as useIsAdmc,
|
|
293
|
+
default69 as useIsAdml,
|
|
294
|
+
default71 as useIsAdmlcOrAdmc,
|
|
295
|
+
default72 as useKeyPress,
|
|
296
|
+
default73 as useLibraryUrl,
|
|
297
|
+
default74 as useMediaLibrary,
|
|
298
|
+
default75 as useScrollToTop,
|
|
299
|
+
default96 as useShareMutation,
|
|
300
|
+
default76 as useTitle,
|
|
301
|
+
default77 as useToast,
|
|
302
|
+
default78 as useToggle,
|
|
303
|
+
default79 as useTrapFocus,
|
|
304
|
+
default80 as useTrashedResource,
|
|
287
305
|
useTreeSortable,
|
|
288
306
|
useTreeView,
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
307
|
+
default94 as useUpdateMutation,
|
|
308
|
+
default81 as useUpload,
|
|
309
|
+
default82 as useUploadFiles,
|
|
310
|
+
default83 as useUser,
|
|
311
|
+
default84 as useWorkspaceFile,
|
|
312
|
+
default85 as useWorkspaceFolders,
|
|
313
|
+
default86 as useWorkspaceFoldersTree,
|
|
314
|
+
default87 as useWorkspaceSearch,
|
|
315
|
+
default88 as useXitiTrackPageLoad,
|
|
316
|
+
default89 as useZendeskGuide,
|
|
299
317
|
wrapTreeNode
|
|
300
318
|
};
|
package/dist/modals.js
CHANGED
|
@@ -3,9 +3,10 @@ import { default as default3 } from "./modules/modals/OnboardingModal/Onboarding
|
|
|
3
3
|
import { default as default4 } from "./modules/modals/PublishModal/PublishModal.js";
|
|
4
4
|
import { default as default5 } from "./modules/modals/ResourceModal/apps/BlogPublic.js";
|
|
5
5
|
import { default as default6 } from "./modules/modals/ResourceModal/hooks/useUpdateMutation.js";
|
|
6
|
-
import { default as default7 } from "./modules/modals/ShareModal/
|
|
7
|
-
import { default as default8 } from "./modules/modals/ShareModal/
|
|
8
|
-
import { default as default9 } from "./modules/modals/ShareModal/
|
|
6
|
+
import { default as default7 } from "./modules/modals/ShareModal/apps/ShareBlog.js";
|
|
7
|
+
import { default as default8 } from "./modules/modals/ShareModal/hooks/useShareMutation.js";
|
|
8
|
+
import { default as default9 } from "./modules/modals/ShareModal/ShareModal.js";
|
|
9
|
+
import { default as default10 } from "./modules/modals/ShareModal/ShareResources.js";
|
|
9
10
|
import { ResourceModal } from "./modules/modals/ResourceModal/ResourceModal.js";
|
|
10
11
|
export {
|
|
11
12
|
default5 as BlogPublic,
|
|
@@ -13,8 +14,9 @@ export {
|
|
|
13
14
|
default3 as OnboardingModal,
|
|
14
15
|
default4 as PublishModal,
|
|
15
16
|
ResourceModal,
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
default7 as ShareBlog,
|
|
18
|
+
default9 as ShareModal,
|
|
19
|
+
default10 as ShareResources,
|
|
20
|
+
default8 as useShareMutation,
|
|
19
21
|
default6 as useUpdateMutation
|
|
20
22
|
};
|
|
@@ -8,9 +8,9 @@ import { BadgeProfile } from "./BadgeProfile.js";
|
|
|
8
8
|
import { CommentAvatar } from "./CommentAvatar.js";
|
|
9
9
|
import { CommentDate } from "./CommentDate.js";
|
|
10
10
|
import { CommentTitle } from "./CommentTitle.js";
|
|
11
|
-
import { TextCounter } from "./TextCounter.js";
|
|
12
11
|
import { CommentDeleted } from "./CommentDeleted.js";
|
|
13
12
|
import { CommentReplies } from "./CommentReplies.js";
|
|
13
|
+
import { TextCounter } from "./TextCounter.js";
|
|
14
14
|
import Button from "../../../components/Button/Button.js";
|
|
15
15
|
import LoadingScreen from "../../../components/LoadingScreen/LoadingScreen.js";
|
|
16
16
|
const DeleteModal = /* @__PURE__ */ lazy(() => import("./DeleteModal.js")), Comment = ({
|
|
@@ -41,6 +41,8 @@ const DeleteModal = /* @__PURE__ */ lazy(() => import("./DeleteModal.js")), Comm
|
|
|
41
41
|
handleReplyToComment
|
|
42
42
|
} = useCommentsContext(), replies = (defaultComments == null ? void 0 : defaultComments.filter((comm) => comm.replyTo === comment.id)) ?? [], hasReplies = replies.length > 0, hasAllDeletedReplies = replies.every((reply) => reply.deleted), isEditing = editCommentId === comment.id, handleChangeContent = (event) => {
|
|
43
43
|
resizeTextarea(), setValue(event.target.value);
|
|
44
|
+
}, handleDeleteComment = (id2) => {
|
|
45
|
+
onDeleteComment(id2), setIsDeleteModalOpen(!1);
|
|
44
46
|
};
|
|
45
47
|
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
46
48
|
comment.deleted && hasReplies && !hasAllDeletedReplies && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
@@ -83,7 +85,7 @@ const DeleteModal = /* @__PURE__ */ lazy(() => import("./DeleteModal.js")), Comm
|
|
|
83
85
|
] })
|
|
84
86
|
] }, id),
|
|
85
87
|
/* @__PURE__ */ jsx(CommentReplies, { parentComment: comment }),
|
|
86
|
-
/* @__PURE__ */ jsx(Suspense, { fallback: /* @__PURE__ */ jsx(LoadingScreen, { position: !1 }), children: isDeleteModalOpen && /* @__PURE__ */ jsx(DeleteModal, { isOpen: isDeleteModalOpen, onCancel: () => setIsDeleteModalOpen(!1), onSuccess: () =>
|
|
88
|
+
/* @__PURE__ */ jsx(Suspense, { fallback: /* @__PURE__ */ jsx(LoadingScreen, { position: !1 }), children: isDeleteModalOpen && /* @__PURE__ */ jsx(DeleteModal, { isOpen: isDeleteModalOpen, onCancel: () => setIsDeleteModalOpen(!1), onSuccess: () => handleDeleteComment(id) }) })
|
|
87
89
|
] })
|
|
88
90
|
] });
|
|
89
91
|
};
|
|
@@ -14,7 +14,7 @@ function CommentList() {
|
|
|
14
14
|
const {
|
|
15
15
|
authorId
|
|
16
16
|
} = comment, profile = ((_a = profiles == null ? void 0 : profiles.find((user2) => (user2 == null ? void 0 : user2.userId) === authorId)) == null ? void 0 : _a.profile) ?? "Guest";
|
|
17
|
-
return /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(Comment, { comment, profile, userId: user == null ? void 0 : user.userId }) }, comment.id);
|
|
17
|
+
return /* @__PURE__ */ jsx("div", { id: `comment-${comment.id}`, children: /* @__PURE__ */ jsx(Comment, { comment, profile, userId: user == null ? void 0 : user.userId }) }, comment.id);
|
|
18
18
|
});
|
|
19
19
|
}
|
|
20
20
|
export {
|
|
@@ -1,18 +1,24 @@
|
|
|
1
1
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
import { useTranslation } from "react-i18next";
|
|
2
3
|
import Modal from "../../../components/Modal/Modal.js";
|
|
3
4
|
import Button from "../../../components/Button/Button.js";
|
|
4
5
|
const DeleteModal = ({
|
|
5
6
|
isOpen,
|
|
6
7
|
onCancel,
|
|
7
8
|
onSuccess
|
|
8
|
-
}) =>
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
/* @__PURE__ */ jsx(
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
}) => {
|
|
10
|
+
const {
|
|
11
|
+
t
|
|
12
|
+
} = useTranslation();
|
|
13
|
+
return /* @__PURE__ */ jsxs(Modal, { size: "sm", isOpen, onModalClose: onCancel, id: "delete-comment-modal", children: [
|
|
14
|
+
/* @__PURE__ */ jsx(Modal.Header, { onModalClose: onCancel, children: t("comment.delete.modal.title") }),
|
|
15
|
+
/* @__PURE__ */ jsx(Modal.Body, { children: /* @__PURE__ */ jsx("p", { children: t("comment.delete.modal.body") }) }),
|
|
16
|
+
/* @__PURE__ */ jsxs(Modal.Footer, { children: [
|
|
17
|
+
/* @__PURE__ */ jsx(Button, { color: "tertiary", onClick: onCancel, type: "button", variant: "ghost", children: t("cancel") }),
|
|
18
|
+
/* @__PURE__ */ jsx(Button, { color: "danger", onClick: onSuccess, type: "button", variant: "filled", children: t("comment.delete.modal.delete") })
|
|
19
|
+
] })
|
|
20
|
+
] });
|
|
21
|
+
};
|
|
16
22
|
export {
|
|
17
23
|
DeleteModal,
|
|
18
24
|
DeleteModal as default
|
|
@@ -78,7 +78,7 @@ const MathsModal = /* @__PURE__ */ lazy(async () => await import("../MathsModal/
|
|
|
78
78
|
/* @__PURE__ */ jsxs("div", { className: borderClass, children: [
|
|
79
79
|
toolbar !== "none" && editable && /* @__PURE__ */ jsx(EditorToolbar, { mediaLibraryRef: mediaLibraryModalRef, toggleMathsModal, cantooEditor: contooEditor }),
|
|
80
80
|
/* @__PURE__ */ jsxs(Flex, { direction: "row", children: [
|
|
81
|
-
/* @__PURE__ */ jsx(EditorContent, { id: id ?? editorId, editor, className: contentClass, style: {
|
|
81
|
+
/* @__PURE__ */ jsx(EditorContent, { "data-testid": "editor-content", id: id ?? editorId, editor, className: contentClass, style: {
|
|
82
82
|
flex: 1
|
|
83
83
|
} }),
|
|
84
84
|
editable && contooEditor.openPositionAdaptText.right && /* @__PURE__ */ jsx(CantooAdaptTextBoxView, { openPosition: contooEditor.openPositionAdaptText })
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Editor component properties
|
|
3
|
+
*/
|
|
4
|
+
export interface EditorPreviewProps {
|
|
5
|
+
/** Rich content to render. */
|
|
6
|
+
content: string;
|
|
7
|
+
/** Display with or without a border */
|
|
8
|
+
variant?: 'outline' | 'ghost';
|
|
9
|
+
onDetailClick?: () => void;
|
|
10
|
+
onMediaClick?: () => void;
|
|
11
|
+
maxMediaDisplayed?: number;
|
|
12
|
+
}
|
|
13
|
+
declare const EditorPreview: ({ content, variant, onDetailClick, onMediaClick, maxMediaDisplayed, }: EditorPreviewProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export default EditorPreview;
|