@xqmsg/ui-core 0.16.1 → 0.16.3

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.
@@ -2,6 +2,8 @@ import React from 'react';
2
2
  import { InputFieldProps } from '../InputTypes';
3
3
  export interface StackedInputProps extends InputFieldProps {
4
4
  isRequired?: boolean;
5
+ leftElement?: React.ReactNode;
6
+ rightElement?: React.ReactNode;
5
7
  }
6
8
  /**
7
9
  * A functional React component utilized to render the `StackedInput` component.
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
2
  export interface LabelProps {
3
3
  label: string;
4
+ tooltipText?: string;
4
5
  isRequired?: boolean;
5
6
  }
6
7
  /**
@@ -15,12 +15,15 @@ export interface InputProps<T extends FieldValues> extends ValidationProps {
15
15
  control: Control<T, any>;
16
16
  onChange?: (value?: string) => void;
17
17
  disabled?: boolean;
18
+ tooltipText?: string;
18
19
  setValue: UseFormSetValue<T>;
19
20
  setError: UseFormSetError<T>;
20
21
  clearErrors: UseFormClearErrors<T>;
22
+ leftElement?: React.ReactNode;
23
+ rightElement?: React.ReactNode;
21
24
  }
22
25
  /**
23
26
  * A functional React component utilized to render the `Input` component. Utilizes a switch statement
24
27
  * to render the correct input based on the `inputType`.
25
28
  */
26
- export declare function Input<T extends FieldValues>({ inputType, label, ariaLabel, className, placeholder, name, helperText, options, isInvalid, errorText, isRequired, maxLength, defaultValue, control, disabled, onChange, setValue, setError, clearErrors, }: InputProps<T>): JSX.Element;
29
+ export declare function Input<T extends FieldValues>({ inputType, label, ariaLabel, className, placeholder, name, helperText, options, tooltipText, isInvalid, errorText, isRequired, maxLength, defaultValue, control, disabled, rightElement, leftElement, onChange, setValue, setError, clearErrors, }: InputProps<T>): JSX.Element;
@@ -461,7 +461,7 @@ function _objectWithoutPropertiesLoose(source, excluded) {
461
461
  return target;
462
462
  }
463
463
 
464
- var _excluded = ["type", "isRequired"];
464
+ var _excluded = ["type", "isRequired", "rightElement", "leftElement"];
465
465
  /**
466
466
  * A functional React component utilized to render the `StackedInput` component.
467
467
  */
@@ -470,13 +470,16 @@ var StackedInput = /*#__PURE__*/React__default.forwardRef(function (_ref2, _ref)
470
470
  var _ref2$type = _ref2.type,
471
471
  type = _ref2$type === void 0 ? 'text' : _ref2$type,
472
472
  isRequired = _ref2.isRequired,
473
+ rightElement = _ref2.rightElement,
474
+ leftElement = _ref2.leftElement,
473
475
  props = _objectWithoutPropertiesLoose(_ref2, _excluded);
474
476
 
475
- return /*#__PURE__*/React__default.createElement(react.Input, Object.assign({
476
- ref: _ref,
477
+ return /*#__PURE__*/React__default.createElement(react.InputGroup, null, leftElement && leftElement, /*#__PURE__*/React__default.createElement(react.Input, Object.assign({
477
478
  type: type,
478
479
  isRequired: isRequired
479
- }, props));
480
+ }, props, {
481
+ ref: _ref
482
+ })), rightElement && rightElement);
480
483
  });
481
484
 
482
485
  /**
@@ -972,9 +975,15 @@ var StackedMultiSelect = /*#__PURE__*/React__default.forwardRef(function (_ref2,
972
975
  return options.find(function (option) {
973
976
  return option.value === value;
974
977
  });
975
- }));
978
+ })); // Filter out options that are already selected
979
+
980
+ setLocalOptions(function (prevLocalOptions) {
981
+ return prevLocalOptions.filter(function (localOption) {
982
+ return !localValues.includes(localOption);
983
+ });
984
+ });
976
985
  }
977
- }, [options, shouldSideScroll, watchedValue]);
986
+ }, [localValues, options, shouldSideScroll, watchedValue]);
978
987
 
