@edifice.io/react 2.5.2-develop-b2school-actualites.20251204091630 → 2.5.2-develop-b2school-actualites.20251205090431
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/SegmentedControl/SegmentedControl.d.ts +65 -0
- package/dist/components/SegmentedControl/SegmentedControl.js +21 -0
- package/dist/components/SegmentedControl/index.d.ts +2 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.js +140 -138
- package/dist/style.css +1 -1
- package/package.json +6 -6
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Simple option for SegmentedControl
|
|
3
|
+
*/
|
|
4
|
+
export interface SegmentedOption {
|
|
5
|
+
/**
|
|
6
|
+
* Option label
|
|
7
|
+
*/
|
|
8
|
+
label: string;
|
|
9
|
+
/**
|
|
10
|
+
* Option value
|
|
11
|
+
*/
|
|
12
|
+
value: string;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* SegmentedControl component props
|
|
16
|
+
*
|
|
17
|
+
* Minimal interface that only exposes what is necessary.
|
|
18
|
+
* Ant Design implementation is hidden and no Ant Design-specific props are exposed.
|
|
19
|
+
*/
|
|
20
|
+
export interface SegmentedControlProps {
|
|
21
|
+
/**
|
|
22
|
+
* Segmented control options
|
|
23
|
+
*/
|
|
24
|
+
options: SegmentedOption[];
|
|
25
|
+
/**
|
|
26
|
+
* Selected value
|
|
27
|
+
*/
|
|
28
|
+
value?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Callback called when value changes
|
|
31
|
+
*/
|
|
32
|
+
onChange?: (value: string) => void;
|
|
33
|
+
/**
|
|
34
|
+
* Optional CSS class name
|
|
35
|
+
*/
|
|
36
|
+
className?: string;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* SegmentedControl component
|
|
40
|
+
*
|
|
41
|
+
* Segmented control component for selecting between multiple options.
|
|
42
|
+
*
|
|
43
|
+
* **Note:** This component uses Ant Design's Segmented component internally.
|
|
44
|
+
* Only the props defined in SegmentedControlProps are allowed to prevent
|
|
45
|
+
* dependency on Ant Design-specific features. To replace the implementation,
|
|
46
|
+
* modify the component body below.
|
|
47
|
+
*
|
|
48
|
+
* @example
|
|
49
|
+
* ```tsx
|
|
50
|
+
* <SegmentedControl
|
|
51
|
+
* options={[
|
|
52
|
+
* { label: 'List', value: 'list' },
|
|
53
|
+
* { label: 'Kanban', value: 'kanban' },
|
|
54
|
+
* { label: 'Table', value: 'table' }
|
|
55
|
+
* ]}
|
|
56
|
+
* value={value}
|
|
57
|
+
* onChange={(val) => setValue(val)}
|
|
58
|
+
* />
|
|
59
|
+
* ```
|
|
60
|
+
*/
|
|
61
|
+
declare const SegmentedControl: {
|
|
62
|
+
(props: SegmentedControlProps): import("react/jsx-runtime").JSX.Element;
|
|
63
|
+
displayName: string;
|
|
64
|
+
};
|
|
65
|
+
export default SegmentedControl;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { Segmented } from "antd";
|
|
3
|
+
import clsx from "clsx";
|
|
4
|
+
/* empty css */
|
|
5
|
+
const SegmentedControl = (props) => {
|
|
6
|
+
const {
|
|
7
|
+
options,
|
|
8
|
+
value,
|
|
9
|
+
onChange,
|
|
10
|
+
className
|
|
11
|
+
} = props, antProps = {
|
|
12
|
+
options,
|
|
13
|
+
value,
|
|
14
|
+
onChange,
|
|
15
|
+
className: clsx("segmented-control-wrapper", className)
|
|
16
|
+
};
|
|
17
|
+
return /* @__PURE__ */ jsx(Segmented, { ...antProps });
|
|
18
|
+
};
|
|
19
|
+
export {
|
|
20
|
+
SegmentedControl as default
|
|
21
|
+
};
|
|
@@ -35,6 +35,7 @@ export * from './PreventPropagation';
|
|
|
35
35
|
export * from './Radio';
|
|
36
36
|
export * from './RadioCard';
|
|
37
37
|
export * from './SearchBar';
|
|
38
|
+
export * from './SegmentedControl';
|
|
38
39
|
export * from './Select';
|
|
39
40
|
export * from './SeparatedInfo';
|
|
40
41
|
export * from './Skeleton';
|
package/dist/index.js
CHANGED
|
@@ -33,77 +33,78 @@ import { default as default33 } from "./components/PreventPropagation/PreventPro
|
|
|
33
33
|
import { default as default34 } from "./components/Radio/Radio.js";
|
|
34
34
|
import { default as default35 } from "./components/RadioCard/RadioCard.js";
|
|
35
35
|
import { default as default36 } from "./components/SearchBar/SearchBar.js";
|
|
36
|
-
import { default as default37 } from "./components/
|
|
37
|
-
import { default as default38 } from "./components/
|
|
38
|
-
import { default as default39 } from "./components/Skeleton/
|
|
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/
|
|
36
|
+
import { default as default37 } from "./components/SegmentedControl/SegmentedControl.js";
|
|
37
|
+
import { default as default38 } from "./components/Select/Select.js";
|
|
38
|
+
import { default as default39 } from "./components/Skeleton/ButtonSkeleton.js";
|
|
39
|
+
import { default as default40 } from "./components/Skeleton/TextSkeleton.js";
|
|
40
|
+
import { default as default41 } from "./components/StackedGroup/StackedGroup.js";
|
|
41
|
+
import { default as default42 } from "./components/Stepper/Stepper.js";
|
|
42
|
+
import { default as default43 } from "./components/Switch/Switch.js";
|
|
43
|
+
import { default as default44 } from "./components/Table/components/Table.js";
|
|
44
|
+
import { default as default45 } from "./components/TextArea/TextArea.js";
|
|
45
|
+
import { default as default46 } from "./components/Tooltip/Tooltip.js";
|
|
45
46
|
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
|
|
47
|
+
import { default as default47 } from "./components/Tree/components/SortableTree.js";
|
|
48
|
+
import { default as default48 } from "./components/Tree/components/Tree.js";
|
|
49
|
+
import { default as default49 } from "./components/TreeView/TreeView.js";
|
|
50
|
+
import { default as default50 } from "./components/VisuallyHidden/VisuallyHidden.js";
|
|
51
|
+
import { default as default51 } from "./hooks/useBookmark/useBookmark.js";
|
|
52
|
+
import { default as default52 } from "./hooks/useBreakpoint/useBreakpoint.js";
|
|
53
|
+
import { default as default53 } from "./hooks/useBrowserInfo/useBrowserInfo.js";
|
|
54
|
+
import { default as default54 } from "./hooks/useCantoo/useCantoo.js";
|
|
55
|
+
import { default as default55 } from "./hooks/useClickOutside/useClickOutside.js";
|
|
56
|
+
import { default as default56 } from "./hooks/useConversation/useConversation.js";
|
|
57
|
+
import { default as default57 } from "./hooks/useDate/useDate.js";
|
|
58
|
+
import { default as default58 } from "./hooks/useDebounce/useDebounce.js";
|
|
59
|
+
import { default as default59 } from "./hooks/useDirectory/useDirectory.js";
|
|
60
|
+
import { default as default60 } from "./hooks/useDropdown/useDropdown.js";
|
|
61
|
+
import { default as default61 } from "./hooks/useDropzone/useDropzone.js";
|
|
62
|
+
import { default as default62 } from "./hooks/useEdificeIcons/useEdificeIcons.js";
|
|
63
|
+
import { default as default63 } from "./hooks/useHasWorkflow/useHasWorkflow.js";
|
|
64
|
+
import { default as default64 } from "./hooks/useHover/useHover.js";
|
|
64
65
|
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 { default as
|
|
84
|
-
import { WORKSPACE_SHARED_FOLDER_ID, WORKSPACE_USER_FOLDER_ID, 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
|
|
105
|
-
import { default as
|
|
106
|
-
import { default as
|
|
66
|
+
import { default as default65 } from "./hooks/useImage/useImage.js";
|
|
67
|
+
import { default as default66 } from "./hooks/useInfiniteScroll/useInfiniteScroll.js";
|
|
68
|
+
import { default as default67 } from "./hooks/useIsAdml/useIsAdml.js";
|
|
69
|
+
import { default as default68 } from "./hooks/useIsAdmc/useIsAdmc.js";
|
|
70
|
+
import { default as default69 } from "./hooks/useIsAdmlcOrAdmc/useIsAdmlcOrAdmc.js";
|
|
71
|
+
import { default as default70 } from "./hooks/useKeyPress/useKeyPress.js";
|
|
72
|
+
import { default as default71 } from "./hooks/useLibraryUrl/useLibraryUrl.js";
|
|
73
|
+
import { default as default72 } from "./hooks/useMediaLibrary/useMediaLibrary.js";
|
|
74
|
+
import { default as default73 } from "./hooks/useScrollToTop/useScrollToTop.js";
|
|
75
|
+
import { default as default74 } from "./hooks/useTitle/useTitle.js";
|
|
76
|
+
import { default as default75 } from "./hooks/useToast/useToast.js";
|
|
77
|
+
import { default as default76 } from "./hooks/useToggle/useToggle.js";
|
|
78
|
+
import { default as default77 } from "./hooks/useTrapFocus/useTrapFocus.js";
|
|
79
|
+
import { default as default78 } from "./hooks/useTrashedResource/useTrashedResource.js";
|
|
80
|
+
import { default as default79 } from "./hooks/useUpload/useUpload.js";
|
|
81
|
+
import { default as default80 } from "./hooks/useUploadFiles/useUploadFiles.js";
|
|
82
|
+
import { default as default81 } from "./hooks/useUser/useUser.js";
|
|
83
|
+
import { default as default82 } from "./hooks/useWorkspaceFile/useWorkspaceFile.js";
|
|
84
|
+
import { default as default83 } from "./hooks/useWorkspaceFolders/useWorkspaceFolders.js";
|
|
85
|
+
import { WORKSPACE_SHARED_FOLDER_ID, WORKSPACE_USER_FOLDER_ID, default as default84 } from "./hooks/useWorkspaceFolders/useWorkspaceFoldersTree.js";
|
|
86
|
+
import { default as default85 } from "./hooks/useWorkspaceSearch/useWorkspaceSearch.js";
|
|
87
|
+
import { default as default86 } from "./hooks/useXitiTrackPageLoad/useXitiTrackPageLoad.js";
|
|
88
|
+
import { default as default87 } from "./hooks/useZendeskGuide/useZendeskGuide.js";
|
|
89
|
+
import { default as default88 } from "./modules/modals/ConfirmModal/ConfirmModal.js";
|
|
90
|
+
import { default as default89 } from "./modules/modals/OnboardingModal/OnboardingModal.js";
|
|
91
|
+
import { default as default90 } from "./modules/modals/PublishModal/PublishModal.js";
|
|
92
|
+
import { default as default91 } from "./modules/modals/ResourceModal/apps/BlogPublic.js";
|
|
93
|
+
import { default as default92 } from "./modules/modals/ResourceModal/hooks/useUpdateMutation.js";
|
|
94
|
+
import { default as default93 } from "./modules/modals/ShareModal/apps/ShareBlog.js";
|
|
95
|
+
import { default as default94 } from "./modules/modals/ShareModal/hooks/useShareMutation.js";
|
|
96
|
+
import { default as default95 } from "./modules/modals/ShareModal/ShareModal.js";
|
|
97
|
+
import { default as default96 } from "./modules/modals/ShareModal/ShareResources.js";
|
|
98
|
+
import { default as default97 } from "./modules/multimedia/AudioRecorder/AudioRecorder.js";
|
|
99
|
+
import { default as default98 } from "./modules/multimedia/Embed/Embed.js";
|
|
100
|
+
import { default as default99 } from "./modules/multimedia/ImageEditor/components/ImageEditor.js";
|
|
101
|
+
import { default as default100 } from "./modules/multimedia/ImagePicker/ImagePicker.js";
|
|
102
|
+
import { default as default101 } from "./modules/multimedia/FileCard/FileCard.js";
|
|
103
|
+
import { default as default102 } from "./modules/multimedia/MediaLibrary/MediaLibrary.js";
|
|
104
|
+
import { default as default103 } from "./modules/multimedia/VideoEmbed/VideoEmbed.js";
|
|
105
|
+
import { default as default104 } from "./modules/multimedia/VideoRecorder/VideoRecorder.js";
|
|
106
|
+
import { default as default105 } from "./modules/multimedia/Workspace/Workspace.js";
|
|
107
|
+
import { default as default106 } from "./modules/multimedia/WorkspaceFolders/WorkspaceFolders.js";
|
|
107
108
|
import { AccessiblePalette, DefaultPalette } from "./components/ColorPicker/ColorPalette.js";
|
|
108
109
|
import { Divider } from "./components/Divider/Divider.js";
|
|
109
110
|
import { DropzoneContext, useDropzoneContext } from "./components/Dropzone/DropzoneContext.js";
|
|
@@ -144,21 +145,21 @@ export {
|
|
|
144
145
|
default4 as AppHeader,
|
|
145
146
|
default5 as AppIcon,
|
|
146
147
|
default6 as Attachment,
|
|
147
|
-
|
|
148
|
+
default97 as AudioRecorder,
|
|
148
149
|
default7 as Avatar,
|
|
149
150
|
default8 as AvatarGroup,
|
|
150
151
|
default9 as Badge,
|
|
151
|
-
|
|
152
|
+
default91 as BlogPublic,
|
|
152
153
|
default10 as Breadcrumb,
|
|
153
154
|
default11 as Button,
|
|
154
|
-
|
|
155
|
+
default39 as ButtonSkeleton,
|
|
155
156
|
default14 as Card,
|
|
156
157
|
default15 as Checkbox,
|
|
157
158
|
default16 as ColorPicker,
|
|
158
159
|
default17 as ColorPickerItem,
|
|
159
160
|
Column,
|
|
160
161
|
default18 as Combobox,
|
|
161
|
-
|
|
162
|
+
default88 as ConfirmModal,
|
|
162
163
|
DefaultPalette,
|
|
163
164
|
Divider,
|
|
164
165
|
DndTree,
|
|
@@ -169,10 +170,10 @@ export {
|
|
|
169
170
|
EdificeClientProvider,
|
|
170
171
|
EdificeThemeContext,
|
|
171
172
|
EdificeThemeProvider,
|
|
172
|
-
|
|
173
|
+
default98 as Embed,
|
|
173
174
|
default21 as EmptyScreen,
|
|
174
175
|
ExternalLinker,
|
|
175
|
-
|
|
176
|
+
default101 as FileCard,
|
|
176
177
|
default22 as Flex,
|
|
177
178
|
default24 as FormControl,
|
|
178
179
|
default23 as FormText,
|
|
@@ -180,8 +181,8 @@ export {
|
|
|
180
181
|
default25 as Heading,
|
|
181
182
|
default12 as IconButton,
|
|
182
183
|
default26 as Image,
|
|
183
|
-
|
|
184
|
-
|
|
184
|
+
default99 as ImageEditor,
|
|
185
|
+
default100 as ImagePicker,
|
|
185
186
|
default27 as Input,
|
|
186
187
|
InternalLinker,
|
|
187
188
|
default28 as Label,
|
|
@@ -190,48 +191,49 @@ export {
|
|
|
190
191
|
default29 as Loading,
|
|
191
192
|
default30 as LoadingScreen,
|
|
192
193
|
default31 as Logo,
|
|
193
|
-
|
|
194
|
+
default102 as MediaLibrary,
|
|
194
195
|
Menu,
|
|
195
196
|
MockedProvider,
|
|
196
197
|
default32 as Modal,
|
|
197
|
-
|
|
198
|
+
default89 as OnboardingModal,
|
|
198
199
|
Popover,
|
|
199
200
|
PopoverBody,
|
|
200
201
|
PopoverFooter,
|
|
201
202
|
PopoverHeader,
|
|
202
203
|
default33 as PreventPropagation,
|
|
203
|
-
|
|
204
|
+
default90 as PublishModal,
|
|
204
205
|
default34 as Radio,
|
|
205
206
|
default35 as RadioCard,
|
|
206
207
|
ResourceModal,
|
|
207
208
|
default36 as SearchBar,
|
|
208
209
|
default13 as SearchButton,
|
|
209
|
-
default37 as
|
|
210
|
+
default37 as SegmentedControl,
|
|
211
|
+
default38 as Select,
|
|
210
212
|
SeparatedInfo,
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
213
|
+
default93 as ShareBlog,
|
|
214
|
+
default95 as ShareModal,
|
|
215
|
+
default96 as ShareResources,
|
|
216
|
+
default47 as SortableTree,
|
|
217
|
+
default41 as StackedGroup,
|
|
218
|
+
default42 as Stepper,
|
|
219
|
+
default43 as Switch,
|
|
220
|
+
default44 as Table,
|
|
219
221
|
Tabs,
|
|
220
|
-
|
|
221
|
-
|
|
222
|
+
default45 as TextArea,
|
|
223
|
+
default40 as TextSkeleton,
|
|
222
224
|
Toolbar,
|
|
223
|
-
|
|
224
|
-
|
|
225
|
+
default46 as Tooltip,
|
|
226
|
+
default48 as Tree,
|
|
225
227
|
TreeNode,
|
|
226
228
|
TreeNodeFolderWrapper,
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
229
|
+
default49 as TreeView,
|
|
230
|
+
default103 as VideoEmbed,
|
|
231
|
+
default104 as VideoRecorder,
|
|
232
|
+
default50 as VisuallyHidden,
|
|
231
233
|
WORKSPACE_SHARED_FOLDER_ID,
|
|
232
234
|
WORKSPACE_USER_FOLDER_ID,
|
|
233
|
-
|
|
234
|
-
|
|
235
|
+
default105 as Workspace,
|
|
236
|
+
default106 as WorkspaceFolders,
|
|
235
237
|
addNode,
|
|
236
238
|
arrayUnique,
|
|
237
239
|
buildTree,
|
|
@@ -260,51 +262,51 @@ export {
|
|
|
260
262
|
setRef,
|
|
261
263
|
updateNode,
|
|
262
264
|
updateParentIds,
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
265
|
+
default51 as useBookmark,
|
|
266
|
+
default52 as useBreakpoint,
|
|
267
|
+
default53 as useBrowserInfo,
|
|
268
|
+
default54 as useCantoo,
|
|
267
269
|
useCheckable,
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
270
|
+
default55 as useClickOutside,
|
|
271
|
+
default56 as useConversation,
|
|
272
|
+
default57 as useDate,
|
|
273
|
+
default58 as useDebounce,
|
|
274
|
+
default59 as useDirectory,
|
|
275
|
+
default60 as useDropdown,
|
|
276
|
+
default61 as useDropzone,
|
|
275
277
|
useDropzoneContext,
|
|
276
278
|
useEdificeClient,
|
|
277
|
-
|
|
279
|
+
default62 as useEdificeIcons,
|
|
278
280
|
useEdificeTheme,
|
|
279
|
-
|
|
280
|
-
|
|
281
|
+
default63 as useHasWorkflow,
|
|
282
|
+
default64 as useHover,
|
|
281
283
|
useHttpErrorToast,
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
284
|
+
default65 as useImage,
|
|
285
|
+
default66 as useInfiniteScroll,
|
|
286
|
+
default68 as useIsAdmc,
|
|
287
|
+
default67 as useIsAdml,
|
|
288
|
+
default69 as useIsAdmlcOrAdmc,
|
|
289
|
+
default70 as useKeyPress,
|
|
290
|
+
default71 as useLibraryUrl,
|
|
291
|
+
default72 as useMediaLibrary,
|
|
292
|
+
default73 as useScrollToTop,
|
|
293
|
+
default94 as useShareMutation,
|
|
294
|
+
default74 as useTitle,
|
|
295
|
+
default75 as useToast,
|
|
296
|
+
default76 as useToggle,
|
|
297
|
+
default77 as useTrapFocus,
|
|
298
|
+
default78 as useTrashedResource,
|
|
297
299
|
useTreeSortable,
|
|
298
300
|
useTreeView,
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
301
|
+
default92 as useUpdateMutation,
|
|
302
|
+
default79 as useUpload,
|
|
303
|
+
default80 as useUploadFiles,
|
|
304
|
+
default81 as useUser,
|
|
305
|
+
default82 as useWorkspaceFile,
|
|
306
|
+
default83 as useWorkspaceFolders,
|
|
307
|
+
default84 as useWorkspaceFoldersTree,
|
|
308
|
+
default85 as useWorkspaceSearch,
|
|
309
|
+
default86 as useXitiTrackPageLoad,
|
|
310
|
+
default87 as useZendeskGuide,
|
|
309
311
|
wrapTreeNode
|
|
310
312
|
};
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
.segmented-control-wrapper.ant-segmented{border-radius:var(--edifice-border-radius-xl);--ant-segmented-track-padding: var(--edifice-spacer-4);--ant-control-height: var(--edifice-spacer-48);--ant-control-padding-horizontal: var(--edifice-spacer-8);--ant-line-width: var(--edifice-spacer-0);--ant-segmented-track-bg: var(--edifice-white);border:1px solid var(--edifice-secondary-200)}.segmented-control-wrapper.ant-segmented .ant-segmented-group{gap:var(--edifice-spacer-4)}.segmented-control-wrapper.ant-segmented .ant-segmented-item{border-radius:var(--edifice-border-radius-lg);--ant-segmented-item-color: var(--edifice-body-color)}.segmented-control-wrapper.ant-segmented .ant-segmented-item:hover{--ant-segmented-item-hover-color:var(--edifice-body-color);--ant-segmented-item-hover-bg: var(--edifice-gray-300)}.segmented-control-wrapper.ant-segmented .ant-segmented-item-selected{--ant-segmented-item-selected-bg: var(--edifice-secondary-200);--ant-segmented-item-selected-color: var(--edifice-body-color);box-shadow:none}.segmented-control-wrapper.ant-segmented .ant-segmented-thumb{--ant-segmented-item-selected-bg: var(--edifice-secondary-200);box-shadow:none;border-radius:var(--edifice-border-radius-lg)}:root .edifice{--ant-border-radius: var(--edifice-border-radius)}
|
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.20251205090431",
|
|
4
4
|
"description": "Edifice React Library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -133,9 +133,9 @@
|
|
|
133
133
|
"react-slugify": "^3.0.3",
|
|
134
134
|
"swiper": "^10.1.0",
|
|
135
135
|
"ua-parser-js": "^1.0.36",
|
|
136
|
-
"@edifice.io/bootstrap": "2.5.2-develop-b2school-actualites.
|
|
137
|
-
"@edifice.io/
|
|
138
|
-
"@edifice.io/
|
|
136
|
+
"@edifice.io/bootstrap": "2.5.2-develop-b2school-actualites.20251205090431",
|
|
137
|
+
"@edifice.io/tiptap-extensions": "2.5.2-develop-b2school-actualites.20251205090431",
|
|
138
|
+
"@edifice.io/utilities": "2.5.2-develop-b2school-actualites.20251205090431"
|
|
139
139
|
},
|
|
140
140
|
"devDependencies": {
|
|
141
141
|
"@babel/plugin-transform-react-pure-annotations": "^7.23.3",
|
|
@@ -166,8 +166,8 @@
|
|
|
166
166
|
"vite": "^5.4.11",
|
|
167
167
|
"vite-plugin-dts": "^4.1.0",
|
|
168
168
|
"vite-tsconfig-paths": "^5.0.1",
|
|
169
|
-
"@edifice.io/client": "2.5.2-develop-b2school-actualites.
|
|
170
|
-
"@edifice.io/config": "2.5.2-develop-b2school-actualites.
|
|
169
|
+
"@edifice.io/client": "2.5.2-develop-b2school-actualites.20251205090431",
|
|
170
|
+
"@edifice.io/config": "2.5.2-develop-b2school-actualites.20251205090431"
|
|
171
171
|
},
|
|
172
172
|
"peerDependencies": {
|
|
173
173
|
"@react-spring/web": "^9.7.5",
|