@edifice.io/react 2.5.2-develop-b2school-actualites.20251208163449 → 2.5.2-develop-b2school-actualites.20251208165546
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/Divider/Divider.d.ts +36 -4
- package/dist/components/Divider/Divider.js +7 -18
- package/dist/components/Divider/index.d.ts +1 -0
- package/dist/components/index.d.ts +0 -1
- package/dist/index.js +178 -180
- package/package.json +6 -6
- package/dist/components/SeparatedInfo/SeparatedInfo.d.ts +0 -6
- package/dist/components/SeparatedInfo/SeparatedInfo.js +0 -13
- package/dist/components/SeparatedInfo/index.d.ts +0 -1
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
/**
|
|
3
|
+
* A divider component that renders a horizontal or vertical line to separate content.
|
|
4
|
+
*
|
|
5
|
+
* @param props - The component props
|
|
6
|
+
* @param props.children - Content to be displayed inside the divider
|
|
7
|
+
* @param props.vertical - Whether the divider is vertical. Defaults to false
|
|
8
|
+
* @param props.className - Optional CSS class name for additional styling of the divider
|
|
9
|
+
* @default 'border-gray-500'
|
|
10
|
+
* @param props.style - Optional inline styles for the divider
|
|
11
|
+
*
|
|
12
|
+
* @returns A React component that renders a divider with the specified properties
|
|
13
|
+
*
|
|
14
|
+
* @example
|
|
15
|
+
* ```tsx
|
|
16
|
+
* // Basic horizontal divider
|
|
17
|
+
* <Divider />
|
|
18
|
+
*
|
|
19
|
+
* // Divider with text content
|
|
20
|
+
* <Divider>Section Title</Divider>
|
|
21
|
+
*
|
|
22
|
+
* // Vertical divider
|
|
23
|
+
* <Divider vertical />
|
|
24
|
+
*
|
|
25
|
+
* // Custom colored divider
|
|
26
|
+
* <Divider className="border-red-500" />
|
|
27
|
+
* ```
|
|
28
|
+
*/
|
|
29
|
+
declare const Divider: {
|
|
30
|
+
({ children, vertical, className, }: {
|
|
31
|
+
children?: ReactNode;
|
|
32
|
+
vertical?: boolean;
|
|
33
|
+
className?: string;
|
|
34
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
35
|
+
displayName: string;
|
|
36
|
+
};
|
|
37
|
+
export default Divider;
|
|
@@ -1,21 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
3
|
-
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Divider as Divider$1 } from "antd";
|
|
3
|
+
const Divider = ({
|
|
4
4
|
children,
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
/* @__PURE__ */ jsx("hr", { className: "divider m-12 ms-0 flex-fill", style: {
|
|
9
|
-
borderColor: color
|
|
10
|
-
} }),
|
|
11
|
-
/* @__PURE__ */ jsxs(Flex, { gap: "12", align: "center", justify: "around", children: [
|
|
12
|
-
...children
|
|
13
|
-
] }),
|
|
14
|
-
/* @__PURE__ */ jsx("hr", { className: "divider m-12 me-0 flex-fill", style: {
|
|
15
|
-
borderColor: color
|
|
16
|
-
} })
|
|
17
|
-
] });
|
|
18
|
-
}
|
|
5
|
+
vertical = !1,
|
|
6
|
+
className = "border-gray-500"
|
|
7
|
+
}) => /* @__PURE__ */ jsx(Divider$1, { plain: !0, children, type: vertical ? "vertical" : "horizontal", className, orientation: "center" });
|
|
19
8
|
export {
|
|
20
|
-
Divider
|
|
9
|
+
Divider as default
|
|
21
10
|
};
|
package/dist/index.js
CHANGED
|
@@ -15,105 +15,104 @@ 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/Form/
|
|
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/Skeleton/
|
|
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/
|
|
45
|
-
import { default as default46 } from "./components/
|
|
18
|
+
import { default as default19 } from "./components/Divider/Divider.js";
|
|
19
|
+
import { default as default20 } from "./components/Dropdown/Dropdown.js";
|
|
20
|
+
import { default as default21 } from "./components/Dropzone/Dropzone.js";
|
|
21
|
+
import { default as default22 } from "./components/EmptyScreen/EmptyScreen.js";
|
|
22
|
+
import { default as default23 } from "./components/Flex/Flex.js";
|
|
23
|
+
import { default as default24 } from "./components/Form/FormText.js";
|
|
24
|
+
import { default as default25 } from "./components/Form/FormControl.js";
|
|
25
|
+
import { default as default26 } from "./components/Heading/Heading.js";
|
|
26
|
+
import { default as default27 } from "./components/Image/Image.js";
|
|
27
|
+
import { default as default28 } from "./components/Input/Input.js";
|
|
28
|
+
import { default as default29 } from "./components/Label/Label.js";
|
|
29
|
+
import { default as default30 } from "./components/Loading/Loading.js";
|
|
30
|
+
import { default as default31 } from "./components/LoadingScreen/LoadingScreen.js";
|
|
31
|
+
import { default as default32 } from "./components/Logo/Logo.js";
|
|
32
|
+
import { default as default33 } from "./components/Modal/Modal.js";
|
|
33
|
+
import { default as default34 } from "./components/PreventPropagation/PreventPropagation.js";
|
|
34
|
+
import { default as default35 } from "./components/Radio/Radio.js";
|
|
35
|
+
import { default as default36 } from "./components/RadioCard/RadioCard.js";
|
|
36
|
+
import { default as default37 } from "./components/SearchBar/SearchBar.js";
|
|
37
|
+
import { default as default38 } from "./components/SegmentedControl/SegmentedControl.js";
|
|
38
|
+
import { default as default39 } from "./components/Select/Select.js";
|
|
39
|
+
import { default as default40 } from "./components/Skeleton/ButtonSkeleton.js";
|
|
40
|
+
import { default as default41 } from "./components/Skeleton/TextSkeleton.js";
|
|
41
|
+
import { default as default42 } from "./components/StackedGroup/StackedGroup.js";
|
|
42
|
+
import { default as default43 } from "./components/Stepper/Stepper.js";
|
|
43
|
+
import { default as default44 } from "./components/Switch/Switch.js";
|
|
44
|
+
import { default as default45 } from "./components/Table/components/Table.js";
|
|
45
|
+
import { default as default46 } from "./components/TextArea/TextArea.js";
|
|
46
|
+
import { default as default47 } from "./components/Tooltip/Tooltip.js";
|
|
46
47
|
import { DndTree } from "./components/Tree/components/DndTree.js";
|
|
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
|
|
64
|
-
import { default as
|
|
48
|
+
import { default as default48 } from "./components/Tree/components/SortableTree.js";
|
|
49
|
+
import { default as default49 } from "./components/Tree/components/Tree.js";
|
|
50
|
+
import { default as default50 } from "./components/TreeView/TreeView.js";
|
|
51
|
+
import { default as default51 } from "./components/VisuallyHidden/VisuallyHidden.js";
|
|
52
|
+
import { default as default52 } from "./hooks/useBookmark/useBookmark.js";
|
|
53
|
+
import { default as default53 } from "./hooks/useBreakpoint/useBreakpoint.js";
|
|
54
|
+
import { default as default54 } from "./hooks/useBrowserInfo/useBrowserInfo.js";
|
|
55
|
+
import { default as default55 } from "./hooks/useCantoo/useCantoo.js";
|
|
56
|
+
import { default as default56 } from "./hooks/useClickOutside/useClickOutside.js";
|
|
57
|
+
import { default as default57 } from "./hooks/useConversation/useConversation.js";
|
|
58
|
+
import { default as default58 } from "./hooks/useDate/useDate.js";
|
|
59
|
+
import { default as default59 } from "./hooks/useDebounce/useDebounce.js";
|
|
60
|
+
import { default as default60 } from "./hooks/useDirectory/useDirectory.js";
|
|
61
|
+
import { default as default61 } from "./hooks/useDropdown/useDropdown.js";
|
|
62
|
+
import { default as default62 } from "./hooks/useDropzone/useDropzone.js";
|
|
63
|
+
import { default as default63 } from "./hooks/useEdificeIcons/useEdificeIcons.js";
|
|
64
|
+
import { default as default64 } from "./hooks/useHasWorkflow/useHasWorkflow.js";
|
|
65
|
+
import { default as default65 } from "./hooks/useHover/useHover.js";
|
|
65
66
|
import { useHttpErrorToast } from "./hooks/useHttpErrorToast/useHttpErrorToast.js";
|
|
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 { default as
|
|
84
|
-
import { default as
|
|
85
|
-
import { WORKSPACE_SHARED_FOLDER_ID, WORKSPACE_USER_FOLDER_ID, 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
|
|
105
|
-
import { default as
|
|
106
|
-
import { default as
|
|
107
|
-
import { default as
|
|
67
|
+
import { default as default66 } from "./hooks/useImage/useImage.js";
|
|
68
|
+
import { default as default67 } from "./hooks/useInfiniteScroll/useInfiniteScroll.js";
|
|
69
|
+
import { default as default68 } from "./hooks/useIsAdml/useIsAdml.js";
|
|
70
|
+
import { default as default69 } from "./hooks/useIsAdmc/useIsAdmc.js";
|
|
71
|
+
import { default as default70 } from "./hooks/useIsAdmlcOrAdmc/useIsAdmlcOrAdmc.js";
|
|
72
|
+
import { default as default71 } from "./hooks/useKeyPress/useKeyPress.js";
|
|
73
|
+
import { default as default72 } from "./hooks/useLibraryUrl/useLibraryUrl.js";
|
|
74
|
+
import { default as default73 } from "./hooks/useMediaLibrary/useMediaLibrary.js";
|
|
75
|
+
import { default as default74 } from "./hooks/useScrollToTop/useScrollToTop.js";
|
|
76
|
+
import { default as default75 } from "./hooks/useTitle/useTitle.js";
|
|
77
|
+
import { default as default76 } from "./hooks/useToast/useToast.js";
|
|
78
|
+
import { default as default77 } from "./hooks/useToggle/useToggle.js";
|
|
79
|
+
import { default as default78 } from "./hooks/useTrapFocus/useTrapFocus.js";
|
|
80
|
+
import { default as default79 } from "./hooks/useTrashedResource/useTrashedResource.js";
|
|
81
|
+
import { default as default80 } from "./hooks/useUpload/useUpload.js";
|
|
82
|
+
import { default as default81 } from "./hooks/useUploadFiles/useUploadFiles.js";
|
|
83
|
+
import { default as default82 } from "./hooks/useUser/useUser.js";
|
|
84
|
+
import { default as default83 } from "./hooks/useWorkspaceFile/useWorkspaceFile.js";
|
|
85
|
+
import { default as default84 } from "./hooks/useWorkspaceFolders/useWorkspaceFolders.js";
|
|
86
|
+
import { WORKSPACE_SHARED_FOLDER_ID, WORKSPACE_USER_FOLDER_ID, default as default85 } from "./hooks/useWorkspaceFolders/useWorkspaceFoldersTree.js";
|
|
87
|
+
import { default as default86 } from "./hooks/useWorkspaceSearch/useWorkspaceSearch.js";
|
|
88
|
+
import { default as default87 } from "./hooks/useXitiTrackPageLoad/useXitiTrackPageLoad.js";
|
|
89
|
+
import { default as default88 } from "./hooks/useZendeskGuide/useZendeskGuide.js";
|
|
90
|
+
import { default as default89 } from "./modules/modals/ConfirmModal/ConfirmModal.js";
|
|
91
|
+
import { default as default90 } from "./modules/modals/OnboardingModal/OnboardingModal.js";
|
|
92
|
+
import { default as default91 } from "./modules/modals/PublishModal/PublishModal.js";
|
|
93
|
+
import { default as default92 } from "./modules/modals/ResourceModal/apps/BlogPublic.js";
|
|
94
|
+
import { default as default93 } from "./modules/modals/ResourceModal/hooks/useUpdateMutation.js";
|
|
95
|
+
import { default as default94 } from "./modules/modals/ShareModal/apps/ShareBlog.js";
|
|
96
|
+
import { default as default95 } from "./modules/modals/ShareModal/hooks/useShareMutation.js";
|
|
97
|
+
import { default as default96 } from "./modules/modals/ShareModal/ShareModal.js";
|
|
98
|
+
import { default as default97 } from "./modules/modals/ShareModal/ShareResources.js";
|
|
99
|
+
import { default as default98 } from "./modules/multimedia/AudioRecorder/AudioRecorder.js";
|
|
100
|
+
import { default as default99 } from "./modules/multimedia/Embed/Embed.js";
|
|
101
|
+
import { default as default100 } from "./modules/multimedia/ImageEditor/components/ImageEditor.js";
|
|
102
|
+
import { default as default101 } from "./modules/multimedia/ImagePicker/ImagePicker.js";
|
|
103
|
+
import { default as default102 } from "./modules/multimedia/FileCard/FileCard.js";
|
|
104
|
+
import { default as default103 } from "./modules/multimedia/MediaLibrary/MediaLibrary.js";
|
|
105
|
+
import { default as default104 } from "./modules/multimedia/VideoEmbed/VideoEmbed.js";
|
|
106
|
+
import { default as default105 } from "./modules/multimedia/VideoRecorder/VideoRecorder.js";
|
|
107
|
+
import { default as default106 } from "./modules/multimedia/Workspace/Workspace.js";
|
|
108
|
+
import { default as default107 } from "./modules/multimedia/WorkspaceFolders/WorkspaceFolders.js";
|
|
108
109
|
import { AccessiblePalette, DefaultPalette } from "./components/ColorPicker/ColorPalette.js";
|
|
109
|
-
import { Divider } from "./components/Divider/Divider.js";
|
|
110
110
|
import { DropzoneContext, useDropzoneContext } from "./components/Dropzone/DropzoneContext.js";
|
|
111
111
|
import { Column, Grid } from "./components/Grid/Grid.js";
|
|
112
112
|
import { Layout } from "./components/Layout/Layout.js";
|
|
113
113
|
import { List } from "./components/List/List.js";
|
|
114
114
|
import { Menu } from "./components/Menu/components/Menu.js";
|
|
115
115
|
import { Popover, PopoverBody, PopoverFooter, PopoverHeader } from "./components/Popover/Popover.js";
|
|
116
|
-
import { SeparatedInfo } from "./components/SeparatedInfo/SeparatedInfo.js";
|
|
117
116
|
import { Tabs } from "./components/Tabs/components/Tabs.js";
|
|
118
117
|
import { Toolbar } from "./components/Toolbar/Toolbar.js";
|
|
119
118
|
import { useTreeSortable } from "./components/Tree/hooks/useTreeSortable.js";
|
|
@@ -145,95 +144,94 @@ export {
|
|
|
145
144
|
default4 as AppHeader,
|
|
146
145
|
default5 as AppIcon,
|
|
147
146
|
default6 as Attachment,
|
|
148
|
-
|
|
147
|
+
default98 as AudioRecorder,
|
|
149
148
|
default7 as Avatar,
|
|
150
149
|
default8 as AvatarGroup,
|
|
151
150
|
default9 as Badge,
|
|
152
|
-
|
|
151
|
+
default92 as BlogPublic,
|
|
153
152
|
default10 as Breadcrumb,
|
|
154
153
|
default11 as Button,
|
|
155
|
-
|
|
154
|
+
default40 as ButtonSkeleton,
|
|
156
155
|
default14 as Card,
|
|
157
156
|
default15 as Checkbox,
|
|
158
157
|
default16 as ColorPicker,
|
|
159
158
|
default17 as ColorPickerItem,
|
|
160
159
|
Column,
|
|
161
160
|
default18 as Combobox,
|
|
162
|
-
|
|
161
|
+
default89 as ConfirmModal,
|
|
163
162
|
DefaultPalette,
|
|
164
|
-
Divider,
|
|
163
|
+
default19 as Divider,
|
|
165
164
|
DndTree,
|
|
166
|
-
|
|
167
|
-
|
|
165
|
+
default20 as Dropdown,
|
|
166
|
+
default21 as Dropzone,
|
|
168
167
|
DropzoneContext,
|
|
169
168
|
EdificeClientContext,
|
|
170
169
|
EdificeClientProvider,
|
|
171
170
|
EdificeThemeContext,
|
|
172
171
|
EdificeThemeProvider,
|
|
173
|
-
|
|
174
|
-
|
|
172
|
+
default99 as Embed,
|
|
173
|
+
default22 as EmptyScreen,
|
|
175
174
|
ExternalLinker,
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
175
|
+
default102 as FileCard,
|
|
176
|
+
default23 as Flex,
|
|
177
|
+
default25 as FormControl,
|
|
178
|
+
default24 as FormText,
|
|
180
179
|
Grid,
|
|
181
|
-
|
|
180
|
+
default26 as Heading,
|
|
182
181
|
default12 as IconButton,
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
182
|
+
default27 as Image,
|
|
183
|
+
default100 as ImageEditor,
|
|
184
|
+
default101 as ImagePicker,
|
|
185
|
+
default28 as Input,
|
|
187
186
|
InternalLinker,
|
|
188
|
-
|
|
187
|
+
default29 as Label,
|
|
189
188
|
Layout,
|
|
190
189
|
List,
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
190
|
+
default30 as Loading,
|
|
191
|
+
default31 as LoadingScreen,
|
|
192
|
+
default32 as Logo,
|
|
193
|
+
default103 as MediaLibrary,
|
|
195
194
|
Menu,
|
|
196
195
|
MockedProvider,
|
|
197
|
-
|
|
198
|
-
|
|
196
|
+
default33 as Modal,
|
|
197
|
+
default90 as OnboardingModal,
|
|
199
198
|
Popover,
|
|
200
199
|
PopoverBody,
|
|
201
200
|
PopoverFooter,
|
|
202
201
|
PopoverHeader,
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
202
|
+
default34 as PreventPropagation,
|
|
203
|
+
default91 as PublishModal,
|
|
204
|
+
default35 as Radio,
|
|
205
|
+
default36 as RadioCard,
|
|
207
206
|
ResourceModal,
|
|
208
|
-
|
|
207
|
+
default37 as SearchBar,
|
|
209
208
|
default13 as SearchButton,
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
default44 as Table,
|
|
209
|
+
default38 as SegmentedControl,
|
|
210
|
+
default39 as Select,
|
|
211
|
+
default94 as ShareBlog,
|
|
212
|
+
default96 as ShareModal,
|
|
213
|
+
default97 as ShareResources,
|
|
214
|
+
default48 as SortableTree,
|
|
215
|
+
default42 as StackedGroup,
|
|
216
|
+
default43 as Stepper,
|
|
217
|
+
default44 as Switch,
|
|
218
|
+
default45 as Table,
|
|
221
219
|
Tabs,
|
|
222
|
-
|
|
223
|
-
|
|
220
|
+
default46 as TextArea,
|
|
221
|
+
default41 as TextSkeleton,
|
|
224
222
|
Toolbar,
|
|
225
|
-
|
|
226
|
-
|
|
223
|
+
default47 as Tooltip,
|
|
224
|
+
default49 as Tree,
|
|
227
225
|
TreeNode,
|
|
228
226
|
TreeNodeFolderWrapper,
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
227
|
+
default50 as TreeView,
|
|
228
|
+
default104 as VideoEmbed,
|
|
229
|
+
default105 as VideoRecorder,
|
|
230
|
+
default51 as VisuallyHidden,
|
|
233
231
|
WORKSPACE_SHARED_FOLDER_ID,
|
|
234
232
|
WORKSPACE_USER_FOLDER_ID,
|
|
235
|
-
|
|
236
|
-
|
|
233
|
+
default106 as Workspace,
|
|
234
|
+
default107 as WorkspaceFolders,
|
|
237
235
|
addNode,
|
|
238
236
|
arrayUnique,
|
|
239
237
|
buildTree,
|
|
@@ -262,51 +260,51 @@ export {
|
|
|
262
260
|
setRef,
|
|
263
261
|
updateNode,
|
|
264
262
|
updateParentIds,
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
263
|
+
default52 as useBookmark,
|
|
264
|
+
default53 as useBreakpoint,
|
|
265
|
+
default54 as useBrowserInfo,
|
|
266
|
+
default55 as useCantoo,
|
|
269
267
|
useCheckable,
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
268
|
+
default56 as useClickOutside,
|
|
269
|
+
default57 as useConversation,
|
|
270
|
+
default58 as useDate,
|
|
271
|
+
default59 as useDebounce,
|
|
272
|
+
default60 as useDirectory,
|
|
273
|
+
default61 as useDropdown,
|
|
274
|
+
default62 as useDropzone,
|
|
277
275
|
useDropzoneContext,
|
|
278
276
|
useEdificeClient,
|
|
279
|
-
|
|
277
|
+
default63 as useEdificeIcons,
|
|
280
278
|
useEdificeTheme,
|
|
281
|
-
|
|
282
|
-
|
|
279
|
+
default64 as useHasWorkflow,
|
|
280
|
+
default65 as useHover,
|
|
283
281
|
useHttpErrorToast,
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
282
|
+
default66 as useImage,
|
|
283
|
+
default67 as useInfiniteScroll,
|
|
284
|
+
default69 as useIsAdmc,
|
|
285
|
+
default68 as useIsAdml,
|
|
286
|
+
default70 as useIsAdmlcOrAdmc,
|
|
287
|
+
default71 as useKeyPress,
|
|
288
|
+
default72 as useLibraryUrl,
|
|
289
|
+
default73 as useMediaLibrary,
|
|
290
|
+
default74 as useScrollToTop,
|
|
291
|
+
default95 as useShareMutation,
|
|
292
|
+
default75 as useTitle,
|
|
293
|
+
default76 as useToast,
|
|
294
|
+
default77 as useToggle,
|
|
295
|
+
default78 as useTrapFocus,
|
|
296
|
+
default79 as useTrashedResource,
|
|
299
297
|
useTreeSortable,
|
|
300
298
|
useTreeView,
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
299
|
+
default93 as useUpdateMutation,
|
|
300
|
+
default80 as useUpload,
|
|
301
|
+
default81 as useUploadFiles,
|
|
302
|
+
default82 as useUser,
|
|
303
|
+
default83 as useWorkspaceFile,
|
|
304
|
+
default84 as useWorkspaceFolders,
|
|
305
|
+
default85 as useWorkspaceFoldersTree,
|
|
306
|
+
default86 as useWorkspaceSearch,
|
|
307
|
+
default87 as useXitiTrackPageLoad,
|
|
308
|
+
default88 as useZendeskGuide,
|
|
311
309
|
wrapTreeNode
|
|
312
310
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@edifice.io/react",
|
|
3
|
-
"version": "2.5.2-develop-b2school-actualites.
|
|
3
|
+
"version": "2.5.2-develop-b2school-actualites.20251208165546",
|
|
4
4
|
"description": "Edifice React Library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -134,9 +134,9 @@
|
|
|
134
134
|
"react-slugify": "^3.0.3",
|
|
135
135
|
"swiper": "^10.1.0",
|
|
136
136
|
"ua-parser-js": "^1.0.36",
|
|
137
|
-
"@edifice.io/bootstrap": "2.5.2-develop-b2school-actualites.
|
|
138
|
-
"@edifice.io/tiptap-extensions": "2.5.2-develop-b2school-actualites.
|
|
139
|
-
"@edifice.io/utilities": "2.5.2-develop-b2school-actualites.
|
|
137
|
+
"@edifice.io/bootstrap": "2.5.2-develop-b2school-actualites.20251208165546",
|
|
138
|
+
"@edifice.io/tiptap-extensions": "2.5.2-develop-b2school-actualites.20251208165546",
|
|
139
|
+
"@edifice.io/utilities": "2.5.2-develop-b2school-actualites.20251208165546"
|
|
140
140
|
},
|
|
141
141
|
"devDependencies": {
|
|
142
142
|
"@babel/plugin-transform-react-pure-annotations": "^7.23.3",
|
|
@@ -167,8 +167,8 @@
|
|
|
167
167
|
"vite": "^5.4.11",
|
|
168
168
|
"vite-plugin-dts": "^4.1.0",
|
|
169
169
|
"vite-tsconfig-paths": "^5.0.1",
|
|
170
|
-
"@edifice.io/client": "2.5.2-develop-b2school-actualites.
|
|
171
|
-
"@edifice.io/config": "2.5.2-develop-b2school-actualites.
|
|
170
|
+
"@edifice.io/client": "2.5.2-develop-b2school-actualites.20251208165546",
|
|
171
|
+
"@edifice.io/config": "2.5.2-develop-b2school-actualites.20251208165546"
|
|
172
172
|
},
|
|
173
173
|
"peerDependencies": {
|
|
174
174
|
"@react-spring/web": "^9.7.5",
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { jsxs } from "react/jsx-runtime";
|
|
2
|
-
import Flex from "../Flex/Flex.js";
|
|
3
|
-
function SeparatedInfo({
|
|
4
|
-
children,
|
|
5
|
-
className
|
|
6
|
-
}) {
|
|
7
|
-
return /* @__PURE__ */ jsxs(Flex, { direction: "row", className: `separated-info ${className}`, children: [
|
|
8
|
-
...children
|
|
9
|
-
] });
|
|
10
|
-
}
|
|
11
|
-
export {
|
|
12
|
-
SeparatedInfo
|
|
13
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './SeparatedInfo';
|