@7shifts/sous-chef 3.36.3 → 3.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/icons/components/IconHatChef.d.ts +9 -0
- package/dist/icons/components/IconPlateUtensils.d.ts +9 -0
- package/dist/icons/components/index.d.ts +2 -0
- package/dist/index.js +239 -181
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +238 -182
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3556,13 +3556,41 @@ var IconHandshake = React.forwardRef(function (_ref, ref) {
|
|
|
3556
3556
|
IconHandshake.displayName = 'IconHandshake';
|
|
3557
3557
|
|
|
3558
3558
|
var _excluded$1l = ["testId", "size", "color", "style"];
|
|
3559
|
+
var IconHatChef = React.forwardRef(function (_ref, ref) {
|
|
3560
|
+
var _ref$testId = _ref.testId,
|
|
3561
|
+
testId = _ref$testId === void 0 ? 'icon-hat-chef' : _ref$testId,
|
|
3562
|
+
size = _ref.size,
|
|
3563
|
+
color = _ref.color,
|
|
3564
|
+
style = _ref.style,
|
|
3565
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1l);
|
|
3566
|
+
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3567
|
+
var styleProps = {
|
|
3568
|
+
size: !size && isInsideButton ? 'medium' : size,
|
|
3569
|
+
color: color,
|
|
3570
|
+
style: style
|
|
3571
|
+
};
|
|
3572
|
+
return React__default.createElement("svg", _extends({
|
|
3573
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3574
|
+
fill: "none",
|
|
3575
|
+
viewBox: "0 0 20 20",
|
|
3576
|
+
style: getIconStyles(styleProps),
|
|
3577
|
+
"data-testid": testId,
|
|
3578
|
+
ref: ref
|
|
3579
|
+
}, props), React__default.createElement("path", {
|
|
3580
|
+
fill: "currentColor",
|
|
3581
|
+
d: "M6.676 3.258a3.753 3.753 0 0 1 6.644 0 .621.621 0 0 0 1.027.117 2.502 2.502 0 0 1 4.364 2.078l-.004.02c-.137.89-.555 2.28-1.02 3.652a79.933 79.933 0 0 1-1.21 3.309.114.114 0 0 1-.11.07h-1.765l1.011-5.512a.625.625 0 0 0-.5-.726.627.627 0 0 0-.726.5l-1.032 5.625a.559.559 0 0 0-.011.113h-2.719V5.625A.627.627 0 0 0 10 5a.627.627 0 0 0-.625.625V12.5H6.656a.558.558 0 0 0-.011-.113L5.613 6.762a.622.622 0 0 0-.726-.5.622.622 0 0 0-.5.726L5.398 12.5H3.633a.114.114 0 0 1-.11-.07 86.182 86.182 0 0 1-1.21-3.309C1.848 7.75 1.43 6.36 1.293 5.47l-.004-.02a2.502 2.502 0 0 1 2.46-2.953c.763 0 1.442.34 1.9.875a.63.63 0 0 0 .542.215.636.636 0 0 0 .485-.332v.004ZM10 0C8.363 0 6.91.785 6 2A3.751 3.751 0 0 0 .059 5.668C.215 6.68.668 8.16 1.129 9.523a86.727 86.727 0 0 0 1.226 3.36c.208.531.72.867 1.278.867h12.734c.559 0 1.07-.336 1.274-.867.261-.672.757-1.98 1.226-3.36.461-1.363.914-2.843 1.07-3.855A3.751 3.751 0 0 0 13.997 2 4.973 4.973 0 0 0 10 0ZM2.5 15v2.5C2.5 18.879 3.621 20 5 20h10c1.379 0 2.5-1.121 2.5-2.5V15h-1.25v2.5c0 .691-.559 1.25-1.25 1.25H5c-.691 0-1.25-.559-1.25-1.25V15H2.5Z"
|
|
3582
|
+
}));
|
|
3583
|
+
});
|
|
3584
|
+
IconHatChef.displayName = 'IconHatChef';
|
|
3585
|
+
|
|
3586
|
+
var _excluded$1m = ["testId", "size", "color", "style"];
|
|
3559
3587
|
var IconImage = React.forwardRef(function (_ref, ref) {
|
|
3560
3588
|
var _ref$testId = _ref.testId,
|
|
3561
3589
|
testId = _ref$testId === void 0 ? 'icon-image' : _ref$testId,
|
|
3562
3590
|
size = _ref.size,
|
|
3563
3591
|
color = _ref.color,
|
|
3564
3592
|
style = _ref.style,
|
|
3565
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3593
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1m);
|
|
3566
3594
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3567
3595
|
var styleProps = {
|
|
3568
3596
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3590,14 +3618,14 @@ var IconImage = React.forwardRef(function (_ref, ref) {
|
|
|
3590
3618
|
});
|
|
3591
3619
|
IconImage.displayName = 'IconImage';
|
|
3592
3620
|
|
|
3593
|
-
var _excluded$
|
|
3621
|
+
var _excluded$1n = ["testId", "size", "color", "style"];
|
|
3594
3622
|
var IconIslandTropical = React.forwardRef(function (_ref, ref) {
|
|
3595
3623
|
var _ref$testId = _ref.testId,
|
|
3596
3624
|
testId = _ref$testId === void 0 ? 'icon-island-tropical' : _ref$testId,
|
|
3597
3625
|
size = _ref.size,
|
|
3598
3626
|
color = _ref.color,
|
|
3599
3627
|
style = _ref.style,
|
|
3600
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3628
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1n);
|
|
3601
3629
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3602
3630
|
var styleProps = {
|
|
3603
3631
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3620,14 +3648,14 @@ var IconIslandTropical = React.forwardRef(function (_ref, ref) {
|
|
|
3620
3648
|
});
|
|
3621
3649
|
IconIslandTropical.displayName = 'IconIslandTropical';
|
|
3622
3650
|
|
|
3623
|
-
var _excluded$
|
|
3651
|
+
var _excluded$1o = ["testId", "size", "color", "style"];
|
|
3624
3652
|
var IconItalic = React.forwardRef(function (_ref, ref) {
|
|
3625
3653
|
var _ref$testId = _ref.testId,
|
|
3626
3654
|
testId = _ref$testId === void 0 ? 'icon-italic' : _ref$testId,
|
|
3627
3655
|
size = _ref.size,
|
|
3628
3656
|
color = _ref.color,
|
|
3629
3657
|
style = _ref.style,
|
|
3630
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3658
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1o);
|
|
3631
3659
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3632
3660
|
var styleProps = {
|
|
3633
3661
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3648,14 +3676,14 @@ var IconItalic = React.forwardRef(function (_ref, ref) {
|
|
|
3648
3676
|
});
|
|
3649
3677
|
IconItalic.displayName = 'IconItalic';
|
|
3650
3678
|
|
|
3651
|
-
var _excluded$
|
|
3679
|
+
var _excluded$1p = ["testId", "size", "color", "style"];
|
|
3652
3680
|
var IconLaptopSearch = React.forwardRef(function (_ref, ref) {
|
|
3653
3681
|
var _ref$testId = _ref.testId,
|
|
3654
3682
|
testId = _ref$testId === void 0 ? 'icon-laptop-search' : _ref$testId,
|
|
3655
3683
|
size = _ref.size,
|
|
3656
3684
|
color = _ref.color,
|
|
3657
3685
|
style = _ref.style,
|
|
3658
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3686
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1p);
|
|
3659
3687
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3660
3688
|
var styleProps = {
|
|
3661
3689
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3685,14 +3713,14 @@ var IconLaptopSearch = React.forwardRef(function (_ref, ref) {
|
|
|
3685
3713
|
});
|
|
3686
3714
|
IconLaptopSearch.displayName = 'IconLaptopSearch';
|
|
3687
3715
|
|
|
3688
|
-
var _excluded$
|
|
3716
|
+
var _excluded$1q = ["testId", "size", "color", "style"];
|
|
3689
3717
|
var IconLink = React.forwardRef(function (_ref, ref) {
|
|
3690
3718
|
var _ref$testId = _ref.testId,
|
|
3691
3719
|
testId = _ref$testId === void 0 ? 'icon-link' : _ref$testId,
|
|
3692
3720
|
size = _ref.size,
|
|
3693
3721
|
color = _ref.color,
|
|
3694
3722
|
style = _ref.style,
|
|
3695
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3723
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1q);
|
|
3696
3724
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3697
3725
|
var styleProps = {
|
|
3698
3726
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3720,14 +3748,14 @@ var IconLink = React.forwardRef(function (_ref, ref) {
|
|
|
3720
3748
|
});
|
|
3721
3749
|
IconLink.displayName = 'IconLink';
|
|
3722
3750
|
|
|
3723
|
-
var _excluded$
|
|
3751
|
+
var _excluded$1r = ["testId", "size", "color", "style"];
|
|
3724
3752
|
var IconListOI = React.forwardRef(function (_ref, ref) {
|
|
3725
3753
|
var _ref$testId = _ref.testId,
|
|
3726
3754
|
testId = _ref$testId === void 0 ? 'icon-list-o-i' : _ref$testId,
|
|
3727
3755
|
size = _ref.size,
|
|
3728
3756
|
color = _ref.color,
|
|
3729
3757
|
style = _ref.style,
|
|
3730
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3758
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1r);
|
|
3731
3759
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3732
3760
|
var styleProps = {
|
|
3733
3761
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3755,14 +3783,14 @@ var IconListOI = React.forwardRef(function (_ref, ref) {
|
|
|
3755
3783
|
});
|
|
3756
3784
|
IconListOI.displayName = 'IconListOI';
|
|
3757
3785
|
|
|
3758
|
-
var _excluded$
|
|
3786
|
+
var _excluded$1s = ["testId", "size", "color", "style"];
|
|
3759
3787
|
var IconList = React.forwardRef(function (_ref, ref) {
|
|
3760
3788
|
var _ref$testId = _ref.testId,
|
|
3761
3789
|
testId = _ref$testId === void 0 ? 'icon-list' : _ref$testId,
|
|
3762
3790
|
size = _ref.size,
|
|
3763
3791
|
color = _ref.color,
|
|
3764
3792
|
style = _ref.style,
|
|
3765
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3793
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1s);
|
|
3766
3794
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3767
3795
|
var styleProps = {
|
|
3768
3796
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3783,14 +3811,14 @@ var IconList = React.forwardRef(function (_ref, ref) {
|
|
|
3783
3811
|
});
|
|
3784
3812
|
IconList.displayName = 'IconList';
|
|
3785
3813
|
|
|
3786
|
-
var _excluded$
|
|
3814
|
+
var _excluded$1t = ["testId", "size", "color", "style"];
|
|
3787
3815
|
var IconLock = React.forwardRef(function (_ref, ref) {
|
|
3788
3816
|
var _ref$testId = _ref.testId,
|
|
3789
3817
|
testId = _ref$testId === void 0 ? 'icon-lock' : _ref$testId,
|
|
3790
3818
|
size = _ref.size,
|
|
3791
3819
|
color = _ref.color,
|
|
3792
3820
|
style = _ref.style,
|
|
3793
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3821
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1t);
|
|
3794
3822
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3795
3823
|
var styleProps = {
|
|
3796
3824
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3811,14 +3839,14 @@ var IconLock = React.forwardRef(function (_ref, ref) {
|
|
|
3811
3839
|
});
|
|
3812
3840
|
IconLock.displayName = 'IconLock';
|
|
3813
3841
|
|
|
3814
|
-
var _excluded$
|
|
3842
|
+
var _excluded$1u = ["testId", "size", "color", "style"];
|
|
3815
3843
|
var IconMagicSolid = React.forwardRef(function (_ref, ref) {
|
|
3816
3844
|
var _ref$testId = _ref.testId,
|
|
3817
3845
|
testId = _ref$testId === void 0 ? 'icon-magic-solid' : _ref$testId,
|
|
3818
3846
|
size = _ref.size,
|
|
3819
3847
|
color = _ref.color,
|
|
3820
3848
|
style = _ref.style,
|
|
3821
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3849
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1u);
|
|
3822
3850
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3823
3851
|
var styleProps = {
|
|
3824
3852
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3841,14 +3869,14 @@ var IconMagicSolid = React.forwardRef(function (_ref, ref) {
|
|
|
3841
3869
|
});
|
|
3842
3870
|
IconMagicSolid.displayName = 'IconMagicSolid';
|
|
3843
3871
|
|
|
3844
|
-
var _excluded$
|
|
3872
|
+
var _excluded$1v = ["testId", "size", "color", "style"];
|
|
3845
3873
|
var IconMapMarker = React.forwardRef(function (_ref, ref) {
|
|
3846
3874
|
var _ref$testId = _ref.testId,
|
|
3847
3875
|
testId = _ref$testId === void 0 ? 'icon-map-marker' : _ref$testId,
|
|
3848
3876
|
size = _ref.size,
|
|
3849
3877
|
color = _ref.color,
|
|
3850
3878
|
style = _ref.style,
|
|
3851
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3879
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1v);
|
|
3852
3880
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3853
3881
|
var styleProps = {
|
|
3854
3882
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3871,14 +3899,14 @@ var IconMapMarker = React.forwardRef(function (_ref, ref) {
|
|
|
3871
3899
|
});
|
|
3872
3900
|
IconMapMarker.displayName = 'IconMapMarker';
|
|
3873
3901
|
|
|
3874
|
-
var _excluded$
|
|
3902
|
+
var _excluded$1w = ["testId", "size", "color", "style"];
|
|
3875
3903
|
var IconMegaphone = React.forwardRef(function (_ref, ref) {
|
|
3876
3904
|
var _ref$testId = _ref.testId,
|
|
3877
3905
|
testId = _ref$testId === void 0 ? 'icon-megaphone' : _ref$testId,
|
|
3878
3906
|
size = _ref.size,
|
|
3879
3907
|
color = _ref.color,
|
|
3880
3908
|
style = _ref.style,
|
|
3881
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3909
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1w);
|
|
3882
3910
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3883
3911
|
var styleProps = {
|
|
3884
3912
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3901,14 +3929,14 @@ var IconMegaphone = React.forwardRef(function (_ref, ref) {
|
|
|
3901
3929
|
});
|
|
3902
3930
|
IconMegaphone.displayName = 'IconMegaphone';
|
|
3903
3931
|
|
|
3904
|
-
var _excluded$
|
|
3932
|
+
var _excluded$1x = ["testId", "size", "color", "style"];
|
|
3905
3933
|
var IconMessages = React.forwardRef(function (_ref, ref) {
|
|
3906
3934
|
var _ref$testId = _ref.testId,
|
|
3907
3935
|
testId = _ref$testId === void 0 ? 'icon-messages' : _ref$testId,
|
|
3908
3936
|
size = _ref.size,
|
|
3909
3937
|
color = _ref.color,
|
|
3910
3938
|
style = _ref.style,
|
|
3911
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3939
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1x);
|
|
3912
3940
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3913
3941
|
var styleProps = {
|
|
3914
3942
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3929,14 +3957,14 @@ var IconMessages = React.forwardRef(function (_ref, ref) {
|
|
|
3929
3957
|
});
|
|
3930
3958
|
IconMessages.displayName = 'IconMessages';
|
|
3931
3959
|
|
|
3932
|
-
var _excluded$
|
|
3960
|
+
var _excluded$1y = ["testId", "size", "color", "style"];
|
|
3933
3961
|
var IconMinusCircle = React.forwardRef(function (_ref, ref) {
|
|
3934
3962
|
var _ref$testId = _ref.testId,
|
|
3935
3963
|
testId = _ref$testId === void 0 ? 'icon-minus-circle' : _ref$testId,
|
|
3936
3964
|
size = _ref.size,
|
|
3937
3965
|
color = _ref.color,
|
|
3938
3966
|
style = _ref.style,
|
|
3939
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3967
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1y);
|
|
3940
3968
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3941
3969
|
var styleProps = {
|
|
3942
3970
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3957,14 +3985,14 @@ var IconMinusCircle = React.forwardRef(function (_ref, ref) {
|
|
|
3957
3985
|
});
|
|
3958
3986
|
IconMinusCircle.displayName = 'IconMinusCircle';
|
|
3959
3987
|
|
|
3960
|
-
var _excluded$
|
|
3988
|
+
var _excluded$1z = ["testId", "size", "color", "style"];
|
|
3961
3989
|
var IconMinus = React.forwardRef(function (_ref, ref) {
|
|
3962
3990
|
var _ref$testId = _ref.testId,
|
|
3963
3991
|
testId = _ref$testId === void 0 ? 'icon-minus' : _ref$testId,
|
|
3964
3992
|
size = _ref.size,
|
|
3965
3993
|
color = _ref.color,
|
|
3966
3994
|
style = _ref.style,
|
|
3967
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3995
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1z);
|
|
3968
3996
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3969
3997
|
var styleProps = {
|
|
3970
3998
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3985,14 +4013,14 @@ var IconMinus = React.forwardRef(function (_ref, ref) {
|
|
|
3985
4013
|
});
|
|
3986
4014
|
IconMinus.displayName = 'IconMinus';
|
|
3987
4015
|
|
|
3988
|
-
var _excluded$
|
|
4016
|
+
var _excluded$1A = ["testId", "size", "color", "style"];
|
|
3989
4017
|
var IconMoneyBill = React.forwardRef(function (_ref, ref) {
|
|
3990
4018
|
var _ref$testId = _ref.testId,
|
|
3991
4019
|
testId = _ref$testId === void 0 ? 'icon-money-bill' : _ref$testId,
|
|
3992
4020
|
size = _ref.size,
|
|
3993
4021
|
color = _ref.color,
|
|
3994
4022
|
style = _ref.style,
|
|
3995
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4023
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1A);
|
|
3996
4024
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3997
4025
|
var styleProps = {
|
|
3998
4026
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4013,14 +4041,14 @@ var IconMoneyBill = React.forwardRef(function (_ref, ref) {
|
|
|
4013
4041
|
});
|
|
4014
4042
|
IconMoneyBill.displayName = 'IconMoneyBill';
|
|
4015
4043
|
|
|
4016
|
-
var _excluded$
|
|
4044
|
+
var _excluded$1B = ["testId", "size", "color", "style"];
|
|
4017
4045
|
var IconMugSaucerSolid = React.forwardRef(function (_ref, ref) {
|
|
4018
4046
|
var _ref$testId = _ref.testId,
|
|
4019
4047
|
testId = _ref$testId === void 0 ? 'icon-mug-saucer-solid' : _ref$testId,
|
|
4020
4048
|
size = _ref.size,
|
|
4021
4049
|
color = _ref.color,
|
|
4022
4050
|
style = _ref.style,
|
|
4023
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4051
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1B);
|
|
4024
4052
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4025
4053
|
var styleProps = {
|
|
4026
4054
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4041,14 +4069,14 @@ var IconMugSaucerSolid = React.forwardRef(function (_ref, ref) {
|
|
|
4041
4069
|
});
|
|
4042
4070
|
IconMugSaucerSolid.displayName = 'IconMugSaucerSolid';
|
|
4043
4071
|
|
|
4044
|
-
var _excluded$
|
|
4072
|
+
var _excluded$1C = ["testId", "size", "color", "style"];
|
|
4045
4073
|
var IconNotesMedical = React.forwardRef(function (_ref, ref) {
|
|
4046
4074
|
var _ref$testId = _ref.testId,
|
|
4047
4075
|
testId = _ref$testId === void 0 ? 'icon-notes-medical' : _ref$testId,
|
|
4048
4076
|
size = _ref.size,
|
|
4049
4077
|
color = _ref.color,
|
|
4050
4078
|
style = _ref.style,
|
|
4051
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4079
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1C);
|
|
4052
4080
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4053
4081
|
var styleProps = {
|
|
4054
4082
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4069,14 +4097,14 @@ var IconNotesMedical = React.forwardRef(function (_ref, ref) {
|
|
|
4069
4097
|
});
|
|
4070
4098
|
IconNotesMedical.displayName = 'IconNotesMedical';
|
|
4071
4099
|
|
|
4072
|
-
var _excluded$
|
|
4100
|
+
var _excluded$1D = ["testId", "size", "color", "style"];
|
|
4073
4101
|
var IconOvertime = React.forwardRef(function (_ref, ref) {
|
|
4074
4102
|
var _ref$testId = _ref.testId,
|
|
4075
4103
|
testId = _ref$testId === void 0 ? 'icon-overtime' : _ref$testId,
|
|
4076
4104
|
size = _ref.size,
|
|
4077
4105
|
color = _ref.color,
|
|
4078
4106
|
style = _ref.style,
|
|
4079
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4107
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1D);
|
|
4080
4108
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4081
4109
|
var styleProps = {
|
|
4082
4110
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4104,14 +4132,14 @@ var IconOvertime = React.forwardRef(function (_ref, ref) {
|
|
|
4104
4132
|
});
|
|
4105
4133
|
IconOvertime.displayName = 'IconOvertime';
|
|
4106
4134
|
|
|
4107
|
-
var _excluded$
|
|
4135
|
+
var _excluded$1E = ["testId", "size", "color", "style"];
|
|
4108
4136
|
var IconPaperPlaneClock = React.forwardRef(function (_ref, ref) {
|
|
4109
4137
|
var _ref$testId = _ref.testId,
|
|
4110
4138
|
testId = _ref$testId === void 0 ? 'icon-paper-plane-clock' : _ref$testId,
|
|
4111
4139
|
size = _ref.size,
|
|
4112
4140
|
color = _ref.color,
|
|
4113
4141
|
style = _ref.style,
|
|
4114
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4142
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1E);
|
|
4115
4143
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4116
4144
|
var styleProps = {
|
|
4117
4145
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4143,14 +4171,14 @@ var IconPaperPlaneClock = React.forwardRef(function (_ref, ref) {
|
|
|
4143
4171
|
});
|
|
4144
4172
|
IconPaperPlaneClock.displayName = 'IconPaperPlaneClock';
|
|
4145
4173
|
|
|
4146
|
-
var _excluded$
|
|
4174
|
+
var _excluded$1F = ["testId", "size", "color", "style"];
|
|
4147
4175
|
var IconPaperPlane = React.forwardRef(function (_ref, ref) {
|
|
4148
4176
|
var _ref$testId = _ref.testId,
|
|
4149
4177
|
testId = _ref$testId === void 0 ? 'icon-paper-plane' : _ref$testId,
|
|
4150
4178
|
size = _ref.size,
|
|
4151
4179
|
color = _ref.color,
|
|
4152
4180
|
style = _ref.style,
|
|
4153
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4181
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1F);
|
|
4154
4182
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4155
4183
|
var styleProps = {
|
|
4156
4184
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4173,14 +4201,14 @@ var IconPaperPlane = React.forwardRef(function (_ref, ref) {
|
|
|
4173
4201
|
});
|
|
4174
4202
|
IconPaperPlane.displayName = 'IconPaperPlane';
|
|
4175
4203
|
|
|
4176
|
-
var _excluded$
|
|
4204
|
+
var _excluded$1G = ["testId", "size", "color", "style"];
|
|
4177
4205
|
var IconPaperclip = React.forwardRef(function (_ref, ref) {
|
|
4178
4206
|
var _ref$testId = _ref.testId,
|
|
4179
4207
|
testId = _ref$testId === void 0 ? 'icon-paperclip' : _ref$testId,
|
|
4180
4208
|
size = _ref.size,
|
|
4181
4209
|
color = _ref.color,
|
|
4182
4210
|
style = _ref.style,
|
|
4183
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4211
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1G);
|
|
4184
4212
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4185
4213
|
var styleProps = {
|
|
4186
4214
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4208,14 +4236,14 @@ var IconPaperclip = React.forwardRef(function (_ref, ref) {
|
|
|
4208
4236
|
});
|
|
4209
4237
|
IconPaperclip.displayName = 'IconPaperclip';
|
|
4210
4238
|
|
|
4211
|
-
var _excluded$
|
|
4239
|
+
var _excluded$1H = ["testId", "size", "color", "style"];
|
|
4212
4240
|
var IconPencil = React.forwardRef(function (_ref, ref) {
|
|
4213
4241
|
var _ref$testId = _ref.testId,
|
|
4214
4242
|
testId = _ref$testId === void 0 ? 'icon-pencil' : _ref$testId,
|
|
4215
4243
|
size = _ref.size,
|
|
4216
4244
|
color = _ref.color,
|
|
4217
4245
|
style = _ref.style,
|
|
4218
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4246
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1H);
|
|
4219
4247
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4220
4248
|
var styleProps = {
|
|
4221
4249
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4238,14 +4266,14 @@ var IconPencil = React.forwardRef(function (_ref, ref) {
|
|
|
4238
4266
|
});
|
|
4239
4267
|
IconPencil.displayName = 'IconPencil';
|
|
4240
4268
|
|
|
4241
|
-
var _excluded$
|
|
4269
|
+
var _excluded$1I = ["testId", "size", "color", "style"];
|
|
4242
4270
|
var IconPercentage = React.forwardRef(function (_ref, ref) {
|
|
4243
4271
|
var _ref$testId = _ref.testId,
|
|
4244
4272
|
testId = _ref$testId === void 0 ? 'icon-percentage' : _ref$testId,
|
|
4245
4273
|
size = _ref.size,
|
|
4246
4274
|
color = _ref.color,
|
|
4247
4275
|
style = _ref.style,
|
|
4248
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4276
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1I);
|
|
4249
4277
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4250
4278
|
var styleProps = {
|
|
4251
4279
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4266,14 +4294,14 @@ var IconPercentage = React.forwardRef(function (_ref, ref) {
|
|
|
4266
4294
|
});
|
|
4267
4295
|
IconPercentage.displayName = 'IconPercentage';
|
|
4268
4296
|
|
|
4269
|
-
var _excluded$
|
|
4297
|
+
var _excluded$1J = ["testId", "size", "color", "style"];
|
|
4270
4298
|
var IconPhone = React.forwardRef(function (_ref, ref) {
|
|
4271
4299
|
var _ref$testId = _ref.testId,
|
|
4272
4300
|
testId = _ref$testId === void 0 ? 'icon-phone' : _ref$testId,
|
|
4273
4301
|
size = _ref.size,
|
|
4274
4302
|
color = _ref.color,
|
|
4275
4303
|
style = _ref.style,
|
|
4276
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4304
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1J);
|
|
4277
4305
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4278
4306
|
var styleProps = {
|
|
4279
4307
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4294,14 +4322,42 @@ var IconPhone = React.forwardRef(function (_ref, ref) {
|
|
|
4294
4322
|
});
|
|
4295
4323
|
IconPhone.displayName = 'IconPhone';
|
|
4296
4324
|
|
|
4297
|
-
var _excluded$
|
|
4325
|
+
var _excluded$1K = ["testId", "size", "color", "style"];
|
|
4326
|
+
var IconPlateUtensils = React.forwardRef(function (_ref, ref) {
|
|
4327
|
+
var _ref$testId = _ref.testId,
|
|
4328
|
+
testId = _ref$testId === void 0 ? 'icon-plate-utensils' : _ref$testId,
|
|
4329
|
+
size = _ref.size,
|
|
4330
|
+
color = _ref.color,
|
|
4331
|
+
style = _ref.style,
|
|
4332
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1K);
|
|
4333
|
+
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4334
|
+
var styleProps = {
|
|
4335
|
+
size: !size && isInsideButton ? 'medium' : size,
|
|
4336
|
+
color: color,
|
|
4337
|
+
style: style
|
|
4338
|
+
};
|
|
4339
|
+
return React__default.createElement("svg", _extends({
|
|
4340
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4341
|
+
fill: "none",
|
|
4342
|
+
viewBox: "0 0 20 20",
|
|
4343
|
+
style: getIconStyles(styleProps),
|
|
4344
|
+
"data-testid": testId,
|
|
4345
|
+
ref: ref
|
|
4346
|
+
}, props), React__default.createElement("path", {
|
|
4347
|
+
fill: "currentColor",
|
|
4348
|
+
d: "M.5 3c-.275 0-.5.225-.5.5V8a1.5 1.5 0 0 0 1.5 1.5H2v8c0 .275.225.5.5.5s.5-.225.5-.5v-8h.5A1.5 1.5 0 0 0 5 8V3.5c0-.275-.225-.5-.5-.5s-.5.225-.5.5V8c0 .275-.225.5-.5.5H3v-5c0-.275-.225-.5-.5-.5s-.5.225-.5.5v5h-.5A.501.501 0 0 1 1 8V3.5C1 3.225.775 3 .5 3Zm15.063 1.966A7.472 7.472 0 0 0 10.5 3C8.813 3 7.253 3.56 6 4.5v1.31A6.474 6.474 0 0 1 10.5 4c1.84 0 3.5.766 4.684 1.994.097-.375.225-.716.379-1.028Zm.765 8.418a6.501 6.501 0 0 1-11.312.604 2.493 2.493 0 0 1-.907.437A7.494 7.494 0 0 0 10.5 18a7.498 7.498 0 0 0 6.875-4.5H17c-.238 0-.462-.04-.672-.116ZM15 10.5a4.5 4.5 0 1 0-9.002 0 4.5 4.5 0 0 0 9.002 0Zm-8 0a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0Zm12-6.3v7.3h-2v-4c0-1.916 1.231-2.881 2-3.3Zm1 7.3V3.653c0-.36-.29-.653-.653-.653a.568.568 0 0 0-.19.031C18.63 3.225 16 4.35 16 7.5v4c0 .553.447 1 1 1h2v5c0 .275.225.5.5.5s.5-.225.5-.5v-6Z"
|
|
4349
|
+
}));
|
|
4350
|
+
});
|
|
4351
|
+
IconPlateUtensils.displayName = 'IconPlateUtensils';
|
|
4352
|
+
|
|
4353
|
+
var _excluded$1L = ["testId", "size", "color", "style"];
|
|
4298
4354
|
var IconPlug = React.forwardRef(function (_ref, ref) {
|
|
4299
4355
|
var _ref$testId = _ref.testId,
|
|
4300
4356
|
testId = _ref$testId === void 0 ? 'icon-plug' : _ref$testId,
|
|
4301
4357
|
size = _ref.size,
|
|
4302
4358
|
color = _ref.color,
|
|
4303
4359
|
style = _ref.style,
|
|
4304
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4360
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1L);
|
|
4305
4361
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4306
4362
|
var styleProps = {
|
|
4307
4363
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4324,14 +4380,14 @@ var IconPlug = React.forwardRef(function (_ref, ref) {
|
|
|
4324
4380
|
});
|
|
4325
4381
|
IconPlug.displayName = 'IconPlug';
|
|
4326
4382
|
|
|
4327
|
-
var _excluded$
|
|
4383
|
+
var _excluded$1M = ["testId", "size", "color", "style"];
|
|
4328
4384
|
var IconPlus = React.forwardRef(function (_ref, ref) {
|
|
4329
4385
|
var _ref$testId = _ref.testId,
|
|
4330
4386
|
testId = _ref$testId === void 0 ? 'icon-plus' : _ref$testId,
|
|
4331
4387
|
size = _ref.size,
|
|
4332
4388
|
color = _ref.color,
|
|
4333
4389
|
style = _ref.style,
|
|
4334
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4390
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1M);
|
|
4335
4391
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4336
4392
|
var styleProps = {
|
|
4337
4393
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4354,14 +4410,14 @@ var IconPlus = React.forwardRef(function (_ref, ref) {
|
|
|
4354
4410
|
});
|
|
4355
4411
|
IconPlus.displayName = 'IconPlus';
|
|
4356
4412
|
|
|
4357
|
-
var _excluded$
|
|
4413
|
+
var _excluded$1N = ["testId", "size", "color", "style"];
|
|
4358
4414
|
var IconPrint = React.forwardRef(function (_ref, ref) {
|
|
4359
4415
|
var _ref$testId = _ref.testId,
|
|
4360
4416
|
testId = _ref$testId === void 0 ? 'icon-print' : _ref$testId,
|
|
4361
4417
|
size = _ref.size,
|
|
4362
4418
|
color = _ref.color,
|
|
4363
4419
|
style = _ref.style,
|
|
4364
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4420
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1N);
|
|
4365
4421
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4366
4422
|
var styleProps = {
|
|
4367
4423
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4384,14 +4440,14 @@ var IconPrint = React.forwardRef(function (_ref, ref) {
|
|
|
4384
4440
|
});
|
|
4385
4441
|
IconPrint.displayName = 'IconPrint';
|
|
4386
4442
|
|
|
4387
|
-
var _excluded$
|
|
4443
|
+
var _excluded$1O = ["testId", "size", "color", "style"];
|
|
4388
4444
|
var IconQuestionCircle = React.forwardRef(function (_ref, ref) {
|
|
4389
4445
|
var _ref$testId = _ref.testId,
|
|
4390
4446
|
testId = _ref$testId === void 0 ? 'icon-question-circle' : _ref$testId,
|
|
4391
4447
|
size = _ref.size,
|
|
4392
4448
|
color = _ref.color,
|
|
4393
4449
|
style = _ref.style,
|
|
4394
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4450
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1O);
|
|
4395
4451
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4396
4452
|
var styleProps = {
|
|
4397
4453
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4412,14 +4468,14 @@ var IconQuestionCircle = React.forwardRef(function (_ref, ref) {
|
|
|
4412
4468
|
});
|
|
4413
4469
|
IconQuestionCircle.displayName = 'IconQuestionCircle';
|
|
4414
4470
|
|
|
4415
|
-
var _excluded$
|
|
4471
|
+
var _excluded$1P = ["testId", "size", "color", "style"];
|
|
4416
4472
|
var IconRepeat = React.forwardRef(function (_ref, ref) {
|
|
4417
4473
|
var _ref$testId = _ref.testId,
|
|
4418
4474
|
testId = _ref$testId === void 0 ? 'icon-repeat' : _ref$testId,
|
|
4419
4475
|
size = _ref.size,
|
|
4420
4476
|
color = _ref.color,
|
|
4421
4477
|
style = _ref.style,
|
|
4422
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4478
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1P);
|
|
4423
4479
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4424
4480
|
var styleProps = {
|
|
4425
4481
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4440,14 +4496,14 @@ var IconRepeat = React.forwardRef(function (_ref, ref) {
|
|
|
4440
4496
|
});
|
|
4441
4497
|
IconRepeat.displayName = 'IconRepeat';
|
|
4442
4498
|
|
|
4443
|
-
var _excluded$
|
|
4499
|
+
var _excluded$1Q = ["testId", "size", "color", "style"];
|
|
4444
4500
|
var IconReply = React.forwardRef(function (_ref, ref) {
|
|
4445
4501
|
var _ref$testId = _ref.testId,
|
|
4446
4502
|
testId = _ref$testId === void 0 ? 'icon-reply' : _ref$testId,
|
|
4447
4503
|
size = _ref.size,
|
|
4448
4504
|
color = _ref.color,
|
|
4449
4505
|
style = _ref.style,
|
|
4450
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4506
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Q);
|
|
4451
4507
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4452
4508
|
var styleProps = {
|
|
4453
4509
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4468,14 +4524,14 @@ var IconReply = React.forwardRef(function (_ref, ref) {
|
|
|
4468
4524
|
});
|
|
4469
4525
|
IconReply.displayName = 'IconReply';
|
|
4470
4526
|
|
|
4471
|
-
var _excluded$
|
|
4527
|
+
var _excluded$1R = ["testId", "size", "color", "style"];
|
|
4472
4528
|
var IconRocket = React.forwardRef(function (_ref, ref) {
|
|
4473
4529
|
var _ref$testId = _ref.testId,
|
|
4474
4530
|
testId = _ref$testId === void 0 ? 'icon-rocket' : _ref$testId,
|
|
4475
4531
|
size = _ref.size,
|
|
4476
4532
|
color = _ref.color,
|
|
4477
4533
|
style = _ref.style,
|
|
4478
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4534
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1R);
|
|
4479
4535
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4480
4536
|
var styleProps = {
|
|
4481
4537
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4496,14 +4552,14 @@ var IconRocket = React.forwardRef(function (_ref, ref) {
|
|
|
4496
4552
|
});
|
|
4497
4553
|
IconRocket.displayName = 'IconRocket';
|
|
4498
4554
|
|
|
4499
|
-
var _excluded$
|
|
4555
|
+
var _excluded$1S = ["testId", "size", "color", "style"];
|
|
4500
4556
|
var IconSearch = React.forwardRef(function (_ref, ref) {
|
|
4501
4557
|
var _ref$testId = _ref.testId,
|
|
4502
4558
|
testId = _ref$testId === void 0 ? 'icon-search' : _ref$testId,
|
|
4503
4559
|
size = _ref.size,
|
|
4504
4560
|
color = _ref.color,
|
|
4505
4561
|
style = _ref.style,
|
|
4506
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4562
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1S);
|
|
4507
4563
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4508
4564
|
var styleProps = {
|
|
4509
4565
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4526,14 +4582,14 @@ var IconSearch = React.forwardRef(function (_ref, ref) {
|
|
|
4526
4582
|
});
|
|
4527
4583
|
IconSearch.displayName = 'IconSearch';
|
|
4528
4584
|
|
|
4529
|
-
var _excluded$
|
|
4585
|
+
var _excluded$1T = ["testId", "size", "color", "style"];
|
|
4530
4586
|
var IconSignOut = React.forwardRef(function (_ref, ref) {
|
|
4531
4587
|
var _ref$testId = _ref.testId,
|
|
4532
4588
|
testId = _ref$testId === void 0 ? 'icon-sign-out' : _ref$testId,
|
|
4533
4589
|
size = _ref.size,
|
|
4534
4590
|
color = _ref.color,
|
|
4535
4591
|
style = _ref.style,
|
|
4536
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4592
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1T);
|
|
4537
4593
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4538
4594
|
var styleProps = {
|
|
4539
4595
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4554,14 +4610,14 @@ var IconSignOut = React.forwardRef(function (_ref, ref) {
|
|
|
4554
4610
|
});
|
|
4555
4611
|
IconSignOut.displayName = 'IconSignOut';
|
|
4556
4612
|
|
|
4557
|
-
var _excluded$
|
|
4613
|
+
var _excluded$1U = ["testId", "size", "color", "style"];
|
|
4558
4614
|
var IconSitemap = React.forwardRef(function (_ref, ref) {
|
|
4559
4615
|
var _ref$testId = _ref.testId,
|
|
4560
4616
|
testId = _ref$testId === void 0 ? 'icon-sitemap' : _ref$testId,
|
|
4561
4617
|
size = _ref.size,
|
|
4562
4618
|
color = _ref.color,
|
|
4563
4619
|
style = _ref.style,
|
|
4564
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4620
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1U);
|
|
4565
4621
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4566
4622
|
var styleProps = {
|
|
4567
4623
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4584,14 +4640,14 @@ var IconSitemap = React.forwardRef(function (_ref, ref) {
|
|
|
4584
4640
|
});
|
|
4585
4641
|
IconSitemap.displayName = 'IconSitemap';
|
|
4586
4642
|
|
|
4587
|
-
var _excluded$
|
|
4643
|
+
var _excluded$1V = ["testId", "size", "color", "style"];
|
|
4588
4644
|
var IconSlidersH = React.forwardRef(function (_ref, ref) {
|
|
4589
4645
|
var _ref$testId = _ref.testId,
|
|
4590
4646
|
testId = _ref$testId === void 0 ? 'icon-sliders-h' : _ref$testId,
|
|
4591
4647
|
size = _ref.size,
|
|
4592
4648
|
color = _ref.color,
|
|
4593
4649
|
style = _ref.style,
|
|
4594
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4650
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1V);
|
|
4595
4651
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4596
4652
|
var styleProps = {
|
|
4597
4653
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4619,14 +4675,14 @@ var IconSlidersH = React.forwardRef(function (_ref, ref) {
|
|
|
4619
4675
|
});
|
|
4620
4676
|
IconSlidersH.displayName = 'IconSlidersH';
|
|
4621
4677
|
|
|
4622
|
-
var _excluded$
|
|
4678
|
+
var _excluded$1W = ["testId", "size", "color", "style"];
|
|
4623
4679
|
var IconSort = React.forwardRef(function (_ref, ref) {
|
|
4624
4680
|
var _ref$testId = _ref.testId,
|
|
4625
4681
|
testId = _ref$testId === void 0 ? 'icon-sort' : _ref$testId,
|
|
4626
4682
|
size = _ref.size,
|
|
4627
4683
|
color = _ref.color,
|
|
4628
4684
|
style = _ref.style,
|
|
4629
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4685
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1W);
|
|
4630
4686
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4631
4687
|
var styleProps = {
|
|
4632
4688
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4647,14 +4703,14 @@ var IconSort = React.forwardRef(function (_ref, ref) {
|
|
|
4647
4703
|
});
|
|
4648
4704
|
IconSort.displayName = 'IconSort';
|
|
4649
4705
|
|
|
4650
|
-
var _excluded$
|
|
4706
|
+
var _excluded$1X = ["testId", "size", "color", "style"];
|
|
4651
4707
|
var IconStarSolid = React.forwardRef(function (_ref, ref) {
|
|
4652
4708
|
var _ref$testId = _ref.testId,
|
|
4653
4709
|
testId = _ref$testId === void 0 ? 'icon-star-solid' : _ref$testId,
|
|
4654
4710
|
size = _ref.size,
|
|
4655
4711
|
color = _ref.color,
|
|
4656
4712
|
style = _ref.style,
|
|
4657
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4713
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1X);
|
|
4658
4714
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4659
4715
|
var styleProps = {
|
|
4660
4716
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4675,14 +4731,14 @@ var IconStarSolid = React.forwardRef(function (_ref, ref) {
|
|
|
4675
4731
|
});
|
|
4676
4732
|
IconStarSolid.displayName = 'IconStarSolid';
|
|
4677
4733
|
|
|
4678
|
-
var _excluded$
|
|
4734
|
+
var _excluded$1Y = ["testId", "size", "color", "style"];
|
|
4679
4735
|
var IconStar = React.forwardRef(function (_ref, ref) {
|
|
4680
4736
|
var _ref$testId = _ref.testId,
|
|
4681
4737
|
testId = _ref$testId === void 0 ? 'icon-star' : _ref$testId,
|
|
4682
4738
|
size = _ref.size,
|
|
4683
4739
|
color = _ref.color,
|
|
4684
4740
|
style = _ref.style,
|
|
4685
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4741
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Y);
|
|
4686
4742
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4687
4743
|
var styleProps = {
|
|
4688
4744
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4703,14 +4759,14 @@ var IconStar = React.forwardRef(function (_ref, ref) {
|
|
|
4703
4759
|
});
|
|
4704
4760
|
IconStar.displayName = 'IconStar';
|
|
4705
4761
|
|
|
4706
|
-
var _excluded$
|
|
4762
|
+
var _excluded$1Z = ["testId", "size", "color", "style"];
|
|
4707
4763
|
var IconStickyNoteLines = React.forwardRef(function (_ref, ref) {
|
|
4708
4764
|
var _ref$testId = _ref.testId,
|
|
4709
4765
|
testId = _ref$testId === void 0 ? 'icon-sticky-note-lines' : _ref$testId,
|
|
4710
4766
|
size = _ref.size,
|
|
4711
4767
|
color = _ref.color,
|
|
4712
4768
|
style = _ref.style,
|
|
4713
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4769
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Z);
|
|
4714
4770
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4715
4771
|
var styleProps = {
|
|
4716
4772
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4734,14 +4790,14 @@ var IconStickyNoteLines = React.forwardRef(function (_ref, ref) {
|
|
|
4734
4790
|
});
|
|
4735
4791
|
IconStickyNoteLines.displayName = 'IconStickyNoteLines';
|
|
4736
4792
|
|
|
4737
|
-
var _excluded$
|
|
4793
|
+
var _excluded$1_ = ["testId", "size", "color", "style"];
|
|
4738
4794
|
var IconStopwatch = React.forwardRef(function (_ref, ref) {
|
|
4739
4795
|
var _ref$testId = _ref.testId,
|
|
4740
4796
|
testId = _ref$testId === void 0 ? 'icon-stopwatch' : _ref$testId,
|
|
4741
4797
|
size = _ref.size,
|
|
4742
4798
|
color = _ref.color,
|
|
4743
4799
|
style = _ref.style,
|
|
4744
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4800
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1_);
|
|
4745
4801
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4746
4802
|
var styleProps = {
|
|
4747
4803
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4764,14 +4820,14 @@ var IconStopwatch = React.forwardRef(function (_ref, ref) {
|
|
|
4764
4820
|
});
|
|
4765
4821
|
IconStopwatch.displayName = 'IconStopwatch';
|
|
4766
4822
|
|
|
4767
|
-
var _excluded$
|
|
4823
|
+
var _excluded$1$ = ["testId", "size", "color", "style"];
|
|
4768
4824
|
var IconStrikethrough = React.forwardRef(function (_ref, ref) {
|
|
4769
4825
|
var _ref$testId = _ref.testId,
|
|
4770
4826
|
testId = _ref$testId === void 0 ? 'icon-strikethrough' : _ref$testId,
|
|
4771
4827
|
size = _ref.size,
|
|
4772
4828
|
color = _ref.color,
|
|
4773
4829
|
style = _ref.style,
|
|
4774
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4830
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1$);
|
|
4775
4831
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4776
4832
|
var styleProps = {
|
|
4777
4833
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4799,14 +4855,14 @@ var IconStrikethrough = React.forwardRef(function (_ref, ref) {
|
|
|
4799
4855
|
});
|
|
4800
4856
|
IconStrikethrough.displayName = 'IconStrikethrough';
|
|
4801
4857
|
|
|
4802
|
-
var _excluded$
|
|
4858
|
+
var _excluded$20 = ["testId", "size", "color", "style"];
|
|
4803
4859
|
var IconSyncExclaimation = React.forwardRef(function (_ref, ref) {
|
|
4804
4860
|
var _ref$testId = _ref.testId,
|
|
4805
4861
|
testId = _ref$testId === void 0 ? 'icon-sync-exclaimation' : _ref$testId,
|
|
4806
4862
|
size = _ref.size,
|
|
4807
4863
|
color = _ref.color,
|
|
4808
4864
|
style = _ref.style,
|
|
4809
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4865
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$20);
|
|
4810
4866
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4811
4867
|
var styleProps = {
|
|
4812
4868
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4827,14 +4883,14 @@ var IconSyncExclaimation = React.forwardRef(function (_ref, ref) {
|
|
|
4827
4883
|
});
|
|
4828
4884
|
IconSyncExclaimation.displayName = 'IconSyncExclaimation';
|
|
4829
4885
|
|
|
4830
|
-
var _excluded$
|
|
4886
|
+
var _excluded$21 = ["testId", "size", "color", "style"];
|
|
4831
4887
|
var IconSync = React.forwardRef(function (_ref, ref) {
|
|
4832
4888
|
var _ref$testId = _ref.testId,
|
|
4833
4889
|
testId = _ref$testId === void 0 ? 'icon-sync' : _ref$testId,
|
|
4834
4890
|
size = _ref.size,
|
|
4835
4891
|
color = _ref.color,
|
|
4836
4892
|
style = _ref.style,
|
|
4837
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4893
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$21);
|
|
4838
4894
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4839
4895
|
var styleProps = {
|
|
4840
4896
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4855,14 +4911,14 @@ var IconSync = React.forwardRef(function (_ref, ref) {
|
|
|
4855
4911
|
});
|
|
4856
4912
|
IconSync.displayName = 'IconSync';
|
|
4857
4913
|
|
|
4858
|
-
var _excluded$
|
|
4914
|
+
var _excluded$22 = ["testId", "size", "color", "style"];
|
|
4859
4915
|
var IconTable = React.forwardRef(function (_ref, ref) {
|
|
4860
4916
|
var _ref$testId = _ref.testId,
|
|
4861
4917
|
testId = _ref$testId === void 0 ? 'icon-table' : _ref$testId,
|
|
4862
4918
|
size = _ref.size,
|
|
4863
4919
|
color = _ref.color,
|
|
4864
4920
|
style = _ref.style,
|
|
4865
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4921
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$22);
|
|
4866
4922
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4867
4923
|
var styleProps = {
|
|
4868
4924
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4890,14 +4946,14 @@ var IconTable = React.forwardRef(function (_ref, ref) {
|
|
|
4890
4946
|
});
|
|
4891
4947
|
IconTable.displayName = 'IconTable';
|
|
4892
4948
|
|
|
4893
|
-
var _excluded$
|
|
4949
|
+
var _excluded$23 = ["testId", "size", "color", "style"];
|
|
4894
4950
|
var IconTachometer = React.forwardRef(function (_ref, ref) {
|
|
4895
4951
|
var _ref$testId = _ref.testId,
|
|
4896
4952
|
testId = _ref$testId === void 0 ? 'icon-tachometer' : _ref$testId,
|
|
4897
4953
|
size = _ref.size,
|
|
4898
4954
|
color = _ref.color,
|
|
4899
4955
|
style = _ref.style,
|
|
4900
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4956
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$23);
|
|
4901
4957
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4902
4958
|
var styleProps = {
|
|
4903
4959
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4917,14 +4973,14 @@ var IconTachometer = React.forwardRef(function (_ref, ref) {
|
|
|
4917
4973
|
});
|
|
4918
4974
|
IconTachometer.displayName = 'IconTachometer';
|
|
4919
4975
|
|
|
4920
|
-
var _excluded$
|
|
4976
|
+
var _excluded$24 = ["testId", "size", "color", "style"];
|
|
4921
4977
|
var IconTimesOctagon = React.forwardRef(function (_ref, ref) {
|
|
4922
4978
|
var _ref$testId = _ref.testId,
|
|
4923
4979
|
testId = _ref$testId === void 0 ? 'icon-times-octagon' : _ref$testId,
|
|
4924
4980
|
size = _ref.size,
|
|
4925
4981
|
color = _ref.color,
|
|
4926
4982
|
style = _ref.style,
|
|
4927
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4983
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$24);
|
|
4928
4984
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4929
4985
|
var styleProps = {
|
|
4930
4986
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4947,14 +5003,14 @@ var IconTimesOctagon = React.forwardRef(function (_ref, ref) {
|
|
|
4947
5003
|
});
|
|
4948
5004
|
IconTimesOctagon.displayName = 'IconTimesOctagon';
|
|
4949
5005
|
|
|
4950
|
-
var _excluded$
|
|
5006
|
+
var _excluded$25 = ["testId", "size", "color", "style"];
|
|
4951
5007
|
var IconTimes = React.forwardRef(function (_ref, ref) {
|
|
4952
5008
|
var _ref$testId = _ref.testId,
|
|
4953
5009
|
testId = _ref$testId === void 0 ? 'icon-times' : _ref$testId,
|
|
4954
5010
|
size = _ref.size,
|
|
4955
5011
|
color = _ref.color,
|
|
4956
5012
|
style = _ref.style,
|
|
4957
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5013
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$25);
|
|
4958
5014
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4959
5015
|
var styleProps = {
|
|
4960
5016
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4977,14 +5033,14 @@ var IconTimes = React.forwardRef(function (_ref, ref) {
|
|
|
4977
5033
|
});
|
|
4978
5034
|
IconTimes.displayName = 'IconTimes';
|
|
4979
5035
|
|
|
4980
|
-
var _excluded$
|
|
5036
|
+
var _excluded$26 = ["testId", "size", "color", "style"];
|
|
4981
5037
|
var IconTrash = React.forwardRef(function (_ref, ref) {
|
|
4982
5038
|
var _ref$testId = _ref.testId,
|
|
4983
5039
|
testId = _ref$testId === void 0 ? 'icon-trash' : _ref$testId,
|
|
4984
5040
|
size = _ref.size,
|
|
4985
5041
|
color = _ref.color,
|
|
4986
5042
|
style = _ref.style,
|
|
4987
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5043
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$26);
|
|
4988
5044
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4989
5045
|
var styleProps = {
|
|
4990
5046
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5007,14 +5063,14 @@ var IconTrash = React.forwardRef(function (_ref, ref) {
|
|
|
5007
5063
|
});
|
|
5008
5064
|
IconTrash.displayName = 'IconTrash';
|
|
5009
5065
|
|
|
5010
|
-
var _excluded$
|
|
5066
|
+
var _excluded$27 = ["testId", "size", "color", "style"];
|
|
5011
5067
|
var IconUnderline = React.forwardRef(function (_ref, ref) {
|
|
5012
5068
|
var _ref$testId = _ref.testId,
|
|
5013
5069
|
testId = _ref$testId === void 0 ? 'icon-underline' : _ref$testId,
|
|
5014
5070
|
size = _ref.size,
|
|
5015
5071
|
color = _ref.color,
|
|
5016
5072
|
style = _ref.style,
|
|
5017
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5073
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$27);
|
|
5018
5074
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5019
5075
|
var styleProps = {
|
|
5020
5076
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5035,14 +5091,14 @@ var IconUnderline = React.forwardRef(function (_ref, ref) {
|
|
|
5035
5091
|
});
|
|
5036
5092
|
IconUnderline.displayName = 'IconUnderline';
|
|
5037
5093
|
|
|
5038
|
-
var _excluded$
|
|
5094
|
+
var _excluded$28 = ["testId", "size", "color", "style"];
|
|
5039
5095
|
var IconUndo = React.forwardRef(function (_ref, ref) {
|
|
5040
5096
|
var _ref$testId = _ref.testId,
|
|
5041
5097
|
testId = _ref$testId === void 0 ? 'icon-undo' : _ref$testId,
|
|
5042
5098
|
size = _ref.size,
|
|
5043
5099
|
color = _ref.color,
|
|
5044
5100
|
style = _ref.style,
|
|
5045
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5101
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$28);
|
|
5046
5102
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5047
5103
|
var styleProps = {
|
|
5048
5104
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5063,14 +5119,14 @@ var IconUndo = React.forwardRef(function (_ref, ref) {
|
|
|
5063
5119
|
});
|
|
5064
5120
|
IconUndo.displayName = 'IconUndo';
|
|
5065
5121
|
|
|
5066
|
-
var _excluded$
|
|
5122
|
+
var _excluded$29 = ["testId", "size", "color", "style"];
|
|
5067
5123
|
var IconUniversity = React.forwardRef(function (_ref, ref) {
|
|
5068
5124
|
var _ref$testId = _ref.testId,
|
|
5069
5125
|
testId = _ref$testId === void 0 ? 'icon-university' : _ref$testId,
|
|
5070
5126
|
size = _ref.size,
|
|
5071
5127
|
color = _ref.color,
|
|
5072
5128
|
style = _ref.style,
|
|
5073
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5129
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$29);
|
|
5074
5130
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5075
5131
|
var styleProps = {
|
|
5076
5132
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5098,14 +5154,14 @@ var IconUniversity = React.forwardRef(function (_ref, ref) {
|
|
|
5098
5154
|
});
|
|
5099
5155
|
IconUniversity.displayName = 'IconUniversity';
|
|
5100
5156
|
|
|
5101
|
-
var _excluded$
|
|
5157
|
+
var _excluded$2a = ["testId", "size", "color", "style"];
|
|
5102
5158
|
var IconUnlock = React.forwardRef(function (_ref, ref) {
|
|
5103
5159
|
var _ref$testId = _ref.testId,
|
|
5104
5160
|
testId = _ref$testId === void 0 ? 'icon-unlock' : _ref$testId,
|
|
5105
5161
|
size = _ref.size,
|
|
5106
5162
|
color = _ref.color,
|
|
5107
5163
|
style = _ref.style,
|
|
5108
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5164
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2a);
|
|
5109
5165
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5110
5166
|
var styleProps = {
|
|
5111
5167
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5133,14 +5189,14 @@ var IconUnlock = React.forwardRef(function (_ref, ref) {
|
|
|
5133
5189
|
});
|
|
5134
5190
|
IconUnlock.displayName = 'IconUnlock';
|
|
5135
5191
|
|
|
5136
|
-
var _excluded$
|
|
5192
|
+
var _excluded$2b = ["testId", "size", "color", "style"];
|
|
5137
5193
|
var IconUserComputer = React.forwardRef(function (_ref, ref) {
|
|
5138
5194
|
var _ref$testId = _ref.testId,
|
|
5139
5195
|
testId = _ref$testId === void 0 ? 'icon-user-computer' : _ref$testId,
|
|
5140
5196
|
size = _ref.size,
|
|
5141
5197
|
color = _ref.color,
|
|
5142
5198
|
style = _ref.style,
|
|
5143
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5199
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2b);
|
|
5144
5200
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5145
5201
|
var styleProps = {
|
|
5146
5202
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5172,14 +5228,14 @@ var IconUserComputer = React.forwardRef(function (_ref, ref) {
|
|
|
5172
5228
|
});
|
|
5173
5229
|
IconUserComputer.displayName = 'IconUserComputer';
|
|
5174
5230
|
|
|
5175
|
-
var _excluded$
|
|
5231
|
+
var _excluded$2c = ["testId", "size", "color", "style"];
|
|
5176
5232
|
var IconUserFriends = React.forwardRef(function (_ref, ref) {
|
|
5177
5233
|
var _ref$testId = _ref.testId,
|
|
5178
5234
|
testId = _ref$testId === void 0 ? 'icon-user-friends' : _ref$testId,
|
|
5179
5235
|
size = _ref.size,
|
|
5180
5236
|
color = _ref.color,
|
|
5181
5237
|
style = _ref.style,
|
|
5182
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5238
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2c);
|
|
5183
5239
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5184
5240
|
var styleProps = {
|
|
5185
5241
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5200,14 +5256,14 @@ var IconUserFriends = React.forwardRef(function (_ref, ref) {
|
|
|
5200
5256
|
});
|
|
5201
5257
|
IconUserFriends.displayName = 'IconUserFriends';
|
|
5202
5258
|
|
|
5203
|
-
var _excluded$
|
|
5259
|
+
var _excluded$2d = ["testId", "size", "color", "style"];
|
|
5204
5260
|
var IconUserLight = React.forwardRef(function (_ref, ref) {
|
|
5205
5261
|
var _ref$testId = _ref.testId,
|
|
5206
5262
|
testId = _ref$testId === void 0 ? 'icon-user-light' : _ref$testId,
|
|
5207
5263
|
size = _ref.size,
|
|
5208
5264
|
color = _ref.color,
|
|
5209
5265
|
style = _ref.style,
|
|
5210
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5266
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2d);
|
|
5211
5267
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5212
5268
|
var styleProps = {
|
|
5213
5269
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5230,14 +5286,14 @@ var IconUserLight = React.forwardRef(function (_ref, ref) {
|
|
|
5230
5286
|
});
|
|
5231
5287
|
IconUserLight.displayName = 'IconUserLight';
|
|
5232
5288
|
|
|
5233
|
-
var _excluded$
|
|
5289
|
+
var _excluded$2e = ["testId", "size", "color", "style"];
|
|
5234
5290
|
var IconUserPlus = React.forwardRef(function (_ref, ref) {
|
|
5235
5291
|
var _ref$testId = _ref.testId,
|
|
5236
5292
|
testId = _ref$testId === void 0 ? 'icon-user-plus' : _ref$testId,
|
|
5237
5293
|
size = _ref.size,
|
|
5238
5294
|
color = _ref.color,
|
|
5239
5295
|
style = _ref.style,
|
|
5240
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5296
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2e);
|
|
5241
5297
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5242
5298
|
var styleProps = {
|
|
5243
5299
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5258,14 +5314,14 @@ var IconUserPlus = React.forwardRef(function (_ref, ref) {
|
|
|
5258
5314
|
});
|
|
5259
5315
|
IconUserPlus.displayName = 'IconUserPlus';
|
|
5260
5316
|
|
|
5261
|
-
var _excluded$
|
|
5317
|
+
var _excluded$2f = ["testId", "size", "color", "style"];
|
|
5262
5318
|
var IconUserSearch = React.forwardRef(function (_ref, ref) {
|
|
5263
5319
|
var _ref$testId = _ref.testId,
|
|
5264
5320
|
testId = _ref$testId === void 0 ? 'icon-user-search' : _ref$testId,
|
|
5265
5321
|
size = _ref.size,
|
|
5266
5322
|
color = _ref.color,
|
|
5267
5323
|
style = _ref.style,
|
|
5268
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5324
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2f);
|
|
5269
5325
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5270
5326
|
var styleProps = {
|
|
5271
5327
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5295,14 +5351,14 @@ var IconUserSearch = React.forwardRef(function (_ref, ref) {
|
|
|
5295
5351
|
});
|
|
5296
5352
|
IconUserSearch.displayName = 'IconUserSearch';
|
|
5297
5353
|
|
|
5298
|
-
var _excluded$
|
|
5354
|
+
var _excluded$2g = ["testId", "size", "color", "style"];
|
|
5299
5355
|
var IconUserSlash = React.forwardRef(function (_ref, ref) {
|
|
5300
5356
|
var _ref$testId = _ref.testId,
|
|
5301
5357
|
testId = _ref$testId === void 0 ? 'icon-user-slash' : _ref$testId,
|
|
5302
5358
|
size = _ref.size,
|
|
5303
5359
|
color = _ref.color,
|
|
5304
5360
|
style = _ref.style,
|
|
5305
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5361
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2g);
|
|
5306
5362
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5307
5363
|
var styleProps = {
|
|
5308
5364
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5330,14 +5386,14 @@ var IconUserSlash = React.forwardRef(function (_ref, ref) {
|
|
|
5330
5386
|
});
|
|
5331
5387
|
IconUserSlash.displayName = 'IconUserSlash';
|
|
5332
5388
|
|
|
5333
|
-
var _excluded$
|
|
5389
|
+
var _excluded$2h = ["testId", "size", "color", "style"];
|
|
5334
5390
|
var IconUserSolid = React.forwardRef(function (_ref, ref) {
|
|
5335
5391
|
var _ref$testId = _ref.testId,
|
|
5336
5392
|
testId = _ref$testId === void 0 ? 'icon-user-solid' : _ref$testId,
|
|
5337
5393
|
size = _ref.size,
|
|
5338
5394
|
color = _ref.color,
|
|
5339
5395
|
style = _ref.style,
|
|
5340
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5396
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2h);
|
|
5341
5397
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5342
5398
|
var styleProps = {
|
|
5343
5399
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5358,14 +5414,14 @@ var IconUserSolid = React.forwardRef(function (_ref, ref) {
|
|
|
5358
5414
|
});
|
|
5359
5415
|
IconUserSolid.displayName = 'IconUserSolid';
|
|
5360
5416
|
|
|
5361
|
-
var _excluded$
|
|
5417
|
+
var _excluded$2i = ["testId", "size", "color", "style"];
|
|
5362
5418
|
var IconUserTag = React.forwardRef(function (_ref, ref) {
|
|
5363
5419
|
var _ref$testId = _ref.testId,
|
|
5364
5420
|
testId = _ref$testId === void 0 ? 'icon-user-tag' : _ref$testId,
|
|
5365
5421
|
size = _ref.size,
|
|
5366
5422
|
color = _ref.color,
|
|
5367
5423
|
style = _ref.style,
|
|
5368
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5424
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2i);
|
|
5369
5425
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5370
5426
|
var styleProps = {
|
|
5371
5427
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5388,14 +5444,14 @@ var IconUserTag = React.forwardRef(function (_ref, ref) {
|
|
|
5388
5444
|
});
|
|
5389
5445
|
IconUserTag.displayName = 'IconUserTag';
|
|
5390
5446
|
|
|
5391
|
-
var _excluded$
|
|
5447
|
+
var _excluded$2j = ["testId", "size", "color", "style"];
|
|
5392
5448
|
var IconUserTie = React.forwardRef(function (_ref, ref) {
|
|
5393
5449
|
var _ref$testId = _ref.testId,
|
|
5394
5450
|
testId = _ref$testId === void 0 ? 'icon-user-tie' : _ref$testId,
|
|
5395
5451
|
size = _ref.size,
|
|
5396
5452
|
color = _ref.color,
|
|
5397
5453
|
style = _ref.style,
|
|
5398
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5454
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2j);
|
|
5399
5455
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5400
5456
|
var styleProps = {
|
|
5401
5457
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5416,14 +5472,14 @@ var IconUserTie = React.forwardRef(function (_ref, ref) {
|
|
|
5416
5472
|
});
|
|
5417
5473
|
IconUserTie.displayName = 'IconUserTie';
|
|
5418
5474
|
|
|
5419
|
-
var _excluded$
|
|
5475
|
+
var _excluded$2k = ["testId", "size", "color", "style"];
|
|
5420
5476
|
var IconUsers = React.forwardRef(function (_ref, ref) {
|
|
5421
5477
|
var _ref$testId = _ref.testId,
|
|
5422
5478
|
testId = _ref$testId === void 0 ? 'icon-users' : _ref$testId,
|
|
5423
5479
|
size = _ref.size,
|
|
5424
5480
|
color = _ref.color,
|
|
5425
5481
|
style = _ref.style,
|
|
5426
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5482
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2k);
|
|
5427
5483
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5428
5484
|
var styleProps = {
|
|
5429
5485
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5444,14 +5500,14 @@ var IconUsers = React.forwardRef(function (_ref, ref) {
|
|
|
5444
5500
|
});
|
|
5445
5501
|
IconUsers.displayName = 'IconUsers';
|
|
5446
5502
|
|
|
5447
|
-
var _excluded$
|
|
5503
|
+
var _excluded$2l = ["testId", "size", "color", "style"];
|
|
5448
5504
|
var IconVideo = React.forwardRef(function (_ref, ref) {
|
|
5449
5505
|
var _ref$testId = _ref.testId,
|
|
5450
5506
|
testId = _ref$testId === void 0 ? 'icon-video' : _ref$testId,
|
|
5451
5507
|
size = _ref.size,
|
|
5452
5508
|
color = _ref.color,
|
|
5453
5509
|
style = _ref.style,
|
|
5454
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5510
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2l);
|
|
5455
5511
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5456
5512
|
var styleProps = {
|
|
5457
5513
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5472,14 +5528,14 @@ var IconVideo = React.forwardRef(function (_ref, ref) {
|
|
|
5472
5528
|
});
|
|
5473
5529
|
IconVideo.displayName = 'IconVideo';
|
|
5474
5530
|
|
|
5475
|
-
var _excluded$
|
|
5531
|
+
var _excluded$2m = ["testId", "size", "color", "style"];
|
|
5476
5532
|
var IconVolumeMute = React.forwardRef(function (_ref, ref) {
|
|
5477
5533
|
var _ref$testId = _ref.testId,
|
|
5478
5534
|
testId = _ref$testId === void 0 ? 'icon-volume-mute' : _ref$testId,
|
|
5479
5535
|
size = _ref.size,
|
|
5480
5536
|
color = _ref.color,
|
|
5481
5537
|
style = _ref.style,
|
|
5482
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5538
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2m);
|
|
5483
5539
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5484
5540
|
var styleProps = {
|
|
5485
5541
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5500,14 +5556,14 @@ var IconVolumeMute = React.forwardRef(function (_ref, ref) {
|
|
|
5500
5556
|
});
|
|
5501
5557
|
IconVolumeMute.displayName = 'IconVolumeMute';
|
|
5502
5558
|
|
|
5503
|
-
var _excluded$
|
|
5559
|
+
var _excluded$2n = ["testId", "size", "color", "style"];
|
|
5504
5560
|
var IconVolume = React.forwardRef(function (_ref, ref) {
|
|
5505
5561
|
var _ref$testId = _ref.testId,
|
|
5506
5562
|
testId = _ref$testId === void 0 ? 'icon-volume' : _ref$testId,
|
|
5507
5563
|
size = _ref.size,
|
|
5508
5564
|
color = _ref.color,
|
|
5509
5565
|
style = _ref.style,
|
|
5510
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5566
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2n);
|
|
5511
5567
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5512
5568
|
var styleProps = {
|
|
5513
5569
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5528,14 +5584,14 @@ var IconVolume = React.forwardRef(function (_ref, ref) {
|
|
|
5528
5584
|
});
|
|
5529
5585
|
IconVolume.displayName = 'IconVolume';
|
|
5530
5586
|
|
|
5531
|
-
var _excluded$
|
|
5587
|
+
var _excluded$2o = ["testId", "size", "color", "style"];
|
|
5532
5588
|
var IconWrench = React.forwardRef(function (_ref, ref) {
|
|
5533
5589
|
var _ref$testId = _ref.testId,
|
|
5534
5590
|
testId = _ref$testId === void 0 ? 'icon-wrench' : _ref$testId,
|
|
5535
5591
|
size = _ref.size,
|
|
5536
5592
|
color = _ref.color,
|
|
5537
5593
|
style = _ref.style,
|
|
5538
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5594
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2o);
|
|
5539
5595
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5540
5596
|
var styleProps = {
|
|
5541
5597
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5670,7 +5726,7 @@ var useTranslation = function useTranslation(context) {
|
|
|
5670
5726
|
return translate;
|
|
5671
5727
|
};
|
|
5672
5728
|
|
|
5673
|
-
var _excluded$
|
|
5729
|
+
var _excluded$2p = ["hasPrevious", "hasNext", "onPreviousClick", "onNextClick", "testId", "scrollTarget"];
|
|
5674
5730
|
var PaginationControls$1 = function PaginationControls(_ref) {
|
|
5675
5731
|
var _ref$hasPrevious = _ref.hasPrevious,
|
|
5676
5732
|
hasPrevious = _ref$hasPrevious === void 0 ? true : _ref$hasPrevious,
|
|
@@ -5680,7 +5736,7 @@ var PaginationControls$1 = function PaginationControls(_ref) {
|
|
|
5680
5736
|
onNextClick = _ref.onNextClick,
|
|
5681
5737
|
testId = _ref.testId,
|
|
5682
5738
|
scrollTarget = _ref.scrollTarget,
|
|
5683
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5739
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2p);
|
|
5684
5740
|
var __ = useTranslation('PaginationControls');
|
|
5685
5741
|
var _getDataProps = getDataProps(otherProps),
|
|
5686
5742
|
dataProps = _getDataProps.dataProps;
|
|
@@ -5748,7 +5804,7 @@ var LINK_TARGET = {
|
|
|
5748
5804
|
|
|
5749
5805
|
var styles$8 = {"link--primary":"_1mKoj","link--contrast":"_HUvH1"};
|
|
5750
5806
|
|
|
5751
|
-
var _excluded$
|
|
5807
|
+
var _excluded$2q = ["href", "target", "theme", "onClick", "children"];
|
|
5752
5808
|
var Link = function Link(_ref) {
|
|
5753
5809
|
var _classNames;
|
|
5754
5810
|
var href = _ref.href,
|
|
@@ -5758,7 +5814,7 @@ var Link = function Link(_ref) {
|
|
|
5758
5814
|
theme = _ref$theme === void 0 ? LINK_THEME.PRIMARY : _ref$theme,
|
|
5759
5815
|
onClick = _ref.onClick,
|
|
5760
5816
|
children = _ref.children,
|
|
5761
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5817
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2q);
|
|
5762
5818
|
var _getDataProps = getDataProps(otherProps),
|
|
5763
5819
|
dataProps = _getDataProps.dataProps;
|
|
5764
5820
|
return React__default.createElement("a", _extends({}, dataProps, {
|
|
@@ -6092,7 +6148,7 @@ var InlineBannerIcon = function InlineBannerIcon(_ref) {
|
|
|
6092
6148
|
}
|
|
6093
6149
|
};
|
|
6094
6150
|
|
|
6095
|
-
var _excluded$
|
|
6151
|
+
var _excluded$2r = ["children", "theme", "title", "onClose", "caption", "primaryButton", "secondaryButton", "testId"];
|
|
6096
6152
|
var InlineBanner = function InlineBanner(_ref) {
|
|
6097
6153
|
var _classnames, _classnames2;
|
|
6098
6154
|
var children = _ref.children,
|
|
@@ -6104,7 +6160,7 @@ var InlineBanner = function InlineBanner(_ref) {
|
|
|
6104
6160
|
primaryButton = _ref.primaryButton,
|
|
6105
6161
|
secondaryButton = _ref.secondaryButton,
|
|
6106
6162
|
testId = _ref.testId,
|
|
6107
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6163
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$2r);
|
|
6108
6164
|
var positionStyles = usePositionStyles(positionProps);
|
|
6109
6165
|
var multiLine = !!title;
|
|
6110
6166
|
var dismissable = !!onClose;
|
|
@@ -6400,14 +6456,14 @@ var ErrorMessage = function ErrorMessage(_ref) {
|
|
|
6400
6456
|
}), children));
|
|
6401
6457
|
};
|
|
6402
6458
|
|
|
6403
|
-
var _excluded$
|
|
6459
|
+
var _excluded$2s = ["id", "label", "caption", "error", "children"];
|
|
6404
6460
|
var Field = function Field(_ref) {
|
|
6405
6461
|
var id = _ref.id,
|
|
6406
6462
|
label = _ref.label,
|
|
6407
6463
|
caption = _ref.caption,
|
|
6408
6464
|
error = _ref.error,
|
|
6409
6465
|
children = _ref.children,
|
|
6410
|
-
dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6466
|
+
dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$2s);
|
|
6411
6467
|
var shouldRenderLabel = label || typeof label === 'string';
|
|
6412
6468
|
return React__default.createElement(Stack, _extends({
|
|
6413
6469
|
space: 8,
|
|
@@ -6527,7 +6583,7 @@ var useFieldControllers = function useFieldControllers(_ref) {
|
|
|
6527
6583
|
|
|
6528
6584
|
var styles$k = {"text-field":"_3BVGA","text-field--invalid":"_FLffs","text-field--prefixed":"_3qeO1","text-field--suffixed":"_3QPln"};
|
|
6529
6585
|
|
|
6530
|
-
var _excluded$
|
|
6586
|
+
var _excluded$2t = ["autoComplete", "autoFocus", "defaultValue", "disabled", "error", "id", "maxLength", "name", "caption", "label", "onBlur", "onChange", "onFocus", "onKeyDown", "placeholder", "value", "ref", "testId"];
|
|
6531
6587
|
var useTextField = function useTextField(_ref) {
|
|
6532
6588
|
var _classnames;
|
|
6533
6589
|
var autoComplete = _ref.autoComplete,
|
|
@@ -6548,7 +6604,7 @@ var useTextField = function useTextField(_ref) {
|
|
|
6548
6604
|
value = _ref.value,
|
|
6549
6605
|
ref = _ref.ref,
|
|
6550
6606
|
testId = _ref.testId,
|
|
6551
|
-
dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6607
|
+
dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$2t);
|
|
6552
6608
|
var controllers = useFieldControllers({
|
|
6553
6609
|
error: error,
|
|
6554
6610
|
id: id,
|
|
@@ -6669,7 +6725,7 @@ var TimeFieldInput = function TimeFieldInput(_ref) {
|
|
|
6669
6725
|
})));
|
|
6670
6726
|
};
|
|
6671
6727
|
|
|
6672
|
-
var _excluded$
|
|
6728
|
+
var _excluded$2u = ["placeholder", "autoComplete", "selectedTimeOption", "prefix", "startTime", "duration"];
|
|
6673
6729
|
var TimeFieldDropdownElement = function TimeFieldDropdownElement(_ref, ref) {
|
|
6674
6730
|
var _ref$placeholder = _ref.placeholder,
|
|
6675
6731
|
placeholder = _ref$placeholder === void 0 ? '9:00 AM' : _ref$placeholder,
|
|
@@ -6678,7 +6734,7 @@ var TimeFieldDropdownElement = function TimeFieldDropdownElement(_ref, ref) {
|
|
|
6678
6734
|
selectedTimeOption = _ref.selectedTimeOption,
|
|
6679
6735
|
prefix = _ref.prefix,
|
|
6680
6736
|
duration = _ref.duration,
|
|
6681
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6737
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2u);
|
|
6682
6738
|
var _useTextField = useTextField(_extends({}, allOtherProps, {
|
|
6683
6739
|
placeholder: placeholder,
|
|
6684
6740
|
autoComplete: autoComplete,
|
|
@@ -6979,7 +7035,7 @@ var ALIGNMENTS = {
|
|
|
6979
7035
|
|
|
6980
7036
|
var styles$p = {"text":"_32amZ","text__body":"_ayJRy","text__caption":"_3g1gi","text__insight":"_20Phg","text--bold":"_A0AyZ","text--italic":"_3jayQ","text--underline":"_GOcFw","text--monospace":"_3TfGK","text--align-left":"_b8gto","text--align-right":"_ecyH1","text--align-center":"_xBgXc","text--align-justify":"_280D5"};
|
|
6981
7037
|
|
|
6982
|
-
var _excluded$
|
|
7038
|
+
var _excluded$2v = ["children", "as", "emphasis", "alignment", "color", "testId"];
|
|
6983
7039
|
var Text = function Text(_ref) {
|
|
6984
7040
|
var _classnames;
|
|
6985
7041
|
var children = _ref.children,
|
|
@@ -6989,7 +7045,7 @@ var Text = function Text(_ref) {
|
|
|
6989
7045
|
alignment = _ref.alignment,
|
|
6990
7046
|
color = _ref.color,
|
|
6991
7047
|
testId = _ref.testId,
|
|
6992
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7048
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$2v);
|
|
6993
7049
|
var positionStyles = usePositionStyles(positionProps);
|
|
6994
7050
|
var elementProps = {
|
|
6995
7051
|
style: _extends({
|
|
@@ -7192,7 +7248,7 @@ var KebabMenu = function KebabMenu(_ref) {
|
|
|
7192
7248
|
|
|
7193
7249
|
var styles$q = {"card":"_2o1ez","card__body":"_1PFiJ","card__body--interactive":"_3dQzA","card--focus":"_5dJZO","card__body--focus":"_DWgI_","card__body--disabled":"_24dNX","card__body--with-kebab":"_2LVaD","card__kebab":"_L9ZA7","card__kebab--disabled":"_5YidV"};
|
|
7194
7250
|
|
|
7195
|
-
var _excluded$
|
|
7251
|
+
var _excluded$2w = ["children", "onClick", "isSelected", "disabled", "actions", "testId"];
|
|
7196
7252
|
var Card = function Card(_ref) {
|
|
7197
7253
|
var _classnames, _classnames2, _classnames3;
|
|
7198
7254
|
var children = _ref.children,
|
|
@@ -7203,7 +7259,7 @@ var Card = function Card(_ref) {
|
|
|
7203
7259
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
7204
7260
|
actions = _ref.actions,
|
|
7205
7261
|
testId = _ref.testId,
|
|
7206
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7262
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$2w);
|
|
7207
7263
|
var _getPositionProps = getPositionProps(rest),
|
|
7208
7264
|
positionProps = _getPositionProps.positionProps,
|
|
7209
7265
|
otherProps = _getPositionProps.otherProps;
|
|
@@ -7543,14 +7599,14 @@ var SKELETON_COMPONENT = {
|
|
|
7543
7599
|
PILL: 'pill'
|
|
7544
7600
|
};
|
|
7545
7601
|
|
|
7546
|
-
var _excluded$
|
|
7602
|
+
var _excluded$2x = ["as", "testId", "width", "height"];
|
|
7547
7603
|
var Skeleton = function Skeleton(_ref) {
|
|
7548
7604
|
var _classnames;
|
|
7549
7605
|
var as = _ref.as,
|
|
7550
7606
|
testId = _ref.testId,
|
|
7551
7607
|
width = _ref.width,
|
|
7552
7608
|
height = _ref.height,
|
|
7553
|
-
positionStyles = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7609
|
+
positionStyles = _objectWithoutPropertiesLoose(_ref, _excluded$2x);
|
|
7554
7610
|
var positioning = usePositionStyles(positionStyles);
|
|
7555
7611
|
return React__default.createElement("div", {
|
|
7556
7612
|
"data-testid": testId,
|
|
@@ -7613,7 +7669,7 @@ var useModalContext = function useModalContext() {
|
|
|
7613
7669
|
return context || {};
|
|
7614
7670
|
};
|
|
7615
7671
|
|
|
7616
|
-
var _excluded$
|
|
7672
|
+
var _excluded$2y = ["children", "header", "subHeader", "onClose", "loading", "zIndex", "rootElementId", "width", "height", "maxWidth", "shouldReturnFocusAfterClose", "testId"];
|
|
7617
7673
|
var Modal = function Modal(_ref) {
|
|
7618
7674
|
var children = _ref.children,
|
|
7619
7675
|
header = _ref.header,
|
|
@@ -7630,7 +7686,7 @@ var Modal = function Modal(_ref) {
|
|
|
7630
7686
|
_ref$shouldReturnFocu = _ref.shouldReturnFocusAfterClose,
|
|
7631
7687
|
shouldReturnFocusAfterClose = _ref$shouldReturnFocu === void 0 ? true : _ref$shouldReturnFocu,
|
|
7632
7688
|
testId = _ref.testId,
|
|
7633
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7689
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2y);
|
|
7634
7690
|
var style = {
|
|
7635
7691
|
content: {
|
|
7636
7692
|
width: width,
|
|
@@ -8033,7 +8089,7 @@ var useCheckBoxFieldControllers = function useCheckBoxFieldControllers(_ref) {
|
|
|
8033
8089
|
|
|
8034
8090
|
var styles$H = {"check-box-field":"_2Rbk6","check-box-field__caption":"_1GW-E","check-box-field__custom-input":"_2W10t"};
|
|
8035
8091
|
|
|
8036
|
-
var _excluded$
|
|
8092
|
+
var _excluded$2z = ["name", "id", "checked", "onChange", "onBlur", "label", "caption", "error", "disabled", "testId"];
|
|
8037
8093
|
var CheckboxField = function CheckboxField(_ref) {
|
|
8038
8094
|
var name = _ref.name,
|
|
8039
8095
|
inputId = _ref.id,
|
|
@@ -8045,7 +8101,7 @@ var CheckboxField = function CheckboxField(_ref) {
|
|
|
8045
8101
|
error = _ref.error,
|
|
8046
8102
|
disabled = _ref.disabled,
|
|
8047
8103
|
testId = _ref.testId,
|
|
8048
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8104
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2z);
|
|
8049
8105
|
var controllers = useCheckBoxFieldControllers({
|
|
8050
8106
|
name: name,
|
|
8051
8107
|
id: inputId,
|
|
@@ -8114,7 +8170,7 @@ var useLocalStorage = function useLocalStorage(key, initialValue) {
|
|
|
8114
8170
|
|
|
8115
8171
|
var styles$I = {"hint-modal":"_1b47y","hint-modal--after-open":"_2MB4p","hint-modal--before-close":"_3VYQo","hint-modal__overlay":"_3Enme","hint-modal__image":"_2Nn7v","hint-modal__body":"_bzN9e","hint-modal__close-button":"_3xbis"};
|
|
8116
8172
|
|
|
8117
|
-
var _excluded$
|
|
8173
|
+
var _excluded$2A = ["header", "children", "mediaUrl", "onClose", "modalId", "primaryButton", "testId"];
|
|
8118
8174
|
var HintModal$1 = function HintModal(_ref) {
|
|
8119
8175
|
var header = _ref.header,
|
|
8120
8176
|
children = _ref.children,
|
|
@@ -8123,7 +8179,7 @@ var HintModal$1 = function HintModal(_ref) {
|
|
|
8123
8179
|
modalId = _ref.modalId,
|
|
8124
8180
|
primaryButton = _ref.primaryButton,
|
|
8125
8181
|
testId = _ref.testId,
|
|
8126
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8182
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$2A);
|
|
8127
8183
|
var __ = useTranslation('HintModal');
|
|
8128
8184
|
var _useState = React.useState(false),
|
|
8129
8185
|
doNotShowAgain = _useState[0],
|
|
@@ -8348,7 +8404,7 @@ var DataTableEditableCellElement = function DataTableEditableCellElement(_ref, r
|
|
|
8348
8404
|
};
|
|
8349
8405
|
var DataTableEditableCell = React.forwardRef(DataTableEditableCellElement);
|
|
8350
8406
|
|
|
8351
|
-
var _excluded$
|
|
8407
|
+
var _excluded$2B = ["children", "onClick", "isSelected", "actions", "hasDefaultPadding", "hasDefaultCell", "testId"];
|
|
8352
8408
|
var DataTableRowComponent = function DataTableRowComponent(_ref, ref) {
|
|
8353
8409
|
var _classnames;
|
|
8354
8410
|
var children = _ref.children,
|
|
@@ -8360,7 +8416,7 @@ var DataTableRowComponent = function DataTableRowComponent(_ref, ref) {
|
|
|
8360
8416
|
_ref$hasDefaultCell = _ref.hasDefaultCell,
|
|
8361
8417
|
hasDefaultCell = _ref$hasDefaultCell === void 0 ? true : _ref$hasDefaultCell,
|
|
8362
8418
|
testId = _ref.testId,
|
|
8363
|
-
nativeDivProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8419
|
+
nativeDivProps = _objectWithoutPropertiesLoose(_ref, _excluded$2B);
|
|
8364
8420
|
var _useDataTableContext = useDataTableContext(),
|
|
8365
8421
|
showActionMenu = _useDataTableContext.showActionMenu;
|
|
8366
8422
|
var styleNames = classnames(styles$z['item'], (_classnames = {}, _classnames[styles$z['clickable']] = onClick, _classnames[styles$z['selected']] = isSelected, _classnames));
|
|
@@ -8573,7 +8629,7 @@ var DataTableStickyColumnsContainer = function DataTableStickyColumnsContainer(_
|
|
|
8573
8629
|
}, children));
|
|
8574
8630
|
};
|
|
8575
8631
|
|
|
8576
|
-
var _excluded$
|
|
8632
|
+
var _excluded$2C = ["items", "columns", "itemComponent", "maxHeight", "hasPrevious", "hasNext", "onPreviousClick", "onNextClick", "onSort", "isLoading", "showActionMenu", "footerComponent", "hasVerticalBorders", "testId", "skeletonRowLayout", "stickyColumns"];
|
|
8577
8633
|
var DataTable = function DataTable(_ref) {
|
|
8578
8634
|
var _classNames, _classNames2, _classNames3;
|
|
8579
8635
|
var items = _ref.items,
|
|
@@ -8597,7 +8653,7 @@ var DataTable = function DataTable(_ref) {
|
|
|
8597
8653
|
testId = _ref.testId,
|
|
8598
8654
|
skeletonRowLayout = _ref.skeletonRowLayout,
|
|
8599
8655
|
stickyColumns = _ref.stickyColumns,
|
|
8600
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8656
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2C);
|
|
8601
8657
|
var _getDataProps = getDataProps(otherProps),
|
|
8602
8658
|
dataProps = _getDataProps.dataProps;
|
|
8603
8659
|
var prevItemsRef = React.useRef([]);
|
|
@@ -8784,11 +8840,11 @@ var isReactSelectElement = function isReactSelectElement(element) {
|
|
|
8784
8840
|
|
|
8785
8841
|
var styles$M = {"custom-control":"_1JTKu"};
|
|
8786
8842
|
|
|
8787
|
-
var _excluded$
|
|
8843
|
+
var _excluded$2D = ["children"];
|
|
8788
8844
|
function CustomControl(_ref) {
|
|
8789
8845
|
var _props$getValue;
|
|
8790
8846
|
var children = _ref.children,
|
|
8791
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8847
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2D);
|
|
8792
8848
|
var SelectedOptionPrefix = props.selectProps.componentsProps.SelectedOptionPrefix;
|
|
8793
8849
|
var selectedOption = (_props$getValue = props.getValue()) === null || _props$getValue === void 0 ? void 0 : _props$getValue[0];
|
|
8794
8850
|
return React__default.createElement(Select.components.Control, _extends({}, props), SelectedOptionPrefix && selectedOption ? React__default.createElement("div", {
|
|
@@ -8805,10 +8861,10 @@ function CustomControl(_ref) {
|
|
|
8805
8861
|
}, props)), children)) : children);
|
|
8806
8862
|
}
|
|
8807
8863
|
|
|
8808
|
-
var _excluded$
|
|
8864
|
+
var _excluded$2E = ["children"];
|
|
8809
8865
|
function CustomOption(_ref) {
|
|
8810
8866
|
var children = _ref.children,
|
|
8811
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8867
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2E);
|
|
8812
8868
|
var UserCustomOption = props.selectProps.componentsProps.UserCustomOption;
|
|
8813
8869
|
return React__default.createElement(Select.components.Option, _extends({}, props), React__default.createElement(UserCustomOption, _extends({}, props), children));
|
|
8814
8870
|
}
|
|
@@ -8961,10 +9017,10 @@ var CustomContainer = function CustomContainer(props) {
|
|
|
8961
9017
|
|
|
8962
9018
|
var styles$N = {"custom-menu-text-field":"_2bu6-","custom-menu-hr":"_1cgU7","custom-menu-div":"_1khlU"};
|
|
8963
9019
|
|
|
8964
|
-
var _excluded$
|
|
9020
|
+
var _excluded$2F = ["children"];
|
|
8965
9021
|
function CustomMenu(_ref) {
|
|
8966
9022
|
var children = _ref.children,
|
|
8967
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
9023
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2F);
|
|
8968
9024
|
var _props$selectProps$co = props.selectProps.componentsProps,
|
|
8969
9025
|
creatableButton = _props$selectProps$co.creatableButton,
|
|
8970
9026
|
onMenuInputFocus = _props$selectProps$co.onMenuInputFocus,
|
|
@@ -9684,11 +9740,11 @@ var TextAreaField = function TextAreaField(_ref) {
|
|
|
9684
9740
|
}, toolbar)));
|
|
9685
9741
|
};
|
|
9686
9742
|
|
|
9687
|
-
var _excluded$
|
|
9743
|
+
var _excluded$2G = ["prefix", "suffix"];
|
|
9688
9744
|
var TextFieldElement = function TextFieldElement(_ref, ref) {
|
|
9689
9745
|
var prefix = _ref.prefix,
|
|
9690
9746
|
suffix = _ref.suffix,
|
|
9691
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
9747
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2G);
|
|
9692
9748
|
var _useTextField = useTextField(_extends({}, props, {
|
|
9693
9749
|
ref: ref
|
|
9694
9750
|
})),
|
|
@@ -10282,12 +10338,12 @@ var MultiSelectField = function MultiSelectField(_ref) {
|
|
|
10282
10338
|
|
|
10283
10339
|
var styles$11 = {"custom-list":"_12jq3"};
|
|
10284
10340
|
|
|
10285
|
-
var _excluded$
|
|
10341
|
+
var _excluded$2H = ["children", "hasMoreOptions", "hasMoreOptionsFirstLoad"];
|
|
10286
10342
|
var CustomList = function CustomList(_ref) {
|
|
10287
10343
|
var children = _ref.children,
|
|
10288
10344
|
hasMoreOptions = _ref.hasMoreOptions,
|
|
10289
10345
|
hasMoreOptionsFirstLoad = _ref.hasMoreOptionsFirstLoad,
|
|
10290
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
10346
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2H);
|
|
10291
10347
|
var __ = useTranslation('AsyncSelectField');
|
|
10292
10348
|
var showFooter = hasMoreOptions;
|
|
10293
10349
|
if (props.selectProps.inputValue === '' && typeof hasMoreOptionsFirstLoad === 'boolean') {
|
|
@@ -10300,10 +10356,10 @@ var CustomList = function CustomList(_ref) {
|
|
|
10300
10356
|
}, __('moreOptionsPlaceholder')))));
|
|
10301
10357
|
};
|
|
10302
10358
|
|
|
10303
|
-
var _excluded$
|
|
10359
|
+
var _excluded$2I = ["loadOptions"];
|
|
10304
10360
|
var AsyncSelectField$1 = function AsyncSelectField(_ref) {
|
|
10305
10361
|
var loadOptions = _ref.loadOptions,
|
|
10306
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
10362
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2I);
|
|
10307
10363
|
var _useState = React.useState(false),
|
|
10308
10364
|
hasMoreOptions = _useState[0],
|
|
10309
10365
|
setHasMoreOptions = _useState[1];
|
|
@@ -11114,7 +11170,7 @@ var TimeFieldDropdown = function TimeFieldDropdown(_ref) {
|
|
|
11114
11170
|
})));
|
|
11115
11171
|
};
|
|
11116
11172
|
|
|
11117
|
-
var _excluded$
|
|
11173
|
+
var _excluded$2J = ["interval", "startTime", "prefix", "endField", "duration"];
|
|
11118
11174
|
var TimeFieldElement = function TimeFieldElement(_ref, forwardedRef) {
|
|
11119
11175
|
var _ref$interval = _ref.interval,
|
|
11120
11176
|
interval = _ref$interval === void 0 ? 15 : _ref$interval,
|
|
@@ -11123,7 +11179,7 @@ var TimeFieldElement = function TimeFieldElement(_ref, forwardedRef) {
|
|
|
11123
11179
|
_ref$endField = _ref.endField,
|
|
11124
11180
|
endField = _ref$endField === void 0 ? false : _ref$endField,
|
|
11125
11181
|
duration = _ref.duration,
|
|
11126
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
11182
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2J);
|
|
11127
11183
|
var internalRef = React.useRef(null);
|
|
11128
11184
|
var ref = forwardedRef || internalRef;
|
|
11129
11185
|
var _useState = React.useState(allOtherProps.value || allOtherProps.defaultValue),
|
|
@@ -11307,13 +11363,13 @@ var styles$14 = {"currency-field__mask-display":"_2K8Ob"};
|
|
|
11307
11363
|
var CURRENCY_DISPLAY_DEFAULT_MARGIN = 8;
|
|
11308
11364
|
var CURRENCY_DISPLAY_MARGIN_BUFFER = 1;
|
|
11309
11365
|
|
|
11310
|
-
var _excluded$
|
|
11366
|
+
var _excluded$2K = ["currencySymbol", "step"];
|
|
11311
11367
|
var CurrencyFieldElement = function CurrencyFieldElement(_ref, forwardedRef) {
|
|
11312
11368
|
var _ref$currencySymbol = _ref.currencySymbol,
|
|
11313
11369
|
currencySymbol = _ref$currencySymbol === void 0 ? '$' : _ref$currencySymbol,
|
|
11314
11370
|
_ref$step = _ref.step,
|
|
11315
11371
|
step = _ref$step === void 0 ? 0.01 : _ref$step,
|
|
11316
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
11372
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2K);
|
|
11317
11373
|
var _useState = React.useState(CURRENCY_DISPLAY_DEFAULT_MARGIN),
|
|
11318
11374
|
displayPadding = _useState[0],
|
|
11319
11375
|
setDisplayPadding = _useState[1];
|
|
@@ -11377,7 +11433,7 @@ var CurrencyFieldElement = function CurrencyFieldElement(_ref, forwardedRef) {
|
|
|
11377
11433
|
};
|
|
11378
11434
|
var CurrencyField = React.forwardRef(CurrencyFieldElement);
|
|
11379
11435
|
|
|
11380
|
-
var _excluded$
|
|
11436
|
+
var _excluded$2L = ["max", "min", "precision", "stepSize", "prefix"];
|
|
11381
11437
|
var PercentageElement = function PercentageElement(_ref, ref) {
|
|
11382
11438
|
var _ref$max = _ref.max,
|
|
11383
11439
|
max = _ref$max === void 0 ? 100 : _ref$max,
|
|
@@ -11388,7 +11444,7 @@ var PercentageElement = function PercentageElement(_ref, ref) {
|
|
|
11388
11444
|
_ref$stepSize = _ref.stepSize,
|
|
11389
11445
|
stepSize = _ref$stepSize === void 0 ? 1 : _ref$stepSize,
|
|
11390
11446
|
prefix = _ref.prefix,
|
|
11391
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
11447
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2L);
|
|
11392
11448
|
var _useTextField = useTextField(_extends({}, allOtherProps, {
|
|
11393
11449
|
ref: ref
|
|
11394
11450
|
})),
|
|
@@ -12367,12 +12423,12 @@ var CountrySelector = function CountrySelector(_ref) {
|
|
|
12367
12423
|
}))));
|
|
12368
12424
|
};
|
|
12369
12425
|
|
|
12370
|
-
var _excluded$
|
|
12426
|
+
var _excluded$2M = ["disabledCountry"];
|
|
12371
12427
|
var PhoneField = function PhoneField(_ref) {
|
|
12372
12428
|
var _classNames;
|
|
12373
12429
|
var _ref$disabledCountry = _ref.disabledCountry,
|
|
12374
12430
|
disabledCountry = _ref$disabledCountry === void 0 ? false : _ref$disabledCountry,
|
|
12375
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
12431
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2M);
|
|
12376
12432
|
var inputRef = React.useRef(null);
|
|
12377
12433
|
var _usePhoneField = usePhoneField(_extends({}, props, {
|
|
12378
12434
|
ref: inputRef
|
|
@@ -12457,14 +12513,14 @@ var PhoneField = function PhoneField(_ref) {
|
|
|
12457
12513
|
|
|
12458
12514
|
var styles$17 = {"badge":"_1QLaK","badge--warning":"_qsFWw","badge--danger":"_359Cc","badge--success":"_2AOEK","badge--info":"_1mLjf"};
|
|
12459
12515
|
|
|
12460
|
-
var _excluded$
|
|
12516
|
+
var _excluded$2N = ["children", "theme", "title", "testId"];
|
|
12461
12517
|
var BadgeElement = function BadgeElement(_ref, forwardedRef) {
|
|
12462
12518
|
var _classnames;
|
|
12463
12519
|
var children = _ref.children,
|
|
12464
12520
|
theme = _ref.theme,
|
|
12465
12521
|
title = _ref.title,
|
|
12466
12522
|
testId = _ref.testId,
|
|
12467
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
12523
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2N);
|
|
12468
12524
|
var internalRef = React.useRef(null);
|
|
12469
12525
|
var ref = forwardedRef || internalRef;
|
|
12470
12526
|
React.useLayoutEffect(function () {
|
|
@@ -12931,6 +12987,7 @@ exports.IconGreatMonochromatic = IconGreatMonochromatic;
|
|
|
12931
12987
|
exports.IconGrinBeam = IconGrinBeam;
|
|
12932
12988
|
exports.IconGripVertical = IconGripVertical;
|
|
12933
12989
|
exports.IconHandshake = IconHandshake;
|
|
12990
|
+
exports.IconHatChef = IconHatChef;
|
|
12934
12991
|
exports.IconImage = IconImage;
|
|
12935
12992
|
exports.IconInfoCircle = IconInfoCircle;
|
|
12936
12993
|
exports.IconIslandTropical = IconIslandTropical;
|
|
@@ -12956,6 +13013,7 @@ exports.IconPaperclip = IconPaperclip;
|
|
|
12956
13013
|
exports.IconPencil = IconPencil;
|
|
12957
13014
|
exports.IconPercentage = IconPercentage;
|
|
12958
13015
|
exports.IconPhone = IconPhone;
|
|
13016
|
+
exports.IconPlateUtensils = IconPlateUtensils;
|
|
12959
13017
|
exports.IconPlug = IconPlug;
|
|
12960
13018
|
exports.IconPlus = IconPlus;
|
|
12961
13019
|
exports.IconPrint = IconPrint;
|