@7shifts/sous-chef 3.36.3 → 3.38.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/README.md +0 -1
- package/dist/empty_states/EmptyState/EmptyState.d.ts +3 -3
- package/dist/empty_states/EmptyStateContainer/types.d.ts +7 -0
- package/dist/empty_states/Paywall/Paywall.d.ts +3 -2
- package/dist/i18n/locales/en.json +3 -0
- package/dist/i18n/locales/es.json +3 -0
- package/dist/i18n/locales/fr.json +3 -0
- 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.css +27 -4
- package/dist/index.js +312 -211
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +310 -211
- package/dist/index.modern.js.map +1 -1
- package/dist/layout/CalloutCard/CalloutCard.d.ts +3 -0
- package/dist/layout/Card/Card.d.ts +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3556,13 +3556,41 @@ var IconHandshake = React.forwardRef(function (_ref, ref) {
|
|
|
3556
3556
|
IconHandshake.displayName = 'IconHandshake';
|
|
3557
3557
|
|
|
3558
3558
|
var _excluded$1l = ["testId", "size", "color", "style"];
|
|
3559
|
+
var IconHatChef = React.forwardRef(function (_ref, ref) {
|
|
3560
|
+
var _ref$testId = _ref.testId,
|
|
3561
|
+
testId = _ref$testId === void 0 ? 'icon-hat-chef' : _ref$testId,
|
|
3562
|
+
size = _ref.size,
|
|
3563
|
+
color = _ref.color,
|
|
3564
|
+
style = _ref.style,
|
|
3565
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1l);
|
|
3566
|
+
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3567
|
+
var styleProps = {
|
|
3568
|
+
size: !size && isInsideButton ? 'medium' : size,
|
|
3569
|
+
color: color,
|
|
3570
|
+
style: style
|
|
3571
|
+
};
|
|
3572
|
+
return React__default.createElement("svg", _extends({
|
|
3573
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3574
|
+
fill: "none",
|
|
3575
|
+
viewBox: "0 0 20 20",
|
|
3576
|
+
style: getIconStyles(styleProps),
|
|
3577
|
+
"data-testid": testId,
|
|
3578
|
+
ref: ref
|
|
3579
|
+
}, props), React__default.createElement("path", {
|
|
3580
|
+
fill: "currentColor",
|
|
3581
|
+
d: "M6.676 3.258a3.753 3.753 0 0 1 6.644 0 .621.621 0 0 0 1.027.117 2.502 2.502 0 0 1 4.364 2.078l-.004.02c-.137.89-.555 2.28-1.02 3.652a79.933 79.933 0 0 1-1.21 3.309.114.114 0 0 1-.11.07h-1.765l1.011-5.512a.625.625 0 0 0-.5-.726.627.627 0 0 0-.726.5l-1.032 5.625a.559.559 0 0 0-.011.113h-2.719V5.625A.627.627 0 0 0 10 5a.627.627 0 0 0-.625.625V12.5H6.656a.558.558 0 0 0-.011-.113L5.613 6.762a.622.622 0 0 0-.726-.5.622.622 0 0 0-.5.726L5.398 12.5H3.633a.114.114 0 0 1-.11-.07 86.182 86.182 0 0 1-1.21-3.309C1.848 7.75 1.43 6.36 1.293 5.47l-.004-.02a2.502 2.502 0 0 1 2.46-2.953c.763 0 1.442.34 1.9.875a.63.63 0 0 0 .542.215.636.636 0 0 0 .485-.332v.004ZM10 0C8.363 0 6.91.785 6 2A3.751 3.751 0 0 0 .059 5.668C.215 6.68.668 8.16 1.129 9.523a86.727 86.727 0 0 0 1.226 3.36c.208.531.72.867 1.278.867h12.734c.559 0 1.07-.336 1.274-.867.261-.672.757-1.98 1.226-3.36.461-1.363.914-2.843 1.07-3.855A3.751 3.751 0 0 0 13.997 2 4.973 4.973 0 0 0 10 0ZM2.5 15v2.5C2.5 18.879 3.621 20 5 20h10c1.379 0 2.5-1.121 2.5-2.5V15h-1.25v2.5c0 .691-.559 1.25-1.25 1.25H5c-.691 0-1.25-.559-1.25-1.25V15H2.5Z"
|
|
3582
|
+
}));
|
|
3583
|
+
});
|
|
3584
|
+
IconHatChef.displayName = 'IconHatChef';
|
|
3585
|
+
|
|
3586
|
+
var _excluded$1m = ["testId", "size", "color", "style"];
|
|
3559
3587
|
var IconImage = React.forwardRef(function (_ref, ref) {
|
|
3560
3588
|
var _ref$testId = _ref.testId,
|
|
3561
3589
|
testId = _ref$testId === void 0 ? 'icon-image' : _ref$testId,
|
|
3562
3590
|
size = _ref.size,
|
|
3563
3591
|
color = _ref.color,
|
|
3564
3592
|
style = _ref.style,
|
|
3565
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3593
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1m);
|
|
3566
3594
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3567
3595
|
var styleProps = {
|
|
3568
3596
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3590,14 +3618,14 @@ var IconImage = React.forwardRef(function (_ref, ref) {
|
|
|
3590
3618
|
});
|
|
3591
3619
|
IconImage.displayName = 'IconImage';
|
|
3592
3620
|
|
|
3593
|
-
var _excluded$
|
|
3621
|
+
var _excluded$1n = ["testId", "size", "color", "style"];
|
|
3594
3622
|
var IconIslandTropical = React.forwardRef(function (_ref, ref) {
|
|
3595
3623
|
var _ref$testId = _ref.testId,
|
|
3596
3624
|
testId = _ref$testId === void 0 ? 'icon-island-tropical' : _ref$testId,
|
|
3597
3625
|
size = _ref.size,
|
|
3598
3626
|
color = _ref.color,
|
|
3599
3627
|
style = _ref.style,
|
|
3600
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3628
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1n);
|
|
3601
3629
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3602
3630
|
var styleProps = {
|
|
3603
3631
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3620,14 +3648,14 @@ var IconIslandTropical = React.forwardRef(function (_ref, ref) {
|
|
|
3620
3648
|
});
|
|
3621
3649
|
IconIslandTropical.displayName = 'IconIslandTropical';
|
|
3622
3650
|
|
|
3623
|
-
var _excluded$
|
|
3651
|
+
var _excluded$1o = ["testId", "size", "color", "style"];
|
|
3624
3652
|
var IconItalic = React.forwardRef(function (_ref, ref) {
|
|
3625
3653
|
var _ref$testId = _ref.testId,
|
|
3626
3654
|
testId = _ref$testId === void 0 ? 'icon-italic' : _ref$testId,
|
|
3627
3655
|
size = _ref.size,
|
|
3628
3656
|
color = _ref.color,
|
|
3629
3657
|
style = _ref.style,
|
|
3630
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3658
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1o);
|
|
3631
3659
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3632
3660
|
var styleProps = {
|
|
3633
3661
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3648,14 +3676,14 @@ var IconItalic = React.forwardRef(function (_ref, ref) {
|
|
|
3648
3676
|
});
|
|
3649
3677
|
IconItalic.displayName = 'IconItalic';
|
|
3650
3678
|
|
|
3651
|
-
var _excluded$
|
|
3679
|
+
var _excluded$1p = ["testId", "size", "color", "style"];
|
|
3652
3680
|
var IconLaptopSearch = React.forwardRef(function (_ref, ref) {
|
|
3653
3681
|
var _ref$testId = _ref.testId,
|
|
3654
3682
|
testId = _ref$testId === void 0 ? 'icon-laptop-search' : _ref$testId,
|
|
3655
3683
|
size = _ref.size,
|
|
3656
3684
|
color = _ref.color,
|
|
3657
3685
|
style = _ref.style,
|
|
3658
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3686
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1p);
|
|
3659
3687
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3660
3688
|
var styleProps = {
|
|
3661
3689
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3685,14 +3713,14 @@ var IconLaptopSearch = React.forwardRef(function (_ref, ref) {
|
|
|
3685
3713
|
});
|
|
3686
3714
|
IconLaptopSearch.displayName = 'IconLaptopSearch';
|
|
3687
3715
|
|
|
3688
|
-
var _excluded$
|
|
3716
|
+
var _excluded$1q = ["testId", "size", "color", "style"];
|
|
3689
3717
|
var IconLink = React.forwardRef(function (_ref, ref) {
|
|
3690
3718
|
var _ref$testId = _ref.testId,
|
|
3691
3719
|
testId = _ref$testId === void 0 ? 'icon-link' : _ref$testId,
|
|
3692
3720
|
size = _ref.size,
|
|
3693
3721
|
color = _ref.color,
|
|
3694
3722
|
style = _ref.style,
|
|
3695
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3723
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1q);
|
|
3696
3724
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3697
3725
|
var styleProps = {
|
|
3698
3726
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3720,14 +3748,14 @@ var IconLink = React.forwardRef(function (_ref, ref) {
|
|
|
3720
3748
|
});
|
|
3721
3749
|
IconLink.displayName = 'IconLink';
|
|
3722
3750
|
|
|
3723
|
-
var _excluded$
|
|
3751
|
+
var _excluded$1r = ["testId", "size", "color", "style"];
|
|
3724
3752
|
var IconListOI = React.forwardRef(function (_ref, ref) {
|
|
3725
3753
|
var _ref$testId = _ref.testId,
|
|
3726
3754
|
testId = _ref$testId === void 0 ? 'icon-list-o-i' : _ref$testId,
|
|
3727
3755
|
size = _ref.size,
|
|
3728
3756
|
color = _ref.color,
|
|
3729
3757
|
style = _ref.style,
|
|
3730
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3758
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1r);
|
|
3731
3759
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3732
3760
|
var styleProps = {
|
|
3733
3761
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3755,14 +3783,14 @@ var IconListOI = React.forwardRef(function (_ref, ref) {
|
|
|
3755
3783
|
});
|
|
3756
3784
|
IconListOI.displayName = 'IconListOI';
|
|
3757
3785
|
|
|
3758
|
-
var _excluded$
|
|
3786
|
+
var _excluded$1s = ["testId", "size", "color", "style"];
|
|
3759
3787
|
var IconList = React.forwardRef(function (_ref, ref) {
|
|
3760
3788
|
var _ref$testId = _ref.testId,
|
|
3761
3789
|
testId = _ref$testId === void 0 ? 'icon-list' : _ref$testId,
|
|
3762
3790
|
size = _ref.size,
|
|
3763
3791
|
color = _ref.color,
|
|
3764
3792
|
style = _ref.style,
|
|
3765
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3793
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1s);
|
|
3766
3794
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3767
3795
|
var styleProps = {
|
|
3768
3796
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3783,14 +3811,14 @@ var IconList = React.forwardRef(function (_ref, ref) {
|
|
|
3783
3811
|
});
|
|
3784
3812
|
IconList.displayName = 'IconList';
|
|
3785
3813
|
|
|
3786
|
-
var _excluded$
|
|
3814
|
+
var _excluded$1t = ["testId", "size", "color", "style"];
|
|
3787
3815
|
var IconLock = React.forwardRef(function (_ref, ref) {
|
|
3788
3816
|
var _ref$testId = _ref.testId,
|
|
3789
3817
|
testId = _ref$testId === void 0 ? 'icon-lock' : _ref$testId,
|
|
3790
3818
|
size = _ref.size,
|
|
3791
3819
|
color = _ref.color,
|
|
3792
3820
|
style = _ref.style,
|
|
3793
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3821
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1t);
|
|
3794
3822
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3795
3823
|
var styleProps = {
|
|
3796
3824
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3811,14 +3839,14 @@ var IconLock = React.forwardRef(function (_ref, ref) {
|
|
|
3811
3839
|
});
|
|
3812
3840
|
IconLock.displayName = 'IconLock';
|
|
3813
3841
|
|
|
3814
|
-
var _excluded$
|
|
3842
|
+
var _excluded$1u = ["testId", "size", "color", "style"];
|
|
3815
3843
|
var IconMagicSolid = React.forwardRef(function (_ref, ref) {
|
|
3816
3844
|
var _ref$testId = _ref.testId,
|
|
3817
3845
|
testId = _ref$testId === void 0 ? 'icon-magic-solid' : _ref$testId,
|
|
3818
3846
|
size = _ref.size,
|
|
3819
3847
|
color = _ref.color,
|
|
3820
3848
|
style = _ref.style,
|
|
3821
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3849
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1u);
|
|
3822
3850
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3823
3851
|
var styleProps = {
|
|
3824
3852
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3841,14 +3869,14 @@ var IconMagicSolid = React.forwardRef(function (_ref, ref) {
|
|
|
3841
3869
|
});
|
|
3842
3870
|
IconMagicSolid.displayName = 'IconMagicSolid';
|
|
3843
3871
|
|
|
3844
|
-
var _excluded$
|
|
3872
|
+
var _excluded$1v = ["testId", "size", "color", "style"];
|
|
3845
3873
|
var IconMapMarker = React.forwardRef(function (_ref, ref) {
|
|
3846
3874
|
var _ref$testId = _ref.testId,
|
|
3847
3875
|
testId = _ref$testId === void 0 ? 'icon-map-marker' : _ref$testId,
|
|
3848
3876
|
size = _ref.size,
|
|
3849
3877
|
color = _ref.color,
|
|
3850
3878
|
style = _ref.style,
|
|
3851
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3879
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1v);
|
|
3852
3880
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3853
3881
|
var styleProps = {
|
|
3854
3882
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3871,14 +3899,14 @@ var IconMapMarker = React.forwardRef(function (_ref, ref) {
|
|
|
3871
3899
|
});
|
|
3872
3900
|
IconMapMarker.displayName = 'IconMapMarker';
|
|
3873
3901
|
|
|
3874
|
-
var _excluded$
|
|
3902
|
+
var _excluded$1w = ["testId", "size", "color", "style"];
|
|
3875
3903
|
var IconMegaphone = React.forwardRef(function (_ref, ref) {
|
|
3876
3904
|
var _ref$testId = _ref.testId,
|
|
3877
3905
|
testId = _ref$testId === void 0 ? 'icon-megaphone' : _ref$testId,
|
|
3878
3906
|
size = _ref.size,
|
|
3879
3907
|
color = _ref.color,
|
|
3880
3908
|
style = _ref.style,
|
|
3881
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3909
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1w);
|
|
3882
3910
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3883
3911
|
var styleProps = {
|
|
3884
3912
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3901,14 +3929,14 @@ var IconMegaphone = React.forwardRef(function (_ref, ref) {
|
|
|
3901
3929
|
});
|
|
3902
3930
|
IconMegaphone.displayName = 'IconMegaphone';
|
|
3903
3931
|
|
|
3904
|
-
var _excluded$
|
|
3932
|
+
var _excluded$1x = ["testId", "size", "color", "style"];
|
|
3905
3933
|
var IconMessages = React.forwardRef(function (_ref, ref) {
|
|
3906
3934
|
var _ref$testId = _ref.testId,
|
|
3907
3935
|
testId = _ref$testId === void 0 ? 'icon-messages' : _ref$testId,
|
|
3908
3936
|
size = _ref.size,
|
|
3909
3937
|
color = _ref.color,
|
|
3910
3938
|
style = _ref.style,
|
|
3911
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3939
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1x);
|
|
3912
3940
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3913
3941
|
var styleProps = {
|
|
3914
3942
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3929,14 +3957,14 @@ var IconMessages = React.forwardRef(function (_ref, ref) {
|
|
|
3929
3957
|
});
|
|
3930
3958
|
IconMessages.displayName = 'IconMessages';
|
|
3931
3959
|
|
|
3932
|
-
var _excluded$
|
|
3960
|
+
var _excluded$1y = ["testId", "size", "color", "style"];
|
|
3933
3961
|
var IconMinusCircle = React.forwardRef(function (_ref, ref) {
|
|
3934
3962
|
var _ref$testId = _ref.testId,
|
|
3935
3963
|
testId = _ref$testId === void 0 ? 'icon-minus-circle' : _ref$testId,
|
|
3936
3964
|
size = _ref.size,
|
|
3937
3965
|
color = _ref.color,
|
|
3938
3966
|
style = _ref.style,
|
|
3939
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3967
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1y);
|
|
3940
3968
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3941
3969
|
var styleProps = {
|
|
3942
3970
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3957,14 +3985,14 @@ var IconMinusCircle = React.forwardRef(function (_ref, ref) {
|
|
|
3957
3985
|
});
|
|
3958
3986
|
IconMinusCircle.displayName = 'IconMinusCircle';
|
|
3959
3987
|
|
|
3960
|
-
var _excluded$
|
|
3988
|
+
var _excluded$1z = ["testId", "size", "color", "style"];
|
|
3961
3989
|
var IconMinus = React.forwardRef(function (_ref, ref) {
|
|
3962
3990
|
var _ref$testId = _ref.testId,
|
|
3963
3991
|
testId = _ref$testId === void 0 ? 'icon-minus' : _ref$testId,
|
|
3964
3992
|
size = _ref.size,
|
|
3965
3993
|
color = _ref.color,
|
|
3966
3994
|
style = _ref.style,
|
|
3967
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3995
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1z);
|
|
3968
3996
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3969
3997
|
var styleProps = {
|
|
3970
3998
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -3985,14 +4013,14 @@ var IconMinus = React.forwardRef(function (_ref, ref) {
|
|
|
3985
4013
|
});
|
|
3986
4014
|
IconMinus.displayName = 'IconMinus';
|
|
3987
4015
|
|
|
3988
|
-
var _excluded$
|
|
4016
|
+
var _excluded$1A = ["testId", "size", "color", "style"];
|
|
3989
4017
|
var IconMoneyBill = React.forwardRef(function (_ref, ref) {
|
|
3990
4018
|
var _ref$testId = _ref.testId,
|
|
3991
4019
|
testId = _ref$testId === void 0 ? 'icon-money-bill' : _ref$testId,
|
|
3992
4020
|
size = _ref.size,
|
|
3993
4021
|
color = _ref.color,
|
|
3994
4022
|
style = _ref.style,
|
|
3995
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4023
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1A);
|
|
3996
4024
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
3997
4025
|
var styleProps = {
|
|
3998
4026
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4013,14 +4041,14 @@ var IconMoneyBill = React.forwardRef(function (_ref, ref) {
|
|
|
4013
4041
|
});
|
|
4014
4042
|
IconMoneyBill.displayName = 'IconMoneyBill';
|
|
4015
4043
|
|
|
4016
|
-
var _excluded$
|
|
4044
|
+
var _excluded$1B = ["testId", "size", "color", "style"];
|
|
4017
4045
|
var IconMugSaucerSolid = React.forwardRef(function (_ref, ref) {
|
|
4018
4046
|
var _ref$testId = _ref.testId,
|
|
4019
4047
|
testId = _ref$testId === void 0 ? 'icon-mug-saucer-solid' : _ref$testId,
|
|
4020
4048
|
size = _ref.size,
|
|
4021
4049
|
color = _ref.color,
|
|
4022
4050
|
style = _ref.style,
|
|
4023
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4051
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1B);
|
|
4024
4052
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4025
4053
|
var styleProps = {
|
|
4026
4054
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4041,14 +4069,14 @@ var IconMugSaucerSolid = React.forwardRef(function (_ref, ref) {
|
|
|
4041
4069
|
});
|
|
4042
4070
|
IconMugSaucerSolid.displayName = 'IconMugSaucerSolid';
|
|
4043
4071
|
|
|
4044
|
-
var _excluded$
|
|
4072
|
+
var _excluded$1C = ["testId", "size", "color", "style"];
|
|
4045
4073
|
var IconNotesMedical = React.forwardRef(function (_ref, ref) {
|
|
4046
4074
|
var _ref$testId = _ref.testId,
|
|
4047
4075
|
testId = _ref$testId === void 0 ? 'icon-notes-medical' : _ref$testId,
|
|
4048
4076
|
size = _ref.size,
|
|
4049
4077
|
color = _ref.color,
|
|
4050
4078
|
style = _ref.style,
|
|
4051
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4079
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1C);
|
|
4052
4080
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4053
4081
|
var styleProps = {
|
|
4054
4082
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4069,14 +4097,14 @@ var IconNotesMedical = React.forwardRef(function (_ref, ref) {
|
|
|
4069
4097
|
});
|
|
4070
4098
|
IconNotesMedical.displayName = 'IconNotesMedical';
|
|
4071
4099
|
|
|
4072
|
-
var _excluded$
|
|
4100
|
+
var _excluded$1D = ["testId", "size", "color", "style"];
|
|
4073
4101
|
var IconOvertime = React.forwardRef(function (_ref, ref) {
|
|
4074
4102
|
var _ref$testId = _ref.testId,
|
|
4075
4103
|
testId = _ref$testId === void 0 ? 'icon-overtime' : _ref$testId,
|
|
4076
4104
|
size = _ref.size,
|
|
4077
4105
|
color = _ref.color,
|
|
4078
4106
|
style = _ref.style,
|
|
4079
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4107
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1D);
|
|
4080
4108
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4081
4109
|
var styleProps = {
|
|
4082
4110
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4104,14 +4132,14 @@ var IconOvertime = React.forwardRef(function (_ref, ref) {
|
|
|
4104
4132
|
});
|
|
4105
4133
|
IconOvertime.displayName = 'IconOvertime';
|
|
4106
4134
|
|
|
4107
|
-
var _excluded$
|
|
4135
|
+
var _excluded$1E = ["testId", "size", "color", "style"];
|
|
4108
4136
|
var IconPaperPlaneClock = React.forwardRef(function (_ref, ref) {
|
|
4109
4137
|
var _ref$testId = _ref.testId,
|
|
4110
4138
|
testId = _ref$testId === void 0 ? 'icon-paper-plane-clock' : _ref$testId,
|
|
4111
4139
|
size = _ref.size,
|
|
4112
4140
|
color = _ref.color,
|
|
4113
4141
|
style = _ref.style,
|
|
4114
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4142
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1E);
|
|
4115
4143
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4116
4144
|
var styleProps = {
|
|
4117
4145
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4143,14 +4171,14 @@ var IconPaperPlaneClock = React.forwardRef(function (_ref, ref) {
|
|
|
4143
4171
|
});
|
|
4144
4172
|
IconPaperPlaneClock.displayName = 'IconPaperPlaneClock';
|
|
4145
4173
|
|
|
4146
|
-
var _excluded$
|
|
4174
|
+
var _excluded$1F = ["testId", "size", "color", "style"];
|
|
4147
4175
|
var IconPaperPlane = React.forwardRef(function (_ref, ref) {
|
|
4148
4176
|
var _ref$testId = _ref.testId,
|
|
4149
4177
|
testId = _ref$testId === void 0 ? 'icon-paper-plane' : _ref$testId,
|
|
4150
4178
|
size = _ref.size,
|
|
4151
4179
|
color = _ref.color,
|
|
4152
4180
|
style = _ref.style,
|
|
4153
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4181
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1F);
|
|
4154
4182
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4155
4183
|
var styleProps = {
|
|
4156
4184
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4173,14 +4201,14 @@ var IconPaperPlane = React.forwardRef(function (_ref, ref) {
|
|
|
4173
4201
|
});
|
|
4174
4202
|
IconPaperPlane.displayName = 'IconPaperPlane';
|
|
4175
4203
|
|
|
4176
|
-
var _excluded$
|
|
4204
|
+
var _excluded$1G = ["testId", "size", "color", "style"];
|
|
4177
4205
|
var IconPaperclip = React.forwardRef(function (_ref, ref) {
|
|
4178
4206
|
var _ref$testId = _ref.testId,
|
|
4179
4207
|
testId = _ref$testId === void 0 ? 'icon-paperclip' : _ref$testId,
|
|
4180
4208
|
size = _ref.size,
|
|
4181
4209
|
color = _ref.color,
|
|
4182
4210
|
style = _ref.style,
|
|
4183
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4211
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1G);
|
|
4184
4212
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4185
4213
|
var styleProps = {
|
|
4186
4214
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4208,14 +4236,14 @@ var IconPaperclip = React.forwardRef(function (_ref, ref) {
|
|
|
4208
4236
|
});
|
|
4209
4237
|
IconPaperclip.displayName = 'IconPaperclip';
|
|
4210
4238
|
|
|
4211
|
-
var _excluded$
|
|
4239
|
+
var _excluded$1H = ["testId", "size", "color", "style"];
|
|
4212
4240
|
var IconPencil = React.forwardRef(function (_ref, ref) {
|
|
4213
4241
|
var _ref$testId = _ref.testId,
|
|
4214
4242
|
testId = _ref$testId === void 0 ? 'icon-pencil' : _ref$testId,
|
|
4215
4243
|
size = _ref.size,
|
|
4216
4244
|
color = _ref.color,
|
|
4217
4245
|
style = _ref.style,
|
|
4218
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4246
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1H);
|
|
4219
4247
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4220
4248
|
var styleProps = {
|
|
4221
4249
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4238,14 +4266,14 @@ var IconPencil = React.forwardRef(function (_ref, ref) {
|
|
|
4238
4266
|
});
|
|
4239
4267
|
IconPencil.displayName = 'IconPencil';
|
|
4240
4268
|
|
|
4241
|
-
var _excluded$
|
|
4269
|
+
var _excluded$1I = ["testId", "size", "color", "style"];
|
|
4242
4270
|
var IconPercentage = React.forwardRef(function (_ref, ref) {
|
|
4243
4271
|
var _ref$testId = _ref.testId,
|
|
4244
4272
|
testId = _ref$testId === void 0 ? 'icon-percentage' : _ref$testId,
|
|
4245
4273
|
size = _ref.size,
|
|
4246
4274
|
color = _ref.color,
|
|
4247
4275
|
style = _ref.style,
|
|
4248
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4276
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1I);
|
|
4249
4277
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4250
4278
|
var styleProps = {
|
|
4251
4279
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4266,14 +4294,14 @@ var IconPercentage = React.forwardRef(function (_ref, ref) {
|
|
|
4266
4294
|
});
|
|
4267
4295
|
IconPercentage.displayName = 'IconPercentage';
|
|
4268
4296
|
|
|
4269
|
-
var _excluded$
|
|
4297
|
+
var _excluded$1J = ["testId", "size", "color", "style"];
|
|
4270
4298
|
var IconPhone = React.forwardRef(function (_ref, ref) {
|
|
4271
4299
|
var _ref$testId = _ref.testId,
|
|
4272
4300
|
testId = _ref$testId === void 0 ? 'icon-phone' : _ref$testId,
|
|
4273
4301
|
size = _ref.size,
|
|
4274
4302
|
color = _ref.color,
|
|
4275
4303
|
style = _ref.style,
|
|
4276
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4304
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1J);
|
|
4277
4305
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4278
4306
|
var styleProps = {
|
|
4279
4307
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4294,14 +4322,42 @@ var IconPhone = React.forwardRef(function (_ref, ref) {
|
|
|
4294
4322
|
});
|
|
4295
4323
|
IconPhone.displayName = 'IconPhone';
|
|
4296
4324
|
|
|
4297
|
-
var _excluded$
|
|
4325
|
+
var _excluded$1K = ["testId", "size", "color", "style"];
|
|
4326
|
+
var IconPlateUtensils = React.forwardRef(function (_ref, ref) {
|
|
4327
|
+
var _ref$testId = _ref.testId,
|
|
4328
|
+
testId = _ref$testId === void 0 ? 'icon-plate-utensils' : _ref$testId,
|
|
4329
|
+
size = _ref.size,
|
|
4330
|
+
color = _ref.color,
|
|
4331
|
+
style = _ref.style,
|
|
4332
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1K);
|
|
4333
|
+
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4334
|
+
var styleProps = {
|
|
4335
|
+
size: !size && isInsideButton ? 'medium' : size,
|
|
4336
|
+
color: color,
|
|
4337
|
+
style: style
|
|
4338
|
+
};
|
|
4339
|
+
return React__default.createElement("svg", _extends({
|
|
4340
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4341
|
+
fill: "none",
|
|
4342
|
+
viewBox: "0 0 20 20",
|
|
4343
|
+
style: getIconStyles(styleProps),
|
|
4344
|
+
"data-testid": testId,
|
|
4345
|
+
ref: ref
|
|
4346
|
+
}, props), React__default.createElement("path", {
|
|
4347
|
+
fill: "currentColor",
|
|
4348
|
+
d: "M.5 3c-.275 0-.5.225-.5.5V8a1.5 1.5 0 0 0 1.5 1.5H2v8c0 .275.225.5.5.5s.5-.225.5-.5v-8h.5A1.5 1.5 0 0 0 5 8V3.5c0-.275-.225-.5-.5-.5s-.5.225-.5.5V8c0 .275-.225.5-.5.5H3v-5c0-.275-.225-.5-.5-.5s-.5.225-.5.5v5h-.5A.501.501 0 0 1 1 8V3.5C1 3.225.775 3 .5 3Zm15.063 1.966A7.472 7.472 0 0 0 10.5 3C8.813 3 7.253 3.56 6 4.5v1.31A6.474 6.474 0 0 1 10.5 4c1.84 0 3.5.766 4.684 1.994.097-.375.225-.716.379-1.028Zm.765 8.418a6.501 6.501 0 0 1-11.312.604 2.493 2.493 0 0 1-.907.437A7.494 7.494 0 0 0 10.5 18a7.498 7.498 0 0 0 6.875-4.5H17c-.238 0-.462-.04-.672-.116ZM15 10.5a4.5 4.5 0 1 0-9.002 0 4.5 4.5 0 0 0 9.002 0Zm-8 0a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0Zm12-6.3v7.3h-2v-4c0-1.916 1.231-2.881 2-3.3Zm1 7.3V3.653c0-.36-.29-.653-.653-.653a.568.568 0 0 0-.19.031C18.63 3.225 16 4.35 16 7.5v4c0 .553.447 1 1 1h2v5c0 .275.225.5.5.5s.5-.225.5-.5v-6Z"
|
|
4349
|
+
}));
|
|
4350
|
+
});
|
|
4351
|
+
IconPlateUtensils.displayName = 'IconPlateUtensils';
|
|
4352
|
+
|
|
4353
|
+
var _excluded$1L = ["testId", "size", "color", "style"];
|
|
4298
4354
|
var IconPlug = React.forwardRef(function (_ref, ref) {
|
|
4299
4355
|
var _ref$testId = _ref.testId,
|
|
4300
4356
|
testId = _ref$testId === void 0 ? 'icon-plug' : _ref$testId,
|
|
4301
4357
|
size = _ref.size,
|
|
4302
4358
|
color = _ref.color,
|
|
4303
4359
|
style = _ref.style,
|
|
4304
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4360
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1L);
|
|
4305
4361
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4306
4362
|
var styleProps = {
|
|
4307
4363
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4324,14 +4380,14 @@ var IconPlug = React.forwardRef(function (_ref, ref) {
|
|
|
4324
4380
|
});
|
|
4325
4381
|
IconPlug.displayName = 'IconPlug';
|
|
4326
4382
|
|
|
4327
|
-
var _excluded$
|
|
4383
|
+
var _excluded$1M = ["testId", "size", "color", "style"];
|
|
4328
4384
|
var IconPlus = React.forwardRef(function (_ref, ref) {
|
|
4329
4385
|
var _ref$testId = _ref.testId,
|
|
4330
4386
|
testId = _ref$testId === void 0 ? 'icon-plus' : _ref$testId,
|
|
4331
4387
|
size = _ref.size,
|
|
4332
4388
|
color = _ref.color,
|
|
4333
4389
|
style = _ref.style,
|
|
4334
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4390
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1M);
|
|
4335
4391
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4336
4392
|
var styleProps = {
|
|
4337
4393
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4354,14 +4410,14 @@ var IconPlus = React.forwardRef(function (_ref, ref) {
|
|
|
4354
4410
|
});
|
|
4355
4411
|
IconPlus.displayName = 'IconPlus';
|
|
4356
4412
|
|
|
4357
|
-
var _excluded$
|
|
4413
|
+
var _excluded$1N = ["testId", "size", "color", "style"];
|
|
4358
4414
|
var IconPrint = React.forwardRef(function (_ref, ref) {
|
|
4359
4415
|
var _ref$testId = _ref.testId,
|
|
4360
4416
|
testId = _ref$testId === void 0 ? 'icon-print' : _ref$testId,
|
|
4361
4417
|
size = _ref.size,
|
|
4362
4418
|
color = _ref.color,
|
|
4363
4419
|
style = _ref.style,
|
|
4364
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4420
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1N);
|
|
4365
4421
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4366
4422
|
var styleProps = {
|
|
4367
4423
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4384,14 +4440,14 @@ var IconPrint = React.forwardRef(function (_ref, ref) {
|
|
|
4384
4440
|
});
|
|
4385
4441
|
IconPrint.displayName = 'IconPrint';
|
|
4386
4442
|
|
|
4387
|
-
var _excluded$
|
|
4443
|
+
var _excluded$1O = ["testId", "size", "color", "style"];
|
|
4388
4444
|
var IconQuestionCircle = React.forwardRef(function (_ref, ref) {
|
|
4389
4445
|
var _ref$testId = _ref.testId,
|
|
4390
4446
|
testId = _ref$testId === void 0 ? 'icon-question-circle' : _ref$testId,
|
|
4391
4447
|
size = _ref.size,
|
|
4392
4448
|
color = _ref.color,
|
|
4393
4449
|
style = _ref.style,
|
|
4394
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4450
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1O);
|
|
4395
4451
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4396
4452
|
var styleProps = {
|
|
4397
4453
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4412,14 +4468,14 @@ var IconQuestionCircle = React.forwardRef(function (_ref, ref) {
|
|
|
4412
4468
|
});
|
|
4413
4469
|
IconQuestionCircle.displayName = 'IconQuestionCircle';
|
|
4414
4470
|
|
|
4415
|
-
var _excluded$
|
|
4471
|
+
var _excluded$1P = ["testId", "size", "color", "style"];
|
|
4416
4472
|
var IconRepeat = React.forwardRef(function (_ref, ref) {
|
|
4417
4473
|
var _ref$testId = _ref.testId,
|
|
4418
4474
|
testId = _ref$testId === void 0 ? 'icon-repeat' : _ref$testId,
|
|
4419
4475
|
size = _ref.size,
|
|
4420
4476
|
color = _ref.color,
|
|
4421
4477
|
style = _ref.style,
|
|
4422
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4478
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1P);
|
|
4423
4479
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4424
4480
|
var styleProps = {
|
|
4425
4481
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4440,14 +4496,14 @@ var IconRepeat = React.forwardRef(function (_ref, ref) {
|
|
|
4440
4496
|
});
|
|
4441
4497
|
IconRepeat.displayName = 'IconRepeat';
|
|
4442
4498
|
|
|
4443
|
-
var _excluded$
|
|
4499
|
+
var _excluded$1Q = ["testId", "size", "color", "style"];
|
|
4444
4500
|
var IconReply = React.forwardRef(function (_ref, ref) {
|
|
4445
4501
|
var _ref$testId = _ref.testId,
|
|
4446
4502
|
testId = _ref$testId === void 0 ? 'icon-reply' : _ref$testId,
|
|
4447
4503
|
size = _ref.size,
|
|
4448
4504
|
color = _ref.color,
|
|
4449
4505
|
style = _ref.style,
|
|
4450
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4506
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Q);
|
|
4451
4507
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4452
4508
|
var styleProps = {
|
|
4453
4509
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4468,14 +4524,14 @@ var IconReply = React.forwardRef(function (_ref, ref) {
|
|
|
4468
4524
|
});
|
|
4469
4525
|
IconReply.displayName = 'IconReply';
|
|
4470
4526
|
|
|
4471
|
-
var _excluded$
|
|
4527
|
+
var _excluded$1R = ["testId", "size", "color", "style"];
|
|
4472
4528
|
var IconRocket = React.forwardRef(function (_ref, ref) {
|
|
4473
4529
|
var _ref$testId = _ref.testId,
|
|
4474
4530
|
testId = _ref$testId === void 0 ? 'icon-rocket' : _ref$testId,
|
|
4475
4531
|
size = _ref.size,
|
|
4476
4532
|
color = _ref.color,
|
|
4477
4533
|
style = _ref.style,
|
|
4478
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4534
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1R);
|
|
4479
4535
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4480
4536
|
var styleProps = {
|
|
4481
4537
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4496,14 +4552,14 @@ var IconRocket = React.forwardRef(function (_ref, ref) {
|
|
|
4496
4552
|
});
|
|
4497
4553
|
IconRocket.displayName = 'IconRocket';
|
|
4498
4554
|
|
|
4499
|
-
var _excluded$
|
|
4555
|
+
var _excluded$1S = ["testId", "size", "color", "style"];
|
|
4500
4556
|
var IconSearch = React.forwardRef(function (_ref, ref) {
|
|
4501
4557
|
var _ref$testId = _ref.testId,
|
|
4502
4558
|
testId = _ref$testId === void 0 ? 'icon-search' : _ref$testId,
|
|
4503
4559
|
size = _ref.size,
|
|
4504
4560
|
color = _ref.color,
|
|
4505
4561
|
style = _ref.style,
|
|
4506
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4562
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1S);
|
|
4507
4563
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4508
4564
|
var styleProps = {
|
|
4509
4565
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4526,14 +4582,14 @@ var IconSearch = React.forwardRef(function (_ref, ref) {
|
|
|
4526
4582
|
});
|
|
4527
4583
|
IconSearch.displayName = 'IconSearch';
|
|
4528
4584
|
|
|
4529
|
-
var _excluded$
|
|
4585
|
+
var _excluded$1T = ["testId", "size", "color", "style"];
|
|
4530
4586
|
var IconSignOut = React.forwardRef(function (_ref, ref) {
|
|
4531
4587
|
var _ref$testId = _ref.testId,
|
|
4532
4588
|
testId = _ref$testId === void 0 ? 'icon-sign-out' : _ref$testId,
|
|
4533
4589
|
size = _ref.size,
|
|
4534
4590
|
color = _ref.color,
|
|
4535
4591
|
style = _ref.style,
|
|
4536
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4592
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1T);
|
|
4537
4593
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4538
4594
|
var styleProps = {
|
|
4539
4595
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4554,14 +4610,14 @@ var IconSignOut = React.forwardRef(function (_ref, ref) {
|
|
|
4554
4610
|
});
|
|
4555
4611
|
IconSignOut.displayName = 'IconSignOut';
|
|
4556
4612
|
|
|
4557
|
-
var _excluded$
|
|
4613
|
+
var _excluded$1U = ["testId", "size", "color", "style"];
|
|
4558
4614
|
var IconSitemap = React.forwardRef(function (_ref, ref) {
|
|
4559
4615
|
var _ref$testId = _ref.testId,
|
|
4560
4616
|
testId = _ref$testId === void 0 ? 'icon-sitemap' : _ref$testId,
|
|
4561
4617
|
size = _ref.size,
|
|
4562
4618
|
color = _ref.color,
|
|
4563
4619
|
style = _ref.style,
|
|
4564
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4620
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1U);
|
|
4565
4621
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4566
4622
|
var styleProps = {
|
|
4567
4623
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4584,14 +4640,14 @@ var IconSitemap = React.forwardRef(function (_ref, ref) {
|
|
|
4584
4640
|
});
|
|
4585
4641
|
IconSitemap.displayName = 'IconSitemap';
|
|
4586
4642
|
|
|
4587
|
-
var _excluded$
|
|
4643
|
+
var _excluded$1V = ["testId", "size", "color", "style"];
|
|
4588
4644
|
var IconSlidersH = React.forwardRef(function (_ref, ref) {
|
|
4589
4645
|
var _ref$testId = _ref.testId,
|
|
4590
4646
|
testId = _ref$testId === void 0 ? 'icon-sliders-h' : _ref$testId,
|
|
4591
4647
|
size = _ref.size,
|
|
4592
4648
|
color = _ref.color,
|
|
4593
4649
|
style = _ref.style,
|
|
4594
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4650
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1V);
|
|
4595
4651
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4596
4652
|
var styleProps = {
|
|
4597
4653
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4619,14 +4675,14 @@ var IconSlidersH = React.forwardRef(function (_ref, ref) {
|
|
|
4619
4675
|
});
|
|
4620
4676
|
IconSlidersH.displayName = 'IconSlidersH';
|
|
4621
4677
|
|
|
4622
|
-
var _excluded$
|
|
4678
|
+
var _excluded$1W = ["testId", "size", "color", "style"];
|
|
4623
4679
|
var IconSort = React.forwardRef(function (_ref, ref) {
|
|
4624
4680
|
var _ref$testId = _ref.testId,
|
|
4625
4681
|
testId = _ref$testId === void 0 ? 'icon-sort' : _ref$testId,
|
|
4626
4682
|
size = _ref.size,
|
|
4627
4683
|
color = _ref.color,
|
|
4628
4684
|
style = _ref.style,
|
|
4629
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4685
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1W);
|
|
4630
4686
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4631
4687
|
var styleProps = {
|
|
4632
4688
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4647,14 +4703,14 @@ var IconSort = React.forwardRef(function (_ref, ref) {
|
|
|
4647
4703
|
});
|
|
4648
4704
|
IconSort.displayName = 'IconSort';
|
|
4649
4705
|
|
|
4650
|
-
var _excluded$
|
|
4706
|
+
var _excluded$1X = ["testId", "size", "color", "style"];
|
|
4651
4707
|
var IconStarSolid = React.forwardRef(function (_ref, ref) {
|
|
4652
4708
|
var _ref$testId = _ref.testId,
|
|
4653
4709
|
testId = _ref$testId === void 0 ? 'icon-star-solid' : _ref$testId,
|
|
4654
4710
|
size = _ref.size,
|
|
4655
4711
|
color = _ref.color,
|
|
4656
4712
|
style = _ref.style,
|
|
4657
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4713
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1X);
|
|
4658
4714
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4659
4715
|
var styleProps = {
|
|
4660
4716
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4675,14 +4731,14 @@ var IconStarSolid = React.forwardRef(function (_ref, ref) {
|
|
|
4675
4731
|
});
|
|
4676
4732
|
IconStarSolid.displayName = 'IconStarSolid';
|
|
4677
4733
|
|
|
4678
|
-
var _excluded$
|
|
4734
|
+
var _excluded$1Y = ["testId", "size", "color", "style"];
|
|
4679
4735
|
var IconStar = React.forwardRef(function (_ref, ref) {
|
|
4680
4736
|
var _ref$testId = _ref.testId,
|
|
4681
4737
|
testId = _ref$testId === void 0 ? 'icon-star' : _ref$testId,
|
|
4682
4738
|
size = _ref.size,
|
|
4683
4739
|
color = _ref.color,
|
|
4684
4740
|
style = _ref.style,
|
|
4685
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4741
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Y);
|
|
4686
4742
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4687
4743
|
var styleProps = {
|
|
4688
4744
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4703,14 +4759,14 @@ var IconStar = React.forwardRef(function (_ref, ref) {
|
|
|
4703
4759
|
});
|
|
4704
4760
|
IconStar.displayName = 'IconStar';
|
|
4705
4761
|
|
|
4706
|
-
var _excluded$
|
|
4762
|
+
var _excluded$1Z = ["testId", "size", "color", "style"];
|
|
4707
4763
|
var IconStickyNoteLines = React.forwardRef(function (_ref, ref) {
|
|
4708
4764
|
var _ref$testId = _ref.testId,
|
|
4709
4765
|
testId = _ref$testId === void 0 ? 'icon-sticky-note-lines' : _ref$testId,
|
|
4710
4766
|
size = _ref.size,
|
|
4711
4767
|
color = _ref.color,
|
|
4712
4768
|
style = _ref.style,
|
|
4713
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4769
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1Z);
|
|
4714
4770
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4715
4771
|
var styleProps = {
|
|
4716
4772
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4734,14 +4790,14 @@ var IconStickyNoteLines = React.forwardRef(function (_ref, ref) {
|
|
|
4734
4790
|
});
|
|
4735
4791
|
IconStickyNoteLines.displayName = 'IconStickyNoteLines';
|
|
4736
4792
|
|
|
4737
|
-
var _excluded$
|
|
4793
|
+
var _excluded$1_ = ["testId", "size", "color", "style"];
|
|
4738
4794
|
var IconStopwatch = React.forwardRef(function (_ref, ref) {
|
|
4739
4795
|
var _ref$testId = _ref.testId,
|
|
4740
4796
|
testId = _ref$testId === void 0 ? 'icon-stopwatch' : _ref$testId,
|
|
4741
4797
|
size = _ref.size,
|
|
4742
4798
|
color = _ref.color,
|
|
4743
4799
|
style = _ref.style,
|
|
4744
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4800
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1_);
|
|
4745
4801
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4746
4802
|
var styleProps = {
|
|
4747
4803
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4764,14 +4820,14 @@ var IconStopwatch = React.forwardRef(function (_ref, ref) {
|
|
|
4764
4820
|
});
|
|
4765
4821
|
IconStopwatch.displayName = 'IconStopwatch';
|
|
4766
4822
|
|
|
4767
|
-
var _excluded$
|
|
4823
|
+
var _excluded$1$ = ["testId", "size", "color", "style"];
|
|
4768
4824
|
var IconStrikethrough = React.forwardRef(function (_ref, ref) {
|
|
4769
4825
|
var _ref$testId = _ref.testId,
|
|
4770
4826
|
testId = _ref$testId === void 0 ? 'icon-strikethrough' : _ref$testId,
|
|
4771
4827
|
size = _ref.size,
|
|
4772
4828
|
color = _ref.color,
|
|
4773
4829
|
style = _ref.style,
|
|
4774
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4830
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1$);
|
|
4775
4831
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4776
4832
|
var styleProps = {
|
|
4777
4833
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4799,14 +4855,14 @@ var IconStrikethrough = React.forwardRef(function (_ref, ref) {
|
|
|
4799
4855
|
});
|
|
4800
4856
|
IconStrikethrough.displayName = 'IconStrikethrough';
|
|
4801
4857
|
|
|
4802
|
-
var _excluded$
|
|
4858
|
+
var _excluded$20 = ["testId", "size", "color", "style"];
|
|
4803
4859
|
var IconSyncExclaimation = React.forwardRef(function (_ref, ref) {
|
|
4804
4860
|
var _ref$testId = _ref.testId,
|
|
4805
4861
|
testId = _ref$testId === void 0 ? 'icon-sync-exclaimation' : _ref$testId,
|
|
4806
4862
|
size = _ref.size,
|
|
4807
4863
|
color = _ref.color,
|
|
4808
4864
|
style = _ref.style,
|
|
4809
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4865
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$20);
|
|
4810
4866
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4811
4867
|
var styleProps = {
|
|
4812
4868
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4827,14 +4883,14 @@ var IconSyncExclaimation = React.forwardRef(function (_ref, ref) {
|
|
|
4827
4883
|
});
|
|
4828
4884
|
IconSyncExclaimation.displayName = 'IconSyncExclaimation';
|
|
4829
4885
|
|
|
4830
|
-
var _excluded$
|
|
4886
|
+
var _excluded$21 = ["testId", "size", "color", "style"];
|
|
4831
4887
|
var IconSync = React.forwardRef(function (_ref, ref) {
|
|
4832
4888
|
var _ref$testId = _ref.testId,
|
|
4833
4889
|
testId = _ref$testId === void 0 ? 'icon-sync' : _ref$testId,
|
|
4834
4890
|
size = _ref.size,
|
|
4835
4891
|
color = _ref.color,
|
|
4836
4892
|
style = _ref.style,
|
|
4837
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4893
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$21);
|
|
4838
4894
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4839
4895
|
var styleProps = {
|
|
4840
4896
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4855,14 +4911,14 @@ var IconSync = React.forwardRef(function (_ref, ref) {
|
|
|
4855
4911
|
});
|
|
4856
4912
|
IconSync.displayName = 'IconSync';
|
|
4857
4913
|
|
|
4858
|
-
var _excluded$
|
|
4914
|
+
var _excluded$22 = ["testId", "size", "color", "style"];
|
|
4859
4915
|
var IconTable = React.forwardRef(function (_ref, ref) {
|
|
4860
4916
|
var _ref$testId = _ref.testId,
|
|
4861
4917
|
testId = _ref$testId === void 0 ? 'icon-table' : _ref$testId,
|
|
4862
4918
|
size = _ref.size,
|
|
4863
4919
|
color = _ref.color,
|
|
4864
4920
|
style = _ref.style,
|
|
4865
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4921
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$22);
|
|
4866
4922
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4867
4923
|
var styleProps = {
|
|
4868
4924
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4890,14 +4946,14 @@ var IconTable = React.forwardRef(function (_ref, ref) {
|
|
|
4890
4946
|
});
|
|
4891
4947
|
IconTable.displayName = 'IconTable';
|
|
4892
4948
|
|
|
4893
|
-
var _excluded$
|
|
4949
|
+
var _excluded$23 = ["testId", "size", "color", "style"];
|
|
4894
4950
|
var IconTachometer = React.forwardRef(function (_ref, ref) {
|
|
4895
4951
|
var _ref$testId = _ref.testId,
|
|
4896
4952
|
testId = _ref$testId === void 0 ? 'icon-tachometer' : _ref$testId,
|
|
4897
4953
|
size = _ref.size,
|
|
4898
4954
|
color = _ref.color,
|
|
4899
4955
|
style = _ref.style,
|
|
4900
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4956
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$23);
|
|
4901
4957
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4902
4958
|
var styleProps = {
|
|
4903
4959
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4917,14 +4973,14 @@ var IconTachometer = React.forwardRef(function (_ref, ref) {
|
|
|
4917
4973
|
});
|
|
4918
4974
|
IconTachometer.displayName = 'IconTachometer';
|
|
4919
4975
|
|
|
4920
|
-
var _excluded$
|
|
4976
|
+
var _excluded$24 = ["testId", "size", "color", "style"];
|
|
4921
4977
|
var IconTimesOctagon = React.forwardRef(function (_ref, ref) {
|
|
4922
4978
|
var _ref$testId = _ref.testId,
|
|
4923
4979
|
testId = _ref$testId === void 0 ? 'icon-times-octagon' : _ref$testId,
|
|
4924
4980
|
size = _ref.size,
|
|
4925
4981
|
color = _ref.color,
|
|
4926
4982
|
style = _ref.style,
|
|
4927
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4983
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$24);
|
|
4928
4984
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4929
4985
|
var styleProps = {
|
|
4930
4986
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4947,14 +5003,14 @@ var IconTimesOctagon = React.forwardRef(function (_ref, ref) {
|
|
|
4947
5003
|
});
|
|
4948
5004
|
IconTimesOctagon.displayName = 'IconTimesOctagon';
|
|
4949
5005
|
|
|
4950
|
-
var _excluded$
|
|
5006
|
+
var _excluded$25 = ["testId", "size", "color", "style"];
|
|
4951
5007
|
var IconTimes = React.forwardRef(function (_ref, ref) {
|
|
4952
5008
|
var _ref$testId = _ref.testId,
|
|
4953
5009
|
testId = _ref$testId === void 0 ? 'icon-times' : _ref$testId,
|
|
4954
5010
|
size = _ref.size,
|
|
4955
5011
|
color = _ref.color,
|
|
4956
5012
|
style = _ref.style,
|
|
4957
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5013
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$25);
|
|
4958
5014
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4959
5015
|
var styleProps = {
|
|
4960
5016
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -4977,14 +5033,14 @@ var IconTimes = React.forwardRef(function (_ref, ref) {
|
|
|
4977
5033
|
});
|
|
4978
5034
|
IconTimes.displayName = 'IconTimes';
|
|
4979
5035
|
|
|
4980
|
-
var _excluded$
|
|
5036
|
+
var _excluded$26 = ["testId", "size", "color", "style"];
|
|
4981
5037
|
var IconTrash = React.forwardRef(function (_ref, ref) {
|
|
4982
5038
|
var _ref$testId = _ref.testId,
|
|
4983
5039
|
testId = _ref$testId === void 0 ? 'icon-trash' : _ref$testId,
|
|
4984
5040
|
size = _ref.size,
|
|
4985
5041
|
color = _ref.color,
|
|
4986
5042
|
style = _ref.style,
|
|
4987
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5043
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$26);
|
|
4988
5044
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
4989
5045
|
var styleProps = {
|
|
4990
5046
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5007,14 +5063,14 @@ var IconTrash = React.forwardRef(function (_ref, ref) {
|
|
|
5007
5063
|
});
|
|
5008
5064
|
IconTrash.displayName = 'IconTrash';
|
|
5009
5065
|
|
|
5010
|
-
var _excluded$
|
|
5066
|
+
var _excluded$27 = ["testId", "size", "color", "style"];
|
|
5011
5067
|
var IconUnderline = React.forwardRef(function (_ref, ref) {
|
|
5012
5068
|
var _ref$testId = _ref.testId,
|
|
5013
5069
|
testId = _ref$testId === void 0 ? 'icon-underline' : _ref$testId,
|
|
5014
5070
|
size = _ref.size,
|
|
5015
5071
|
color = _ref.color,
|
|
5016
5072
|
style = _ref.style,
|
|
5017
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5073
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$27);
|
|
5018
5074
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5019
5075
|
var styleProps = {
|
|
5020
5076
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5035,14 +5091,14 @@ var IconUnderline = React.forwardRef(function (_ref, ref) {
|
|
|
5035
5091
|
});
|
|
5036
5092
|
IconUnderline.displayName = 'IconUnderline';
|
|
5037
5093
|
|
|
5038
|
-
var _excluded$
|
|
5094
|
+
var _excluded$28 = ["testId", "size", "color", "style"];
|
|
5039
5095
|
var IconUndo = React.forwardRef(function (_ref, ref) {
|
|
5040
5096
|
var _ref$testId = _ref.testId,
|
|
5041
5097
|
testId = _ref$testId === void 0 ? 'icon-undo' : _ref$testId,
|
|
5042
5098
|
size = _ref.size,
|
|
5043
5099
|
color = _ref.color,
|
|
5044
5100
|
style = _ref.style,
|
|
5045
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5101
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$28);
|
|
5046
5102
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5047
5103
|
var styleProps = {
|
|
5048
5104
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5063,14 +5119,14 @@ var IconUndo = React.forwardRef(function (_ref, ref) {
|
|
|
5063
5119
|
});
|
|
5064
5120
|
IconUndo.displayName = 'IconUndo';
|
|
5065
5121
|
|
|
5066
|
-
var _excluded$
|
|
5122
|
+
var _excluded$29 = ["testId", "size", "color", "style"];
|
|
5067
5123
|
var IconUniversity = React.forwardRef(function (_ref, ref) {
|
|
5068
5124
|
var _ref$testId = _ref.testId,
|
|
5069
5125
|
testId = _ref$testId === void 0 ? 'icon-university' : _ref$testId,
|
|
5070
5126
|
size = _ref.size,
|
|
5071
5127
|
color = _ref.color,
|
|
5072
5128
|
style = _ref.style,
|
|
5073
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5129
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$29);
|
|
5074
5130
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5075
5131
|
var styleProps = {
|
|
5076
5132
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5098,14 +5154,14 @@ var IconUniversity = React.forwardRef(function (_ref, ref) {
|
|
|
5098
5154
|
});
|
|
5099
5155
|
IconUniversity.displayName = 'IconUniversity';
|
|
5100
5156
|
|
|
5101
|
-
var _excluded$
|
|
5157
|
+
var _excluded$2a = ["testId", "size", "color", "style"];
|
|
5102
5158
|
var IconUnlock = React.forwardRef(function (_ref, ref) {
|
|
5103
5159
|
var _ref$testId = _ref.testId,
|
|
5104
5160
|
testId = _ref$testId === void 0 ? 'icon-unlock' : _ref$testId,
|
|
5105
5161
|
size = _ref.size,
|
|
5106
5162
|
color = _ref.color,
|
|
5107
5163
|
style = _ref.style,
|
|
5108
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5164
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2a);
|
|
5109
5165
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5110
5166
|
var styleProps = {
|
|
5111
5167
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5133,14 +5189,14 @@ var IconUnlock = React.forwardRef(function (_ref, ref) {
|
|
|
5133
5189
|
});
|
|
5134
5190
|
IconUnlock.displayName = 'IconUnlock';
|
|
5135
5191
|
|
|
5136
|
-
var _excluded$
|
|
5192
|
+
var _excluded$2b = ["testId", "size", "color", "style"];
|
|
5137
5193
|
var IconUserComputer = React.forwardRef(function (_ref, ref) {
|
|
5138
5194
|
var _ref$testId = _ref.testId,
|
|
5139
5195
|
testId = _ref$testId === void 0 ? 'icon-user-computer' : _ref$testId,
|
|
5140
5196
|
size = _ref.size,
|
|
5141
5197
|
color = _ref.color,
|
|
5142
5198
|
style = _ref.style,
|
|
5143
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5199
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2b);
|
|
5144
5200
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5145
5201
|
var styleProps = {
|
|
5146
5202
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5172,14 +5228,14 @@ var IconUserComputer = React.forwardRef(function (_ref, ref) {
|
|
|
5172
5228
|
});
|
|
5173
5229
|
IconUserComputer.displayName = 'IconUserComputer';
|
|
5174
5230
|
|
|
5175
|
-
var _excluded$
|
|
5231
|
+
var _excluded$2c = ["testId", "size", "color", "style"];
|
|
5176
5232
|
var IconUserFriends = React.forwardRef(function (_ref, ref) {
|
|
5177
5233
|
var _ref$testId = _ref.testId,
|
|
5178
5234
|
testId = _ref$testId === void 0 ? 'icon-user-friends' : _ref$testId,
|
|
5179
5235
|
size = _ref.size,
|
|
5180
5236
|
color = _ref.color,
|
|
5181
5237
|
style = _ref.style,
|
|
5182
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5238
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2c);
|
|
5183
5239
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5184
5240
|
var styleProps = {
|
|
5185
5241
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5200,14 +5256,14 @@ var IconUserFriends = React.forwardRef(function (_ref, ref) {
|
|
|
5200
5256
|
});
|
|
5201
5257
|
IconUserFriends.displayName = 'IconUserFriends';
|
|
5202
5258
|
|
|
5203
|
-
var _excluded$
|
|
5259
|
+
var _excluded$2d = ["testId", "size", "color", "style"];
|
|
5204
5260
|
var IconUserLight = React.forwardRef(function (_ref, ref) {
|
|
5205
5261
|
var _ref$testId = _ref.testId,
|
|
5206
5262
|
testId = _ref$testId === void 0 ? 'icon-user-light' : _ref$testId,
|
|
5207
5263
|
size = _ref.size,
|
|
5208
5264
|
color = _ref.color,
|
|
5209
5265
|
style = _ref.style,
|
|
5210
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5266
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2d);
|
|
5211
5267
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5212
5268
|
var styleProps = {
|
|
5213
5269
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5230,14 +5286,14 @@ var IconUserLight = React.forwardRef(function (_ref, ref) {
|
|
|
5230
5286
|
});
|
|
5231
5287
|
IconUserLight.displayName = 'IconUserLight';
|
|
5232
5288
|
|
|
5233
|
-
var _excluded$
|
|
5289
|
+
var _excluded$2e = ["testId", "size", "color", "style"];
|
|
5234
5290
|
var IconUserPlus = React.forwardRef(function (_ref, ref) {
|
|
5235
5291
|
var _ref$testId = _ref.testId,
|
|
5236
5292
|
testId = _ref$testId === void 0 ? 'icon-user-plus' : _ref$testId,
|
|
5237
5293
|
size = _ref.size,
|
|
5238
5294
|
color = _ref.color,
|
|
5239
5295
|
style = _ref.style,
|
|
5240
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5296
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2e);
|
|
5241
5297
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5242
5298
|
var styleProps = {
|
|
5243
5299
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5258,14 +5314,14 @@ var IconUserPlus = React.forwardRef(function (_ref, ref) {
|
|
|
5258
5314
|
});
|
|
5259
5315
|
IconUserPlus.displayName = 'IconUserPlus';
|
|
5260
5316
|
|
|
5261
|
-
var _excluded$
|
|
5317
|
+
var _excluded$2f = ["testId", "size", "color", "style"];
|
|
5262
5318
|
var IconUserSearch = React.forwardRef(function (_ref, ref) {
|
|
5263
5319
|
var _ref$testId = _ref.testId,
|
|
5264
5320
|
testId = _ref$testId === void 0 ? 'icon-user-search' : _ref$testId,
|
|
5265
5321
|
size = _ref.size,
|
|
5266
5322
|
color = _ref.color,
|
|
5267
5323
|
style = _ref.style,
|
|
5268
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5324
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2f);
|
|
5269
5325
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5270
5326
|
var styleProps = {
|
|
5271
5327
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5295,14 +5351,14 @@ var IconUserSearch = React.forwardRef(function (_ref, ref) {
|
|
|
5295
5351
|
});
|
|
5296
5352
|
IconUserSearch.displayName = 'IconUserSearch';
|
|
5297
5353
|
|
|
5298
|
-
var _excluded$
|
|
5354
|
+
var _excluded$2g = ["testId", "size", "color", "style"];
|
|
5299
5355
|
var IconUserSlash = React.forwardRef(function (_ref, ref) {
|
|
5300
5356
|
var _ref$testId = _ref.testId,
|
|
5301
5357
|
testId = _ref$testId === void 0 ? 'icon-user-slash' : _ref$testId,
|
|
5302
5358
|
size = _ref.size,
|
|
5303
5359
|
color = _ref.color,
|
|
5304
5360
|
style = _ref.style,
|
|
5305
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5361
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2g);
|
|
5306
5362
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5307
5363
|
var styleProps = {
|
|
5308
5364
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5330,14 +5386,14 @@ var IconUserSlash = React.forwardRef(function (_ref, ref) {
|
|
|
5330
5386
|
});
|
|
5331
5387
|
IconUserSlash.displayName = 'IconUserSlash';
|
|
5332
5388
|
|
|
5333
|
-
var _excluded$
|
|
5389
|
+
var _excluded$2h = ["testId", "size", "color", "style"];
|
|
5334
5390
|
var IconUserSolid = React.forwardRef(function (_ref, ref) {
|
|
5335
5391
|
var _ref$testId = _ref.testId,
|
|
5336
5392
|
testId = _ref$testId === void 0 ? 'icon-user-solid' : _ref$testId,
|
|
5337
5393
|
size = _ref.size,
|
|
5338
5394
|
color = _ref.color,
|
|
5339
5395
|
style = _ref.style,
|
|
5340
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5396
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2h);
|
|
5341
5397
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5342
5398
|
var styleProps = {
|
|
5343
5399
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5358,14 +5414,14 @@ var IconUserSolid = React.forwardRef(function (_ref, ref) {
|
|
|
5358
5414
|
});
|
|
5359
5415
|
IconUserSolid.displayName = 'IconUserSolid';
|
|
5360
5416
|
|
|
5361
|
-
var _excluded$
|
|
5417
|
+
var _excluded$2i = ["testId", "size", "color", "style"];
|
|
5362
5418
|
var IconUserTag = React.forwardRef(function (_ref, ref) {
|
|
5363
5419
|
var _ref$testId = _ref.testId,
|
|
5364
5420
|
testId = _ref$testId === void 0 ? 'icon-user-tag' : _ref$testId,
|
|
5365
5421
|
size = _ref.size,
|
|
5366
5422
|
color = _ref.color,
|
|
5367
5423
|
style = _ref.style,
|
|
5368
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5424
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2i);
|
|
5369
5425
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5370
5426
|
var styleProps = {
|
|
5371
5427
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5388,14 +5444,14 @@ var IconUserTag = React.forwardRef(function (_ref, ref) {
|
|
|
5388
5444
|
});
|
|
5389
5445
|
IconUserTag.displayName = 'IconUserTag';
|
|
5390
5446
|
|
|
5391
|
-
var _excluded$
|
|
5447
|
+
var _excluded$2j = ["testId", "size", "color", "style"];
|
|
5392
5448
|
var IconUserTie = React.forwardRef(function (_ref, ref) {
|
|
5393
5449
|
var _ref$testId = _ref.testId,
|
|
5394
5450
|
testId = _ref$testId === void 0 ? 'icon-user-tie' : _ref$testId,
|
|
5395
5451
|
size = _ref.size,
|
|
5396
5452
|
color = _ref.color,
|
|
5397
5453
|
style = _ref.style,
|
|
5398
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5454
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2j);
|
|
5399
5455
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5400
5456
|
var styleProps = {
|
|
5401
5457
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5416,14 +5472,14 @@ var IconUserTie = React.forwardRef(function (_ref, ref) {
|
|
|
5416
5472
|
});
|
|
5417
5473
|
IconUserTie.displayName = 'IconUserTie';
|
|
5418
5474
|
|
|
5419
|
-
var _excluded$
|
|
5475
|
+
var _excluded$2k = ["testId", "size", "color", "style"];
|
|
5420
5476
|
var IconUsers = React.forwardRef(function (_ref, ref) {
|
|
5421
5477
|
var _ref$testId = _ref.testId,
|
|
5422
5478
|
testId = _ref$testId === void 0 ? 'icon-users' : _ref$testId,
|
|
5423
5479
|
size = _ref.size,
|
|
5424
5480
|
color = _ref.color,
|
|
5425
5481
|
style = _ref.style,
|
|
5426
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5482
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2k);
|
|
5427
5483
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5428
5484
|
var styleProps = {
|
|
5429
5485
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5444,14 +5500,14 @@ var IconUsers = React.forwardRef(function (_ref, ref) {
|
|
|
5444
5500
|
});
|
|
5445
5501
|
IconUsers.displayName = 'IconUsers';
|
|
5446
5502
|
|
|
5447
|
-
var _excluded$
|
|
5503
|
+
var _excluded$2l = ["testId", "size", "color", "style"];
|
|
5448
5504
|
var IconVideo = React.forwardRef(function (_ref, ref) {
|
|
5449
5505
|
var _ref$testId = _ref.testId,
|
|
5450
5506
|
testId = _ref$testId === void 0 ? 'icon-video' : _ref$testId,
|
|
5451
5507
|
size = _ref.size,
|
|
5452
5508
|
color = _ref.color,
|
|
5453
5509
|
style = _ref.style,
|
|
5454
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5510
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2l);
|
|
5455
5511
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5456
5512
|
var styleProps = {
|
|
5457
5513
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5472,14 +5528,14 @@ var IconVideo = React.forwardRef(function (_ref, ref) {
|
|
|
5472
5528
|
});
|
|
5473
5529
|
IconVideo.displayName = 'IconVideo';
|
|
5474
5530
|
|
|
5475
|
-
var _excluded$
|
|
5531
|
+
var _excluded$2m = ["testId", "size", "color", "style"];
|
|
5476
5532
|
var IconVolumeMute = React.forwardRef(function (_ref, ref) {
|
|
5477
5533
|
var _ref$testId = _ref.testId,
|
|
5478
5534
|
testId = _ref$testId === void 0 ? 'icon-volume-mute' : _ref$testId,
|
|
5479
5535
|
size = _ref.size,
|
|
5480
5536
|
color = _ref.color,
|
|
5481
5537
|
style = _ref.style,
|
|
5482
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5538
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2m);
|
|
5483
5539
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5484
5540
|
var styleProps = {
|
|
5485
5541
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5500,14 +5556,14 @@ var IconVolumeMute = React.forwardRef(function (_ref, ref) {
|
|
|
5500
5556
|
});
|
|
5501
5557
|
IconVolumeMute.displayName = 'IconVolumeMute';
|
|
5502
5558
|
|
|
5503
|
-
var _excluded$
|
|
5559
|
+
var _excluded$2n = ["testId", "size", "color", "style"];
|
|
5504
5560
|
var IconVolume = React.forwardRef(function (_ref, ref) {
|
|
5505
5561
|
var _ref$testId = _ref.testId,
|
|
5506
5562
|
testId = _ref$testId === void 0 ? 'icon-volume' : _ref$testId,
|
|
5507
5563
|
size = _ref.size,
|
|
5508
5564
|
color = _ref.color,
|
|
5509
5565
|
style = _ref.style,
|
|
5510
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5566
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2n);
|
|
5511
5567
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5512
5568
|
var styleProps = {
|
|
5513
5569
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5528,14 +5584,14 @@ var IconVolume = React.forwardRef(function (_ref, ref) {
|
|
|
5528
5584
|
});
|
|
5529
5585
|
IconVolume.displayName = 'IconVolume';
|
|
5530
5586
|
|
|
5531
|
-
var _excluded$
|
|
5587
|
+
var _excluded$2o = ["testId", "size", "color", "style"];
|
|
5532
5588
|
var IconWrench = React.forwardRef(function (_ref, ref) {
|
|
5533
5589
|
var _ref$testId = _ref.testId,
|
|
5534
5590
|
testId = _ref$testId === void 0 ? 'icon-wrench' : _ref$testId,
|
|
5535
5591
|
size = _ref.size,
|
|
5536
5592
|
color = _ref.color,
|
|
5537
5593
|
style = _ref.style,
|
|
5538
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5594
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2o);
|
|
5539
5595
|
var isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
5540
5596
|
var styleProps = {
|
|
5541
5597
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -5638,12 +5694,16 @@ var Calendar = {
|
|
|
5638
5694
|
november: "November",
|
|
5639
5695
|
december: "December"
|
|
5640
5696
|
};
|
|
5697
|
+
var Card = {
|
|
5698
|
+
dismiss: "Dismiss"
|
|
5699
|
+
};
|
|
5641
5700
|
var en = {
|
|
5642
5701
|
PaginationControls: PaginationControls,
|
|
5643
5702
|
AsyncSelectField: AsyncSelectField,
|
|
5644
5703
|
SelectField: SelectField,
|
|
5645
5704
|
HintModal: HintModal,
|
|
5646
|
-
Calendar: Calendar
|
|
5705
|
+
Calendar: Calendar,
|
|
5706
|
+
Card: Card
|
|
5647
5707
|
};
|
|
5648
5708
|
|
|
5649
5709
|
var initialValue = {
|
|
@@ -5670,7 +5730,7 @@ var useTranslation = function useTranslation(context) {
|
|
|
5670
5730
|
return translate;
|
|
5671
5731
|
};
|
|
5672
5732
|
|
|
5673
|
-
var _excluded$
|
|
5733
|
+
var _excluded$2p = ["hasPrevious", "hasNext", "onPreviousClick", "onNextClick", "testId", "scrollTarget"];
|
|
5674
5734
|
var PaginationControls$1 = function PaginationControls(_ref) {
|
|
5675
5735
|
var _ref$hasPrevious = _ref.hasPrevious,
|
|
5676
5736
|
hasPrevious = _ref$hasPrevious === void 0 ? true : _ref$hasPrevious,
|
|
@@ -5680,7 +5740,7 @@ var PaginationControls$1 = function PaginationControls(_ref) {
|
|
|
5680
5740
|
onNextClick = _ref.onNextClick,
|
|
5681
5741
|
testId = _ref.testId,
|
|
5682
5742
|
scrollTarget = _ref.scrollTarget,
|
|
5683
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5743
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2p);
|
|
5684
5744
|
var __ = useTranslation('PaginationControls');
|
|
5685
5745
|
var _getDataProps = getDataProps(otherProps),
|
|
5686
5746
|
dataProps = _getDataProps.dataProps;
|
|
@@ -5748,7 +5808,7 @@ var LINK_TARGET = {
|
|
|
5748
5808
|
|
|
5749
5809
|
var styles$8 = {"link--primary":"_1mKoj","link--contrast":"_HUvH1"};
|
|
5750
5810
|
|
|
5751
|
-
var _excluded$
|
|
5811
|
+
var _excluded$2q = ["href", "target", "theme", "onClick", "children"];
|
|
5752
5812
|
var Link = function Link(_ref) {
|
|
5753
5813
|
var _classNames;
|
|
5754
5814
|
var href = _ref.href,
|
|
@@ -5758,7 +5818,7 @@ var Link = function Link(_ref) {
|
|
|
5758
5818
|
theme = _ref$theme === void 0 ? LINK_THEME.PRIMARY : _ref$theme,
|
|
5759
5819
|
onClick = _ref.onClick,
|
|
5760
5820
|
children = _ref.children,
|
|
5761
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5821
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2q);
|
|
5762
5822
|
var _getDataProps = getDataProps(otherProps),
|
|
5763
5823
|
dataProps = _getDataProps.dataProps;
|
|
5764
5824
|
return React__default.createElement("a", _extends({}, dataProps, {
|
|
@@ -6092,7 +6152,7 @@ var InlineBannerIcon = function InlineBannerIcon(_ref) {
|
|
|
6092
6152
|
}
|
|
6093
6153
|
};
|
|
6094
6154
|
|
|
6095
|
-
var _excluded$
|
|
6155
|
+
var _excluded$2r = ["children", "theme", "title", "onClose", "caption", "primaryButton", "secondaryButton", "testId"];
|
|
6096
6156
|
var InlineBanner = function InlineBanner(_ref) {
|
|
6097
6157
|
var _classnames, _classnames2;
|
|
6098
6158
|
var children = _ref.children,
|
|
@@ -6104,7 +6164,7 @@ var InlineBanner = function InlineBanner(_ref) {
|
|
|
6104
6164
|
primaryButton = _ref.primaryButton,
|
|
6105
6165
|
secondaryButton = _ref.secondaryButton,
|
|
6106
6166
|
testId = _ref.testId,
|
|
6107
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6167
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$2r);
|
|
6108
6168
|
var positionStyles = usePositionStyles(positionProps);
|
|
6109
6169
|
var multiLine = !!title;
|
|
6110
6170
|
var dismissable = !!onClose;
|
|
@@ -6400,14 +6460,14 @@ var ErrorMessage = function ErrorMessage(_ref) {
|
|
|
6400
6460
|
}), children));
|
|
6401
6461
|
};
|
|
6402
6462
|
|
|
6403
|
-
var _excluded$
|
|
6463
|
+
var _excluded$2s = ["id", "label", "caption", "error", "children"];
|
|
6404
6464
|
var Field = function Field(_ref) {
|
|
6405
6465
|
var id = _ref.id,
|
|
6406
6466
|
label = _ref.label,
|
|
6407
6467
|
caption = _ref.caption,
|
|
6408
6468
|
error = _ref.error,
|
|
6409
6469
|
children = _ref.children,
|
|
6410
|
-
dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6470
|
+
dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$2s);
|
|
6411
6471
|
var shouldRenderLabel = label || typeof label === 'string';
|
|
6412
6472
|
return React__default.createElement(Stack, _extends({
|
|
6413
6473
|
space: 8,
|
|
@@ -6527,7 +6587,7 @@ var useFieldControllers = function useFieldControllers(_ref) {
|
|
|
6527
6587
|
|
|
6528
6588
|
var styles$k = {"text-field":"_3BVGA","text-field--invalid":"_FLffs","text-field--prefixed":"_3qeO1","text-field--suffixed":"_3QPln"};
|
|
6529
6589
|
|
|
6530
|
-
var _excluded$
|
|
6590
|
+
var _excluded$2t = ["autoComplete", "autoFocus", "defaultValue", "disabled", "error", "id", "maxLength", "name", "caption", "label", "onBlur", "onChange", "onFocus", "onKeyDown", "placeholder", "value", "ref", "testId"];
|
|
6531
6591
|
var useTextField = function useTextField(_ref) {
|
|
6532
6592
|
var _classnames;
|
|
6533
6593
|
var autoComplete = _ref.autoComplete,
|
|
@@ -6548,7 +6608,7 @@ var useTextField = function useTextField(_ref) {
|
|
|
6548
6608
|
value = _ref.value,
|
|
6549
6609
|
ref = _ref.ref,
|
|
6550
6610
|
testId = _ref.testId,
|
|
6551
|
-
dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6611
|
+
dataProps = _objectWithoutPropertiesLoose(_ref, _excluded$2t);
|
|
6552
6612
|
var controllers = useFieldControllers({
|
|
6553
6613
|
error: error,
|
|
6554
6614
|
id: id,
|
|
@@ -6669,7 +6729,7 @@ var TimeFieldInput = function TimeFieldInput(_ref) {
|
|
|
6669
6729
|
})));
|
|
6670
6730
|
};
|
|
6671
6731
|
|
|
6672
|
-
var _excluded$
|
|
6732
|
+
var _excluded$2u = ["placeholder", "autoComplete", "selectedTimeOption", "prefix", "startTime", "duration"];
|
|
6673
6733
|
var TimeFieldDropdownElement = function TimeFieldDropdownElement(_ref, ref) {
|
|
6674
6734
|
var _ref$placeholder = _ref.placeholder,
|
|
6675
6735
|
placeholder = _ref$placeholder === void 0 ? '9:00 AM' : _ref$placeholder,
|
|
@@ -6678,7 +6738,7 @@ var TimeFieldDropdownElement = function TimeFieldDropdownElement(_ref, ref) {
|
|
|
6678
6738
|
selectedTimeOption = _ref.selectedTimeOption,
|
|
6679
6739
|
prefix = _ref.prefix,
|
|
6680
6740
|
duration = _ref.duration,
|
|
6681
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6741
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2u);
|
|
6682
6742
|
var _useTextField = useTextField(_extends({}, allOtherProps, {
|
|
6683
6743
|
placeholder: placeholder,
|
|
6684
6744
|
autoComplete: autoComplete,
|
|
@@ -6979,7 +7039,7 @@ var ALIGNMENTS = {
|
|
|
6979
7039
|
|
|
6980
7040
|
var styles$p = {"text":"_32amZ","text__body":"_ayJRy","text__caption":"_3g1gi","text__insight":"_20Phg","text--bold":"_A0AyZ","text--italic":"_3jayQ","text--underline":"_GOcFw","text--monospace":"_3TfGK","text--align-left":"_b8gto","text--align-right":"_ecyH1","text--align-center":"_xBgXc","text--align-justify":"_280D5"};
|
|
6981
7041
|
|
|
6982
|
-
var _excluded$
|
|
7042
|
+
var _excluded$2v = ["children", "as", "emphasis", "alignment", "color", "testId"];
|
|
6983
7043
|
var Text = function Text(_ref) {
|
|
6984
7044
|
var _classnames;
|
|
6985
7045
|
var children = _ref.children,
|
|
@@ -6989,7 +7049,7 @@ var Text = function Text(_ref) {
|
|
|
6989
7049
|
alignment = _ref.alignment,
|
|
6990
7050
|
color = _ref.color,
|
|
6991
7051
|
testId = _ref.testId,
|
|
6992
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7052
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$2v);
|
|
6993
7053
|
var positionStyles = usePositionStyles(positionProps);
|
|
6994
7054
|
var elementProps = {
|
|
6995
7055
|
style: _extends({
|
|
@@ -7190,20 +7250,22 @@ var KebabMenu = function KebabMenu(_ref) {
|
|
|
7190
7250
|
})));
|
|
7191
7251
|
};
|
|
7192
7252
|
|
|
7193
|
-
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"};
|
|
7253
|
+
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","card__close":"_37yla","card__close--disabled":"_3J4FP"};
|
|
7194
7254
|
|
|
7195
|
-
var _excluded$
|
|
7196
|
-
var Card = function Card(_ref) {
|
|
7197
|
-
var _classnames, _classnames2, _classnames3;
|
|
7255
|
+
var _excluded$2w = ["children", "onClick", "onClose", "isSelected", "disabled", "actions", "testId"];
|
|
7256
|
+
var Card$1 = function Card(_ref) {
|
|
7257
|
+
var _classnames, _classnames2, _classnames3, _classnames4;
|
|
7198
7258
|
var children = _ref.children,
|
|
7199
7259
|
onClick = _ref.onClick,
|
|
7260
|
+
onClose = _ref.onClose,
|
|
7200
7261
|
_ref$isSelected = _ref.isSelected,
|
|
7201
7262
|
isSelected = _ref$isSelected === void 0 ? false : _ref$isSelected,
|
|
7202
7263
|
_ref$disabled = _ref.disabled,
|
|
7203
7264
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
7204
7265
|
actions = _ref.actions,
|
|
7205
7266
|
testId = _ref.testId,
|
|
7206
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7267
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$2w);
|
|
7268
|
+
var translate = useTranslation('Card');
|
|
7207
7269
|
var _getPositionProps = getPositionProps(rest),
|
|
7208
7270
|
positionProps = _getPositionProps.positionProps,
|
|
7209
7271
|
otherProps = _getPositionProps.otherProps;
|
|
@@ -7225,8 +7287,17 @@ var Card = function Card(_ref) {
|
|
|
7225
7287
|
}, children), actions && React__default.createElement("div", {
|
|
7226
7288
|
className: classnames(styles$q['card__kebab'], (_classnames3 = {}, _classnames3[styles$q['card__kebab--disabled']] = disabled, _classnames3))
|
|
7227
7289
|
}, React__default.createElement(KebabMenu, {
|
|
7228
|
-
actions: actions
|
|
7229
|
-
|
|
7290
|
+
actions: onClose ? actions.concat({
|
|
7291
|
+
action: 'dismiss',
|
|
7292
|
+
label: translate('dismiss'),
|
|
7293
|
+
onAction: onClose
|
|
7294
|
+
}) : actions
|
|
7295
|
+
})), !actions && onClose && React__default.createElement("div", {
|
|
7296
|
+
className: classnames(styles$q['card__close'], (_classnames4 = {}, _classnames4[styles$q['card__close--disabled']] = disabled, _classnames4))
|
|
7297
|
+
}, React__default.createElement(Button, {
|
|
7298
|
+
theme: "link-icon",
|
|
7299
|
+
onClick: onClose
|
|
7300
|
+
}, React__default.createElement(IconTimes, null))));
|
|
7230
7301
|
};
|
|
7231
7302
|
|
|
7232
7303
|
var styles$r = {"callout-card__close":"_cQT44","callout-card__header":"_rSzMg"};
|
|
@@ -7239,7 +7310,7 @@ var CalloutCard = function CalloutCard(_ref) {
|
|
|
7239
7310
|
onClose = _ref.onClose,
|
|
7240
7311
|
actions = _ref.actions,
|
|
7241
7312
|
testId = _ref.testId;
|
|
7242
|
-
return React__default.createElement(Card, {
|
|
7313
|
+
return React__default.createElement(Card$1, {
|
|
7243
7314
|
testId: testId
|
|
7244
7315
|
}, React__default.createElement(Inline, null, React__default.createElement(Inline, {
|
|
7245
7316
|
alignItems: "center"
|
|
@@ -7543,14 +7614,14 @@ var SKELETON_COMPONENT = {
|
|
|
7543
7614
|
PILL: 'pill'
|
|
7544
7615
|
};
|
|
7545
7616
|
|
|
7546
|
-
var _excluded$
|
|
7617
|
+
var _excluded$2x = ["as", "testId", "width", "height"];
|
|
7547
7618
|
var Skeleton = function Skeleton(_ref) {
|
|
7548
7619
|
var _classnames;
|
|
7549
7620
|
var as = _ref.as,
|
|
7550
7621
|
testId = _ref.testId,
|
|
7551
7622
|
width = _ref.width,
|
|
7552
7623
|
height = _ref.height,
|
|
7553
|
-
positionStyles = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7624
|
+
positionStyles = _objectWithoutPropertiesLoose(_ref, _excluded$2x);
|
|
7554
7625
|
var positioning = usePositionStyles(positionStyles);
|
|
7555
7626
|
return React__default.createElement("div", {
|
|
7556
7627
|
"data-testid": testId,
|
|
@@ -7613,7 +7684,7 @@ var useModalContext = function useModalContext() {
|
|
|
7613
7684
|
return context || {};
|
|
7614
7685
|
};
|
|
7615
7686
|
|
|
7616
|
-
var _excluded$
|
|
7687
|
+
var _excluded$2y = ["children", "header", "subHeader", "onClose", "loading", "zIndex", "rootElementId", "width", "height", "maxWidth", "shouldReturnFocusAfterClose", "testId"];
|
|
7617
7688
|
var Modal = function Modal(_ref) {
|
|
7618
7689
|
var children = _ref.children,
|
|
7619
7690
|
header = _ref.header,
|
|
@@ -7630,7 +7701,7 @@ var Modal = function Modal(_ref) {
|
|
|
7630
7701
|
_ref$shouldReturnFocu = _ref.shouldReturnFocusAfterClose,
|
|
7631
7702
|
shouldReturnFocusAfterClose = _ref$shouldReturnFocu === void 0 ? true : _ref$shouldReturnFocu,
|
|
7632
7703
|
testId = _ref.testId,
|
|
7633
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
7704
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2y);
|
|
7634
7705
|
var style = {
|
|
7635
7706
|
content: {
|
|
7636
7707
|
width: width,
|
|
@@ -8033,7 +8104,7 @@ var useCheckBoxFieldControllers = function useCheckBoxFieldControllers(_ref) {
|
|
|
8033
8104
|
|
|
8034
8105
|
var styles$H = {"check-box-field":"_2Rbk6","check-box-field__caption":"_1GW-E","check-box-field__custom-input":"_2W10t"};
|
|
8035
8106
|
|
|
8036
|
-
var _excluded$
|
|
8107
|
+
var _excluded$2z = ["name", "id", "checked", "onChange", "onBlur", "label", "caption", "error", "disabled", "testId"];
|
|
8037
8108
|
var CheckboxField = function CheckboxField(_ref) {
|
|
8038
8109
|
var name = _ref.name,
|
|
8039
8110
|
inputId = _ref.id,
|
|
@@ -8045,7 +8116,7 @@ var CheckboxField = function CheckboxField(_ref) {
|
|
|
8045
8116
|
error = _ref.error,
|
|
8046
8117
|
disabled = _ref.disabled,
|
|
8047
8118
|
testId = _ref.testId,
|
|
8048
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8119
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2z);
|
|
8049
8120
|
var controllers = useCheckBoxFieldControllers({
|
|
8050
8121
|
name: name,
|
|
8051
8122
|
id: inputId,
|
|
@@ -8114,7 +8185,7 @@ var useLocalStorage = function useLocalStorage(key, initialValue) {
|
|
|
8114
8185
|
|
|
8115
8186
|
var styles$I = {"hint-modal":"_1b47y","hint-modal--after-open":"_2MB4p","hint-modal--before-close":"_3VYQo","hint-modal__overlay":"_3Enme","hint-modal__image":"_2Nn7v","hint-modal__body":"_bzN9e","hint-modal__close-button":"_3xbis"};
|
|
8116
8187
|
|
|
8117
|
-
var _excluded$
|
|
8188
|
+
var _excluded$2A = ["header", "children", "mediaUrl", "onClose", "modalId", "primaryButton", "testId"];
|
|
8118
8189
|
var HintModal$1 = function HintModal(_ref) {
|
|
8119
8190
|
var header = _ref.header,
|
|
8120
8191
|
children = _ref.children,
|
|
@@ -8123,7 +8194,7 @@ var HintModal$1 = function HintModal(_ref) {
|
|
|
8123
8194
|
modalId = _ref.modalId,
|
|
8124
8195
|
primaryButton = _ref.primaryButton,
|
|
8125
8196
|
testId = _ref.testId,
|
|
8126
|
-
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8197
|
+
positionProps = _objectWithoutPropertiesLoose(_ref, _excluded$2A);
|
|
8127
8198
|
var __ = useTranslation('HintModal');
|
|
8128
8199
|
var _useState = React.useState(false),
|
|
8129
8200
|
doNotShowAgain = _useState[0],
|
|
@@ -8348,7 +8419,7 @@ var DataTableEditableCellElement = function DataTableEditableCellElement(_ref, r
|
|
|
8348
8419
|
};
|
|
8349
8420
|
var DataTableEditableCell = React.forwardRef(DataTableEditableCellElement);
|
|
8350
8421
|
|
|
8351
|
-
var _excluded$
|
|
8422
|
+
var _excluded$2B = ["children", "onClick", "isSelected", "actions", "hasDefaultPadding", "hasDefaultCell", "testId"];
|
|
8352
8423
|
var DataTableRowComponent = function DataTableRowComponent(_ref, ref) {
|
|
8353
8424
|
var _classnames;
|
|
8354
8425
|
var children = _ref.children,
|
|
@@ -8360,7 +8431,7 @@ var DataTableRowComponent = function DataTableRowComponent(_ref, ref) {
|
|
|
8360
8431
|
_ref$hasDefaultCell = _ref.hasDefaultCell,
|
|
8361
8432
|
hasDefaultCell = _ref$hasDefaultCell === void 0 ? true : _ref$hasDefaultCell,
|
|
8362
8433
|
testId = _ref.testId,
|
|
8363
|
-
nativeDivProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8434
|
+
nativeDivProps = _objectWithoutPropertiesLoose(_ref, _excluded$2B);
|
|
8364
8435
|
var _useDataTableContext = useDataTableContext(),
|
|
8365
8436
|
showActionMenu = _useDataTableContext.showActionMenu;
|
|
8366
8437
|
var styleNames = classnames(styles$z['item'], (_classnames = {}, _classnames[styles$z['clickable']] = onClick, _classnames[styles$z['selected']] = isSelected, _classnames));
|
|
@@ -8573,7 +8644,7 @@ var DataTableStickyColumnsContainer = function DataTableStickyColumnsContainer(_
|
|
|
8573
8644
|
}, children));
|
|
8574
8645
|
};
|
|
8575
8646
|
|
|
8576
|
-
var _excluded$
|
|
8647
|
+
var _excluded$2C = ["items", "columns", "itemComponent", "maxHeight", "hasPrevious", "hasNext", "onPreviousClick", "onNextClick", "onSort", "isLoading", "showActionMenu", "footerComponent", "hasVerticalBorders", "testId", "skeletonRowLayout", "stickyColumns"];
|
|
8577
8648
|
var DataTable = function DataTable(_ref) {
|
|
8578
8649
|
var _classNames, _classNames2, _classNames3;
|
|
8579
8650
|
var items = _ref.items,
|
|
@@ -8597,7 +8668,7 @@ var DataTable = function DataTable(_ref) {
|
|
|
8597
8668
|
testId = _ref.testId,
|
|
8598
8669
|
skeletonRowLayout = _ref.skeletonRowLayout,
|
|
8599
8670
|
stickyColumns = _ref.stickyColumns,
|
|
8600
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8671
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2C);
|
|
8601
8672
|
var _getDataProps = getDataProps(otherProps),
|
|
8602
8673
|
dataProps = _getDataProps.dataProps;
|
|
8603
8674
|
var prevItemsRef = React.useRef([]);
|
|
@@ -8784,11 +8855,11 @@ var isReactSelectElement = function isReactSelectElement(element) {
|
|
|
8784
8855
|
|
|
8785
8856
|
var styles$M = {"custom-control":"_1JTKu"};
|
|
8786
8857
|
|
|
8787
|
-
var _excluded$
|
|
8858
|
+
var _excluded$2D = ["children"];
|
|
8788
8859
|
function CustomControl(_ref) {
|
|
8789
8860
|
var _props$getValue;
|
|
8790
8861
|
var children = _ref.children,
|
|
8791
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8862
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2D);
|
|
8792
8863
|
var SelectedOptionPrefix = props.selectProps.componentsProps.SelectedOptionPrefix;
|
|
8793
8864
|
var selectedOption = (_props$getValue = props.getValue()) === null || _props$getValue === void 0 ? void 0 : _props$getValue[0];
|
|
8794
8865
|
return React__default.createElement(Select.components.Control, _extends({}, props), SelectedOptionPrefix && selectedOption ? React__default.createElement("div", {
|
|
@@ -8805,10 +8876,10 @@ function CustomControl(_ref) {
|
|
|
8805
8876
|
}, props)), children)) : children);
|
|
8806
8877
|
}
|
|
8807
8878
|
|
|
8808
|
-
var _excluded$
|
|
8879
|
+
var _excluded$2E = ["children"];
|
|
8809
8880
|
function CustomOption(_ref) {
|
|
8810
8881
|
var children = _ref.children,
|
|
8811
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
8882
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2E);
|
|
8812
8883
|
var UserCustomOption = props.selectProps.componentsProps.UserCustomOption;
|
|
8813
8884
|
return React__default.createElement(Select.components.Option, _extends({}, props), React__default.createElement(UserCustomOption, _extends({}, props), children));
|
|
8814
8885
|
}
|
|
@@ -8961,10 +9032,10 @@ var CustomContainer = function CustomContainer(props) {
|
|
|
8961
9032
|
|
|
8962
9033
|
var styles$N = {"custom-menu-text-field":"_2bu6-","custom-menu-hr":"_1cgU7","custom-menu-div":"_1khlU"};
|
|
8963
9034
|
|
|
8964
|
-
var _excluded$
|
|
9035
|
+
var _excluded$2F = ["children"];
|
|
8965
9036
|
function CustomMenu(_ref) {
|
|
8966
9037
|
var children = _ref.children,
|
|
8967
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
9038
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2F);
|
|
8968
9039
|
var _props$selectProps$co = props.selectProps.componentsProps,
|
|
8969
9040
|
creatableButton = _props$selectProps$co.creatableButton,
|
|
8970
9041
|
onMenuInputFocus = _props$selectProps$co.onMenuInputFocus,
|
|
@@ -9684,11 +9755,11 @@ var TextAreaField = function TextAreaField(_ref) {
|
|
|
9684
9755
|
}, toolbar)));
|
|
9685
9756
|
};
|
|
9686
9757
|
|
|
9687
|
-
var _excluded$
|
|
9758
|
+
var _excluded$2G = ["prefix", "suffix"];
|
|
9688
9759
|
var TextFieldElement = function TextFieldElement(_ref, ref) {
|
|
9689
9760
|
var prefix = _ref.prefix,
|
|
9690
9761
|
suffix = _ref.suffix,
|
|
9691
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
9762
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2G);
|
|
9692
9763
|
var _useTextField = useTextField(_extends({}, props, {
|
|
9693
9764
|
ref: ref
|
|
9694
9765
|
})),
|
|
@@ -10282,12 +10353,12 @@ var MultiSelectField = function MultiSelectField(_ref) {
|
|
|
10282
10353
|
|
|
10283
10354
|
var styles$11 = {"custom-list":"_12jq3"};
|
|
10284
10355
|
|
|
10285
|
-
var _excluded$
|
|
10356
|
+
var _excluded$2H = ["children", "hasMoreOptions", "hasMoreOptionsFirstLoad"];
|
|
10286
10357
|
var CustomList = function CustomList(_ref) {
|
|
10287
10358
|
var children = _ref.children,
|
|
10288
10359
|
hasMoreOptions = _ref.hasMoreOptions,
|
|
10289
10360
|
hasMoreOptionsFirstLoad = _ref.hasMoreOptionsFirstLoad,
|
|
10290
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
10361
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2H);
|
|
10291
10362
|
var __ = useTranslation('AsyncSelectField');
|
|
10292
10363
|
var showFooter = hasMoreOptions;
|
|
10293
10364
|
if (props.selectProps.inputValue === '' && typeof hasMoreOptionsFirstLoad === 'boolean') {
|
|
@@ -10300,10 +10371,10 @@ var CustomList = function CustomList(_ref) {
|
|
|
10300
10371
|
}, __('moreOptionsPlaceholder')))));
|
|
10301
10372
|
};
|
|
10302
10373
|
|
|
10303
|
-
var _excluded$
|
|
10374
|
+
var _excluded$2I = ["loadOptions"];
|
|
10304
10375
|
var AsyncSelectField$1 = function AsyncSelectField(_ref) {
|
|
10305
10376
|
var loadOptions = _ref.loadOptions,
|
|
10306
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
10377
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2I);
|
|
10307
10378
|
var _useState = React.useState(false),
|
|
10308
10379
|
hasMoreOptions = _useState[0],
|
|
10309
10380
|
setHasMoreOptions = _useState[1];
|
|
@@ -11114,7 +11185,7 @@ var TimeFieldDropdown = function TimeFieldDropdown(_ref) {
|
|
|
11114
11185
|
})));
|
|
11115
11186
|
};
|
|
11116
11187
|
|
|
11117
|
-
var _excluded$
|
|
11188
|
+
var _excluded$2J = ["interval", "startTime", "prefix", "endField", "duration"];
|
|
11118
11189
|
var TimeFieldElement = function TimeFieldElement(_ref, forwardedRef) {
|
|
11119
11190
|
var _ref$interval = _ref.interval,
|
|
11120
11191
|
interval = _ref$interval === void 0 ? 15 : _ref$interval,
|
|
@@ -11123,7 +11194,7 @@ var TimeFieldElement = function TimeFieldElement(_ref, forwardedRef) {
|
|
|
11123
11194
|
_ref$endField = _ref.endField,
|
|
11124
11195
|
endField = _ref$endField === void 0 ? false : _ref$endField,
|
|
11125
11196
|
duration = _ref.duration,
|
|
11126
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
11197
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2J);
|
|
11127
11198
|
var internalRef = React.useRef(null);
|
|
11128
11199
|
var ref = forwardedRef || internalRef;
|
|
11129
11200
|
var _useState = React.useState(allOtherProps.value || allOtherProps.defaultValue),
|
|
@@ -11307,13 +11378,13 @@ var styles$14 = {"currency-field__mask-display":"_2K8Ob"};
|
|
|
11307
11378
|
var CURRENCY_DISPLAY_DEFAULT_MARGIN = 8;
|
|
11308
11379
|
var CURRENCY_DISPLAY_MARGIN_BUFFER = 1;
|
|
11309
11380
|
|
|
11310
|
-
var _excluded$
|
|
11381
|
+
var _excluded$2K = ["currencySymbol", "step"];
|
|
11311
11382
|
var CurrencyFieldElement = function CurrencyFieldElement(_ref, forwardedRef) {
|
|
11312
11383
|
var _ref$currencySymbol = _ref.currencySymbol,
|
|
11313
11384
|
currencySymbol = _ref$currencySymbol === void 0 ? '$' : _ref$currencySymbol,
|
|
11314
11385
|
_ref$step = _ref.step,
|
|
11315
11386
|
step = _ref$step === void 0 ? 0.01 : _ref$step,
|
|
11316
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
11387
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2K);
|
|
11317
11388
|
var _useState = React.useState(CURRENCY_DISPLAY_DEFAULT_MARGIN),
|
|
11318
11389
|
displayPadding = _useState[0],
|
|
11319
11390
|
setDisplayPadding = _useState[1];
|
|
@@ -11377,7 +11448,7 @@ var CurrencyFieldElement = function CurrencyFieldElement(_ref, forwardedRef) {
|
|
|
11377
11448
|
};
|
|
11378
11449
|
var CurrencyField = React.forwardRef(CurrencyFieldElement);
|
|
11379
11450
|
|
|
11380
|
-
var _excluded$
|
|
11451
|
+
var _excluded$2L = ["max", "min", "precision", "stepSize", "prefix"];
|
|
11381
11452
|
var PercentageElement = function PercentageElement(_ref, ref) {
|
|
11382
11453
|
var _ref$max = _ref.max,
|
|
11383
11454
|
max = _ref$max === void 0 ? 100 : _ref$max,
|
|
@@ -11388,7 +11459,7 @@ var PercentageElement = function PercentageElement(_ref, ref) {
|
|
|
11388
11459
|
_ref$stepSize = _ref.stepSize,
|
|
11389
11460
|
stepSize = _ref$stepSize === void 0 ? 1 : _ref$stepSize,
|
|
11390
11461
|
prefix = _ref.prefix,
|
|
11391
|
-
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
11462
|
+
allOtherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2L);
|
|
11392
11463
|
var _useTextField = useTextField(_extends({}, allOtherProps, {
|
|
11393
11464
|
ref: ref
|
|
11394
11465
|
})),
|
|
@@ -12367,12 +12438,12 @@ var CountrySelector = function CountrySelector(_ref) {
|
|
|
12367
12438
|
}))));
|
|
12368
12439
|
};
|
|
12369
12440
|
|
|
12370
|
-
var _excluded$
|
|
12441
|
+
var _excluded$2M = ["disabledCountry"];
|
|
12371
12442
|
var PhoneField = function PhoneField(_ref) {
|
|
12372
12443
|
var _classNames;
|
|
12373
12444
|
var _ref$disabledCountry = _ref.disabledCountry,
|
|
12374
12445
|
disabledCountry = _ref$disabledCountry === void 0 ? false : _ref$disabledCountry,
|
|
12375
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
12446
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2M);
|
|
12376
12447
|
var inputRef = React.useRef(null);
|
|
12377
12448
|
var _usePhoneField = usePhoneField(_extends({}, props, {
|
|
12378
12449
|
ref: inputRef
|
|
@@ -12457,14 +12528,14 @@ var PhoneField = function PhoneField(_ref) {
|
|
|
12457
12528
|
|
|
12458
12529
|
var styles$17 = {"badge":"_1QLaK","badge--warning":"_qsFWw","badge--danger":"_359Cc","badge--success":"_2AOEK","badge--info":"_1mLjf"};
|
|
12459
12530
|
|
|
12460
|
-
var _excluded$
|
|
12531
|
+
var _excluded$2N = ["children", "theme", "title", "testId"];
|
|
12461
12532
|
var BadgeElement = function BadgeElement(_ref, forwardedRef) {
|
|
12462
12533
|
var _classnames;
|
|
12463
12534
|
var children = _ref.children,
|
|
12464
12535
|
theme = _ref.theme,
|
|
12465
12536
|
title = _ref.title,
|
|
12466
12537
|
testId = _ref.testId,
|
|
12467
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
12538
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2N);
|
|
12468
12539
|
var internalRef = React.useRef(null);
|
|
12469
12540
|
var ref = forwardedRef || internalRef;
|
|
12470
12541
|
React.useLayoutEffect(function () {
|
|
@@ -12778,16 +12849,21 @@ var EmptyStateContainer = function EmptyStateContainer(_ref) {
|
|
|
12778
12849
|
});
|
|
12779
12850
|
};
|
|
12780
12851
|
|
|
12781
|
-
var
|
|
12782
|
-
|
|
12783
|
-
|
|
12784
|
-
|
|
12785
|
-
|
|
12786
|
-
|
|
12787
|
-
|
|
12788
|
-
|
|
12789
|
-
|
|
12790
|
-
|
|
12852
|
+
var styles$1f = {"paywall--as-card":"_3kFM9","paywall--as-card--centered":"_3kmTB"};
|
|
12853
|
+
|
|
12854
|
+
var Paywall = function Paywall(props) {
|
|
12855
|
+
var header = props.header,
|
|
12856
|
+
title = props.title,
|
|
12857
|
+
children = props.children,
|
|
12858
|
+
mediaUrl = props.mediaUrl,
|
|
12859
|
+
actions = props.actions,
|
|
12860
|
+
size = props.size,
|
|
12861
|
+
caption = props.caption,
|
|
12862
|
+
testId = props.testId,
|
|
12863
|
+
_props$as = props.as,
|
|
12864
|
+
as = _props$as === void 0 ? 'banner' : _props$as;
|
|
12865
|
+
var onClose = props.as === 'card' ? props.onClose : undefined;
|
|
12866
|
+
var emptyStateContainer = React__default.createElement(EmptyStateContainer, {
|
|
12791
12867
|
header: header,
|
|
12792
12868
|
title: title,
|
|
12793
12869
|
mediaUrl: mediaUrl,
|
|
@@ -12797,18 +12873,32 @@ var Paywall = function Paywall(_ref) {
|
|
|
12797
12873
|
isPaywall: true,
|
|
12798
12874
|
testId: testId
|
|
12799
12875
|
}, children);
|
|
12800
|
-
|
|
12801
|
-
|
|
12802
|
-
|
|
12803
|
-
|
|
12804
|
-
|
|
12805
|
-
|
|
12806
|
-
|
|
12807
|
-
|
|
12808
|
-
|
|
12809
|
-
|
|
12810
|
-
|
|
12811
|
-
|
|
12876
|
+
if (as === 'card') {
|
|
12877
|
+
var _classnames;
|
|
12878
|
+
return React__default.createElement(Card$1, {
|
|
12879
|
+
onClose: onClose
|
|
12880
|
+
}, React__default.createElement("div", {
|
|
12881
|
+
className: classnames(styles$1f['paywall--as-card'], (_classnames = {}, _classnames[styles$1f['paywall--as-card--centered']] = size === 'small', _classnames))
|
|
12882
|
+
}, emptyStateContainer));
|
|
12883
|
+
}
|
|
12884
|
+
return emptyStateContainer;
|
|
12885
|
+
};
|
|
12886
|
+
|
|
12887
|
+
var styles$1g = {"empty-state--as-card":"_DrBEi","empty-state--as-card--centered":"_3YbH7"};
|
|
12888
|
+
|
|
12889
|
+
var EmptyState = function EmptyState(props) {
|
|
12890
|
+
var header = props.header,
|
|
12891
|
+
title = props.title,
|
|
12892
|
+
children = props.children,
|
|
12893
|
+
mediaUrl = props.mediaUrl,
|
|
12894
|
+
actions = props.actions,
|
|
12895
|
+
caption = props.caption,
|
|
12896
|
+
size = props.size,
|
|
12897
|
+
testId = props.testId,
|
|
12898
|
+
_props$as = props.as,
|
|
12899
|
+
as = _props$as === void 0 ? 'banner' : _props$as;
|
|
12900
|
+
var onClose = props.as === 'card' ? props.onClose : undefined;
|
|
12901
|
+
var emptyStateContainer = React__default.createElement(EmptyStateContainer, {
|
|
12812
12902
|
header: size !== EMPTY_STATE_SIZE.SMALL ? header : undefined,
|
|
12813
12903
|
title: title,
|
|
12814
12904
|
mediaUrl: mediaUrl,
|
|
@@ -12817,6 +12907,15 @@ var EmptyState = function EmptyState(_ref) {
|
|
|
12817
12907
|
size: size,
|
|
12818
12908
|
testId: testId
|
|
12819
12909
|
}, children);
|
|
12910
|
+
if (as === 'card') {
|
|
12911
|
+
var _classnames;
|
|
12912
|
+
return React__default.createElement(Card$1, {
|
|
12913
|
+
onClose: onClose
|
|
12914
|
+
}, React__default.createElement("div", {
|
|
12915
|
+
className: classnames(styles$1g['empty-state--as-card'], (_classnames = {}, _classnames[styles$1g['empty-state--as-card--centered']] = size === 'small', _classnames))
|
|
12916
|
+
}, emptyStateContainer));
|
|
12917
|
+
}
|
|
12918
|
+
return emptyStateContainer;
|
|
12820
12919
|
};
|
|
12821
12920
|
|
|
12822
12921
|
exports.AsyncSelectField = AsyncSelectField$1;
|
|
@@ -12829,7 +12928,7 @@ exports.Button = Button;
|
|
|
12829
12928
|
exports.COLORS = COLORS;
|
|
12830
12929
|
exports.Calendar = Calendar$1;
|
|
12831
12930
|
exports.CalloutCard = CalloutCard;
|
|
12832
|
-
exports.Card = Card;
|
|
12931
|
+
exports.Card = Card$1;
|
|
12833
12932
|
exports.CheckboxField = CheckboxField;
|
|
12834
12933
|
exports.Chip = Chip;
|
|
12835
12934
|
exports.CircularProgress = CircularProgress;
|
|
@@ -12931,6 +13030,7 @@ exports.IconGreatMonochromatic = IconGreatMonochromatic;
|
|
|
12931
13030
|
exports.IconGrinBeam = IconGrinBeam;
|
|
12932
13031
|
exports.IconGripVertical = IconGripVertical;
|
|
12933
13032
|
exports.IconHandshake = IconHandshake;
|
|
13033
|
+
exports.IconHatChef = IconHatChef;
|
|
12934
13034
|
exports.IconImage = IconImage;
|
|
12935
13035
|
exports.IconInfoCircle = IconInfoCircle;
|
|
12936
13036
|
exports.IconIslandTropical = IconIslandTropical;
|
|
@@ -12956,6 +13056,7 @@ exports.IconPaperclip = IconPaperclip;
|
|
|
12956
13056
|
exports.IconPencil = IconPencil;
|
|
12957
13057
|
exports.IconPercentage = IconPercentage;
|
|
12958
13058
|
exports.IconPhone = IconPhone;
|
|
13059
|
+
exports.IconPlateUtensils = IconPlateUtensils;
|
|
12959
13060
|
exports.IconPlug = IconPlug;
|
|
12960
13061
|
exports.IconPlus = IconPlus;
|
|
12961
13062
|
exports.IconPrint = IconPrint;
|