@kaizen/components 0.0.0-canary-richtexttest-20231101014014 → 0.0.0-canary-js-tokens-20231102055559
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/cjs/LikertScaleLegacy/LikertScaleLegacy.cjs +146 -0
- package/dist/cjs/LikertScaleLegacy/LikertScaleLegacy.cjs.map +1 -0
- package/dist/cjs/LikertScaleLegacy/LikertScaleLegacy.module.scss.cjs +27 -0
- package/dist/cjs/LikertScaleLegacy/LikertScaleLegacy.module.scss.cjs.map +1 -0
- package/dist/cjs/LikertScaleLegacy/utils/determineSelectionFromKeyPress.cjs +50 -0
- package/dist/cjs/LikertScaleLegacy/utils/determineSelectionFromKeyPress.cjs.map +1 -0
- package/dist/cjs/ProgressBar/ProgressBar.cjs +59 -0
- package/dist/cjs/ProgressBar/ProgressBar.cjs.map +1 -0
- package/dist/cjs/ProgressBar/ProgressBar.module.scss.cjs +15 -0
- package/dist/cjs/ProgressBar/ProgressBar.module.scss.cjs.map +1 -0
- package/dist/cjs/ProgressBar/subcomponents/Label/Label.cjs +23 -0
- package/dist/cjs/ProgressBar/subcomponents/Label/Label.cjs.map +1 -0
- package/dist/cjs/ProgressBar/subcomponents/Label/Label.module.scss.cjs +7 -0
- package/dist/cjs/ProgressBar/subcomponents/Label/Label.module.scss.cjs.map +1 -0
- package/dist/cjs/ProgressBar/utils/calculatePercentage.cjs +9 -0
- package/dist/cjs/ProgressBar/utils/calculatePercentage.cjs.map +1 -0
- package/dist/cjs/dts/LikertScaleLegacy/LikertScaleLegacy.d.ts +20 -0
- package/dist/cjs/dts/LikertScaleLegacy/index.d.ts +1 -0
- package/dist/cjs/dts/LikertScaleLegacy/types.d.ts +6 -0
- package/dist/cjs/dts/LikertScaleLegacy/utils/determineSelectionFromKeyPress.d.ts +3 -0
- package/dist/cjs/dts/Notification/ToastNotification/ToastNotification.d.ts +14 -0
- package/dist/cjs/dts/Notification/ToastNotification/index.d.ts +3 -0
- package/dist/cjs/dts/Notification/ToastNotification/subcomponents/ToastNotificationManager/ToastNotificationManager.d.ts +7 -0
- package/dist/cjs/dts/Notification/ToastNotification/subcomponents/ToastNotificationManager/index.d.ts +1 -0
- package/dist/cjs/dts/Notification/ToastNotification/subcomponents/ToastNotificationsList/ToastNotificationsList.d.ts +11 -0
- package/dist/cjs/dts/Notification/ToastNotification/subcomponents/ToastNotificationsList/index.d.ts +1 -0
- package/dist/cjs/dts/Notification/ToastNotification/subcomponents/ToastNotificationsListContainer/ToastNotificationsListContainer.d.ts +7 -0
- package/dist/cjs/dts/Notification/ToastNotification/subcomponents/ToastNotificationsListContainer/index.d.ts +1 -0
- package/dist/cjs/dts/Notification/ToastNotification/types.d.ts +23 -0
- package/dist/cjs/dts/ProgressBar/ProgressBar.d.ts +24 -0
- package/dist/cjs/dts/ProgressBar/index.d.ts +1 -0
- package/dist/cjs/dts/ProgressBar/subcomponents/Label/Label.d.ts +10 -0
- package/dist/cjs/dts/ProgressBar/subcomponents/Label/index.d.ts +1 -0
- package/dist/cjs/dts/ProgressBar/utils/calculatePercentage.d.ts +4 -0
- package/dist/cjs/dts/index.d.ts +2 -1
- package/dist/cjs/index.cjs +4 -14
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/index.css +5 -8
- package/dist/esm/LikertScaleLegacy/LikertScaleLegacy.mjs +144 -0
- package/dist/esm/LikertScaleLegacy/LikertScaleLegacy.mjs.map +1 -0
- package/dist/esm/LikertScaleLegacy/LikertScaleLegacy.module.scss.mjs +25 -0
- package/dist/esm/LikertScaleLegacy/LikertScaleLegacy.module.scss.mjs.map +1 -0
- package/dist/esm/LikertScaleLegacy/utils/determineSelectionFromKeyPress.mjs +48 -0
- package/dist/esm/LikertScaleLegacy/utils/determineSelectionFromKeyPress.mjs.map +1 -0
- package/dist/esm/ProgressBar/ProgressBar.mjs +57 -0
- package/dist/esm/ProgressBar/ProgressBar.mjs.map +1 -0
- package/dist/esm/ProgressBar/ProgressBar.module.scss.mjs +13 -0
- package/dist/esm/ProgressBar/ProgressBar.module.scss.mjs.map +1 -0
- package/dist/esm/ProgressBar/subcomponents/Label/Label.mjs +21 -0
- package/dist/esm/ProgressBar/subcomponents/Label/Label.mjs.map +1 -0
- package/dist/esm/ProgressBar/subcomponents/Label/Label.module.scss.mjs +5 -0
- package/dist/esm/ProgressBar/subcomponents/Label/Label.module.scss.mjs.map +1 -0
- package/dist/esm/ProgressBar/utils/calculatePercentage.mjs +7 -0
- package/dist/esm/ProgressBar/utils/calculatePercentage.mjs.map +1 -0
- package/dist/esm/dts/LikertScaleLegacy/LikertScaleLegacy.d.ts +20 -0
- package/dist/esm/dts/LikertScaleLegacy/index.d.ts +1 -0
- package/dist/esm/dts/LikertScaleLegacy/types.d.ts +6 -0
- package/dist/esm/dts/LikertScaleLegacy/utils/determineSelectionFromKeyPress.d.ts +3 -0
- package/dist/esm/dts/Notification/ToastNotification/ToastNotification.d.ts +14 -0
- package/dist/esm/dts/Notification/ToastNotification/index.d.ts +3 -0
- package/dist/esm/dts/Notification/ToastNotification/subcomponents/ToastNotificationManager/ToastNotificationManager.d.ts +7 -0
- package/dist/esm/dts/Notification/ToastNotification/subcomponents/ToastNotificationManager/index.d.ts +1 -0
- package/dist/esm/dts/Notification/ToastNotification/subcomponents/ToastNotificationsList/ToastNotificationsList.d.ts +11 -0
- package/dist/esm/dts/Notification/ToastNotification/subcomponents/ToastNotificationsList/index.d.ts +1 -0
- package/dist/esm/dts/Notification/ToastNotification/subcomponents/ToastNotificationsListContainer/ToastNotificationsListContainer.d.ts +7 -0
- package/dist/esm/dts/Notification/ToastNotification/subcomponents/ToastNotificationsListContainer/index.d.ts +1 -0
- package/dist/esm/dts/Notification/ToastNotification/types.d.ts +23 -0
- package/dist/esm/dts/ProgressBar/ProgressBar.d.ts +24 -0
- package/dist/esm/dts/ProgressBar/index.d.ts +1 -0
- package/dist/esm/dts/ProgressBar/subcomponents/Label/Label.d.ts +10 -0
- package/dist/esm/dts/ProgressBar/subcomponents/Label/index.d.ts +1 -0
- package/dist/esm/dts/ProgressBar/utils/calculatePercentage.d.ts +4 -0
- package/dist/esm/dts/index.d.ts +2 -1
- package/dist/esm/index.css +5 -8
- package/dist/esm/index.mjs +2 -7
- package/dist/esm/index.mjs.map +1 -1
- package/dist/index.d.ts +52 -104
- package/dist/styles.css +1 -1
- package/package.json +1 -8
- package/dist/cjs/RichTextEditor/src/EditableRichTextContent/EditableRichTextContent.cjs +0 -47
- package/dist/cjs/RichTextEditor/src/EditableRichTextContent/EditableRichTextContent.cjs.map +0 -1
- package/dist/cjs/RichTextEditor/src/EditableRichTextContent/EditableRichTextContent.module.scss.cjs +0 -8
- package/dist/cjs/RichTextEditor/src/EditableRichTextContent/EditableRichTextContent.module.scss.cjs.map +0 -1
- package/dist/cjs/RichTextEditor/src/RichTextContent/RichTextContent.cjs +0 -33
- package/dist/cjs/RichTextEditor/src/RichTextContent/RichTextContent.cjs.map +0 -1
- package/dist/cjs/RichTextEditor/src/RichTextContent/RichTextContent.module.scss.cjs +0 -7
- package/dist/cjs/RichTextEditor/src/RichTextContent/RichTextContent.module.scss.cjs.map +0 -1
- package/dist/cjs/RichTextEditor/src/RichTextEditor/RichTextEditor.cjs +0 -143
- package/dist/cjs/RichTextEditor/src/RichTextEditor/RichTextEditor.cjs.map +0 -1
- package/dist/cjs/RichTextEditor/src/RichTextEditor/RichTextEditor.module.scss.cjs +0 -32
- package/dist/cjs/RichTextEditor/src/RichTextEditor/RichTextEditor.module.scss.cjs.map +0 -1
- package/dist/cjs/RichTextEditor/src/RichTextEditor/controlmap.cjs +0 -245
- package/dist/cjs/RichTextEditor/src/RichTextEditor/controlmap.cjs.map +0 -1
- package/dist/cjs/RichTextEditor/src/RichTextEditor/inputrules.cjs +0 -21
- package/dist/cjs/RichTextEditor/src/RichTextEditor/inputrules.cjs.map +0 -1
- package/dist/cjs/RichTextEditor/src/RichTextEditor/keymap.cjs +0 -80
- package/dist/cjs/RichTextEditor/src/RichTextEditor/keymap.cjs.map +0 -1
- package/dist/cjs/RichTextEditor/src/RichTextEditor/schema.cjs +0 -59
- package/dist/cjs/RichTextEditor/src/RichTextEditor/schema.cjs.map +0 -1
- package/dist/cjs/RichTextEditor/src/RichTextEditor/subcomponents/ToggleIconButton/ToggleIconButton.cjs +0 -43
- package/dist/cjs/RichTextEditor/src/RichTextEditor/subcomponents/ToggleIconButton/ToggleIconButton.cjs.map +0 -1
- package/dist/cjs/RichTextEditor/src/RichTextEditor/subcomponents/ToggleIconButton/ToggleIconButton.module.scss.cjs +0 -14
- package/dist/cjs/RichTextEditor/src/RichTextEditor/subcomponents/ToggleIconButton/ToggleIconButton.module.scss.cjs.map +0 -1
- package/dist/cjs/RichTextEditor/src/RichTextEditor/subcomponents/Toolbar/Toolbar.cjs +0 -71
- package/dist/cjs/RichTextEditor/src/RichTextEditor/subcomponents/Toolbar/Toolbar.cjs.map +0 -1
- package/dist/cjs/RichTextEditor/src/RichTextEditor/subcomponents/Toolbar/Toolbar.module.scss.cjs +0 -7
- package/dist/cjs/RichTextEditor/src/RichTextEditor/subcomponents/Toolbar/Toolbar.module.scss.cjs.map +0 -1
- package/dist/cjs/RichTextEditor/src/RichTextEditor/subcomponents/ToolbarSection/ToolbarSection.cjs +0 -16
- package/dist/cjs/RichTextEditor/src/RichTextEditor/subcomponents/ToolbarSection/ToolbarSection.cjs.map +0 -1
- package/dist/cjs/RichTextEditor/src/RichTextEditor/subcomponents/ToolbarSection/ToolbarSection.module.scss.cjs +0 -7
- package/dist/cjs/RichTextEditor/src/RichTextEditor/subcomponents/ToolbarSection/ToolbarSection.module.scss.cjs.map +0 -1
- package/dist/cjs/RichTextEditor/src/constants.cjs +0 -5
- package/dist/cjs/RichTextEditor/src/constants.cjs.map +0 -1
- package/dist/cjs/dts/RichTextEditor/index.d.ts +0 -5
- package/dist/cjs/dts/RichTextEditor/src/EditableRichTextContent/EditableRichTextContent.d.ts +0 -15
- package/dist/cjs/dts/RichTextEditor/src/EditableRichTextContent/index.d.ts +0 -1
- package/dist/cjs/dts/RichTextEditor/src/RichTextContent/RichTextContent.d.ts +0 -10
- package/dist/cjs/dts/RichTextEditor/src/RichTextContent/index.d.ts +0 -1
- package/dist/cjs/dts/RichTextEditor/src/RichTextEditor/RichTextEditor.d.ts +0 -43
- package/dist/cjs/dts/RichTextEditor/src/RichTextEditor/controlmap.d.ts +0 -13
- package/dist/cjs/dts/RichTextEditor/src/RichTextEditor/index.d.ts +0 -4
- package/dist/cjs/dts/RichTextEditor/src/RichTextEditor/inputrules.d.ts +0 -2
- package/dist/cjs/dts/RichTextEditor/src/RichTextEditor/keymap.d.ts +0 -6
- package/dist/cjs/dts/RichTextEditor/src/RichTextEditor/schema.d.ts +0 -4
- package/dist/cjs/dts/RichTextEditor/src/RichTextEditor/subcomponents/ToggleIconButton/ToggleIconButton.d.ts +0 -9
- package/dist/cjs/dts/RichTextEditor/src/RichTextEditor/subcomponents/ToggleIconButton/index.d.ts +0 -1
- package/dist/cjs/dts/RichTextEditor/src/RichTextEditor/subcomponents/Toolbar/Toolbar.d.ts +0 -11
- package/dist/cjs/dts/RichTextEditor/src/RichTextEditor/subcomponents/Toolbar/index.d.ts +0 -1
- package/dist/cjs/dts/RichTextEditor/src/RichTextEditor/subcomponents/ToolbarSection/ToolbarSection.d.ts +0 -8
- package/dist/cjs/dts/RichTextEditor/src/RichTextEditor/subcomponents/ToolbarSection/index.d.ts +0 -1
- package/dist/cjs/dts/RichTextEditor/src/constants.d.ts +0 -2
- package/dist/cjs/dts/RichTextEditor/src/types.d.ts +0 -12
- package/dist/esm/RichTextEditor/src/EditableRichTextContent/EditableRichTextContent.mjs +0 -45
- package/dist/esm/RichTextEditor/src/EditableRichTextContent/EditableRichTextContent.mjs.map +0 -1
- package/dist/esm/RichTextEditor/src/EditableRichTextContent/EditableRichTextContent.module.scss.mjs +0 -6
- package/dist/esm/RichTextEditor/src/EditableRichTextContent/EditableRichTextContent.module.scss.mjs.map +0 -1
- package/dist/esm/RichTextEditor/src/RichTextContent/RichTextContent.mjs +0 -31
- package/dist/esm/RichTextEditor/src/RichTextContent/RichTextContent.mjs.map +0 -1
- package/dist/esm/RichTextEditor/src/RichTextContent/RichTextContent.module.scss.mjs +0 -5
- package/dist/esm/RichTextEditor/src/RichTextContent/RichTextContent.module.scss.mjs.map +0 -1
- package/dist/esm/RichTextEditor/src/RichTextEditor/RichTextEditor.mjs +0 -141
- package/dist/esm/RichTextEditor/src/RichTextEditor/RichTextEditor.mjs.map +0 -1
- package/dist/esm/RichTextEditor/src/RichTextEditor/RichTextEditor.module.scss.mjs +0 -30
- package/dist/esm/RichTextEditor/src/RichTextEditor/RichTextEditor.module.scss.mjs.map +0 -1
- package/dist/esm/RichTextEditor/src/RichTextEditor/controlmap.mjs +0 -243
- package/dist/esm/RichTextEditor/src/RichTextEditor/controlmap.mjs.map +0 -1
- package/dist/esm/RichTextEditor/src/RichTextEditor/inputrules.mjs +0 -19
- package/dist/esm/RichTextEditor/src/RichTextEditor/inputrules.mjs.map +0 -1
- package/dist/esm/RichTextEditor/src/RichTextEditor/keymap.mjs +0 -78
- package/dist/esm/RichTextEditor/src/RichTextEditor/keymap.mjs.map +0 -1
- package/dist/esm/RichTextEditor/src/RichTextEditor/schema.mjs +0 -56
- package/dist/esm/RichTextEditor/src/RichTextEditor/schema.mjs.map +0 -1
- package/dist/esm/RichTextEditor/src/RichTextEditor/subcomponents/ToggleIconButton/ToggleIconButton.mjs +0 -41
- package/dist/esm/RichTextEditor/src/RichTextEditor/subcomponents/ToggleIconButton/ToggleIconButton.mjs.map +0 -1
- package/dist/esm/RichTextEditor/src/RichTextEditor/subcomponents/ToggleIconButton/ToggleIconButton.module.scss.mjs +0 -12
- package/dist/esm/RichTextEditor/src/RichTextEditor/subcomponents/ToggleIconButton/ToggleIconButton.module.scss.mjs.map +0 -1
- package/dist/esm/RichTextEditor/src/RichTextEditor/subcomponents/Toolbar/Toolbar.mjs +0 -69
- package/dist/esm/RichTextEditor/src/RichTextEditor/subcomponents/Toolbar/Toolbar.mjs.map +0 -1
- package/dist/esm/RichTextEditor/src/RichTextEditor/subcomponents/Toolbar/Toolbar.module.scss.mjs +0 -5
- package/dist/esm/RichTextEditor/src/RichTextEditor/subcomponents/Toolbar/Toolbar.module.scss.mjs.map +0 -1
- package/dist/esm/RichTextEditor/src/RichTextEditor/subcomponents/ToolbarSection/ToolbarSection.mjs +0 -14
- package/dist/esm/RichTextEditor/src/RichTextEditor/subcomponents/ToolbarSection/ToolbarSection.mjs.map +0 -1
- package/dist/esm/RichTextEditor/src/RichTextEditor/subcomponents/ToolbarSection/ToolbarSection.module.scss.mjs +0 -5
- package/dist/esm/RichTextEditor/src/RichTextEditor/subcomponents/ToolbarSection/ToolbarSection.module.scss.mjs.map +0 -1
- package/dist/esm/RichTextEditor/src/constants.mjs +0 -3
- package/dist/esm/RichTextEditor/src/constants.mjs.map +0 -1
- package/dist/esm/dts/RichTextEditor/index.d.ts +0 -5
- package/dist/esm/dts/RichTextEditor/src/EditableRichTextContent/EditableRichTextContent.d.ts +0 -15
- package/dist/esm/dts/RichTextEditor/src/EditableRichTextContent/index.d.ts +0 -1
- package/dist/esm/dts/RichTextEditor/src/RichTextContent/RichTextContent.d.ts +0 -10
- package/dist/esm/dts/RichTextEditor/src/RichTextContent/index.d.ts +0 -1
- package/dist/esm/dts/RichTextEditor/src/RichTextEditor/RichTextEditor.d.ts +0 -43
- package/dist/esm/dts/RichTextEditor/src/RichTextEditor/controlmap.d.ts +0 -13
- package/dist/esm/dts/RichTextEditor/src/RichTextEditor/index.d.ts +0 -4
- package/dist/esm/dts/RichTextEditor/src/RichTextEditor/inputrules.d.ts +0 -2
- package/dist/esm/dts/RichTextEditor/src/RichTextEditor/keymap.d.ts +0 -6
- package/dist/esm/dts/RichTextEditor/src/RichTextEditor/schema.d.ts +0 -4
- package/dist/esm/dts/RichTextEditor/src/RichTextEditor/subcomponents/ToggleIconButton/ToggleIconButton.d.ts +0 -9
- package/dist/esm/dts/RichTextEditor/src/RichTextEditor/subcomponents/ToggleIconButton/index.d.ts +0 -1
- package/dist/esm/dts/RichTextEditor/src/RichTextEditor/subcomponents/Toolbar/Toolbar.d.ts +0 -11
- package/dist/esm/dts/RichTextEditor/src/RichTextEditor/subcomponents/Toolbar/index.d.ts +0 -1
- package/dist/esm/dts/RichTextEditor/src/RichTextEditor/subcomponents/ToolbarSection/ToolbarSection.d.ts +0 -8
- package/dist/esm/dts/RichTextEditor/src/RichTextEditor/subcomponents/ToolbarSection/index.d.ts +0 -1
- package/dist/esm/dts/RichTextEditor/src/constants.d.ts +0 -2
- package/dist/esm/dts/RichTextEditor/src/types.d.ts +0 -12
package/dist/esm/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/index.d.ts
CHANGED
|
@@ -12,7 +12,6 @@ import { MenuTriggerState } from '@react-stately/menu';
|
|
|
12
12
|
import { ListState } from '@react-stately/list';
|
|
13
13
|
import { AriaListBoxOptions } from '@react-aria/listbox';
|
|
14
14
|
import { SelectProps as SelectProps$1 } from '@react-stately/select';
|
|
15
|
-
import { ProseMirrorState } from '@cultureamp/rich-text-toolkit';
|
|
16
15
|
import * as react_select from 'react-select';
|
|
17
16
|
import { Props } from 'react-select';
|
|
18
17
|
export { OnChangeValue as SelectValueType } from 'react-select';
|
|
@@ -2207,6 +2206,33 @@ declare const LabelledMessage: {
|
|
|
2207
2206
|
displayName: string;
|
|
2208
2207
|
};
|
|
2209
2208
|
|
|
2209
|
+
type ScaleValue = -1 | 1 | 2 | 3 | 4 | 5;
|
|
2210
|
+
type ScaleItem = {
|
|
2211
|
+
value: ScaleValue;
|
|
2212
|
+
label: string;
|
|
2213
|
+
};
|
|
2214
|
+
type Scale = ScaleItem[];
|
|
2215
|
+
|
|
2216
|
+
type LikertScaleProps = {
|
|
2217
|
+
labelId: string;
|
|
2218
|
+
scale: Scale;
|
|
2219
|
+
selectedItem: ScaleItem | null;
|
|
2220
|
+
/**
|
|
2221
|
+
* @deprecated Please use data-testid instead
|
|
2222
|
+
*/
|
|
2223
|
+
automationId?: string;
|
|
2224
|
+
"data-testid"?: string;
|
|
2225
|
+
reversed?: boolean;
|
|
2226
|
+
validationMessage?: string;
|
|
2227
|
+
status?: "default" | "error";
|
|
2228
|
+
onSelect: (value: ScaleItem | null) => void;
|
|
2229
|
+
};
|
|
2230
|
+
/**
|
|
2231
|
+
* {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3082060201/Likert+Scale Guidance} |
|
|
2232
|
+
* {@link https://cultureamp.design/?path=/docs/components-likertscalelegacy--docs Storybook}
|
|
2233
|
+
*/
|
|
2234
|
+
declare const LikertScaleLegacy: ({ scale, selectedItem, reversed, "data-testid": dataTestId, onSelect, validationMessage, status, labelId, }: LikertScaleProps) => JSX.Element;
|
|
2235
|
+
|
|
2210
2236
|
type LoadingGraphicSize = "small" | "medium" | "large" | "xlarge" | "xxlarge" | "scene";
|
|
2211
2237
|
type LoadingGraphicProps = {
|
|
2212
2238
|
isAnimated?: boolean;
|
|
@@ -2429,7 +2455,7 @@ type ConfirmationModalProps = {
|
|
|
2429
2455
|
/**
|
|
2430
2456
|
* Defines the modal type or mood
|
|
2431
2457
|
*/
|
|
2432
|
-
mood: Mood$
|
|
2458
|
+
mood: Mood$2;
|
|
2433
2459
|
title: string;
|
|
2434
2460
|
onConfirm?: () => void;
|
|
2435
2461
|
onDismiss: () => void;
|
|
@@ -2446,7 +2472,7 @@ type ConfirmationModalProps = {
|
|
|
2446
2472
|
automationId?: string;
|
|
2447
2473
|
children: React__default.ReactNode;
|
|
2448
2474
|
} & HTMLAttributes<HTMLDivElement>;
|
|
2449
|
-
type Mood$
|
|
2475
|
+
type Mood$2 = "positive" | "informative" | "negative" | "cautionary" | "assertive";
|
|
2450
2476
|
/**
|
|
2451
2477
|
* {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3082093114/Modal Guidance} |
|
|
2452
2478
|
* {@link https://cultureamp.design/?path=/docs/components-modals-confirmationmodal--docs Storybook}
|
|
@@ -2749,6 +2775,28 @@ type PopoverPropsWithoutRef = Omit<PopoverProps, "referenceElement">;
|
|
|
2749
2775
|
*/
|
|
2750
2776
|
declare const usePopover: () => [(element: HTMLElement | null) => void, (props: PopoverPropsWithoutRef) => JSX.Element | null];
|
|
2751
2777
|
|
|
2778
|
+
type ProgressBarProps = {
|
|
2779
|
+
/** A value that represents completed progress */
|
|
2780
|
+
value: number;
|
|
2781
|
+
/** A value that sets the maximum progress that can be achieved */
|
|
2782
|
+
max: number;
|
|
2783
|
+
/** Adds an animated state to indicate loading progress */
|
|
2784
|
+
isAnimating: boolean;
|
|
2785
|
+
mood: Mood$1;
|
|
2786
|
+
subtext?: string;
|
|
2787
|
+
label?: string;
|
|
2788
|
+
isReversed: boolean;
|
|
2789
|
+
} & OverrideClassName<HTMLAttributes<HTMLDivElement>>;
|
|
2790
|
+
type Mood$1 = "positive" | "informative" | "negative" | "cautionary";
|
|
2791
|
+
/**
|
|
2792
|
+
* {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3081896891/Progress+Bar Guidance} |
|
|
2793
|
+
* {@link https://cultureamp.design/?path=/docs/components-progress-bar--docs Storybook}
|
|
2794
|
+
*/
|
|
2795
|
+
declare const ProgressBar: {
|
|
2796
|
+
({ value, max, isAnimating, mood, subtext, label, classNameOverride, isReversed, ...restProps }: ProgressBarProps): JSX.Element;
|
|
2797
|
+
displayName: string;
|
|
2798
|
+
};
|
|
2799
|
+
|
|
2752
2800
|
type RadioProps = OverrideClassName<Omit<InputHTMLAttributes<HTMLInputElement>, "id" | "name" | "value" | "checked" | "type">> & {
|
|
2753
2801
|
/** Required to ensure the Radio always gets an ID to match a label when composed. */
|
|
2754
2802
|
id: string;
|
|
@@ -2794,106 +2842,6 @@ declare const RadioGroup: {
|
|
|
2794
2842
|
displayName: string;
|
|
2795
2843
|
};
|
|
2796
2844
|
|
|
2797
|
-
type ToolbarControlTypes = "bold" | "italic" | "underline" | "orderedList" | "bulletList" | "link";
|
|
2798
|
-
interface ToolbarItems {
|
|
2799
|
-
name: ToolbarControlTypes;
|
|
2800
|
-
/**
|
|
2801
|
-
* A group is used to wrap items in the same section wrapper
|
|
2802
|
-
* ungrouped items will be appended to the end of the toolbar */
|
|
2803
|
-
group?: string;
|
|
2804
|
-
}
|
|
2805
|
-
type EditorContentArray = Array<{
|
|
2806
|
-
[key: string]: any;
|
|
2807
|
-
}>;
|
|
2808
|
-
type EditorRows = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20;
|
|
2809
|
-
|
|
2810
|
-
interface BaseRichTextEditorProps extends OverrideClassName<Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue">> {
|
|
2811
|
-
onChange: (content: ProseMirrorState.EditorState) => void;
|
|
2812
|
-
defaultValue: EditorContentArray;
|
|
2813
|
-
controls?: ToolbarItems[];
|
|
2814
|
-
/**
|
|
2815
|
-
* Sets a default min-height for the editable area in units of body paragraph line height, similar to the 'rows' attribute on <textarea>.
|
|
2816
|
-
* The editable area will autogrow, so this only affects the component when the content doesn't exceed this height.
|
|
2817
|
-
*/
|
|
2818
|
-
rows?: EditorRows;
|
|
2819
|
-
dataError?: React__default.ReactElement;
|
|
2820
|
-
onDataError?: () => void;
|
|
2821
|
-
status?: "default" | "error" | "caution";
|
|
2822
|
-
/**
|
|
2823
|
-
* A descriptive message for `error` or `caution` states
|
|
2824
|
-
*/
|
|
2825
|
-
validationMessage?: React__default.ReactNode;
|
|
2826
|
-
/**
|
|
2827
|
-
* A description that provides context
|
|
2828
|
-
*/
|
|
2829
|
-
description?: React__default.ReactNode;
|
|
2830
|
-
}
|
|
2831
|
-
interface RTEWithLabelText extends BaseRichTextEditorProps {
|
|
2832
|
-
labelText: ReactNode;
|
|
2833
|
-
"aria-labelledby"?: never;
|
|
2834
|
-
}
|
|
2835
|
-
interface RTEWithLabelledBy extends BaseRichTextEditorProps {
|
|
2836
|
-
labelText?: never;
|
|
2837
|
-
"aria-labelledby": string;
|
|
2838
|
-
}
|
|
2839
|
-
type RichTextEditorProps = RTEWithLabelText | RTEWithLabelledBy;
|
|
2840
|
-
/**
|
|
2841
|
-
* {@link https://cultureamp.design/components/rich-text-editor/ Guidance} |
|
|
2842
|
-
* {@link https://cultureamp.design/storybook/?path=/docs/components-rich-text-editor--default Storybook}
|
|
2843
|
-
*/
|
|
2844
|
-
declare const RichTextEditor: {
|
|
2845
|
-
(props: RichTextEditorProps): JSX.Element;
|
|
2846
|
-
displayName: string;
|
|
2847
|
-
};
|
|
2848
|
-
|
|
2849
|
-
interface ToggleIconButtonProps extends OverrideClassName<React__default.ButtonHTMLAttributes<HTMLButtonElement>> {
|
|
2850
|
-
icon: JSX.Element;
|
|
2851
|
-
label: string;
|
|
2852
|
-
isActive?: boolean;
|
|
2853
|
-
mood?: "default" | "secondary" | "primary" | "destructive" | "secondary-destructive";
|
|
2854
|
-
}
|
|
2855
|
-
declare const ToggleIconButton: React__default.ForwardRefExoticComponent<ToggleIconButtonProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
2856
|
-
|
|
2857
|
-
interface ToolbarProps extends OverrideClassName<React__default.HTMLAttributes<HTMLElement>> {
|
|
2858
|
-
children: React__default.ReactNode;
|
|
2859
|
-
"aria-controls": string;
|
|
2860
|
-
"aria-label": string;
|
|
2861
|
-
}
|
|
2862
|
-
declare const Toolbar: {
|
|
2863
|
-
(props: ToolbarProps): JSX.Element;
|
|
2864
|
-
displayName: string;
|
|
2865
|
-
};
|
|
2866
|
-
|
|
2867
|
-
interface ToolbarSectionProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
2868
|
-
children: React__default.ReactNode;
|
|
2869
|
-
}
|
|
2870
|
-
declare const ToolbarSection: {
|
|
2871
|
-
(props: ToolbarSectionProps): JSX.Element;
|
|
2872
|
-
displayName: string;
|
|
2873
|
-
};
|
|
2874
|
-
|
|
2875
|
-
interface RichTextContentProps extends OverrideClassName<Omit<HTMLAttributes<HTMLDivElement>, "content">> {
|
|
2876
|
-
content: EditorContentArray;
|
|
2877
|
-
}
|
|
2878
|
-
declare const RichTextContent: {
|
|
2879
|
-
(props: RichTextContentProps): JSX.Element;
|
|
2880
|
-
displayName: string;
|
|
2881
|
-
};
|
|
2882
|
-
|
|
2883
|
-
interface EditableRichTextContentProps extends OverrideClassName<Omit<HTMLAttributes<HTMLDivElement>, "onClick" | "content">> {
|
|
2884
|
-
onClick: (event: MouseEvent<HTMLElement>) => void;
|
|
2885
|
-
content: EditorContentArray;
|
|
2886
|
-
labelText: string;
|
|
2887
|
-
isLabelHidden?: boolean;
|
|
2888
|
-
contentProps?: Omit<RichTextContentProps, "content">;
|
|
2889
|
-
}
|
|
2890
|
-
declare const EditableRichTextContent: {
|
|
2891
|
-
(props: EditableRichTextContentProps): JSX.Element;
|
|
2892
|
-
displayName: string;
|
|
2893
|
-
};
|
|
2894
|
-
|
|
2895
|
-
declare const TOOLBAR_CONTROLS: ToolbarControlTypes[];
|
|
2896
|
-
|
|
2897
2845
|
type SearchFieldProps = Omit<InputSearchProps, "id"> & {
|
|
2898
2846
|
id?: string;
|
|
2899
2847
|
labelText: string;
|
|
@@ -3570,4 +3518,4 @@ declare const Well: {
|
|
|
3570
3518
|
displayName: string;
|
|
3571
3519
|
};
|
|
3572
3520
|
|
|
3573
|
-
export { AcademyIcon, AccountBasics, Action, ActionOffIcon, ActionOffWhiteIcon, ActionOnIcon, ActionPlans, type ActiveFiltersArray, AddIcon, AddImage, AddLinkIcon, AddUser, AddWhiteIcon, AiIcon, Alarm, type AllowedHeadingColors, type AllowedHeadingTags, type AllowedTextColors, type AllowedTextTags, AmplifyOthers, ArchivedIcon, ArchivedWhiteIcon, ArrowBackwardIcon, ArrowDownIcon, ArrowForwardIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, Assertive, AsyncSelect, Avatar, AvatarGroup, type AvatarGroupAvatarProps, type AvatarGroupProps, type AvatarGroupSize, type AvatarList, type AvatarProps, type AvatarSizes, BCorp, Badge, BadgeAnimated, type BadgeProps, type BaseRichTextEditorProps, BaselineSurvey, Behaviour, BenefitsSurvey, BlankIcon, BlankSurvey, BoldIcon, BookmarkOffIcon, BookmarkOnIcon, BranchingIcon, Brand, BrandMoment, type BrandMomentProps, type BrandProps, BullettedListIcon, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, CaMonogramIcon, CalendarRange, type CalendarRangeElement, type CalendarRangeProps, CalendarSingle, type CalendarSingleElement, type CalendarSingleProps, CalendarSync, CameraIcon, CandidateSurvey, Card, type CardProps, type CardVariants, CautionIcon, CautionWhiteIcon, Cautionary, ChangeAgents, ChangeReadiness, ChangeSuccess, CheckIcon, Checkbox, CheckboxField, type CheckboxFieldProps, CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, type CheckedStatus, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ClearButton, type ClearButtonProps, ClearIcon, ClearWhiteIcon, CloseIcon, ClosedIcon, ClosedWhiteIcon, Coaching, Collapsible, CollapsibleGroup, type CollapsibleGroupProps, type CollapsibleProps, CommentAddIcon, CommentAddWhiteIcon, CommentBankIcon, CommentDisabledIcon, CommentDisabledWhiteIcon, CommentIcon, CommentWhiteIcon, Communications, CommunicationsIcon, Community, Company, type CompanyAvatarProps, CompanyDetails, CompetencyLibraryIcon, ConfigureIcon, ConfirmationModal, type ConfirmationModalProps, ConnectIcon, ConnectLineIcon, Container, Content, type ContentProps, ContextModal, type ContextModalProps, type ContextModalSecondaryActionProps, Conversations, type CustomButtonProps, CustomIcon, CustomOnboardSurvey, CustomSurvey, CustomUnattributedSurvey, DashboardIcon, DataVisualization, DateEndIcon, DateEndWhiteIcon, DateFormat, DateInput, DateInputDescription, type DateInputDescriptionProps, type DateInputProps, DateInputWithIconButton, type DateInputWithIconButtonProps, type DateInputWithIconButtonRefs, DatePicker, type DatePickerProps, type DateRangeFieldValidationMessage, DateRangeIcon, DateRangePicker, type DateRangePickerProps, DateRangeWhiteIcon, DateStartIcon, DateStartWhiteIcon, type DateValidationResponse, DayOfWeek, DecreaseIndentIcon, type DefaultTagProps, DeltaBareIcon, DeltaBareWhiteIcon, DeltaFlatIcon, DeltaIcon, DeltaNegativeIcon, DeltaPositiveIcon, DeltaWhiteIcon, DemographicsIcon, DepartmentIcon, DirectionalLink, type DirectionalLinkProps, type DisabledDayMatchers, type DisabledDays, Divider, type DividerProps, DraftIcon, DraftWhiteIcon, DragIcon, DuplicateIcon, EditIcon, EditableRichTextContent, type EditableRichTextContentProps, type EditorContentArray, type EditorRows, EffectivenessIcon, EllipsisIcon, EmailIcon, EmergencyResponse, EmployeeData, EmptyIcon, EmptyState, type EmptyStateProps, EmptyWhiteIcon, EndIcon, EndOfProbation, EngagementIcon, EngagementSurvey, EngagementWhiteIcon, EqualIcon, EqualWhiteIcon, ErrorPage, type ErrorPageProps, EssentialProductivity, EssentialResilience, ExclamationIcon, ExclamationOctagonIcon, ExclamationOctagonWhiteIcon, ExclamationWhiteIcon, ExecutiveReportSharing, ExitSurvey, ExperienceIcon, ExpertAdviceCollapsible, type ExpertAdviceCollapsibleProps, ExportIcon, ExportWhiteIcon, ExternalLinkIcon, FaceDissatisfiedIcon, FaceDissatisfiedWhiteIcon, FaceNeutralIcon, FaceNeutralWhiteIcon, FaceSatisfiedIcon, FaceSatisfiedWhiteIcon, FaceVeryDissatisfiedIcon, FaceVeryDissatisfiedWhiteIcon, FaceVerySatisfiedIcon, FaceVerySatisfiedWhiteIcon, FactorsIcon, FastAction, FavoriteOffIcon, FavoriteOnIcon, Feedback, FeedbackClassifyIcon, FeedbackClassifyWhiteIcon, FeedbackCompletedIcon, FeedbackCompletedWhiteIcon, FeedbackReportIcon, FeedbackReportWhiteIcon, FeedbackReviewIcon, FeedbackReviewWhiteIcon, FeedbackShareIcon, FeedbackShareWhiteIcon, FieldGroup, type FieldGroupProps, FieldMessage, type FieldMessageProps, type FieldMessageStatus, FileIcon, FileWhiteIcon, Filter, type FilterAttributes, FilterBar, type FilterBarContextValue, type FilterBarProps, FilterBarProvider, type FilterBarProviderProps, type FilterBarState, type FilterBarStateFilters, FilterButton, type FilterButtonProps, FilterButtonRemovable, type FilterButtonRemovableProps, type FilterButtonRemovableRefs, FilterContents, type FilterContentsProps, FilterDatePicker, FilterDatePickerField, type FilterDatePickerFieldProps, type FilterDatePickerProps, FilterDateRangePicker, type FilterDateRangePickerProps, FilterIcon, type FilterIsUsableWhen, FilterMultiSelect, type FilterMultiSelectProps, type FilterProps, FilterSelect, type FilterSelectProps, type FilterState, type FilterStateEditableAttributes, type FilterTriggerButtonProps, type FilterTriggerRef, type Filters, type FiltersValues, Fire, Fireworks, FlagOffIcon, FlagOffWhiteIcon, FlagOnIcon, FullIcon, FullImport, Gdpr, GeneralOnboardSurvey, type GenericAvatarProps, GenericModal, type GenericModalProps, type GetDateValidationHandlerArgs, GlobalNotification, type GlobalNotificationProps, Goals, GridViewIcon, GuidanceIcon, HamburgerIcon, HaveTheCourageToBeVulnerable, Heading, type HeadingProps, type HeadingVariants, HealthAndSafety, HeatmapIcon, HeatmapWhiteIcon, HierarchyIcon, HomeIcon, HrisImport, IconButton, type IconButtonProps, ImportIcon, ImportWhiteIcon, InclusionSurvey, IncreaseIndentIcon, IndicatorActiveIcon, IndicatorInactiveIcon, Individual180, Individual360, InfluentialCommunication, InformationIcon, InformationTile, type InformationTileProps, InformationWhiteIcon, Informative, InlineNotification, type InlineNotificationProps, Input, InputEditModal, type InputEditModalProps, type InputProps, InputRange, type InputRangeProps, InputSearch, type InputSearchProps, type InputStatusType, type InputType, InsightIcon, Insights, InsightsIcon, InternSurvey, type InternalFilterState, InvisibleIcon, ItalicsIcon, type ItemType, KaizenProvider, type KaizenProviderProps, KebabIcon, KioskIcon, KioskWhiteIcon, Label, type LabelProps, LabelledMessage, type LabelledMessageProps, LaunchIcon, LaunchWhiteIcon, LeaderReportSharing, LeaderboardIcon, Leadership180, Leadership360, LeadingChange, LeadingThroughCrisis, Learn, LearnFasterThroughFeedback, type ListBoxItems, type ListBoxProps, type ListBoxSectionProps$1 as ListBoxSectionProps, ListViewIcon, LiveIcon, type LoadMoreButtonProps, LoadingGraphic, type LoadingGraphicProps, type LoadingGraphicSize, LoadingHeading, type LoadingHeadingProps, LoadingInput, type LoadingInputProps, LoadingParagraph, type LoadingParagraphProps, LoadingSpinner, type LoadingSpinnerProps, LockIcon, LockWhiteIcon, LogOutIcon, London, Manager180, Manager360, ManagerLearning, ManagerReportSharing, type MappedFilters, MaximizeIcon, MeatballsIcon, MeetingVoices, Melbourne, Menu, type MenuFooterProps, MenuHeading, type MenuHeadingProps, MenuItem, type MenuItemProps, MenuList, type MenuListProps, type MenuLoadingSkeletonProps, type MenuProps, MenuTriggerConsumer, MenuTriggerProvider, type MenuTriggerProviderContextType, type MenuTriggerProviderProps, Microphone, MinimizeIcon, MinusIcon, ModalAccessibleDescription, type ModalAccessibleDescriptionProps, ModalAccessibleLabel, type ModalAccessibleLabelProps, ModalBody, type ModalBodyProps, ModalContext, type ModalContextType, ModalFooter, type ModalFooterProps, ModalHeader, type ModalHeaderProps, MultiActionTile, type MultiActionTileProps, type MultiSelectItem, type MultiSelectOptionProps, NavigatorIcon, Negative, NewWaysOfWorking, NewYork, type NoResultsProps, NotificationIcon, NumberedListIcon, NumberedListRtlIcon, Objective, OneOnOne, OpenIcon, OpenWhiteIcon, OrganizationIcon, Pagination, PaginationLink, type PaginationLinkProps, type PaginationProps, PaperPen, PartialImport, ParticipationIcon, ParticipationWhiteIcon, PauseIcon, PauseWhiteIcon, PercentageIcon, PerformanceDiagnostics, PermissionsIcon, PersonIcon, PhasedWeek1OnboardSurvey, PhasedWeek5OnboardSurvey, PhotoUploadIcon, Popover, type PopoverProps, Positive, PowerIcon, PowerfulInsights, PrintIcon, PrintWhiteIcon, Privacy, Process, ProcessManagerIcon, Productivity, PromotionIcon, PromotionWhiteIcon, PulseSurvey, QuestionIcon, QuestionWhiteIcon, QuestionsIcon, QuickEngagementSurvey, Radio, RadioField, type RadioFieldProps, RadioGroup, type RadioGroupProps, type RadioProps, ReOnboarding, ReadArticle, Recommendation, RedoIcon, RefreshIcon, RemoteManager, RemoteOnboardSurvey, RemoteWorkQSet, type RemovableFilterTriggerProps, RemoveLinkIcon, RepeatsIcon, ReportIcon, ReportSharing, ReportSharingIcon, Resilience, Resources, Response, RestoreIcon, ReturnToWorkplace, RichTextContent, type RichTextContentProps, RichTextEditor, type RichTextEditorProps, SanFrancisco, SaveIcon, ScienceBackedTools, SearchField, type SearchFieldProps, SearchIcon, type SearchInputProps, SearchWhiteIcon, SecurityTipIcon, Select, type SelectItem, type SelectItemNode, type SelectOption, type SelectOptionGroup, type SelectOptionGroupNode, type SelectOptionNode, type SelectProps, SelectionConsumer, SelectionProvider, type SelectionProviderContextType, type SelectionProviderProps, SendIcon, SendRtlIcon, SettingsIcon, SettingsWhiteIcon, ShareIcon, ShareReport, SinglePointOnboardSurvey, SkillsDevelopment, SkipIcon, SkipWhiteIcon, Skirt, type SkirtProps, Slider, type SliderFieldProps, SortAscendingIcon, SortDescendingIcon, type SourceFiltersState, SpinnerIcon, SplitButton, type SplitButtonProps, type SpotProps, SpreadsheetTemplate, StarOffIcon, StarOnIcon, Starburst, StartIcon, StatelessMenu, type StatelessMenuProps, Stop, Strategy, SubtractIcon, SubtractWhiteIcon, SuccessIcon, SuccessWhiteIcon, SupportIcon, SurveysIcon, SurveysWhiteIcon, SyncIcon, TOOLBAR_CONTROLS, TableCard, type TableCardProps, TableContainer, type TableContainerProps, TableHeader, type TableHeaderProps, TableHeaderRowCell, type TableHeaderRowCellProps, type TableHeaderRowProps, TableRow, TableRowCell, type TableRowCellProps, type TableRowProps, Tag, TagIcon, type TagProps, type TagWithAvatarProps, TakeAim, TasksIcon, TasksWhiteIcon, Team1, Team2, TeamEffectiveness1, TeamEffectiveness2, TemplateIcon, TemplateWhiteIcon, Templates, Text, TextAnalyticsIcon, TextAnalyticsWhiteIcon, TextArea, TextAreaField, type TextAreaFieldProps, type TextAreaProps, TextField, type TextFieldProps, type TextProps, type TextVariants, ThumbsDownIcon, ThumbsUpIcon, type TileElement, TileGrid, type TileGridProps, TimeField, type TimeFieldProps, TimeIcon, TimeWhiteIcon, Timezone, ToggleIconButton, type ToggleIconButtonProps, Toolbar, type ToolbarControlTypes, type ToolbarItems, type ToolbarProps, ToolbarSection, type ToolbarSectionProps, Tooltip, type TooltipProps, TrafficCone, Training1, Training2, Training3, TranslationIcon, TrashIcon, Trophy, TrustOthersToMakeDecisions, UnattributedIcon, UnattributedWhiteIcon, UnderConstruction, UnderlineIcon, UndoIcon, type UseDateValidationArgs, type UseDateValidationValue, UserAddIcon, UserDeleteIcon, UserExitIcon, UserIcon, UserSelectIcon, UserSettingsIcon, UserUpdateIcon, UsersIcon, type ValidateDateResponse, type ValidationMessage, type ValidationResponse, ValueAdd, type ValueType$1 as ValueType, ValuesSurvey1, ValuesSurvey2, Video, ViewReports, VisibleIcon, Well, type WellProps, WellbeingSurvey, WellbeingSurvey1, WellbeingSurvey2, WellbeingSurvey3, Workflow, type WorkflowProps, Workshop, WritingIcon, ZoomInIcon, ZoomOutIcon, calculateDisabledDays, formatDateAsNumeral, formatDateAsText, formatDateRangeValue, getDateValidationHandler, getSelectedOptionKeys, getSelectedOptionLabels, getTruncatedLabels, isDisabledDate, isInvalidDate, isSelectingDayInCalendar, isValidWeekStartsOn, parseDateAsTextOrNumeral, parseDateFromNumeralFormatValue, parseDateFromTextFormatValue, setFocusInCalendar, useDateValidation, useFilterBarContext, useMenuTriggerContext, usePopover, useSelectionContext, validateDate };
|
|
3521
|
+
export { AcademyIcon, AccountBasics, Action, ActionOffIcon, ActionOffWhiteIcon, ActionOnIcon, ActionPlans, type ActiveFiltersArray, AddIcon, AddImage, AddLinkIcon, AddUser, AddWhiteIcon, AiIcon, Alarm, type AllowedHeadingColors, type AllowedHeadingTags, type AllowedTextColors, type AllowedTextTags, AmplifyOthers, ArchivedIcon, ArchivedWhiteIcon, ArrowBackwardIcon, ArrowDownIcon, ArrowForwardIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, Assertive, AsyncSelect, Avatar, AvatarGroup, type AvatarGroupAvatarProps, type AvatarGroupProps, type AvatarGroupSize, type AvatarList, type AvatarProps, type AvatarSizes, BCorp, Badge, BadgeAnimated, type BadgeProps, BaselineSurvey, Behaviour, BenefitsSurvey, BlankIcon, BlankSurvey, BoldIcon, BookmarkOffIcon, BookmarkOnIcon, BranchingIcon, Brand, BrandMoment, type BrandMomentProps, type BrandProps, BullettedListIcon, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, CaMonogramIcon, CalendarRange, type CalendarRangeElement, type CalendarRangeProps, CalendarSingle, type CalendarSingleElement, type CalendarSingleProps, CalendarSync, CameraIcon, CandidateSurvey, Card, type CardProps, type CardVariants, CautionIcon, CautionWhiteIcon, Cautionary, ChangeAgents, ChangeReadiness, ChangeSuccess, CheckIcon, Checkbox, CheckboxField, type CheckboxFieldProps, CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, type CheckedStatus, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ClearButton, type ClearButtonProps, ClearIcon, ClearWhiteIcon, CloseIcon, ClosedIcon, ClosedWhiteIcon, Coaching, Collapsible, CollapsibleGroup, type CollapsibleGroupProps, type CollapsibleProps, CommentAddIcon, CommentAddWhiteIcon, CommentBankIcon, CommentDisabledIcon, CommentDisabledWhiteIcon, CommentIcon, CommentWhiteIcon, Communications, CommunicationsIcon, Community, Company, type CompanyAvatarProps, CompanyDetails, CompetencyLibraryIcon, ConfigureIcon, ConfirmationModal, type ConfirmationModalProps, ConnectIcon, ConnectLineIcon, Container, Content, type ContentProps, ContextModal, type ContextModalProps, type ContextModalSecondaryActionProps, Conversations, type CustomButtonProps, CustomIcon, CustomOnboardSurvey, CustomSurvey, CustomUnattributedSurvey, DashboardIcon, DataVisualization, DateEndIcon, DateEndWhiteIcon, DateFormat, DateInput, DateInputDescription, type DateInputDescriptionProps, type DateInputProps, DateInputWithIconButton, type DateInputWithIconButtonProps, type DateInputWithIconButtonRefs, DatePicker, type DatePickerProps, type DateRangeFieldValidationMessage, DateRangeIcon, DateRangePicker, type DateRangePickerProps, DateRangeWhiteIcon, DateStartIcon, DateStartWhiteIcon, type DateValidationResponse, DayOfWeek, DecreaseIndentIcon, type DefaultTagProps, DeltaBareIcon, DeltaBareWhiteIcon, DeltaFlatIcon, DeltaIcon, DeltaNegativeIcon, DeltaPositiveIcon, DeltaWhiteIcon, DemographicsIcon, DepartmentIcon, DirectionalLink, type DirectionalLinkProps, type DisabledDayMatchers, type DisabledDays, Divider, type DividerProps, DraftIcon, DraftWhiteIcon, DragIcon, DuplicateIcon, EditIcon, EffectivenessIcon, EllipsisIcon, EmailIcon, EmergencyResponse, EmployeeData, EmptyIcon, EmptyState, type EmptyStateProps, EmptyWhiteIcon, EndIcon, EndOfProbation, EngagementIcon, EngagementSurvey, EngagementWhiteIcon, EqualIcon, EqualWhiteIcon, ErrorPage, type ErrorPageProps, EssentialProductivity, EssentialResilience, ExclamationIcon, ExclamationOctagonIcon, ExclamationOctagonWhiteIcon, ExclamationWhiteIcon, ExecutiveReportSharing, ExitSurvey, ExperienceIcon, ExpertAdviceCollapsible, type ExpertAdviceCollapsibleProps, ExportIcon, ExportWhiteIcon, ExternalLinkIcon, FaceDissatisfiedIcon, FaceDissatisfiedWhiteIcon, FaceNeutralIcon, FaceNeutralWhiteIcon, FaceSatisfiedIcon, FaceSatisfiedWhiteIcon, FaceVeryDissatisfiedIcon, FaceVeryDissatisfiedWhiteIcon, FaceVerySatisfiedIcon, FaceVerySatisfiedWhiteIcon, FactorsIcon, FastAction, FavoriteOffIcon, FavoriteOnIcon, Feedback, FeedbackClassifyIcon, FeedbackClassifyWhiteIcon, FeedbackCompletedIcon, FeedbackCompletedWhiteIcon, FeedbackReportIcon, FeedbackReportWhiteIcon, FeedbackReviewIcon, FeedbackReviewWhiteIcon, FeedbackShareIcon, FeedbackShareWhiteIcon, FieldGroup, type FieldGroupProps, FieldMessage, type FieldMessageProps, type FieldMessageStatus, FileIcon, FileWhiteIcon, Filter, type FilterAttributes, FilterBar, type FilterBarContextValue, type FilterBarProps, FilterBarProvider, type FilterBarProviderProps, type FilterBarState, type FilterBarStateFilters, FilterButton, type FilterButtonProps, FilterButtonRemovable, type FilterButtonRemovableProps, type FilterButtonRemovableRefs, FilterContents, type FilterContentsProps, FilterDatePicker, FilterDatePickerField, type FilterDatePickerFieldProps, type FilterDatePickerProps, FilterDateRangePicker, type FilterDateRangePickerProps, FilterIcon, type FilterIsUsableWhen, FilterMultiSelect, type FilterMultiSelectProps, type FilterProps, FilterSelect, type FilterSelectProps, type FilterState, type FilterStateEditableAttributes, type FilterTriggerButtonProps, type FilterTriggerRef, type Filters, type FiltersValues, Fire, Fireworks, FlagOffIcon, FlagOffWhiteIcon, FlagOnIcon, FullIcon, FullImport, Gdpr, GeneralOnboardSurvey, type GenericAvatarProps, GenericModal, type GenericModalProps, type GetDateValidationHandlerArgs, GlobalNotification, type GlobalNotificationProps, Goals, GridViewIcon, GuidanceIcon, HamburgerIcon, HaveTheCourageToBeVulnerable, Heading, type HeadingProps, type HeadingVariants, HealthAndSafety, HeatmapIcon, HeatmapWhiteIcon, HierarchyIcon, HomeIcon, HrisImport, IconButton, type IconButtonProps, ImportIcon, ImportWhiteIcon, InclusionSurvey, IncreaseIndentIcon, IndicatorActiveIcon, IndicatorInactiveIcon, Individual180, Individual360, InfluentialCommunication, InformationIcon, InformationTile, type InformationTileProps, InformationWhiteIcon, Informative, InlineNotification, type InlineNotificationProps, Input, InputEditModal, type InputEditModalProps, type InputProps, InputRange, type InputRangeProps, InputSearch, type InputSearchProps, type InputStatusType, type InputType, InsightIcon, Insights, InsightsIcon, InternSurvey, type InternalFilterState, InvisibleIcon, ItalicsIcon, type ItemType, KaizenProvider, type KaizenProviderProps, KebabIcon, KioskIcon, KioskWhiteIcon, Label, type LabelProps, LabelledMessage, type LabelledMessageProps, LaunchIcon, LaunchWhiteIcon, LeaderReportSharing, LeaderboardIcon, Leadership180, Leadership360, LeadingChange, LeadingThroughCrisis, Learn, LearnFasterThroughFeedback, LikertScaleLegacy, type LikertScaleProps, type ListBoxItems, type ListBoxProps, type ListBoxSectionProps$1 as ListBoxSectionProps, ListViewIcon, LiveIcon, type LoadMoreButtonProps, LoadingGraphic, type LoadingGraphicProps, type LoadingGraphicSize, LoadingHeading, type LoadingHeadingProps, LoadingInput, type LoadingInputProps, LoadingParagraph, type LoadingParagraphProps, LoadingSpinner, type LoadingSpinnerProps, LockIcon, LockWhiteIcon, LogOutIcon, London, Manager180, Manager360, ManagerLearning, ManagerReportSharing, type MappedFilters, MaximizeIcon, MeatballsIcon, MeetingVoices, Melbourne, Menu, type MenuFooterProps, MenuHeading, type MenuHeadingProps, MenuItem, type MenuItemProps, MenuList, type MenuListProps, type MenuLoadingSkeletonProps, type MenuProps, MenuTriggerConsumer, MenuTriggerProvider, type MenuTriggerProviderContextType, type MenuTriggerProviderProps, Microphone, MinimizeIcon, MinusIcon, ModalAccessibleDescription, type ModalAccessibleDescriptionProps, ModalAccessibleLabel, type ModalAccessibleLabelProps, ModalBody, type ModalBodyProps, ModalContext, type ModalContextType, ModalFooter, type ModalFooterProps, ModalHeader, type ModalHeaderProps, MultiActionTile, type MultiActionTileProps, type MultiSelectItem, type MultiSelectOptionProps, NavigatorIcon, Negative, NewWaysOfWorking, NewYork, type NoResultsProps, NotificationIcon, NumberedListIcon, NumberedListRtlIcon, Objective, OneOnOne, OpenIcon, OpenWhiteIcon, OrganizationIcon, Pagination, PaginationLink, type PaginationLinkProps, type PaginationProps, PaperPen, PartialImport, ParticipationIcon, ParticipationWhiteIcon, PauseIcon, PauseWhiteIcon, PercentageIcon, PerformanceDiagnostics, PermissionsIcon, PersonIcon, PhasedWeek1OnboardSurvey, PhasedWeek5OnboardSurvey, PhotoUploadIcon, Popover, type PopoverProps, Positive, PowerIcon, PowerfulInsights, PrintIcon, PrintWhiteIcon, Privacy, Process, ProcessManagerIcon, Productivity, ProgressBar, type ProgressBarProps, PromotionIcon, PromotionWhiteIcon, PulseSurvey, QuestionIcon, QuestionWhiteIcon, QuestionsIcon, QuickEngagementSurvey, Radio, RadioField, type RadioFieldProps, RadioGroup, type RadioGroupProps, type RadioProps, ReOnboarding, ReadArticle, Recommendation, RedoIcon, RefreshIcon, RemoteManager, RemoteOnboardSurvey, RemoteWorkQSet, type RemovableFilterTriggerProps, RemoveLinkIcon, RepeatsIcon, ReportIcon, ReportSharing, ReportSharingIcon, Resilience, Resources, Response, RestoreIcon, ReturnToWorkplace, SanFrancisco, SaveIcon, ScienceBackedTools, SearchField, type SearchFieldProps, SearchIcon, type SearchInputProps, SearchWhiteIcon, SecurityTipIcon, Select, type SelectItem, type SelectItemNode, type SelectOption, type SelectOptionGroup, type SelectOptionGroupNode, type SelectOptionNode, type SelectProps, SelectionConsumer, SelectionProvider, type SelectionProviderContextType, type SelectionProviderProps, SendIcon, SendRtlIcon, SettingsIcon, SettingsWhiteIcon, ShareIcon, ShareReport, SinglePointOnboardSurvey, SkillsDevelopment, SkipIcon, SkipWhiteIcon, Skirt, type SkirtProps, Slider, type SliderFieldProps, SortAscendingIcon, SortDescendingIcon, type SourceFiltersState, SpinnerIcon, SplitButton, type SplitButtonProps, type SpotProps, SpreadsheetTemplate, StarOffIcon, StarOnIcon, Starburst, StartIcon, StatelessMenu, type StatelessMenuProps, Stop, Strategy, SubtractIcon, SubtractWhiteIcon, SuccessIcon, SuccessWhiteIcon, SupportIcon, SurveysIcon, SurveysWhiteIcon, SyncIcon, TableCard, type TableCardProps, TableContainer, type TableContainerProps, TableHeader, type TableHeaderProps, TableHeaderRowCell, type TableHeaderRowCellProps, type TableHeaderRowProps, TableRow, TableRowCell, type TableRowCellProps, type TableRowProps, Tag, TagIcon, type TagProps, type TagWithAvatarProps, TakeAim, TasksIcon, TasksWhiteIcon, Team1, Team2, TeamEffectiveness1, TeamEffectiveness2, TemplateIcon, TemplateWhiteIcon, Templates, Text, TextAnalyticsIcon, TextAnalyticsWhiteIcon, TextArea, TextAreaField, type TextAreaFieldProps, type TextAreaProps, TextField, type TextFieldProps, type TextProps, type TextVariants, ThumbsDownIcon, ThumbsUpIcon, type TileElement, TileGrid, type TileGridProps, TimeField, type TimeFieldProps, TimeIcon, TimeWhiteIcon, Timezone, Tooltip, type TooltipProps, TrafficCone, Training1, Training2, Training3, TranslationIcon, TrashIcon, Trophy, TrustOthersToMakeDecisions, UnattributedIcon, UnattributedWhiteIcon, UnderConstruction, UnderlineIcon, UndoIcon, type UseDateValidationArgs, type UseDateValidationValue, UserAddIcon, UserDeleteIcon, UserExitIcon, UserIcon, UserSelectIcon, UserSettingsIcon, UserUpdateIcon, UsersIcon, type ValidateDateResponse, type ValidationMessage, type ValidationResponse, ValueAdd, type ValueType$1 as ValueType, ValuesSurvey1, ValuesSurvey2, Video, ViewReports, VisibleIcon, Well, type WellProps, WellbeingSurvey, WellbeingSurvey1, WellbeingSurvey2, WellbeingSurvey3, Workflow, type WorkflowProps, Workshop, WritingIcon, ZoomInIcon, ZoomOutIcon, calculateDisabledDays, formatDateAsNumeral, formatDateAsText, formatDateRangeValue, getDateValidationHandler, getSelectedOptionKeys, getSelectedOptionLabels, getTruncatedLabels, isDisabledDate, isInvalidDate, isSelectingDayInCalendar, isValidWeekStartsOn, parseDateAsTextOrNumeral, parseDateFromNumeralFormatValue, parseDateFromTextFormatValue, setFocusInCalendar, useDateValidation, useFilterBarContext, useMenuTriggerContext, usePopover, useSelectionContext, validateDate };
|