@staffbase/design 19.0.1 → 20.0.0
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/codemods/v17-migrate-spacing/README.md +72 -0
- package/codemods/v17-migrate-spacing/transform.js +152 -0
- package/codemods/v20-migrate-avatar/README.md +71 -0
- package/codemods/v20-migrate-avatar/transform.js +191 -0
- package/dist/chunk-CDHmpCQf.cjs +40 -0
- package/dist/components.css +1 -1
- package/dist/illustrations.cjs +541 -0
- package/dist/illustrations.cjs.map +1 -0
- package/dist/illustrations.css +52 -0
- package/dist/illustrations.d.ts +50 -0
- package/dist/illustrations.js +521 -0
- package/dist/illustrations.js.map +1 -0
- package/dist/main.cjs +241 -59
- package/dist/main.cjs.map +1 -1
- package/dist/main.d.ts +96 -20
- package/dist/main.js +231 -34
- package/dist/main.js.map +1 -1
- package/package.json +8 -1
package/dist/main.js
CHANGED
|
@@ -15,6 +15,7 @@ import clsx$1, { clsx } from "clsx";
|
|
|
15
15
|
import React, { cloneElement, createContext, createElement, forwardRef, isValidElement, memo, useCallback, useContext, useEffect, useId, useImperativeHandle, useMemo, useRef, useState } from "react";
|
|
16
16
|
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
17
17
|
import { AlertDialog as AlertDialog$1, Dialog as Dialog$1 } from "@base-ui/react";
|
|
18
|
+
import { Avatar as Avatar$1 } from "@base-ui/react/avatar";
|
|
18
19
|
import { Drawer } from "@base-ui/react/drawer";
|
|
19
20
|
import { Field as Field$1 } from "@base-ui/react/field";
|
|
20
21
|
import { useDropzone } from "react-dropzone";
|
|
@@ -246,11 +247,24 @@ ActionMenuItemIcon.displayName = "ActionMenuItemIcon";
|
|
|
246
247
|
ActionMenuItemLabel.displayName = "ActionMenuItemLabel";
|
|
247
248
|
//#endregion
|
|
248
249
|
//#region src/components/button/Button.tsx
|
|
250
|
+
function buttonVariants({ variant = "solid", color = "primary", iconOnly, className } = {}) {
|
|
251
|
+
return {
|
|
252
|
+
className: clsx$1("ds-button", className),
|
|
253
|
+
"data-variant": variant,
|
|
254
|
+
"data-color": color,
|
|
255
|
+
"data-icon-only": iconOnly ? true : void 0
|
|
256
|
+
};
|
|
257
|
+
}
|
|
249
258
|
var Button = forwardRef((props, ref) => {
|
|
250
|
-
const { children, className, variant
|
|
259
|
+
const { children, className, variant, color, iconOnly, ...rest } = props;
|
|
251
260
|
return /* @__PURE__ */ jsx("button", {
|
|
252
261
|
"data-c13y-component": "button",
|
|
253
|
-
|
|
262
|
+
...buttonVariants({
|
|
263
|
+
variant,
|
|
264
|
+
color,
|
|
265
|
+
iconOnly,
|
|
266
|
+
className
|
|
267
|
+
}),
|
|
254
268
|
...rest,
|
|
255
269
|
ref,
|
|
256
270
|
children
|
|
@@ -309,7 +323,7 @@ var Popup$6 = forwardRef((props, ref) => {
|
|
|
309
323
|
})]
|
|
310
324
|
});
|
|
311
325
|
});
|
|
312
|
-
var Title$
|
|
326
|
+
var Title$3 = forwardRef((props, ref) => {
|
|
313
327
|
const { className, ...rest } = props;
|
|
314
328
|
return /* @__PURE__ */ jsx(AlertDialog$1.Title, {
|
|
315
329
|
"data-c13y-component": "alert-dialog-title",
|
|
@@ -318,7 +332,7 @@ var Title$2 = forwardRef((props, ref) => {
|
|
|
318
332
|
ref
|
|
319
333
|
});
|
|
320
334
|
});
|
|
321
|
-
var Description$
|
|
335
|
+
var Description$4 = forwardRef((props, ref) => {
|
|
322
336
|
const { className, ...rest } = props;
|
|
323
337
|
return /* @__PURE__ */ jsx(AlertDialog$1.Description, {
|
|
324
338
|
"data-c13y-component": "alert-dialog-description",
|
|
@@ -333,11 +347,70 @@ var AlertDialog = {
|
|
|
333
347
|
Popup: Popup$6,
|
|
334
348
|
Cancel,
|
|
335
349
|
Action: Action$1,
|
|
336
|
-
Title: Title$
|
|
337
|
-
Description: Description$
|
|
350
|
+
Title: Title$3,
|
|
351
|
+
Description: Description$4,
|
|
338
352
|
Icon: Icon$1
|
|
339
353
|
};
|
|
340
354
|
//#endregion
|
|
355
|
+
//#region src/components/avatar/Avatar.tsx
|
|
356
|
+
var Root$10 = forwardRef((props, ref) => {
|
|
357
|
+
const { size = 40, className, ...rest } = props;
|
|
358
|
+
return /* @__PURE__ */ jsx(Avatar$1.Root, {
|
|
359
|
+
ref,
|
|
360
|
+
"data-size": size,
|
|
361
|
+
className: clsx$1("ds-avatar", className),
|
|
362
|
+
...rest
|
|
363
|
+
});
|
|
364
|
+
});
|
|
365
|
+
var Image = forwardRef((props, ref) => {
|
|
366
|
+
const { className, ...rest } = props;
|
|
367
|
+
return /* @__PURE__ */ jsx(Avatar$1.Image, {
|
|
368
|
+
"data-c13y-component": "avatar",
|
|
369
|
+
ref,
|
|
370
|
+
className: clsx$1("ds-avatar__image", className),
|
|
371
|
+
...rest
|
|
372
|
+
});
|
|
373
|
+
});
|
|
374
|
+
var AVATAR_COLORS = [
|
|
375
|
+
"cyan",
|
|
376
|
+
"pink",
|
|
377
|
+
"purple",
|
|
378
|
+
"teal"
|
|
379
|
+
];
|
|
380
|
+
function deriveColor(name) {
|
|
381
|
+
return AVATAR_COLORS[name.split("").reduce((acc, char) => acc + (char.codePointAt(0) ?? 0), 0) % AVATAR_COLORS.length] ?? "purple";
|
|
382
|
+
}
|
|
383
|
+
var Avatar = {
|
|
384
|
+
Root: Root$10,
|
|
385
|
+
Fallback: forwardRef((props, ref) => {
|
|
386
|
+
const { className, name, ...rest } = props;
|
|
387
|
+
return /* @__PURE__ */ jsx(Avatar$1.Fallback, {
|
|
388
|
+
"data-c13y-component": "avatar",
|
|
389
|
+
ref,
|
|
390
|
+
"data-color": name ? deriveColor(name) : void 0,
|
|
391
|
+
className: clsx$1("ds-avatar__fallback", className),
|
|
392
|
+
...rest
|
|
393
|
+
});
|
|
394
|
+
}),
|
|
395
|
+
Group: forwardRef((props, ref) => {
|
|
396
|
+
const { className, ...rest } = props;
|
|
397
|
+
return /* @__PURE__ */ jsx("div", {
|
|
398
|
+
ref,
|
|
399
|
+
className: clsx$1("ds-avatar__group", className),
|
|
400
|
+
...rest
|
|
401
|
+
});
|
|
402
|
+
}),
|
|
403
|
+
GroupCount: forwardRef((props, ref) => {
|
|
404
|
+
const { className, ...rest } = props;
|
|
405
|
+
return /* @__PURE__ */ jsx("div", {
|
|
406
|
+
ref,
|
|
407
|
+
className: clsx$1("ds-avatar__group-count", className),
|
|
408
|
+
...rest
|
|
409
|
+
});
|
|
410
|
+
}),
|
|
411
|
+
Image
|
|
412
|
+
};
|
|
413
|
+
//#endregion
|
|
341
414
|
//#region src/icons/AddCircleIcon.tsx
|
|
342
415
|
/**
|
|
343
416
|
* THIS IS A GENERATED FILE. PLEASE SEE `scripts/iconGenerator`.
|
|
@@ -3956,6 +4029,29 @@ var LogoutIcon = React.forwardRef((props, ref) => {
|
|
|
3956
4029
|
LogoutIcon.displayName = "LogoutIcon";
|
|
3957
4030
|
var LogoutIcon_default = React.memo(LogoutIcon);
|
|
3958
4031
|
//#endregion
|
|
4032
|
+
//#region src/icons/LongTextIcon.tsx
|
|
4033
|
+
/**
|
|
4034
|
+
* THIS IS A GENERATED FILE. PLEASE SEE `scripts/iconGenerator`.
|
|
4035
|
+
*/
|
|
4036
|
+
var LongTextIcon = React.forwardRef((props, ref) => {
|
|
4037
|
+
const { className, ...rest } = props;
|
|
4038
|
+
const finalClassName = ["ds-icon ds-icon-long-text", className].filter(Boolean).join(" ");
|
|
4039
|
+
return /* @__PURE__ */ jsx("svg", {
|
|
4040
|
+
"aria-hidden": "true",
|
|
4041
|
+
viewBox: "0 0 20.6367 15.7754",
|
|
4042
|
+
width: "1em",
|
|
4043
|
+
height: "1em",
|
|
4044
|
+
fill: "currentColor",
|
|
4045
|
+
...rest,
|
|
4046
|
+
className: finalClassName,
|
|
4047
|
+
ref,
|
|
4048
|
+
"data-c13y-component": "icon",
|
|
4049
|
+
children: /* @__PURE__ */ jsx("path", { d: "M19.3867 13.2754C19.7182 13.2754 20.0361 13.4073 20.2705 13.6416C20.5049 13.876 20.6367 14.1939 20.6367 14.5254C20.6367 14.8569 20.5049 15.1748 20.2705 15.4092C20.0361 15.6435 19.7182 15.7754 19.3867 15.7754H1.25C0.9185 15.7754 0.6006 15.6436 0.3662 15.4092C0.1318 15.1748 0 14.8569 0 14.5254C0 14.1939 0.1318 13.876 0.3662 13.6416C0.6006 13.4072 0.9185 13.2754 1.25 13.2754H19.3867ZM15.5684 6.6826C15.8998 6.6827 16.2178 6.8145 16.4521 7.0488C16.6865 7.2832 16.8184 7.6012 16.8184 7.9326C16.8184 8.2641 16.6865 8.582 16.4521 8.8164C16.2178 9.0507 15.8998 9.1825 15.5684 9.1826H1.25C0.9185 9.1826 0.6006 9.0508 0.3662 8.8164C0.1318 8.582 0 8.2641 0 7.9326C0 7.6011 0.1318 7.2833 0.3662 7.0488C0.6006 6.8144 0.9185 6.6826 1.25 6.6826H15.5684ZM19.3867 0C19.7182 0 20.0361 0.1319 20.2705 0.3662C20.5049 0.6006 20.6367 0.9185 20.6367 1.25C20.6367 1.5815 20.5049 1.8994 20.2705 2.1338C20.0361 2.3681 19.7182 2.5 19.3867 2.5H1.25C0.9185 2.5 0.6006 2.3682 0.3662 2.1338C0.1318 1.8994 0 1.5815 0 1.25C0 0.9185 0.1318 0.6006 0.3662 0.3662C0.6006 0.1318 0.9185 0 1.25 0H19.3867Z" })
|
|
4050
|
+
});
|
|
4051
|
+
});
|
|
4052
|
+
LongTextIcon.displayName = "LongTextIcon";
|
|
4053
|
+
var LongTextIcon_default = React.memo(LongTextIcon);
|
|
4054
|
+
//#endregion
|
|
3959
4055
|
//#region src/icons/MagicWandIcon.tsx
|
|
3960
4056
|
/**
|
|
3961
4057
|
* THIS IS A GENERATED FILE. PLEASE SEE `scripts/iconGenerator`.
|
|
@@ -6957,6 +7053,29 @@ var ShareIosIcon = React.forwardRef((props, ref) => {
|
|
|
6957
7053
|
ShareIosIcon.displayName = "ShareIosIcon";
|
|
6958
7054
|
var ShareIosIcon_default = React.memo(ShareIosIcon);
|
|
6959
7055
|
//#endregion
|
|
7056
|
+
//#region src/icons/ShortTextIcon.tsx
|
|
7057
|
+
/**
|
|
7058
|
+
* THIS IS A GENERATED FILE. PLEASE SEE `scripts/iconGenerator`.
|
|
7059
|
+
*/
|
|
7060
|
+
var ShortTextIcon = React.forwardRef((props, ref) => {
|
|
7061
|
+
const { className, ...rest } = props;
|
|
7062
|
+
const finalClassName = ["ds-icon ds-icon-short-text", className].filter(Boolean).join(" ");
|
|
7063
|
+
return /* @__PURE__ */ jsx("svg", {
|
|
7064
|
+
"aria-hidden": "true",
|
|
7065
|
+
viewBox: "0 0 20.6367 9.1826",
|
|
7066
|
+
width: "1em",
|
|
7067
|
+
height: "1em",
|
|
7068
|
+
fill: "currentColor",
|
|
7069
|
+
...rest,
|
|
7070
|
+
className: finalClassName,
|
|
7071
|
+
ref,
|
|
7072
|
+
"data-c13y-component": "icon",
|
|
7073
|
+
children: /* @__PURE__ */ jsx("path", { d: "M15.5684 6.6826C15.8998 6.6827 16.2178 6.8145 16.4521 7.0488C16.6865 7.2832 16.8184 7.6012 16.8184 7.9326C16.8184 8.264 16.6865 8.582 16.4521 8.8164C16.2178 9.0507 15.8998 9.1825 15.5684 9.1826H1.25C0.9185 9.1826 0.6006 9.0508 0.3662 8.8164C0.1318 8.582 0 8.2641 0 7.9326C0 7.6011 0.1318 7.2832 0.3662 7.0488C0.6006 6.8144 0.9185 6.6826 1.25 6.6826H15.5684ZM19.3867 0C19.7182 0 20.0361 0.1319 20.2705 0.3662C20.5049 0.6006 20.6367 0.9185 20.6367 1.25C20.6367 1.5815 20.5049 1.8994 20.2705 2.1338C20.0361 2.3681 19.7182 2.5 19.3867 2.5H1.25C0.9185 2.5 0.6006 2.3682 0.3662 2.1338C0.1318 1.8994 0 1.5815 0 1.25C0 0.9185 0.1318 0.6006 0.3662 0.3662C0.6006 0.1318 0.9185 0 1.25 0H19.3867Z" })
|
|
7074
|
+
});
|
|
7075
|
+
});
|
|
7076
|
+
ShortTextIcon.displayName = "ShortTextIcon";
|
|
7077
|
+
var ShortTextIcon_default = React.memo(ShortTextIcon);
|
|
7078
|
+
//#endregion
|
|
6960
7079
|
//#region src/icons/ShrinkIcon.tsx
|
|
6961
7080
|
/**
|
|
6962
7081
|
* THIS IS A GENERATED FILE. PLEASE SEE `scripts/iconGenerator`.
|
|
@@ -7032,6 +7151,34 @@ var SidebarRightIcon = React.forwardRef((props, ref) => {
|
|
|
7032
7151
|
SidebarRightIcon.displayName = "SidebarRightIcon";
|
|
7033
7152
|
var SidebarRightIcon_default = React.memo(SidebarRightIcon);
|
|
7034
7153
|
//#endregion
|
|
7154
|
+
//#region src/icons/SingleChoiceQuestionIcon.tsx
|
|
7155
|
+
/**
|
|
7156
|
+
* THIS IS A GENERATED FILE. PLEASE SEE `scripts/iconGenerator`.
|
|
7157
|
+
*/
|
|
7158
|
+
var SingleChoiceQuestionIcon = React.forwardRef((props, ref) => {
|
|
7159
|
+
const { className, ...rest } = props;
|
|
7160
|
+
const finalClassName = ["ds-icon ds-icon-single-choice-question", className].filter(Boolean).join(" ");
|
|
7161
|
+
return /* @__PURE__ */ jsxs("svg", {
|
|
7162
|
+
"aria-hidden": "true",
|
|
7163
|
+
viewBox: "0 0 24 24",
|
|
7164
|
+
width: "1em",
|
|
7165
|
+
height: "1em",
|
|
7166
|
+
fill: "currentColor",
|
|
7167
|
+
...rest,
|
|
7168
|
+
className: finalClassName,
|
|
7169
|
+
ref,
|
|
7170
|
+
"data-c13y-component": "icon",
|
|
7171
|
+
children: [
|
|
7172
|
+
/* @__PURE__ */ jsx("path", { d: "M21 0H3C2.20435 0 1.44129 0.31607 0.87868 0.878679C0.316071 1.44129 0 2.20435 0 3V21C0 21.7956 0.316071 22.5587 0.87868 23.1213C1.44129 23.6839 2.20435 24 3 24H21C21.7956 24 22.5587 23.6839 23.1213 23.1213C23.6839 22.5587 24 21.7956 24 21V3C24 2.20435 23.6839 1.44129 23.1213 0.878679C22.5587 0.31607 21.7956 0 21 0ZM22 21C22 21.2652 21.8946 21.5196 21.7071 21.7071C21.5196 21.8946 21.2652 22 21 22H3C2.73478 22 2.48043 21.8946 2.29289 21.7071C2.10536 21.5196 2 21.2652 2 21V3C2 2.73478 2.10536 2.48043 2.29289 2.29289C2.48043 2.10536 2.73478 2 3 2H21C21.2652 2 21.5196 2.10536 21.7071 2.29289C21.8946 2.48043 22 2.73478 22 3V21Z" }),
|
|
7173
|
+
/* @__PURE__ */ jsx("path", { d: "M18.5 7.74902H14C13.6022 7.74902 13.2206 7.88072 12.9393 8.11514C12.658 8.34956 12.5 8.6675 12.5 8.99902C12.5 9.33054 12.658 9.64849 12.9393 9.88291C13.2206 10.1173 13.6022 10.249 14 10.249H18.5C18.8315 10.249 19.1495 10.1173 19.3839 9.88291C19.6183 9.64849 19.75 9.33054 19.75 8.99902C19.75 8.6675 19.6183 8.34956 19.3839 8.11514C19.1495 7.88072 18.8315 7.74902 18.5 7.74902Z" }),
|
|
7174
|
+
/* @__PURE__ */ jsx("path", { d: "M18.5 15.749H14C13.6022 15.749 13.2206 15.8807 12.9393 16.1151C12.658 16.3496 12.5 16.6675 12.5 16.999C12.5 17.3305 12.658 17.6485 12.9393 17.8829C13.2206 18.1173 13.6022 18.249 14 18.249H18.5C18.8315 18.249 19.1495 18.1173 19.3839 17.8829C19.6183 17.6485 19.75 17.3305 19.75 16.999C19.75 16.6675 19.6183 16.3496 19.3839 16.1151C19.1495 15.8807 18.8315 15.749 18.5 15.749Z" }),
|
|
7175
|
+
/* @__PURE__ */ jsx("path", { d: "M6.82843 6.41324C6.18198 6.41324 5.48493 6.68567 5 7.17059C4.51507 7.65552 4.24264 8.31323 4.24264 8.99902C4.24264 9.68482 4.51507 10.3425 5 10.8274C5.48493 11.3124 6.19814 11.5848 6.82843 11.5848C7.51422 11.5848 8.17193 11.3124 8.65686 10.8274C9.14179 10.3425 9.41421 9.68482 9.41421 8.99902C9.41421 8.31323 9.14179 7.65552 8.65686 7.17059C8.17193 6.68567 7.51422 6.41324 6.82843 6.41324Z" })
|
|
7176
|
+
]
|
|
7177
|
+
});
|
|
7178
|
+
});
|
|
7179
|
+
SingleChoiceQuestionIcon.displayName = "SingleChoiceQuestionIcon";
|
|
7180
|
+
var SingleChoiceQuestionIcon_default = React.memo(SingleChoiceQuestionIcon);
|
|
7181
|
+
//#endregion
|
|
7035
7182
|
//#region src/icons/SliderQuestionIcon.tsx
|
|
7036
7183
|
/**
|
|
7037
7184
|
* THIS IS A GENERATED FILE. PLEASE SEE `scripts/iconGenerator`.
|
|
@@ -8552,6 +8699,7 @@ var iconList = {
|
|
|
8552
8699
|
"lock-alt": LockAltIcon_default,
|
|
8553
8700
|
login: LoginIcon_default,
|
|
8554
8701
|
logout: LogoutIcon_default,
|
|
8702
|
+
"long-text": LongTextIcon_default,
|
|
8555
8703
|
"magic-wand": MagicWandIcon_default,
|
|
8556
8704
|
"map-pin": MapPinIcon_default,
|
|
8557
8705
|
"merge-left": MergeLeftIcon_default,
|
|
@@ -8637,9 +8785,11 @@ var iconList = {
|
|
|
8637
8785
|
settings: SettingsIcon_default,
|
|
8638
8786
|
"share-android": ShareAndroidIcon_default,
|
|
8639
8787
|
"share-ios": ShareIosIcon_default,
|
|
8788
|
+
"short-text": ShortTextIcon_default,
|
|
8640
8789
|
shrink: ShrinkIcon_default,
|
|
8641
8790
|
"sidebar-left": SidebarLeftIcon_default,
|
|
8642
8791
|
"sidebar-right": SidebarRightIcon_default,
|
|
8792
|
+
"single-choice-question": SingleChoiceQuestionIcon_default,
|
|
8643
8793
|
"slider-question": SliderQuestionIcon_default,
|
|
8644
8794
|
snowflake: SnowflakeIcon_default,
|
|
8645
8795
|
sort: SortIcon_default,
|
|
@@ -8703,8 +8853,9 @@ var Icon = ({ name, ...props }) => {
|
|
|
8703
8853
|
}) : null;
|
|
8704
8854
|
};
|
|
8705
8855
|
//#endregion
|
|
8706
|
-
//#region src/components/
|
|
8707
|
-
|
|
8856
|
+
//#region src/components/avatarDeprecated/AvatarDeprecated.tsx
|
|
8857
|
+
/** @deprecated Use `Avatar` from `@staffbase/design` instead */
|
|
8858
|
+
function AvatarDeprecated(props) {
|
|
8708
8859
|
const { alt, children, className = "", color = "purple", size = "32", src } = props;
|
|
8709
8860
|
const [hasImage, setHasImage] = useState(src !== void 0 && src !== "");
|
|
8710
8861
|
const variant = typeof children === "string" && children !== "" ? color : "grey";
|
|
@@ -8714,20 +8865,18 @@ function Avatar(props) {
|
|
|
8714
8865
|
const attrs = { title: alt };
|
|
8715
8866
|
if (hasImage) return /* @__PURE__ */ jsx("img", {
|
|
8716
8867
|
...attrs,
|
|
8717
|
-
"
|
|
8718
|
-
className: clsx$1("ds-avatar", "ds-avatar__image", `ds-avatar--size-${size}`, className),
|
|
8868
|
+
className: clsx$1("ds-avatar-deprecated", "ds-avatar-deprecated__image", `ds-avatar--size-${size}`, className),
|
|
8719
8869
|
src,
|
|
8720
8870
|
alt,
|
|
8721
8871
|
onError: () => setHasImage(false)
|
|
8722
8872
|
});
|
|
8723
8873
|
return /* @__PURE__ */ jsx("span", {
|
|
8724
8874
|
...attrs,
|
|
8725
|
-
"
|
|
8726
|
-
className: clsx$1("ds-avatar", "ds-avatar--default", `ds-avatar--${variant}`, `ds-avatar--size-${size}`, className),
|
|
8875
|
+
className: clsx$1("ds-avatar-deprecated", "ds-avatar--default", `ds-avatar--${variant}`, `ds-avatar--size-${size}`, className),
|
|
8727
8876
|
children: children ?? /* @__PURE__ */ jsx(UserIcon_default, {})
|
|
8728
8877
|
});
|
|
8729
8878
|
}
|
|
8730
|
-
|
|
8879
|
+
AvatarDeprecated.displayName = "Avatar";
|
|
8731
8880
|
//#endregion
|
|
8732
8881
|
//#region src/components/badge/Badge.tsx
|
|
8733
8882
|
function Badge(props) {
|
|
@@ -8755,7 +8904,7 @@ var ICONS = {
|
|
|
8755
8904
|
warning: /* @__PURE__ */ jsx(WarningIcon_default, {}),
|
|
8756
8905
|
critical: /* @__PURE__ */ jsx(AlertIcon_default, {})
|
|
8757
8906
|
};
|
|
8758
|
-
var Root$
|
|
8907
|
+
var Root$9 = forwardRef((props, ref) => {
|
|
8759
8908
|
const { children, className, variant = "info", size = "sm", layout = "standalone", ...restProps } = props;
|
|
8760
8909
|
return /* @__PURE__ */ jsxs("div", {
|
|
8761
8910
|
"data-c13y-component": "banner",
|
|
@@ -8772,8 +8921,8 @@ var Root$8 = forwardRef((props, ref) => {
|
|
|
8772
8921
|
})]
|
|
8773
8922
|
});
|
|
8774
8923
|
});
|
|
8775
|
-
Root$
|
|
8776
|
-
var
|
|
8924
|
+
Root$9.displayName = "Banner.Root";
|
|
8925
|
+
var Close$3 = forwardRef((props, ref) => {
|
|
8777
8926
|
const { className, ...restProps } = props;
|
|
8778
8927
|
return /* @__PURE__ */ jsx("button", {
|
|
8779
8928
|
ref,
|
|
@@ -8784,8 +8933,8 @@ var CloseButton = forwardRef((props, ref) => {
|
|
|
8784
8933
|
children: /* @__PURE__ */ jsx(CloseIcon_default, {})
|
|
8785
8934
|
});
|
|
8786
8935
|
});
|
|
8787
|
-
|
|
8788
|
-
var Banner = Object.assign(Root$
|
|
8936
|
+
Close$3.displayName = "Banner.Close";
|
|
8937
|
+
var Banner = Object.assign(Root$9, { Close: Close$3 });
|
|
8789
8938
|
//#endregion
|
|
8790
8939
|
//#region src/components/bottomSheet/BottomSheet.tsx
|
|
8791
8940
|
var Trigger$6 = (props) => {
|
|
@@ -8796,7 +8945,7 @@ var Trigger$6 = (props) => {
|
|
|
8796
8945
|
ref
|
|
8797
8946
|
});
|
|
8798
8947
|
};
|
|
8799
|
-
var Title$
|
|
8948
|
+
var Title$2 = forwardRef((props, ref) => {
|
|
8800
8949
|
const { className, ...rest } = props;
|
|
8801
8950
|
return /* @__PURE__ */ jsx(Drawer.Title, {
|
|
8802
8951
|
"data-c13y-component": "bottom-sheet-title",
|
|
@@ -8805,7 +8954,7 @@ var Title$1 = forwardRef((props, ref) => {
|
|
|
8805
8954
|
ref
|
|
8806
8955
|
});
|
|
8807
8956
|
});
|
|
8808
|
-
var Description$
|
|
8957
|
+
var Description$3 = forwardRef((props, ref) => {
|
|
8809
8958
|
const { className, ...rest } = props;
|
|
8810
8959
|
return /* @__PURE__ */ jsx(Drawer.Description, {
|
|
8811
8960
|
"data-c13y-component": "bottom-sheet-description",
|
|
@@ -8879,8 +9028,8 @@ var BottomSheet = {
|
|
|
8879
9028
|
Trigger: Trigger$6,
|
|
8880
9029
|
Close: Close$2,
|
|
8881
9030
|
Back,
|
|
8882
|
-
Description: Description$
|
|
8883
|
-
Title: Title$
|
|
9031
|
+
Description: Description$3,
|
|
9032
|
+
Title: Title$2,
|
|
8884
9033
|
Action,
|
|
8885
9034
|
Header: Header$1
|
|
8886
9035
|
};
|
|
@@ -9050,7 +9199,7 @@ var Trigger$5 = (props) => {
|
|
|
9050
9199
|
ref
|
|
9051
9200
|
});
|
|
9052
9201
|
};
|
|
9053
|
-
var Title = forwardRef((props, ref) => {
|
|
9202
|
+
var Title$1 = forwardRef((props, ref) => {
|
|
9054
9203
|
const { className, ...rest } = props;
|
|
9055
9204
|
return /* @__PURE__ */ jsx(Dialog$1.Title, {
|
|
9056
9205
|
"data-c13y-component": "dialog-title",
|
|
@@ -9059,7 +9208,7 @@ var Title = forwardRef((props, ref) => {
|
|
|
9059
9208
|
ref
|
|
9060
9209
|
});
|
|
9061
9210
|
});
|
|
9062
|
-
var Description$
|
|
9211
|
+
var Description$2 = forwardRef((props, ref) => {
|
|
9063
9212
|
const { className, ...rest } = props;
|
|
9064
9213
|
return /* @__PURE__ */ jsx(Dialog$1.Description, {
|
|
9065
9214
|
"data-c13y-component": "dialog-description",
|
|
@@ -9124,8 +9273,8 @@ var Dialog = {
|
|
|
9124
9273
|
Popup: Popup$4,
|
|
9125
9274
|
Trigger: Trigger$5,
|
|
9126
9275
|
Close: Close$1,
|
|
9127
|
-
Description: Description$
|
|
9128
|
-
Title,
|
|
9276
|
+
Description: Description$2,
|
|
9277
|
+
Title: Title$1,
|
|
9129
9278
|
Header,
|
|
9130
9279
|
Footer,
|
|
9131
9280
|
Body
|
|
@@ -9159,13 +9308,63 @@ function Divider(props) {
|
|
|
9159
9308
|
}
|
|
9160
9309
|
Divider.displayName = "Divider";
|
|
9161
9310
|
//#endregion
|
|
9311
|
+
//#region src/components/empty/Empty.tsx
|
|
9312
|
+
var Root$8 = forwardRef((props, ref) => {
|
|
9313
|
+
const { className, ...rest } = props;
|
|
9314
|
+
return /* @__PURE__ */ jsx("div", {
|
|
9315
|
+
"data-c13y-component": "empty",
|
|
9316
|
+
className: clsx$1("ds-empty", className),
|
|
9317
|
+
...rest,
|
|
9318
|
+
ref
|
|
9319
|
+
});
|
|
9320
|
+
});
|
|
9321
|
+
Root$8.displayName = "Empty.Root";
|
|
9322
|
+
var Media = forwardRef((props, ref) => {
|
|
9323
|
+
const { className, size = "md", ...rest } = props;
|
|
9324
|
+
return /* @__PURE__ */ jsx("div", {
|
|
9325
|
+
"data-c13y-component": "empty-media",
|
|
9326
|
+
"data-size": size,
|
|
9327
|
+
className: clsx$1("ds-empty__media", className),
|
|
9328
|
+
...rest,
|
|
9329
|
+
ref
|
|
9330
|
+
});
|
|
9331
|
+
});
|
|
9332
|
+
Media.displayName = "Empty.Media";
|
|
9333
|
+
var Title = forwardRef((props, ref) => {
|
|
9334
|
+
const { className, children, as: Tag, ...rest } = props;
|
|
9335
|
+
return /* @__PURE__ */ jsx(Tag, {
|
|
9336
|
+
"data-c13y-component": "empty-title",
|
|
9337
|
+
className: clsx$1("ds-empty__title", className),
|
|
9338
|
+
...rest,
|
|
9339
|
+
ref,
|
|
9340
|
+
children
|
|
9341
|
+
});
|
|
9342
|
+
});
|
|
9343
|
+
Title.displayName = "Empty.Title";
|
|
9344
|
+
var Description$1 = forwardRef((props, ref) => {
|
|
9345
|
+
const { className, ...rest } = props;
|
|
9346
|
+
return /* @__PURE__ */ jsx("p", {
|
|
9347
|
+
"data-c13y-component": "empty-description",
|
|
9348
|
+
className: clsx$1("ds-empty__description", className),
|
|
9349
|
+
...rest,
|
|
9350
|
+
ref
|
|
9351
|
+
});
|
|
9352
|
+
});
|
|
9353
|
+
Description$1.displayName = "Empty.Description";
|
|
9354
|
+
var Empty = {
|
|
9355
|
+
Root: Root$8,
|
|
9356
|
+
Media,
|
|
9357
|
+
Title,
|
|
9358
|
+
Description: Description$1
|
|
9359
|
+
};
|
|
9360
|
+
//#endregion
|
|
9162
9361
|
//#region src/components/emptyState/EmptyState.tsx
|
|
9163
9362
|
var getValidIconSize = (iconSize) => iconSize === "40px" || iconSize === "96px" ? iconSize : "40px";
|
|
9363
|
+
/** @deprecated Use Empty instead */
|
|
9164
9364
|
function EmptyState(props) {
|
|
9165
9365
|
const { title, icon, iconSize, body, className = "" } = props;
|
|
9166
9366
|
const validIconSize = getValidIconSize(iconSize);
|
|
9167
9367
|
return /* @__PURE__ */ jsxs("div", {
|
|
9168
|
-
"data-c13y-component": "empty-state",
|
|
9169
9368
|
className: clsx$1("ds-empty-state", className),
|
|
9170
9369
|
children: [
|
|
9171
9370
|
icon && cloneElement(icon, {
|
|
@@ -9178,12 +9377,10 @@ function EmptyState(props) {
|
|
|
9178
9377
|
}),
|
|
9179
9378
|
/* @__PURE__ */ jsx("p", {
|
|
9180
9379
|
className: "ds-empty-state__title",
|
|
9181
|
-
"data-c13y-component": "empty-state-title",
|
|
9182
9380
|
children: title
|
|
9183
9381
|
}),
|
|
9184
9382
|
body ? /* @__PURE__ */ jsx("p", {
|
|
9185
9383
|
className: "ds-empty-state__body",
|
|
9186
|
-
"data-c13y-component": "empty-state-content",
|
|
9187
9384
|
children: body
|
|
9188
9385
|
}) : null
|
|
9189
9386
|
]
|
|
@@ -10700,7 +10897,7 @@ var Chip = forwardRef((props, ref) => {
|
|
|
10700
10897
|
})]
|
|
10701
10898
|
});
|
|
10702
10899
|
});
|
|
10703
|
-
var Empty$
|
|
10900
|
+
var Empty$2 = forwardRef((props, ref) => {
|
|
10704
10901
|
const { className, ...rest } = props;
|
|
10705
10902
|
return /* @__PURE__ */ jsx(Combobox.Empty, {
|
|
10706
10903
|
"data-c13y-component": "searchable-multi-select-empty",
|
|
@@ -10736,7 +10933,7 @@ var SearchableMultiSelect = {
|
|
|
10736
10933
|
Input: Input$2,
|
|
10737
10934
|
Value: Value$1,
|
|
10738
10935
|
Chip,
|
|
10739
|
-
Empty: Empty$
|
|
10936
|
+
Empty: Empty$2,
|
|
10740
10937
|
Collection: Combobox.Collection,
|
|
10741
10938
|
Status: Combobox.Status
|
|
10742
10939
|
};
|
|
@@ -10834,7 +11031,7 @@ var GroupLabel$1 = forwardRef((props, ref) => {
|
|
|
10834
11031
|
...rest
|
|
10835
11032
|
});
|
|
10836
11033
|
});
|
|
10837
|
-
var Empty = forwardRef((props, ref) => {
|
|
11034
|
+
var Empty$1 = forwardRef((props, ref) => {
|
|
10838
11035
|
const { className, ...rest } = props;
|
|
10839
11036
|
return /* @__PURE__ */ jsx(Combobox.Empty, {
|
|
10840
11037
|
"data-c13y-component": "searchable-single-select-empty",
|
|
@@ -10855,7 +11052,7 @@ var SearchableSingleSelect = {
|
|
|
10855
11052
|
ItemIndicator: ItemIndicator$1,
|
|
10856
11053
|
Separator: Separator$2,
|
|
10857
11054
|
Input: Input$1,
|
|
10858
|
-
Empty
|
|
11055
|
+
Empty: Empty$1
|
|
10859
11056
|
};
|
|
10860
11057
|
//#endregion
|
|
10861
11058
|
//#region src/components/segmentedControl/SegmentedControl.tsx
|
|
@@ -11710,6 +11907,6 @@ function TooltipDeprecated(props) {
|
|
|
11710
11907
|
}
|
|
11711
11908
|
TooltipDeprecated.displayName = "TooltipDeprecated";
|
|
11712
11909
|
//#endregion
|
|
11713
|
-
export { AIPUIcon_default as AIPUIcon, ActionMenu, ActionMenuContent, ActionMenuItem, ActionMenuLinkItem, ActionMenuTrigger, AddCircleIcon_default as AddCircleIcon, AddIcon_default as AddIcon, AiSparklesIcon_default as AiSparklesIcon, AlarmIcon_default as AlarmIcon, AlertDialog, AlertIcon_default as AlertIcon, AltAlternateIcon_default as AltAlternateIcon, ArchiveIcon_default as ArchiveIcon, ArrowDownIcon_default as ArrowDownIcon, ArrowLeftIcon_default as ArrowLeftIcon, ArrowRightIcon_default as ArrowRightIcon, ArrowUpIcon_default as ArrowUpIcon, ArtboardIcon_default as ArtboardIcon, AttachmentIcon_default as AttachmentIcon, Avatar, Badge, Banner, BarChartIcon_default as BarChartIcon, BellAltIcon_default as BellAltIcon, BellIcon_default as BellIcon, BinIcon_default as BinIcon, BlockQuoteIcon_default as BlockQuoteIcon, BookmarkAltIcon_default as BookmarkAltIcon, BookmarkIcon_default as BookmarkIcon, BookmarkOffIcon_default as BookmarkOffIcon, BookmarkOnIcon_default as BookmarkOnIcon, BottomSheet, BriefcaseIcon_default as BriefcaseIcon, BulbIcon_default as BulbIcon, BulletListIcon_default as BulletListIcon, BurgerIcon_default as BurgerIcon, Button, ButtonDeprecated, CalendarIcon_default as CalendarIcon, CameraIcon_default as CameraIcon, Card, CaretDownIcon_default as CaretDownIcon, CaretFirstIcon_default as CaretFirstIcon, CaretLastIcon_default as CaretLastIcon, CaretLeftIcon_default as CaretLeftIcon, CaretRightIcon_default as CaretRightIcon, CaretUpIcon_default as CaretUpIcon, ChatOptOutIcon_default as ChatOptOutIcon, CheckCircleAltIcon_default as CheckCircleAltIcon, CheckCircleIcon_default as CheckCircleIcon, CheckIcon_default as CheckIcon, Checkbox, CheckboxGroup, ChristmasTreeIcon_default as ChristmasTreeIcon, CircleDownIcon_default as CircleDownIcon, CircleUpIcon_default as CircleUpIcon, ClickIcon_default as ClickIcon, ClockIcon_default as ClockIcon, CloseCircleIcon_default as CloseCircleIcon, CloseIcon_default as CloseIcon, CloudIcon_default as CloudIcon, ColorPaletteIcon_default as ColorPaletteIcon, CommentAltIcon_default as CommentAltIcon, CommentIcon_default as CommentIcon, ConnectionOffIcon_default as ConnectionOffIcon, CopyIcon_default as CopyIcon, CropIcon_default as CropIcon, DashIcon_default as DashIcon, DashboardIcon_default as DashboardIcon, DesktopIcon_default as DesktopIcon, Dialog, Divider, DotIcon_default as DotIcon, DoubleCheckIcon_default as DoubleCheckIcon, DownloadIcon_default as DownloadIcon, DragHandleIcon_default as DragHandleIcon, EditIcon_default as EditIcon, EllipsisIcon_default as EllipsisIcon, EmailBouncesIcon_default as EmailBouncesIcon, EmailContactsIcon_default as EmailContactsIcon, EmailFollowUpIcon_default as EmailFollowUpIcon, EmailIcon_default as EmailIcon, EmailOpenIcon_default as EmailOpenIcon, EmailTeamsIcon_default as EmailTeamsIcon, EmptyState, ExpandHorizontalIcon_default as ExpandHorizontalIcon, ExpandIcon_default as ExpandIcon, ExpandVerticalIcon_default as ExpandVerticalIcon, FeatureAnalyticsIcon_default as FeatureAnalyticsIcon, FeatureCampaignsIcon_default as FeatureCampaignsIcon, FeatureEditorialCalendarIcon_default as FeatureEditorialCalendarIcon, FeatureEmployeeEmailIcon_default as FeatureEmployeeEmailIcon, FeatureNewsPageIcon_default as FeatureNewsPageIcon, Field, FileArchiveIcon_default as FileArchiveIcon, FileAudioIcon_default as FileAudioIcon, FileCodeIcon_default as FileCodeIcon, FileIcon_default as FileIcon, FileImageIcon_default as FileImageIcon, FilePdfIcon_default as FilePdfIcon, FilePresentationIcon_default as FilePresentationIcon, FileShareIcon_default as FileShareIcon, FileSheetIcon_default as FileSheetIcon, FileSizeIcon_default as FileSizeIcon, FileStackIcon_default as FileStackIcon, FileTextIcon_default as FileTextIcon, FileUploadNamespace as FileUpload, FileUploadIcon_default as FileUploadIcon, FileVideoIcon_default as FileVideoIcon, FilesManagerIcon_default as FilesManagerIcon, Filter, FilterIcon_default as FilterIcon, FlagIcon_default as FlagIcon, FolderIcon_default as FolderIcon, FolderShareIcon_default as FolderShareIcon, FontsIcon_default as FontsIcon, FootballIcon_default as FootballIcon, GalleryIcon_default as GalleryIcon, GhostButton, GlobeIcon_default as GlobeIcon, GridIcon_default as GridIcon, GroupConversationAddIcon_default as GroupConversationAddIcon, GroupConversationAdminIcon_default as GroupConversationAdminIcon, GroupConversationIcon_default as GroupConversationIcon, GroupConversationLeaveIcon_default as GroupConversationLeaveIcon, Growl, GrowlContainer, HamburgerMenuIcon_default as HamburgerMenuIcon, HeartAltIcon_default as HeartAltIcon, HeartIcon_default as HeartIcon, HelpButton, HierarchyChartIcon_default as HierarchyChartIcon, HomeIcon_default as HomeIcon, HouseIcon_default as HouseIcon, Icon, IconButton, IconGhostButton, ImageIcon_default as ImageIcon, ImageUploadIcon_default as ImageUploadIcon, InfoIcon_default as InfoIcon, InstantPostIcon_default as InstantPostIcon, JourneyStartIcon_default as JourneyStartIcon, KeyIcon_default as KeyIcon, LanguageGlobeIcon_default as LanguageGlobeIcon, LanguageIcon_default as LanguageIcon, LaptopIcon_default as LaptopIcon, LaunchpadIcon_default as LaunchpadIcon, LibraryIcon_default as LibraryIcon, LineChartIcon_default as LineChartIcon, LinkIcon_default as LinkIcon, LoadingSpinner, LockAltIcon_default as LockAltIcon, LockIcon_default as LockIcon, LoginIcon_default as LoginIcon, LogoutIcon_default as LogoutIcon, MagicWandIcon_default as MagicWandIcon, MapPinIcon_default as MapPinIcon, Menu, MergeLeftIcon_default as MergeLeftIcon, MergeRightIcon_default as MergeRightIcon, MicrophoneAltIcon_default as MicrophoneAltIcon, MicrophoneIcon_default as MicrophoneIcon, MinusCircleIcon_default as MinusCircleIcon, MobileIcon_default as MobileIcon, Modal, ModalDialog, MoveDownIcon_default as MoveDownIcon, MoveIcon_default as MoveIcon, MoveLeftIcon_default as MoveLeftIcon, MoveRightIcon_default as MoveRightIcon, MoveSidesIcon_default as MoveSidesIcon, MoveUpIcon_default as MoveUpIcon, MultipleChoiceQuestionIcon_default as MultipleChoiceQuestionIcon, NetworkChartIcon_default as NetworkChartIcon, NewConversationIcon_default as NewConversationIcon, NpsQuestionIcon_default as NpsQuestionIcon, NumberListIcon_default as NumberListIcon, NumberStepper, OfficeIcon_default as OfficeIcon, OpenOutIcon_default as OpenOutIcon, ParagraphCenterAlignIcon_default as ParagraphCenterAlignIcon, ParagraphLeftAlignIcon_default as ParagraphLeftAlignIcon, ParagraphRightAlignIcon_default as ParagraphRightAlignIcon, PauseIcon_default as PauseIcon, PeopleIcon_default as PeopleIcon, PhoneIcon_default as PhoneIcon, PictureGalleryIcon_default as PictureGalleryIcon, PieChartIcon_default as PieChartIcon, Pill, PlainGrowl, PlayIcon_default as PlayIcon, PluginAbsenceIcon_default as PluginAbsenceIcon, PluginCalendarIcon_default as PluginCalendarIcon, PluginChatIcon_default as PluginChatIcon, PluginColleagueQuizIcon_default as PluginColleagueQuizIcon, PluginEmbeddedPagesIcon_default as PluginEmbeddedPagesIcon, PluginEventRegistrationIcon_default as PluginEventRegistrationIcon, PluginFacebookPagesIcon_default as PluginFacebookPagesIcon, PluginFormsIcon_default as PluginFormsIcon, PluginIcon_default as PluginIcon, PluginIntegratedContentIcon_default as PluginIntegratedContentIcon, PluginJourneysIcon_default as PluginJourneysIcon, PluginLinksIcon_default as PluginLinksIcon, PluginMapsIcon_default as PluginMapsIcon, PluginMealPlanIcon_default as PluginMealPlanIcon, PluginMicrosoft365CalendarIcon_default as PluginMicrosoft365CalendarIcon, PluginNetigateIcon_default as PluginNetigateIcon, PluginNetworkIcon_default as PluginNetworkIcon, PluginNewsIcon_default as PluginNewsIcon, PluginOffice365FilesIcon_default as PluginOffice365FilesIcon, PluginPagesIcon_default as PluginPagesIcon, PluginQuizCalendarIcon_default as PluginQuizCalendarIcon, PluginSAMLIntegrationsIcon_default as PluginSAMLIntegrationsIcon, PluginSAPFioriIcon_default as PluginSAPFioriIcon, PluginShiftPlanIcon_default as PluginShiftPlanIcon, PluginSurveyMonkeyIcon_default as PluginSurveyMonkeyIcon, PluginSurveysIcon_default as PluginSurveysIcon, PluginThirdPartyIcon_default as PluginThirdPartyIcon, PollIcon_default as PollIcon, Popover, PrintIcon_default as PrintIcon, QuestionIcon_default as QuestionIcon, QuicklinkCampaignsIcon_default as QuicklinkCampaignsIcon, QuicklinkCommentsIcon_default as QuicklinkCommentsIcon, QuicklinkEditorialCalendarIcon_default as QuicklinkEditorialCalendarIcon, QuicklinkEmailIcon_default as QuicklinkEmailIcon, QuicklinkEventRegistrationIcon_default as QuicklinkEventRegistrationIcon, QuicklinkFormsIcon_default as QuicklinkFormsIcon, QuicklinkJourneysIcon_default as QuicklinkJourneysIcon, QuicklinkLaunchpadIcon_default as QuicklinkLaunchpadIcon, QuicklinkMenuIcon_default as QuicklinkMenuIcon, QuicklinkNewsIcon_default as QuicklinkNewsIcon, QuicklinkPagesIcon_default as QuicklinkPagesIcon, QuicklinkSurveyIcon_default as QuicklinkSurveyIcon, QuizIcon_default as QuizIcon, Radio, RadioGroup, RedoIcon_default as RedoIcon, RefreshIcon_default as RefreshIcon, ReplaceFileIcon_default as ReplaceFileIcon, ResizeExpandIcon_default as ResizeExpandIcon, RestoreIcon_default as RestoreIcon, RoundedCornersIcon_default as RoundedCornersIcon, RssIcon_default as RssIcon, SearchIcon_default as SearchIcon, SearchInput, SearchableMultiSelect, SearchableSingleSelect, SegmentedControl, Select, SendIcon_default as SendIcon, Separator, SettingsIcon_default as SettingsIcon, ShareAndroidIcon_default as ShareAndroidIcon, ShareIosIcon_default as ShareIosIcon, ShrinkIcon_default as ShrinkIcon, SidebarLeftIcon_default as SidebarLeftIcon, SidebarRightIcon_default as SidebarRightIcon, SingleSelect, Skeleton, SliderQuestionIcon_default as SliderQuestionIcon, SnowflakeIcon_default as SnowflakeIcon, SortIcon_default as SortIcon, SoundAltIcon_default as SoundAltIcon, SoundIcon_default as SoundIcon, SpacesAltIcon_default as SpacesAltIcon, SpacesIcon_default as SpacesIcon, SplitIcon_default as SplitIcon, StarAltIcon_default as StarAltIcon, StarIcon_default as StarIcon, StyleChip, Switch, TabletIcon_default as TabletIcon, Tabs, TagIcon_default as TagIcon, TextArea, TextAreaDeprecated, TextBoldIcon_default as TextBoldIcon, TextField, TextFormattingCapsIcon_default as TextFormattingCapsIcon, TextFormattingSmallCapsIcon_default as TextFormattingSmallCapsIcon, TextFormattingTextStyleIcon_default as TextFormattingTextStyleIcon, TextIcon_default as TextIcon, TextInput, TextItalicIcon_default as TextItalicIcon, TextQuestionIcon_default as TextQuestionIcon, TextStrikeThroughIcon_default as TextStrikeThroughIcon, TextSummariseIcon_default as TextSummariseIcon, TextTormattingArrangeSpacingIcon_default as TextTormattingArrangeSpacingIcon, TextUnderlineIcon_default as TextUnderlineIcon, ThumbDownAltIcon_default as ThumbDownAltIcon, ThumbDownIcon_default as ThumbDownIcon, ThumbUpAltIcon_default as ThumbUpAltIcon, ThumbUpIcon_default as ThumbUpIcon, Toggle, Tooltip, TooltipDeprecated, TranslationOnIcon_default as TranslationOnIcon, UndoIcon_default as UndoIcon, UnlinkIcon_default as UnlinkIcon, UploadIcon_default as UploadIcon, UserAddIcon_default as UserAddIcon, UserCommentIcon_default as UserCommentIcon, UserDeactivatedIcon_default as UserDeactivatedIcon, UserDeletedIcon_default as UserDeletedIcon, UserEditIcon_default as UserEditIcon, UserGroupAddIcon_default as UserGroupAddIcon, UserGroupIcon_default as UserGroupIcon, UserIcon_default as UserIcon, UserInvitedIcon_default as UserInvitedIcon, UserNewIcon_default as UserNewIcon, UserPendingIcon_default as UserPendingIcon, UserRegisteredIcon_default as UserRegisteredIcon, VideoCameraIcon_default as VideoCameraIcon, VideoEmbedIcon_default as VideoEmbedIcon, VideoIcon_default as VideoIcon, VideoUploadIcon_default as VideoUploadIcon, ViewAltIcon_default as ViewAltIcon, ViewIcon_default as ViewIcon, WarningIcon_default as WarningIcon, WatchIcon_default as WatchIcon, iconNames };
|
|
11910
|
+
export { AIPUIcon_default as AIPUIcon, ActionMenu, ActionMenuContent, ActionMenuItem, ActionMenuLinkItem, ActionMenuTrigger, AddCircleIcon_default as AddCircleIcon, AddIcon_default as AddIcon, AiSparklesIcon_default as AiSparklesIcon, AlarmIcon_default as AlarmIcon, AlertDialog, AlertIcon_default as AlertIcon, AltAlternateIcon_default as AltAlternateIcon, ArchiveIcon_default as ArchiveIcon, ArrowDownIcon_default as ArrowDownIcon, ArrowLeftIcon_default as ArrowLeftIcon, ArrowRightIcon_default as ArrowRightIcon, ArrowUpIcon_default as ArrowUpIcon, ArtboardIcon_default as ArtboardIcon, AttachmentIcon_default as AttachmentIcon, Avatar, AvatarDeprecated, Badge, Banner, BarChartIcon_default as BarChartIcon, BellAltIcon_default as BellAltIcon, BellIcon_default as BellIcon, BinIcon_default as BinIcon, BlockQuoteIcon_default as BlockQuoteIcon, BookmarkAltIcon_default as BookmarkAltIcon, BookmarkIcon_default as BookmarkIcon, BookmarkOffIcon_default as BookmarkOffIcon, BookmarkOnIcon_default as BookmarkOnIcon, BottomSheet, BriefcaseIcon_default as BriefcaseIcon, BulbIcon_default as BulbIcon, BulletListIcon_default as BulletListIcon, BurgerIcon_default as BurgerIcon, Button, ButtonDeprecated, CalendarIcon_default as CalendarIcon, CameraIcon_default as CameraIcon, Card, CaretDownIcon_default as CaretDownIcon, CaretFirstIcon_default as CaretFirstIcon, CaretLastIcon_default as CaretLastIcon, CaretLeftIcon_default as CaretLeftIcon, CaretRightIcon_default as CaretRightIcon, CaretUpIcon_default as CaretUpIcon, ChatOptOutIcon_default as ChatOptOutIcon, CheckCircleAltIcon_default as CheckCircleAltIcon, CheckCircleIcon_default as CheckCircleIcon, CheckIcon_default as CheckIcon, Checkbox, CheckboxGroup, ChristmasTreeIcon_default as ChristmasTreeIcon, CircleDownIcon_default as CircleDownIcon, CircleUpIcon_default as CircleUpIcon, ClickIcon_default as ClickIcon, ClockIcon_default as ClockIcon, CloseCircleIcon_default as CloseCircleIcon, CloseIcon_default as CloseIcon, CloudIcon_default as CloudIcon, ColorPaletteIcon_default as ColorPaletteIcon, CommentAltIcon_default as CommentAltIcon, CommentIcon_default as CommentIcon, ConnectionOffIcon_default as ConnectionOffIcon, CopyIcon_default as CopyIcon, CropIcon_default as CropIcon, DashIcon_default as DashIcon, DashboardIcon_default as DashboardIcon, DesktopIcon_default as DesktopIcon, Dialog, Divider, DotIcon_default as DotIcon, DoubleCheckIcon_default as DoubleCheckIcon, DownloadIcon_default as DownloadIcon, DragHandleIcon_default as DragHandleIcon, EditIcon_default as EditIcon, EllipsisIcon_default as EllipsisIcon, EmailBouncesIcon_default as EmailBouncesIcon, EmailContactsIcon_default as EmailContactsIcon, EmailFollowUpIcon_default as EmailFollowUpIcon, EmailIcon_default as EmailIcon, EmailOpenIcon_default as EmailOpenIcon, EmailTeamsIcon_default as EmailTeamsIcon, Empty, EmptyState, ExpandHorizontalIcon_default as ExpandHorizontalIcon, ExpandIcon_default as ExpandIcon, ExpandVerticalIcon_default as ExpandVerticalIcon, FeatureAnalyticsIcon_default as FeatureAnalyticsIcon, FeatureCampaignsIcon_default as FeatureCampaignsIcon, FeatureEditorialCalendarIcon_default as FeatureEditorialCalendarIcon, FeatureEmployeeEmailIcon_default as FeatureEmployeeEmailIcon, FeatureNewsPageIcon_default as FeatureNewsPageIcon, Field, FileArchiveIcon_default as FileArchiveIcon, FileAudioIcon_default as FileAudioIcon, FileCodeIcon_default as FileCodeIcon, FileIcon_default as FileIcon, FileImageIcon_default as FileImageIcon, FilePdfIcon_default as FilePdfIcon, FilePresentationIcon_default as FilePresentationIcon, FileShareIcon_default as FileShareIcon, FileSheetIcon_default as FileSheetIcon, FileSizeIcon_default as FileSizeIcon, FileStackIcon_default as FileStackIcon, FileTextIcon_default as FileTextIcon, FileUploadNamespace as FileUpload, FileUploadIcon_default as FileUploadIcon, FileVideoIcon_default as FileVideoIcon, FilesManagerIcon_default as FilesManagerIcon, Filter, FilterIcon_default as FilterIcon, FlagIcon_default as FlagIcon, FolderIcon_default as FolderIcon, FolderShareIcon_default as FolderShareIcon, FontsIcon_default as FontsIcon, FootballIcon_default as FootballIcon, GalleryIcon_default as GalleryIcon, GhostButton, GlobeIcon_default as GlobeIcon, GridIcon_default as GridIcon, GroupConversationAddIcon_default as GroupConversationAddIcon, GroupConversationAdminIcon_default as GroupConversationAdminIcon, GroupConversationIcon_default as GroupConversationIcon, GroupConversationLeaveIcon_default as GroupConversationLeaveIcon, Growl, GrowlContainer, HamburgerMenuIcon_default as HamburgerMenuIcon, HeartAltIcon_default as HeartAltIcon, HeartIcon_default as HeartIcon, HelpButton, HierarchyChartIcon_default as HierarchyChartIcon, HomeIcon_default as HomeIcon, HouseIcon_default as HouseIcon, Icon, IconButton, IconGhostButton, ImageIcon_default as ImageIcon, ImageUploadIcon_default as ImageUploadIcon, InfoIcon_default as InfoIcon, InstantPostIcon_default as InstantPostIcon, JourneyStartIcon_default as JourneyStartIcon, KeyIcon_default as KeyIcon, LanguageGlobeIcon_default as LanguageGlobeIcon, LanguageIcon_default as LanguageIcon, LaptopIcon_default as LaptopIcon, LaunchpadIcon_default as LaunchpadIcon, LibraryIcon_default as LibraryIcon, LineChartIcon_default as LineChartIcon, LinkIcon_default as LinkIcon, LoadingSpinner, LockAltIcon_default as LockAltIcon, LockIcon_default as LockIcon, LoginIcon_default as LoginIcon, LogoutIcon_default as LogoutIcon, LongTextIcon_default as LongTextIcon, MagicWandIcon_default as MagicWandIcon, MapPinIcon_default as MapPinIcon, Menu, MergeLeftIcon_default as MergeLeftIcon, MergeRightIcon_default as MergeRightIcon, MicrophoneAltIcon_default as MicrophoneAltIcon, MicrophoneIcon_default as MicrophoneIcon, MinusCircleIcon_default as MinusCircleIcon, MobileIcon_default as MobileIcon, Modal, ModalDialog, MoveDownIcon_default as MoveDownIcon, MoveIcon_default as MoveIcon, MoveLeftIcon_default as MoveLeftIcon, MoveRightIcon_default as MoveRightIcon, MoveSidesIcon_default as MoveSidesIcon, MoveUpIcon_default as MoveUpIcon, MultipleChoiceQuestionIcon_default as MultipleChoiceQuestionIcon, NetworkChartIcon_default as NetworkChartIcon, NewConversationIcon_default as NewConversationIcon, NpsQuestionIcon_default as NpsQuestionIcon, NumberListIcon_default as NumberListIcon, NumberStepper, OfficeIcon_default as OfficeIcon, OpenOutIcon_default as OpenOutIcon, ParagraphCenterAlignIcon_default as ParagraphCenterAlignIcon, ParagraphLeftAlignIcon_default as ParagraphLeftAlignIcon, ParagraphRightAlignIcon_default as ParagraphRightAlignIcon, PauseIcon_default as PauseIcon, PeopleIcon_default as PeopleIcon, PhoneIcon_default as PhoneIcon, PictureGalleryIcon_default as PictureGalleryIcon, PieChartIcon_default as PieChartIcon, Pill, PlainGrowl, PlayIcon_default as PlayIcon, PluginAbsenceIcon_default as PluginAbsenceIcon, PluginCalendarIcon_default as PluginCalendarIcon, PluginChatIcon_default as PluginChatIcon, PluginColleagueQuizIcon_default as PluginColleagueQuizIcon, PluginEmbeddedPagesIcon_default as PluginEmbeddedPagesIcon, PluginEventRegistrationIcon_default as PluginEventRegistrationIcon, PluginFacebookPagesIcon_default as PluginFacebookPagesIcon, PluginFormsIcon_default as PluginFormsIcon, PluginIcon_default as PluginIcon, PluginIntegratedContentIcon_default as PluginIntegratedContentIcon, PluginJourneysIcon_default as PluginJourneysIcon, PluginLinksIcon_default as PluginLinksIcon, PluginMapsIcon_default as PluginMapsIcon, PluginMealPlanIcon_default as PluginMealPlanIcon, PluginMicrosoft365CalendarIcon_default as PluginMicrosoft365CalendarIcon, PluginNetigateIcon_default as PluginNetigateIcon, PluginNetworkIcon_default as PluginNetworkIcon, PluginNewsIcon_default as PluginNewsIcon, PluginOffice365FilesIcon_default as PluginOffice365FilesIcon, PluginPagesIcon_default as PluginPagesIcon, PluginQuizCalendarIcon_default as PluginQuizCalendarIcon, PluginSAMLIntegrationsIcon_default as PluginSAMLIntegrationsIcon, PluginSAPFioriIcon_default as PluginSAPFioriIcon, PluginShiftPlanIcon_default as PluginShiftPlanIcon, PluginSurveyMonkeyIcon_default as PluginSurveyMonkeyIcon, PluginSurveysIcon_default as PluginSurveysIcon, PluginThirdPartyIcon_default as PluginThirdPartyIcon, PollIcon_default as PollIcon, Popover, PrintIcon_default as PrintIcon, QuestionIcon_default as QuestionIcon, QuicklinkCampaignsIcon_default as QuicklinkCampaignsIcon, QuicklinkCommentsIcon_default as QuicklinkCommentsIcon, QuicklinkEditorialCalendarIcon_default as QuicklinkEditorialCalendarIcon, QuicklinkEmailIcon_default as QuicklinkEmailIcon, QuicklinkEventRegistrationIcon_default as QuicklinkEventRegistrationIcon, QuicklinkFormsIcon_default as QuicklinkFormsIcon, QuicklinkJourneysIcon_default as QuicklinkJourneysIcon, QuicklinkLaunchpadIcon_default as QuicklinkLaunchpadIcon, QuicklinkMenuIcon_default as QuicklinkMenuIcon, QuicklinkNewsIcon_default as QuicklinkNewsIcon, QuicklinkPagesIcon_default as QuicklinkPagesIcon, QuicklinkSurveyIcon_default as QuicklinkSurveyIcon, QuizIcon_default as QuizIcon, Radio, RadioGroup, RedoIcon_default as RedoIcon, RefreshIcon_default as RefreshIcon, ReplaceFileIcon_default as ReplaceFileIcon, ResizeExpandIcon_default as ResizeExpandIcon, RestoreIcon_default as RestoreIcon, RoundedCornersIcon_default as RoundedCornersIcon, RssIcon_default as RssIcon, SearchIcon_default as SearchIcon, SearchInput, SearchableMultiSelect, SearchableSingleSelect, SegmentedControl, Select, SendIcon_default as SendIcon, Separator, SettingsIcon_default as SettingsIcon, ShareAndroidIcon_default as ShareAndroidIcon, ShareIosIcon_default as ShareIosIcon, ShortTextIcon_default as ShortTextIcon, ShrinkIcon_default as ShrinkIcon, SidebarLeftIcon_default as SidebarLeftIcon, SidebarRightIcon_default as SidebarRightIcon, SingleChoiceQuestionIcon_default as SingleChoiceQuestionIcon, SingleSelect, Skeleton, SliderQuestionIcon_default as SliderQuestionIcon, SnowflakeIcon_default as SnowflakeIcon, SortIcon_default as SortIcon, SoundAltIcon_default as SoundAltIcon, SoundIcon_default as SoundIcon, SpacesAltIcon_default as SpacesAltIcon, SpacesIcon_default as SpacesIcon, SplitIcon_default as SplitIcon, StarAltIcon_default as StarAltIcon, StarIcon_default as StarIcon, StyleChip, Switch, TabletIcon_default as TabletIcon, Tabs, TagIcon_default as TagIcon, TextArea, TextAreaDeprecated, TextBoldIcon_default as TextBoldIcon, TextField, TextFormattingCapsIcon_default as TextFormattingCapsIcon, TextFormattingSmallCapsIcon_default as TextFormattingSmallCapsIcon, TextFormattingTextStyleIcon_default as TextFormattingTextStyleIcon, TextIcon_default as TextIcon, TextInput, TextItalicIcon_default as TextItalicIcon, TextQuestionIcon_default as TextQuestionIcon, TextStrikeThroughIcon_default as TextStrikeThroughIcon, TextSummariseIcon_default as TextSummariseIcon, TextTormattingArrangeSpacingIcon_default as TextTormattingArrangeSpacingIcon, TextUnderlineIcon_default as TextUnderlineIcon, ThumbDownAltIcon_default as ThumbDownAltIcon, ThumbDownIcon_default as ThumbDownIcon, ThumbUpAltIcon_default as ThumbUpAltIcon, ThumbUpIcon_default as ThumbUpIcon, Toggle, Tooltip, TooltipDeprecated, TranslationOnIcon_default as TranslationOnIcon, UndoIcon_default as UndoIcon, UnlinkIcon_default as UnlinkIcon, UploadIcon_default as UploadIcon, UserAddIcon_default as UserAddIcon, UserCommentIcon_default as UserCommentIcon, UserDeactivatedIcon_default as UserDeactivatedIcon, UserDeletedIcon_default as UserDeletedIcon, UserEditIcon_default as UserEditIcon, UserGroupAddIcon_default as UserGroupAddIcon, UserGroupIcon_default as UserGroupIcon, UserIcon_default as UserIcon, UserInvitedIcon_default as UserInvitedIcon, UserNewIcon_default as UserNewIcon, UserPendingIcon_default as UserPendingIcon, UserRegisteredIcon_default as UserRegisteredIcon, VideoCameraIcon_default as VideoCameraIcon, VideoEmbedIcon_default as VideoEmbedIcon, VideoIcon_default as VideoIcon, VideoUploadIcon_default as VideoUploadIcon, ViewAltIcon_default as ViewAltIcon, ViewIcon_default as ViewIcon, WarningIcon_default as WarningIcon, WatchIcon_default as WatchIcon, buttonVariants, iconNames };
|
|
11714
11911
|
|
|
11715
11912
|
//# sourceMappingURL=main.js.map
|