@lumx/react 4.3.2-alpha.17 → 4.3.2-alpha.19
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/_internal/CzTdCnO5.js +1375 -0
- package/_internal/CzTdCnO5.js.map +1 -0
- package/index.d.ts +443 -21
- package/index.js +908 -238
- package/index.js.map +1 -1
- package/package.json +3 -13
- package/utils/index.d.ts +1 -6
- package/utils/index.js +3 -1217
- package/utils/index.js.map +1 -1
- package/_internal/DpdvhbTO.js +0 -159
- package/_internal/DpdvhbTO.js.map +0 -1
package/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { Kind as Kind$1, Size as Size$1, ColorPalette as ColorPalette$1, Emphasis as Emphasis$1, Theme as Theme$1, AspectRatio as AspectRatio$1, ColorVariant, DIALOG_TRANSITION_DURATION, Orientation as Orientation$1, Alignment, NOTIFICATION_TRANSITION_DURATION, TOOLTIP_LONG_PRESS_DELAY, TOOLTIP_HOVER_DELAY } from '@lumx/core/js/constants';
|
|
1
|
+
import { Kind as Kind$1, Size as Size$1, ColorPalette as ColorPalette$1, Emphasis as Emphasis$1, Theme as Theme$1, AspectRatio as AspectRatio$1, ColorVariant, REAL_SIZE_FOR_LUMX_SIZE, DIALOG_TRANSITION_DURATION, Orientation as Orientation$1, Alignment, NOTIFICATION_TRANSITION_DURATION, TOOLTIP_LONG_PRESS_DELAY, TOOLTIP_HOVER_DELAY } from '@lumx/core/js/constants';
|
|
2
2
|
export * from '@lumx/core/js/constants';
|
|
3
3
|
export * from '@lumx/core/js/types';
|
|
4
4
|
import * as React from 'react';
|
|
5
|
-
import React__default, { useState, useEffect, useMemo, useRef, useCallback, Children, useLayoutEffect, cloneElement,
|
|
6
|
-
import { mdiAlert } from '@lumx/icons/esm/alert
|
|
7
|
-
import { mdiAlertCircle } from '@lumx/icons/esm/alert-circle
|
|
8
|
-
import { mdiCheckCircle } from '@lumx/icons/esm/check-circle
|
|
9
|
-
import { mdiInformation } from '@lumx/icons/esm/information
|
|
5
|
+
import React__default, { useState, useEffect, useMemo, useRef, useCallback, useContext, createContext, Children, useLayoutEffect, cloneElement, isValidElement, useReducer } from 'react';
|
|
6
|
+
import { mdiAlert } from '@lumx/icons/esm/alert';
|
|
7
|
+
import { mdiAlertCircle } from '@lumx/icons/esm/alert-circle';
|
|
8
|
+
import { mdiCheckCircle } from '@lumx/icons/esm/check-circle';
|
|
9
|
+
import { mdiInformation } from '@lumx/icons/esm/information';
|
|
10
10
|
import { classNames, onEnterPressed, onEscapePressed, onButtonPressed, detectHorizontalSwipe } from '@lumx/core/js/utils';
|
|
11
11
|
import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
|
|
12
12
|
import last from 'lodash/last';
|
|
@@ -16,40 +16,42 @@ import concat from 'lodash/concat';
|
|
|
16
16
|
import dropRight from 'lodash/dropRight';
|
|
17
17
|
import partition from 'lodash/partition';
|
|
18
18
|
import reduce from 'lodash/reduce';
|
|
19
|
-
import { u as useDisabledStateContext, P as Portal, C as ClickAwayProvider } from './_internal/
|
|
19
|
+
import { u as useDisabledStateContext, M as MovingFocusContext, a as useVirtualFocus, A as A11YLiveMessage, P as Portal, C as ClickAwayProvider } from './_internal/CzTdCnO5.js';
|
|
20
20
|
import isEmpty from 'lodash/isEmpty';
|
|
21
21
|
import { getDisabledState } from '@lumx/core/js/utils/disabledState';
|
|
22
|
-
import { mdiCloseCircle } from '@lumx/icons/esm/close-circle
|
|
22
|
+
import { mdiCloseCircle } from '@lumx/icons/esm/close-circle';
|
|
23
23
|
import memoize from 'lodash/memoize';
|
|
24
|
-
import { mdiClose } from '@lumx/icons/esm/close
|
|
24
|
+
import { mdiClose } from '@lumx/icons/esm/close';
|
|
25
25
|
import isFunction from 'lodash/isFunction';
|
|
26
|
-
import { mdiImageBroken } from '@lumx/icons/esm/image-broken
|
|
27
|
-
import { mdiCheck } from '@lumx/icons/esm/check.js';
|
|
28
|
-
import { mdiMinus } from '@lumx/icons/esm/minus.js';
|
|
29
|
-
import { mdiChevronLeft } from '@lumx/icons/esm/chevron-left.js';
|
|
30
|
-
import { mdiChevronRight } from '@lumx/icons/esm/chevron-right.js';
|
|
31
|
-
import castArray from 'lodash/castArray';
|
|
32
|
-
import { mdiDragVertical } from '@lumx/icons/esm/drag-vertical.js';
|
|
33
|
-
import { mdiChevronDown } from '@lumx/icons/esm/chevron-down.js';
|
|
34
|
-
import { mdiChevronUp } from '@lumx/icons/esm/chevron-up.js';
|
|
26
|
+
import { mdiImageBroken } from '@lumx/icons/esm/image-broken';
|
|
35
27
|
import noop from 'lodash/noop';
|
|
28
|
+
import uniqueId from 'lodash/uniqueId';
|
|
29
|
+
import castArray from 'lodash/castArray';
|
|
30
|
+
import { mdiCheck } from '@lumx/icons/esm/check';
|
|
31
|
+
import { mdiMinus } from '@lumx/icons/esm/minus';
|
|
32
|
+
import { mdiInformationOutline } from '@lumx/icons/esm/information-outline';
|
|
33
|
+
import { mdiChevronLeft } from '@lumx/icons/esm/chevron-left';
|
|
34
|
+
import { mdiChevronRight } from '@lumx/icons/esm/chevron-right';
|
|
35
|
+
import { mdiDragVertical } from '@lumx/icons/esm/drag-vertical';
|
|
36
|
+
import { mdiChevronDown } from '@lumx/icons/esm/chevron-down';
|
|
37
|
+
import { mdiChevronUp } from '@lumx/icons/esm/chevron-up';
|
|
36
38
|
import pick from 'lodash/pick';
|
|
37
39
|
import isInteger from 'lodash/isInteger';
|
|
38
|
-
import { mdiMagnifyMinusOutline } from '@lumx/icons/esm/magnify-minus-outline
|
|
39
|
-
import { mdiMagnifyPlusOutline } from '@lumx/icons/esm/magnify-plus-outline
|
|
40
|
+
import { mdiMagnifyMinusOutline } from '@lumx/icons/esm/magnify-minus-outline';
|
|
41
|
+
import { mdiMagnifyPlusOutline } from '@lumx/icons/esm/magnify-plus-outline';
|
|
40
42
|
import throttle from 'lodash/throttle';
|
|
41
43
|
import range from 'lodash/range';
|
|
42
|
-
import { mdiPlayCircleOutline } from '@lumx/icons/esm/play-circle-outline
|
|
43
|
-
import { mdiPauseCircleOutline } from '@lumx/icons/esm/pause-circle-outline
|
|
44
|
+
import { mdiPlayCircleOutline } from '@lumx/icons/esm/play-circle-outline';
|
|
45
|
+
import { mdiPauseCircleOutline } from '@lumx/icons/esm/pause-circle-outline';
|
|
44
46
|
import chunk from 'lodash/chunk';
|
|
45
47
|
import ReactDOM from 'react-dom';
|
|
46
48
|
import take from 'lodash/take';
|
|
47
|
-
import { mdiRadioboxBlank } from '@lumx/icons/esm/radiobox-blank
|
|
48
|
-
import { mdiRadioboxMarked } from '@lumx/icons/esm/radiobox-marked
|
|
49
|
-
import { mdiMenuDown } from '@lumx/icons/esm/menu-down
|
|
50
|
-
import { getWithSelector } from '@lumx/core/js/utils/selectors';
|
|
51
|
-
import { mdiArrowDown } from '@lumx/icons/esm/arrow-down
|
|
52
|
-
import { mdiArrowUp } from '@lumx/icons/esm/arrow-up
|
|
49
|
+
import { mdiRadioboxBlank } from '@lumx/icons/esm/radiobox-blank';
|
|
50
|
+
import { mdiRadioboxMarked } from '@lumx/icons/esm/radiobox-marked';
|
|
51
|
+
import { mdiMenuDown } from '@lumx/icons/esm/menu-down';
|
|
52
|
+
import { getWithSelector } from '@lumx/core/js/utils/selectors/getWithSelector';
|
|
53
|
+
import { mdiArrowDown } from '@lumx/icons/esm/arrow-down';
|
|
54
|
+
import { mdiArrowUp } from '@lumx/icons/esm/arrow-up';
|
|
53
55
|
import set from 'lodash/set';
|
|
54
56
|
|
|
55
57
|
let i = 0;
|
|
@@ -101,15 +103,15 @@ const COMPONENT_NAME$1l = 'AlertDialog';
|
|
|
101
103
|
/**
|
|
102
104
|
* Component default class name and class prefix.
|
|
103
105
|
*/
|
|
104
|
-
const CLASSNAME$
|
|
106
|
+
const CLASSNAME$1k = 'lumx-alert-dialog';
|
|
105
107
|
const {
|
|
106
|
-
block: block$
|
|
107
|
-
} = classNames.bem(CLASSNAME$
|
|
108
|
+
block: block$17
|
|
109
|
+
} = classNames.bem(CLASSNAME$1k);
|
|
108
110
|
|
|
109
111
|
/**
|
|
110
112
|
* Component default props.
|
|
111
113
|
*/
|
|
112
|
-
const DEFAULT_PROPS$
|
|
114
|
+
const DEFAULT_PROPS$1b = {
|
|
113
115
|
size: Size$1.tiny,
|
|
114
116
|
kind: Kind$1.info
|
|
115
117
|
};
|
|
@@ -130,8 +132,8 @@ const AlertDialog = forwardRef((props, ref) => {
|
|
|
130
132
|
className,
|
|
131
133
|
cancelProps,
|
|
132
134
|
confirmProps,
|
|
133
|
-
kind = DEFAULT_PROPS$
|
|
134
|
-
size = DEFAULT_PROPS$
|
|
135
|
+
kind = DEFAULT_PROPS$1b.kind,
|
|
136
|
+
size = DEFAULT_PROPS$1b.size,
|
|
135
137
|
dialogProps,
|
|
136
138
|
children,
|
|
137
139
|
...forwardedProps
|
|
@@ -172,7 +174,7 @@ const AlertDialog = forwardRef((props, ref) => {
|
|
|
172
174
|
'aria-describedby': descriptionId,
|
|
173
175
|
...dialogProps
|
|
174
176
|
},
|
|
175
|
-
className: classNames.join(className, block$
|
|
177
|
+
className: classNames.join(className, block$17({
|
|
176
178
|
[`kind-${kind}`]: Boolean(kind)
|
|
177
179
|
})),
|
|
178
180
|
...forwardedProps,
|
|
@@ -218,8 +220,8 @@ const AlertDialog = forwardRef((props, ref) => {
|
|
|
218
220
|
});
|
|
219
221
|
});
|
|
220
222
|
AlertDialog.displayName = COMPONENT_NAME$1l;
|
|
221
|
-
AlertDialog.className = CLASSNAME$
|
|
222
|
-
AlertDialog.defaultProps = DEFAULT_PROPS$
|
|
223
|
+
AlertDialog.className = CLASSNAME$1k;
|
|
224
|
+
AlertDialog.defaultProps = DEFAULT_PROPS$1b;
|
|
223
225
|
|
|
224
226
|
/**
|
|
225
227
|
* Hook focusing an element when defined and `focus` boolean `true`.
|
|
@@ -316,12 +318,12 @@ const COMPONENT_NAME$1k = 'Autocomplete';
|
|
|
316
318
|
/**
|
|
317
319
|
* Component default class name and class prefix.
|
|
318
320
|
*/
|
|
319
|
-
const CLASSNAME$
|
|
321
|
+
const CLASSNAME$1j = 'lumx-autocomplete';
|
|
320
322
|
|
|
321
323
|
/**
|
|
322
324
|
* Component default props.
|
|
323
325
|
*/
|
|
324
|
-
const DEFAULT_PROPS$
|
|
326
|
+
const DEFAULT_PROPS$1a = {
|
|
325
327
|
anchorToInput: false,
|
|
326
328
|
closeOnClick: false,
|
|
327
329
|
closeOnClickAway: true,
|
|
@@ -343,13 +345,13 @@ const Autocomplete = forwardRef((props, ref) => {
|
|
|
343
345
|
otherProps
|
|
344
346
|
} = useDisableStateProps(props);
|
|
345
347
|
const {
|
|
346
|
-
anchorToInput = DEFAULT_PROPS$
|
|
348
|
+
anchorToInput = DEFAULT_PROPS$1a.anchorToInput,
|
|
347
349
|
children,
|
|
348
350
|
chips,
|
|
349
351
|
className,
|
|
350
|
-
closeOnClick = DEFAULT_PROPS$
|
|
351
|
-
closeOnClickAway = DEFAULT_PROPS$
|
|
352
|
-
closeOnEscape = DEFAULT_PROPS$
|
|
352
|
+
closeOnClick = DEFAULT_PROPS$1a.closeOnClick,
|
|
353
|
+
closeOnClickAway = DEFAULT_PROPS$1a.closeOnClickAway,
|
|
354
|
+
closeOnEscape = DEFAULT_PROPS$1a.closeOnEscape,
|
|
353
355
|
error,
|
|
354
356
|
fitToAnchorWidth,
|
|
355
357
|
hasError,
|
|
@@ -370,7 +372,7 @@ const Autocomplete = forwardRef((props, ref) => {
|
|
|
370
372
|
onInfiniteScroll,
|
|
371
373
|
placeholder,
|
|
372
374
|
placement,
|
|
373
|
-
shouldFocusOnClose = DEFAULT_PROPS$
|
|
375
|
+
shouldFocusOnClose = DEFAULT_PROPS$1a.shouldFocusOnClose,
|
|
374
376
|
theme = defaultTheme,
|
|
375
377
|
value,
|
|
376
378
|
textFieldProps = {},
|
|
@@ -383,7 +385,7 @@ const Autocomplete = forwardRef((props, ref) => {
|
|
|
383
385
|
return /*#__PURE__*/jsxs("div", {
|
|
384
386
|
ref: ref,
|
|
385
387
|
...forwardedProps,
|
|
386
|
-
className: classNames.join(className, CLASSNAME$
|
|
388
|
+
className: classNames.join(className, CLASSNAME$1j),
|
|
387
389
|
children: [/*#__PURE__*/jsx(TextField, {
|
|
388
390
|
...textFieldProps,
|
|
389
391
|
chips: chips,
|
|
@@ -424,8 +426,8 @@ const Autocomplete = forwardRef((props, ref) => {
|
|
|
424
426
|
});
|
|
425
427
|
});
|
|
426
428
|
Autocomplete.displayName = COMPONENT_NAME$1k;
|
|
427
|
-
Autocomplete.className = CLASSNAME$
|
|
428
|
-
Autocomplete.defaultProps = DEFAULT_PROPS$
|
|
429
|
+
Autocomplete.className = CLASSNAME$1j;
|
|
430
|
+
Autocomplete.defaultProps = DEFAULT_PROPS$1a;
|
|
429
431
|
|
|
430
432
|
/**
|
|
431
433
|
* Component display name.
|
|
@@ -435,12 +437,12 @@ const COMPONENT_NAME$1j = 'AutocompleteMultiple';
|
|
|
435
437
|
/**
|
|
436
438
|
* Component default class name and class prefix.
|
|
437
439
|
*/
|
|
438
|
-
const CLASSNAME$
|
|
440
|
+
const CLASSNAME$1i = 'lumx-autocomplete-multiple';
|
|
439
441
|
|
|
440
442
|
/**
|
|
441
443
|
* Component default props.
|
|
442
444
|
*/
|
|
443
|
-
const DEFAULT_PROPS$
|
|
445
|
+
const DEFAULT_PROPS$19 = {
|
|
444
446
|
closeOnClickAway: true,
|
|
445
447
|
closeOnEscape: true,
|
|
446
448
|
selectedChipRender(choice, index, onClear, isDisabled) {
|
|
@@ -480,8 +482,8 @@ const AutocompleteMultiple = forwardRef((props, ref) => {
|
|
|
480
482
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
481
483
|
chipsAlignment,
|
|
482
484
|
className,
|
|
483
|
-
closeOnClickAway = DEFAULT_PROPS$
|
|
484
|
-
closeOnEscape = DEFAULT_PROPS$
|
|
485
|
+
closeOnClickAway = DEFAULT_PROPS$19.closeOnClickAway,
|
|
486
|
+
closeOnEscape = DEFAULT_PROPS$19.closeOnEscape,
|
|
485
487
|
fitToAnchorWidth,
|
|
486
488
|
hasError,
|
|
487
489
|
helper,
|
|
@@ -503,19 +505,19 @@ const AutocompleteMultiple = forwardRef((props, ref) => {
|
|
|
503
505
|
onKeyDown,
|
|
504
506
|
placeholder,
|
|
505
507
|
placement,
|
|
506
|
-
selectedChipRender = DEFAULT_PROPS$
|
|
508
|
+
selectedChipRender = DEFAULT_PROPS$19.selectedChipRender,
|
|
507
509
|
shouldFocusOnClose,
|
|
508
510
|
theme = defaultTheme,
|
|
509
511
|
type,
|
|
510
512
|
value,
|
|
511
|
-
values = DEFAULT_PROPS$
|
|
513
|
+
values = DEFAULT_PROPS$19.values,
|
|
512
514
|
...forwardedProps
|
|
513
515
|
} = otherProps;
|
|
514
516
|
return /*#__PURE__*/jsx(Autocomplete, {
|
|
515
517
|
ref: ref,
|
|
516
518
|
...forwardedProps,
|
|
517
519
|
anchorToInput: anchorToInput,
|
|
518
|
-
className: classNames.join(className, CLASSNAME$
|
|
520
|
+
className: classNames.join(className, CLASSNAME$1i),
|
|
519
521
|
name: name,
|
|
520
522
|
value: value,
|
|
521
523
|
onChange: onChange,
|
|
@@ -549,8 +551,8 @@ const AutocompleteMultiple = forwardRef((props, ref) => {
|
|
|
549
551
|
});
|
|
550
552
|
});
|
|
551
553
|
AutocompleteMultiple.displayName = COMPONENT_NAME$1j;
|
|
552
|
-
AutocompleteMultiple.className = CLASSNAME$
|
|
553
|
-
AutocompleteMultiple.defaultProps = DEFAULT_PROPS$
|
|
554
|
+
AutocompleteMultiple.className = CLASSNAME$1i;
|
|
555
|
+
AutocompleteMultiple.defaultProps = DEFAULT_PROPS$19;
|
|
554
556
|
|
|
555
557
|
/**
|
|
556
558
|
* Component display name.
|
|
@@ -560,16 +562,16 @@ const COMPONENT_NAME$1i = 'Avatar';
|
|
|
560
562
|
/**
|
|
561
563
|
* Component default class name and class prefix.
|
|
562
564
|
*/
|
|
563
|
-
const CLASSNAME$
|
|
565
|
+
const CLASSNAME$1h = 'lumx-avatar';
|
|
564
566
|
const {
|
|
565
|
-
block: block$
|
|
566
|
-
element: element$
|
|
567
|
-
} = classNames.bem(CLASSNAME$
|
|
567
|
+
block: block$16,
|
|
568
|
+
element: element$Q
|
|
569
|
+
} = classNames.bem(CLASSNAME$1h);
|
|
568
570
|
|
|
569
571
|
/**
|
|
570
572
|
* Component default props.
|
|
571
573
|
*/
|
|
572
|
-
const DEFAULT_PROPS$
|
|
574
|
+
const DEFAULT_PROPS$18 = {
|
|
573
575
|
size: Size$1.m
|
|
574
576
|
};
|
|
575
577
|
|
|
@@ -592,7 +594,7 @@ const Avatar = forwardRef((props, ref) => {
|
|
|
592
594
|
linkAs,
|
|
593
595
|
onClick,
|
|
594
596
|
onKeyPress,
|
|
595
|
-
size = DEFAULT_PROPS$
|
|
597
|
+
size = DEFAULT_PROPS$18.size,
|
|
596
598
|
theme = defaultTheme,
|
|
597
599
|
thumbnailProps,
|
|
598
600
|
...forwardedProps
|
|
@@ -600,14 +602,14 @@ const Avatar = forwardRef((props, ref) => {
|
|
|
600
602
|
return /*#__PURE__*/jsxs("div", {
|
|
601
603
|
ref: ref,
|
|
602
604
|
...forwardedProps,
|
|
603
|
-
className: classNames.join(className, block$
|
|
605
|
+
className: classNames.join(className, block$16({
|
|
604
606
|
[`size-${size}`]: Boolean(size),
|
|
605
607
|
[`theme-${theme}`]: Boolean(theme)
|
|
606
608
|
})),
|
|
607
609
|
children: [/*#__PURE__*/jsx(Thumbnail, {
|
|
608
610
|
linkProps: linkProps,
|
|
609
611
|
linkAs: linkAs,
|
|
610
|
-
className: element$
|
|
612
|
+
className: element$Q('thumbnail'),
|
|
611
613
|
onClick: onClick,
|
|
612
614
|
onKeyPress: onKeyPress,
|
|
613
615
|
...thumbnailProps,
|
|
@@ -617,17 +619,17 @@ const Avatar = forwardRef((props, ref) => {
|
|
|
617
619
|
alt: alt,
|
|
618
620
|
theme: theme
|
|
619
621
|
}), actions && /*#__PURE__*/jsx("div", {
|
|
620
|
-
className: element$
|
|
622
|
+
className: element$Q('actions'),
|
|
621
623
|
children: actions
|
|
622
624
|
}), badge && /*#__PURE__*/jsx("div", {
|
|
623
|
-
className: element$
|
|
625
|
+
className: element$Q('badge'),
|
|
624
626
|
children: badge
|
|
625
627
|
})]
|
|
626
628
|
});
|
|
627
629
|
});
|
|
628
630
|
Avatar.displayName = COMPONENT_NAME$1i;
|
|
629
|
-
Avatar.className = CLASSNAME$
|
|
630
|
-
Avatar.defaultProps = DEFAULT_PROPS$
|
|
631
|
+
Avatar.className = CLASSNAME$1h;
|
|
632
|
+
Avatar.defaultProps = DEFAULT_PROPS$18;
|
|
631
633
|
|
|
632
634
|
/**
|
|
633
635
|
* Alignments.
|
|
@@ -695,8 +697,6 @@ const ColorPalette = {
|
|
|
695
697
|
red: 'red',
|
|
696
698
|
light: 'light'};
|
|
697
699
|
|
|
698
|
-
/** ColorPalette with all possible color variant combination */
|
|
699
|
-
|
|
700
700
|
function getDefaultExportFromCjs (x) {
|
|
701
701
|
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
|
|
702
702
|
}
|
|
@@ -857,7 +857,7 @@ function modifier$1(baseName, modifiers) {
|
|
|
857
857
|
* block('button', { active: true, disabled: false }); // 'button button--active'
|
|
858
858
|
*/
|
|
859
859
|
|
|
860
|
-
function block$
|
|
860
|
+
function block$15(baseName, modifiersOrAdditionalClasses, additionalClasses) {
|
|
861
861
|
let modifiers;
|
|
862
862
|
let classes;
|
|
863
863
|
if (Array.isArray(modifiersOrAdditionalClasses)) {
|
|
@@ -892,11 +892,11 @@ function block$12(baseName, modifiersOrAdditionalClasses, additionalClasses) {
|
|
|
892
892
|
* element('my-button', 'icon', { active: true }); // 'my-button__icon my-button__icon--active'
|
|
893
893
|
*/
|
|
894
894
|
|
|
895
|
-
function element$
|
|
895
|
+
function element$P(baseClass, elem, modifiersOrAdditionalClasses, additionalClasses) {
|
|
896
896
|
if (Array.isArray(modifiersOrAdditionalClasses)) {
|
|
897
|
-
return block$
|
|
897
|
+
return block$15(`${baseClass}__${elem}`, modifiersOrAdditionalClasses);
|
|
898
898
|
}
|
|
899
|
-
return block$
|
|
899
|
+
return block$15(`${baseClass}__${elem}`, modifiersOrAdditionalClasses, additionalClasses);
|
|
900
900
|
}
|
|
901
901
|
|
|
902
902
|
/**
|
|
@@ -905,15 +905,15 @@ function element$M(baseClass, elem, modifiersOrAdditionalClasses, additionalClas
|
|
|
905
905
|
function bem(baseName) {
|
|
906
906
|
function blockFn(modifiersOrAdditionalClasses, additionalClasses) {
|
|
907
907
|
if (Array.isArray(modifiersOrAdditionalClasses)) {
|
|
908
|
-
return block$
|
|
908
|
+
return block$15(baseName, modifiersOrAdditionalClasses);
|
|
909
909
|
}
|
|
910
|
-
return block$
|
|
910
|
+
return block$15(baseName, modifiersOrAdditionalClasses, additionalClasses);
|
|
911
911
|
}
|
|
912
912
|
function elementFn(elem, modifiersOrAdditionalClasses, additionalClasses) {
|
|
913
913
|
if (Array.isArray(modifiersOrAdditionalClasses)) {
|
|
914
|
-
return element$
|
|
914
|
+
return element$P(baseName, elem, modifiersOrAdditionalClasses);
|
|
915
915
|
}
|
|
916
|
-
return element$
|
|
916
|
+
return element$P(baseName, elem, modifiersOrAdditionalClasses, additionalClasses);
|
|
917
917
|
}
|
|
918
918
|
return {
|
|
919
919
|
block: blockFn,
|
|
@@ -930,15 +930,15 @@ const COMPONENT_NAME$1h = 'Badge';
|
|
|
930
930
|
/**
|
|
931
931
|
* Component default class name and class prefix.
|
|
932
932
|
*/
|
|
933
|
-
const CLASSNAME$
|
|
933
|
+
const CLASSNAME$1g = 'lumx-badge';
|
|
934
934
|
const {
|
|
935
|
-
block: block$
|
|
936
|
-
} = bem(CLASSNAME$
|
|
935
|
+
block: block$14
|
|
936
|
+
} = bem(CLASSNAME$1g);
|
|
937
937
|
|
|
938
938
|
/**
|
|
939
939
|
* Component default props.
|
|
940
940
|
*/
|
|
941
|
-
const DEFAULT_PROPS$
|
|
941
|
+
const DEFAULT_PROPS$17 = {
|
|
942
942
|
color: ColorPalette.primary
|
|
943
943
|
};
|
|
944
944
|
|
|
@@ -952,22 +952,22 @@ const Badge$1 = props => {
|
|
|
952
952
|
const {
|
|
953
953
|
children,
|
|
954
954
|
className,
|
|
955
|
-
color = DEFAULT_PROPS$
|
|
955
|
+
color = DEFAULT_PROPS$17.color,
|
|
956
956
|
ref,
|
|
957
957
|
...forwardedProps
|
|
958
958
|
} = props;
|
|
959
959
|
return /*#__PURE__*/jsx("div", {
|
|
960
960
|
ref: ref,
|
|
961
961
|
...forwardedProps,
|
|
962
|
-
className: classnames(className, block$
|
|
962
|
+
className: classnames(className, block$14({
|
|
963
963
|
[`color-${color}`]: Boolean(color)
|
|
964
964
|
})),
|
|
965
965
|
children: children
|
|
966
966
|
});
|
|
967
967
|
};
|
|
968
968
|
Badge$1.displayName = COMPONENT_NAME$1h;
|
|
969
|
-
Badge$1.className = CLASSNAME$
|
|
970
|
-
Badge$1.defaultProps = DEFAULT_PROPS$
|
|
969
|
+
Badge$1.className = CLASSNAME$1g;
|
|
970
|
+
Badge$1.defaultProps = DEFAULT_PROPS$17;
|
|
971
971
|
|
|
972
972
|
/**
|
|
973
973
|
* Defines the props of the component.
|
|
@@ -991,11 +991,11 @@ Badge.className = Badge$1.className;
|
|
|
991
991
|
Badge.defaultProps = Badge$1.defaultProps;
|
|
992
992
|
|
|
993
993
|
const COMPONENT_NAME$1g = 'BadgeWrapper';
|
|
994
|
-
const CLASSNAME$
|
|
994
|
+
const CLASSNAME$1f = 'lumx-badge-wrapper';
|
|
995
995
|
const {
|
|
996
|
-
block: block$
|
|
997
|
-
element: element$
|
|
998
|
-
} = bem(CLASSNAME$
|
|
996
|
+
block: block$13,
|
|
997
|
+
element: element$O
|
|
998
|
+
} = bem(CLASSNAME$1f);
|
|
999
999
|
const BadgeWrapper$1 = props => {
|
|
1000
1000
|
const {
|
|
1001
1001
|
badge,
|
|
@@ -1007,9 +1007,9 @@ const BadgeWrapper$1 = props => {
|
|
|
1007
1007
|
return /*#__PURE__*/jsxs("div", {
|
|
1008
1008
|
ref: ref,
|
|
1009
1009
|
...forwardedProps,
|
|
1010
|
-
className: classnames(className, block$
|
|
1010
|
+
className: classnames(className, block$13()),
|
|
1011
1011
|
children: [children, badge && /*#__PURE__*/jsx("div", {
|
|
1012
|
-
className: element$
|
|
1012
|
+
className: element$O('badge'),
|
|
1013
1013
|
children: badge
|
|
1014
1014
|
})]
|
|
1015
1015
|
});
|
|
@@ -1022,7 +1022,7 @@ const BadgeWrapper = forwardRef((props, ref) => {
|
|
|
1022
1022
|
});
|
|
1023
1023
|
});
|
|
1024
1024
|
BadgeWrapper.displayName = COMPONENT_NAME$1g;
|
|
1025
|
-
BadgeWrapper.className = CLASSNAME$
|
|
1025
|
+
BadgeWrapper.className = CLASSNAME$1f;
|
|
1026
1026
|
|
|
1027
1027
|
/**
|
|
1028
1028
|
* Render clickable element (link, button or custom element)
|
|
@@ -1183,15 +1183,15 @@ const COMPONENT_NAME$1e = 'Button';
|
|
|
1183
1183
|
/**
|
|
1184
1184
|
* Component default class name and class prefix.
|
|
1185
1185
|
*/
|
|
1186
|
-
const CLASSNAME$
|
|
1186
|
+
const CLASSNAME$1e = 'lumx-button';
|
|
1187
1187
|
const {
|
|
1188
1188
|
modifier
|
|
1189
|
-
} = bem(CLASSNAME$
|
|
1189
|
+
} = bem(CLASSNAME$1e);
|
|
1190
1190
|
|
|
1191
1191
|
/**
|
|
1192
1192
|
* Component default props.
|
|
1193
1193
|
*/
|
|
1194
|
-
const DEFAULT_PROPS$
|
|
1194
|
+
const DEFAULT_PROPS$16 = {
|
|
1195
1195
|
emphasis: Emphasis.high,
|
|
1196
1196
|
size: Size.m
|
|
1197
1197
|
};
|
|
@@ -1205,10 +1205,10 @@ const DEFAULT_PROPS$15 = {
|
|
|
1205
1205
|
const Button$1 = props => {
|
|
1206
1206
|
const {
|
|
1207
1207
|
className,
|
|
1208
|
-
emphasis = DEFAULT_PROPS$
|
|
1208
|
+
emphasis = DEFAULT_PROPS$16.emphasis,
|
|
1209
1209
|
leftIcon,
|
|
1210
1210
|
rightIcon,
|
|
1211
|
-
size = DEFAULT_PROPS$
|
|
1211
|
+
size = DEFAULT_PROPS$16.size,
|
|
1212
1212
|
...forwardedProps
|
|
1213
1213
|
} = props;
|
|
1214
1214
|
const buttonClassName = classnames(className, modifier({
|
|
@@ -1224,8 +1224,8 @@ const Button$1 = props => {
|
|
|
1224
1224
|
});
|
|
1225
1225
|
};
|
|
1226
1226
|
Button$1.displayName = COMPONENT_NAME$1e;
|
|
1227
|
-
Button$1.className = CLASSNAME$
|
|
1228
|
-
Button$1.defaultProps = DEFAULT_PROPS$
|
|
1227
|
+
Button$1.className = CLASSNAME$1e;
|
|
1228
|
+
Button$1.defaultProps = DEFAULT_PROPS$16;
|
|
1229
1229
|
|
|
1230
1230
|
/**
|
|
1231
1231
|
* Properties of a component to use to determine it's name.
|
|
@@ -1292,8 +1292,8 @@ const Button = forwardRef((props, ref) => {
|
|
|
1292
1292
|
});
|
|
1293
1293
|
});
|
|
1294
1294
|
Button.displayName = COMPONENT_NAME$1e;
|
|
1295
|
-
Button.className = CLASSNAME$
|
|
1296
|
-
Button.defaultProps = DEFAULT_PROPS$
|
|
1295
|
+
Button.className = CLASSNAME$1e;
|
|
1296
|
+
Button.defaultProps = DEFAULT_PROPS$16;
|
|
1297
1297
|
|
|
1298
1298
|
const COMPONENT_NAME$1d = 'Icon';
|
|
1299
1299
|
const IconClassName = 'lumx-icon';
|
|
@@ -1302,15 +1302,15 @@ const IconClassName = 'lumx-icon';
|
|
|
1302
1302
|
* Defines the props of the component.
|
|
1303
1303
|
*/
|
|
1304
1304
|
|
|
1305
|
-
const CLASSNAME$
|
|
1305
|
+
const CLASSNAME$1d = IconClassName;
|
|
1306
1306
|
const {
|
|
1307
|
-
block: block
|
|
1308
|
-
} = bem(CLASSNAME$
|
|
1307
|
+
block: block$12
|
|
1308
|
+
} = bem(CLASSNAME$1d);
|
|
1309
1309
|
|
|
1310
1310
|
/**
|
|
1311
1311
|
* Component default props.
|
|
1312
1312
|
*/
|
|
1313
|
-
const DEFAULT_PROPS$
|
|
1313
|
+
const DEFAULT_PROPS$15 = {};
|
|
1314
1314
|
|
|
1315
1315
|
/**
|
|
1316
1316
|
* Icon component.
|
|
@@ -1359,7 +1359,7 @@ const Icon$1 = props => {
|
|
|
1359
1359
|
return /*#__PURE__*/jsx("i", {
|
|
1360
1360
|
ref: ref,
|
|
1361
1361
|
...forwardedProps,
|
|
1362
|
-
className: classnames(className, block
|
|
1362
|
+
className: classnames(className, block$12({
|
|
1363
1363
|
[`color-${iconColor}`]: Boolean(iconColor),
|
|
1364
1364
|
[`color-variant-${iconColorVariant}`]: Boolean(iconColorVariant),
|
|
1365
1365
|
'has-shape': hasShape,
|
|
@@ -1389,8 +1389,8 @@ const Icon$1 = props => {
|
|
|
1389
1389
|
});
|
|
1390
1390
|
};
|
|
1391
1391
|
Icon$1.displayName = COMPONENT_NAME$1d;
|
|
1392
|
-
Icon$1.className = CLASSNAME$
|
|
1393
|
-
Icon$1.defaultProps = DEFAULT_PROPS$
|
|
1392
|
+
Icon$1.className = CLASSNAME$1d;
|
|
1393
|
+
Icon$1.defaultProps = DEFAULT_PROPS$15;
|
|
1394
1394
|
|
|
1395
1395
|
/**
|
|
1396
1396
|
* Component display name.
|
|
@@ -1400,12 +1400,12 @@ const COMPONENT_NAME$1c = 'IconButton';
|
|
|
1400
1400
|
/**
|
|
1401
1401
|
* Component default class name and class prefix.
|
|
1402
1402
|
*/
|
|
1403
|
-
const CLASSNAME$
|
|
1403
|
+
const CLASSNAME$1c = 'lumx-icon-button';
|
|
1404
1404
|
|
|
1405
1405
|
/**
|
|
1406
1406
|
* Component default props.
|
|
1407
1407
|
*/
|
|
1408
|
-
const DEFAULT_PROPS$
|
|
1408
|
+
const DEFAULT_PROPS$14 = {
|
|
1409
1409
|
emphasis: Emphasis.high,
|
|
1410
1410
|
size: Size.m
|
|
1411
1411
|
};
|
|
@@ -1418,11 +1418,11 @@ const DEFAULT_PROPS$13 = {
|
|
|
1418
1418
|
*/
|
|
1419
1419
|
const IconButton$1 = props => {
|
|
1420
1420
|
const {
|
|
1421
|
-
emphasis = DEFAULT_PROPS$
|
|
1421
|
+
emphasis = DEFAULT_PROPS$14.emphasis,
|
|
1422
1422
|
image,
|
|
1423
1423
|
icon,
|
|
1424
1424
|
label,
|
|
1425
|
-
size = DEFAULT_PROPS$
|
|
1425
|
+
size = DEFAULT_PROPS$14.size,
|
|
1426
1426
|
...forwardedProps
|
|
1427
1427
|
} = props;
|
|
1428
1428
|
const defaultChildren = image ? /*#__PURE__*/jsx("img", {
|
|
@@ -1442,8 +1442,8 @@ const IconButton$1 = props => {
|
|
|
1442
1442
|
});
|
|
1443
1443
|
};
|
|
1444
1444
|
IconButton$1.displayName = COMPONENT_NAME$1c;
|
|
1445
|
-
IconButton$1.className = CLASSNAME$
|
|
1446
|
-
IconButton$1.defaultProps = DEFAULT_PROPS$
|
|
1445
|
+
IconButton$1.className = CLASSNAME$1c;
|
|
1446
|
+
IconButton$1.defaultProps = DEFAULT_PROPS$14;
|
|
1447
1447
|
|
|
1448
1448
|
/**
|
|
1449
1449
|
* IconButton component.
|
|
@@ -1479,8 +1479,8 @@ const IconButton = forwardRef((props, ref) => {
|
|
|
1479
1479
|
});
|
|
1480
1480
|
});
|
|
1481
1481
|
IconButton.displayName = COMPONENT_NAME$1c;
|
|
1482
|
-
IconButton.className = CLASSNAME$
|
|
1483
|
-
IconButton.defaultProps = DEFAULT_PROPS$
|
|
1482
|
+
IconButton.className = CLASSNAME$1c;
|
|
1483
|
+
IconButton.defaultProps = DEFAULT_PROPS$14;
|
|
1484
1484
|
|
|
1485
1485
|
/**
|
|
1486
1486
|
* Component display name.
|
|
@@ -1490,12 +1490,12 @@ const COMPONENT_NAME$1b = 'ButtonGroup';
|
|
|
1490
1490
|
/**
|
|
1491
1491
|
* Component default class name and class prefix.
|
|
1492
1492
|
*/
|
|
1493
|
-
const CLASSNAME$
|
|
1493
|
+
const CLASSNAME$1b = 'lumx-button-group';
|
|
1494
1494
|
|
|
1495
1495
|
/**
|
|
1496
1496
|
* Component default props.
|
|
1497
1497
|
*/
|
|
1498
|
-
const DEFAULT_PROPS$
|
|
1498
|
+
const DEFAULT_PROPS$13 = {};
|
|
1499
1499
|
|
|
1500
1500
|
/**
|
|
1501
1501
|
* ButtonGroup component.
|
|
@@ -1511,13 +1511,13 @@ const ButtonGroup$1 = props => {
|
|
|
1511
1511
|
} = props;
|
|
1512
1512
|
return /*#__PURE__*/jsx("div", {
|
|
1513
1513
|
...forwardedProps,
|
|
1514
|
-
className: classnames(className, CLASSNAME$
|
|
1514
|
+
className: classnames(className, CLASSNAME$1b),
|
|
1515
1515
|
children: children
|
|
1516
1516
|
});
|
|
1517
1517
|
};
|
|
1518
1518
|
ButtonGroup$1.displayName = COMPONENT_NAME$1b;
|
|
1519
|
-
ButtonGroup$1.className = CLASSNAME$
|
|
1520
|
-
ButtonGroup$1.defaultProps = DEFAULT_PROPS$
|
|
1519
|
+
ButtonGroup$1.className = CLASSNAME$1b;
|
|
1520
|
+
ButtonGroup$1.defaultProps = DEFAULT_PROPS$13;
|
|
1521
1521
|
|
|
1522
1522
|
/**
|
|
1523
1523
|
* ButtonGroup component.
|
|
@@ -1533,16 +1533,16 @@ const ButtonGroup = forwardRef((props, ref) => {
|
|
|
1533
1533
|
});
|
|
1534
1534
|
});
|
|
1535
1535
|
ButtonGroup.displayName = COMPONENT_NAME$1b;
|
|
1536
|
-
ButtonGroup.className = CLASSNAME$
|
|
1537
|
-
ButtonGroup.defaultProps = DEFAULT_PROPS$
|
|
1536
|
+
ButtonGroup.className = CLASSNAME$1b;
|
|
1537
|
+
ButtonGroup.defaultProps = DEFAULT_PROPS$13;
|
|
1538
1538
|
|
|
1539
1539
|
const COMPONENT_NAME$1a = 'InputLabel';
|
|
1540
1540
|
const InputLabelClassName = 'lumx-input-label';
|
|
1541
|
-
const CLASSNAME$
|
|
1541
|
+
const CLASSNAME$1a = InputLabelClassName;
|
|
1542
1542
|
const {
|
|
1543
|
-
block: block$
|
|
1544
|
-
} = bem(CLASSNAME$
|
|
1545
|
-
const DEFAULT_PROPS$
|
|
1543
|
+
block: block$11
|
|
1544
|
+
} = bem(CLASSNAME$1a);
|
|
1545
|
+
const DEFAULT_PROPS$12 = {};
|
|
1546
1546
|
|
|
1547
1547
|
/**
|
|
1548
1548
|
* InputLabel component.
|
|
@@ -1562,7 +1562,7 @@ function InputLabel$1(props) {
|
|
|
1562
1562
|
ref: ref,
|
|
1563
1563
|
...forwardedProps,
|
|
1564
1564
|
htmlFor: htmlFor,
|
|
1565
|
-
className: classnames(className, block$
|
|
1565
|
+
className: classnames(className, block$11({
|
|
1566
1566
|
'is-required': isRequired,
|
|
1567
1567
|
[`theme-${theme}`]: Boolean(theme),
|
|
1568
1568
|
'has-custom-typography': Boolean(typography$1)
|
|
@@ -1571,8 +1571,8 @@ function InputLabel$1(props) {
|
|
|
1571
1571
|
});
|
|
1572
1572
|
}
|
|
1573
1573
|
InputLabel$1.displayName = COMPONENT_NAME$1a;
|
|
1574
|
-
InputLabel$1.className = CLASSNAME$
|
|
1575
|
-
InputLabel$1.defaultProps = DEFAULT_PROPS$
|
|
1574
|
+
InputLabel$1.className = CLASSNAME$1a;
|
|
1575
|
+
InputLabel$1.defaultProps = DEFAULT_PROPS$12;
|
|
1576
1576
|
|
|
1577
1577
|
const INPUT_HELPER_CONFIGURATION = {
|
|
1578
1578
|
[Kind.error]: {
|
|
@@ -1593,15 +1593,15 @@ const InputHelperClassName = 'lumx-input-helper';
|
|
|
1593
1593
|
* Defines the props of the component.
|
|
1594
1594
|
*/
|
|
1595
1595
|
|
|
1596
|
-
const CLASSNAME$
|
|
1596
|
+
const CLASSNAME$19 = InputHelperClassName;
|
|
1597
1597
|
const {
|
|
1598
|
-
block: block$
|
|
1599
|
-
} = bem(CLASSNAME$
|
|
1598
|
+
block: block$10
|
|
1599
|
+
} = bem(CLASSNAME$19);
|
|
1600
1600
|
|
|
1601
1601
|
/**
|
|
1602
1602
|
* Component default props.
|
|
1603
1603
|
*/
|
|
1604
|
-
const DEFAULT_PROPS$
|
|
1604
|
+
const DEFAULT_PROPS$11 = {
|
|
1605
1605
|
kind: Kind.info
|
|
1606
1606
|
};
|
|
1607
1607
|
|
|
@@ -1612,7 +1612,7 @@ function InputHelper$1(props) {
|
|
|
1612
1612
|
const {
|
|
1613
1613
|
children,
|
|
1614
1614
|
className,
|
|
1615
|
-
kind = DEFAULT_PROPS$
|
|
1615
|
+
kind = DEFAULT_PROPS$11.kind,
|
|
1616
1616
|
theme,
|
|
1617
1617
|
ref,
|
|
1618
1618
|
...forwardedProps
|
|
@@ -1623,7 +1623,7 @@ function InputHelper$1(props) {
|
|
|
1623
1623
|
return /*#__PURE__*/jsx("p", {
|
|
1624
1624
|
ref: ref,
|
|
1625
1625
|
...forwardedProps,
|
|
1626
|
-
className: classnames(className, block$
|
|
1626
|
+
className: classnames(className, block$10({
|
|
1627
1627
|
[`color-${color}`]: Boolean(color),
|
|
1628
1628
|
[`theme-${theme}`]: Boolean(theme)
|
|
1629
1629
|
})),
|
|
@@ -1631,8 +1631,8 @@ function InputHelper$1(props) {
|
|
|
1631
1631
|
});
|
|
1632
1632
|
}
|
|
1633
1633
|
InputHelper$1.displayName = COMPONENT_NAME$19;
|
|
1634
|
-
InputHelper$1.className = CLASSNAME$
|
|
1635
|
-
InputHelper$1.defaultProps = DEFAULT_PROPS$
|
|
1634
|
+
InputHelper$1.className = CLASSNAME$19;
|
|
1635
|
+
InputHelper$1.defaultProps = DEFAULT_PROPS$11;
|
|
1636
1636
|
|
|
1637
1637
|
const INTERMEDIATE_STATE = 'intermediate';
|
|
1638
1638
|
|
|
@@ -1648,11 +1648,11 @@ const COMPONENT_NAME$18 = 'Checkbox';
|
|
|
1648
1648
|
/**
|
|
1649
1649
|
* Component default class name and class prefix.
|
|
1650
1650
|
*/
|
|
1651
|
-
const CLASSNAME$
|
|
1651
|
+
const CLASSNAME$18 = 'lumx-checkbox';
|
|
1652
1652
|
const {
|
|
1653
|
-
block: block
|
|
1654
|
-
element: element$
|
|
1655
|
-
} = bem(CLASSNAME$
|
|
1653
|
+
block: block$$,
|
|
1654
|
+
element: element$N
|
|
1655
|
+
} = bem(CLASSNAME$18);
|
|
1656
1656
|
|
|
1657
1657
|
/**
|
|
1658
1658
|
* Checkbox component.
|
|
@@ -1688,7 +1688,7 @@ const Checkbox$1 = props => {
|
|
|
1688
1688
|
return /*#__PURE__*/jsxs("div", {
|
|
1689
1689
|
ref: ref,
|
|
1690
1690
|
...forwardedProps,
|
|
1691
|
-
className: classnames(className, block
|
|
1691
|
+
className: classnames(className, block$$({
|
|
1692
1692
|
// Whether state is intermediate class name will "-checked"
|
|
1693
1693
|
'is-checked': intermediateState ? true : isChecked,
|
|
1694
1694
|
'is-disabled': isDisabled,
|
|
@@ -1696,12 +1696,12 @@ const Checkbox$1 = props => {
|
|
|
1696
1696
|
[`theme-${theme}`]: Boolean(theme)
|
|
1697
1697
|
})),
|
|
1698
1698
|
children: [/*#__PURE__*/jsxs("div", {
|
|
1699
|
-
className: element$
|
|
1699
|
+
className: element$N('input-wrapper'),
|
|
1700
1700
|
children: [/*#__PURE__*/jsx("input", {
|
|
1701
1701
|
ref: inputRef,
|
|
1702
1702
|
type: "checkbox",
|
|
1703
1703
|
id: inputId,
|
|
1704
|
-
className: element$
|
|
1704
|
+
className: element$N('input-native'),
|
|
1705
1705
|
name: name,
|
|
1706
1706
|
value: value,
|
|
1707
1707
|
checked: isChecked,
|
|
@@ -1713,26 +1713,26 @@ const Checkbox$1 = props => {
|
|
|
1713
1713
|
} : {}),
|
|
1714
1714
|
...inputProps
|
|
1715
1715
|
}), /*#__PURE__*/jsxs("div", {
|
|
1716
|
-
className: element$
|
|
1716
|
+
className: element$N('input-placeholder'),
|
|
1717
1717
|
children: [/*#__PURE__*/jsx("div", {
|
|
1718
|
-
className: element$
|
|
1718
|
+
className: element$N('input-background')
|
|
1719
1719
|
}), /*#__PURE__*/jsx("div", {
|
|
1720
|
-
className: element$
|
|
1720
|
+
className: element$N('input-indicator'),
|
|
1721
1721
|
children: Icon$1({
|
|
1722
1722
|
icon: intermediateState ? mdiMinus : mdiCheck
|
|
1723
1723
|
})
|
|
1724
1724
|
})]
|
|
1725
1725
|
})]
|
|
1726
1726
|
}), /*#__PURE__*/jsxs("div", {
|
|
1727
|
-
className: element$
|
|
1727
|
+
className: element$N('content'),
|
|
1728
1728
|
children: [label && InputLabel$1({
|
|
1729
1729
|
htmlFor: inputId,
|
|
1730
|
-
className: element$
|
|
1730
|
+
className: element$N('label'),
|
|
1731
1731
|
theme,
|
|
1732
1732
|
children: label
|
|
1733
1733
|
}), helper && InputHelper$1({
|
|
1734
1734
|
id: `${inputId}-helper`,
|
|
1735
|
-
className: element$
|
|
1735
|
+
className: element$N('helper'),
|
|
1736
1736
|
theme,
|
|
1737
1737
|
children: helper
|
|
1738
1738
|
})]
|
|
@@ -1747,7 +1747,7 @@ const Checkbox$1 = props => {
|
|
|
1747
1747
|
/**
|
|
1748
1748
|
* Component default props.
|
|
1749
1749
|
*/
|
|
1750
|
-
const DEFAULT_PROPS
|
|
1750
|
+
const DEFAULT_PROPS$10 = {};
|
|
1751
1751
|
|
|
1752
1752
|
/**
|
|
1753
1753
|
* Checkbox component.
|
|
@@ -1808,8 +1808,8 @@ const Checkbox = forwardRef((props, ref) => {
|
|
|
1808
1808
|
});
|
|
1809
1809
|
});
|
|
1810
1810
|
Checkbox.displayName = COMPONENT_NAME$18;
|
|
1811
|
-
Checkbox.className = CLASSNAME$
|
|
1812
|
-
Checkbox.defaultProps = DEFAULT_PROPS
|
|
1811
|
+
Checkbox.className = CLASSNAME$18;
|
|
1812
|
+
Checkbox.defaultProps = DEFAULT_PROPS$10;
|
|
1813
1813
|
|
|
1814
1814
|
/**
|
|
1815
1815
|
* Wrap mouse event handler to stop event propagation.
|
|
@@ -1835,16 +1835,16 @@ const COMPONENT_NAME$17 = 'Chip';
|
|
|
1835
1835
|
/**
|
|
1836
1836
|
* Component default class name and class prefix.
|
|
1837
1837
|
*/
|
|
1838
|
-
const CLASSNAME$
|
|
1838
|
+
const CLASSNAME$17 = 'lumx-chip';
|
|
1839
1839
|
const {
|
|
1840
|
-
block: block$
|
|
1841
|
-
element: element$
|
|
1842
|
-
} = classNames.bem(CLASSNAME$
|
|
1840
|
+
block: block$_,
|
|
1841
|
+
element: element$M
|
|
1842
|
+
} = classNames.bem(CLASSNAME$17);
|
|
1843
1843
|
|
|
1844
1844
|
/**
|
|
1845
1845
|
* Component default props.
|
|
1846
1846
|
*/
|
|
1847
|
-
const DEFAULT_PROPS
|
|
1847
|
+
const DEFAULT_PROPS$$ = {
|
|
1848
1848
|
size: Size$1.m
|
|
1849
1849
|
};
|
|
1850
1850
|
|
|
@@ -1874,7 +1874,7 @@ const Chip = forwardRef((props, ref) => {
|
|
|
1874
1874
|
onAfterClick,
|
|
1875
1875
|
onBeforeClick,
|
|
1876
1876
|
onClick,
|
|
1877
|
-
size = DEFAULT_PROPS
|
|
1877
|
+
size = DEFAULT_PROPS$$.size,
|
|
1878
1878
|
theme = defaultTheme,
|
|
1879
1879
|
href,
|
|
1880
1880
|
onKeyDown,
|
|
@@ -1905,7 +1905,7 @@ const Chip = forwardRef((props, ref) => {
|
|
|
1905
1905
|
...forwardedProps,
|
|
1906
1906
|
href: !disabledStateProps.disabled ? href : undefined,
|
|
1907
1907
|
ref: ref,
|
|
1908
|
-
className: classNames.join(className, block$
|
|
1908
|
+
className: classNames.join(className, block$_({
|
|
1909
1909
|
'is-clickable': isClickable,
|
|
1910
1910
|
[`color-${chipColor}`]: Boolean(chipColor),
|
|
1911
1911
|
'is-disabled': isAnyDisabled,
|
|
@@ -1923,19 +1923,19 @@ const Chip = forwardRef((props, ref) => {
|
|
|
1923
1923
|
/*#__PURE__*/
|
|
1924
1924
|
// eslint-disable-next-line jsx-a11y/click-events-have-key-events,jsx-a11y/no-static-element-interactions
|
|
1925
1925
|
jsx("div", {
|
|
1926
|
-
className: element$
|
|
1926
|
+
className: element$M('before', {
|
|
1927
1927
|
'is-clickable': hasBeforeClick
|
|
1928
1928
|
}),
|
|
1929
1929
|
onClick: handleOnBeforeClick,
|
|
1930
1930
|
children: before
|
|
1931
1931
|
}), /*#__PURE__*/jsx("div", {
|
|
1932
|
-
className: element$
|
|
1932
|
+
className: element$M('label'),
|
|
1933
1933
|
children: children
|
|
1934
1934
|
}), after &&
|
|
1935
1935
|
/*#__PURE__*/
|
|
1936
1936
|
// eslint-disable-next-line jsx-a11y/click-events-have-key-events,jsx-a11y/no-static-element-interactions
|
|
1937
1937
|
jsx("div", {
|
|
1938
|
-
className: element$
|
|
1938
|
+
className: element$M('after', {
|
|
1939
1939
|
'is-clickable': hasAfterClick
|
|
1940
1940
|
}),
|
|
1941
1941
|
onClick: handleOnAfterClick,
|
|
@@ -1945,8 +1945,8 @@ const Chip = forwardRef((props, ref) => {
|
|
|
1945
1945
|
);
|
|
1946
1946
|
});
|
|
1947
1947
|
Chip.displayName = COMPONENT_NAME$17;
|
|
1948
|
-
Chip.className = CLASSNAME$
|
|
1949
|
-
Chip.defaultProps = DEFAULT_PROPS
|
|
1948
|
+
Chip.className = CLASSNAME$17;
|
|
1949
|
+
Chip.defaultProps = DEFAULT_PROPS$$;
|
|
1950
1950
|
|
|
1951
1951
|
const INITIAL_STATE_ACTIVE_CHIP = -1;
|
|
1952
1952
|
|
|
@@ -2002,7 +2002,7 @@ const useChipGroupNavigation = (chips, onChipDeleted, initialActiveChip = INITIA
|
|
|
2002
2002
|
/**
|
|
2003
2003
|
* Component default props.
|
|
2004
2004
|
*/
|
|
2005
|
-
const DEFAULT_PROPS$
|
|
2005
|
+
const DEFAULT_PROPS$_ = {};
|
|
2006
2006
|
|
|
2007
2007
|
/**
|
|
2008
2008
|
* Component display name.
|
|
@@ -2012,7 +2012,7 @@ const COMPONENT_NAME$16 = 'ChipGroup';
|
|
|
2012
2012
|
/**
|
|
2013
2013
|
* Component default class name and class prefix.
|
|
2014
2014
|
*/
|
|
2015
|
-
const CLASSNAME$
|
|
2015
|
+
const CLASSNAME$16 = 'lumx-chip-group';
|
|
2016
2016
|
|
|
2017
2017
|
/**
|
|
2018
2018
|
* ChipGroup component.
|
|
@@ -2031,13 +2031,13 @@ const InternalChipGroup = forwardRef((props, ref) => {
|
|
|
2031
2031
|
return /*#__PURE__*/jsx("div", {
|
|
2032
2032
|
ref: ref,
|
|
2033
2033
|
...forwardedProps,
|
|
2034
|
-
className: classNames.join(className, CLASSNAME$
|
|
2034
|
+
className: classNames.join(className, CLASSNAME$16),
|
|
2035
2035
|
children: children
|
|
2036
2036
|
});
|
|
2037
2037
|
});
|
|
2038
2038
|
InternalChipGroup.displayName = COMPONENT_NAME$16;
|
|
2039
|
-
InternalChipGroup.className = CLASSNAME$
|
|
2040
|
-
InternalChipGroup.defaultProps = DEFAULT_PROPS$
|
|
2039
|
+
InternalChipGroup.className = CLASSNAME$16;
|
|
2040
|
+
InternalChipGroup.defaultProps = DEFAULT_PROPS$_;
|
|
2041
2041
|
const ChipGroup = Object.assign(InternalChipGroup, {
|
|
2042
2042
|
useChipGroupNavigation
|
|
2043
2043
|
});
|
|
@@ -2127,11 +2127,11 @@ function useFocusLastChipOnBackspace(chipRefs, inputRef) {
|
|
|
2127
2127
|
/**
|
|
2128
2128
|
* Component default class name and class prefix.
|
|
2129
2129
|
*/
|
|
2130
|
-
const CLASSNAME$
|
|
2130
|
+
const CLASSNAME$15 = 'lumx-selection-chip-group';
|
|
2131
2131
|
const {
|
|
2132
|
-
block: block$
|
|
2133
|
-
element: element$
|
|
2134
|
-
} = classNames.bem(CLASSNAME$
|
|
2132
|
+
block: block$Z,
|
|
2133
|
+
element: element$L
|
|
2134
|
+
} = classNames.bem(CLASSNAME$15);
|
|
2135
2135
|
|
|
2136
2136
|
/**
|
|
2137
2137
|
* SelectionChipGroup component.
|
|
@@ -2161,7 +2161,7 @@ const SelectionChipGroup = ({
|
|
|
2161
2161
|
return /*#__PURE__*/jsx(ChipGroup, {
|
|
2162
2162
|
role: "group",
|
|
2163
2163
|
"aria-label": label,
|
|
2164
|
-
className: block$
|
|
2164
|
+
className: block$Z(),
|
|
2165
2165
|
...forwardedProps,
|
|
2166
2166
|
children: value?.map((v, index) => {
|
|
2167
2167
|
const name = getWithSelector(getOptionName, v);
|
|
@@ -2205,7 +2205,7 @@ const SelectionChipGroup = ({
|
|
|
2205
2205
|
after: /*#__PURE__*/jsx(Icon, {
|
|
2206
2206
|
icon: mdiClose
|
|
2207
2207
|
}),
|
|
2208
|
-
className: element$
|
|
2208
|
+
className: element$L('chip', [props?.className]),
|
|
2209
2209
|
size: "s",
|
|
2210
2210
|
ref: ref,
|
|
2211
2211
|
onClick: onClick,
|
|
@@ -2220,6 +2220,654 @@ const SelectionChipGroup = ({
|
|
|
2220
2220
|
});
|
|
2221
2221
|
};
|
|
2222
2222
|
|
|
2223
|
+
const ComboboxOptionContext = /*#__PURE__*/createContext({});
|
|
2224
|
+
/** Context Provider to store the current combobox option id. */
|
|
2225
|
+
const ComboboxOptionContextProvider = ({
|
|
2226
|
+
optionId,
|
|
2227
|
+
isKeyboardHighlighted,
|
|
2228
|
+
children
|
|
2229
|
+
}) => {
|
|
2230
|
+
const value = React__default.useMemo(() => ({
|
|
2231
|
+
optionId,
|
|
2232
|
+
isKeyboardHighlighted
|
|
2233
|
+
}), [optionId, isKeyboardHighlighted]);
|
|
2234
|
+
return /*#__PURE__*/jsx(ComboboxOptionContext.Provider, {
|
|
2235
|
+
value: value,
|
|
2236
|
+
children: children
|
|
2237
|
+
});
|
|
2238
|
+
};
|
|
2239
|
+
|
|
2240
|
+
/**
|
|
2241
|
+
* Retrieve the current combobox option id.
|
|
2242
|
+
* Must be used within a ComboboxOptionIdProvider
|
|
2243
|
+
*/
|
|
2244
|
+
const useComboboxOptionContext = () => {
|
|
2245
|
+
const comboboxOption = useContext(ComboboxOptionContext);
|
|
2246
|
+
if (!comboboxOption?.optionId) {
|
|
2247
|
+
throw new Error('This hook must be used within a ComboboxOptionIdProvider');
|
|
2248
|
+
}
|
|
2249
|
+
return comboboxOption;
|
|
2250
|
+
};
|
|
2251
|
+
|
|
2252
|
+
/** Generate the combobox option id from the combobox id and the given id */
|
|
2253
|
+
const generateOptionId = (comboboxId, optionId) => `${comboboxId}-option-${optionId}`;
|
|
2254
|
+
|
|
2255
|
+
/** Verifies that the combobox registered option is an action */
|
|
2256
|
+
const isComboboxAction = option => Boolean(option?.isAction);
|
|
2257
|
+
|
|
2258
|
+
/** Verifies that the combobox registered option is the option's value */
|
|
2259
|
+
const isComboboxValue = option => {
|
|
2260
|
+
return !isComboboxAction(option);
|
|
2261
|
+
};
|
|
2262
|
+
|
|
2263
|
+
const comboboxId = `combobox-${uniqueId()}`;
|
|
2264
|
+
const initialState = {
|
|
2265
|
+
comboboxId,
|
|
2266
|
+
listboxId: `${comboboxId}-popover`,
|
|
2267
|
+
status: 'idle',
|
|
2268
|
+
isOpen: false,
|
|
2269
|
+
inputValue: '',
|
|
2270
|
+
showAll: true,
|
|
2271
|
+
options: {},
|
|
2272
|
+
type: 'listbox',
|
|
2273
|
+
optionsLength: 0
|
|
2274
|
+
};
|
|
2275
|
+
|
|
2276
|
+
/** Dispatch for the combobox component */
|
|
2277
|
+
|
|
2278
|
+
/** Context for the Combobox component */
|
|
2279
|
+
const ComboboxContext = /*#__PURE__*/React__default.createContext({
|
|
2280
|
+
...initialState,
|
|
2281
|
+
openOnFocus: false,
|
|
2282
|
+
openOnClick: false,
|
|
2283
|
+
selectionType: 'single',
|
|
2284
|
+
optionsLength: 0,
|
|
2285
|
+
onSelect: noop,
|
|
2286
|
+
onInputChange: noop,
|
|
2287
|
+
onOpen: noop,
|
|
2288
|
+
dispatch: noop,
|
|
2289
|
+
translations: {
|
|
2290
|
+
clearLabel: '',
|
|
2291
|
+
tryReloadLabel: '',
|
|
2292
|
+
showSuggestionsLabel: '',
|
|
2293
|
+
noResultsForInputLabel: input => input || '',
|
|
2294
|
+
loadingLabel: '',
|
|
2295
|
+
serviceUnavailableLabel: '',
|
|
2296
|
+
nbOptionsLabel: options => `${options}`
|
|
2297
|
+
}
|
|
2298
|
+
});
|
|
2299
|
+
|
|
2300
|
+
/** Context for a combobox section to store its unique id */
|
|
2301
|
+
const SectionContext = /*#__PURE__*/React__default.createContext({
|
|
2302
|
+
sectionId: ''
|
|
2303
|
+
});
|
|
2304
|
+
|
|
2305
|
+
/** Context to store the refs of the combobox elements */
|
|
2306
|
+
const ComboboxRefsContext = /*#__PURE__*/createContext({
|
|
2307
|
+
triggerRef: {
|
|
2308
|
+
current: null
|
|
2309
|
+
},
|
|
2310
|
+
anchorRef: {
|
|
2311
|
+
current: null
|
|
2312
|
+
}
|
|
2313
|
+
});
|
|
2314
|
+
|
|
2315
|
+
/** Retrieves the combobox elements references from context */
|
|
2316
|
+
const useComboboxRefs = () => {
|
|
2317
|
+
const refs = useContext(ComboboxRefsContext);
|
|
2318
|
+
if (!refs) {
|
|
2319
|
+
throw new Error('The useComboboxRefs hook must be called within a ComboboxRefsProvider');
|
|
2320
|
+
}
|
|
2321
|
+
return refs;
|
|
2322
|
+
};
|
|
2323
|
+
|
|
2324
|
+
/** Retrieve the current combobox state and actions */
|
|
2325
|
+
const useCombobox = () => {
|
|
2326
|
+
const comboboxContext = React__default.useContext(ComboboxContext);
|
|
2327
|
+
const {
|
|
2328
|
+
dispatch: movingFocusDispatch
|
|
2329
|
+
} = React__default.useContext(MovingFocusContext);
|
|
2330
|
+
const {
|
|
2331
|
+
onSelect,
|
|
2332
|
+
onInputChange,
|
|
2333
|
+
onOpen,
|
|
2334
|
+
dispatch,
|
|
2335
|
+
inputValue,
|
|
2336
|
+
...contextValues
|
|
2337
|
+
} = comboboxContext;
|
|
2338
|
+
const {
|
|
2339
|
+
triggerRef
|
|
2340
|
+
} = useComboboxRefs();
|
|
2341
|
+
|
|
2342
|
+
/** Action triggered when the listBox is closed without selecting any option */
|
|
2343
|
+
const handleClose = React__default.useCallback(() => {
|
|
2344
|
+
dispatch({
|
|
2345
|
+
type: 'CLOSE_COMBOBOX'
|
|
2346
|
+
});
|
|
2347
|
+
// Reset visual focus
|
|
2348
|
+
movingFocusDispatch({
|
|
2349
|
+
type: 'RESET_SELECTED_TAB_STOP'
|
|
2350
|
+
});
|
|
2351
|
+
}, [dispatch, movingFocusDispatch]);
|
|
2352
|
+
|
|
2353
|
+
// Handle callbacks on options mounted
|
|
2354
|
+
const [optionsMountedCallbacks, setOptionsMountedCallback] = React__default.useState();
|
|
2355
|
+
React__default.useEffect(() => {
|
|
2356
|
+
if (comboboxContext.optionsLength > 0 && optionsMountedCallbacks?.length) {
|
|
2357
|
+
const optionsArray = Object.values(comboboxContext.options);
|
|
2358
|
+
// Execute callbacks
|
|
2359
|
+
for (const callback of optionsMountedCallbacks) {
|
|
2360
|
+
callback(optionsArray);
|
|
2361
|
+
}
|
|
2362
|
+
setOptionsMountedCallback(undefined);
|
|
2363
|
+
}
|
|
2364
|
+
}, [comboboxContext.options, comboboxContext.optionsLength, optionsMountedCallbacks]);
|
|
2365
|
+
|
|
2366
|
+
/** Callback for when an option is selected */
|
|
2367
|
+
const handleSelected = React__default.useCallback((option, source) => {
|
|
2368
|
+
if (option?.isDisabled) {
|
|
2369
|
+
return;
|
|
2370
|
+
}
|
|
2371
|
+
if (isComboboxValue(option)) {
|
|
2372
|
+
/**
|
|
2373
|
+
* We only close the list if the selection type is single.
|
|
2374
|
+
* If it is multiple, we want to allow the user to continue
|
|
2375
|
+
* selecting multiple options.
|
|
2376
|
+
*/
|
|
2377
|
+
if (comboboxContext.selectionType !== 'multiple') {
|
|
2378
|
+
handleClose();
|
|
2379
|
+
}
|
|
2380
|
+
/** Call parent onSelect callback */
|
|
2381
|
+
if (onSelect) {
|
|
2382
|
+
onSelect(option);
|
|
2383
|
+
}
|
|
2384
|
+
}
|
|
2385
|
+
|
|
2386
|
+
/** If the option itself has a custom action, also call it */
|
|
2387
|
+
if (option?.onSelect) {
|
|
2388
|
+
option.onSelect(option, source);
|
|
2389
|
+
}
|
|
2390
|
+
|
|
2391
|
+
/** Reset focus on input */
|
|
2392
|
+
if (triggerRef?.current) {
|
|
2393
|
+
triggerRef.current?.focus();
|
|
2394
|
+
}
|
|
2395
|
+
}, [comboboxContext.selectionType, handleClose, onSelect, triggerRef]);
|
|
2396
|
+
|
|
2397
|
+
/** Callback for when the input must be updated */
|
|
2398
|
+
const handleInputChange = React__default.useCallback((value, ...args) => {
|
|
2399
|
+
// Update the local state
|
|
2400
|
+
dispatch({
|
|
2401
|
+
type: 'SET_INPUT_VALUE',
|
|
2402
|
+
payload: value
|
|
2403
|
+
});
|
|
2404
|
+
// If a callback if given, call it with the value
|
|
2405
|
+
if (onInputChange) {
|
|
2406
|
+
onInputChange(value, ...args);
|
|
2407
|
+
}
|
|
2408
|
+
// Reset visual focus
|
|
2409
|
+
movingFocusDispatch({
|
|
2410
|
+
type: 'RESET_SELECTED_TAB_STOP'
|
|
2411
|
+
});
|
|
2412
|
+
}, [dispatch, movingFocusDispatch, onInputChange]);
|
|
2413
|
+
|
|
2414
|
+
/**
|
|
2415
|
+
* Open the popover
|
|
2416
|
+
*
|
|
2417
|
+
* @returns a promise with the updated context once all options are mounted
|
|
2418
|
+
*/
|
|
2419
|
+
const handleOpen = React__default.useCallback(params => {
|
|
2420
|
+
/** update the local state */
|
|
2421
|
+
dispatch({
|
|
2422
|
+
type: 'OPEN_COMBOBOX',
|
|
2423
|
+
payload: params
|
|
2424
|
+
});
|
|
2425
|
+
/** If a parent callback was given, trigger it with state information */
|
|
2426
|
+
if (onOpen) {
|
|
2427
|
+
onOpen({
|
|
2428
|
+
currentValue: inputValue,
|
|
2429
|
+
manual: Boolean(params?.manual)
|
|
2430
|
+
});
|
|
2431
|
+
}
|
|
2432
|
+
|
|
2433
|
+
// Promise resolving options on mount
|
|
2434
|
+
return new Promise(resolve => {
|
|
2435
|
+
// Append to the list of callback on options mounted
|
|
2436
|
+
setOptionsMountedCallback((callbacks = []) => {
|
|
2437
|
+
callbacks.push(resolve);
|
|
2438
|
+
return callbacks;
|
|
2439
|
+
});
|
|
2440
|
+
});
|
|
2441
|
+
}, [dispatch, inputValue, onOpen]);
|
|
2442
|
+
return React__default.useMemo(() => ({
|
|
2443
|
+
handleClose,
|
|
2444
|
+
handleOpen,
|
|
2445
|
+
handleInputChange,
|
|
2446
|
+
handleSelected,
|
|
2447
|
+
dispatch,
|
|
2448
|
+
inputValue,
|
|
2449
|
+
...contextValues
|
|
2450
|
+
}), [contextValues, dispatch, handleClose, handleInputChange, handleOpen, handleSelected, inputValue]);
|
|
2451
|
+
};
|
|
2452
|
+
|
|
2453
|
+
/** Retrieve the current combobox section id */
|
|
2454
|
+
const useComboboxSectionId = () => {
|
|
2455
|
+
return useContext(SectionContext);
|
|
2456
|
+
};
|
|
2457
|
+
|
|
2458
|
+
/**
|
|
2459
|
+
* Register the given option to the context
|
|
2460
|
+
*/
|
|
2461
|
+
const useRegisterOption = (registerId, option, shouldRegister) => {
|
|
2462
|
+
const {
|
|
2463
|
+
dispatch
|
|
2464
|
+
} = useCombobox();
|
|
2465
|
+
|
|
2466
|
+
/** Register the given options */
|
|
2467
|
+
React__default.useEffect(() => {
|
|
2468
|
+
if (option && shouldRegister) {
|
|
2469
|
+
dispatch({
|
|
2470
|
+
type: 'ADD_OPTION',
|
|
2471
|
+
payload: {
|
|
2472
|
+
id: registerId,
|
|
2473
|
+
option
|
|
2474
|
+
}
|
|
2475
|
+
});
|
|
2476
|
+
}
|
|
2477
|
+
|
|
2478
|
+
// Unregister ids if/when the component unmounts or if option changes
|
|
2479
|
+
return () => {
|
|
2480
|
+
if (option) {
|
|
2481
|
+
dispatch({
|
|
2482
|
+
type: 'REMOVE_OPTION',
|
|
2483
|
+
payload: {
|
|
2484
|
+
id: registerId
|
|
2485
|
+
}
|
|
2486
|
+
});
|
|
2487
|
+
}
|
|
2488
|
+
};
|
|
2489
|
+
}, [dispatch, option, registerId, shouldRegister]);
|
|
2490
|
+
};
|
|
2491
|
+
|
|
2492
|
+
/* eslint-disable jsx-a11y/click-events-have-key-events */
|
|
2493
|
+
const COMBOBOX_OPTION_CLASSNAME = 'lumx-combobox-option';
|
|
2494
|
+
const LUMX_CLASSNAME = 'lumx-list-item';
|
|
2495
|
+
const {
|
|
2496
|
+
block: block$Y,
|
|
2497
|
+
element: element$K
|
|
2498
|
+
} = classNames.bem(COMBOBOX_OPTION_CLASSNAME);
|
|
2499
|
+
const lumxListItem = classNames.bem(LUMX_CLASSNAME);
|
|
2500
|
+
|
|
2501
|
+
/**
|
|
2502
|
+
* Content of the option.
|
|
2503
|
+
* This should only be rendered if the option is shown.
|
|
2504
|
+
*/
|
|
2505
|
+
const OptionContent = forwardRef((props, ref) => {
|
|
2506
|
+
const {
|
|
2507
|
+
id,
|
|
2508
|
+
onSelect,
|
|
2509
|
+
isSelected,
|
|
2510
|
+
isDisabled,
|
|
2511
|
+
children,
|
|
2512
|
+
className,
|
|
2513
|
+
before,
|
|
2514
|
+
after,
|
|
2515
|
+
as,
|
|
2516
|
+
size = Size$1.tiny,
|
|
2517
|
+
comboboxType,
|
|
2518
|
+
tooltipProps,
|
|
2519
|
+
description,
|
|
2520
|
+
'aria-hidden': ariaHidden,
|
|
2521
|
+
autofocus,
|
|
2522
|
+
...forwardedProps
|
|
2523
|
+
} = props;
|
|
2524
|
+
const itemRef = React__default.useRef(null);
|
|
2525
|
+
const {
|
|
2526
|
+
state
|
|
2527
|
+
} = React__default.useContext(MovingFocusContext);
|
|
2528
|
+
const {
|
|
2529
|
+
selectedIds
|
|
2530
|
+
} = useCombobox();
|
|
2531
|
+
const hasSelection = selectedIds !== undefined;
|
|
2532
|
+
const isHighlighted = useVirtualFocus(id, itemRef, false, comboboxType === 'grid' ? id : undefined, autofocus);
|
|
2533
|
+
const Element = as || 'span';
|
|
2534
|
+
const ariaSelected = isSelected ? 'true' : 'false';
|
|
2535
|
+
const ariaDescriptionId = description ? `${id}-description` : undefined;
|
|
2536
|
+
const isKeyboardHighlighted = state.isUsingKeyboard && isHighlighted;
|
|
2537
|
+
|
|
2538
|
+
/**
|
|
2539
|
+
* The DS `ListItem` component has a lot of behavior / default props we do not want here.
|
|
2540
|
+
* Notably the before/after items are within the interactive element, which we do not want.
|
|
2541
|
+
* So we use a native li tag.
|
|
2542
|
+
*/
|
|
2543
|
+
return /*#__PURE__*/jsx("li", {
|
|
2544
|
+
className: block$Y(undefined, [className ?? '', lumxListItem.block({
|
|
2545
|
+
[`size-${size}`]: !!size
|
|
2546
|
+
})]),
|
|
2547
|
+
role: "presentation",
|
|
2548
|
+
ref: itemRef,
|
|
2549
|
+
"aria-hidden": ariaHidden,
|
|
2550
|
+
style: {
|
|
2551
|
+
display: ariaHidden ? 'none' : undefined
|
|
2552
|
+
},
|
|
2553
|
+
...forwardedProps,
|
|
2554
|
+
children: /*#__PURE__*/jsxs(GenericBlock, {
|
|
2555
|
+
as: "div",
|
|
2556
|
+
role: comboboxType === 'grid' ? 'row' : 'presentation',
|
|
2557
|
+
className: element$K('content', {
|
|
2558
|
+
// Not using the lumx list item disabled style as it blocks pointer events
|
|
2559
|
+
'is-disabled': !!isDisabled
|
|
2560
|
+
},
|
|
2561
|
+
// TODO: migrate away from using lumx-list-item styles https://lumapps.atlassian.net/browse/DSW-288
|
|
2562
|
+
[lumxListItem.element('link', {
|
|
2563
|
+
'is-selected': Boolean(isSelected),
|
|
2564
|
+
'is-highlighted': Boolean(isHighlighted)
|
|
2565
|
+
})]),
|
|
2566
|
+
"data-focus-visible-added": isKeyboardHighlighted ? 'true' : undefined,
|
|
2567
|
+
children: [before && /*#__PURE__*/jsx(GenericBlock.Figure, {
|
|
2568
|
+
as: "span",
|
|
2569
|
+
role: "presentation",
|
|
2570
|
+
className: element$K('before', undefined, [lumxListItem.element('before')]),
|
|
2571
|
+
children: before
|
|
2572
|
+
}), /*#__PURE__*/jsxs(GenericBlock.Content, {
|
|
2573
|
+
as: "span",
|
|
2574
|
+
role: "presentation",
|
|
2575
|
+
className: lumxListItem.element('content'),
|
|
2576
|
+
children: [/*#__PURE__*/jsx(Tooltip, {
|
|
2577
|
+
forceOpen: isKeyboardHighlighted,
|
|
2578
|
+
closeMode: "hide",
|
|
2579
|
+
...tooltipProps,
|
|
2580
|
+
children: /*#__PURE__*/jsx(Element, {
|
|
2581
|
+
id: id,
|
|
2582
|
+
className: element$K('trigger'),
|
|
2583
|
+
role: comboboxType === 'grid' ? 'gridcell' : 'option',
|
|
2584
|
+
"aria-selected": hasSelection ? ariaSelected : undefined,
|
|
2585
|
+
"aria-disabled": isDisabled,
|
|
2586
|
+
"aria-describedby": ariaDescriptionId,
|
|
2587
|
+
onClick: onSelect
|
|
2588
|
+
// Prevent mouse down to avoid blur before the click is activated
|
|
2589
|
+
,
|
|
2590
|
+
onMouseDown: event => event.preventDefault(),
|
|
2591
|
+
ref: ref,
|
|
2592
|
+
...forwardedProps,
|
|
2593
|
+
children: children
|
|
2594
|
+
})
|
|
2595
|
+
}), description && /*#__PURE__*/jsx(Text, {
|
|
2596
|
+
as: "span",
|
|
2597
|
+
id: ariaDescriptionId,
|
|
2598
|
+
role: "presentation",
|
|
2599
|
+
className: element$K('description'),
|
|
2600
|
+
typography: "caption",
|
|
2601
|
+
color: "dark",
|
|
2602
|
+
colorVariant: "L2",
|
|
2603
|
+
children: description
|
|
2604
|
+
})]
|
|
2605
|
+
}), after && /*#__PURE__*/jsx(GenericBlock.Actions, {
|
|
2606
|
+
as: "span",
|
|
2607
|
+
role: "presentation",
|
|
2608
|
+
className: element$K('after', undefined, [lumxListItem.element('after')]),
|
|
2609
|
+
children: /*#__PURE__*/jsx(ComboboxOptionContextProvider, {
|
|
2610
|
+
optionId: id,
|
|
2611
|
+
isKeyboardHighlighted: isKeyboardHighlighted,
|
|
2612
|
+
children: after
|
|
2613
|
+
})
|
|
2614
|
+
})]
|
|
2615
|
+
})
|
|
2616
|
+
});
|
|
2617
|
+
});
|
|
2618
|
+
|
|
2619
|
+
/**
|
|
2620
|
+
* Props for ComboboxOption with additional generic properties.
|
|
2621
|
+
*/
|
|
2622
|
+
|
|
2623
|
+
/**
|
|
2624
|
+
* Option to set within a combobox list.
|
|
2625
|
+
*
|
|
2626
|
+
* @family Combobox
|
|
2627
|
+
* @param ComboboxOptionProps
|
|
2628
|
+
* @returns ComboboxOption
|
|
2629
|
+
*/
|
|
2630
|
+
const ComboboxOption = forwardRef((props, ref) => {
|
|
2631
|
+
const {
|
|
2632
|
+
children,
|
|
2633
|
+
id,
|
|
2634
|
+
textValue,
|
|
2635
|
+
data,
|
|
2636
|
+
filterFromInput = true,
|
|
2637
|
+
onSelect: onOptionSelect,
|
|
2638
|
+
isDisabled,
|
|
2639
|
+
as = 'span',
|
|
2640
|
+
...optionProps
|
|
2641
|
+
} = props;
|
|
2642
|
+
|
|
2643
|
+
// Get the id of the current group, if any.
|
|
2644
|
+
const section = useComboboxSectionId();
|
|
2645
|
+
const {
|
|
2646
|
+
comboboxId,
|
|
2647
|
+
selectedIds,
|
|
2648
|
+
showAll,
|
|
2649
|
+
inputValue,
|
|
2650
|
+
handleSelected,
|
|
2651
|
+
type
|
|
2652
|
+
} = useCombobox();
|
|
2653
|
+
// Generate a unique id for this option.
|
|
2654
|
+
const generatedId = generateOptionId(comboboxId, id);
|
|
2655
|
+
const isSelected = selectedIds?.includes(generatedId);
|
|
2656
|
+
|
|
2657
|
+
// If no text value is set and the direct child is a simple string, use it as value.
|
|
2658
|
+
const isStringChild = typeof children === 'string' || typeof children === 'number';
|
|
2659
|
+
const value = children && !textValue && isStringChild ? children.toString() : textValue;
|
|
2660
|
+
const showOption = !filterFromInput || showAll || value?.toString()?.toLowerCase().includes(inputValue?.toLowerCase());
|
|
2661
|
+
const registeredOption = React__default.useMemo(() => ({
|
|
2662
|
+
id,
|
|
2663
|
+
generatedId,
|
|
2664
|
+
textValue: value,
|
|
2665
|
+
data,
|
|
2666
|
+
filter: filterFromInput,
|
|
2667
|
+
isDisabled: isDisabled || !showOption,
|
|
2668
|
+
sectionId: section.sectionId,
|
|
2669
|
+
onSelect: onOptionSelect
|
|
2670
|
+
}), [data, filterFromInput, generatedId, section.sectionId, id, isDisabled, onOptionSelect, showOption, value]);
|
|
2671
|
+
|
|
2672
|
+
// Register the option
|
|
2673
|
+
useRegisterOption(generatedId, registeredOption, showOption);
|
|
2674
|
+
const handleSelect = React__default.useCallback(() => handleSelected(registeredOption, 'click'), [handleSelected, registeredOption]);
|
|
2675
|
+
if (!id || !showOption) {
|
|
2676
|
+
return null;
|
|
2677
|
+
}
|
|
2678
|
+
return /*#__PURE__*/jsx(OptionContent, {
|
|
2679
|
+
id: generatedId,
|
|
2680
|
+
onSelect: handleSelect,
|
|
2681
|
+
isSelected: isSelected,
|
|
2682
|
+
isDisabled: isDisabled,
|
|
2683
|
+
as: as,
|
|
2684
|
+
ref: ref,
|
|
2685
|
+
comboboxType: type,
|
|
2686
|
+
"aria-hidden": section.isLoading,
|
|
2687
|
+
...optionProps,
|
|
2688
|
+
children: children || textValue
|
|
2689
|
+
});
|
|
2690
|
+
});
|
|
2691
|
+
|
|
2692
|
+
// Default widths the skeletons must have
|
|
2693
|
+
const defaultWidths = [REAL_SIZE_FOR_LUMX_SIZE.xxl, REAL_SIZE_FOR_LUMX_SIZE.xl, REAL_SIZE_FOR_LUMX_SIZE.l];
|
|
2694
|
+
const {
|
|
2695
|
+
block: block$X,
|
|
2696
|
+
element: element$J
|
|
2697
|
+
} = classNames.bem(COMBOBOX_OPTION_CLASSNAME);
|
|
2698
|
+
|
|
2699
|
+
/**
|
|
2700
|
+
* Skeleton for a combobox option.
|
|
2701
|
+
* A typography skeleton is rendered by default but can be overridden by passing children.
|
|
2702
|
+
*/
|
|
2703
|
+
const ComboboxOptionSkeleton = ({
|
|
2704
|
+
className,
|
|
2705
|
+
index,
|
|
2706
|
+
before,
|
|
2707
|
+
after,
|
|
2708
|
+
size = Size$1.tiny,
|
|
2709
|
+
children
|
|
2710
|
+
}) => {
|
|
2711
|
+
const renderedChildren = typeof children === 'function' ? children({
|
|
2712
|
+
index
|
|
2713
|
+
}) : children;
|
|
2714
|
+
const content = renderedChildren || /*#__PURE__*/jsx(SkeletonTypography, {
|
|
2715
|
+
typography: "body1",
|
|
2716
|
+
width: index !== undefined && defaultWidths[index] ? defaultWidths[index] : REAL_SIZE_FOR_LUMX_SIZE.xl
|
|
2717
|
+
});
|
|
2718
|
+
return /*#__PURE__*/jsxs("li", {
|
|
2719
|
+
role: "presentation",
|
|
2720
|
+
className: block$X({
|
|
2721
|
+
skeleton: true
|
|
2722
|
+
}, ['lumx-list-item', `lumx-list-item--size-${size}`, className]),
|
|
2723
|
+
children: [/*#__PURE__*/jsxs("div", {
|
|
2724
|
+
role: "presentation",
|
|
2725
|
+
className: element$J('content', ['lumx-list-item__wrapper']),
|
|
2726
|
+
children: [before && /*#__PURE__*/jsx(Text, {
|
|
2727
|
+
as: "span",
|
|
2728
|
+
role: "presentation",
|
|
2729
|
+
className: element$J('before', ['lumx-list-item__before']),
|
|
2730
|
+
children: before
|
|
2731
|
+
}), content]
|
|
2732
|
+
}), after && /*#__PURE__*/jsx("div", {
|
|
2733
|
+
role: "presentation",
|
|
2734
|
+
className: element$J('after', ['lumx-list-item__after']),
|
|
2735
|
+
children: after
|
|
2736
|
+
})]
|
|
2737
|
+
});
|
|
2738
|
+
};
|
|
2739
|
+
|
|
2740
|
+
/**
|
|
2741
|
+
* Action to set on a Combobox Option.
|
|
2742
|
+
* Allows to add an interactive element that
|
|
2743
|
+
* can be navigated to and triggered using the keyboard.
|
|
2744
|
+
*
|
|
2745
|
+
* Defaults as "button"
|
|
2746
|
+
*
|
|
2747
|
+
* @family Combobox
|
|
2748
|
+
* @param ComboboxOptionActionProps
|
|
2749
|
+
* @returns ComboboxOptionAction
|
|
2750
|
+
*/
|
|
2751
|
+
const ComboboxOptionAction = props => {
|
|
2752
|
+
const {
|
|
2753
|
+
as,
|
|
2754
|
+
isDisabled,
|
|
2755
|
+
onClick,
|
|
2756
|
+
id: originalId,
|
|
2757
|
+
...forwardedProps
|
|
2758
|
+
} = props;
|
|
2759
|
+
const {
|
|
2760
|
+
optionId
|
|
2761
|
+
} = useComboboxOptionContext();
|
|
2762
|
+
const {
|
|
2763
|
+
triggerRef
|
|
2764
|
+
} = useComboboxRefs();
|
|
2765
|
+
const itemRef = React__default.useRef(null);
|
|
2766
|
+
const generatedId = useId();
|
|
2767
|
+
const id = originalId || generatedId;
|
|
2768
|
+
const isHighlighted = useVirtualFocus(id, itemRef, isDisabled, optionId);
|
|
2769
|
+
const {
|
|
2770
|
+
state
|
|
2771
|
+
} = React__default.useContext(MovingFocusContext);
|
|
2772
|
+
const Component = as || 'button';
|
|
2773
|
+
const registeredActionOption = React__default.useMemo(() => ({
|
|
2774
|
+
id,
|
|
2775
|
+
generatedId: id,
|
|
2776
|
+
isAction: true,
|
|
2777
|
+
isDisabled,
|
|
2778
|
+
onSelect: () => {
|
|
2779
|
+
itemRef.current?.click();
|
|
2780
|
+
}
|
|
2781
|
+
}), [id, isDisabled]);
|
|
2782
|
+
|
|
2783
|
+
// Register the option
|
|
2784
|
+
useRegisterOption(id, registeredActionOption, !isDisabled);
|
|
2785
|
+
const handleActionClick = React__default.useCallback(() => {
|
|
2786
|
+
if (onClick) {
|
|
2787
|
+
onClick();
|
|
2788
|
+
}
|
|
2789
|
+
if (triggerRef?.current) {
|
|
2790
|
+
triggerRef.current?.focus();
|
|
2791
|
+
}
|
|
2792
|
+
}, [triggerRef, onClick]);
|
|
2793
|
+
return /*#__PURE__*/jsx(Component, {
|
|
2794
|
+
...forwardedProps,
|
|
2795
|
+
isDisabled: isDisabled,
|
|
2796
|
+
id: id,
|
|
2797
|
+
role: "gridcell",
|
|
2798
|
+
ref: itemRef,
|
|
2799
|
+
"data-focus-visible-added": state.isUsingKeyboard && isHighlighted ? 'true' : undefined,
|
|
2800
|
+
"aria-disabled": isDisabled,
|
|
2801
|
+
onClick: handleActionClick
|
|
2802
|
+
});
|
|
2803
|
+
};
|
|
2804
|
+
|
|
2805
|
+
const useBooleanState = defaultValue => {
|
|
2806
|
+
const [booleanValue, setBoolean] = useState(defaultValue);
|
|
2807
|
+
const setToFalse = useCallback(() => setBoolean(false), []);
|
|
2808
|
+
const setToTrue = useCallback(() => setBoolean(true), []);
|
|
2809
|
+
const toggleBoolean = useCallback(() => setBoolean(previousValue => !previousValue), []);
|
|
2810
|
+
return [booleanValue, setToFalse, setToTrue, toggleBoolean];
|
|
2811
|
+
};
|
|
2812
|
+
|
|
2813
|
+
const CLASSNAME$14 = 'lumx-combobox-option-more-info';
|
|
2814
|
+
const {
|
|
2815
|
+
block: block$W,
|
|
2816
|
+
element: element$I
|
|
2817
|
+
} = classNames.bem(CLASSNAME$14);
|
|
2818
|
+
|
|
2819
|
+
/**
|
|
2820
|
+
* Display more info on the option as a popover opening on mouse hover or keyboard nav
|
|
2821
|
+
* Please consider using a simpler option description instead for better UX and a11y.
|
|
2822
|
+
*
|
|
2823
|
+
* @family Combobox
|
|
2824
|
+
*/
|
|
2825
|
+
const ComboboxOptionMoreInfo = ({
|
|
2826
|
+
buttonProps,
|
|
2827
|
+
popoverProps,
|
|
2828
|
+
onToggle,
|
|
2829
|
+
children
|
|
2830
|
+
}) => {
|
|
2831
|
+
const ref = React__default.useRef(null);
|
|
2832
|
+
const [isHovered,, onMouseLeave, onMouseEnter] = useBooleanState(false);
|
|
2833
|
+
const comboboxOption = useComboboxOptionContext();
|
|
2834
|
+
|
|
2835
|
+
// Open on mouse hover or key nav
|
|
2836
|
+
const isOpen = isHovered || comboboxOption.isKeyboardHighlighted;
|
|
2837
|
+
React__default.useEffect(() => {
|
|
2838
|
+
onToggle?.(isOpen);
|
|
2839
|
+
}, [isOpen, onToggle]);
|
|
2840
|
+
return /*#__PURE__*/jsxs(Fragment, {
|
|
2841
|
+
children: [/*#__PURE__*/jsx(IconButton, {
|
|
2842
|
+
...buttonProps,
|
|
2843
|
+
ref: ref,
|
|
2844
|
+
className: block$W([buttonProps?.className]),
|
|
2845
|
+
icon: mdiInformationOutline,
|
|
2846
|
+
size: "s",
|
|
2847
|
+
emphasis: "low",
|
|
2848
|
+
onMouseEnter: onMouseEnter,
|
|
2849
|
+
onMouseLeave: onMouseLeave
|
|
2850
|
+
// Button actually plays no role here other than a target for the mouse hover
|
|
2851
|
+
// Keyboard accessibility is handled via combobox keyboard highlighting
|
|
2852
|
+
,
|
|
2853
|
+
"aria-hidden": true,
|
|
2854
|
+
label: ""
|
|
2855
|
+
}), /*#__PURE__*/jsx(Popover, {
|
|
2856
|
+
...popoverProps,
|
|
2857
|
+
className: element$I('popover', [popoverProps?.className]),
|
|
2858
|
+
anchorRef: ref,
|
|
2859
|
+
isOpen: isOpen,
|
|
2860
|
+
closeOnEscape: true,
|
|
2861
|
+
closeOnClickAway: true,
|
|
2862
|
+
placement: "bottom-start",
|
|
2863
|
+
children: children
|
|
2864
|
+
}), /*#__PURE__*/jsx(A11YLiveMessage, {
|
|
2865
|
+
hidden: true,
|
|
2866
|
+
children: isOpen ? children : undefined
|
|
2867
|
+
})]
|
|
2868
|
+
});
|
|
2869
|
+
};
|
|
2870
|
+
|
|
2223
2871
|
/**
|
|
2224
2872
|
* Comment block variants.
|
|
2225
2873
|
*/
|
|
@@ -2249,7 +2897,7 @@ const {
|
|
|
2249
2897
|
/**
|
|
2250
2898
|
* Component default props.
|
|
2251
2899
|
*/
|
|
2252
|
-
const DEFAULT_PROPS$
|
|
2900
|
+
const DEFAULT_PROPS$Z = {
|
|
2253
2901
|
variant: CommentBlockVariant.indented
|
|
2254
2902
|
};
|
|
2255
2903
|
|
|
@@ -2279,7 +2927,7 @@ const CommentBlock = forwardRef((props, ref) => {
|
|
|
2279
2927
|
onMouseLeave,
|
|
2280
2928
|
text,
|
|
2281
2929
|
theme = defaultTheme,
|
|
2282
|
-
variant = DEFAULT_PROPS$
|
|
2930
|
+
variant = DEFAULT_PROPS$Z.variant,
|
|
2283
2931
|
...forwardedProps
|
|
2284
2932
|
} = props;
|
|
2285
2933
|
const hasChildren = Children.count(children) > 0;
|
|
@@ -2348,7 +2996,7 @@ const CommentBlock = forwardRef((props, ref) => {
|
|
|
2348
2996
|
});
|
|
2349
2997
|
CommentBlock.displayName = COMPONENT_NAME$15;
|
|
2350
2998
|
CommentBlock.className = CLASSNAME$13;
|
|
2351
|
-
CommentBlock.defaultProps = DEFAULT_PROPS$
|
|
2999
|
+
CommentBlock.defaultProps = DEFAULT_PROPS$Z;
|
|
2352
3000
|
|
|
2353
3001
|
/**
|
|
2354
3002
|
* Add a number of months from a date while resetting the day to prevent month length mismatches.
|
|
@@ -2838,14 +3486,6 @@ const DatePicker = forwardRef((props, ref) => {
|
|
|
2838
3486
|
DatePicker.displayName = COMPONENT_NAME$14;
|
|
2839
3487
|
DatePicker.className = CLASSNAME$12;
|
|
2840
3488
|
|
|
2841
|
-
const useBooleanState = defaultValue => {
|
|
2842
|
-
const [booleanValue, setBoolean] = useState(defaultValue);
|
|
2843
|
-
const setToFalse = useCallback(() => setBoolean(false), []);
|
|
2844
|
-
const setToTrue = useCallback(() => setBoolean(true), []);
|
|
2845
|
-
const toggleBoolean = useCallback(() => setBoolean(previousValue => !previousValue), []);
|
|
2846
|
-
return [booleanValue, setToFalse, setToTrue, toggleBoolean];
|
|
2847
|
-
};
|
|
2848
|
-
|
|
2849
3489
|
/**
|
|
2850
3490
|
* Component display name.
|
|
2851
3491
|
*/
|
|
@@ -3453,7 +4093,7 @@ const {
|
|
|
3453
4093
|
/**
|
|
3454
4094
|
* Component default props.
|
|
3455
4095
|
*/
|
|
3456
|
-
const DEFAULT_PROPS$
|
|
4096
|
+
const DEFAULT_PROPS$Y = {
|
|
3457
4097
|
size: Size$1.big,
|
|
3458
4098
|
disableBodyScroll: true
|
|
3459
4099
|
};
|
|
@@ -3484,11 +4124,11 @@ const Dialog = forwardRef((props, ref) => {
|
|
|
3484
4124
|
parentElement,
|
|
3485
4125
|
contentRef,
|
|
3486
4126
|
preventAutoClose,
|
|
3487
|
-
size = DEFAULT_PROPS$
|
|
4127
|
+
size = DEFAULT_PROPS$Y.size,
|
|
3488
4128
|
zIndex,
|
|
3489
4129
|
dialogProps,
|
|
3490
4130
|
onVisibilityChange,
|
|
3491
|
-
disableBodyScroll = DEFAULT_PROPS$
|
|
4131
|
+
disableBodyScroll = DEFAULT_PROPS$Y.disableBodyScroll,
|
|
3492
4132
|
preventCloseOnClick,
|
|
3493
4133
|
preventCloseOnEscape,
|
|
3494
4134
|
...forwardedProps
|
|
@@ -3628,7 +4268,7 @@ const Dialog = forwardRef((props, ref) => {
|
|
|
3628
4268
|
});
|
|
3629
4269
|
Dialog.displayName = COMPONENT_NAME$11;
|
|
3630
4270
|
Dialog.className = CLASSNAME$11;
|
|
3631
|
-
Dialog.defaultProps = DEFAULT_PROPS$
|
|
4271
|
+
Dialog.defaultProps = DEFAULT_PROPS$Y;
|
|
3632
4272
|
|
|
3633
4273
|
/**
|
|
3634
4274
|
* Component display name.
|
|
@@ -3672,7 +4312,7 @@ const Divider$1 = props => {
|
|
|
3672
4312
|
/**
|
|
3673
4313
|
* Component default props.
|
|
3674
4314
|
*/
|
|
3675
|
-
const DEFAULT_PROPS$
|
|
4315
|
+
const DEFAULT_PROPS$X = {};
|
|
3676
4316
|
|
|
3677
4317
|
/**
|
|
3678
4318
|
* Divider component.
|
|
@@ -3695,7 +4335,7 @@ const Divider = forwardRef((props, ref) => {
|
|
|
3695
4335
|
});
|
|
3696
4336
|
Divider.displayName = COMPONENT_NAME$10;
|
|
3697
4337
|
Divider.className = CLASSNAME$10;
|
|
3698
|
-
Divider.defaultProps = DEFAULT_PROPS$
|
|
4338
|
+
Divider.defaultProps = DEFAULT_PROPS$X;
|
|
3699
4339
|
|
|
3700
4340
|
/**
|
|
3701
4341
|
* Component display name.
|
|
@@ -3920,7 +4560,7 @@ const {
|
|
|
3920
4560
|
/**
|
|
3921
4561
|
* Component default props.
|
|
3922
4562
|
*/
|
|
3923
|
-
const DEFAULT_PROPS$
|
|
4563
|
+
const DEFAULT_PROPS$W = {
|
|
3924
4564
|
tabIndex: -1
|
|
3925
4565
|
};
|
|
3926
4566
|
|
|
@@ -3939,7 +4579,7 @@ const InternalList = forwardRef((props, ref) => {
|
|
|
3939
4579
|
isClickable,
|
|
3940
4580
|
itemPadding,
|
|
3941
4581
|
onListItemSelected,
|
|
3942
|
-
tabIndex = DEFAULT_PROPS$
|
|
4582
|
+
tabIndex = DEFAULT_PROPS$W.tabIndex,
|
|
3943
4583
|
...forwardedProps
|
|
3944
4584
|
} = props;
|
|
3945
4585
|
const adjustedItemPadding = itemPadding ?? (isClickable ? Size$1.big : undefined);
|
|
@@ -3955,7 +4595,7 @@ const InternalList = forwardRef((props, ref) => {
|
|
|
3955
4595
|
});
|
|
3956
4596
|
InternalList.displayName = COMPONENT_NAME$_;
|
|
3957
4597
|
InternalList.className = CLASSNAME$_;
|
|
3958
|
-
InternalList.defaultProps = DEFAULT_PROPS$
|
|
4598
|
+
InternalList.defaultProps = DEFAULT_PROPS$W;
|
|
3959
4599
|
const List = Object.assign(InternalList, {
|
|
3960
4600
|
useKeyboardListNavigation
|
|
3961
4601
|
});
|
|
@@ -6400,7 +7040,7 @@ const {
|
|
|
6400
7040
|
/**
|
|
6401
7041
|
* Component default props.
|
|
6402
7042
|
*/
|
|
6403
|
-
const DEFAULT_PROPS$
|
|
7043
|
+
const DEFAULT_PROPS$V = {
|
|
6404
7044
|
elevation: 3,
|
|
6405
7045
|
placement: Placement.AUTO,
|
|
6406
7046
|
focusAnchorOnClose: true,
|
|
@@ -6417,24 +7057,24 @@ const _InnerPopover = forwardRef((props, ref) => {
|
|
|
6417
7057
|
className,
|
|
6418
7058
|
closeOnClickAway,
|
|
6419
7059
|
closeOnEscape,
|
|
6420
|
-
elevation = DEFAULT_PROPS$
|
|
7060
|
+
elevation = DEFAULT_PROPS$V.elevation,
|
|
6421
7061
|
focusElement,
|
|
6422
7062
|
hasArrow,
|
|
6423
7063
|
isOpen,
|
|
6424
7064
|
onClose,
|
|
6425
7065
|
parentElement,
|
|
6426
|
-
usePortal = DEFAULT_PROPS$
|
|
6427
|
-
focusAnchorOnClose = DEFAULT_PROPS$
|
|
7066
|
+
usePortal = DEFAULT_PROPS$V.usePortal,
|
|
7067
|
+
focusAnchorOnClose = DEFAULT_PROPS$V.focusAnchorOnClose,
|
|
6428
7068
|
withFocusTrap,
|
|
6429
7069
|
boundaryRef,
|
|
6430
7070
|
fitToAnchorWidth,
|
|
6431
7071
|
fitWithinViewportHeight,
|
|
6432
7072
|
focusTrapZoneElement,
|
|
6433
7073
|
offset,
|
|
6434
|
-
placement = DEFAULT_PROPS$
|
|
7074
|
+
placement = DEFAULT_PROPS$V.placement,
|
|
6435
7075
|
style,
|
|
6436
7076
|
theme,
|
|
6437
|
-
zIndex = DEFAULT_PROPS$
|
|
7077
|
+
zIndex = DEFAULT_PROPS$V.zIndex,
|
|
6438
7078
|
...forwardedProps
|
|
6439
7079
|
} = props;
|
|
6440
7080
|
const popoverRef = useRef(null);
|
|
@@ -6520,7 +7160,7 @@ const Popover = skipRender(
|
|
|
6520
7160
|
() => Boolean(DOCUMENT), _InnerPopover);
|
|
6521
7161
|
Popover.displayName = COMPONENT_NAME$Z;
|
|
6522
7162
|
Popover.className = CLASSNAME$Z;
|
|
6523
|
-
Popover.defaultProps = DEFAULT_PROPS$
|
|
7163
|
+
Popover.defaultProps = DEFAULT_PROPS$V;
|
|
6524
7164
|
|
|
6525
7165
|
// The error margin in px we want to have for triggering infinite scroll
|
|
6526
7166
|
const SCROLL_TRIGGER_MARGIN = 5;
|
|
@@ -6580,7 +7220,7 @@ const {
|
|
|
6580
7220
|
/**
|
|
6581
7221
|
* Component default props.
|
|
6582
7222
|
*/
|
|
6583
|
-
const DEFAULT_PROPS$
|
|
7223
|
+
const DEFAULT_PROPS$U = {
|
|
6584
7224
|
closeOnClick: true,
|
|
6585
7225
|
closeOnClickAway: true,
|
|
6586
7226
|
closeOnEscape: true,
|
|
@@ -6603,18 +7243,18 @@ const Dropdown = forwardRef((props, ref) => {
|
|
|
6603
7243
|
anchorRef,
|
|
6604
7244
|
children,
|
|
6605
7245
|
className,
|
|
6606
|
-
closeOnClick = DEFAULT_PROPS$
|
|
6607
|
-
closeOnClickAway = DEFAULT_PROPS$
|
|
6608
|
-
closeOnEscape = DEFAULT_PROPS$
|
|
6609
|
-
fitToAnchorWidth = DEFAULT_PROPS$
|
|
6610
|
-
fitWithinViewportHeight = DEFAULT_PROPS$
|
|
7246
|
+
closeOnClick = DEFAULT_PROPS$U.closeOnClick,
|
|
7247
|
+
closeOnClickAway = DEFAULT_PROPS$U.closeOnClickAway,
|
|
7248
|
+
closeOnEscape = DEFAULT_PROPS$U.closeOnEscape,
|
|
7249
|
+
fitToAnchorWidth = DEFAULT_PROPS$U.fitToAnchorWidth,
|
|
7250
|
+
fitWithinViewportHeight = DEFAULT_PROPS$U.fitWithinViewportHeight,
|
|
6611
7251
|
isOpen,
|
|
6612
7252
|
offset,
|
|
6613
|
-
focusAnchorOnClose = DEFAULT_PROPS$
|
|
7253
|
+
focusAnchorOnClose = DEFAULT_PROPS$U.focusAnchorOnClose,
|
|
6614
7254
|
onClose,
|
|
6615
7255
|
onInfiniteScroll,
|
|
6616
|
-
placement = DEFAULT_PROPS$
|
|
6617
|
-
shouldFocusOnOpen = DEFAULT_PROPS$
|
|
7256
|
+
placement = DEFAULT_PROPS$U.placement,
|
|
7257
|
+
shouldFocusOnOpen = DEFAULT_PROPS$U.shouldFocusOnOpen,
|
|
6618
7258
|
zIndex,
|
|
6619
7259
|
...forwardedProps
|
|
6620
7260
|
} = props;
|
|
@@ -6660,7 +7300,7 @@ const Dropdown = forwardRef((props, ref) => {
|
|
|
6660
7300
|
});
|
|
6661
7301
|
Dropdown.displayName = COMPONENT_NAME$Y;
|
|
6662
7302
|
Dropdown.className = CLASSNAME$Y;
|
|
6663
|
-
Dropdown.defaultProps = DEFAULT_PROPS$
|
|
7303
|
+
Dropdown.defaultProps = DEFAULT_PROPS$U;
|
|
6664
7304
|
|
|
6665
7305
|
/**
|
|
6666
7306
|
* Component display name.
|
|
@@ -6679,7 +7319,7 @@ const {
|
|
|
6679
7319
|
/**
|
|
6680
7320
|
* Component default props.
|
|
6681
7321
|
*/
|
|
6682
|
-
const DEFAULT_PROPS$
|
|
7322
|
+
const DEFAULT_PROPS$T = {
|
|
6683
7323
|
closeMode: 'unmount'
|
|
6684
7324
|
};
|
|
6685
7325
|
const isDragHandle = isComponent(DragHandle);
|
|
@@ -6697,7 +7337,7 @@ const ExpansionPanel = forwardRef((props, ref) => {
|
|
|
6697
7337
|
const defaultTheme = useTheme() || Theme$1.light;
|
|
6698
7338
|
const {
|
|
6699
7339
|
className,
|
|
6700
|
-
closeMode = DEFAULT_PROPS$
|
|
7340
|
+
closeMode = DEFAULT_PROPS$T.closeMode,
|
|
6701
7341
|
children: anyChildren,
|
|
6702
7342
|
hasBackground,
|
|
6703
7343
|
hasHeaderDivider,
|
|
@@ -6814,11 +7454,11 @@ const ExpansionPanel = forwardRef((props, ref) => {
|
|
|
6814
7454
|
});
|
|
6815
7455
|
ExpansionPanel.displayName = COMPONENT_NAME$X;
|
|
6816
7456
|
ExpansionPanel.className = CLASSNAME$X;
|
|
6817
|
-
ExpansionPanel.defaultProps = DEFAULT_PROPS$
|
|
7457
|
+
ExpansionPanel.defaultProps = DEFAULT_PROPS$T;
|
|
6818
7458
|
|
|
6819
7459
|
const COMPONENT_NAME$W = 'Flag';
|
|
6820
7460
|
const CLASSNAME$W = 'lumx-flag';
|
|
6821
|
-
const DEFAULT_PROPS$
|
|
7461
|
+
const DEFAULT_PROPS$S = {};
|
|
6822
7462
|
const {
|
|
6823
7463
|
block: block$N,
|
|
6824
7464
|
element: element$B
|
|
@@ -6882,7 +7522,7 @@ const Flag = forwardRef((props, ref) => {
|
|
|
6882
7522
|
});
|
|
6883
7523
|
Flag.displayName = COMPONENT_NAME$W;
|
|
6884
7524
|
Flag.className = CLASSNAME$W;
|
|
6885
|
-
Flag.defaultProps = DEFAULT_PROPS$
|
|
7525
|
+
Flag.defaultProps = DEFAULT_PROPS$S;
|
|
6886
7526
|
|
|
6887
7527
|
/**
|
|
6888
7528
|
* Defines the props of the component.
|
|
@@ -6975,7 +7615,7 @@ const {
|
|
|
6975
7615
|
/**
|
|
6976
7616
|
* Component default props.
|
|
6977
7617
|
*/
|
|
6978
|
-
const DEFAULT_PROPS$
|
|
7618
|
+
const DEFAULT_PROPS$R = {
|
|
6979
7619
|
gap: Size$1.big,
|
|
6980
7620
|
orientation: Orientation$1.horizontal
|
|
6981
7621
|
};
|
|
@@ -7005,8 +7645,8 @@ const BaseGenericBlock = forwardRef((props, ref) => {
|
|
|
7005
7645
|
children,
|
|
7006
7646
|
actions,
|
|
7007
7647
|
actionsProps,
|
|
7008
|
-
gap = DEFAULT_PROPS$
|
|
7009
|
-
orientation = DEFAULT_PROPS$
|
|
7648
|
+
gap = DEFAULT_PROPS$R.gap,
|
|
7649
|
+
orientation = DEFAULT_PROPS$R.orientation,
|
|
7010
7650
|
contentProps,
|
|
7011
7651
|
...forwardedProps
|
|
7012
7652
|
} = props;
|
|
@@ -7060,7 +7700,7 @@ const BaseGenericBlock = forwardRef((props, ref) => {
|
|
|
7060
7700
|
});
|
|
7061
7701
|
BaseGenericBlock.displayName = COMPONENT_NAME$U;
|
|
7062
7702
|
BaseGenericBlock.className = CLASSNAME$U;
|
|
7063
|
-
BaseGenericBlock.defaultProps = DEFAULT_PROPS$
|
|
7703
|
+
BaseGenericBlock.defaultProps = DEFAULT_PROPS$R;
|
|
7064
7704
|
const GenericBlock = Object.assign(BaseGenericBlock, {
|
|
7065
7705
|
Figure,
|
|
7066
7706
|
Content,
|
|
@@ -7108,7 +7748,7 @@ const CLASSNAME$T = 'lumx-heading';
|
|
|
7108
7748
|
/**
|
|
7109
7749
|
* Component default props.
|
|
7110
7750
|
*/
|
|
7111
|
-
const DEFAULT_PROPS$
|
|
7751
|
+
const DEFAULT_PROPS$Q = {};
|
|
7112
7752
|
|
|
7113
7753
|
/**
|
|
7114
7754
|
* Get Heading component common props
|
|
@@ -7209,7 +7849,7 @@ const {
|
|
|
7209
7849
|
/**
|
|
7210
7850
|
* Component default props.
|
|
7211
7851
|
*/
|
|
7212
|
-
const DEFAULT_PROPS$
|
|
7852
|
+
const DEFAULT_PROPS$P = {};
|
|
7213
7853
|
|
|
7214
7854
|
/**
|
|
7215
7855
|
* Text component common props
|
|
@@ -7296,7 +7936,7 @@ const Text = forwardRef((props, ref) => {
|
|
|
7296
7936
|
});
|
|
7297
7937
|
Text.displayName = COMPONENT_NAME$S;
|
|
7298
7938
|
Text.className = CLASSNAME$S;
|
|
7299
|
-
Text.defaultProps = DEFAULT_PROPS$
|
|
7939
|
+
Text.defaultProps = DEFAULT_PROPS$P;
|
|
7300
7940
|
|
|
7301
7941
|
const HeadingLevelContext = /*#__PURE__*/createContext(defaultContext);
|
|
7302
7942
|
|
|
@@ -7333,7 +7973,7 @@ const Heading = forwardRef((props, ref) => {
|
|
|
7333
7973
|
});
|
|
7334
7974
|
Heading.displayName = COMPONENT_NAME$T;
|
|
7335
7975
|
Heading.className = CLASSNAME$T;
|
|
7336
|
-
Heading.defaultProps = DEFAULT_PROPS$
|
|
7976
|
+
Heading.defaultProps = DEFAULT_PROPS$Q;
|
|
7337
7977
|
|
|
7338
7978
|
/**
|
|
7339
7979
|
* Computes the next heading level based on the optional prop level or the parent context level.
|
|
@@ -7384,7 +8024,7 @@ const {
|
|
|
7384
8024
|
/**
|
|
7385
8025
|
* Component default props.
|
|
7386
8026
|
*/
|
|
7387
|
-
const DEFAULT_PROPS$
|
|
8027
|
+
const DEFAULT_PROPS$O = {
|
|
7388
8028
|
orientation: Orientation$1.horizontal,
|
|
7389
8029
|
wrap: 'nowrap'
|
|
7390
8030
|
};
|
|
@@ -7402,9 +8042,9 @@ const Grid = forwardRef((props, ref) => {
|
|
|
7402
8042
|
className,
|
|
7403
8043
|
gutter,
|
|
7404
8044
|
hAlign,
|
|
7405
|
-
orientation = DEFAULT_PROPS$
|
|
8045
|
+
orientation = DEFAULT_PROPS$O.orientation,
|
|
7406
8046
|
vAlign,
|
|
7407
|
-
wrap = DEFAULT_PROPS$
|
|
8047
|
+
wrap = DEFAULT_PROPS$O.wrap,
|
|
7408
8048
|
...forwardedProps
|
|
7409
8049
|
} = props;
|
|
7410
8050
|
return /*#__PURE__*/jsx("div", {
|
|
@@ -7422,7 +8062,7 @@ const Grid = forwardRef((props, ref) => {
|
|
|
7422
8062
|
});
|
|
7423
8063
|
Grid.displayName = COMPONENT_NAME$R;
|
|
7424
8064
|
Grid.className = CLASSNAME$R;
|
|
7425
|
-
Grid.defaultProps = DEFAULT_PROPS$
|
|
8065
|
+
Grid.defaultProps = DEFAULT_PROPS$O;
|
|
7426
8066
|
|
|
7427
8067
|
/**
|
|
7428
8068
|
* Component display name.
|
|
@@ -7480,7 +8120,7 @@ const CLASSNAME$P = 'lumx-grid-column';
|
|
|
7480
8120
|
/**
|
|
7481
8121
|
* Component default props.
|
|
7482
8122
|
*/
|
|
7483
|
-
const DEFAULT_PROPS$
|
|
8123
|
+
const DEFAULT_PROPS$N = {};
|
|
7484
8124
|
|
|
7485
8125
|
/**
|
|
7486
8126
|
* The GridColumn is a layout component that can display children in a grid
|
|
@@ -7488,10 +8128,9 @@ const DEFAULT_PROPS$M = {};
|
|
|
7488
8128
|
* with a number of column that reduce when there is not enough space for each item.
|
|
7489
8129
|
*
|
|
7490
8130
|
* @param props Component props.
|
|
7491
|
-
* @
|
|
7492
|
-
* @return React element.
|
|
8131
|
+
* @return JSX element.
|
|
7493
8132
|
*/
|
|
7494
|
-
const GridColumn =
|
|
8133
|
+
const GridColumn$1 = props => {
|
|
7495
8134
|
const {
|
|
7496
8135
|
as: Component = 'div',
|
|
7497
8136
|
gap,
|
|
@@ -7500,12 +8139,13 @@ const GridColumn = forwardRef((props, ref) => {
|
|
|
7500
8139
|
children,
|
|
7501
8140
|
className,
|
|
7502
8141
|
style = {},
|
|
8142
|
+
ref,
|
|
7503
8143
|
...forwardedProps
|
|
7504
8144
|
} = props;
|
|
7505
8145
|
return /*#__PURE__*/jsx(Component, {
|
|
7506
8146
|
...forwardedProps,
|
|
7507
8147
|
ref: ref,
|
|
7508
|
-
className:
|
|
8148
|
+
className: classnames(className, CLASSNAME$P),
|
|
7509
8149
|
style: {
|
|
7510
8150
|
...style,
|
|
7511
8151
|
['--lumx-grid-column-item-min-width']: isInteger(itemMinWidth) && `${itemMinWidth}px`,
|
|
@@ -7514,6 +8154,36 @@ const GridColumn = forwardRef((props, ref) => {
|
|
|
7514
8154
|
},
|
|
7515
8155
|
children: children
|
|
7516
8156
|
});
|
|
8157
|
+
};
|
|
8158
|
+
GridColumn$1.displayName = COMPONENT_NAME$P;
|
|
8159
|
+
GridColumn$1.className = CLASSNAME$P;
|
|
8160
|
+
GridColumn$1.defaultProps = DEFAULT_PROPS$N;
|
|
8161
|
+
|
|
8162
|
+
/**
|
|
8163
|
+
* Defines the props of the component.
|
|
8164
|
+
*/
|
|
8165
|
+
|
|
8166
|
+
// Re-export types for backward compatibility
|
|
8167
|
+
|
|
8168
|
+
/**
|
|
8169
|
+
* Component default props.
|
|
8170
|
+
*/
|
|
8171
|
+
const DEFAULT_PROPS$M = {};
|
|
8172
|
+
|
|
8173
|
+
/**
|
|
8174
|
+
* The GridColumn is a layout component that can display children in a grid
|
|
8175
|
+
* with custom display properties. It also comes with a responsive design,
|
|
8176
|
+
* with a number of column that reduce when there is not enough space for each item.
|
|
8177
|
+
*
|
|
8178
|
+
* @param props Component props.
|
|
8179
|
+
* @param ref Component ref.
|
|
8180
|
+
* @return React element.
|
|
8181
|
+
*/
|
|
8182
|
+
const GridColumn = forwardRef((props, ref) => {
|
|
8183
|
+
return GridColumn$1({
|
|
8184
|
+
ref,
|
|
8185
|
+
...props
|
|
8186
|
+
});
|
|
7517
8187
|
});
|
|
7518
8188
|
GridColumn.displayName = COMPONENT_NAME$P;
|
|
7519
8189
|
GridColumn.className = CLASSNAME$P;
|
|
@@ -15304,5 +15974,5 @@ UserBlock.displayName = COMPONENT_NAME;
|
|
|
15304
15974
|
UserBlock.className = CLASSNAME;
|
|
15305
15975
|
UserBlock.defaultProps = DEFAULT_PROPS;
|
|
15306
15976
|
|
|
15307
|
-
export { AlertDialog, Autocomplete, AutocompleteMultiple, Avatar, Badge, BadgeWrapper, Button, ButtonGroup, CLASSNAME$
|
|
15977
|
+
export { AlertDialog, Autocomplete, AutocompleteMultiple, Avatar, Badge, BadgeWrapper, Button, ButtonGroup, CLASSNAME$1e as CLASSNAME, COMBOBOX_OPTION_CLASSNAME, COMPONENT_NAME$1e as COMPONENT_NAME, Checkbox, Chip, ChipGroup, ComboboxOption, ComboboxOptionAction, ComboboxOptionMoreInfo, ComboboxOptionSkeleton, CommentBlock, CommentBlockVariant, DEFAULT_PROPS$16 as DEFAULT_PROPS, DatePicker, DatePickerControlled, DatePickerField, Dialog, Divider, DragHandle, Dropdown, ExpansionPanel, Flag, FlexBox, GenericBlock, GenericBlockGapSize, Grid, GridColumn, GridItem, Heading, HeadingLevelProvider, Icon, IconButton, ImageBlock, ImageBlockCaptionPosition, ImageLightbox, InlineList, InputHelper, InputLabel, LUMX_CLASSNAME, Lightbox, Link, LinkPreview, List, ListDivider, ListItem, ListSubheader, Message, Mosaic, Navigation, Notification, Placement, Popover, PopoverDialog, PostBlock, Progress, ProgressCircular, ProgressLinear, ProgressTracker, ProgressTrackerProvider, ProgressTrackerStep, ProgressTrackerStepPanel, ProgressVariant, RadioButton, RadioGroup, RawInputText, RawInputTextarea, Select, SelectMultiple, SelectMultipleField, SelectVariant, SelectionChipGroup, SideNavigation, SideNavigationItem, SkeletonCircle, SkeletonRectangle, SkeletonRectangleVariant, SkeletonTypography, Slider, Slides, Slideshow, SlideshowControls, SlideshowItem, Switch, Tab, TabList, TabListLayout, TabPanel, TabProvider, Table, TableBody, TableCell, TableCellVariant, TableHeader, TableRow, Text, TextField, ThOrder, ThemeProvider, Thumbnail, ThumbnailAspectRatio, ThumbnailObjectFit, ThumbnailVariant, Toolbar, Tooltip, Uploader, UploaderVariant, UserBlock, clamp, isClickable, useFocusPointStyle, useHeadingLevel, useTheme };
|
|
15308
15978
|
//# sourceMappingURL=index.js.map
|