@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.modern.js
CHANGED
|
@@ -3552,13 +3552,41 @@ var IconHandshake = forwardRef(function (_ref, ref) {
|
|
|
3552
3552
|
IconHandshake.displayName = 'IconHandshake';
|
|
3553
3553
|
|
|
3554
3554
|
var _excluded$1l = ["testId", "size", "color", "style"];
|
|
3555
|
+
var IconHatChef = forwardRef(function (_ref, ref) {
|
|
3556
|
+
var _ref$testId = _ref.testId,
|
|
3557
|
+
testId = _ref$testId === void 0 ? 'icon-hat-chef' : _ref$testId,
|
|
3558
|
+
size = _ref.size,
|
|
3559
|
+
color = _ref.color,
|
|
3560
|
+
style = _ref.style,
|
|
3561
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1l);
|
|
3562
|
+
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3563
|
+
var styleProps = {
|
|
3564
|
+
size: !size && isInsideButton ? 'medium' : size,
|
|
3565
|
+
color: color,
|
|
3566
|
+
style: style
|
|
3567
|
+
};
|
|
3568
|
+
return React__default.createElement("svg", _extends({
|
|
3569
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3570
|
+
fill: "none",
|
|
3571
|
+
viewBox: "0 0 20 20",
|
|
3572
|
+
style: getIconStyles(styleProps),
|
|
3573
|
+
"data-testid": testId,
|
|
3574
|
+
ref: ref
|
|
3575
|
+
}, props), React__default.createElement("path", {
|
|
3576
|
+
fill: "currentColor",
|
|
3577
|
+
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"
|
|
3578
|
+
}));
|
|
3579
|
+
});
|
|
3580
|
+
IconHatChef.displayName = 'IconHatChef';
|
|
3581
|
+
|
|
3582
|
+
var _excluded$1m = ["testId", "size", "color", "style"];
|
|
3555
3583
|
var IconImage = forwardRef(function (_ref, ref) {
|
|
3556
3584
|
var _ref$testId = _ref.testId,
|
|
3557
3585
|
testId = _ref$testId === void 0 ? 'icon-image' : _ref$testId,
|
|
3558
3586
|
size = _ref.size,
|
|
3559
3587
|
color = _ref.color,
|
|
3560
3588
|
style = _ref.style,
|
|
3561
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3589
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1m);
|
|
3562
3590
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3563
3591
|
var styleProps = {
|
|
3564
3592
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3586,14 +3614,14 @@ var IconImage = forwardRef(function (_ref, ref) {
|
|
|
3586
3614
|
});
|
|
3587
3615
|
IconImage.displayName = 'IconImage';
|
|
3588
3616
|
|
|
3589
|
-
var _excluded$
|
|
3617
|
+
var _excluded$1n = ["testId", "size", "color", "style"];
|
|
3590
3618
|
var IconIslandTropical = forwardRef(function (_ref, ref) {
|
|
3591
3619
|
var _ref$testId = _ref.testId,
|
|
3592
3620
|
testId = _ref$testId === void 0 ? 'icon-island-tropical' : _ref$testId,
|
|
3593
3621
|
size = _ref.size,
|
|
3594
3622
|
color = _ref.color,
|
|
3595
3623
|
style = _ref.style,
|
|
3596
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3624
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1n);
|
|
3597
3625
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3598
3626
|
var styleProps = {
|
|
3599
3627
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3616,14 +3644,14 @@ var IconIslandTropical = forwardRef(function (_ref, ref) {
|
|
|
3616
3644
|
});
|
|
3617
3645
|
IconIslandTropical.displayName = 'IconIslandTropical';
|
|
3618
3646
|
|
|
3619
|
-
var _excluded$
|
|
3647
|
+
var _excluded$1o = ["testId", "size", "color", "style"];
|
|
3620
3648
|
var IconItalic = forwardRef(function (_ref, ref) {
|
|
3621
3649
|
var _ref$testId = _ref.testId,
|
|
3622
3650
|
testId = _ref$testId === void 0 ? 'icon-italic' : _ref$testId,
|
|
3623
3651
|
size = _ref.size,
|
|
3624
3652
|
color = _ref.color,
|
|
3625
3653
|
style = _ref.style,
|
|
3626
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3654
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1o);
|
|
3627
3655
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3628
3656
|
var styleProps = {
|
|
3629
3657
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3644,14 +3672,14 @@ var IconItalic = forwardRef(function (_ref, ref) {
|
|
|
3644
3672
|
});
|
|
3645
3673
|
IconItalic.displayName = 'IconItalic';
|
|
3646
3674
|
|
|
3647
|
-
var _excluded$
|
|
3675
|
+
var _excluded$1p = ["testId", "size", "color", "style"];
|
|
3648
3676
|
var IconLaptopSearch = forwardRef(function (_ref, ref) {
|
|
3649
3677
|
var _ref$testId = _ref.testId,
|
|
3650
3678
|
testId = _ref$testId === void 0 ? 'icon-laptop-search' : _ref$testId,
|
|
3651
3679
|
size = _ref.size,
|
|
3652
3680
|
color = _ref.color,
|
|
3653
3681
|
style = _ref.style,
|
|
3654
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3682
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1p);
|
|
3655
3683
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3656
3684
|
var styleProps = {
|
|
3657
3685
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3681,14 +3709,14 @@ var IconLaptopSearch = forwardRef(function (_ref, ref) {
|
|
|
3681
3709
|
});
|
|
3682
3710
|
IconLaptopSearch.displayName = 'IconLaptopSearch';
|
|
3683
3711
|
|
|
3684
|
-
var _excluded$
|
|
3712
|
+
var _excluded$1q = ["testId", "size", "color", "style"];
|
|
3685
3713
|
var IconLink = forwardRef(function (_ref, ref) {
|
|
3686
3714
|
var _ref$testId = _ref.testId,
|
|
3687
3715
|
testId = _ref$testId === void 0 ? 'icon-link' : _ref$testId,
|
|
3688
3716
|
size = _ref.size,
|
|
3689
3717
|
color = _ref.color,
|
|
3690
3718
|
style = _ref.style,
|
|
3691
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3719
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1q);
|
|
3692
3720
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3693
3721
|
var styleProps = {
|
|
3694
3722
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3716,14 +3744,14 @@ var IconLink = forwardRef(function (_ref, ref) {
|
|
|
3716
3744
|
});
|
|
3717
3745
|
IconLink.displayName = 'IconLink';
|
|
3718
3746
|
|
|
3719
|
-
var _excluded$
|
|
3747
|
+
var _excluded$1r = ["testId", "size", "color", "style"];
|
|
3720
3748
|
var IconListOI = forwardRef(function (_ref, ref) {
|
|
3721
3749
|
var _ref$testId = _ref.testId,
|
|
3722
3750
|
testId = _ref$testId === void 0 ? 'icon-list-o-i' : _ref$testId,
|
|
3723
3751
|
size = _ref.size,
|
|
3724
3752
|
color = _ref.color,
|
|
3725
3753
|
style = _ref.style,
|
|
3726
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3754
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1r);
|
|
3727
3755
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3728
3756
|
var styleProps = {
|
|
3729
3757
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3751,14 +3779,14 @@ var IconListOI = forwardRef(function (_ref, ref) {
|
|
|
3751
3779
|
});
|
|
3752
3780
|
IconListOI.displayName = 'IconListOI';
|
|
3753
3781
|
|
|
3754
|
-
var _excluded$
|
|
3782
|
+
var _excluded$1s = ["testId", "size", "color", "style"];
|
|
3755
3783
|
var IconList = forwardRef(function (_ref, ref) {
|
|
3756
3784
|
var _ref$testId = _ref.testId,
|
|
3757
3785
|
testId = _ref$testId === void 0 ? 'icon-list' : _ref$testId,
|
|
3758
3786
|
size = _ref.size,
|
|
3759
3787
|
color = _ref.color,
|
|
3760
3788
|
style = _ref.style,
|
|
3761
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3789
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1s);
|
|
3762
3790
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3763
3791
|
var styleProps = {
|
|
3764
3792
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3779,14 +3807,14 @@ var IconList = forwardRef(function (_ref, ref) {
|
|
|
3779
3807
|
});
|
|
3780
3808
|
IconList.displayName = 'IconList';
|
|
3781
3809
|
|
|
3782
|
-
var _excluded$
|
|
3810
|
+
var _excluded$1t = ["testId", "size", "color", "style"];
|
|
3783
3811
|
var IconLock = forwardRef(function (_ref, ref) {
|
|
3784
3812
|
var _ref$testId = _ref.testId,
|
|
3785
3813
|
testId = _ref$testId === void 0 ? 'icon-lock' : _ref$testId,
|
|
3786
3814
|
size = _ref.size,
|
|
3787
3815
|
color = _ref.color,
|
|
3788
3816
|
style = _ref.style,
|
|
3789
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3817
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1t);
|
|
3790
3818
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3791
3819
|
var styleProps = {
|
|
3792
3820
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3807,14 +3835,14 @@ var IconLock = forwardRef(function (_ref, ref) {
|
|
|
3807
3835
|
});
|
|
3808
3836
|
IconLock.displayName = 'IconLock';
|
|
3809
3837
|
|
|
3810
|
-
var _excluded$
|
|
3838
|
+
var _excluded$1u = ["testId", "size", "color", "style"];
|
|
3811
3839
|
var IconMagicSolid = forwardRef(function (_ref, ref) {
|
|
3812
3840
|
var _ref$testId = _ref.testId,
|
|
3813
3841
|
testId = _ref$testId === void 0 ? 'icon-magic-solid' : _ref$testId,
|
|
3814
3842
|
size = _ref.size,
|
|
3815
3843
|
color = _ref.color,
|
|
3816
3844
|
style = _ref.style,
|
|
3817
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3845
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1u);
|
|
3818
3846
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3819
3847
|
var styleProps = {
|
|
3820
3848
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3837,14 +3865,14 @@ var IconMagicSolid = forwardRef(function (_ref, ref) {
|
|
|
3837
3865
|
});
|
|
3838
3866
|
IconMagicSolid.displayName = 'IconMagicSolid';
|
|
3839
3867
|
|
|
3840
|
-
var _excluded$
|
|
3868
|
+
var _excluded$1v = ["testId", "size", "color", "style"];
|
|
3841
3869
|
var IconMapMarker = forwardRef(function (_ref, ref) {
|
|
3842
3870
|
var _ref$testId = _ref.testId,
|
|
3843
3871
|
testId = _ref$testId === void 0 ? 'icon-map-marker' : _ref$testId,
|
|
3844
3872
|
size = _ref.size,
|
|
3845
3873
|
color = _ref.color,
|
|
3846
3874
|
style = _ref.style,
|
|
3847
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3875
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1v);
|
|
3848
3876
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3849
3877
|
var styleProps = {
|
|
3850
3878
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3867,14 +3895,14 @@ var IconMapMarker = forwardRef(function (_ref, ref) {
|
|
|
3867
3895
|
});
|
|
3868
3896
|
IconMapMarker.displayName = 'IconMapMarker';
|
|
3869
3897
|
|
|
3870
|
-
var _excluded$
|
|
3898
|
+
var _excluded$1w = ["testId", "size", "color", "style"];
|
|
3871
3899
|
var IconMegaphone = forwardRef(function (_ref, ref) {
|
|
3872
3900
|
var _ref$testId = _ref.testId,
|
|
3873
3901
|
testId = _ref$testId === void 0 ? 'icon-megaphone' : _ref$testId,
|
|
3874
3902
|
size = _ref.size,
|
|
3875
3903
|
color = _ref.color,
|
|
3876
3904
|
style = _ref.style,
|
|
3877
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3905
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1w);
|
|
3878
3906
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3879
3907
|
var styleProps = {
|
|
3880
3908
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3897,14 +3925,14 @@ var IconMegaphone = forwardRef(function (_ref, ref) {
|
|
|
3897
3925
|
});
|
|
3898
3926
|
IconMegaphone.displayName = 'IconMegaphone';
|
|
3899
3927
|
|
|
3900
|
-
var _excluded$
|
|
3928
|
+
var _excluded$1x = ["testId", "size", "color", "style"];
|
|
3901
3929
|
var IconMessages = forwardRef(function (_ref, ref) {
|
|
3902
3930
|
var _ref$testId = _ref.testId,
|
|
3903
3931
|
testId = _ref$testId === void 0 ? 'icon-messages' : _ref$testId,
|
|
3904
3932
|
size = _ref.size,
|
|
3905
3933
|
color = _ref.color,
|
|
3906
3934
|
style = _ref.style,
|
|
3907
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3935
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1x);
|
|
3908
3936
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3909
3937
|
var styleProps = {
|
|
3910
3938
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3925,14 +3953,14 @@ var IconMessages = forwardRef(function (_ref, ref) {
|
|
|
3925
3953
|
});
|
|
3926
3954
|
IconMessages.displayName = 'IconMessages';
|
|
3927
3955
|
|
|
3928
|
-
var _excluded$
|
|
3956
|
+
var _excluded$1y = ["testId", "size", "color", "style"];
|
|
3929
3957
|
var IconMinusCircle = forwardRef(function (_ref, ref) {
|
|
3930
3958
|
var _ref$testId = _ref.testId,
|
|
3931
3959
|
testId = _ref$testId === void 0 ? 'icon-minus-circle' : _ref$testId,
|
|
3932
3960
|
size = _ref.size,
|
|
3933
3961
|
color = _ref.color,
|
|
3934
3962
|
style = _ref.style,
|
|
3935
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3963
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1y);
|
|
3936
3964
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3937
3965
|
var styleProps = {
|
|
3938
3966
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3953,14 +3981,14 @@ var IconMinusCircle = forwardRef(function (_ref, ref) {
|
|
|
3953
3981
|
});
|
|
3954
3982
|
IconMinusCircle.displayName = 'IconMinusCircle';
|
|
3955
3983
|
|
|
3956
|
-
var _excluded$
|
|
3984
|
+
var _excluded$1z = ["testId", "size", "color", "style"];
|
|
3957
3985
|
var IconMinus = forwardRef(function (_ref, ref) {
|
|
3958
3986
|
var _ref$testId = _ref.testId,
|
|
3959
3987
|
testId = _ref$testId === void 0 ? 'icon-minus' : _ref$testId,
|
|
3960
3988
|
size = _ref.size,
|
|
3961
3989
|
color = _ref.color,
|
|
3962
3990
|
style = _ref.style,
|
|
3963
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3991
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1z);
|
|
3964
3992
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3965
3993
|
var styleProps = {
|
|
3966
3994
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3981,14 +4009,14 @@ var IconMinus = forwardRef(function (_ref, ref) {
|
|
|
3981
4009
|
});
|
|
3982
4010
|
IconMinus.displayName = 'IconMinus';
|
|
3983
4011
|
|
|
3984
|
-
var _excluded$
|
|
4012
|
+
var _excluded$1A = ["testId", "size", "color", "style"];
|
|
3985
4013
|
var IconMoneyBill = forwardRef(function (_ref, ref) {
|
|
3986
4014
|
var _ref$testId = _ref.testId,
|
|
3987
4015
|
testId = _ref$testId === void 0 ? 'icon-money-bill' : _ref$testId,
|
|
3988
4016
|
size = _ref.size,
|
|
3989
4017
|
color = _ref.color,
|
|
3990
4018
|
style = _ref.style,
|
|
3991
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4019
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1A);
|
|
3992
4020
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3993
4021
|
var styleProps = {
|
|
3994
4022
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4009,14 +4037,14 @@ var IconMoneyBill = forwardRef(function (_ref, ref) {
|
|
|
4009
4037
|
});
|
|
4010
4038
|
IconMoneyBill.displayName = 'IconMoneyBill';
|
|
4011
4039
|
|
|
4012
|
-
var _excluded$
|
|
4040
|
+
var _excluded$1B = ["testId", "size", "color", "style"];
|
|
4013
4041
|
var IconMugSaucerSolid = forwardRef(function (_ref, ref) {
|
|
4014
4042
|
var _ref$testId = _ref.testId,
|
|
4015
4043
|
testId = _ref$testId === void 0 ? 'icon-mug-saucer-solid' : _ref$testId,
|
|
4016
4044
|
size = _ref.size,
|
|
4017
4045
|
color = _ref.color,
|
|
4018
4046
|
style = _ref.style,
|
|
4019
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4047
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1B);
|
|
4020
4048
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4021
4049
|
var styleProps = {
|
|
4022
4050
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4037,14 +4065,14 @@ var IconMugSaucerSolid = forwardRef(function (_ref, ref) {
|
|
|
4037
4065
|
});
|
|
4038
4066
|
IconMugSaucerSolid.displayName = 'IconMugSaucerSolid';
|
|
4039
4067
|
|
|
4040
|
-
var _excluded$
|
|
4068
|
+
var _excluded$1C = ["testId", "size", "color", "style"];
|
|
4041
4069
|
var IconNotesMedical = forwardRef(function (_ref, ref) {
|
|
4042
4070
|
var _ref$testId = _ref.testId,
|
|
4043
4071
|
testId = _ref$testId === void 0 ? 'icon-notes-medical' : _ref$testId,
|
|
4044
4072
|
size = _ref.size,
|
|
4045
4073
|
color = _ref.color,
|
|
4046
4074
|
style = _ref.style,
|
|
4047
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4075
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1C);
|
|
4048
4076
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4049
4077
|
var styleProps = {
|
|
4050
4078
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4065,14 +4093,14 @@ var IconNotesMedical = forwardRef(function (_ref, ref) {
|
|
|
4065
4093
|
});
|
|
4066
4094
|
IconNotesMedical.displayName = 'IconNotesMedical';
|
|
4067
4095
|
|
|
4068
|
-
var _excluded$
|
|
4096
|
+
var _excluded$1D = ["testId", "size", "color", "style"];
|
|
4069
4097
|
var IconOvertime = forwardRef(function (_ref, ref) {
|
|
4070
4098
|
var _ref$testId = _ref.testId,
|
|
4071
4099
|
testId = _ref$testId === void 0 ? 'icon-overtime' : _ref$testId,
|
|
4072
4100
|
size = _ref.size,
|
|
4073
4101
|
color = _ref.color,
|
|
4074
4102
|
style = _ref.style,
|
|
4075
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4103
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1D);
|
|
4076
4104
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4077
4105
|
var styleProps = {
|
|
4078
4106
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4100,14 +4128,14 @@ var IconOvertime = forwardRef(function (_ref, ref) {
|
|
|
4100
4128
|
});
|
|
4101
4129
|
IconOvertime.displayName = 'IconOvertime';
|
|
4102
4130
|
|
|
4103
|
-
var _excluded$
|
|
4131
|
+
var _excluded$1E = ["testId", "size", "color", "style"];
|
|
4104
4132
|
var IconPaperPlaneClock = forwardRef(function (_ref, ref) {
|
|
4105
4133
|
var _ref$testId = _ref.testId,
|
|
4106
4134
|
testId = _ref$testId === void 0 ? 'icon-paper-plane-clock' : _ref$testId,
|
|
4107
4135
|
size = _ref.size,
|
|
4108
4136
|
color = _ref.color,
|
|
4109
4137
|
style = _ref.style,
|
|
4110
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4138
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1E);
|
|
4111
4139
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4112
4140
|
var styleProps = {
|
|
4113
4141
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4139,14 +4167,14 @@ var IconPaperPlaneClock = forwardRef(function (_ref, ref) {
|
|
|
4139
4167
|
});
|
|
4140
4168
|
IconPaperPlaneClock.displayName = 'IconPaperPlaneClock';
|
|
4141
4169
|
|
|
4142
|
-
var _excluded$
|
|
4170
|
+
var _excluded$1F = ["testId", "size", "color", "style"];
|
|
4143
4171
|
var IconPaperPlane = forwardRef(function (_ref, ref) {
|
|
4144
4172
|
var _ref$testId = _ref.testId,
|
|
4145
4173
|
testId = _ref$testId === void 0 ? 'icon-paper-plane' : _ref$testId,
|
|
4146
4174
|
size = _ref.size,
|
|
4147
4175
|
color = _ref.color,
|
|
4148
4176
|
style = _ref.style,
|
|
4149
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4177
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1F);
|
|
4150
4178
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4151
4179
|
var styleProps = {
|
|
4152
4180
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4169,14 +4197,14 @@ var IconPaperPlane = forwardRef(function (_ref, ref) {
|
|
|
4169
4197
|
});
|
|
4170
4198
|
IconPaperPlane.displayName = 'IconPaperPlane';
|
|
4171
4199
|
|
|
4172
|
-
var _excluded$
|
|
4200
|
+
var _excluded$1G = ["testId", "size", "color", "style"];
|
|
4173
4201
|
var IconPaperclip = forwardRef(function (_ref, ref) {
|
|
4174
4202
|
var _ref$testId = _ref.testId,
|
|
4175
4203
|
testId = _ref$testId === void 0 ? 'icon-paperclip' : _ref$testId,
|
|
4176
4204
|
size = _ref.size,
|
|
4177
4205
|
color = _ref.color,
|
|
4178
4206
|
style = _ref.style,
|
|
4179
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4207
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1G);
|
|
4180
4208
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4181
4209
|
var styleProps = {
|
|
4182
4210
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4204,14 +4232,14 @@ var IconPaperclip = forwardRef(function (_ref, ref) {
|
|
|
4204
4232
|
});
|
|
4205
4233
|
IconPaperclip.displayName = 'IconPaperclip';
|
|
4206
4234
|
|
|
4207
|
-
var _excluded$
|
|
4235
|
+
var _excluded$1H = ["testId", "size", "color", "style"];
|
|
4208
4236
|
var IconPencil = forwardRef(function (_ref, ref) {
|
|
4209
4237
|
var _ref$testId = _ref.testId,
|
|
4210
4238
|
testId = _ref$testId === void 0 ? 'icon-pencil' : _ref$testId,
|
|
4211
4239
|
size = _ref.size,
|
|
4212
4240
|
color = _ref.color,
|
|
4213
4241
|
style = _ref.style,
|
|
4214
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4242
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1H);
|
|
4215
4243
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4216
4244
|
var styleProps = {
|
|
4217
4245
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4234,14 +4262,14 @@ var IconPencil = forwardRef(function (_ref, ref) {
|
|
|
4234
4262
|
});
|
|
4235
4263
|
IconPencil.displayName = 'IconPencil';
|
|
4236
4264
|
|
|
4237
|
-
var _excluded$
|
|
4265
|
+
var _excluded$1I = ["testId", "size", "color", "style"];
|
|
4238
4266
|
var IconPercentage = forwardRef(function (_ref, ref) {
|
|
4239
4267
|
var _ref$testId = _ref.testId,
|
|
4240
4268
|
testId = _ref$testId === void 0 ? 'icon-percentage' : _ref$testId,
|
|
4241
4269
|
size = _ref.size,
|
|
4242
4270
|
color = _ref.color,
|
|
4243
4271
|
style = _ref.style,
|
|
4244
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4272
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1I);
|
|
4245
4273
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4246
4274
|
var styleProps = {
|
|
4247
4275
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4262,14 +4290,14 @@ var IconPercentage = forwardRef(function (_ref, ref) {
|
|
|
4262
4290
|
});
|
|
4263
4291
|
IconPercentage.displayName = 'IconPercentage';
|
|
4264
4292
|
|
|
4265
|
-
var _excluded$
|
|
4293
|
+
var _excluded$1J = ["testId", "size", "color", "style"];
|
|
4266
4294
|
var IconPhone = forwardRef(function (_ref, ref) {
|
|
4267
4295
|
var _ref$testId = _ref.testId,
|
|
4268
4296
|
testId = _ref$testId === void 0 ? 'icon-phone' : _ref$testId,
|
|
4269
4297
|
size = _ref.size,
|
|
4270
4298
|
color = _ref.color,
|
|
4271
4299
|
style = _ref.style,
|
|
4272
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4300
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1J);
|
|
4273
4301
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4274
4302
|
var styleProps = {
|
|
4275
4303
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4290,14 +4318,42 @@ var IconPhone = forwardRef(function (_ref, ref) {
|
|
|
4290
4318
|
});
|
|
4291
4319
|
IconPhone.displayName = 'IconPhone';
|
|
4292
4320
|
|
|
4293
|
-
var _excluded$
|
|
4321
|
+
var _excluded$1K = ["testId", "size", "color", "style"];
|
|
4322
|
+
var IconPlateUtensils = forwardRef(function (_ref, ref) {
|
|
4323
|
+
var _ref$testId = _ref.testId,
|
|
4324
|
+
testId = _ref$testId === void 0 ? 'icon-plate-utensils' : _ref$testId,
|
|
4325
|
+
size = _ref.size,
|
|
4326
|
+
color = _ref.color,
|
|
4327
|
+
style = _ref.style,
|
|
4328
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1K);
|
|
4329
|
+
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4330
|
+
var styleProps = {
|
|
4331
|
+
size: !size && isInsideButton ? 'medium' : size,
|
|
4332
|
+
color: color,
|
|
4333
|
+
style: style
|
|
4334
|
+
};
|
|
4335
|
+
return React__default.createElement("svg", _extends({
|
|
4336
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4337
|
+
fill: "none",
|
|
4338
|
+
viewBox: "0 0 20 20",
|
|
4339
|
+
style: getIconStyles(styleProps),
|
|
4340
|
+
"data-testid": testId,
|
|
4341
|
+
ref: ref
|
|
4342
|
+
}, props), React__default.createElement("path", {
|
|
4343
|
+
fill: "currentColor",
|
|
4344
|
+
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"
|
|
4345
|
+
}));
|
|
4346
|
+
});
|
|
4347
|
+
IconPlateUtensils.displayName = 'IconPlateUtensils';
|
|
4348
|
+
|
|
4349
|
+
var _excluded$1L = ["testId", "size", "color", "style"];
|
|
4294
4350
|
var IconPlug = forwardRef(function (_ref, ref) {
|
|
4295
4351
|
var _ref$testId = _ref.testId,
|
|
4296
4352
|
testId = _ref$testId === void 0 ? 'icon-plug' : _ref$testId,
|
|
4297
4353
|
size = _ref.size,
|
|
4298
4354
|
color = _ref.color,
|
|
4299
4355
|
style = _ref.style,
|
|
4300
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4356
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1L);
|
|
4301
4357
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4302
4358
|
var styleProps = {
|
|
4303
4359
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4320,14 +4376,14 @@ var IconPlug = forwardRef(function (_ref, ref) {
|
|
|
4320
4376
|
});
|
|
4321
4377
|
IconPlug.displayName = 'IconPlug';
|
|
4322
4378
|
|
|
4323
|
-
var _excluded$
|
|
4379
|
+
var _excluded$1M = ["testId", "size", "color", "style"];
|
|
4324
4380
|
var IconPlus = forwardRef(function (_ref, ref) {
|
|
4325
4381
|
var _ref$testId = _ref.testId,
|
|
4326
4382
|
testId = _ref$testId === void 0 ? 'icon-plus' : _ref$testId,
|
|
4327
4383
|
size = _ref.size,
|
|
4328
4384
|
color = _ref.color,
|
|
4329
4385
|
style = _ref.style,
|
|
4330
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4386
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1M);
|
|
4331
4387
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4332
4388
|
var styleProps = {
|
|
4333
4389
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4350,14 +4406,14 @@ var IconPlus = forwardRef(function (_ref, ref) {
|
|
|
4350
4406
|
});
|
|
4351
4407
|
IconPlus.displayName = 'IconPlus';
|
|
4352
4408
|
|
|
4353
|
-
var _excluded$
|
|
4409
|
+
var _excluded$1N = ["testId", "size", "color", "style"];
|
|
4354
4410
|
var IconPrint = forwardRef(function (_ref, ref) {
|
|
4355
4411
|
var _ref$testId = _ref.testId,
|
|
4356
4412
|
testId = _ref$testId === void 0 ? 'icon-print' : _ref$testId,
|
|
4357
4413
|
size = _ref.size,
|
|
4358
4414
|
color = _ref.color,
|
|
4359
4415
|
style = _ref.style,
|
|
4360
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4416
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1N);
|
|
4361
4417
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4362
4418
|
var styleProps = {
|
|
4363
4419
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4380,14 +4436,14 @@ var IconPrint = forwardRef(function (_ref, ref) {
|
|
|
4380
4436
|
});
|
|
4381
4437
|
IconPrint.displayName = 'IconPrint';
|
|
4382
4438
|
|
|
4383
|
-
var _excluded$
|
|
4439
|
+
var _excluded$1O = ["testId", "size", "color", "style"];
|
|
4384
4440
|
var IconQuestionCircle = forwardRef(function (_ref, ref) {
|
|
4385
4441
|
var _ref$testId = _ref.testId,
|
|
4386
4442
|
testId = _ref$testId === void 0 ? 'icon-question-circle' : _ref$testId,
|
|
4387
4443
|
size = _ref.size,
|
|
4388
4444
|
color = _ref.color,
|
|
4389
4445
|
style = _ref.style,
|
|
4390
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4446
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1O);
|
|
4391
4447
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4392
4448
|
var styleProps = {
|
|
4393
4449
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4408,14 +4464,14 @@ var IconQuestionCircle = forwardRef(function (_ref, ref) {
|
|
|
4408
4464
|
});
|
|
4409
4465
|
IconQuestionCircle.displayName = 'IconQuestionCircle';
|
|
4410
4466
|
|
|
4411
|
-
var _excluded$
|
|
4467
|
+
var _excluded$1P = ["testId", "size", "color", "style"];
|
|
4412
4468
|
var IconRepeat = forwardRef(function (_ref, ref) {
|
|
4413
4469
|
var _ref$testId = _ref.testId,
|
|
4414
4470
|
testId = _ref$testId === void 0 ? 'icon-repeat' : _ref$testId,
|
|
4415
4471
|
size = _ref.size,
|
|
4416
4472
|
color = _ref.color,
|
|
4417
4473
|
style = _ref.style,
|
|
4418
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4474
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1P);
|
|
4419
4475
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4420
4476
|
var styleProps = {
|
|
4421
4477
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4436,14 +4492,14 @@ var IconRepeat = forwardRef(function (_ref, ref) {
|
|
|
4436
4492
|
});
|
|
4437
4493
|
IconRepeat.displayName = 'IconRepeat';
|
|
4438
4494
|
|
|
4439
|
-
var _excluded$
|
|
4495
|
+
var _excluded$1Q = ["testId", "size", "color", "style"];
|
|
4440
4496
|
var IconReply = forwardRef(function (_ref, ref) {
|
|
4441
4497
|
var _ref$testId = _ref.testId,
|
|
4442
4498
|
testId = _ref$testId === void 0 ? 'icon-reply' : _ref$testId,
|
|
4443
4499
|
size = _ref.size,
|
|
4444
4500
|
color = _ref.color,
|
|
4445
4501
|
style = _ref.style,
|
|
4446
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4502
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Q);
|
|
4447
4503
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4448
4504
|
var styleProps = {
|
|
4449
4505
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4464,14 +4520,14 @@ var IconReply = forwardRef(function (_ref, ref) {
|
|
|
4464
4520
|
});
|
|
4465
4521
|
IconReply.displayName = 'IconReply';
|
|
4466
4522
|
|
|
4467
|
-
var _excluded$
|
|
4523
|
+
var _excluded$1R = ["testId", "size", "color", "style"];
|
|
4468
4524
|
var IconRocket = forwardRef(function (_ref, ref) {
|
|
4469
4525
|
var _ref$testId = _ref.testId,
|
|
4470
4526
|
testId = _ref$testId === void 0 ? 'icon-rocket' : _ref$testId,
|
|
4471
4527
|
size = _ref.size,
|
|
4472
4528
|
color = _ref.color,
|
|
4473
4529
|
style = _ref.style,
|
|
4474
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4530
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1R);
|
|
4475
4531
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4476
4532
|
var styleProps = {
|
|
4477
4533
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4492,14 +4548,14 @@ var IconRocket = forwardRef(function (_ref, ref) {
|
|
|
4492
4548
|
});
|
|
4493
4549
|
IconRocket.displayName = 'IconRocket';
|
|
4494
4550
|
|
|
4495
|
-
var _excluded$
|
|
4551
|
+
var _excluded$1S = ["testId", "size", "color", "style"];
|
|
4496
4552
|
var IconSearch = forwardRef(function (_ref, ref) {
|
|
4497
4553
|
var _ref$testId = _ref.testId,
|
|
4498
4554
|
testId = _ref$testId === void 0 ? 'icon-search' : _ref$testId,
|
|
4499
4555
|
size = _ref.size,
|
|
4500
4556
|
color = _ref.color,
|
|
4501
4557
|
style = _ref.style,
|
|
4502
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4558
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1S);
|
|
4503
4559
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4504
4560
|
var styleProps = {
|
|
4505
4561
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4522,14 +4578,14 @@ var IconSearch = forwardRef(function (_ref, ref) {
|
|
|
4522
4578
|
});
|
|
4523
4579
|
IconSearch.displayName = 'IconSearch';
|
|
4524
4580
|
|
|
4525
|
-
var _excluded$
|
|
4581
|
+
var _excluded$1T = ["testId", "size", "color", "style"];
|
|
4526
4582
|
var IconSignOut = forwardRef(function (_ref, ref) {
|
|
4527
4583
|
var _ref$testId = _ref.testId,
|
|
4528
4584
|
testId = _ref$testId === void 0 ? 'icon-sign-out' : _ref$testId,
|
|
4529
4585
|
size = _ref.size,
|
|
4530
4586
|
color = _ref.color,
|
|
4531
4587
|
style = _ref.style,
|
|
4532
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4588
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1T);
|
|
4533
4589
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4534
4590
|
var styleProps = {
|
|
4535
4591
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4550,14 +4606,14 @@ var IconSignOut = forwardRef(function (_ref, ref) {
|
|
|
4550
4606
|
});
|
|
4551
4607
|
IconSignOut.displayName = 'IconSignOut';
|
|
4552
4608
|
|
|
4553
|
-
var _excluded$
|
|
4609
|
+
var _excluded$1U = ["testId", "size", "color", "style"];
|
|
4554
4610
|
var IconSitemap = forwardRef(function (_ref, ref) {
|
|
4555
4611
|
var _ref$testId = _ref.testId,
|
|
4556
4612
|
testId = _ref$testId === void 0 ? 'icon-sitemap' : _ref$testId,
|
|
4557
4613
|
size = _ref.size,
|
|
4558
4614
|
color = _ref.color,
|
|
4559
4615
|
style = _ref.style,
|
|
4560
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4616
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1U);
|
|
4561
4617
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4562
4618
|
var styleProps = {
|
|
4563
4619
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4580,14 +4636,14 @@ var IconSitemap = forwardRef(function (_ref, ref) {
|
|
|
4580
4636
|
});
|
|
4581
4637
|
IconSitemap.displayName = 'IconSitemap';
|
|
4582
4638
|
|
|
4583
|
-
var _excluded$
|
|
4639
|
+
var _excluded$1V = ["testId", "size", "color", "style"];
|
|
4584
4640
|
var IconSlidersH = forwardRef(function (_ref, ref) {
|
|
4585
4641
|
var _ref$testId = _ref.testId,
|
|
4586
4642
|
testId = _ref$testId === void 0 ? 'icon-sliders-h' : _ref$testId,
|
|
4587
4643
|
size = _ref.size,
|
|
4588
4644
|
color = _ref.color,
|
|
4589
4645
|
style = _ref.style,
|
|
4590
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4646
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1V);
|
|
4591
4647
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4592
4648
|
var styleProps = {
|
|
4593
4649
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4615,14 +4671,14 @@ var IconSlidersH = forwardRef(function (_ref, ref) {
|
|
|
4615
4671
|
});
|
|
4616
4672
|
IconSlidersH.displayName = 'IconSlidersH';
|
|
4617
4673
|
|
|
4618
|
-
var _excluded$
|
|
4674
|
+
var _excluded$1W = ["testId", "size", "color", "style"];
|
|
4619
4675
|
var IconSort = forwardRef(function (_ref, ref) {
|
|
4620
4676
|
var _ref$testId = _ref.testId,
|
|
4621
4677
|
testId = _ref$testId === void 0 ? 'icon-sort' : _ref$testId,
|
|
4622
4678
|
size = _ref.size,
|
|
4623
4679
|
color = _ref.color,
|
|
4624
4680
|
style = _ref.style,
|
|
4625
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4681
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1W);
|
|
4626
4682
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4627
4683
|
var styleProps = {
|
|
4628
4684
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4643,14 +4699,14 @@ var IconSort = forwardRef(function (_ref, ref) {
|
|
|
4643
4699
|
});
|
|
4644
4700
|
IconSort.displayName = 'IconSort';
|
|
4645
4701
|
|
|
4646
|
-
var _excluded$
|
|
4702
|
+
var _excluded$1X = ["testId", "size", "color", "style"];
|
|
4647
4703
|
var IconStarSolid = forwardRef(function (_ref, ref) {
|
|
4648
4704
|
var _ref$testId = _ref.testId,
|
|
4649
4705
|
testId = _ref$testId === void 0 ? 'icon-star-solid' : _ref$testId,
|
|
4650
4706
|
size = _ref.size,
|
|
4651
4707
|
color = _ref.color,
|
|
4652
4708
|
style = _ref.style,
|
|
4653
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4709
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1X);
|
|
4654
4710
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4655
4711
|
var styleProps = {
|
|
4656
4712
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4671,14 +4727,14 @@ var IconStarSolid = forwardRef(function (_ref, ref) {
|
|
|
4671
4727
|
});
|
|
4672
4728
|
IconStarSolid.displayName = 'IconStarSolid';
|
|
4673
4729
|
|
|
4674
|
-
var _excluded$
|
|
4730
|
+
var _excluded$1Y = ["testId", "size", "color", "style"];
|
|
4675
4731
|
var IconStar = forwardRef(function (_ref, ref) {
|
|
4676
4732
|
var _ref$testId = _ref.testId,
|
|
4677
4733
|
testId = _ref$testId === void 0 ? 'icon-star' : _ref$testId,
|
|
4678
4734
|
size = _ref.size,
|
|
4679
4735
|
color = _ref.color,
|
|
4680
4736
|
style = _ref.style,
|
|
4681
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4737
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Y);
|
|
4682
4738
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4683
4739
|
var styleProps = {
|
|
4684
4740
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4699,14 +4755,14 @@ var IconStar = forwardRef(function (_ref, ref) {
|
|
|
4699
4755
|
});
|
|
4700
4756
|
IconStar.displayName = 'IconStar';
|
|
4701
4757
|
|
|
4702
|
-
var _excluded$
|
|
4758
|
+
var _excluded$1Z = ["testId", "size", "color", "style"];
|
|
4703
4759
|
var IconStickyNoteLines = forwardRef(function (_ref, ref) {
|
|
4704
4760
|
var _ref$testId = _ref.testId,
|
|
4705
4761
|
testId = _ref$testId === void 0 ? 'icon-sticky-note-lines' : _ref$testId,
|
|
4706
4762
|
size = _ref.size,
|
|
4707
4763
|
color = _ref.color,
|
|
4708
4764
|
style = _ref.style,
|
|
4709
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4765
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Z);
|
|
4710
4766
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4711
4767
|
var styleProps = {
|
|
4712
4768
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4730,14 +4786,14 @@ var IconStickyNoteLines = forwardRef(function (_ref, ref) {
|
|
|
4730
4786
|
});
|
|
4731
4787
|
IconStickyNoteLines.displayName = 'IconStickyNoteLines';
|
|
4732
4788
|
|
|
4733
|
-
var _excluded$
|
|
4789
|
+
var _excluded$1_ = ["testId", "size", "color", "style"];
|
|
4734
4790
|
var IconStopwatch = forwardRef(function (_ref, ref) {
|
|
4735
4791
|
var _ref$testId = _ref.testId,
|
|
4736
4792
|
testId = _ref$testId === void 0 ? 'icon-stopwatch' : _ref$testId,
|
|
4737
4793
|
size = _ref.size,
|
|
4738
4794
|
color = _ref.color,
|
|
4739
4795
|
style = _ref.style,
|
|
4740
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4796
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1_);
|
|
4741
4797
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4742
4798
|
var styleProps = {
|
|
4743
4799
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4760,14 +4816,14 @@ var IconStopwatch = forwardRef(function (_ref, ref) {
|
|
|
4760
4816
|
});
|
|
4761
4817
|
IconStopwatch.displayName = 'IconStopwatch';
|
|
4762
4818
|
|
|
4763
|
-
var _excluded$
|
|
4819
|
+
var _excluded$1$ = ["testId", "size", "color", "style"];
|
|
4764
4820
|
var IconStrikethrough = forwardRef(function (_ref, ref) {
|
|
4765
4821
|
var _ref$testId = _ref.testId,
|
|
4766
4822
|
testId = _ref$testId === void 0 ? 'icon-strikethrough' : _ref$testId,
|
|
4767
4823
|
size = _ref.size,
|
|
4768
4824
|
color = _ref.color,
|
|
4769
4825
|
style = _ref.style,
|
|
4770
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4826
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1$);
|
|
4771
4827
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4772
4828
|
var styleProps = {
|
|
4773
4829
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4795,14 +4851,14 @@ var IconStrikethrough = forwardRef(function (_ref, ref) {
|
|
|
4795
4851
|
});
|
|
4796
4852
|
IconStrikethrough.displayName = 'IconStrikethrough';
|
|
4797
4853
|
|
|
4798
|
-
var _excluded$
|
|
4854
|
+
var _excluded$20 = ["testId", "size", "color", "style"];
|
|
4799
4855
|
var IconSyncExclaimation = forwardRef(function (_ref, ref) {
|
|
4800
4856
|
var _ref$testId = _ref.testId,
|
|
4801
4857
|
testId = _ref$testId === void 0 ? 'icon-sync-exclaimation' : _ref$testId,
|
|
4802
4858
|
size = _ref.size,
|
|
4803
4859
|
color = _ref.color,
|
|
4804
4860
|
style = _ref.style,
|
|
4805
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4861
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$20);
|
|
4806
4862
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4807
4863
|
var styleProps = {
|
|
4808
4864
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4823,14 +4879,14 @@ var IconSyncExclaimation = forwardRef(function (_ref, ref) {
|
|
|
4823
4879
|
});
|
|
4824
4880
|
IconSyncExclaimation.displayName = 'IconSyncExclaimation';
|
|
4825
4881
|
|
|
4826
|
-
var _excluded$
|
|
4882
|
+
var _excluded$21 = ["testId", "size", "color", "style"];
|
|
4827
4883
|
var IconSync = forwardRef(function (_ref, ref) {
|
|
4828
4884
|
var _ref$testId = _ref.testId,
|
|
4829
4885
|
testId = _ref$testId === void 0 ? 'icon-sync' : _ref$testId,
|
|
4830
4886
|
size = _ref.size,
|
|
4831
4887
|
color = _ref.color,
|
|
4832
4888
|
style = _ref.style,
|
|
4833
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4889
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$21);
|
|
4834
4890
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4835
4891
|
var styleProps = {
|
|
4836
4892
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4851,14 +4907,14 @@ var IconSync = forwardRef(function (_ref, ref) {
|
|
|
4851
4907
|
});
|
|
4852
4908
|
IconSync.displayName = 'IconSync';
|
|
4853
4909
|
|
|
4854
|
-
var _excluded$
|
|
4910
|
+
var _excluded$22 = ["testId", "size", "color", "style"];
|
|
4855
4911
|
var IconTable = forwardRef(function (_ref, ref) {
|
|
4856
4912
|
var _ref$testId = _ref.testId,
|
|
4857
4913
|
testId = _ref$testId === void 0 ? 'icon-table' : _ref$testId,
|
|
4858
4914
|
size = _ref.size,
|
|
4859
4915
|
color = _ref.color,
|
|
4860
4916
|
style = _ref.style,
|
|
4861
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4917
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$22);
|
|
4862
4918
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4863
4919
|
var styleProps = {
|
|
4864
4920
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4886,14 +4942,14 @@ var IconTable = forwardRef(function (_ref, ref) {
|
|
|
4886
4942
|
});
|
|
4887
4943
|
IconTable.displayName = 'IconTable';
|
|
4888
4944
|
|
|
4889
|
-
var _excluded$
|
|
4945
|
+
var _excluded$23 = ["testId", "size", "color", "style"];
|
|
4890
4946
|
var IconTachometer = forwardRef(function (_ref, ref) {
|
|
4891
4947
|
var _ref$testId = _ref.testId,
|
|
4892
4948
|
testId = _ref$testId === void 0 ? 'icon-tachometer' : _ref$testId,
|
|
4893
4949
|
size = _ref.size,
|
|
4894
4950
|
color = _ref.color,
|
|
4895
4951
|
style = _ref.style,
|
|
4896
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4952
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$23);
|
|
4897
4953
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4898
4954
|
var styleProps = {
|
|
4899
4955
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4913,14 +4969,14 @@ var IconTachometer = forwardRef(function (_ref, ref) {
|
|
|
4913
4969
|
});
|
|
4914
4970
|
IconTachometer.displayName = 'IconTachometer';
|
|
4915
4971
|
|
|
4916
|
-
var _excluded$
|
|
4972
|
+
var _excluded$24 = ["testId", "size", "color", "style"];
|
|
4917
4973
|
var IconTimesOctagon = forwardRef(function (_ref, ref) {
|
|
4918
4974
|
var _ref$testId = _ref.testId,
|
|
4919
4975
|
testId = _ref$testId === void 0 ? 'icon-times-octagon' : _ref$testId,
|
|
4920
4976
|
size = _ref.size,
|
|
4921
4977
|
color = _ref.color,
|
|
4922
4978
|
style = _ref.style,
|
|
4923
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4979
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$24);
|
|
4924
4980
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4925
4981
|
var styleProps = {
|
|
4926
4982
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4943,14 +4999,14 @@ var IconTimesOctagon = forwardRef(function (_ref, ref) {
|
|
|
4943
4999
|
});
|
|
4944
5000
|
IconTimesOctagon.displayName = 'IconTimesOctagon';
|
|
4945
5001
|
|
|
4946
|
-
var _excluded$
|
|
5002
|
+
var _excluded$25 = ["testId", "size", "color", "style"];
|
|
4947
5003
|
var IconTimes = forwardRef(function (_ref, ref) {
|
|
4948
5004
|
var _ref$testId = _ref.testId,
|
|
4949
5005
|
testId = _ref$testId === void 0 ? 'icon-times' : _ref$testId,
|
|
4950
5006
|
size = _ref.size,
|
|
4951
5007
|
color = _ref.color,
|
|
4952
5008
|
style = _ref.style,
|
|
4953
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5009
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$25);
|
|
4954
5010
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4955
5011
|
var styleProps = {
|
|
4956
5012
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4973,14 +5029,14 @@ var IconTimes = forwardRef(function (_ref, ref) {
|
|
|
4973
5029
|
});
|
|
4974
5030
|
IconTimes.displayName = 'IconTimes';
|
|
4975
5031
|
|
|
4976
|
-
var _excluded$
|
|
5032
|
+
var _excluded$26 = ["testId", "size", "color", "style"];
|
|
4977
5033
|
var IconTrash = forwardRef(function (_ref, ref) {
|
|
4978
5034
|
var _ref$testId = _ref.testId,
|
|
4979
5035
|
testId = _ref$testId === void 0 ? 'icon-trash' : _ref$testId,
|
|
4980
5036
|
size = _ref.size,
|
|
4981
5037
|
color = _ref.color,
|
|
4982
5038
|
style = _ref.style,
|
|
4983
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5039
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$26);
|
|
4984
5040
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4985
5041
|
var styleProps = {
|
|
4986
5042
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5003,14 +5059,14 @@ var IconTrash = forwardRef(function (_ref, ref) {
|
|
|
5003
5059
|
});
|
|
5004
5060
|
IconTrash.displayName = 'IconTrash';
|
|
5005
5061
|
|
|
5006
|
-
var _excluded$
|
|
5062
|
+
var _excluded$27 = ["testId", "size", "color", "style"];
|
|
5007
5063
|
var IconUnderline = forwardRef(function (_ref, ref) {
|
|
5008
5064
|
var _ref$testId = _ref.testId,
|
|
5009
5065
|
testId = _ref$testId === void 0 ? 'icon-underline' : _ref$testId,
|
|
5010
5066
|
size = _ref.size,
|
|
5011
5067
|
color = _ref.color,
|
|
5012
5068
|
style = _ref.style,
|
|
5013
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5069
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$27);
|
|
5014
5070
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5015
5071
|
var styleProps = {
|
|
5016
5072
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5031,14 +5087,14 @@ var IconUnderline = forwardRef(function (_ref, ref) {
|
|
|
5031
5087
|
});
|
|
5032
5088
|
IconUnderline.displayName = 'IconUnderline';
|
|
5033
5089
|
|
|
5034
|
-
var _excluded$
|
|
5090
|
+
var _excluded$28 = ["testId", "size", "color", "style"];
|
|
5035
5091
|
var IconUndo = forwardRef(function (_ref, ref) {
|
|
5036
5092
|
var _ref$testId = _ref.testId,
|
|
5037
5093
|
testId = _ref$testId === void 0 ? 'icon-undo' : _ref$testId,
|
|
5038
5094
|
size = _ref.size,
|
|
5039
5095
|
color = _ref.color,
|
|
5040
5096
|
style = _ref.style,
|
|
5041
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5097
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$28);
|
|
5042
5098
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5043
5099
|
var styleProps = {
|
|
5044
5100
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5059,14 +5115,14 @@ var IconUndo = forwardRef(function (_ref, ref) {
|
|
|
5059
5115
|
});
|
|
5060
5116
|
IconUndo.displayName = 'IconUndo';
|
|
5061
5117
|
|
|
5062
|
-
var _excluded$
|
|
5118
|
+
var _excluded$29 = ["testId", "size", "color", "style"];
|
|
5063
5119
|
var IconUniversity = forwardRef(function (_ref, ref) {
|
|
5064
5120
|
var _ref$testId = _ref.testId,
|
|
5065
5121
|
testId = _ref$testId === void 0 ? 'icon-university' : _ref$testId,
|
|
5066
5122
|
size = _ref.size,
|
|
5067
5123
|
color = _ref.color,
|
|
5068
5124
|
style = _ref.style,
|
|
5069
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5125
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$29);
|
|
5070
5126
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5071
5127
|
var styleProps = {
|
|
5072
5128
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5094,14 +5150,14 @@ var IconUniversity = forwardRef(function (_ref, ref) {
|
|
|
5094
5150
|
});
|
|
5095
5151
|
IconUniversity.displayName = 'IconUniversity';
|
|
5096
5152
|
|
|
5097
|
-
var _excluded$
|
|
5153
|
+
var _excluded$2a = ["testId", "size", "color", "style"];
|
|
5098
5154
|
var IconUnlock = forwardRef(function (_ref, ref) {
|
|
5099
5155
|
var _ref$testId = _ref.testId,
|
|
5100
5156
|
testId = _ref$testId === void 0 ? 'icon-unlock' : _ref$testId,
|
|
5101
5157
|
size = _ref.size,
|
|
5102
5158
|
color = _ref.color,
|
|
5103
5159
|
style = _ref.style,
|
|
5104
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5160
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2a);
|
|
5105
5161
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5106
5162
|
var styleProps = {
|
|
5107
5163
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5129,14 +5185,14 @@ var IconUnlock = forwardRef(function (_ref, ref) {
|
|
|
5129
5185
|
});
|
|
5130
5186
|
IconUnlock.displayName = 'IconUnlock';
|
|
5131
5187
|
|
|
5132
|
-
var _excluded$
|
|
5188
|
+
var _excluded$2b = ["testId", "size", "color", "style"];
|
|
5133
5189
|
var IconUserComputer = forwardRef(function (_ref, ref) {
|
|
5134
5190
|
var _ref$testId = _ref.testId,
|
|
5135
5191
|
testId = _ref$testId === void 0 ? 'icon-user-computer' : _ref$testId,
|
|
5136
5192
|
size = _ref.size,
|
|
5137
5193
|
color = _ref.color,
|
|
5138
5194
|
style = _ref.style,
|
|
5139
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5195
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2b);
|
|
5140
5196
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5141
5197
|
var styleProps = {
|
|
5142
5198
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5168,14 +5224,14 @@ var IconUserComputer = forwardRef(function (_ref, ref) {
|
|
|
5168
5224
|
});
|
|
5169
5225
|
IconUserComputer.displayName = 'IconUserComputer';
|
|
5170
5226
|
|
|
5171
|
-
var _excluded$
|
|
5227
|
+
var _excluded$2c = ["testId", "size", "color", "style"];
|
|
5172
5228
|
var IconUserFriends = forwardRef(function (_ref, ref) {
|
|
5173
5229
|
var _ref$testId = _ref.testId,
|
|
5174
5230
|
testId = _ref$testId === void 0 ? 'icon-user-friends' : _ref$testId,
|
|
5175
5231
|
size = _ref.size,
|
|
5176
5232
|
color = _ref.color,
|
|
5177
5233
|
style = _ref.style,
|
|
5178
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5234
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2c);
|
|
5179
5235
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5180
5236
|
var styleProps = {
|
|
5181
5237
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5196,14 +5252,14 @@ var IconUserFriends = forwardRef(function (_ref, ref) {
|
|
|
5196
5252
|
});
|
|
5197
5253
|
IconUserFriends.displayName = 'IconUserFriends';
|
|
5198
5254
|
|
|
5199
|
-
var _excluded$
|
|
5255
|
+
var _excluded$2d = ["testId", "size", "color", "style"];
|
|
5200
5256
|
var IconUserLight = forwardRef(function (_ref, ref) {
|
|
5201
5257
|
var _ref$testId = _ref.testId,
|
|
5202
5258
|
testId = _ref$testId === void 0 ? 'icon-user-light' : _ref$testId,
|
|
5203
5259
|
size = _ref.size,
|
|
5204
5260
|
color = _ref.color,
|
|
5205
5261
|
style = _ref.style,
|
|
5206
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5262
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2d);
|
|
5207
5263
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5208
5264
|
var styleProps = {
|
|
5209
5265
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5226,14 +5282,14 @@ var IconUserLight = forwardRef(function (_ref, ref) {
|
|
|
5226
5282
|
});
|
|
5227
5283
|
IconUserLight.displayName = 'IconUserLight';
|
|
5228
5284
|
|
|
5229
|
-
var _excluded$
|
|
5285
|
+
var _excluded$2e = ["testId", "size", "color", "style"];
|
|
5230
5286
|
var IconUserPlus = forwardRef(function (_ref, ref) {
|
|
5231
5287
|
var _ref$testId = _ref.testId,
|
|
5232
5288
|
testId = _ref$testId === void 0 ? 'icon-user-plus' : _ref$testId,
|
|
5233
5289
|
size = _ref.size,
|
|
5234
5290
|
color = _ref.color,
|
|
5235
5291
|
style = _ref.style,
|
|
5236
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5292
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2e);
|
|
5237
5293
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5238
5294
|
var styleProps = {
|
|
5239
5295
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5254,14 +5310,14 @@ var IconUserPlus = forwardRef(function (_ref, ref) {
|
|
|
5254
5310
|
});
|
|
5255
5311
|
IconUserPlus.displayName = 'IconUserPlus';
|
|
5256
5312
|
|
|
5257
|
-
var _excluded$
|
|
5313
|
+
var _excluded$2f = ["testId", "size", "color", "style"];
|
|
5258
5314
|
var IconUserSearch = forwardRef(function (_ref, ref) {
|
|
5259
5315
|
var _ref$testId = _ref.testId,
|
|
5260
5316
|
testId = _ref$testId === void 0 ? 'icon-user-search' : _ref$testId,
|
|
5261
5317
|
size = _ref.size,
|
|
5262
5318
|
color = _ref.color,
|
|
5263
5319
|
style = _ref.style,
|
|
5264
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5320
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2f);
|
|
5265
5321
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5266
5322
|
var styleProps = {
|
|
5267
5323
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5291,14 +5347,14 @@ var IconUserSearch = forwardRef(function (_ref, ref) {
|
|
|
5291
5347
|
});
|
|
5292
5348
|
IconUserSearch.displayName = 'IconUserSearch';
|
|
5293
5349
|
|
|
5294
|
-
var _excluded$
|
|
5350
|
+
var _excluded$2g = ["testId", "size", "color", "style"];
|
|
5295
5351
|
var IconUserSlash = forwardRef(function (_ref, ref) {
|
|
5296
5352
|
var _ref$testId = _ref.testId,
|
|
5297
5353
|
testId = _ref$testId === void 0 ? 'icon-user-slash' : _ref$testId,
|
|
5298
5354
|
size = _ref.size,
|
|
5299
5355
|
color = _ref.color,
|
|
5300
5356
|
style = _ref.style,
|
|
5301
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5357
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2g);
|
|
5302
5358
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5303
5359
|
var styleProps = {
|
|
5304
5360
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5326,14 +5382,14 @@ var IconUserSlash = forwardRef(function (_ref, ref) {
|
|
|
5326
5382
|
});
|
|
5327
5383
|
IconUserSlash.displayName = 'IconUserSlash';
|
|
5328
5384
|
|
|
5329
|
-
var _excluded$
|
|
5385
|
+
var _excluded$2h = ["testId", "size", "color", "style"];
|
|
5330
5386
|
var IconUserSolid = forwardRef(function (_ref, ref) {
|
|
5331
5387
|
var _ref$testId = _ref.testId,
|
|
5332
5388
|
testId = _ref$testId === void 0 ? 'icon-user-solid' : _ref$testId,
|
|
5333
5389
|
size = _ref.size,
|
|
5334
5390
|
color = _ref.color,
|
|
5335
5391
|
style = _ref.style,
|
|
5336
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5392
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2h);
|
|
5337
5393
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5338
5394
|
var styleProps = {
|
|
5339
5395
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5354,14 +5410,14 @@ var IconUserSolid = forwardRef(function (_ref, ref) {
|
|
|
5354
5410
|
});
|
|
5355
5411
|
IconUserSolid.displayName = 'IconUserSolid';
|
|
5356
5412
|
|
|
5357
|
-
var _excluded$
|
|
5413
|
+
var _excluded$2i = ["testId", "size", "color", "style"];
|
|
5358
5414
|
var IconUserTag = forwardRef(function (_ref, ref) {
|
|
5359
5415
|
var _ref$testId = _ref.testId,
|
|
5360
5416
|
testId = _ref$testId === void 0 ? 'icon-user-tag' : _ref$testId,
|
|
5361
5417
|
size = _ref.size,
|
|
5362
5418
|
color = _ref.color,
|
|
5363
5419
|
style = _ref.style,
|
|
5364
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5420
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2i);
|
|
5365
5421
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5366
5422
|
var styleProps = {
|
|
5367
5423
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5384,14 +5440,14 @@ var IconUserTag = forwardRef(function (_ref, ref) {
|
|
|
5384
5440
|
});
|
|
5385
5441
|
IconUserTag.displayName = 'IconUserTag';
|
|
5386
5442
|
|
|
5387
|
-
var _excluded$
|
|
5443
|
+
var _excluded$2j = ["testId", "size", "color", "style"];
|
|
5388
5444
|
var IconUserTie = forwardRef(function (_ref, ref) {
|
|
5389
5445
|
var _ref$testId = _ref.testId,
|
|
5390
5446
|
testId = _ref$testId === void 0 ? 'icon-user-tie' : _ref$testId,
|
|
5391
5447
|
size = _ref.size,
|
|
5392
5448
|
color = _ref.color,
|
|
5393
5449
|
style = _ref.style,
|
|
5394
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5450
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2j);
|
|
5395
5451
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5396
5452
|
var styleProps = {
|
|
5397
5453
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5412,14 +5468,14 @@ var IconUserTie = forwardRef(function (_ref, ref) {
|
|
|
5412
5468
|
});
|
|
5413
5469
|
IconUserTie.displayName = 'IconUserTie';
|
|
5414
5470
|
|
|
5415
|
-
var _excluded$
|
|
5471
|
+
var _excluded$2k = ["testId", "size", "color", "style"];
|
|
5416
5472
|
var IconUsers = forwardRef(function (_ref, ref) {
|
|
5417
5473
|
var _ref$testId = _ref.testId,
|
|
5418
5474
|
testId = _ref$testId === void 0 ? 'icon-users' : _ref$testId,
|
|
5419
5475
|
size = _ref.size,
|
|
5420
5476
|
color = _ref.color,
|
|
5421
5477
|
style = _ref.style,
|
|
5422
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5478
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2k);
|
|
5423
5479
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5424
5480
|
var styleProps = {
|
|
5425
5481
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5440,14 +5496,14 @@ var IconUsers = forwardRef(function (_ref, ref) {
|
|
|
5440
5496
|
});
|
|
5441
5497
|
IconUsers.displayName = 'IconUsers';
|
|
5442
5498
|
|
|
5443
|
-
var _excluded$
|
|
5499
|
+
var _excluded$2l = ["testId", "size", "color", "style"];
|
|
5444
5500
|
var IconVideo = forwardRef(function (_ref, ref) {
|
|
5445
5501
|
var _ref$testId = _ref.testId,
|
|
5446
5502
|
testId = _ref$testId === void 0 ? 'icon-video' : _ref$testId,
|
|
5447
5503
|
size = _ref.size,
|
|
5448
5504
|
color = _ref.color,
|
|
5449
5505
|
style = _ref.style,
|
|
5450
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5506
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2l);
|
|
5451
5507
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5452
5508
|
var styleProps = {
|
|
5453
5509
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5468,14 +5524,14 @@ var IconVideo = forwardRef(function (_ref, ref) {
|
|
|
5468
5524
|
});
|
|
5469
5525
|
IconVideo.displayName = 'IconVideo';
|
|
5470
5526
|
|
|
5471
|
-
var _excluded$
|
|
5527
|
+
var _excluded$2m = ["testId", "size", "color", "style"];
|
|
5472
5528
|
var IconVolumeMute = forwardRef(function (_ref, ref) {
|
|
5473
5529
|
var _ref$testId = _ref.testId,
|
|
5474
5530
|
testId = _ref$testId === void 0 ? 'icon-volume-mute' : _ref$testId,
|
|
5475
5531
|
size = _ref.size,
|
|
5476
5532
|
color = _ref.color,
|
|
5477
5533
|
style = _ref.style,
|
|
5478
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5534
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2m);
|
|
5479
5535
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5480
5536
|
var styleProps = {
|
|
5481
5537
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5496,14 +5552,14 @@ var IconVolumeMute = forwardRef(function (_ref, ref) {
|
|
|
5496
5552
|
});
|
|
5497
5553
|
IconVolumeMute.displayName = 'IconVolumeMute';
|
|
5498
5554
|
|
|
5499
|
-
var _excluded$
|
|
5555
|
+
var _excluded$2n = ["testId", "size", "color", "style"];
|
|
5500
5556
|
var IconVolume = forwardRef(function (_ref, ref) {
|
|
5501
5557
|
var _ref$testId = _ref.testId,
|
|
5502
5558
|
testId = _ref$testId === void 0 ? 'icon-volume' : _ref$testId,
|
|
5503
5559
|
size = _ref.size,
|
|
5504
5560
|
color = _ref.color,
|
|
5505
5561
|
style = _ref.style,
|
|
5506
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5562
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2n);
|
|
5507
5563
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5508
5564
|
var styleProps = {
|
|
5509
5565
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5524,14 +5580,14 @@ var IconVolume = forwardRef(function (_ref, ref) {
|
|
|
5524
5580
|
});
|
|
5525
5581
|
IconVolume.displayName = 'IconVolume';
|
|
5526
5582
|
|
|
5527
|
-
var _excluded$
|
|
5583
|
+
var _excluded$2o = ["testId", "size", "color", "style"];
|
|
5528
5584
|
var IconWrench = forwardRef(function (_ref, ref) {
|
|
5529
5585
|
var _ref$testId = _ref.testId,
|
|
5530
5586
|
testId = _ref$testId === void 0 ? 'icon-wrench' : _ref$testId,
|
|
5531
5587
|
size = _ref.size,
|
|
5532
5588
|
color = _ref.color,
|
|
5533
5589
|
style = _ref.style,
|
|
5534
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5590
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2o);
|
|
5535
5591
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5536
5592
|
var styleProps = {
|
|
5537
5593
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5666,7 +5722,7 @@ var useTranslation = function useTranslation(context) {
|
|
|
5666
5722
|
return translate;
|
|
5667
5723
|
};
|
|
5668
5724
|
|
|
5669
|
-
var _excluded$
|
|
5725
|
+
var _excluded$2p = ["hasPrevious", "hasNext", "onPreviousClick", "onNextClick", "testId", "scrollTarget"];
|
|
5670
5726
|
var PaginationControls$1 = function PaginationControls(_ref) {
|
|
5671
5727
|
var _ref$hasPrevious = _ref.hasPrevious,
|
|
5672
5728
|
hasPrevious = _ref$hasPrevious === void 0 ? true : _ref$hasPrevious,
|
|
@@ -5676,7 +5732,7 @@ var PaginationControls$1 = function PaginationControls(_ref) {
|
|
|
5676
5732
|
onNextClick = _ref.onNextClick,
|
|
5677
5733
|
testId = _ref.testId,
|
|
5678
5734
|
scrollTarget = _ref.scrollTarget,
|
|
5679
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5735
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2p);
|
|
5680
5736
|
var __ = useTranslation('PaginationControls');
|
|
5681
5737
|
var _getDataProps = getDataProps(otherProps),
|
|
5682
5738
|
dataProps = _getDataProps.dataProps;
|
|
@@ -5744,7 +5800,7 @@ var LINK_TARGET = {
|
|
|
5744
5800
|
|
|
5745
5801
|
var styles$8 = {"link--primary":"_1mKoj","link--contrast":"_HUvH1"};
|
|
5746
5802
|
|
|
5747
|
-
var _excluded$
|
|
5803
|
+
var _excluded$2q = ["href", "target", "theme", "onClick", "children"];
|
|
5748
5804
|
var Link = function Link(_ref) {
|
|
5749
5805
|
var _classNames;
|
|
5750
5806
|
var href = _ref.href,
|
|
@@ -5754,7 +5810,7 @@ var Link = function Link(_ref) {
|
|
|
5754
5810
|
theme = _ref$theme === void 0 ? LINK_THEME.PRIMARY : _ref$theme,
|
|
5755
5811
|
onClick = _ref.onClick,
|
|
5756
5812
|
children = _ref.children,
|
|
5757
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5813
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2q);
|
|
5758
5814
|
var _getDataProps = getDataProps(otherProps),
|
|
5759
5815
|
dataProps = _getDataProps.dataProps;
|
|
5760
5816
|
return React__default.createElement("a", _extends({}, dataProps, {
|
|
@@ -6088,7 +6144,7 @@ var InlineBannerIcon = function InlineBannerIcon(_ref) {
|
|
|
6088
6144
|
}
|
|
6089
6145
|
};
|
|
6090
6146
|
|
|
6091
|
-
var _excluded$
|
|
6147
|
+
var _excluded$2r = ["children", "theme", "title", "onClose", "caption", "primaryButton", "secondaryButton", "testId"];
|
|
6092
6148
|
var InlineBanner = function InlineBanner(_ref) {
|
|
6093
6149
|
var _classnames, _classnames2;
|
|
6094
6150
|
var children = _ref.children,
|
|
@@ -6100,7 +6156,7 @@ var InlineBanner = function InlineBanner(_ref) {
|
|
|
6100
6156
|
primaryButton = _ref.primaryButton,
|
|
6101
6157
|
secondaryButton = _ref.secondaryButton,
|
|
6102
6158
|
testId = _ref.testId,
|
|
6103
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6159
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$2r);
|
|
6104
6160
|
var positionStyles = usePositionStyles(positionProps);
|
|
6105
6161
|
var multiLine = !!title;
|
|
6106
6162
|
var dismissable = !!onClose;
|
|
@@ -6396,14 +6452,14 @@ var ErrorMessage = function ErrorMessage(_ref) {
|
|
|
6396
6452
|
}), children));
|
|
6397
6453
|
};
|
|
6398
6454
|
|
|
6399
|
-
var _excluded$
|
|
6455
|
+
var _excluded$2s = ["id", "label", "caption", "error", "children"];
|
|
6400
6456
|
var Field = function Field(_ref) {
|
|
6401
6457
|
var id = _ref.id,
|
|
6402
6458
|
label = _ref.label,
|
|
6403
6459
|
caption = _ref.caption,
|
|
6404
6460
|
error = _ref.error,
|
|
6405
6461
|
children = _ref.children,
|
|
6406
|
-
dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6462
|
+
dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$2s);
|
|
6407
6463
|
var shouldRenderLabel = label || typeof label === 'string';
|
|
6408
6464
|
return React__default.createElement(Stack, _extends({
|
|
6409
6465
|
space: 8,
|
|
@@ -6523,7 +6579,7 @@ var useFieldControllers = function useFieldControllers(_ref) {
|
|
|
6523
6579
|
|
|
6524
6580
|
var styles$k = {"text-field":"_3BVGA","text-field--invalid":"_FLffs","text-field--prefixed":"_3qeO1","text-field--suffixed":"_3QPln"};
|
|
6525
6581
|
|
|
6526
|
-
var _excluded$
|
|
6582
|
+
var _excluded$2t = ["autoComplete", "autoFocus", "defaultValue", "disabled", "error", "id", "maxLength", "name", "caption", "label", "onBlur", "onChange", "onFocus", "onKeyDown", "placeholder", "value", "ref", "testId"];
|
|
6527
6583
|
var useTextField = function useTextField(_ref) {
|
|
6528
6584
|
var _classnames;
|
|
6529
6585
|
var autoComplete = _ref.autoComplete,
|
|
@@ -6544,7 +6600,7 @@ var useTextField = function useTextField(_ref) {
|
|
|
6544
6600
|
value = _ref.value,
|
|
6545
6601
|
ref = _ref.ref,
|
|
6546
6602
|
testId = _ref.testId,
|
|
6547
|
-
dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6603
|
+
dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$2t);
|
|
6548
6604
|
var controllers = useFieldControllers({
|
|
6549
6605
|
error: error,
|
|
6550
6606
|
id: id,
|
|
@@ -6665,7 +6721,7 @@ var TimeFieldInput = function TimeFieldInput(_ref) {
|
|
|
6665
6721
|
})));
|
|
6666
6722
|
};
|
|
6667
6723
|
|
|
6668
|
-
var _excluded$
|
|
6724
|
+
var _excluded$2u = ["placeholder", "autoComplete", "selectedTimeOption", "prefix", "startTime", "duration"];
|
|
6669
6725
|
var TimeFieldDropdownElement = function TimeFieldDropdownElement(_ref, ref) {
|
|
6670
6726
|
var _ref$placeholder = _ref.placeholder,
|
|
6671
6727
|
placeholder = _ref$placeholder === void 0 ? '9:00 AM' : _ref$placeholder,
|
|
@@ -6674,7 +6730,7 @@ var TimeFieldDropdownElement = function TimeFieldDropdownElement(_ref, ref) {
|
|
|
6674
6730
|
selectedTimeOption = _ref.selectedTimeOption,
|
|
6675
6731
|
prefix = _ref.prefix,
|
|
6676
6732
|
duration = _ref.duration,
|
|
6677
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6733
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2u);
|
|
6678
6734
|
var _useTextField = useTextField(_extends({}, allOtherProps, {
|
|
6679
6735
|
placeholder: placeholder,
|
|
6680
6736
|
autoComplete: autoComplete,
|
|
@@ -6975,7 +7031,7 @@ var ALIGNMENTS = {
|
|
|
6975
7031
|
|
|
6976
7032
|
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"};
|
|
6977
7033
|
|
|
6978
|
-
var _excluded$
|
|
7034
|
+
var _excluded$2v = ["children", "as", "emphasis", "alignment", "color", "testId"];
|
|
6979
7035
|
var Text = function Text(_ref) {
|
|
6980
7036
|
var _classnames;
|
|
6981
7037
|
var children = _ref.children,
|
|
@@ -6985,7 +7041,7 @@ var Text = function Text(_ref) {
|
|
|
6985
7041
|
alignment = _ref.alignment,
|
|
6986
7042
|
color = _ref.color,
|
|
6987
7043
|
testId = _ref.testId,
|
|
6988
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7044
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$2v);
|
|
6989
7045
|
var positionStyles = usePositionStyles(positionProps);
|
|
6990
7046
|
var elementProps = {
|
|
6991
7047
|
style: _extends({
|
|
@@ -7188,7 +7244,7 @@ var KebabMenu = function KebabMenu(_ref) {
|
|
|
7188
7244
|
|
|
7189
7245
|
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"};
|
|
7190
7246
|
|
|
7191
|
-
var _excluded$
|
|
7247
|
+
var _excluded$2w = ["children", "onClick", "isSelected", "disabled", "actions", "testId"];
|
|
7192
7248
|
var Card = function Card(_ref) {
|
|
7193
7249
|
var _classnames, _classnames2, _classnames3;
|
|
7194
7250
|
var children = _ref.children,
|
|
@@ -7199,7 +7255,7 @@ var Card = function Card(_ref) {
|
|
|
7199
7255
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
7200
7256
|
actions = _ref.actions,
|
|
7201
7257
|
testId = _ref.testId,
|
|
7202
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7258
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$2w);
|
|
7203
7259
|
var _getPositionProps = getPositionProps(rest),
|
|
7204
7260
|
positionProps = _getPositionProps.positionProps,
|
|
7205
7261
|
otherProps = _getPositionProps.otherProps;
|
|
@@ -7539,14 +7595,14 @@ var SKELETON_COMPONENT = {
|
|
|
7539
7595
|
PILL: 'pill'
|
|
7540
7596
|
};
|
|
7541
7597
|
|
|
7542
|
-
var _excluded$
|
|
7598
|
+
var _excluded$2x = ["as", "testId", "width", "height"];
|
|
7543
7599
|
var Skeleton = function Skeleton(_ref) {
|
|
7544
7600
|
var _classnames;
|
|
7545
7601
|
var as = _ref.as,
|
|
7546
7602
|
testId = _ref.testId,
|
|
7547
7603
|
width = _ref.width,
|
|
7548
7604
|
height = _ref.height,
|
|
7549
|
-
positionStyles = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7605
|
+
positionStyles = _objectWithoutPropertiesLoose(_ref, _excluded$2x);
|
|
7550
7606
|
var positioning = usePositionStyles(positionStyles);
|
|
7551
7607
|
return React__default.createElement("div", {
|
|
7552
7608
|
"data-testid": testId,
|
|
@@ -7609,7 +7665,7 @@ var useModalContext = function useModalContext() {
|
|
|
7609
7665
|
return context || {};
|
|
7610
7666
|
};
|
|
7611
7667
|
|
|
7612
|
-
var _excluded$
|
|
7668
|
+
var _excluded$2y = ["children", "header", "subHeader", "onClose", "loading", "zIndex", "rootElementId", "width", "height", "maxWidth", "shouldReturnFocusAfterClose", "testId"];
|
|
7613
7669
|
var Modal = function Modal(_ref) {
|
|
7614
7670
|
var children = _ref.children,
|
|
7615
7671
|
header = _ref.header,
|
|
@@ -7626,7 +7682,7 @@ var Modal = function Modal(_ref) {
|
|
|
7626
7682
|
_ref$shouldReturnFocu = _ref.shouldReturnFocusAfterClose,
|
|
7627
7683
|
shouldReturnFocusAfterClose = _ref$shouldReturnFocu === void 0 ? true : _ref$shouldReturnFocu,
|
|
7628
7684
|
testId = _ref.testId,
|
|
7629
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7685
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2y);
|
|
7630
7686
|
var style = {
|
|
7631
7687
|
content: {
|
|
7632
7688
|
width: width,
|
|
@@ -8029,7 +8085,7 @@ var useCheckBoxFieldControllers = function useCheckBoxFieldControllers(_ref) {
|
|
|
8029
8085
|
|
|
8030
8086
|
var styles$H = {"check-box-field":"_2Rbk6","check-box-field__caption":"_1GW-E","check-box-field__custom-input":"_2W10t"};
|
|
8031
8087
|
|
|
8032
|
-
var _excluded$
|
|
8088
|
+
var _excluded$2z = ["name", "id", "checked", "onChange", "onBlur", "label", "caption", "error", "disabled", "testId"];
|
|
8033
8089
|
var CheckboxField = function CheckboxField(_ref) {
|
|
8034
8090
|
var name = _ref.name,
|
|
8035
8091
|
inputId = _ref.id,
|
|
@@ -8041,7 +8097,7 @@ var CheckboxField = function CheckboxField(_ref) {
|
|
|
8041
8097
|
error = _ref.error,
|
|
8042
8098
|
disabled = _ref.disabled,
|
|
8043
8099
|
testId = _ref.testId,
|
|
8044
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8100
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2z);
|
|
8045
8101
|
var controllers = useCheckBoxFieldControllers({
|
|
8046
8102
|
name: name,
|
|
8047
8103
|
id: inputId,
|
|
@@ -8110,7 +8166,7 @@ var useLocalStorage = function useLocalStorage(key, initialValue) {
|
|
|
8110
8166
|
|
|
8111
8167
|
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"};
|
|
8112
8168
|
|
|
8113
|
-
var _excluded$
|
|
8169
|
+
var _excluded$2A = ["header", "children", "mediaUrl", "onClose", "modalId", "primaryButton", "testId"];
|
|
8114
8170
|
var HintModal$1 = function HintModal(_ref) {
|
|
8115
8171
|
var header = _ref.header,
|
|
8116
8172
|
children = _ref.children,
|
|
@@ -8119,7 +8175,7 @@ var HintModal$1 = function HintModal(_ref) {
|
|
|
8119
8175
|
modalId = _ref.modalId,
|
|
8120
8176
|
primaryButton = _ref.primaryButton,
|
|
8121
8177
|
testId = _ref.testId,
|
|
8122
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8178
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$2A);
|
|
8123
8179
|
var __ = useTranslation('HintModal');
|
|
8124
8180
|
var _useState = useState(false),
|
|
8125
8181
|
doNotShowAgain = _useState[0],
|
|
@@ -8344,7 +8400,7 @@ var DataTableEditableCellElement = function DataTableEditableCellElement(_ref, r
|
|
|
8344
8400
|
};
|
|
8345
8401
|
var DataTableEditableCell = forwardRef(DataTableEditableCellElement);
|
|
8346
8402
|
|
|
8347
|
-
var _excluded$
|
|
8403
|
+
var _excluded$2B = ["children", "onClick", "isSelected", "actions", "hasDefaultPadding", "hasDefaultCell", "testId"];
|
|
8348
8404
|
var DataTableRowComponent = function DataTableRowComponent(_ref, ref) {
|
|
8349
8405
|
var _classnames;
|
|
8350
8406
|
var children = _ref.children,
|
|
@@ -8356,7 +8412,7 @@ var DataTableRowComponent = function DataTableRowComponent(_ref, ref) {
|
|
|
8356
8412
|
_ref$hasDefaultCell = _ref.hasDefaultCell,
|
|
8357
8413
|
hasDefaultCell = _ref$hasDefaultCell === void 0 ? true : _ref$hasDefaultCell,
|
|
8358
8414
|
testId = _ref.testId,
|
|
8359
|
-
nativeDivProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8415
|
+
nativeDivProps = _objectWithoutPropertiesLoose(_ref, _excluded$2B);
|
|
8360
8416
|
var _useDataTableContext = useDataTableContext(),
|
|
8361
8417
|
showActionMenu = _useDataTableContext.showActionMenu;
|
|
8362
8418
|
var styleNames = classnames(styles$z['item'], (_classnames = {}, _classnames[styles$z['clickable']] = onClick, _classnames[styles$z['selected']] = isSelected, _classnames));
|
|
@@ -8569,7 +8625,7 @@ var DataTableStickyColumnsContainer = function DataTableStickyColumnsContainer(_
|
|
|
8569
8625
|
}, children));
|
|
8570
8626
|
};
|
|
8571
8627
|
|
|
8572
|
-
var _excluded$
|
|
8628
|
+
var _excluded$2C = ["items", "columns", "itemComponent", "maxHeight", "hasPrevious", "hasNext", "onPreviousClick", "onNextClick", "onSort", "isLoading", "showActionMenu", "footerComponent", "hasVerticalBorders", "testId", "skeletonRowLayout", "stickyColumns"];
|
|
8573
8629
|
var DataTable = function DataTable(_ref) {
|
|
8574
8630
|
var _classNames, _classNames2, _classNames3;
|
|
8575
8631
|
var items = _ref.items,
|
|
@@ -8593,7 +8649,7 @@ var DataTable = function DataTable(_ref) {
|
|
|
8593
8649
|
testId = _ref.testId,
|
|
8594
8650
|
skeletonRowLayout = _ref.skeletonRowLayout,
|
|
8595
8651
|
stickyColumns = _ref.stickyColumns,
|
|
8596
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8652
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2C);
|
|
8597
8653
|
var _getDataProps = getDataProps(otherProps),
|
|
8598
8654
|
dataProps = _getDataProps.dataProps;
|
|
8599
8655
|
var prevItemsRef = useRef([]);
|
|
@@ -8780,11 +8836,11 @@ var isReactSelectElement = function isReactSelectElement(element) {
|
|
|
8780
8836
|
|
|
8781
8837
|
var styles$M = {"custom-control":"_1JTKu"};
|
|
8782
8838
|
|
|
8783
|
-
var _excluded$
|
|
8839
|
+
var _excluded$2D = ["children"];
|
|
8784
8840
|
function CustomControl(_ref) {
|
|
8785
8841
|
var _props$getValue;
|
|
8786
8842
|
var children = _ref.children,
|
|
8787
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8843
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2D);
|
|
8788
8844
|
var SelectedOptionPrefix = props.selectProps.componentsProps.SelectedOptionPrefix;
|
|
8789
8845
|
var selectedOption = (_props$getValue = props.getValue()) === null || _props$getValue === void 0 ? void 0 : _props$getValue[0];
|
|
8790
8846
|
return React__default.createElement(components.Control, _extends({}, props), SelectedOptionPrefix && selectedOption ? React__default.createElement("div", {
|
|
@@ -8801,10 +8857,10 @@ function CustomControl(_ref) {
|
|
|
8801
8857
|
}, props)), children)) : children);
|
|
8802
8858
|
}
|
|
8803
8859
|
|
|
8804
|
-
var _excluded$
|
|
8860
|
+
var _excluded$2E = ["children"];
|
|
8805
8861
|
function CustomOption(_ref) {
|
|
8806
8862
|
var children = _ref.children,
|
|
8807
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8863
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2E);
|
|
8808
8864
|
var UserCustomOption = props.selectProps.componentsProps.UserCustomOption;
|
|
8809
8865
|
return React__default.createElement(components.Option, _extends({}, props), React__default.createElement(UserCustomOption, _extends({}, props), children));
|
|
8810
8866
|
}
|
|
@@ -8957,10 +9013,10 @@ var CustomContainer = function CustomContainer(props) {
|
|
|
8957
9013
|
|
|
8958
9014
|
var styles$N = {"custom-menu-text-field":"_2bu6-","custom-menu-hr":"_1cgU7","custom-menu-div":"_1khlU"};
|
|
8959
9015
|
|
|
8960
|
-
var _excluded$
|
|
9016
|
+
var _excluded$2F = ["children"];
|
|
8961
9017
|
function CustomMenu(_ref) {
|
|
8962
9018
|
var children = _ref.children,
|
|
8963
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
9019
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2F);
|
|
8964
9020
|
var _props$selectProps$co = props.selectProps.componentsProps,
|
|
8965
9021
|
creatableButton = _props$selectProps$co.creatableButton,
|
|
8966
9022
|
onMenuInputFocus = _props$selectProps$co.onMenuInputFocus,
|
|
@@ -9680,11 +9736,11 @@ var TextAreaField = function TextAreaField(_ref) {
|
|
|
9680
9736
|
}, toolbar)));
|
|
9681
9737
|
};
|
|
9682
9738
|
|
|
9683
|
-
var _excluded$
|
|
9739
|
+
var _excluded$2G = ["prefix", "suffix"];
|
|
9684
9740
|
var TextFieldElement = function TextFieldElement(_ref, ref) {
|
|
9685
9741
|
var prefix = _ref.prefix,
|
|
9686
9742
|
suffix = _ref.suffix,
|
|
9687
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
9743
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2G);
|
|
9688
9744
|
var _useTextField = useTextField(_extends({}, props, {
|
|
9689
9745
|
ref: ref
|
|
9690
9746
|
})),
|
|
@@ -10278,12 +10334,12 @@ var MultiSelectField = function MultiSelectField(_ref) {
|
|
|
10278
10334
|
|
|
10279
10335
|
var styles$11 = {"custom-list":"_12jq3"};
|
|
10280
10336
|
|
|
10281
|
-
var _excluded$
|
|
10337
|
+
var _excluded$2H = ["children", "hasMoreOptions", "hasMoreOptionsFirstLoad"];
|
|
10282
10338
|
var CustomList = function CustomList(_ref) {
|
|
10283
10339
|
var children = _ref.children,
|
|
10284
10340
|
hasMoreOptions = _ref.hasMoreOptions,
|
|
10285
10341
|
hasMoreOptionsFirstLoad = _ref.hasMoreOptionsFirstLoad,
|
|
10286
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
10342
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2H);
|
|
10287
10343
|
var __ = useTranslation('AsyncSelectField');
|
|
10288
10344
|
var showFooter = hasMoreOptions;
|
|
10289
10345
|
if (props.selectProps.inputValue === '' && typeof hasMoreOptionsFirstLoad === 'boolean') {
|
|
@@ -10296,10 +10352,10 @@ var CustomList = function CustomList(_ref) {
|
|
|
10296
10352
|
}, __('moreOptionsPlaceholder')))));
|
|
10297
10353
|
};
|
|
10298
10354
|
|
|
10299
|
-
var _excluded$
|
|
10355
|
+
var _excluded$2I = ["loadOptions"];
|
|
10300
10356
|
var AsyncSelectField$1 = function AsyncSelectField(_ref) {
|
|
10301
10357
|
var loadOptions = _ref.loadOptions,
|
|
10302
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
10358
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2I);
|
|
10303
10359
|
var _useState = useState(false),
|
|
10304
10360
|
hasMoreOptions = _useState[0],
|
|
10305
10361
|
setHasMoreOptions = _useState[1];
|
|
@@ -11110,7 +11166,7 @@ var TimeFieldDropdown = function TimeFieldDropdown(_ref) {
|
|
|
11110
11166
|
})));
|
|
11111
11167
|
};
|
|
11112
11168
|
|
|
11113
|
-
var _excluded$
|
|
11169
|
+
var _excluded$2J = ["interval", "startTime", "prefix", "endField", "duration"];
|
|
11114
11170
|
var TimeFieldElement = function TimeFieldElement(_ref, forwardedRef) {
|
|
11115
11171
|
var _ref$interval = _ref.interval,
|
|
11116
11172
|
interval = _ref$interval === void 0 ? 15 : _ref$interval,
|
|
@@ -11119,7 +11175,7 @@ var TimeFieldElement = function TimeFieldElement(_ref, forwardedRef) {
|
|
|
11119
11175
|
_ref$endField = _ref.endField,
|
|
11120
11176
|
endField = _ref$endField === void 0 ? false : _ref$endField,
|
|
11121
11177
|
duration = _ref.duration,
|
|
11122
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
11178
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2J);
|
|
11123
11179
|
var internalRef = useRef(null);
|
|
11124
11180
|
var ref = forwardedRef || internalRef;
|
|
11125
11181
|
var _useState = useState(allOtherProps.value || allOtherProps.defaultValue),
|
|
@@ -11303,13 +11359,13 @@ var styles$14 = {"currency-field__mask-display":"_2K8Ob"};
|
|
|
11303
11359
|
var CURRENCY_DISPLAY_DEFAULT_MARGIN = 8;
|
|
11304
11360
|
var CURRENCY_DISPLAY_MARGIN_BUFFER = 1;
|
|
11305
11361
|
|
|
11306
|
-
var _excluded$
|
|
11362
|
+
var _excluded$2K = ["currencySymbol", "step"];
|
|
11307
11363
|
var CurrencyFieldElement = function CurrencyFieldElement(_ref, forwardedRef) {
|
|
11308
11364
|
var _ref$currencySymbol = _ref.currencySymbol,
|
|
11309
11365
|
currencySymbol = _ref$currencySymbol === void 0 ? '$' : _ref$currencySymbol,
|
|
11310
11366
|
_ref$step = _ref.step,
|
|
11311
11367
|
step = _ref$step === void 0 ? 0.01 : _ref$step,
|
|
11312
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
11368
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2K);
|
|
11313
11369
|
var _useState = useState(CURRENCY_DISPLAY_DEFAULT_MARGIN),
|
|
11314
11370
|
displayPadding = _useState[0],
|
|
11315
11371
|
setDisplayPadding = _useState[1];
|
|
@@ -11373,7 +11429,7 @@ var CurrencyFieldElement = function CurrencyFieldElement(_ref, forwardedRef) {
|
|
|
11373
11429
|
};
|
|
11374
11430
|
var CurrencyField = forwardRef(CurrencyFieldElement);
|
|
11375
11431
|
|
|
11376
|
-
var _excluded$
|
|
11432
|
+
var _excluded$2L = ["max", "min", "precision", "stepSize", "prefix"];
|
|
11377
11433
|
var PercentageElement = function PercentageElement(_ref, ref) {
|
|
11378
11434
|
var _ref$max = _ref.max,
|
|
11379
11435
|
max = _ref$max === void 0 ? 100 : _ref$max,
|
|
@@ -11384,7 +11440,7 @@ var PercentageElement = function PercentageElement(_ref, ref) {
|
|
|
11384
11440
|
_ref$stepSize = _ref.stepSize,
|
|
11385
11441
|
stepSize = _ref$stepSize === void 0 ? 1 : _ref$stepSize,
|
|
11386
11442
|
prefix = _ref.prefix,
|
|
11387
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
11443
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2L);
|
|
11388
11444
|
var _useTextField = useTextField(_extends({}, allOtherProps, {
|
|
11389
11445
|
ref: ref
|
|
11390
11446
|
})),
|
|
@@ -12363,12 +12419,12 @@ var CountrySelector = function CountrySelector(_ref) {
|
|
|
12363
12419
|
}))));
|
|
12364
12420
|
};
|
|
12365
12421
|
|
|
12366
|
-
var _excluded$
|
|
12422
|
+
var _excluded$2M = ["disabledCountry"];
|
|
12367
12423
|
var PhoneField = function PhoneField(_ref) {
|
|
12368
12424
|
var _classNames;
|
|
12369
12425
|
var _ref$disabledCountry = _ref.disabledCountry,
|
|
12370
12426
|
disabledCountry = _ref$disabledCountry === void 0 ? false : _ref$disabledCountry,
|
|
12371
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
12427
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2M);
|
|
12372
12428
|
var inputRef = useRef(null);
|
|
12373
12429
|
var _usePhoneField = usePhoneField(_extends({}, props, {
|
|
12374
12430
|
ref: inputRef
|
|
@@ -12453,14 +12509,14 @@ var PhoneField = function PhoneField(_ref) {
|
|
|
12453
12509
|
|
|
12454
12510
|
var styles$17 = {"badge":"_1QLaK","badge--warning":"_qsFWw","badge--danger":"_359Cc","badge--success":"_2AOEK","badge--info":"_1mLjf"};
|
|
12455
12511
|
|
|
12456
|
-
var _excluded$
|
|
12512
|
+
var _excluded$2N = ["children", "theme", "title", "testId"];
|
|
12457
12513
|
var BadgeElement = function BadgeElement(_ref, forwardedRef) {
|
|
12458
12514
|
var _classnames;
|
|
12459
12515
|
var children = _ref.children,
|
|
12460
12516
|
theme = _ref.theme,
|
|
12461
12517
|
title = _ref.title,
|
|
12462
12518
|
testId = _ref.testId,
|
|
12463
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
12519
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2N);
|
|
12464
12520
|
var internalRef = useRef(null);
|
|
12465
12521
|
var ref = forwardedRef || internalRef;
|
|
12466
12522
|
useLayoutEffect(function () {
|
|
@@ -12815,5 +12871,5 @@ var EmptyState = function EmptyState(_ref) {
|
|
|
12815
12871
|
}, children);
|
|
12816
12872
|
};
|
|
12817
12873
|
|
|
12818
|
-
export { AsyncSelectField$1 as AsyncSelectField, Avatar, Badge, Bold, BreadcrumbItem, Breadcrumbs, Button, COLORS, Calendar$1 as Calendar, CalloutCard, Card, CheckboxField, Chip, CircularProgress, CurrencyField, DataTable, DataTableCell, DataTableEditableCell, DataTableRow, DateField, DateFilter, DateRangeField, Dropdown, DropdownList, DropdownListDivider, DropdownListItem, EmptyState, Form, FormFeedback, FormFooter, FormRow, FormSection, HintModal$1 as HintModal, IconAnalytics, IconArrowDown, IconArrowDownWideShort, IconArrowLeft, IconArrowRight, IconArrowToTop, IconArrowTurnDownRight, IconArrowUp, IconAward, IconAwful, IconAwfulMonochromatic, IconBad, IconBadMonochromatic, IconBalanceScale, IconBalanceScaleLeft, IconBan, IconBarsH, IconBarsV, IconBell, IconBirthdayCake, IconBold, IconBolt, IconBook, IconBriefcase, IconBullseyeArrow, IconCalculator, IconCalendar, IconCalendarAlt, IconCalendarCheck, IconCalendarDay, IconCalendarExclamation, IconCalendarStar, IconCalendarTomorrow, IconCamera, IconCameraSlash, IconCashRegister, IconChartBar, IconCheck, IconCheckCircleIncomplete, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconClipboardList, IconClock, IconCog, IconComment, IconCommentLines, IconCopy, IconCreditCard, IconCreditCardPlus, IconDecent, IconDecentMonochromatic, IconDownload, IconEdit, IconEllipsisV, IconEnvelope, IconEnvelopeOpenDollar, IconExclaimation, IconExclaimationTriangle, IconExpand, IconExternalLink, IconEye, IconEyeSlash, IconFile, IconFilePdf, IconFlag, IconFourDotsCircle, IconFourSquares, IconGavel, IconGif, IconGift, IconGood, IconGoodMonochromatic, IconGreat, IconGreatMonochromatic, IconGrinBeam, IconGripVertical, IconHandshake, IconImage, IconInfoCircle, IconIslandTropical, IconItalic, IconLaptopSearch, IconLink, IconList, IconListOI as IconListOi, IconLock, IconMagicSolid, IconMapMarker, IconMegaphone, IconMessages, IconMinus, IconMinusCircle, IconMoneyBill, IconMugSaucerSolid, IconNotesMedical, IconOvertime, IconPaperPlane, IconPaperPlaneClock, IconPaperclip, IconPencil, IconPercentage, IconPhone, IconPlug, IconPlus, IconPrint, IconQuestionCircle, IconRepeat, IconReply, IconRocket, IconSearch, IconSignOut, IconSitemap, IconSlidersH, IconSort, IconStar, IconStarSolid, IconStickyNoteLines, IconStopwatch, IconStrikethrough, IconSync, IconSyncExclaimation, IconTable, IconTachometer, IconTimes, IconTimesOctagon, IconTrash, IconUnderline, IconUndo, IconUniversity, IconUnlock, IconUserComputer, IconUserFriends, IconUserLight, IconUserPlus, IconUserSearch, IconUserSlash, IconUserSolid, IconUserTag, IconUserTie, IconUsers, IconVideo, IconVolume, IconVolumeMute, IconWrench, Inline, InlineBanner, Italic, Link, Modal, ModalBody, ModalFooter, MultiSelectField, Page, PaginationControls$1 as PaginationControls, PasswordField, Paywall, PercentageField, PersistentBanner, PhoneField, Pill, PillSelectField, ProgressBar, RadioGroupBoxOption, RadioGroupField, RadioGroupOption, SIZE_25_PERCENT, SIZE_33_PERCENT, SIZE_50_PERCENT, SIZE_66_PERCENT, SIZE_75_PERCENT, SegmentedControl, SelectField$1 as SelectField, Skeleton, SousChefProvider, Spinner, Stack, Text, TextAreaField, TextField, TimeField, TimeRangeField, Toggle, ToolbarSelect, Tooltip, Underline, WeekField, ZINDEX, toast, useDataTableContext };
|
|
12874
|
+
export { AsyncSelectField$1 as AsyncSelectField, Avatar, Badge, Bold, BreadcrumbItem, Breadcrumbs, Button, COLORS, Calendar$1 as Calendar, CalloutCard, Card, CheckboxField, Chip, CircularProgress, CurrencyField, DataTable, DataTableCell, DataTableEditableCell, DataTableRow, DateField, DateFilter, DateRangeField, Dropdown, DropdownList, DropdownListDivider, DropdownListItem, EmptyState, Form, FormFeedback, FormFooter, FormRow, FormSection, HintModal$1 as HintModal, IconAnalytics, IconArrowDown, IconArrowDownWideShort, IconArrowLeft, IconArrowRight, IconArrowToTop, IconArrowTurnDownRight, IconArrowUp, IconAward, IconAwful, IconAwfulMonochromatic, IconBad, IconBadMonochromatic, IconBalanceScale, IconBalanceScaleLeft, IconBan, IconBarsH, IconBarsV, IconBell, IconBirthdayCake, IconBold, IconBolt, IconBook, IconBriefcase, IconBullseyeArrow, IconCalculator, IconCalendar, IconCalendarAlt, IconCalendarCheck, IconCalendarDay, IconCalendarExclamation, IconCalendarStar, IconCalendarTomorrow, IconCamera, IconCameraSlash, IconCashRegister, IconChartBar, IconCheck, IconCheckCircleIncomplete, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconClipboardList, IconClock, IconCog, IconComment, IconCommentLines, IconCopy, IconCreditCard, IconCreditCardPlus, IconDecent, IconDecentMonochromatic, IconDownload, IconEdit, IconEllipsisV, IconEnvelope, IconEnvelopeOpenDollar, IconExclaimation, IconExclaimationTriangle, IconExpand, IconExternalLink, IconEye, IconEyeSlash, IconFile, IconFilePdf, IconFlag, IconFourDotsCircle, IconFourSquares, IconGavel, IconGif, IconGift, IconGood, IconGoodMonochromatic, IconGreat, IconGreatMonochromatic, IconGrinBeam, IconGripVertical, IconHandshake, IconHatChef, IconImage, IconInfoCircle, IconIslandTropical, IconItalic, IconLaptopSearch, IconLink, IconList, IconListOI as IconListOi, IconLock, IconMagicSolid, IconMapMarker, IconMegaphone, IconMessages, IconMinus, IconMinusCircle, IconMoneyBill, IconMugSaucerSolid, IconNotesMedical, IconOvertime, IconPaperPlane, IconPaperPlaneClock, IconPaperclip, IconPencil, IconPercentage, IconPhone, IconPlateUtensils, IconPlug, IconPlus, IconPrint, IconQuestionCircle, IconRepeat, IconReply, IconRocket, IconSearch, IconSignOut, IconSitemap, IconSlidersH, IconSort, IconStar, IconStarSolid, IconStickyNoteLines, IconStopwatch, IconStrikethrough, IconSync, IconSyncExclaimation, IconTable, IconTachometer, IconTimes, IconTimesOctagon, IconTrash, IconUnderline, IconUndo, IconUniversity, IconUnlock, IconUserComputer, IconUserFriends, IconUserLight, IconUserPlus, IconUserSearch, IconUserSlash, IconUserSolid, IconUserTag, IconUserTie, IconUsers, IconVideo, IconVolume, IconVolumeMute, IconWrench, Inline, InlineBanner, Italic, Link, Modal, ModalBody, ModalFooter, MultiSelectField, Page, PaginationControls$1 as PaginationControls, PasswordField, Paywall, PercentageField, PersistentBanner, PhoneField, Pill, PillSelectField, ProgressBar, RadioGroupBoxOption, RadioGroupField, RadioGroupOption, SIZE_25_PERCENT, SIZE_33_PERCENT, SIZE_50_PERCENT, SIZE_66_PERCENT, SIZE_75_PERCENT, SegmentedControl, SelectField$1 as SelectField, Skeleton, SousChefProvider, Spinner, Stack, Text, TextAreaField, TextField, TimeField, TimeRangeField, Toggle, ToolbarSelect, Tooltip, Underline, WeekField, ZINDEX, toast, useDataTableContext };
|
|
12819
12875
|
//# sourceMappingURL=index.modern.js.map
|