@edifice.io/react 2.2.11-develop-pedago.20250707122637 → 2.2.11-develop-pedago.20250708131559
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/Flex/Flex.d.ts +1 -0
- package/dist/components/Flex/Flex.js +2 -1
- package/dist/components/Layout/Layout.d.ts +3 -1
- package/dist/components/Layout/Layout.js +2 -1
- package/dist/components/Tabs/components/Tabs.d.ts +13 -1
- package/dist/components/Tabs/components/Tabs.js +5 -2
- package/dist/components/Tabs/components/TabsList.d.ts +8 -0
- package/dist/components/Tabs/components/TabsList.js +9 -2
- package/dist/icons.js +182 -178
- package/dist/modules/icons/components/IconMegaphone.d.ts +7 -0
- package/dist/modules/icons/components/IconMegaphone.js +12 -0
- package/dist/modules/icons/components/IconNotes.d.ts +7 -0
- package/dist/modules/icons/components/IconNotes.js +13 -0
- package/dist/modules/icons/components/index.d.ts +2 -0
- package/package.json +6 -6
|
@@ -5,6 +5,7 @@ interface FlexProps extends React.HTMLAttributes<HTMLElement> {
|
|
|
5
5
|
align?: 'start' | 'end' | 'center' | 'baseline' | 'stretch';
|
|
6
6
|
justify?: 'start' | 'end' | 'center' | 'between' | 'around' | 'evenly';
|
|
7
7
|
gap?: string;
|
|
8
|
+
fill?: boolean;
|
|
8
9
|
wrap?: 'wrap' | 'nowrap' | 'reverse';
|
|
9
10
|
className?: string;
|
|
10
11
|
}
|
|
@@ -6,12 +6,13 @@ const Flex = ({
|
|
|
6
6
|
align,
|
|
7
7
|
justify,
|
|
8
8
|
gap,
|
|
9
|
+
fill,
|
|
9
10
|
wrap = "wrap",
|
|
10
11
|
className,
|
|
11
12
|
children,
|
|
12
13
|
...restProps
|
|
13
14
|
}) => {
|
|
14
|
-
const classes = clsx("d-flex", direction &&
|
|
15
|
+
const classes = clsx("d-flex", direction && `flex-${direction}`, fill && "flex-fill", align && `align-items-${align}`, justify && `justify-content-${justify}`, gap && `gap-${gap}`, wrap && `flex-${wrap}`, className);
|
|
15
16
|
return /* @__PURE__ */ jsx(Component, { className: classes, ...restProps, children });
|
|
16
17
|
};
|
|
17
18
|
export {
|
|
@@ -6,9 +6,11 @@ export interface LayoutProps extends ComponentPropsWithoutRef<any> {
|
|
|
6
6
|
headless?: boolean;
|
|
7
7
|
/** Control white background - defaults to true */
|
|
8
8
|
whiteBg?: boolean;
|
|
9
|
+
/** Additional class name */
|
|
10
|
+
className?: string;
|
|
9
11
|
}
|
|
10
12
|
export declare const Layout: {
|
|
11
|
-
({ children, headless, whiteBg, ...restProps }: LayoutProps): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
({ children, headless, whiteBg, className, ...restProps }: LayoutProps): import("react/jsx-runtime").JSX.Element;
|
|
12
14
|
displayName: string;
|
|
13
15
|
};
|
|
14
16
|
export default Layout;
|
|
@@ -13,6 +13,7 @@ const Layout = ({
|
|
|
13
13
|
children,
|
|
14
14
|
headless = !1,
|
|
15
15
|
whiteBg = !0,
|
|
16
|
+
className,
|
|
16
17
|
...restProps
|
|
17
18
|
}) => {
|
|
18
19
|
const {
|
|
@@ -30,7 +31,7 @@ const Layout = ({
|
|
|
30
31
|
"container-fluid": !headless,
|
|
31
32
|
"rounded-4 border": (theme == null ? void 0 : theme.is1d) && !headless,
|
|
32
33
|
"mt-24": (theme == null ? void 0 : theme.is1d) && !headless
|
|
33
|
-
}), renderHeader = headless ? null : /* @__PURE__ */ jsx(Header, { is1d: theme == null ? void 0 : theme.is1d, src: theme == null ? void 0 : theme.basePath }), renderCookies = showCookiesConsent && /* @__PURE__ */ jsx(Alert, { type: "info", className: "m-12 rgpd", isConfirm: !0, position: "bottom-right", button: /* @__PURE__ */ jsx(Button, { color: "tertiary", variant: "ghost", onClick: handleConsultCookies, children: t("rgpd.cookies.banner.button.consult") }), onClose: handleCloseCookiesConsent, children: t("rgpd.cookies.banner.text1") }), renderToaster = /* @__PURE__ */ jsx(Toaster, { containerClassName: "toaster-container", toastOptions: {
|
|
34
|
+
}, className), renderHeader = headless ? null : /* @__PURE__ */ jsx(Header, { is1d: theme == null ? void 0 : theme.is1d, src: theme == null ? void 0 : theme.basePath }), renderCookies = showCookiesConsent && /* @__PURE__ */ jsx(Alert, { type: "info", className: "m-12 rgpd", isConfirm: !0, position: "bottom-right", button: /* @__PURE__ */ jsx(Button, { color: "tertiary", variant: "ghost", onClick: handleConsultCookies, children: t("rgpd.cookies.banner.button.consult") }), onClose: handleCloseCookiesConsent, children: t("rgpd.cookies.banner.text1") }), renderToaster = /* @__PURE__ */ jsx(Toaster, { containerClassName: "toaster-container", toastOptions: {
|
|
34
35
|
position: "top-right"
|
|
35
36
|
} });
|
|
36
37
|
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
@@ -25,12 +25,24 @@ export interface TabsProps {
|
|
|
25
25
|
* Whether tabs should take full available height
|
|
26
26
|
*/
|
|
27
27
|
fullHeight?: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* Whether the tab list should be sticky
|
|
30
|
+
*/
|
|
31
|
+
isSticky?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
* The top offset for the sticky tab list
|
|
34
|
+
*/
|
|
35
|
+
stickyTop?: number;
|
|
36
|
+
/**
|
|
37
|
+
* Additional class names for the Tabs component
|
|
38
|
+
*/
|
|
39
|
+
className?: string;
|
|
28
40
|
}
|
|
29
41
|
/**
|
|
30
42
|
* Tab Content displayed one at a time when a Tab Item is selected
|
|
31
43
|
*/
|
|
32
44
|
export declare const Tabs: {
|
|
33
|
-
({ defaultId, items, fullWidth, fullHeight, onChange, children, }: TabsProps): import("react/jsx-runtime").JSX.Element;
|
|
45
|
+
({ defaultId, items, fullWidth, fullHeight, onChange, children, isSticky, stickyTop, className, }: TabsProps): import("react/jsx-runtime").JSX.Element;
|
|
34
46
|
Item: {
|
|
35
47
|
({ icon, badge, label, id, order, }: TabsItemProps & {
|
|
36
48
|
order: number;
|
|
@@ -11,7 +11,10 @@ const Tabs = ({
|
|
|
11
11
|
fullWidth = !1,
|
|
12
12
|
fullHeight = !1,
|
|
13
13
|
onChange,
|
|
14
|
-
children
|
|
14
|
+
children,
|
|
15
|
+
isSticky = !1,
|
|
16
|
+
stickyTop = 0,
|
|
17
|
+
className
|
|
15
18
|
}) => {
|
|
16
19
|
const {
|
|
17
20
|
activeTab,
|
|
@@ -34,7 +37,7 @@ const Tabs = ({
|
|
|
34
37
|
onKeyDown
|
|
35
38
|
}), [activeTab, items, onKeyDown, setSelectedTab, tabUnderlineLeft, tabUnderlineWidth, tabsRef]), currentItem = items.find((item) => item.id === activeTab);
|
|
36
39
|
return /* @__PURE__ */ jsx(TabsContext.Provider, { value, children: typeof children == "function" ? children(currentItem) : /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
37
|
-
/* @__PURE__ */ jsx(Tabs.List, { fullWidth }),
|
|
40
|
+
/* @__PURE__ */ jsx(Tabs.List, { fullWidth, isSticky, stickyTop, className }),
|
|
38
41
|
/* @__PURE__ */ jsx(Tabs.Panel, { currentItem, fullHeight, children: currentItem == null ? void 0 : currentItem.content })
|
|
39
42
|
] }) });
|
|
40
43
|
};
|
|
@@ -4,6 +4,14 @@ export interface TabsListProps extends ComponentPropsWithoutRef<'div'> {
|
|
|
4
4
|
* Whether tabs should take full available width
|
|
5
5
|
*/
|
|
6
6
|
fullWidth?: boolean;
|
|
7
|
+
/**
|
|
8
|
+
* Whether the tab list should be sticky
|
|
9
|
+
*/
|
|
10
|
+
isSticky?: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* The top offset for the sticky tab list
|
|
13
|
+
*/
|
|
14
|
+
stickyTop?: number;
|
|
7
15
|
}
|
|
8
16
|
declare const TabsList: {
|
|
9
17
|
(props: TabsListProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -10,11 +10,18 @@ const TabsList = (props) => {
|
|
|
10
10
|
} = useTabsContext(), {
|
|
11
11
|
className,
|
|
12
12
|
fullWidth,
|
|
13
|
+
isSticky,
|
|
14
|
+
stickyTop,
|
|
13
15
|
...restProps
|
|
14
16
|
} = props, ulClasses = clsx("nav nav-tabs flex-nowrap", {
|
|
15
17
|
"w-100": fullWidth
|
|
16
|
-
}), tabslist = clsx("
|
|
17
|
-
|
|
18
|
+
}), tabslist = clsx(" flex-shrink-0 overflow-x-auto", {
|
|
19
|
+
"position-sticky z-1": isSticky,
|
|
20
|
+
"position-relative": !isSticky
|
|
21
|
+
}, className);
|
|
22
|
+
return /* @__PURE__ */ jsxs("div", { className: tabslist, ...restProps, style: isSticky ? {
|
|
23
|
+
top: stickyTop
|
|
24
|
+
} : void 0, children: [
|
|
18
25
|
/* @__PURE__ */ jsx("ul", { className: ulClasses, role: "tablist", children: items.map((item, order) => /* @__PURE__ */ jsx(Tabs.Item, { order, ...item }, item.id)) }),
|
|
19
26
|
/* @__PURE__ */ jsx("span", { className: "nav-slide", style: {
|
|
20
27
|
left: tabUnderlineLeft,
|
package/dist/icons.js
CHANGED
|
@@ -74,95 +74,97 @@ import { default as default74 } from "./modules/icons/components/IconLoader.js";
|
|
|
74
74
|
import { default as default75 } from "./modules/icons/components/IconLock.js";
|
|
75
75
|
import { default as default76 } from "./modules/icons/components/IconMailRecall.js";
|
|
76
76
|
import { default as default77 } from "./modules/icons/components/IconMail.js";
|
|
77
|
-
import { default as default78 } from "./modules/icons/components/
|
|
78
|
-
import { default as default79 } from "./modules/icons/components/
|
|
79
|
-
import { default as default80 } from "./modules/icons/components/
|
|
80
|
-
import { default as default81 } from "./modules/icons/components/
|
|
81
|
-
import { default as default82 } from "./modules/icons/components/
|
|
82
|
-
import { default as default83 } from "./modules/icons/components/
|
|
83
|
-
import { default as default84 } from "./modules/icons/components/
|
|
84
|
-
import { default as default85 } from "./modules/icons/components/
|
|
85
|
-
import { default as default86 } from "./modules/icons/components/
|
|
86
|
-
import { default as default87 } from "./modules/icons/components/
|
|
87
|
-
import { default as default88 } from "./modules/icons/components/
|
|
88
|
-
import { default as default89 } from "./modules/icons/components/
|
|
89
|
-
import { default as default90 } from "./modules/icons/components/
|
|
90
|
-
import { default as default91 } from "./modules/icons/components/
|
|
91
|
-
import { default as default92 } from "./modules/icons/components/
|
|
92
|
-
import { default as default93 } from "./modules/icons/components/
|
|
93
|
-
import { default as default94 } from "./modules/icons/components/
|
|
94
|
-
import { default as default95 } from "./modules/icons/components/
|
|
95
|
-
import { default as default96 } from "./modules/icons/components/
|
|
96
|
-
import { default as default97 } from "./modules/icons/components/
|
|
97
|
-
import { default as default98 } from "./modules/icons/components/
|
|
98
|
-
import { default as default99 } from "./modules/icons/components/
|
|
99
|
-
import { default as default100 } from "./modules/icons/components/
|
|
100
|
-
import { default as default101 } from "./modules/icons/components/
|
|
101
|
-
import { default as default102 } from "./modules/icons/components/
|
|
102
|
-
import { default as default103 } from "./modules/icons/components/
|
|
103
|
-
import { default as default104 } from "./modules/icons/components/
|
|
104
|
-
import { default as default105 } from "./modules/icons/components/
|
|
105
|
-
import { default as default106 } from "./modules/icons/components/
|
|
106
|
-
import { default as default107 } from "./modules/icons/components/
|
|
107
|
-
import { default as default108 } from "./modules/icons/components/
|
|
108
|
-
import { default as default109 } from "./modules/icons/components/
|
|
109
|
-
import { default as default110 } from "./modules/icons/components/
|
|
110
|
-
import { default as default111 } from "./modules/icons/components/
|
|
111
|
-
import { default as default112 } from "./modules/icons/components/
|
|
112
|
-
import { default as default113 } from "./modules/icons/components/
|
|
113
|
-
import { default as default114 } from "./modules/icons/components/
|
|
114
|
-
import { default as default115 } from "./modules/icons/components/
|
|
115
|
-
import { default as default116 } from "./modules/icons/components/
|
|
116
|
-
import { default as default117 } from "./modules/icons/components/
|
|
117
|
-
import { default as default118 } from "./modules/icons/components/
|
|
118
|
-
import { default as default119 } from "./modules/icons/components/
|
|
119
|
-
import { default as default120 } from "./modules/icons/components/
|
|
120
|
-
import { default as default121 } from "./modules/icons/components/
|
|
121
|
-
import { default as default122 } from "./modules/icons/components/
|
|
122
|
-
import { default as default123 } from "./modules/icons/components/
|
|
123
|
-
import { default as default124 } from "./modules/icons/components/
|
|
124
|
-
import { default as default125 } from "./modules/icons/components/
|
|
125
|
-
import { default as default126 } from "./modules/icons/components/
|
|
126
|
-
import { default as default127 } from "./modules/icons/components/
|
|
127
|
-
import { default as default128 } from "./modules/icons/components/
|
|
128
|
-
import { default as default129 } from "./modules/icons/components/
|
|
129
|
-
import { default as default130 } from "./modules/icons/components/
|
|
130
|
-
import { default as default131 } from "./modules/icons/components/
|
|
131
|
-
import { default as default132 } from "./modules/icons/components/
|
|
132
|
-
import { default as default133 } from "./modules/icons/components/
|
|
133
|
-
import { default as default134 } from "./modules/icons/components/
|
|
134
|
-
import { default as default135 } from "./modules/icons/components/
|
|
135
|
-
import { default as default136 } from "./modules/icons/components/
|
|
136
|
-
import { default as default137 } from "./modules/icons/components/
|
|
137
|
-
import { default as default138 } from "./modules/icons/components/
|
|
138
|
-
import { default as default139 } from "./modules/icons/components/
|
|
139
|
-
import { default as default140 } from "./modules/icons/components/
|
|
140
|
-
import { default as default141 } from "./modules/icons/components/
|
|
141
|
-
import { default as default142 } from "./modules/icons/components/
|
|
142
|
-
import { default as default143 } from "./modules/icons/components/
|
|
143
|
-
import { default as default144 } from "./modules/icons/components/
|
|
144
|
-
import { default as default145 } from "./modules/icons/components/
|
|
145
|
-
import { default as default146 } from "./modules/icons/components/
|
|
146
|
-
import { default as default147 } from "./modules/icons/components/
|
|
147
|
-
import { default as default148 } from "./modules/icons/components/
|
|
148
|
-
import { default as default149 } from "./modules/icons/components/
|
|
149
|
-
import { default as default150 } from "./modules/icons/components/
|
|
150
|
-
import { default as default151 } from "./modules/icons/components/
|
|
151
|
-
import { default as default152 } from "./modules/icons/components/
|
|
152
|
-
import { default as default153 } from "./modules/icons/components/
|
|
153
|
-
import { default as default154 } from "./modules/icons/components/
|
|
154
|
-
import { default as default155 } from "./modules/icons/components/
|
|
155
|
-
import { default as default156 } from "./modules/icons/components/
|
|
156
|
-
import { default as default157 } from "./modules/icons/components/
|
|
157
|
-
import { default as default158 } from "./modules/icons/components/
|
|
158
|
-
import { default as default159 } from "./modules/icons/components/
|
|
159
|
-
import { default as default160 } from "./modules/icons/components/
|
|
160
|
-
import { default as default161 } from "./modules/icons/components/
|
|
161
|
-
import { default as default162 } from "./modules/icons/components/
|
|
162
|
-
import { default as default163 } from "./modules/icons/components/
|
|
163
|
-
import { default as default164 } from "./modules/icons/components/
|
|
164
|
-
import { default as default165 } from "./modules/icons/components/
|
|
165
|
-
import { default as default166 } from "./modules/icons/components/
|
|
77
|
+
import { default as default78 } from "./modules/icons/components/IconMegaphone.js";
|
|
78
|
+
import { default as default79 } from "./modules/icons/components/IconMergeCells.js";
|
|
79
|
+
import { default as default80 } from "./modules/icons/components/IconMessageInfo.js";
|
|
80
|
+
import { default as default81 } from "./modules/icons/components/IconMicOff.js";
|
|
81
|
+
import { default as default82 } from "./modules/icons/components/IconMic.js";
|
|
82
|
+
import { default as default83 } from "./modules/icons/components/IconMinus.js";
|
|
83
|
+
import { default as default84 } from "./modules/icons/components/IconMove.js";
|
|
84
|
+
import { default as default85 } from "./modules/icons/components/IconNoColors.js";
|
|
85
|
+
import { default as default86 } from "./modules/icons/components/IconNotes.js";
|
|
86
|
+
import { default as default87 } from "./modules/icons/components/IconOptions.js";
|
|
87
|
+
import { default as default88 } from "./modules/icons/components/IconOrderedList.js";
|
|
88
|
+
import { default as default89 } from "./modules/icons/components/IconPaperclip.js";
|
|
89
|
+
import { default as default90 } from "./modules/icons/components/IconPause.js";
|
|
90
|
+
import { default as default91 } from "./modules/icons/components/IconPinOff.js";
|
|
91
|
+
import { default as default92 } from "./modules/icons/components/IconPinOn.js";
|
|
92
|
+
import { default as default93 } from "./modules/icons/components/IconPlaceholder.js";
|
|
93
|
+
import { default as default94 } from "./modules/icons/components/IconPlayFilled.js";
|
|
94
|
+
import { default as default95 } from "./modules/icons/components/IconPlay.js";
|
|
95
|
+
import { default as default96 } from "./modules/icons/components/IconPlus.js";
|
|
96
|
+
import { default as default97 } from "./modules/icons/components/IconPointerDefault.js";
|
|
97
|
+
import { default as default98 } from "./modules/icons/components/IconPointerHand.js";
|
|
98
|
+
import { default as default99 } from "./modules/icons/components/IconPrint.js";
|
|
99
|
+
import { default as default100 } from "./modules/icons/components/IconQuestionMark.js";
|
|
100
|
+
import { default as default101 } from "./modules/icons/components/IconQuestion.js";
|
|
101
|
+
import { default as default102 } from "./modules/icons/components/IconRafterDown.js";
|
|
102
|
+
import { default as default103 } from "./modules/icons/components/IconRafterLeft.js";
|
|
103
|
+
import { default as default104 } from "./modules/icons/components/IconRafterRight.js";
|
|
104
|
+
import { default as default105 } from "./modules/icons/components/IconRafterUp.js";
|
|
105
|
+
import { default as default106 } from "./modules/icons/components/IconReaction.js";
|
|
106
|
+
import { default as default107 } from "./modules/icons/components/IconReadMail.js";
|
|
107
|
+
import { default as default108 } from "./modules/icons/components/IconRecordPause.js";
|
|
108
|
+
import { default as default109 } from "./modules/icons/components/IconRecordStop.js";
|
|
109
|
+
import { default as default110 } from "./modules/icons/components/IconRecordVideo.js";
|
|
110
|
+
import { default as default111 } from "./modules/icons/components/IconRecord.js";
|
|
111
|
+
import { default as default112 } from "./modules/icons/components/IconRedo.js";
|
|
112
|
+
import { default as default113 } from "./modules/icons/components/IconRefresh.js";
|
|
113
|
+
import { default as default114 } from "./modules/icons/components/IconReset.js";
|
|
114
|
+
import { default as default115 } from "./modules/icons/components/IconRestart.js";
|
|
115
|
+
import { default as default116 } from "./modules/icons/components/IconRestore.js";
|
|
116
|
+
import { default as default117 } from "./modules/icons/components/IconSave.js";
|
|
117
|
+
import { default as default118 } from "./modules/icons/components/IconSearch.js";
|
|
118
|
+
import { default as default119 } from "./modules/icons/components/IconSee.js";
|
|
119
|
+
import { default as default120 } from "./modules/icons/components/IconSend.js";
|
|
120
|
+
import { default as default121 } from "./modules/icons/components/IconSetBackground.js";
|
|
121
|
+
import { default as default122 } from "./modules/icons/components/IconSettings.js";
|
|
122
|
+
import { default as default123 } from "./modules/icons/components/IconShare.js";
|
|
123
|
+
import { default as default124 } from "./modules/icons/components/IconSignature.js";
|
|
124
|
+
import { default as default125 } from "./modules/icons/components/IconSmartphone.js";
|
|
125
|
+
import { default as default126 } from "./modules/icons/components/IconSmiley.js";
|
|
126
|
+
import { default as default127 } from "./modules/icons/components/IconSortAscendingLetters.js";
|
|
127
|
+
import { default as default128 } from "./modules/icons/components/IconSortDescendingLetters.js";
|
|
128
|
+
import { default as default129 } from "./modules/icons/components/IconSortDescending.js";
|
|
129
|
+
import { default as default130 } from "./modules/icons/components/IconSortTime.js";
|
|
130
|
+
import { default as default131 } from "./modules/icons/components/IconSpeechToText.js";
|
|
131
|
+
import { default as default132 } from "./modules/icons/components/IconSplitCells.js";
|
|
132
|
+
import { default as default133 } from "./modules/icons/components/IconSquareRoot.js";
|
|
133
|
+
import { default as default134 } from "./modules/icons/components/IconSubscript.js";
|
|
134
|
+
import { default as default135 } from "./modules/icons/components/IconSuccessFill.js";
|
|
135
|
+
import { default as default136 } from "./modules/icons/components/IconSuccessOutline.js";
|
|
136
|
+
import { default as default137 } from "./modules/icons/components/IconSuperscript.js";
|
|
137
|
+
import { default as default138 } from "./modules/icons/components/IconTable.js";
|
|
138
|
+
import { default as default139 } from "./modules/icons/components/IconTextBold.js";
|
|
139
|
+
import { default as default140 } from "./modules/icons/components/IconTextColor.js";
|
|
140
|
+
import { default as default141 } from "./modules/icons/components/IconTextHighlight.js";
|
|
141
|
+
import { default as default142 } from "./modules/icons/components/IconTextItalic.js";
|
|
142
|
+
import { default as default143 } from "./modules/icons/components/IconTextPage.js";
|
|
143
|
+
import { default as default144 } from "./modules/icons/components/IconTextSize.js";
|
|
144
|
+
import { default as default145 } from "./modules/icons/components/IconTextToSpeechOff.js";
|
|
145
|
+
import { default as default146 } from "./modules/icons/components/IconTextToSpeech.js";
|
|
146
|
+
import { default as default147 } from "./modules/icons/components/IconTextTypo.js";
|
|
147
|
+
import { default as default148 } from "./modules/icons/components/IconTextUnderline.js";
|
|
148
|
+
import { default as default149 } from "./modules/icons/components/IconTextVanilla.js";
|
|
149
|
+
import { default as default150 } from "./modules/icons/components/IconToolCenter.js";
|
|
150
|
+
import { default as default151 } from "./modules/icons/components/IconTool.js";
|
|
151
|
+
import { default as default152 } from "./modules/icons/components/IconTrendingUp.js";
|
|
152
|
+
import { default as default153 } from "./modules/icons/components/IconUndoAll.js";
|
|
153
|
+
import { default as default154 } from "./modules/icons/components/IconUndo.js";
|
|
154
|
+
import { default as default155 } from "./modules/icons/components/IconUnlink.js";
|
|
155
|
+
import { default as default156 } from "./modules/icons/components/IconUnlock.js";
|
|
156
|
+
import { default as default157 } from "./modules/icons/components/IconUnreadMail.js";
|
|
157
|
+
import { default as default158 } from "./modules/icons/components/IconUpload.js";
|
|
158
|
+
import { default as default159 } from "./modules/icons/components/IconUserSearch.js";
|
|
159
|
+
import { default as default160 } from "./modules/icons/components/IconUser.js";
|
|
160
|
+
import { default as default161 } from "./modules/icons/components/IconUsers.js";
|
|
161
|
+
import { default as default162 } from "./modules/icons/components/IconVideo.js";
|
|
162
|
+
import { default as default163 } from "./modules/icons/components/IconViewCalendar.js";
|
|
163
|
+
import { default as default164 } from "./modules/icons/components/IconViewList.js";
|
|
164
|
+
import { default as default165 } from "./modules/icons/components/IconWand.js";
|
|
165
|
+
import { default as default166 } from "./modules/icons/components/IconWrite.js";
|
|
166
|
+
import { default as default167 } from "./modules/icons/components/IconZoomIn.js";
|
|
167
|
+
import { default as default168 } from "./modules/icons/components/IconZoomOut.js";
|
|
166
168
|
export {
|
|
167
169
|
default3 as IconAdd,
|
|
168
170
|
default2 as IconAddUser,
|
|
@@ -240,93 +242,95 @@ export {
|
|
|
240
242
|
default75 as IconLock,
|
|
241
243
|
default77 as IconMail,
|
|
242
244
|
default76 as IconMailRecall,
|
|
243
|
-
default78 as
|
|
244
|
-
default79 as
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
default83 as
|
|
249
|
-
default84 as
|
|
250
|
-
default85 as
|
|
251
|
-
default86 as
|
|
252
|
-
default87 as
|
|
253
|
-
default88 as
|
|
254
|
-
default89 as
|
|
255
|
-
default90 as
|
|
256
|
-
default91 as
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
default96 as
|
|
262
|
-
default97 as
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
default102 as
|
|
268
|
-
default103 as
|
|
269
|
-
default104 as
|
|
270
|
-
default105 as
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
default108 as
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
default112 as
|
|
278
|
-
default113 as
|
|
279
|
-
default114 as
|
|
280
|
-
default115 as
|
|
281
|
-
default116 as
|
|
282
|
-
default117 as
|
|
283
|
-
default118 as
|
|
284
|
-
default119 as
|
|
285
|
-
default120 as
|
|
286
|
-
default121 as
|
|
287
|
-
default122 as
|
|
288
|
-
default123 as
|
|
289
|
-
default124 as
|
|
290
|
-
default125 as
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
default130 as
|
|
296
|
-
default131 as
|
|
297
|
-
default132 as
|
|
298
|
-
default133 as
|
|
299
|
-
default134 as
|
|
300
|
-
default135 as
|
|
301
|
-
default136 as
|
|
302
|
-
default137 as
|
|
303
|
-
default138 as
|
|
304
|
-
default139 as
|
|
305
|
-
default140 as
|
|
306
|
-
default141 as
|
|
307
|
-
default142 as
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
default147 as
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
default155 as
|
|
321
|
-
default156 as
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
default161 as
|
|
327
|
-
default162 as
|
|
328
|
-
default163 as
|
|
329
|
-
default164 as
|
|
330
|
-
default165 as
|
|
331
|
-
default166 as
|
|
245
|
+
default78 as IconMegaphone,
|
|
246
|
+
default79 as IconMergeCells,
|
|
247
|
+
default80 as IconMessageInfo,
|
|
248
|
+
default82 as IconMic,
|
|
249
|
+
default81 as IconMicOff,
|
|
250
|
+
default83 as IconMinus,
|
|
251
|
+
default84 as IconMove,
|
|
252
|
+
default85 as IconNoColors,
|
|
253
|
+
default86 as IconNotes,
|
|
254
|
+
default87 as IconOptions,
|
|
255
|
+
default88 as IconOrderedList,
|
|
256
|
+
default89 as IconPaperclip,
|
|
257
|
+
default90 as IconPause,
|
|
258
|
+
default91 as IconPinOff,
|
|
259
|
+
default92 as IconPinOn,
|
|
260
|
+
default93 as IconPlaceholder,
|
|
261
|
+
default95 as IconPlay,
|
|
262
|
+
default94 as IconPlayFilled,
|
|
263
|
+
default96 as IconPlus,
|
|
264
|
+
default97 as IconPointerDefault,
|
|
265
|
+
default98 as IconPointerHand,
|
|
266
|
+
default99 as IconPrint,
|
|
267
|
+
default101 as IconQuestion,
|
|
268
|
+
default100 as IconQuestionMark,
|
|
269
|
+
default102 as IconRafterDown,
|
|
270
|
+
default103 as IconRafterLeft,
|
|
271
|
+
default104 as IconRafterRight,
|
|
272
|
+
default105 as IconRafterUp,
|
|
273
|
+
default106 as IconReaction,
|
|
274
|
+
default107 as IconReadMail,
|
|
275
|
+
default111 as IconRecord,
|
|
276
|
+
default108 as IconRecordPause,
|
|
277
|
+
default109 as IconRecordStop,
|
|
278
|
+
default110 as IconRecordVideo,
|
|
279
|
+
default112 as IconRedo,
|
|
280
|
+
default113 as IconRefresh,
|
|
281
|
+
default114 as IconReset,
|
|
282
|
+
default115 as IconRestart,
|
|
283
|
+
default116 as IconRestore,
|
|
284
|
+
default117 as IconSave,
|
|
285
|
+
default118 as IconSearch,
|
|
286
|
+
default119 as IconSee,
|
|
287
|
+
default120 as IconSend,
|
|
288
|
+
default121 as IconSetBackground,
|
|
289
|
+
default122 as IconSettings,
|
|
290
|
+
default123 as IconShare,
|
|
291
|
+
default124 as IconSignature,
|
|
292
|
+
default125 as IconSmartphone,
|
|
293
|
+
default126 as IconSmiley,
|
|
294
|
+
default127 as IconSortAscendingLetters,
|
|
295
|
+
default129 as IconSortDescending,
|
|
296
|
+
default128 as IconSortDescendingLetters,
|
|
297
|
+
default130 as IconSortTime,
|
|
298
|
+
default131 as IconSpeechToText,
|
|
299
|
+
default132 as IconSplitCells,
|
|
300
|
+
default133 as IconSquareRoot,
|
|
301
|
+
default134 as IconSubscript,
|
|
302
|
+
default135 as IconSuccessFill,
|
|
303
|
+
default136 as IconSuccessOutline,
|
|
304
|
+
default137 as IconSuperscript,
|
|
305
|
+
default138 as IconTable,
|
|
306
|
+
default139 as IconTextBold,
|
|
307
|
+
default140 as IconTextColor,
|
|
308
|
+
default141 as IconTextHighlight,
|
|
309
|
+
default142 as IconTextItalic,
|
|
310
|
+
default143 as IconTextPage,
|
|
311
|
+
default144 as IconTextSize,
|
|
312
|
+
default146 as IconTextToSpeech,
|
|
313
|
+
default145 as IconTextToSpeechOff,
|
|
314
|
+
default147 as IconTextTypo,
|
|
315
|
+
default148 as IconTextUnderline,
|
|
316
|
+
default149 as IconTextVanilla,
|
|
317
|
+
default151 as IconTool,
|
|
318
|
+
default150 as IconToolCenter,
|
|
319
|
+
default152 as IconTrendingUp,
|
|
320
|
+
default154 as IconUndo,
|
|
321
|
+
default153 as IconUndoAll,
|
|
322
|
+
default155 as IconUnlink,
|
|
323
|
+
default156 as IconUnlock,
|
|
324
|
+
default157 as IconUnreadMail,
|
|
325
|
+
default158 as IconUpload,
|
|
326
|
+
default160 as IconUser,
|
|
327
|
+
default159 as IconUserSearch,
|
|
328
|
+
default161 as IconUsers,
|
|
329
|
+
default162 as IconVideo,
|
|
330
|
+
default163 as IconViewCalendar,
|
|
331
|
+
default164 as IconViewList,
|
|
332
|
+
default165 as IconWand,
|
|
333
|
+
default166 as IconWrite,
|
|
334
|
+
default167 as IconZoomIn,
|
|
335
|
+
default168 as IconZoomOut
|
|
332
336
|
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconMegaphone: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconMegaphone;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconMegaphone = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { fill: "currentColor", fillRule: "evenodd", d: "M13.962 3.067c1.333-.809 3.038.15 3.038 1.71v13.446c0 1.56-1.705 2.519-3.038 1.71l-3.794-2.304a3.67 3.67 0 0 1-7.26-1.084A3 3 0 0 1 1 13.75v-4.5a3 3 0 0 1 3-3h4.44a1 1 0 0 0 .52-.145zM4.9 16.75h3.29a1.67 1.67 0 1 1-3.29 0M15 4.777 9.997 7.814a3 3 0 0 1-1.557.436H4a1 1 0 0 0-1 1v4.5a1 1 0 0 0 1 1h4.44a3 3 0 0 1 1.557.436L15 18.223zm6.055 3.055a1 1 0 0 0-1.11-1.664l-1.5 1a1 1 0 0 0 1.11 1.664zm-2.887 7.613a1 1 0 0 1 1.387-.277l1.5 1a1 1 0 1 1-1.11 1.664l-1.5-1a1 1 0 0 1-.277-1.387M19.5 11a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2z", clipRule: "evenodd" })
|
|
9
|
+
] });
|
|
10
|
+
export {
|
|
11
|
+
SvgIconMegaphone as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconNotes: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconNotes;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconNotes = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("path", { fill: "currentColor", fillRule: "evenodd", d: "M1 4a3 3 0 0 1 3-3h16a3 3 0 0 1 3 3v13a1 1 0 1 1-2 0V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h13a1 1 0 1 1 0 2H4a3 3 0 0 1-3-3z", clipRule: "evenodd" }),
|
|
9
|
+
/* @__PURE__ */ jsx("path", { fill: "currentColor", fillRule: "evenodd", d: "M18 18v1.586L19.586 18zm-2-1a1 1 0 0 1 1-1h5a1 1 0 0 1 .707 1.707l-5 5A1 1 0 0 1 16 22zM6 9a1 1 0 0 1 1-1h10a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1M6 14a1 1 0 0 1 1-1h6a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1", clipRule: "evenodd" })
|
|
10
|
+
] });
|
|
11
|
+
export {
|
|
12
|
+
SvgIconNotes as default
|
|
13
|
+
};
|
|
@@ -74,6 +74,7 @@ export { default as IconLoader } from './IconLoader';
|
|
|
74
74
|
export { default as IconLock } from './IconLock';
|
|
75
75
|
export { default as IconMailRecall } from './IconMailRecall';
|
|
76
76
|
export { default as IconMail } from './IconMail';
|
|
77
|
+
export { default as IconMegaphone } from './IconMegaphone';
|
|
77
78
|
export { default as IconMergeCells } from './IconMergeCells';
|
|
78
79
|
export { default as IconMessageInfo } from './IconMessageInfo';
|
|
79
80
|
export { default as IconMicOff } from './IconMicOff';
|
|
@@ -81,6 +82,7 @@ export { default as IconMic } from './IconMic';
|
|
|
81
82
|
export { default as IconMinus } from './IconMinus';
|
|
82
83
|
export { default as IconMove } from './IconMove';
|
|
83
84
|
export { default as IconNoColors } from './IconNoColors';
|
|
85
|
+
export { default as IconNotes } from './IconNotes';
|
|
84
86
|
export { default as IconOptions } from './IconOptions';
|
|
85
87
|
export { default as IconOrderedList } from './IconOrderedList';
|
|
86
88
|
export { default as IconPaperclip } from './IconPaperclip';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@edifice.io/react",
|
|
3
|
-
"version": "2.2.11-develop-pedago.
|
|
3
|
+
"version": "2.2.11-develop-pedago.20250708131559",
|
|
4
4
|
"description": "Edifice React Library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -130,9 +130,9 @@
|
|
|
130
130
|
"react-slugify": "^3.0.3",
|
|
131
131
|
"swiper": "^10.1.0",
|
|
132
132
|
"ua-parser-js": "^1.0.36",
|
|
133
|
-
"@edifice.io/
|
|
134
|
-
"@edifice.io/
|
|
135
|
-
"@edifice.io/utilities": "2.2.11-develop-pedago.
|
|
133
|
+
"@edifice.io/tiptap-extensions": "2.2.11-develop-pedago.20250708131559",
|
|
134
|
+
"@edifice.io/bootstrap": "2.2.11-develop-pedago.20250708131559",
|
|
135
|
+
"@edifice.io/utilities": "2.2.11-develop-pedago.20250708131559"
|
|
136
136
|
},
|
|
137
137
|
"devDependencies": {
|
|
138
138
|
"@babel/plugin-transform-react-pure-annotations": "^7.23.3",
|
|
@@ -163,8 +163,8 @@
|
|
|
163
163
|
"vite": "^5.4.11",
|
|
164
164
|
"vite-plugin-dts": "^4.1.0",
|
|
165
165
|
"vite-tsconfig-paths": "^5.0.1",
|
|
166
|
-
"@edifice.io/client": "2.2.11-develop-pedago.
|
|
167
|
-
"@edifice.io/config": "2.2.11-develop-pedago.
|
|
166
|
+
"@edifice.io/client": "2.2.11-develop-pedago.20250708131559",
|
|
167
|
+
"@edifice.io/config": "2.2.11-develop-pedago.20250708131559"
|
|
168
168
|
},
|
|
169
169
|
"peerDependencies": {
|
|
170
170
|
"@react-spring/web": "^9.7.5",
|