@staffbase/design 19.1.0 → 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 +161 -59
- package/dist/main.cjs.map +1 -1
- package/dist/main.d.ts +87 -20
- package/dist/main.js +154 -34
- package/dist/main.js.map +1 -1
- package/package.json +8 -1
package/dist/main.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ import { AutocompleteGroupProps } from '@base-ui/react';
|
|
|
8
8
|
import { AutocompleteInputProps } from '@base-ui/react';
|
|
9
9
|
import { AutocompleteListProps } from '@base-ui/react';
|
|
10
10
|
import { AutocompleteStatusProps } from '@base-ui/react';
|
|
11
|
+
import { Avatar as Avatar_2 } from '@base-ui/react/avatar';
|
|
11
12
|
import { ButtonHTMLAttributes } from 'react';
|
|
12
13
|
import { ChangeEvent } from 'react';
|
|
13
14
|
import { ClassAttributes } from 'react';
|
|
@@ -129,6 +130,11 @@ export declare const ActionMenuTrigger: default_2.ForwardRefExoticComponent<{
|
|
|
129
130
|
children: ReactNode;
|
|
130
131
|
} & default_2.RefAttributes<HTMLElement>>;
|
|
131
132
|
|
|
133
|
+
declare interface ActionProps extends ComponentProps<'button'> {
|
|
134
|
+
color?: Extract<ComponentProps<typeof Button>['color'], 'primary' | 'critical'>;
|
|
135
|
+
children: ReactNode;
|
|
136
|
+
}
|
|
137
|
+
|
|
132
138
|
export declare const AddCircleIcon: default_2.NamedExoticComponent<default_2.SVGAttributes<SVGSVGElement> & default_2.RefAttributes<SVGSVGElement>>;
|
|
133
139
|
|
|
134
140
|
export declare const AddIcon: default_2.NamedExoticComponent<default_2.SVGAttributes<SVGSVGElement> & default_2.RefAttributes<SVGSVGElement>>;
|
|
@@ -144,7 +150,7 @@ export declare const AlertDialog: {
|
|
|
144
150
|
Trigger: (props: TriggerProps) => JSX.Element;
|
|
145
151
|
Popup: ForwardRefExoticComponent<Omit<PopupProps, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
146
152
|
Cancel: ForwardRefExoticComponent<Omit<Omit< ButtonProps, "ref"> & RefAttributes<HTMLButtonElement>, "ref"> & RefAttributes<HTMLButtonElement>>;
|
|
147
|
-
Action: ForwardRefExoticComponent<Omit<
|
|
153
|
+
Action: ForwardRefExoticComponent<Omit<ActionProps, "ref"> & RefAttributes<HTMLButtonElement>>;
|
|
148
154
|
Title: ForwardRefExoticComponent<Omit< AlertDialogTitleProps, "ref"> & RefAttributes<HTMLHeadingElement>>;
|
|
149
155
|
Description: ForwardRefExoticComponent<Omit< AlertDialogDescriptionProps, "ref"> & RefAttributes<HTMLParagraphElement>>;
|
|
150
156
|
Icon: ForwardRefExoticComponent<Omit< ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement> & {
|
|
@@ -170,15 +176,26 @@ export declare const ArtboardIcon: default_2.NamedExoticComponent<default_2.SVGA
|
|
|
170
176
|
|
|
171
177
|
export declare const AttachmentIcon: default_2.NamedExoticComponent<default_2.SVGAttributes<SVGSVGElement> & default_2.RefAttributes<SVGSVGElement>>;
|
|
172
178
|
|
|
173
|
-
export declare
|
|
179
|
+
export declare const Avatar: {
|
|
180
|
+
Root: ForwardRefExoticComponent<Omit<AvatarProps, "ref"> & RefAttributes<HTMLSpanElement>>;
|
|
181
|
+
Fallback: ForwardRefExoticComponent<Omit<FallbackProps, "ref"> & RefAttributes<HTMLSpanElement>>;
|
|
182
|
+
Group: ForwardRefExoticComponent<Omit< DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
183
|
+
GroupCount: ForwardRefExoticComponent<Omit< DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
184
|
+
Image: ForwardRefExoticComponent<Omit<ImageProps, "ref"> & RefAttributes<HTMLImageElement>>;
|
|
185
|
+
};
|
|
186
|
+
|
|
187
|
+
/** @deprecated Use `Avatar` from `@staffbase/design` instead */
|
|
188
|
+
declare type AvatarColor = 'cyan' | 'pink' | 'purple' | 'teal';
|
|
189
|
+
|
|
190
|
+
/** @deprecated Use `Avatar` from `@staffbase/design` instead */
|
|
191
|
+
export declare function AvatarDeprecated(props: AvatarDeprecatedProps): ReactElement;
|
|
174
192
|
|
|
175
|
-
export declare namespace
|
|
193
|
+
export declare namespace AvatarDeprecated {
|
|
176
194
|
var displayName: string;
|
|
177
195
|
}
|
|
178
196
|
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
export declare interface AvatarProps {
|
|
197
|
+
/** @deprecated Use `Avatar` from `@staffbase/design` instead */
|
|
198
|
+
export declare interface AvatarDeprecatedProps {
|
|
182
199
|
/**
|
|
183
200
|
* The `alt` attribute for the rendered `img` element
|
|
184
201
|
*/
|
|
@@ -207,10 +224,15 @@ export declare interface AvatarProps {
|
|
|
207
224
|
className?: string;
|
|
208
225
|
}
|
|
209
226
|
|
|
227
|
+
declare interface AvatarProps extends Avatar_2.Root.Props {
|
|
228
|
+
size?: 48 | 40 | 32 | 24 | 16;
|
|
229
|
+
}
|
|
230
|
+
|
|
210
231
|
declare interface AvatarProps_2 extends Omit<ComponentProps<'div'>, 'children'> {
|
|
211
232
|
size?: 48 | 40 | 32 | 24 | 16;
|
|
212
233
|
}
|
|
213
234
|
|
|
235
|
+
/** @deprecated Use `Avatar` from `@staffbase/design` instead */
|
|
214
236
|
declare type AvatarSize = '48' | '40' | '32' | '24' | '16';
|
|
215
237
|
|
|
216
238
|
declare interface BackProps extends ComponentProps<'button'> {
|
|
@@ -255,7 +277,7 @@ export declare interface BadgeProps {
|
|
|
255
277
|
declare type BadgeVariant = 'primary' | 'secondary' | 'critical' | 'gamification';
|
|
256
278
|
|
|
257
279
|
export declare const Banner: ForwardRefExoticComponent<BannerProps & RefAttributes<HTMLDivElement>> & {
|
|
258
|
-
|
|
280
|
+
Close: ForwardRefExoticComponent<Omit<CloseProps, "ref"> & RefAttributes<HTMLButtonElement>>;
|
|
259
281
|
};
|
|
260
282
|
|
|
261
283
|
export declare interface BannerProps extends HTMLAttributes<HTMLDivElement> {
|
|
@@ -371,7 +393,7 @@ export declare const BottomSheet: {
|
|
|
371
393
|
Root: typeof Drawer.Root;
|
|
372
394
|
Popup: ForwardRefExoticComponent<Omit<PopupProps_2, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
373
395
|
Trigger: (props: TriggerProps_2) => JSX.Element;
|
|
374
|
-
Close: ForwardRefExoticComponent<Omit<
|
|
396
|
+
Close: ForwardRefExoticComponent<Omit<CloseProps_2, "ref"> & RefAttributes<HTMLButtonElement>>;
|
|
375
397
|
Back: ForwardRefExoticComponent<Omit<BackProps, "ref"> & RefAttributes<HTMLButtonElement>>;
|
|
376
398
|
Description: ForwardRefExoticComponent<Omit< DrawerDescriptionProps, "ref"> & RefAttributes<HTMLParagraphElement>>;
|
|
377
399
|
Title: ForwardRefExoticComponent<Omit< DrawerTitleProps, "ref"> & RefAttributes<HTMLHeadingElement>>;
|
|
@@ -389,6 +411,8 @@ export declare const BurgerIcon: default_2.NamedExoticComponent<default_2.SVGAtt
|
|
|
389
411
|
|
|
390
412
|
export declare const Button: ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & RefAttributes<HTMLButtonElement>>;
|
|
391
413
|
|
|
414
|
+
declare type ButtonBaseProps = Omit<ComponentProps<'button'>, 'color'>;
|
|
415
|
+
|
|
392
416
|
/** @deprecated Use Button instead */
|
|
393
417
|
export declare const ButtonDeprecated: ForwardRefExoticComponent<ButtonDeprecatedProps & RefAttributes<HTMLButtonElement>>;
|
|
394
418
|
|
|
@@ -410,10 +434,7 @@ export declare interface ButtonDeprecatedProps extends BaseButtonProps {
|
|
|
410
434
|
|
|
411
435
|
declare type ButtonIconPosition = 'leading' | 'trailing';
|
|
412
436
|
|
|
413
|
-
export declare interface ButtonProps extends
|
|
414
|
-
variant?: 'solid' | 'outline' | 'ghost';
|
|
415
|
-
color?: 'primary' | 'neutral' | 'critical';
|
|
416
|
-
iconOnly?: boolean;
|
|
437
|
+
export declare interface ButtonProps extends ButtonBaseProps, ButtonStyleProps {
|
|
417
438
|
children: ReactNode;
|
|
418
439
|
}
|
|
419
440
|
|
|
@@ -430,8 +451,22 @@ export declare interface ButtonSingleSelectProps<TOption extends BaseOption> ext
|
|
|
430
451
|
ariaLabelledBy?: string;
|
|
431
452
|
}
|
|
432
453
|
|
|
454
|
+
declare interface ButtonStyleProps {
|
|
455
|
+
variant?: 'solid' | 'outline' | 'ghost';
|
|
456
|
+
color?: 'primary' | 'neutral' | 'critical';
|
|
457
|
+
iconOnly?: boolean;
|
|
458
|
+
className?: string;
|
|
459
|
+
}
|
|
460
|
+
|
|
433
461
|
declare type ButtonVariant = 'primary' | 'secondary' | 'critical';
|
|
434
462
|
|
|
463
|
+
export declare function buttonVariants({ variant, color, iconOnly, className }?: ButtonStyleProps): {
|
|
464
|
+
className: string;
|
|
465
|
+
'data-variant': "solid" | "outline" | "ghost";
|
|
466
|
+
'data-color': "critical" | "primary" | "neutral";
|
|
467
|
+
'data-icon-only': boolean | undefined;
|
|
468
|
+
};
|
|
469
|
+
|
|
435
470
|
export declare const CalendarIcon: default_2.NamedExoticComponent<default_2.SVGAttributes<SVGSVGElement> & default_2.RefAttributes<SVGSVGElement>>;
|
|
436
471
|
|
|
437
472
|
export declare const CameraIcon: default_2.NamedExoticComponent<default_2.SVGAttributes<SVGSVGElement> & default_2.RefAttributes<SVGSVGElement>>;
|
|
@@ -502,20 +537,19 @@ export declare const ClickIcon: default_2.NamedExoticComponent<default_2.SVGAttr
|
|
|
502
537
|
|
|
503
538
|
export declare const ClockIcon: default_2.NamedExoticComponent<default_2.SVGAttributes<SVGSVGElement> & default_2.RefAttributes<SVGSVGElement>>;
|
|
504
539
|
|
|
505
|
-
export declare interface CloseButtonProps extends HTMLAttributes<HTMLButtonElement> {
|
|
506
|
-
className?: string;
|
|
507
|
-
'aria-label': string;
|
|
508
|
-
}
|
|
509
|
-
|
|
510
540
|
export declare const CloseCircleIcon: default_2.NamedExoticComponent<default_2.SVGAttributes<SVGSVGElement> & default_2.RefAttributes<SVGSVGElement>>;
|
|
511
541
|
|
|
512
542
|
export declare const CloseIcon: default_2.NamedExoticComponent<default_2.SVGAttributes<SVGSVGElement> & default_2.RefAttributes<SVGSVGElement>>;
|
|
513
543
|
|
|
514
|
-
declare interface CloseProps extends
|
|
544
|
+
declare interface CloseProps extends ComponentProps<'button'> {
|
|
515
545
|
'aria-label': string;
|
|
516
546
|
}
|
|
517
547
|
|
|
518
|
-
declare interface CloseProps_2 extends
|
|
548
|
+
declare interface CloseProps_2 extends Drawer.Close.Props {
|
|
549
|
+
'aria-label': string;
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
declare interface CloseProps_3 extends Omit<Dialog_2.Close.Props, 'children'> {
|
|
519
553
|
children: Dialog_2.Close.Props['render'];
|
|
520
554
|
}
|
|
521
555
|
|
|
@@ -547,7 +581,7 @@ export declare const Dialog: {
|
|
|
547
581
|
Root: typeof Dialog_2.Root;
|
|
548
582
|
Popup: ForwardRefExoticComponent<Omit<PopupProps_3, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
549
583
|
Trigger: (props: TriggerProps_3) => JSX.Element;
|
|
550
|
-
Close: ForwardRefExoticComponent<Omit<
|
|
584
|
+
Close: ForwardRefExoticComponent<Omit<CloseProps_3, "ref"> & RefAttributes<HTMLButtonElement>>;
|
|
551
585
|
Description: ForwardRefExoticComponent<Omit< AlertDialogDescriptionProps, "ref"> & RefAttributes<HTMLParagraphElement>>;
|
|
552
586
|
Title: ForwardRefExoticComponent<Omit< AlertDialogTitleProps, "ref"> & RefAttributes<HTMLHeadingElement>>;
|
|
553
587
|
Header: ForwardRefExoticComponent<Omit< DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
@@ -597,12 +631,30 @@ export declare const EmailOpenIcon: default_2.NamedExoticComponent<default_2.SVG
|
|
|
597
631
|
|
|
598
632
|
export declare const EmailTeamsIcon: default_2.NamedExoticComponent<default_2.SVGAttributes<SVGSVGElement> & default_2.RefAttributes<SVGSVGElement>>;
|
|
599
633
|
|
|
634
|
+
export declare const Empty: {
|
|
635
|
+
Root: ForwardRefExoticComponent<Omit< ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement> & {
|
|
636
|
+
children: ReactNode;
|
|
637
|
+
}, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
638
|
+
Media: ForwardRefExoticComponent<Omit<EmptyMediaProps, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
639
|
+
Title: ForwardRefExoticComponent<Omit<EmptyTitleProps, "ref"> & RefAttributes<HTMLHeadingElement>>;
|
|
640
|
+
Description: ForwardRefExoticComponent<Omit< ClassAttributes<HTMLParagraphElement> & HTMLAttributes<HTMLParagraphElement> & {
|
|
641
|
+
children: ReactNode;
|
|
642
|
+
}, "ref"> & RefAttributes<HTMLParagraphElement>>;
|
|
643
|
+
};
|
|
644
|
+
|
|
645
|
+
declare interface EmptyMediaProps extends ComponentProps<'div'> {
|
|
646
|
+
children: ReactNode;
|
|
647
|
+
size?: 'xs' | 'md' | 'lg';
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
/** @deprecated Use Empty instead */
|
|
600
651
|
export declare function EmptyState(props: EmptyStateProps): ReactElement;
|
|
601
652
|
|
|
602
653
|
export declare namespace EmptyState {
|
|
603
654
|
var displayName: string;
|
|
604
655
|
}
|
|
605
656
|
|
|
657
|
+
/** @deprecated Use Empty instead */
|
|
606
658
|
export declare interface EmptyStateProps {
|
|
607
659
|
/**
|
|
608
660
|
* Defines the title of the component
|
|
@@ -627,12 +679,22 @@ export declare interface EmptyStateProps {
|
|
|
627
679
|
className?: string;
|
|
628
680
|
}
|
|
629
681
|
|
|
682
|
+
declare interface EmptyTitleProps extends ComponentProps<'h2'> {
|
|
683
|
+
children: ReactNode;
|
|
684
|
+
as: 'h2' | 'h3' | 'h4' | 'p';
|
|
685
|
+
}
|
|
686
|
+
|
|
630
687
|
export declare const ExpandHorizontalIcon: default_2.NamedExoticComponent<default_2.SVGAttributes<SVGSVGElement> & default_2.RefAttributes<SVGSVGElement>>;
|
|
631
688
|
|
|
632
689
|
export declare const ExpandIcon: default_2.NamedExoticComponent<default_2.SVGAttributes<SVGSVGElement> & default_2.RefAttributes<SVGSVGElement>>;
|
|
633
690
|
|
|
634
691
|
export declare const ExpandVerticalIcon: default_2.NamedExoticComponent<default_2.SVGAttributes<SVGSVGElement> & default_2.RefAttributes<SVGSVGElement>>;
|
|
635
692
|
|
|
693
|
+
declare interface FallbackProps extends Avatar_2.Fallback.Props {
|
|
694
|
+
name?: string;
|
|
695
|
+
children: ReactNode;
|
|
696
|
+
}
|
|
697
|
+
|
|
636
698
|
export declare const FeatureAnalyticsIcon: default_2.NamedExoticComponent<default_2.SVGAttributes<SVGSVGElement> & default_2.RefAttributes<SVGSVGElement>>;
|
|
637
699
|
|
|
638
700
|
export declare const FeatureCampaignsIcon: default_2.NamedExoticComponent<default_2.SVGAttributes<SVGSVGElement> & default_2.RefAttributes<SVGSVGElement>>;
|
|
@@ -1165,6 +1227,11 @@ declare type IconSize = '40px' | '96px';
|
|
|
1165
1227
|
|
|
1166
1228
|
export declare const ImageIcon: default_2.NamedExoticComponent<default_2.SVGAttributes<SVGSVGElement> & default_2.RefAttributes<SVGSVGElement>>;
|
|
1167
1229
|
|
|
1230
|
+
declare interface ImageProps extends Avatar_2.Image.Props {
|
|
1231
|
+
src: string;
|
|
1232
|
+
alt: string;
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1168
1235
|
export declare const ImageUploadIcon: default_2.NamedExoticComponent<default_2.SVGAttributes<SVGSVGElement> & default_2.RefAttributes<SVGSVGElement>>;
|
|
1169
1236
|
|
|
1170
1237
|
export declare const InfoIcon: default_2.NamedExoticComponent<default_2.SVGAttributes<SVGSVGElement> & default_2.RefAttributes<SVGSVGElement>>;
|
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`.
|
|
@@ -8780,8 +8853,9 @@ var Icon = ({ name, ...props }) => {
|
|
|
8780
8853
|
}) : null;
|
|
8781
8854
|
};
|
|
8782
8855
|
//#endregion
|
|
8783
|
-
//#region src/components/
|
|
8784
|
-
|
|
8856
|
+
//#region src/components/avatarDeprecated/AvatarDeprecated.tsx
|
|
8857
|
+
/** @deprecated Use `Avatar` from `@staffbase/design` instead */
|
|
8858
|
+
function AvatarDeprecated(props) {
|
|
8785
8859
|
const { alt, children, className = "", color = "purple", size = "32", src } = props;
|
|
8786
8860
|
const [hasImage, setHasImage] = useState(src !== void 0 && src !== "");
|
|
8787
8861
|
const variant = typeof children === "string" && children !== "" ? color : "grey";
|
|
@@ -8791,20 +8865,18 @@ function Avatar(props) {
|
|
|
8791
8865
|
const attrs = { title: alt };
|
|
8792
8866
|
if (hasImage) return /* @__PURE__ */ jsx("img", {
|
|
8793
8867
|
...attrs,
|
|
8794
|
-
"
|
|
8795
|
-
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),
|
|
8796
8869
|
src,
|
|
8797
8870
|
alt,
|
|
8798
8871
|
onError: () => setHasImage(false)
|
|
8799
8872
|
});
|
|
8800
8873
|
return /* @__PURE__ */ jsx("span", {
|
|
8801
8874
|
...attrs,
|
|
8802
|
-
"
|
|
8803
|
-
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),
|
|
8804
8876
|
children: children ?? /* @__PURE__ */ jsx(UserIcon_default, {})
|
|
8805
8877
|
});
|
|
8806
8878
|
}
|
|
8807
|
-
|
|
8879
|
+
AvatarDeprecated.displayName = "Avatar";
|
|
8808
8880
|
//#endregion
|
|
8809
8881
|
//#region src/components/badge/Badge.tsx
|
|
8810
8882
|
function Badge(props) {
|
|
@@ -8832,7 +8904,7 @@ var ICONS = {
|
|
|
8832
8904
|
warning: /* @__PURE__ */ jsx(WarningIcon_default, {}),
|
|
8833
8905
|
critical: /* @__PURE__ */ jsx(AlertIcon_default, {})
|
|
8834
8906
|
};
|
|
8835
|
-
var Root$
|
|
8907
|
+
var Root$9 = forwardRef((props, ref) => {
|
|
8836
8908
|
const { children, className, variant = "info", size = "sm", layout = "standalone", ...restProps } = props;
|
|
8837
8909
|
return /* @__PURE__ */ jsxs("div", {
|
|
8838
8910
|
"data-c13y-component": "banner",
|
|
@@ -8849,8 +8921,8 @@ var Root$8 = forwardRef((props, ref) => {
|
|
|
8849
8921
|
})]
|
|
8850
8922
|
});
|
|
8851
8923
|
});
|
|
8852
|
-
Root$
|
|
8853
|
-
var
|
|
8924
|
+
Root$9.displayName = "Banner.Root";
|
|
8925
|
+
var Close$3 = forwardRef((props, ref) => {
|
|
8854
8926
|
const { className, ...restProps } = props;
|
|
8855
8927
|
return /* @__PURE__ */ jsx("button", {
|
|
8856
8928
|
ref,
|
|
@@ -8861,8 +8933,8 @@ var CloseButton = forwardRef((props, ref) => {
|
|
|
8861
8933
|
children: /* @__PURE__ */ jsx(CloseIcon_default, {})
|
|
8862
8934
|
});
|
|
8863
8935
|
});
|
|
8864
|
-
|
|
8865
|
-
var Banner = Object.assign(Root$
|
|
8936
|
+
Close$3.displayName = "Banner.Close";
|
|
8937
|
+
var Banner = Object.assign(Root$9, { Close: Close$3 });
|
|
8866
8938
|
//#endregion
|
|
8867
8939
|
//#region src/components/bottomSheet/BottomSheet.tsx
|
|
8868
8940
|
var Trigger$6 = (props) => {
|
|
@@ -8873,7 +8945,7 @@ var Trigger$6 = (props) => {
|
|
|
8873
8945
|
ref
|
|
8874
8946
|
});
|
|
8875
8947
|
};
|
|
8876
|
-
var Title$
|
|
8948
|
+
var Title$2 = forwardRef((props, ref) => {
|
|
8877
8949
|
const { className, ...rest } = props;
|
|
8878
8950
|
return /* @__PURE__ */ jsx(Drawer.Title, {
|
|
8879
8951
|
"data-c13y-component": "bottom-sheet-title",
|
|
@@ -8882,7 +8954,7 @@ var Title$1 = forwardRef((props, ref) => {
|
|
|
8882
8954
|
ref
|
|
8883
8955
|
});
|
|
8884
8956
|
});
|
|
8885
|
-
var Description$
|
|
8957
|
+
var Description$3 = forwardRef((props, ref) => {
|
|
8886
8958
|
const { className, ...rest } = props;
|
|
8887
8959
|
return /* @__PURE__ */ jsx(Drawer.Description, {
|
|
8888
8960
|
"data-c13y-component": "bottom-sheet-description",
|
|
@@ -8956,8 +9028,8 @@ var BottomSheet = {
|
|
|
8956
9028
|
Trigger: Trigger$6,
|
|
8957
9029
|
Close: Close$2,
|
|
8958
9030
|
Back,
|
|
8959
|
-
Description: Description$
|
|
8960
|
-
Title: Title$
|
|
9031
|
+
Description: Description$3,
|
|
9032
|
+
Title: Title$2,
|
|
8961
9033
|
Action,
|
|
8962
9034
|
Header: Header$1
|
|
8963
9035
|
};
|
|
@@ -9127,7 +9199,7 @@ var Trigger$5 = (props) => {
|
|
|
9127
9199
|
ref
|
|
9128
9200
|
});
|
|
9129
9201
|
};
|
|
9130
|
-
var Title = forwardRef((props, ref) => {
|
|
9202
|
+
var Title$1 = forwardRef((props, ref) => {
|
|
9131
9203
|
const { className, ...rest } = props;
|
|
9132
9204
|
return /* @__PURE__ */ jsx(Dialog$1.Title, {
|
|
9133
9205
|
"data-c13y-component": "dialog-title",
|
|
@@ -9136,7 +9208,7 @@ var Title = forwardRef((props, ref) => {
|
|
|
9136
9208
|
ref
|
|
9137
9209
|
});
|
|
9138
9210
|
});
|
|
9139
|
-
var Description$
|
|
9211
|
+
var Description$2 = forwardRef((props, ref) => {
|
|
9140
9212
|
const { className, ...rest } = props;
|
|
9141
9213
|
return /* @__PURE__ */ jsx(Dialog$1.Description, {
|
|
9142
9214
|
"data-c13y-component": "dialog-description",
|
|
@@ -9201,8 +9273,8 @@ var Dialog = {
|
|
|
9201
9273
|
Popup: Popup$4,
|
|
9202
9274
|
Trigger: Trigger$5,
|
|
9203
9275
|
Close: Close$1,
|
|
9204
|
-
Description: Description$
|
|
9205
|
-
Title,
|
|
9276
|
+
Description: Description$2,
|
|
9277
|
+
Title: Title$1,
|
|
9206
9278
|
Header,
|
|
9207
9279
|
Footer,
|
|
9208
9280
|
Body
|
|
@@ -9236,13 +9308,63 @@ function Divider(props) {
|
|
|
9236
9308
|
}
|
|
9237
9309
|
Divider.displayName = "Divider";
|
|
9238
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
|
|
9239
9361
|
//#region src/components/emptyState/EmptyState.tsx
|
|
9240
9362
|
var getValidIconSize = (iconSize) => iconSize === "40px" || iconSize === "96px" ? iconSize : "40px";
|
|
9363
|
+
/** @deprecated Use Empty instead */
|
|
9241
9364
|
function EmptyState(props) {
|
|
9242
9365
|
const { title, icon, iconSize, body, className = "" } = props;
|
|
9243
9366
|
const validIconSize = getValidIconSize(iconSize);
|
|
9244
9367
|
return /* @__PURE__ */ jsxs("div", {
|
|
9245
|
-
"data-c13y-component": "empty-state",
|
|
9246
9368
|
className: clsx$1("ds-empty-state", className),
|
|
9247
9369
|
children: [
|
|
9248
9370
|
icon && cloneElement(icon, {
|
|
@@ -9255,12 +9377,10 @@ function EmptyState(props) {
|
|
|
9255
9377
|
}),
|
|
9256
9378
|
/* @__PURE__ */ jsx("p", {
|
|
9257
9379
|
className: "ds-empty-state__title",
|
|
9258
|
-
"data-c13y-component": "empty-state-title",
|
|
9259
9380
|
children: title
|
|
9260
9381
|
}),
|
|
9261
9382
|
body ? /* @__PURE__ */ jsx("p", {
|
|
9262
9383
|
className: "ds-empty-state__body",
|
|
9263
|
-
"data-c13y-component": "empty-state-content",
|
|
9264
9384
|
children: body
|
|
9265
9385
|
}) : null
|
|
9266
9386
|
]
|
|
@@ -10777,7 +10897,7 @@ var Chip = forwardRef((props, ref) => {
|
|
|
10777
10897
|
})]
|
|
10778
10898
|
});
|
|
10779
10899
|
});
|
|
10780
|
-
var Empty$
|
|
10900
|
+
var Empty$2 = forwardRef((props, ref) => {
|
|
10781
10901
|
const { className, ...rest } = props;
|
|
10782
10902
|
return /* @__PURE__ */ jsx(Combobox.Empty, {
|
|
10783
10903
|
"data-c13y-component": "searchable-multi-select-empty",
|
|
@@ -10813,7 +10933,7 @@ var SearchableMultiSelect = {
|
|
|
10813
10933
|
Input: Input$2,
|
|
10814
10934
|
Value: Value$1,
|
|
10815
10935
|
Chip,
|
|
10816
|
-
Empty: Empty$
|
|
10936
|
+
Empty: Empty$2,
|
|
10817
10937
|
Collection: Combobox.Collection,
|
|
10818
10938
|
Status: Combobox.Status
|
|
10819
10939
|
};
|
|
@@ -10911,7 +11031,7 @@ var GroupLabel$1 = forwardRef((props, ref) => {
|
|
|
10911
11031
|
...rest
|
|
10912
11032
|
});
|
|
10913
11033
|
});
|
|
10914
|
-
var Empty = forwardRef((props, ref) => {
|
|
11034
|
+
var Empty$1 = forwardRef((props, ref) => {
|
|
10915
11035
|
const { className, ...rest } = props;
|
|
10916
11036
|
return /* @__PURE__ */ jsx(Combobox.Empty, {
|
|
10917
11037
|
"data-c13y-component": "searchable-single-select-empty",
|
|
@@ -10932,7 +11052,7 @@ var SearchableSingleSelect = {
|
|
|
10932
11052
|
ItemIndicator: ItemIndicator$1,
|
|
10933
11053
|
Separator: Separator$2,
|
|
10934
11054
|
Input: Input$1,
|
|
10935
|
-
Empty
|
|
11055
|
+
Empty: Empty$1
|
|
10936
11056
|
};
|
|
10937
11057
|
//#endregion
|
|
10938
11058
|
//#region src/components/segmentedControl/SegmentedControl.tsx
|
|
@@ -11787,6 +11907,6 @@ function TooltipDeprecated(props) {
|
|
|
11787
11907
|
}
|
|
11788
11908
|
TooltipDeprecated.displayName = "TooltipDeprecated";
|
|
11789
11909
|
//#endregion
|
|
11790
|
-
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, 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, 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 };
|
|
11791
11911
|
|
|
11792
11912
|
//# sourceMappingURL=main.js.map
|