@staffbase/design 18.5.0 → 18.7.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/dist/main.cjs +93 -51
- package/dist/main.cjs.map +1 -1
- package/dist/main.d.ts +6 -0
- package/dist/main.js +92 -52
- package/dist/main.js.map +1 -1
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -995,6 +995,8 @@ declare const iconList: {
|
|
|
995
995
|
readonly 'map-pin': NamedExoticComponent< SVGAttributes<SVGSVGElement> & RefAttributes<SVGSVGElement>>;
|
|
996
996
|
readonly 'merge-left': NamedExoticComponent< SVGAttributes<SVGSVGElement> & RefAttributes<SVGSVGElement>>;
|
|
997
997
|
readonly 'merge-right': NamedExoticComponent< SVGAttributes<SVGSVGElement> & RefAttributes<SVGSVGElement>>;
|
|
998
|
+
readonly microphone: NamedExoticComponent< SVGAttributes<SVGSVGElement> & RefAttributes<SVGSVGElement>>;
|
|
999
|
+
readonly 'microphone-alt': NamedExoticComponent< SVGAttributes<SVGSVGElement> & RefAttributes<SVGSVGElement>>;
|
|
998
1000
|
readonly 'minus-circle': NamedExoticComponent< SVGAttributes<SVGSVGElement> & RefAttributes<SVGSVGElement>>;
|
|
999
1001
|
readonly mobile: NamedExoticComponent< SVGAttributes<SVGSVGElement> & RefAttributes<SVGSVGElement>>;
|
|
1000
1002
|
readonly move: NamedExoticComponent< SVGAttributes<SVGSVGElement> & RefAttributes<SVGSVGElement>>;
|
|
@@ -1216,6 +1218,10 @@ export declare const MergeLeftIcon: default_2.NamedExoticComponent<default_2.SVG
|
|
|
1216
1218
|
|
|
1217
1219
|
export declare const MergeRightIcon: default_2.NamedExoticComponent<default_2.SVGAttributes<SVGSVGElement> & default_2.RefAttributes<SVGSVGElement>>;
|
|
1218
1220
|
|
|
1221
|
+
export declare const MicrophoneAltIcon: default_2.NamedExoticComponent<default_2.SVGAttributes<SVGSVGElement> & default_2.RefAttributes<SVGSVGElement>>;
|
|
1222
|
+
|
|
1223
|
+
export declare const MicrophoneIcon: default_2.NamedExoticComponent<default_2.SVGAttributes<SVGSVGElement> & default_2.RefAttributes<SVGSVGElement>>;
|
|
1224
|
+
|
|
1219
1225
|
export declare const MinusCircleIcon: default_2.NamedExoticComponent<default_2.SVGAttributes<SVGSVGElement> & default_2.RefAttributes<SVGSVGElement>>;
|
|
1220
1226
|
|
|
1221
1227
|
export declare const MobileIcon: default_2.NamedExoticComponent<default_2.SVGAttributes<SVGSVGElement> & default_2.RefAttributes<SVGSVGElement>>;
|
package/dist/main.js
CHANGED
|
@@ -134,7 +134,6 @@ var ActionMenuContent = React.forwardRef(function ActionMenuContent(props, propR
|
|
|
134
134
|
modal: false,
|
|
135
135
|
initialFocus: -1,
|
|
136
136
|
children: /* @__PURE__ */ jsx("div", {
|
|
137
|
-
"data-c13y-component": "action-menu-content",
|
|
138
137
|
className: clsx$1("ds-action-menu", className),
|
|
139
138
|
ref: forkedRef,
|
|
140
139
|
style: {
|
|
@@ -169,7 +168,6 @@ var ActionMenuItem = React.forwardRef(function ActionMenuItem(props, ref) {
|
|
|
169
168
|
const itemRef = useMergeRefs([ref, listItemRef]);
|
|
170
169
|
return /* @__PURE__ */ jsxs("button", {
|
|
171
170
|
role: "menuitem",
|
|
172
|
-
"data-c13y-component": "action-menu-item",
|
|
173
171
|
className: clsx$1("ds-action-menu__item", `ds-action-menu__item--${variant}`, "ds-action-menu__basic-item", `ds-action-menu__basic-item--${variant}`, className),
|
|
174
172
|
...rest,
|
|
175
173
|
...context.getItemProps({
|
|
@@ -204,7 +202,6 @@ var ActionMenuLinkItem = React.forwardRef(function ActionMenuLinkItem(props, ref
|
|
|
204
202
|
const itemRef = useMergeRefs([ref, listItemRef]);
|
|
205
203
|
return /* @__PURE__ */ jsxs("a", {
|
|
206
204
|
role: "menuitem",
|
|
207
|
-
"data-c13y-component": "action-menu-link-item",
|
|
208
205
|
className: clsx$1("ds-action-menu__item", `ds-action-menu__item--${variant}`, "ds-action-menu__link-item", className),
|
|
209
206
|
...rest,
|
|
210
207
|
...context.getItemProps({
|
|
@@ -4087,6 +4084,56 @@ var MergeRightIcon = React.forwardRef((props, ref) => {
|
|
|
4087
4084
|
MergeRightIcon.displayName = "MergeRightIcon";
|
|
4088
4085
|
var MergeRightIcon_default = React.memo(MergeRightIcon);
|
|
4089
4086
|
//#endregion
|
|
4087
|
+
//#region src/icons/MicrophoneAltIcon.tsx
|
|
4088
|
+
/**
|
|
4089
|
+
* THIS IS A GENERATED FILE. PLEASE SEE `scripts/iconGenerator`.
|
|
4090
|
+
*/
|
|
4091
|
+
var MicrophoneAltIcon = React.forwardRef((props, ref) => {
|
|
4092
|
+
const { className, ...rest } = props;
|
|
4093
|
+
const finalClassName = ["ds-icon ds-icon-microphone-alt", className].filter(Boolean).join(" ");
|
|
4094
|
+
return /* @__PURE__ */ jsxs("svg", {
|
|
4095
|
+
"aria-hidden": "true",
|
|
4096
|
+
viewBox: "0 0 24 24",
|
|
4097
|
+
width: "1em",
|
|
4098
|
+
height: "1em",
|
|
4099
|
+
fill: "currentColor",
|
|
4100
|
+
...rest,
|
|
4101
|
+
className: finalClassName,
|
|
4102
|
+
ref,
|
|
4103
|
+
"data-c13y-component": "icon",
|
|
4104
|
+
children: [
|
|
4105
|
+
/* @__PURE__ */ jsx("path", { d: "M12 20a7.508 7.508 0 0 1-7.5-7.5V10a1 1 0 0 0-2 0v2.5a9.514 9.514 0 0 0 8.282 9.422.249.249 0 0 1 .218.248V23a1 1 0 0 0 2 0v-.83a.249.249 0 0 1 .218-.248 9.433 9.433 0 0 0 3.859-1.4.25.25 0 0 0 .043-.388l-1.091-1.091a.25.25 0 0 0-.3-.04A7.448 7.448 0 0 1 12 20z" }),
|
|
4106
|
+
/* @__PURE__ */ jsx("path", { d: "M6.427 9.447A.25.25 0 0 0 6 9.623V12.5a6 6 0 0 0 8.471 5.467.25.25 0 0 0 .074-.4z" }),
|
|
4107
|
+
/* @__PURE__ */ jsx("path", { d: "M23.707 22.3l-3.952-3.952a.248.248 0 0 1-.026-.322A9.453 9.453 0 0 0 21.5 12.5V10a1 1 0 0 0-2 0v2.5a7.459 7.459 0 0 1-1.157 4 .249.249 0 0 1-.184.114.246.246 0 0 1-.2-.071l-.728-.727a.251.251 0 0 1-.039-.3A5.963 5.963 0 0 0 18 12.5V6A6 6 0 0 0 6.244 4.309a.251.251 0 0 1-.417.106L1.707.3A1.013 1.013 0 0 0 .293.3a1 1 0 0 0 0 1.414l22 22 .007.007a1 1 0 0 0 1.4-1.425z" })
|
|
4108
|
+
]
|
|
4109
|
+
});
|
|
4110
|
+
});
|
|
4111
|
+
MicrophoneAltIcon.displayName = "MicrophoneAltIcon";
|
|
4112
|
+
var MicrophoneAltIcon_default = React.memo(MicrophoneAltIcon);
|
|
4113
|
+
//#endregion
|
|
4114
|
+
//#region src/icons/MicrophoneIcon.tsx
|
|
4115
|
+
/**
|
|
4116
|
+
* THIS IS A GENERATED FILE. PLEASE SEE `scripts/iconGenerator`.
|
|
4117
|
+
*/
|
|
4118
|
+
var MicrophoneIcon = React.forwardRef((props, ref) => {
|
|
4119
|
+
const { className, ...rest } = props;
|
|
4120
|
+
const finalClassName = ["ds-icon ds-icon-microphone", className].filter(Boolean).join(" ");
|
|
4121
|
+
return /* @__PURE__ */ jsxs("svg", {
|
|
4122
|
+
"aria-hidden": "true",
|
|
4123
|
+
viewBox: "0 0 19 24",
|
|
4124
|
+
width: "1em",
|
|
4125
|
+
height: "1em",
|
|
4126
|
+
fill: "currentColor",
|
|
4127
|
+
...rest,
|
|
4128
|
+
className: finalClassName,
|
|
4129
|
+
ref,
|
|
4130
|
+
"data-c13y-component": "icon",
|
|
4131
|
+
children: [/* @__PURE__ */ jsx("path", { d: "M3.49983 6.00007C3.49983 2.68632 6.18615 0 9.4999 0C12.8137 0 15.5 2.68632 15.5 6.00007V12.5002C15.5 15.8139 12.8137 18.5002 9.4999 18.5002C6.18615 18.5002 3.49983 15.8139 3.49983 12.5002V6.00007Z" }), /* @__PURE__ */ jsx("path", { d: "M18.0002 8.99982C18.2654 8.99982 18.5197 9.10525 18.7073 9.29279C18.8948 9.48033 19.0002 9.73461 19.0002 9.99983V12.4999C18.9973 14.8077 18.1557 17.0361 16.632 18.7695C15.1084 20.5028 13.0063 21.623 10.7179 21.9218C10.6576 21.9295 10.6018 21.9592 10.5617 22.0049C10.5217 22.0505 10.4999 22.1092 10.5001 22.1699V23C10.5001 23.2652 10.3947 23.5195 10.2072 23.707C10.0196 23.8946 9.76534 24 9.50012 24C9.2349 24 8.98061 23.8946 8.79308 23.707C8.60554 23.5195 8.5001 23.2652 8.5001 23V22.1699C8.50031 22.1092 8.47853 22.0505 8.43858 22.0049C8.39846 21.9592 8.34261 21.9295 8.28233 21.9218C5.99395 21.623 3.89185 20.5028 2.36819 18.7695C0.844525 17.0361 0.00288563 14.8077 0 12.4999V9.99983C0 9.73461 0.105434 9.48033 0.292972 9.29279C0.480511 9.10525 0.734793 8.99982 1.00001 8.99982C1.26523 8.99982 1.51951 9.10525 1.70705 9.29279C1.89459 9.48033 2.00002 9.73461 2.00002 9.99983V12.4999C2.00214 14.4884 2.79319 16.3946 4.19927 17.8007C5.60535 19.2068 7.51162 19.9978 9.50012 20C11.4886 19.9978 13.3949 19.2068 14.801 17.8007C16.207 16.3946 16.9981 14.4884 17.0002 12.4999V9.99983C17.0002 9.73461 17.1056 9.48033 17.2932 9.29279C17.4807 9.10525 17.735 8.99982 18.0002 8.99982Z" })]
|
|
4132
|
+
});
|
|
4133
|
+
});
|
|
4134
|
+
MicrophoneIcon.displayName = "MicrophoneIcon";
|
|
4135
|
+
var MicrophoneIcon_default = React.memo(MicrophoneIcon);
|
|
4136
|
+
//#endregion
|
|
4090
4137
|
//#region src/icons/MinusCircleIcon.tsx
|
|
4091
4138
|
/**
|
|
4092
4139
|
* THIS IS A GENERATED FILE. PLEASE SEE `scripts/iconGenerator`.
|
|
@@ -8529,6 +8576,8 @@ var iconList = {
|
|
|
8529
8576
|
"map-pin": MapPinIcon_default,
|
|
8530
8577
|
"merge-left": MergeLeftIcon_default,
|
|
8531
8578
|
"merge-right": MergeRightIcon_default,
|
|
8579
|
+
microphone: MicrophoneIcon_default,
|
|
8580
|
+
"microphone-alt": MicrophoneAltIcon_default,
|
|
8532
8581
|
"minus-circle": MinusCircleIcon_default,
|
|
8533
8582
|
mobile: MobileIcon_default,
|
|
8534
8583
|
move: MoveIcon_default,
|
|
@@ -9084,7 +9133,6 @@ function getDividerStyles(props) {
|
|
|
9084
9133
|
function Divider(props) {
|
|
9085
9134
|
const { dividerPosition = "horizontal", className = "", fullWidth = false, ...otherProps } = props;
|
|
9086
9135
|
return /* @__PURE__ */ jsx("hr", {
|
|
9087
|
-
"data-c13y-component": "divider",
|
|
9088
9136
|
className: clsx$1("ds-divider", `ds-divider--${dividerPosition}`, className),
|
|
9089
9137
|
style: getDividerStyles({
|
|
9090
9138
|
dividerPosition,
|
|
@@ -9838,6 +9886,30 @@ var HelpButton = forwardRef(function HelpButton(props, ref) {
|
|
|
9838
9886
|
});
|
|
9839
9887
|
HelpButton.displayName = "HelpButton";
|
|
9840
9888
|
//#endregion
|
|
9889
|
+
//#region src/utils/splitC13yProps.ts
|
|
9890
|
+
/**
|
|
9891
|
+
* Splits a props object into its `data-c13y-*` customizability attributes and
|
|
9892
|
+
* everything else.
|
|
9893
|
+
*
|
|
9894
|
+
* Portalled overlays render a positioner wrapper around the visible popup. The
|
|
9895
|
+
* public prop type extends the positioner's props, so a consumer-supplied
|
|
9896
|
+
* `data-c13y-region` / `data-c13y-purpose` / `data-c13y-id` would otherwise land
|
|
9897
|
+
* on the invisible positioner instead of the visible popup that carries
|
|
9898
|
+
* `data-c13y-component`. Use this to forward the customizability attributes onto
|
|
9899
|
+
* the popup while keeping positioner props (`align`, `sideOffset`, …) on the
|
|
9900
|
+
* positioner.
|
|
9901
|
+
*/
|
|
9902
|
+
function splitC13yProps(props) {
|
|
9903
|
+
const c13y = {};
|
|
9904
|
+
const rest = {};
|
|
9905
|
+
for (const key of Object.keys(props)) if (key.startsWith("data-c13y-")) c13y[key] = props[key];
|
|
9906
|
+
else rest[key] = props[key];
|
|
9907
|
+
return {
|
|
9908
|
+
c13y,
|
|
9909
|
+
rest
|
|
9910
|
+
};
|
|
9911
|
+
}
|
|
9912
|
+
//#endregion
|
|
9841
9913
|
//#region src/components/menu/Menu.tsx
|
|
9842
9914
|
var Root$6 = (props) => {
|
|
9843
9915
|
return /* @__PURE__ */ jsx(Menu$1.Root, {
|
|
@@ -9855,14 +9927,16 @@ var Trigger$4 = (props) => {
|
|
|
9855
9927
|
};
|
|
9856
9928
|
var Popup$3 = forwardRef((props, ref) => {
|
|
9857
9929
|
const { className, children, container, ...rest } = props;
|
|
9930
|
+
const { c13y, rest: positionerProps } = splitC13yProps(rest);
|
|
9858
9931
|
return /* @__PURE__ */ jsx(Menu$1.Portal, {
|
|
9859
9932
|
container,
|
|
9860
9933
|
children: /* @__PURE__ */ jsx(Menu$1.Positioner, {
|
|
9861
9934
|
align: "end",
|
|
9862
9935
|
sideOffset: 4,
|
|
9863
9936
|
ref,
|
|
9864
|
-
...
|
|
9937
|
+
...positionerProps,
|
|
9865
9938
|
children: /* @__PURE__ */ jsx(Menu$1.Popup, {
|
|
9939
|
+
...c13y,
|
|
9866
9940
|
"data-c13y-component": "menu-popover",
|
|
9867
9941
|
className: clsx$1("ds-menu__popup", className),
|
|
9868
9942
|
children,
|
|
@@ -10015,21 +10089,18 @@ var ModalHeader = forwardRef(function ModalHeader(props, ref) {
|
|
|
10015
10089
|
const { title, titleAddon, showCancelButton = false, cancelButtonText, onCancel, showHeaderButton = false, headerButtonIsGhost = true, onHeaderButtonClick, headerButtonText } = props;
|
|
10016
10090
|
let headerButton;
|
|
10017
10091
|
if (showHeaderButton && onHeaderButtonClick && headerButtonText) if (headerButtonIsGhost) headerButton = /* @__PURE__ */ jsx(GhostButton, {
|
|
10018
|
-
"data-c13y-purpose": "accept",
|
|
10019
10092
|
className: clsx$1("ds-modal__ghost-button--accept"),
|
|
10020
10093
|
variant: "primary",
|
|
10021
10094
|
onClick: () => onHeaderButtonClick(),
|
|
10022
10095
|
children: headerButtonText
|
|
10023
10096
|
});
|
|
10024
10097
|
else headerButton = /* @__PURE__ */ jsx(Button, {
|
|
10025
|
-
"data-c13y-purpose": "accept",
|
|
10026
10098
|
className: clsx$1("ds-modal__button--accept"),
|
|
10027
10099
|
variant: "primary",
|
|
10028
10100
|
onClick: () => onHeaderButtonClick(),
|
|
10029
10101
|
children: headerButtonText
|
|
10030
10102
|
});
|
|
10031
10103
|
return /* @__PURE__ */ jsxs("div", {
|
|
10032
|
-
"data-c13y-component": "modal-header",
|
|
10033
10104
|
className: clsx$1("ds-modal__header"),
|
|
10034
10105
|
ref,
|
|
10035
10106
|
children: [/* @__PURE__ */ jsxs("div", {
|
|
@@ -10043,7 +10114,6 @@ var ModalHeader = forwardRef(function ModalHeader(props, ref) {
|
|
|
10043
10114
|
}), /* @__PURE__ */ jsxs("div", {
|
|
10044
10115
|
className: "ds-modal__header-buttons",
|
|
10045
10116
|
children: [!!headerButton && headerButton, showCancelButton && cancelButtonText && /* @__PURE__ */ jsx(IconGhostButton, {
|
|
10046
|
-
"data-c13y-purpose": "cancel",
|
|
10047
10117
|
className: clsx$1("ds-modal__ghost-button--cancel"),
|
|
10048
10118
|
variant: "secondary",
|
|
10049
10119
|
style: { padding: "10px" },
|
|
@@ -10057,7 +10127,6 @@ var ModalHeader = forwardRef(function ModalHeader(props, ref) {
|
|
|
10057
10127
|
fullWidth: true
|
|
10058
10128
|
}), /* @__PURE__ */ jsx("div", {
|
|
10059
10129
|
className: "ds-modal__header-content",
|
|
10060
|
-
"data-c13y-component": "modal-header-content",
|
|
10061
10130
|
"data-testid": "header-content-wrapper",
|
|
10062
10131
|
children: props.children
|
|
10063
10132
|
})] })]
|
|
@@ -10123,7 +10192,6 @@ function ModalContent(props) {
|
|
|
10123
10192
|
setScrollShadows(scroll, scrollContent.current);
|
|
10124
10193
|
}, [scroll]);
|
|
10125
10194
|
return /* @__PURE__ */ jsx("div", {
|
|
10126
|
-
"data-c13y-component": "modal-content",
|
|
10127
10195
|
className: clsx$1("ds-modal__inner-content", scroll && "ds-modal__inner-content--scroll"),
|
|
10128
10196
|
"data-testid": "main-content-wrapper",
|
|
10129
10197
|
ref: scrollContent,
|
|
@@ -10134,20 +10202,17 @@ function ModalContent(props) {
|
|
|
10134
10202
|
var ModalFooter = forwardRef(function ModalFooter(props, ref) {
|
|
10135
10203
|
const { cancelButtonText, onCancel, footerButtonText, footerButtonVariant, onFooterButtonClick, disableFooterButton } = props;
|
|
10136
10204
|
return footerButtonText && onFooterButtonClick ? /* @__PURE__ */ jsxs("div", {
|
|
10137
|
-
"data-c13y-component": "modal-footer",
|
|
10138
10205
|
className: clsx$1("ds-modal__footer"),
|
|
10139
10206
|
"data-testid": "footer",
|
|
10140
10207
|
ref,
|
|
10141
10208
|
children: [props.children, /* @__PURE__ */ jsxs("div", {
|
|
10142
10209
|
className: "ds-modal__footer-buttons",
|
|
10143
10210
|
children: [cancelButtonText && /* @__PURE__ */ jsx(Button, {
|
|
10144
|
-
"data-c13y-purpose": "cancel",
|
|
10145
10211
|
className: clsx$1("ds-modal__button--cancel"),
|
|
10146
10212
|
variant: "secondary",
|
|
10147
10213
|
onClick: () => onCancel(),
|
|
10148
10214
|
children: cancelButtonText
|
|
10149
10215
|
}), footerButtonText && onFooterButtonClick && /* @__PURE__ */ jsx(Button, {
|
|
10150
|
-
"data-c13y-purpose": "accept",
|
|
10151
10216
|
className: clsx$1("ds-modal__button--accept"),
|
|
10152
10217
|
variant: footerButtonVariant,
|
|
10153
10218
|
disabled: disableFooterButton,
|
|
@@ -10234,7 +10299,6 @@ function ModalDialog(props) {
|
|
|
10234
10299
|
children: /* @__PURE__ */ jsx(FloatingFocusManager, {
|
|
10235
10300
|
context,
|
|
10236
10301
|
children: /* @__PURE__ */ jsxs("div", {
|
|
10237
|
-
"data-c13y-component": "modal-dialog",
|
|
10238
10302
|
...getFloatingProps({
|
|
10239
10303
|
ref: refs.setFloating,
|
|
10240
10304
|
className: clsx$1("ds-modal-dialog", className)
|
|
@@ -10256,12 +10320,10 @@ function ModalDialog(props) {
|
|
|
10256
10320
|
className: "ds-modal-dialog__content",
|
|
10257
10321
|
children: [/* @__PURE__ */ jsx(Button, {
|
|
10258
10322
|
variant: confirmButtonVariant,
|
|
10259
|
-
"data-c13y-purpose": "accept",
|
|
10260
10323
|
onClick: onConfirm,
|
|
10261
10324
|
children: confirmButtonText
|
|
10262
10325
|
}), /* @__PURE__ */ jsx(Button, {
|
|
10263
10326
|
variant: "secondary",
|
|
10264
|
-
"data-c13y-purpose": "cancel",
|
|
10265
10327
|
onClick: onCancel,
|
|
10266
10328
|
children: cancelButtonText
|
|
10267
10329
|
})]
|
|
@@ -10508,6 +10570,7 @@ var Input$2 = forwardRef((props, ref) => {
|
|
|
10508
10570
|
});
|
|
10509
10571
|
var Popup$2 = forwardRef((props, ref) => {
|
|
10510
10572
|
const { className, children, container, ...rest } = props;
|
|
10573
|
+
const { c13y, rest: positionerProps } = splitC13yProps(rest);
|
|
10511
10574
|
const { containerRef } = useSearchableMultiSelectContext();
|
|
10512
10575
|
return /* @__PURE__ */ jsx(Combobox.Portal, {
|
|
10513
10576
|
container,
|
|
@@ -10515,8 +10578,9 @@ var Popup$2 = forwardRef((props, ref) => {
|
|
|
10515
10578
|
ref,
|
|
10516
10579
|
sideOffset: 4,
|
|
10517
10580
|
anchor: containerRef,
|
|
10518
|
-
...
|
|
10581
|
+
...positionerProps,
|
|
10519
10582
|
children: /* @__PURE__ */ jsx(Combobox.Popup, {
|
|
10583
|
+
...c13y,
|
|
10520
10584
|
"data-c13y-component": "searchable-multi-select-popover",
|
|
10521
10585
|
className: clsx$1("ds-searchable-multi-select__popup", className),
|
|
10522
10586
|
children,
|
|
@@ -10698,13 +10762,15 @@ var Input$1 = forwardRef((props, ref) => {
|
|
|
10698
10762
|
});
|
|
10699
10763
|
var Popup$1 = forwardRef((props, ref) => {
|
|
10700
10764
|
const { className, children, container, ...rest } = props;
|
|
10765
|
+
const { c13y, rest: positionerProps } = splitC13yProps(rest);
|
|
10701
10766
|
return /* @__PURE__ */ jsx(Combobox.Portal, {
|
|
10702
10767
|
container,
|
|
10703
10768
|
children: /* @__PURE__ */ jsx(Combobox.Positioner, {
|
|
10704
10769
|
sideOffset: 5,
|
|
10705
10770
|
ref,
|
|
10706
|
-
...
|
|
10771
|
+
...positionerProps,
|
|
10707
10772
|
children: /* @__PURE__ */ jsx(Combobox.Popup, {
|
|
10773
|
+
...c13y,
|
|
10708
10774
|
"data-c13y-component": "searchable-single-select-popover",
|
|
10709
10775
|
className: clsx$1("ds-searchable-single-select__popup", className),
|
|
10710
10776
|
children,
|
|
@@ -10824,13 +10890,15 @@ var Trigger$2 = forwardRef((props, ref) => {
|
|
|
10824
10890
|
});
|
|
10825
10891
|
var Popup = forwardRef((props, ref) => {
|
|
10826
10892
|
const { className, children, container, ...rest } = props;
|
|
10893
|
+
const { c13y, rest: positionerProps } = splitC13yProps(rest);
|
|
10827
10894
|
return /* @__PURE__ */ jsx(Select$1.Portal, {
|
|
10828
10895
|
container,
|
|
10829
10896
|
children: /* @__PURE__ */ jsx(Select$1.Positioner, {
|
|
10830
10897
|
alignItemWithTrigger: false,
|
|
10831
10898
|
ref,
|
|
10832
|
-
...
|
|
10899
|
+
...positionerProps,
|
|
10833
10900
|
children: /* @__PURE__ */ jsx(Select$1.Popup, {
|
|
10901
|
+
...c13y,
|
|
10834
10902
|
"data-c13y-component": "select-popover",
|
|
10835
10903
|
className: clsx$1("ds-select__popup", className),
|
|
10836
10904
|
children,
|
|
@@ -10990,12 +11058,10 @@ function SingleSelect(props) {
|
|
|
10990
11058
|
const errorOrDescription = useMemo(() => {
|
|
10991
11059
|
if (error !== void 0 && error !== "") return /* @__PURE__ */ jsxs("div", {
|
|
10992
11060
|
className: "ds-single-select__error",
|
|
10993
|
-
"data-c13y-component": "single-select-error",
|
|
10994
11061
|
children: [/* @__PURE__ */ jsx(AlertIcon_default, {}), error]
|
|
10995
11062
|
});
|
|
10996
11063
|
if (description !== void 0 && description !== "") return /* @__PURE__ */ jsx("span", {
|
|
10997
11064
|
className: "ds-single-select__description",
|
|
10998
|
-
"data-c13y-component": "single-select-description",
|
|
10999
11065
|
children: description
|
|
11000
11066
|
});
|
|
11001
11067
|
return null;
|
|
@@ -11006,7 +11072,6 @@ function SingleSelect(props) {
|
|
|
11006
11072
|
const dropdownContent = useMemo(() => {
|
|
11007
11073
|
if (loading) return /* @__PURE__ */ jsx("div", {
|
|
11008
11074
|
className: "ds-single-select__loader",
|
|
11009
|
-
"data-c13y-component": "single-select-loader",
|
|
11010
11075
|
children: /* @__PURE__ */ jsx(LoadingSpinner, {
|
|
11011
11076
|
size: 24,
|
|
11012
11077
|
"aria-label": "Loading select options..."
|
|
@@ -11014,19 +11079,15 @@ function SingleSelect(props) {
|
|
|
11014
11079
|
});
|
|
11015
11080
|
if (options.length === 0 && emptyResultText !== void 0 && emptyResultText !== "") return /* @__PURE__ */ jsx("span", {
|
|
11016
11081
|
className: "ds-single-select__no-results",
|
|
11017
|
-
"data-c13y-component": "single-select-empty",
|
|
11018
11082
|
children: emptyResultText
|
|
11019
11083
|
});
|
|
11020
11084
|
const getLabel = (option) => /* @__PURE__ */ jsxs("span", {
|
|
11021
11085
|
className: "ds-single-select__option-text",
|
|
11022
|
-
"data-c13y-component": "single-select-option-text",
|
|
11023
11086
|
children: [/* @__PURE__ */ jsx("span", {
|
|
11024
|
-
"data-c13y-component": "single-select-label",
|
|
11025
11087
|
className: clsx$1("ds-single-select__option-label", value?.id === option.id && "ds-single-select__option-label--selected"),
|
|
11026
11088
|
...getItemProps({ id: `${listId}-option-${option.id}-label` }),
|
|
11027
11089
|
children: optionLabel(option)
|
|
11028
11090
|
}), typeof optionDescription === "function" && optionDescription(option) !== void 0 && /* @__PURE__ */ jsx("div", {
|
|
11029
|
-
"data-c13y-component": "single-select-option-description",
|
|
11030
11091
|
className: clsx$1("ds-single-select__option-description", value?.id === option.id && "ds-single-select__option-description--selected"),
|
|
11031
11092
|
...getItemProps({ id: `${listId}-option-${option.id}-description` }),
|
|
11032
11093
|
"aria-hidden": true,
|
|
@@ -11034,7 +11095,6 @@ function SingleSelect(props) {
|
|
|
11034
11095
|
})]
|
|
11035
11096
|
});
|
|
11036
11097
|
return options.map((option, index) => /* @__PURE__ */ jsx("div", {
|
|
11037
|
-
"data-c13y-component": "single-select-option",
|
|
11038
11098
|
...getItemProps({
|
|
11039
11099
|
onClick: () => {
|
|
11040
11100
|
onChange(option);
|
|
@@ -11083,7 +11143,6 @@ function SingleSelect(props) {
|
|
|
11083
11143
|
})]
|
|
11084
11144
|
}),
|
|
11085
11145
|
variantProps.searchable ? /* @__PURE__ */ jsxs("div", {
|
|
11086
|
-
"data-c13y-component": "single-select",
|
|
11087
11146
|
className: clsx$1("ds-single-select__input-wrapper", disabled && "ds-single-select__input-wrapper--disabled", error && "ds-single-select__input-wrapper--error"),
|
|
11088
11147
|
ref: refs.setReference,
|
|
11089
11148
|
onClick: handleWrapperClick,
|
|
@@ -11120,7 +11179,6 @@ function SingleSelect(props) {
|
|
|
11120
11179
|
})
|
|
11121
11180
|
]
|
|
11122
11181
|
}) : /* @__PURE__ */ jsxs("button", {
|
|
11123
|
-
"data-c13y-component": "single-select",
|
|
11124
11182
|
className: clsx$1("ds-single-select__trigger", error !== void 0 && error !== "" && "ds-single-select__trigger--error", disabled && "ds-single-select__trigger--disabled"),
|
|
11125
11183
|
...getReferenceProps({
|
|
11126
11184
|
disabled,
|
|
@@ -11169,7 +11227,6 @@ function SingleSelect(props) {
|
|
|
11169
11227
|
"aria-labelledby": ariaLabelledBy || labelId
|
|
11170
11228
|
}),
|
|
11171
11229
|
ref: floatingRef,
|
|
11172
|
-
"data-c13y-component": "single-select-dropdown",
|
|
11173
11230
|
className: clsx$1("ds-single-select__dropdown"),
|
|
11174
11231
|
children: /* @__PURE__ */ jsx("div", { children: dropdownContent })
|
|
11175
11232
|
}) }) : null] });
|
|
@@ -11318,13 +11375,11 @@ function TextAreaDeprecated(props) {
|
|
|
11318
11375
|
if (handleValueChange) handleValueChange(event);
|
|
11319
11376
|
}, [handleValueChange]);
|
|
11320
11377
|
return /* @__PURE__ */ jsxs("div", {
|
|
11321
|
-
"data-c13y-component": "text-area-deprecated",
|
|
11322
11378
|
className: clsx$1("ds-text-area__container", className),
|
|
11323
11379
|
children: [
|
|
11324
11380
|
/* @__PURE__ */ jsxs("label", {
|
|
11325
11381
|
className: "ds-text-area__label",
|
|
11326
11382
|
htmlFor: id,
|
|
11327
|
-
"data-c13y-component": "text-area-deprecated-label",
|
|
11328
11383
|
children: [label, requiredLabel && /* @__PURE__ */ jsx("span", {
|
|
11329
11384
|
className: "ds-text-area__label-required",
|
|
11330
11385
|
"aria-hidden": true,
|
|
@@ -11333,7 +11388,6 @@ function TextAreaDeprecated(props) {
|
|
|
11333
11388
|
}),
|
|
11334
11389
|
/* @__PURE__ */ jsx("textarea", {
|
|
11335
11390
|
className: clsx$1("ds-text-area__input", resizable && "resizable", errorMessage && "ds-text-area__input--error"),
|
|
11336
|
-
"data-c13y-component": "text-area-deprecated-input",
|
|
11337
11391
|
dir: "auto",
|
|
11338
11392
|
id,
|
|
11339
11393
|
name: inputId ?? label,
|
|
@@ -11348,24 +11402,20 @@ function TextAreaDeprecated(props) {
|
|
|
11348
11402
|
}),
|
|
11349
11403
|
/* @__PURE__ */ jsxs("div", {
|
|
11350
11404
|
className: "ds-text-area__footer",
|
|
11351
|
-
"data-c13y-component": "text-area-deprecated-footer",
|
|
11352
11405
|
children: [/* @__PURE__ */ jsxs("div", { children: [/* @__PURE__ */ jsx("p", {
|
|
11353
11406
|
id: errorId,
|
|
11354
11407
|
"aria-live": errorAriaLive,
|
|
11355
11408
|
"aria-atomic": "true",
|
|
11356
11409
|
children: errorMessage && /* @__PURE__ */ jsxs("span", {
|
|
11357
11410
|
className: "ds-text-area__error",
|
|
11358
|
-
"data-c13y-component": "text-area-deprecated-error",
|
|
11359
11411
|
children: [/* @__PURE__ */ jsx(AlertIcon_default, {}), errorMessage]
|
|
11360
11412
|
})
|
|
11361
11413
|
}), description && /* @__PURE__ */ jsx("p", {
|
|
11362
11414
|
className: "ds-text-area__description",
|
|
11363
11415
|
id: descriptionId,
|
|
11364
|
-
"data-c13y-component": "text-area-deprecated-description",
|
|
11365
11416
|
children: description
|
|
11366
11417
|
})] }), limit && /* @__PURE__ */ jsxs("span", {
|
|
11367
11418
|
className: "ds-text-area__counter",
|
|
11368
|
-
"data-c13y-component": "text-area-deprecated-counter",
|
|
11369
11419
|
children: [
|
|
11370
11420
|
count,
|
|
11371
11421
|
"/",
|
|
@@ -11414,13 +11464,11 @@ var TextInput = forwardRef(function TextInput(props, ref) {
|
|
|
11414
11464
|
const inputRef = useRef(null);
|
|
11415
11465
|
if (!ref) ref = inputRef;
|
|
11416
11466
|
return /* @__PURE__ */ jsxs("div", {
|
|
11417
|
-
"data-c13y-component": "text-input",
|
|
11418
11467
|
className: clsx$1("ds-text-input__container", errorMessage ? "ds-text-input__container--error" : `ds-text-input__container--${variant}`, restProps.disabled && "ds-text-input__container--disabled", className),
|
|
11419
11468
|
children: [
|
|
11420
11469
|
/* @__PURE__ */ jsxs("label", {
|
|
11421
11470
|
className: "ds-text-input__label",
|
|
11422
11471
|
htmlFor: inputId,
|
|
11423
|
-
"data-c13y-component": "text-input-label",
|
|
11424
11472
|
children: [label, requiredLabel && /* @__PURE__ */ jsx("span", {
|
|
11425
11473
|
className: "ds-text-input__label-required",
|
|
11426
11474
|
"aria-hidden": true,
|
|
@@ -11429,7 +11477,6 @@ var TextInput = forwardRef(function TextInput(props, ref) {
|
|
|
11429
11477
|
}),
|
|
11430
11478
|
/* @__PURE__ */ jsxs("div", {
|
|
11431
11479
|
className: "ds-text-input__base-wrapper",
|
|
11432
|
-
"data-c13y-component": "text-input-container",
|
|
11433
11480
|
style: { width },
|
|
11434
11481
|
onClick: () => ref && "current" in ref && ref.current?.focus(),
|
|
11435
11482
|
role: "none",
|
|
@@ -11439,7 +11486,6 @@ var TextInput = forwardRef(function TextInput(props, ref) {
|
|
|
11439
11486
|
children: icon
|
|
11440
11487
|
}),
|
|
11441
11488
|
/* @__PURE__ */ jsx("input", {
|
|
11442
|
-
"data-c13y-component": "text-input-input",
|
|
11443
11489
|
className: "ds-text-input__base-input",
|
|
11444
11490
|
"aria-invalid": !!errorMessage,
|
|
11445
11491
|
id: inputId,
|
|
@@ -11459,7 +11505,6 @@ var TextInput = forwardRef(function TextInput(props, ref) {
|
|
|
11459
11505
|
errorMessage && /* @__PURE__ */ jsxs("div", {
|
|
11460
11506
|
className: "ds-text-input__error",
|
|
11461
11507
|
id: inputErrorId,
|
|
11462
|
-
"data-c13y-component": "text-input-error",
|
|
11463
11508
|
children: [/* @__PURE__ */ jsx("span", {
|
|
11464
11509
|
className: "ds-text-input__error-icon",
|
|
11465
11510
|
children: /* @__PURE__ */ jsx(AlertIcon_default, {})
|
|
@@ -11468,7 +11513,6 @@ var TextInput = forwardRef(function TextInput(props, ref) {
|
|
|
11468
11513
|
description && /* @__PURE__ */ jsx("div", {
|
|
11469
11514
|
className: clsx$1("ds-text-input__description"),
|
|
11470
11515
|
id: inputDescriptionId,
|
|
11471
|
-
"data-c13y-component": "text-input-description",
|
|
11472
11516
|
children: description
|
|
11473
11517
|
})
|
|
11474
11518
|
]
|
|
@@ -11484,7 +11528,6 @@ function Toggle(props) {
|
|
|
11484
11528
|
const descriptionId = `toggle-${id}-descr`;
|
|
11485
11529
|
const inputId = `toggle-${id}-label`;
|
|
11486
11530
|
return /* @__PURE__ */ jsxs("div", {
|
|
11487
|
-
"data-c13y-component": "toggle",
|
|
11488
11531
|
className: clsx$1("ds-toggle__container", disabled && "ds-toggle__container--disabled", spaceBetween ? "ds-toggle__container--full-width" : "ds-toggle__container--content-width", className),
|
|
11489
11532
|
children: [/* @__PURE__ */ jsxs("div", {
|
|
11490
11533
|
className: clsx$1("ds-toggle__wrapper"),
|
|
@@ -11493,13 +11536,11 @@ function Toggle(props) {
|
|
|
11493
11536
|
className: clsx$1("ds-toggle__label-container"),
|
|
11494
11537
|
children: /* @__PURE__ */ jsx("label", {
|
|
11495
11538
|
className: clsx$1("ds-toggle__label"),
|
|
11496
|
-
"data-c13y-component": "toggle-label",
|
|
11497
11539
|
htmlFor: inputId,
|
|
11498
11540
|
children: label
|
|
11499
11541
|
})
|
|
11500
11542
|
}),
|
|
11501
11543
|
/* @__PURE__ */ jsx("input", {
|
|
11502
|
-
"data-c13y-component": "toggle-input",
|
|
11503
11544
|
className: "ds-toggle",
|
|
11504
11545
|
name,
|
|
11505
11546
|
type: "checkbox",
|
|
@@ -11512,7 +11553,6 @@ function Toggle(props) {
|
|
|
11512
11553
|
}),
|
|
11513
11554
|
/* @__PURE__ */ jsxs("div", {
|
|
11514
11555
|
className: clsx$1("ds-toggle__switch-wrapper"),
|
|
11515
|
-
"data-c13y-component": "toggle-switch",
|
|
11516
11556
|
children: [
|
|
11517
11557
|
/* @__PURE__ */ jsx(CheckIcon_default, {
|
|
11518
11558
|
"aria-hidden": "true",
|
|
@@ -11528,7 +11568,6 @@ function Toggle(props) {
|
|
|
11528
11568
|
]
|
|
11529
11569
|
}), description && /* @__PURE__ */ jsx("p", {
|
|
11530
11570
|
className: clsx$1("ds-toggle__description"),
|
|
11531
|
-
"data-c13y-component": "toggle-description",
|
|
11532
11571
|
id: descriptionId,
|
|
11533
11572
|
children: description
|
|
11534
11573
|
})]
|
|
@@ -11567,6 +11606,7 @@ var Tooltip = {
|
|
|
11567
11606
|
Content: forwardRef((props, ref) => {
|
|
11568
11607
|
const context = useContext(TooltipContext);
|
|
11569
11608
|
const { className, children, variant = "default", is = "description", container, ...rest } = props;
|
|
11609
|
+
const { c13y, rest: positionerProps } = splitC13yProps(rest);
|
|
11570
11610
|
useEffect(() => {
|
|
11571
11611
|
if (context) context.setIs(is);
|
|
11572
11612
|
}, [is, context]);
|
|
@@ -11574,8 +11614,9 @@ var Tooltip = {
|
|
|
11574
11614
|
container,
|
|
11575
11615
|
children: /* @__PURE__ */ jsx(Tooltip$1.Positioner, {
|
|
11576
11616
|
sideOffset: 4,
|
|
11577
|
-
...
|
|
11617
|
+
...positionerProps,
|
|
11578
11618
|
children: /* @__PURE__ */ jsx(Tooltip$1.Popup, {
|
|
11619
|
+
...c13y,
|
|
11579
11620
|
"data-c13y-component": "tooltip-popover",
|
|
11580
11621
|
className: clsx$1(`ds-tooltip--${variant}`, "ds-tooltip", className),
|
|
11581
11622
|
id: context?.id,
|
|
@@ -11646,13 +11687,12 @@ function TooltipDeprecated(props) {
|
|
|
11646
11687
|
...styles
|
|
11647
11688
|
}
|
|
11648
11689
|
}),
|
|
11649
|
-
"data-c13y-component": "tooltip-deprecated",
|
|
11650
11690
|
className: clsx("ds-tooltip-deprecated", className),
|
|
11651
11691
|
children: content
|
|
11652
11692
|
}) : null] });
|
|
11653
11693
|
}
|
|
11654
11694
|
TooltipDeprecated.displayName = "TooltipDeprecated";
|
|
11655
11695
|
//#endregion
|
|
11656
|
-
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, 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, 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 };
|
|
11696
|
+
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, 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 };
|
|
11657
11697
|
|
|
11658
11698
|
//# sourceMappingURL=main.js.map
|