979
988
  var handleChange = function handleChange(option) {
980
989
  setShouldSideScroll(true);
@@ -1411,10 +1420,10 @@ var StackedPilledInput = /*#__PURE__*/React__default.forwardRef(function (_ref2,
1411
1420
  onRemoveTag(index);
1412
1421
  }
1413
1422
  }));
1414
- }) : /*#__PURE__*/React__default.createElement(react.Text, {
1423
+ }) : null, !lastestFormValueToArray.length && !isFocussed ? /*#__PURE__*/React__default.createElement(react.Text, {
1415
1424
  color: colors.label.secondary.light,
1416
1425
  fontSize: "13px"
1417
- }, placeholder)), /*#__PURE__*/React__default.createElement(react.Flex, {
1426
+ }, placeholder) : null), /*#__PURE__*/React__default.createElement(react.Flex, {
1418
1427
  flex: 1,
1419
1428
  minWidth: isFocussed ? '20%' : 0
1420
1429
  }, /*#__PURE__*/React__default.createElement(react.Input, {
@@ -1474,12 +1483,22 @@ var StackedSwitch = /*#__PURE__*/React__default.forwardRef(function (_ref2, _ref
1474
1483
  */
1475
1484
 
1476
1485
  var Label$1 = function Label(_ref) {
1477
- var isRequired = _ref.isRequired,
1486
+ var tooltipText = _ref.tooltipText,
1487
+ isRequired = _ref.isRequired,
1478
1488
  label = _ref.label;
1479
- return /*#__PURE__*/React__default.createElement(react.FormLabel, null, label, isRequired && /*#__PURE__*/React__default.createElement(react.Box, {
1489
+ return /*#__PURE__*/React__default.createElement(react.FormLabel, {
1490
+ display: "flex",
1491
+ alignItems: "center"
1492
+ }, label, isRequired && /*#__PURE__*/React__default.createElement(react.Box, {
1480
1493
  ml: 1,
1481
1494
  color: colors.label.error
1482
- }, "*"));
1495
+ }, "*"), !!tooltipText && /*#__PURE__*/React__default.createElement(react.Tooltip, {
1496
+ label: tooltipText,
1497
+ placement: "top"
1498
+ }, /*#__PURE__*/React__default.createElement(icons.QuestionOutlineIcon, {
1499
+ boxSize: "13px",
1500
+ ml: "8px"
1501
+ })));
1483
1502
  };
1484
1503
 
1485
1504
  /**
@@ -1496,6 +1515,7 @@ function Input(_ref) {
1496
1515
  name = _ref.name,
1497
1516
  helperText = _ref.helperText,
1498
1517
  options = _ref.options,
1518
+ tooltipText = _ref.tooltipText,
1499
1519
  isInvalid = _ref.isInvalid,
1500
1520
  errorText = _ref.errorText,
1501
1521
  isRequired = _ref.isRequired,
@@ -1503,6 +1523,8 @@ function Input(_ref) {
1503
1523
  defaultValue = _ref.defaultValue,
1504
1524
  control = _ref.control,
1505
1525
  disabled = _ref.disabled,
1526
+ rightElement = _ref.rightElement,
1527
+ leftElement = _ref.leftElement,
1506
1528
  onChange = _ref.onChange,
1507
1529
  setValue = _ref.setValue,
1508
1530
  setError = _ref.setError,
@@ -1523,6 +1545,8 @@ function Input(_ref) {
1523
1545
  onChange: onChange,
1524
1546
  onBlur: onBlur,
1525
1547
  ref: ref,
1548
+ rightElement: rightElement,
1549
+ leftElement: leftElement,
1526
1550
  disabled: disabled,
1527
1551
  value: value
1528
1552
  });
@@ -1565,6 +1589,7 @@ function Input(_ref) {
1565
1589
  className: "input-" + inputType + " " + (className != null ? className : ''),
1566
1590
  name: name,
1567
1591
  id: name,
1592
+ placeholder: placeholder,
1568
1593
  maxLength: maxLength,
1569
1594
  isInvalid: isInvalid,
1570
1595
  onChange: onChange,
@@ -1620,6 +1645,7 @@ function Input(_ref) {
1620
1645
  ref: ref,
1621
1646
  disabled: disabled,
1622
1647
  value: value,
1648
+ placeholder: placeholder,
1623
1649
  setValue: setValue,
1624
1650
  setError: setError,
1625
1651
  clearErrors: clearErrors,
@@ -1666,6 +1692,7 @@ function Input(_ref) {
1666
1692
  position: "relative",
1667
1693
  py: label || helperText || isInvalid ? 6 : 0
1668
1694
  }, label && /*#__PURE__*/React__default.createElement(Label$1, {
1695
+ tooltipText: tooltipText,
1669
1696
  label: label,
1670
1697
  isRequired: isRequired
1671
1698
  }), selectedInputField(onChange ? onChange : fieldOnChange, onBlur, ref, value), isInvalid ? /*#__PURE__*/React__default.createElement(react.FormErrorMessage, null, errorText) : helperText && /*#__PURE__*/React__default.createElement(react.FormHelperText, null, helperText));
@@ -2549,214 +2576,9 @@ var Link = {
2549
2576
  variants: variants$5
2550
2577
  };
2551
2578
 
2552
- var parts$4 = ['overlay', 'dialogContainer', 'dialog', 'header', 'closeButton', 'body', 'footer'];
2553
- var baseStyleOverlay = {
2554
- bg: 'blackAlpha.600',
2555
- zIndex: 'modal'
2556
- };
2557
-
2558
- function baseStyleDialogContainer(props) {
2559
- var scrollBehavior = props.scrollBehavior;
2560
- return {
2561
- display: 'flex',
2562
- zIndex: 'modal',
2563
- justifyContent: 'center',
2564
- alignItems: 'flex-start',
2565
- overflow: scrollBehavior === 'inside' ? 'hidden' : 'auto',
2566
- WebkitOverflowScrolling: 'touch'
2567
- };
2568
- }
2569
-
2570
- function baseStyleDialog(props) {
2571
- var isCentered = props.isCentered,
2572
- scrollBehavior = props.scrollBehavior;
2573
- return {
2574
- borderRadius: 'lg',
2575
- bg: themeTools.mode('white', 'gray.700')(props),
2576
- color: 'inherit',
2577
- mt: isCentered ? {
2578
- base: 8,
2579
- md: 'auto'
2580
- } : '3.75rem',
2581
- mb: isCentered ? {
2582
- base: 20,
2583
- md: 'auto'
2584
- } : '3.75rem',
2585
- mx: 4,
2586
- zIndex: 'modal',
2587
- maxH: scrollBehavior === 'inside' ? 'calc(100vh - 7.5rem)' : undefined,
2588
- boxShadow: themeTools.mode('xl', 'dark-lg')(props)
2589
- };
2590
- }
2591
-
2592
- var baseStyleHeader = {
2593
- px: 6,
2594
- py: 4,
2595
- minHeight: 20,
2596
- fontSize: 'xl',
2597
- display: 'flex',
2598
- alignItems: 'center',
2599
- fontWeight: 'bold',
2600
- bg: 'primary.900',
2601
- color: 'white',
2602
- userSelect: 'none'
2603
- };
2604
- var baseStyleCloseButton = {
2605
- position: 'absolute',
2606
- top: 2,
2607
- right: 3
2608
- };
2609
-
2610
- function baseStyleBody(props) {
2611
- var scrollBehavior = props.scrollBehavior;
2612
- return {
2613
- px: [6, null, 20],
2614
- py: 10,
2615
- flex: 1,
2616
- overflow: scrollBehavior === 'inside' ? 'auto' : undefined
2617
- };
2618
- }
2619
-
2620
- var baseStyleFooter = {
2621
- px: [6, null, 20],
2622
- pt: 5,
2623
- pb: 16
2624
- };
2625
-
2626
- var baseStyle$9 = function baseStyle(props) {
2627
- return {
2628
- overlay: baseStyleOverlay,
2629
- dialogContainer: baseStyleDialogContainer(props),
2630
- dialog: baseStyleDialog(props),
2631
- header: baseStyleHeader,
2632
- closeButton: baseStyleCloseButton,
2633
- body: baseStyleBody(props),
2634
- footer: baseStyleFooter
2635
- };
2636
- };
2637
- /**
2638
- * Since the `maxWidth` prop references theme.sizes internally,
2639
- * we can leverage that to size our modals.
2640
- */
2641
-
2642
-
2643
- function getSize(value) {
2644
- var commonBodyFooterStyles = {
2645
- xs: {
2646
- px: 8,
2647
- pb: 8
2648
- },
2649
- sm: {
2650
- px: 8,
2651
- pb: 8
2652
- },
2653
- md: {
2654
- px: 8,
2655
- pb: 8
2656
- },
2657
- lg: {
2658
- px: 10,
2659
- pb: 10
2660
- },
2661
- xl: {
2662
- px: 12,
2663
- pb: 10
2664
- }
2665
- };
2666
- var bodyStyles = {
2667
- xs: {
2668
- py: 6
2669
- },
2670
- sm: {
2671
- py: 6
2672
- },
2673
- md: {
2674
- py: 6
2675
- },
2676
- lg: {
2677
- py: 8
2678
- },
2679
- xl: {
2680
- py: 8
2681
- }
2682
- };
2683
- var footerStyles = {
2684
- xs: {
2685
- pb: 8
2686
- },
2687
- sm: {
2688
- pb: 8
2689
- },
2690
- md: {
2691
- pb: 8
2692
- },
2693
- lg: {
2694
- pb: 10
2695
- },
2696
- xl: {
2697
- pb: 10
2698
- }
2699
- };
2700
-
2701
- if (value === 'full') {
2702
- return {
2703
- content: {
2704
- maxW: '100vw',
2705
- h: '100vh'
2706
- }
2707
- };
2708
- }
2709
-
2710
- return {
2711
- content: {
2712
- maxW: value
2713
- },
2714
- body: _extends({}, commonBodyFooterStyles[value], bodyStyles[value]),
2715
- footer: _extends({}, commonBodyFooterStyles[value], footerStyles[value])
2716
- };
2717
- }
2718
-
2719
- var sizes = {
2720
- xs: /*#__PURE__*/getSize('xs'),
2721
- sm: /*#__PURE__*/getSize('sm'),
2722
- md: /*#__PURE__*/getSize('md'),
2723
- lg: /*#__PURE__*/getSize('lg'),
2724
- xl: /*#__PURE__*/getSize('xl'),
2725
- '2xl': /*#__PURE__*/getSize('2xl'),
2726
- '3xl': /*#__PURE__*/getSize('3xl'),
2727
- '4xl': /*#__PURE__*/getSize('4xl'),
2728
- '5xl': /*#__PURE__*/getSize('5xl'),
2729
- '6xl': /*#__PURE__*/getSize('6xl'),
2730
- full: /*#__PURE__*/getSize('full')
2731
- };
2732
-
2733
- var warningVariant = function warningVariant() {
2734
- return {
2735
- header: {
2736
- bg: 'warning.300',
2737
- color: 'black'
2738
- }
2739
- };
2740
- };
2741
-
2742
- var variants$6 = {
2743
- warning: warningVariant
2744
- };
2745
- var defaultProps$5 = {
2746
- size: 'lg',
2747
- isCentered: true
2748
- };
2749
- var Modal = {
2750
- parts: parts$4,
2751
- baseStyle: baseStyle$9,
2752
- sizes: sizes,
2753
- variants: variants$6,
2754
- defaultProps: defaultProps$5
2755
- };
2756
-
2757
- var defaultProps$6 = Input$1.defaultProps,
2758
- variants$7 = Input$1.variants;
2759
- var parts$5 = ['field', 'icon'];
2579
+ var defaultProps$5 = Input$1.defaultProps,
2580
+ variants$6 = Input$1.variants;
2581
+ var parts$4 = ['field', 'icon'];
2760
2582
 
2761
2583
  function baseStyleField() {
2762
2584
  return _extends({}, Input$1.baseStyle.field, {
@@ -2777,7 +2599,7 @@ var baseStyleInput = {
2777
2599
  }
2778
2600
  };
2779
2601
 
2780
- var baseStyle$a = function baseStyle() {
2602
+ var baseStyle$9 = function baseStyle() {
2781
2603
  return {
2782
2604
  field: baseStyleField(),
2783
2605
  icon: baseStyleInput
@@ -2785,13 +2607,13 @@ var baseStyle$a = function baseStyle() {
2785
2607
  };
2786
2608
 
2787
2609
  var Select = {
2788
- parts: parts$5,
2789
- baseStyle: baseStyle$a,
2790
- variants: variants$7,
2791
- defaultProps: defaultProps$6
2610
+ parts: parts$4,
2611
+ baseStyle: baseStyle$9,
2612
+ variants: variants$6,
2613
+ defaultProps: defaultProps$5
2792
2614
  };
2793
2615
 
2794
- var parts$6 = ['track', 'thumb'];
2616
+ var parts$5 = ['track', 'thumb'];
2795
2617
 
2796
2618
  function baseStyleTrack(props) {
2797
2619
  var c = props.colorScheme,
@@ -2824,14 +2646,14 @@ var baseStyleThumb = {
2824
2646
  transform: 'translateX(0)'
2825
2647
  };
2826
2648
 
2827
- var baseStyle$b = function baseStyle(props) {
2649
+ var baseStyle$a = function baseStyle(props) {
2828
2650
  return {
2829
2651
  track: baseStyleTrack(props),
2830
2652
  thumb: baseStyleThumb
2831
2653
  };
2832
2654
  };
2833
2655
 
2834
- var sizes$1 = {
2656
+ var sizes = {
2835
2657
  sm: {
2836
2658
  track: {
2837
2659
  w: '1.375rem',
@@ -2872,19 +2694,19 @@ var sizes$1 = {
2872
2694
  }
2873
2695
  }
2874
2696
  };
2875
- var defaultProps$7 = {
2697
+ var defaultProps$6 = {
2876
2698
  size: 'md',
2877
2699
  colorScheme: 'blue'
2878
2700
  };
2879
2701
  var Switch = {
2880
- parts: parts$6,
2881
- baseStyle: baseStyle$b,
2882
- sizes: sizes$1,
2883
- defaultProps: defaultProps$7
2702
+ parts: parts$5,
2703
+ baseStyle: baseStyle$a,
2704
+ sizes: sizes,
2705
+ defaultProps: defaultProps$6
2884
2706
  };
2885
2707
 
2886
- var parts$7 = ['th', 'td', 'tr', 'body', 'thead'];
2887
- var baseStyle$c = {
2708
+ var parts$6 = ['th', 'td', 'tr', 'body', 'thead'];
2709
+ var baseStyle$b = {
2888
2710
  thead: {
2889
2711
  bg: colors.label.primary.dark
2890
2712
  },
@@ -2920,11 +2742,11 @@ var baseStyle$c = {
2920
2742
  }
2921
2743
  };
2922
2744
  var Table$1 = {
2923
- parts: parts$7,
2924
- baseStyle: baseStyle$c
2745
+ parts: parts$6,
2746
+ baseStyle: baseStyle$b
2925
2747
  };
2926
2748
 
2927
- var parts$8 = ['root', 'tablist', 'tab', 'tabpanel', 'indicator'];
2749
+ var parts$7 = ['root', 'tablist', 'tab', 'tabpanel', 'indicator'];
2928
2750
 
2929
2751
  function baseStyleRoot(props) {
2930
2752
  var orientation = props.orientation;
@@ -2964,7 +2786,7 @@ var baseStyleTabpanel = {
2964
2786
  p: 4
2965
2787
  };
2966
2788
 
2967
- var baseStyle$d = function baseStyle(props) {
2789
+ var baseStyle$c = function baseStyle(props) {
2968
2790
  return {
2969
2791
  root: baseStyleRoot(props),
2970
2792
  tab: baseStyleTab(props),
@@ -2973,7 +2795,7 @@ var baseStyle$d = function baseStyle(props) {
2973
2795
  };
2974
2796
  };
2975
2797
 
2976
- var sizes$2 = {
2798
+ var sizes$1 = {
2977
2799
  sm: {
2978
2800
  tab: {
2979
2801
  py: '0.25rem',
@@ -3143,7 +2965,7 @@ var variantSimple = {
3143
2965
  }
3144
2966
  }
3145
2967
  };
3146
- var variants$8 = {
2968
+ var variants$7 = {
3147
2969
  line: variantLine,
3148
2970
  enclosed: variantEnclosed,
3149
2971
  'enclosed-colored': variantEnclosedColored,
@@ -3152,20 +2974,20 @@ var variants$8 = {
3152
2974
  unstyled: variantUnstyled,
3153
2975
  simple: variantSimple
3154
2976
  };
3155
- var defaultProps$8 = {
2977
+ var defaultProps$7 = {
3156
2978
  size: 'md',
3157
2979
  variant: 'line',
3158
2980
  colorScheme: 'blue'
3159
2981
  };
3160
2982
  var Tabs = {
3161
- parts: parts$8,
3162
- baseStyle: baseStyle$d,
3163
- sizes: sizes$2,
3164
- variants: variants$8,
3165
- defaultProps: defaultProps$8
2983
+ parts: parts$7,
2984
+ baseStyle: baseStyle$c,
2985
+ sizes: sizes$1,
2986
+ variants: variants$7,
2987
+ defaultProps: defaultProps$7
3166
2988
  };
3167
2989
 
3168
- var baseStyle$e = /*#__PURE__*/_extends({}, Input$1.baseStyle.field, {
2990
+ var baseStyle$d = /*#__PURE__*/_extends({}, Input$1.baseStyle.field, {
3169
2991
  fontSize: '13px',
3170
2992
  display: 'block',
3171
2993
  paddingY: '8px',
@@ -3174,16 +2996,16 @@ var baseStyle$e = /*#__PURE__*/_extends({}, Input$1.baseStyle.field, {
3174
2996
  lineHeight: 'short'
3175
2997
  });
3176
2998
 
3177
- var defaultProps$9 = {
2999
+ var defaultProps$8 = {
3178
3000
  variant: 'default'
3179
3001
  };
3180
3002
  var Textarea = {
3181
- baseStyle: baseStyle$e,
3182
- defaultProps: defaultProps$9
3003
+ baseStyle: baseStyle$d,
3004
+ defaultProps: defaultProps$8
3183
3005
  };
3184
3006
 
3185
- var defaultProps$a = react.Text.defaultProps;
3186
- var baseStyle$f = {
3007
+ var defaultProps$9 = react.Text.defaultProps;
3008
+ var baseStyle$e = {
3187
3009
  fontWeight: typography.fontWeights.normal,
3188
3010
  fontFamily: typography.fonts.base,
3189
3011
  fontSize: typography.fontSizes.sm,
@@ -3192,7 +3014,7 @@ var baseStyle$f = {
3192
3014
  };
3193
3015
 
3194
3016
  function variantHeader() {
3195
- return _extends({}, baseStyle$f, {
3017
+ return _extends({}, baseStyle$e, {
3196
3018
  fontWeight: typography.fontWeights.bold,
3197
3019
  fontSize: typography.fontSizes['3xl'],
3198
3020
  lineHeight: typography.lineHeights[8],
@@ -3201,7 +3023,7 @@ function variantHeader() {
3201
3023
  }
3202
3024
 
3203
3025
  function variantSubheader() {
3204
- return _extends({}, baseStyle$f, {
3026
+ return _extends({}, baseStyle$e, {
3205
3027
  fontWeight: typography.fontWeights.semibold,
3206
3028
  fontSize: typography.fontSizes['lg'],
3207
3029
  lineHeight: typography.lineHeights[5],
@@ -3210,19 +3032,19 @@ function variantSubheader() {
3210
3032
  }
3211
3033
 
3212
3034
  function variantParagraph() {
3213
- return baseStyle$f;
3035
+ return baseStyle$e;
3214
3036
  }
3215
3037
 
3216
- var variants$9 = {
3038
+ var variants$8 = {
3217
3039
  header: variantHeader,
3218
3040
  subheader: variantSubheader,
3219
3041
  paragraph: variantParagraph
3220
3042
  };
3221
3043
  var Text$1 = {
3222
- baseStyle: baseStyle$f,
3223
- variants: variants$9,
3224
- defaultProps: /*#__PURE__*/_extends({}, defaultProps$a, {
3225
- variant: variants$9.paragraph
3044
+ baseStyle: baseStyle$e,
3045
+ variants: variants$8,
3046
+ defaultProps: /*#__PURE__*/_extends({}, defaultProps$9, {
3047
+ variant: variants$8.paragraph
3226
3048
  })
3227
3049
  };
3228
3050
 
@@ -3262,7 +3084,6 @@ var customXQChakraTheme = /*#__PURE__*/react.extendTheme( /*#__PURE__*/_extends(
3262
3084
  FormLabel: FormLabel,
3263
3085
  Input: Input$1,
3264
3086
  Link: Link,
3265
- Modal: Modal,
3266
3087
  Select: Select,
3267
3088
  Switch: Switch,
3268
3089
  Table: Table$1,