@wix/entity-advanced-permissions 1.1264.0 → 1.1265.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/statics/entity-advanced-permissions.umd.js +385 -312
- package/dist/statics/entity-advanced-permissions.umd.js.map +1 -1
- package/dist/statics/entity-advanced-permissions.umd.min.js +3 -3
- package/dist/statics/entity-advanced-permissions.umd.min.js.map +1 -1
- package/dist/statics/manifest.json +2 -2
- package/dist/statics/manifest.min.json +2 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
|
@@ -3653,6 +3653,38 @@ function assocIndexOf(array, key) {
|
|
|
3653
3653
|
module.exports = assocIndexOf;
|
|
3654
3654
|
|
|
3655
3655
|
|
|
3656
|
+
/***/ }),
|
|
3657
|
+
|
|
3658
|
+
/***/ 778:
|
|
3659
|
+
/*!**************************************************!*\
|
|
3660
|
+
!*** ../../../node_modules/lodash/_baseClamp.js ***!
|
|
3661
|
+
\**************************************************/
|
|
3662
|
+
/***/ ((module) => {
|
|
3663
|
+
|
|
3664
|
+
/**
|
|
3665
|
+
* The base implementation of `_.clamp` which doesn't coerce arguments.
|
|
3666
|
+
*
|
|
3667
|
+
* @private
|
|
3668
|
+
* @param {number} number The number to clamp.
|
|
3669
|
+
* @param {number} [lower] The lower bound.
|
|
3670
|
+
* @param {number} upper The upper bound.
|
|
3671
|
+
* @returns {number} Returns the clamped number.
|
|
3672
|
+
*/
|
|
3673
|
+
function baseClamp(number, lower, upper) {
|
|
3674
|
+
if (number === number) {
|
|
3675
|
+
if (upper !== undefined) {
|
|
3676
|
+
number = number <= upper ? number : upper;
|
|
3677
|
+
}
|
|
3678
|
+
if (lower !== undefined) {
|
|
3679
|
+
number = number >= lower ? number : lower;
|
|
3680
|
+
}
|
|
3681
|
+
}
|
|
3682
|
+
return number;
|
|
3683
|
+
}
|
|
3684
|
+
|
|
3685
|
+
module.exports = baseClamp;
|
|
3686
|
+
|
|
3687
|
+
|
|
3656
3688
|
/***/ }),
|
|
3657
3689
|
|
|
3658
3690
|
/***/ 6671:
|
|
@@ -7178,6 +7210,55 @@ function trimmedEndIndex(string) {
|
|
|
7178
7210
|
module.exports = trimmedEndIndex;
|
|
7179
7211
|
|
|
7180
7212
|
|
|
7213
|
+
/***/ }),
|
|
7214
|
+
|
|
7215
|
+
/***/ 1190:
|
|
7216
|
+
/*!*********************************************!*\
|
|
7217
|
+
!*** ../../../node_modules/lodash/clamp.js ***!
|
|
7218
|
+
\*********************************************/
|
|
7219
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
7220
|
+
|
|
7221
|
+
var baseClamp = __webpack_require__(/*! ./_baseClamp */ 778),
|
|
7222
|
+
toNumber = __webpack_require__(/*! ./toNumber */ 8746);
|
|
7223
|
+
|
|
7224
|
+
/**
|
|
7225
|
+
* Clamps `number` within the inclusive `lower` and `upper` bounds.
|
|
7226
|
+
*
|
|
7227
|
+
* @static
|
|
7228
|
+
* @memberOf _
|
|
7229
|
+
* @since 4.0.0
|
|
7230
|
+
* @category Number
|
|
7231
|
+
* @param {number} number The number to clamp.
|
|
7232
|
+
* @param {number} [lower] The lower bound.
|
|
7233
|
+
* @param {number} upper The upper bound.
|
|
7234
|
+
* @returns {number} Returns the clamped number.
|
|
7235
|
+
* @example
|
|
7236
|
+
*
|
|
7237
|
+
* _.clamp(-10, -5, 5);
|
|
7238
|
+
* // => -5
|
|
7239
|
+
*
|
|
7240
|
+
* _.clamp(10, -5, 5);
|
|
7241
|
+
* // => 5
|
|
7242
|
+
*/
|
|
7243
|
+
function clamp(number, lower, upper) {
|
|
7244
|
+
if (upper === undefined) {
|
|
7245
|
+
upper = lower;
|
|
7246
|
+
lower = undefined;
|
|
7247
|
+
}
|
|
7248
|
+
if (upper !== undefined) {
|
|
7249
|
+
upper = toNumber(upper);
|
|
7250
|
+
upper = upper === upper ? upper : 0;
|
|
7251
|
+
}
|
|
7252
|
+
if (lower !== undefined) {
|
|
7253
|
+
lower = toNumber(lower);
|
|
7254
|
+
lower = lower === lower ? lower : 0;
|
|
7255
|
+
}
|
|
7256
|
+
return baseClamp(toNumber(number), lower, upper);
|
|
7257
|
+
}
|
|
7258
|
+
|
|
7259
|
+
module.exports = clamp;
|
|
7260
|
+
|
|
7261
|
+
|
|
7181
7262
|
/***/ }),
|
|
7182
7263
|
|
|
7183
7264
|
/***/ 3338:
|
|
@@ -34487,7 +34568,7 @@ function injectCSS(id, css, depth, runtimeId) {
|
|
|
34487
34568
|
|
|
34488
34569
|
|
|
34489
34570
|
|
|
34490
|
-
var _namespace_ = "
|
|
34571
|
+
var _namespace_ = "wds_1_125_0_newColorsBranding";
|
|
34491
34572
|
var _style_ = classesRuntime.bind(null, _namespace_);
|
|
34492
34573
|
|
|
34493
34574
|
var newColorsBranding_st_css_cssStates = statesRuntime.bind(null, _namespace_);
|
|
@@ -34495,7 +34576,7 @@ var newColorsBranding_st_css_style = (/* unused pure expression or super */ null
|
|
|
34495
34576
|
var newColorsBranding_st_css_st = _style_;
|
|
34496
34577
|
|
|
34497
34578
|
var newColorsBranding_st_css_namespace = (/* unused pure expression or super */ null && (_namespace_));
|
|
34498
|
-
var newColorsBranding_st_css_classes = {"root":"
|
|
34579
|
+
var newColorsBranding_st_css_classes = {"root":"wds_1_125_0_newColorsBranding__root"};
|
|
34499
34580
|
var newColorsBranding_st_css_keyframes = {};
|
|
34500
34581
|
var newColorsBranding_st_css_layers = {};
|
|
34501
34582
|
var containers = {};
|
|
@@ -34513,7 +34594,7 @@ var newColorsBranding_st_css_vars = {};
|
|
|
34513
34594
|
|
|
34514
34595
|
|
|
34515
34596
|
|
|
34516
|
-
var madefor_st_css_namespace_ = "
|
|
34597
|
+
var madefor_st_css_namespace_ = "wds_1_125_0_madefor";
|
|
34517
34598
|
var madefor_st_css_style_ = classesRuntime.bind(null, madefor_st_css_namespace_);
|
|
34518
34599
|
|
|
34519
34600
|
var madefor_st_css_cssStates = statesRuntime.bind(null, madefor_st_css_namespace_);
|
|
@@ -34521,7 +34602,7 @@ var madefor_st_css_style = (/* unused pure expression or super */ null && (madef
|
|
|
34521
34602
|
var madefor_st_css_st = (/* unused pure expression or super */ null && (madefor_st_css_style_));
|
|
34522
34603
|
|
|
34523
34604
|
var madefor_st_css_namespace = (/* unused pure expression or super */ null && (madefor_st_css_namespace_));
|
|
34524
|
-
var madefor_st_css_classes = {"root":"
|
|
34605
|
+
var madefor_st_css_classes = {"root":"wds_1_125_0_madefor__root","madefor":"wds_1_125_0_madefor__madefor"};
|
|
34525
34606
|
var madefor_st_css_keyframes = {};
|
|
34526
34607
|
var madefor_st_css_layers = {};
|
|
34527
34608
|
var madefor_st_css_containers = {};
|
|
@@ -34539,7 +34620,7 @@ var madefor_st_css_vars = {"wix-font-stack":"--wix-font-stack","wix-font-weight-
|
|
|
34539
34620
|
|
|
34540
34621
|
|
|
34541
34622
|
|
|
34542
|
-
var WixDesignSystemProvider_st_css_namespace_ = "
|
|
34623
|
+
var WixDesignSystemProvider_st_css_namespace_ = "wds_1_125_0_WixDesignSystemProvider";
|
|
34543
34624
|
var WixDesignSystemProvider_st_css_style_ = classesRuntime.bind(null, WixDesignSystemProvider_st_css_namespace_);
|
|
34544
34625
|
|
|
34545
34626
|
var WixDesignSystemProvider_st_css_cssStates = statesRuntime.bind(null, WixDesignSystemProvider_st_css_namespace_);
|
|
@@ -34547,7 +34628,7 @@ var WixDesignSystemProvider_st_css_style = (/* unused pure expression or super *
|
|
|
34547
34628
|
var WixDesignSystemProvider_st_css_st = (/* unused pure expression or super */ null && (WixDesignSystemProvider_st_css_style_));
|
|
34548
34629
|
|
|
34549
34630
|
var WixDesignSystemProvider_st_css_namespace = (/* unused pure expression or super */ null && (WixDesignSystemProvider_st_css_namespace_));
|
|
34550
|
-
var WixDesignSystemProvider_st_css_classes = {"root":"
|
|
34631
|
+
var WixDesignSystemProvider_st_css_classes = {"root":"wds_1_125_0_WixDesignSystemProvider__root","mobile":"wds_1_125_0_WixDesignSystemProvider__mobile"};
|
|
34551
34632
|
var WixDesignSystemProvider_st_css_keyframes = {};
|
|
34552
34633
|
var WixDesignSystemProvider_st_css_layers = {};
|
|
34553
34634
|
var WixDesignSystemProvider_st_css_containers = {};
|
|
@@ -34621,7 +34702,7 @@ var isEmpty_default = /*#__PURE__*/__webpack_require__.n(isEmpty);
|
|
|
34621
34702
|
|
|
34622
34703
|
|
|
34623
34704
|
|
|
34624
|
-
var typography_st_css_namespace_ = "
|
|
34705
|
+
var typography_st_css_namespace_ = "wds_1_125_0_StylableTypography";
|
|
34625
34706
|
var typography_st_css_style_ = classesRuntime.bind(null, typography_st_css_namespace_);
|
|
34626
34707
|
|
|
34627
34708
|
var typography_st_css_cssStates = statesRuntime.bind(null, typography_st_css_namespace_);
|
|
@@ -34629,7 +34710,7 @@ var typography_st_css_style = (/* unused pure expression or super */ null && (ty
|
|
|
34629
34710
|
var typography_st_css_st = (/* unused pure expression or super */ null && (typography_st_css_style_));
|
|
34630
34711
|
|
|
34631
34712
|
var typography_st_css_namespace = (/* unused pure expression or super */ null && (typography_st_css_namespace_));
|
|
34632
|
-
var typography_st_css_classes = {"root":"
|
|
34713
|
+
var typography_st_css_classes = {"root":"wds_1_125_0_StylableTypography__root","text-extra-tiny-thin":"wds_1_125_0_StylableTypography__text-extra-tiny-thin","text-extra-tiny-normal":"wds_1_125_0_StylableTypography__text-extra-tiny-normal","text-extra-tiny-bold":"wds_1_125_0_StylableTypography__text-extra-tiny-bold","text-tiny-thin":"wds_1_125_0_StylableTypography__text-tiny-thin","text-tiny-normal":"wds_1_125_0_StylableTypography__text-tiny-normal","text-tiny-bold":"wds_1_125_0_StylableTypography__text-tiny-bold","text-small-thin":"wds_1_125_0_StylableTypography__text-small-thin","text-small-normal":"wds_1_125_0_StylableTypography__text-small-normal","text-small-bold":"wds_1_125_0_StylableTypography__text-small-bold","text-medium-thin":"wds_1_125_0_StylableTypography__text-medium-thin","text-medium-normal":"wds_1_125_0_StylableTypography__text-medium-normal","text-medium-bold":"wds_1_125_0_StylableTypography__text-medium-bold","heading-h1":"wds_1_125_0_StylableTypography__heading-h1","heading-h2":"wds_1_125_0_StylableTypography__heading-h2","heading-h3":"wds_1_125_0_StylableTypography__heading-h3","heading-h4":"wds_1_125_0_StylableTypography__heading-h4","heading-h5":"wds_1_125_0_StylableTypography__heading-h5","heading-h6":"wds_1_125_0_StylableTypography__heading-h6","heading-xl":"wds_1_125_0_StylableTypography__heading-xl","heading-l":"wds_1_125_0_StylableTypography__heading-l","heading-m":"wds_1_125_0_StylableTypography__heading-m","heading-s":"wds_1_125_0_StylableTypography__heading-s","heading-t":"wds_1_125_0_StylableTypography__heading-t","heading-xt":"wds_1_125_0_StylableTypography__heading-xt","caption-1":"wds_1_125_0_StylableTypography__caption-1"};
|
|
34633
34714
|
var typography_st_css_keyframes = {};
|
|
34634
34715
|
var typography_st_css_layers = {};
|
|
34635
34716
|
var typography_st_css_containers = {};
|
|
@@ -34647,7 +34728,7 @@ var typography_st_css_vars = {"wds-font-family-default":"--wds-font-family-defau
|
|
|
34647
34728
|
|
|
34648
34729
|
|
|
34649
34730
|
|
|
34650
|
-
var colors_st_css_namespace_ = "
|
|
34731
|
+
var colors_st_css_namespace_ = "wds_1_125_0_colors";
|
|
34651
34732
|
var colors_st_css_style_ = classesRuntime.bind(null, colors_st_css_namespace_);
|
|
34652
34733
|
|
|
34653
34734
|
var colors_st_css_cssStates = statesRuntime.bind(null, colors_st_css_namespace_);
|
|
@@ -34655,7 +34736,7 @@ var colors_st_css_style = (/* unused pure expression or super */ null && (colors
|
|
|
34655
34736
|
var colors_st_css_st = (/* unused pure expression or super */ null && (colors_st_css_style_));
|
|
34656
34737
|
|
|
34657
34738
|
var colors_st_css_namespace = (/* unused pure expression or super */ null && (colors_st_css_namespace_));
|
|
34658
|
-
var colors_st_css_classes = {"root":"
|
|
34739
|
+
var colors_st_css_classes = {"root":"wds_1_125_0_colors__root"};
|
|
34659
34740
|
var colors_st_css_keyframes = {};
|
|
34660
34741
|
var colors_st_css_layers = {};
|
|
34661
34742
|
var colors_st_css_containers = {};
|
|
@@ -34675,7 +34756,7 @@ var colors_st_css_vars = {"wsr-color-D10":"--wsr-color-D10","wsr-color-D20":"--w
|
|
|
34675
34756
|
|
|
34676
34757
|
|
|
34677
34758
|
|
|
34678
|
-
var Text_st_css_namespace_ = "
|
|
34759
|
+
var Text_st_css_namespace_ = "wds_1_125_0_Text";
|
|
34679
34760
|
var Text_st_css_style_ = classesRuntime.bind(null, Text_st_css_namespace_);
|
|
34680
34761
|
|
|
34681
34762
|
var Text_st_css_cssStates = statesRuntime.bind(null, Text_st_css_namespace_);
|
|
@@ -34683,7 +34764,7 @@ var Text_st_css_style = (/* unused pure expression or super */ null && (Text_st_
|
|
|
34683
34764
|
var Text_st_css_st = Text_st_css_style_;
|
|
34684
34765
|
|
|
34685
34766
|
var Text_st_css_namespace = (/* unused pure expression or super */ null && (Text_st_css_namespace_));
|
|
34686
|
-
var Text_st_css_classes = {"root":"
|
|
34767
|
+
var Text_st_css_classes = {"root":"wds_1_125_0_Text__root","text-tiny-thin":"wds_1_125_0_StylableTypography__text-tiny-thin","text-tiny-normal":"wds_1_125_0_StylableTypography__text-tiny-normal","text-tiny-bold":"wds_1_125_0_StylableTypography__text-tiny-bold","text-small-thin":"wds_1_125_0_StylableTypography__text-small-thin","text-small-normal":"wds_1_125_0_StylableTypography__text-small-normal","text-small-bold":"wds_1_125_0_StylableTypography__text-small-bold","text-medium-thin":"wds_1_125_0_StylableTypography__text-medium-thin","text-medium-normal":"wds_1_125_0_StylableTypography__text-medium-normal","text-medium-bold":"wds_1_125_0_StylableTypography__text-medium-bold"};
|
|
34687
34768
|
var Text_st_css_keyframes = {};
|
|
34688
34769
|
var Text_st_css_layers = {};
|
|
34689
34770
|
var Text_st_css_containers = {};
|
|
@@ -34774,7 +34855,7 @@ var shallowequal_default = /*#__PURE__*/__webpack_require__.n(shallowequal);
|
|
|
34774
34855
|
|
|
34775
34856
|
|
|
34776
34857
|
|
|
34777
|
-
var shadows_st_css_namespace_ = "
|
|
34858
|
+
var shadows_st_css_namespace_ = "wds_1_125_0_shadows";
|
|
34778
34859
|
var shadows_st_css_style_ = classesRuntime.bind(null, shadows_st_css_namespace_);
|
|
34779
34860
|
|
|
34780
34861
|
var shadows_st_css_cssStates = statesRuntime.bind(null, shadows_st_css_namespace_);
|
|
@@ -34782,7 +34863,7 @@ var shadows_st_css_style = (/* unused pure expression or super */ null && (shado
|
|
|
34782
34863
|
var shadows_st_css_st = (/* unused pure expression or super */ null && (shadows_st_css_style_));
|
|
34783
34864
|
|
|
34784
34865
|
var shadows_st_css_namespace = (/* unused pure expression or super */ null && (shadows_st_css_namespace_));
|
|
34785
|
-
var shadows_st_css_classes = {"root":"
|
|
34866
|
+
var shadows_st_css_classes = {"root":"wds_1_125_0_shadows__root"};
|
|
34786
34867
|
var shadows_st_css_keyframes = {};
|
|
34787
34868
|
var shadows_st_css_layers = {};
|
|
34788
34869
|
var shadows_st_css_containers = {};
|
|
@@ -34800,7 +34881,7 @@ var shadows_st_css_vars = {"wsr-shadow10":"--wsr-shadow10","wsr-shadow20":"--wsr
|
|
|
34800
34881
|
|
|
34801
34882
|
|
|
34802
34883
|
|
|
34803
|
-
var easing_st_css_namespace_ = "
|
|
34884
|
+
var easing_st_css_namespace_ = "wds_1_125_0_easing";
|
|
34804
34885
|
var easing_st_css_style_ = classesRuntime.bind(null, easing_st_css_namespace_);
|
|
34805
34886
|
|
|
34806
34887
|
var easing_st_css_cssStates = statesRuntime.bind(null, easing_st_css_namespace_);
|
|
@@ -34808,7 +34889,7 @@ var easing_st_css_style = (/* unused pure expression or super */ null && (easing
|
|
|
34808
34889
|
var easing_st_css_st = (/* unused pure expression or super */ null && (easing_st_css_style_));
|
|
34809
34890
|
|
|
34810
34891
|
var easing_st_css_namespace = (/* unused pure expression or super */ null && (easing_st_css_namespace_));
|
|
34811
|
-
var easing_st_css_classes = {"root":"
|
|
34892
|
+
var easing_st_css_classes = {"root":"wds_1_125_0_easing__root"};
|
|
34812
34893
|
var easing_st_css_keyframes = {};
|
|
34813
34894
|
var easing_st_css_layers = {};
|
|
34814
34895
|
var easing_st_css_containers = {};
|
|
@@ -34829,7 +34910,7 @@ var easing_st_css_vars = {};
|
|
|
34829
34910
|
|
|
34830
34911
|
|
|
34831
34912
|
|
|
34832
|
-
var Popover_st_css_namespace_ = "
|
|
34913
|
+
var Popover_st_css_namespace_ = "wds_1_125_0_Popover";
|
|
34833
34914
|
var Popover_st_css_style_ = classesRuntime.bind(null, Popover_st_css_namespace_);
|
|
34834
34915
|
|
|
34835
34916
|
var Popover_st_css_cssStates = statesRuntime.bind(null, Popover_st_css_namespace_);
|
|
@@ -34837,7 +34918,7 @@ var Popover_st_css_style = (/* unused pure expression or super */ null && (Popov
|
|
|
34837
34918
|
var Popover_st_css_st = Popover_st_css_style_;
|
|
34838
34919
|
|
|
34839
34920
|
var Popover_st_css_namespace = (/* unused pure expression or super */ null && (Popover_st_css_namespace_));
|
|
34840
|
-
var Popover_st_css_classes = {"root":"
|
|
34921
|
+
var Popover_st_css_classes = {"root":"wds_1_125_0_Popover__root","content":"wds_1_125_0_Popover__content","arrow":"wds_1_125_0_Popover__arrow","element":"wds_1_125_0_Popover__element","animationEnter":"wds_1_125_0_Popover__animationEnter","animationEnterActive":"wds_1_125_0_Popover__animationEnterActive","animationExit":"wds_1_125_0_Popover__animationExit","animationExitActive":"wds_1_125_0_Popover__animationExitActive"};
|
|
34841
34922
|
var Popover_st_css_keyframes = {};
|
|
34842
34923
|
var Popover_st_css_layers = {};
|
|
34843
34924
|
var Popover_st_css_containers = {};
|
|
@@ -34857,7 +34938,8 @@ var Popover_st_css_vars = {"wds-popover-border":"--wds-popover-border","wds-shad
|
|
|
34857
34938
|
|
|
34858
34939
|
|
|
34859
34940
|
|
|
34860
|
-
|
|
34941
|
+
|
|
34942
|
+
var Tooltip_st_css_namespace_ = "wds_1_125_0_Tooltip";
|
|
34861
34943
|
var Tooltip_st_css_style_ = classesRuntime.bind(null, Tooltip_st_css_namespace_);
|
|
34862
34944
|
|
|
34863
34945
|
var Tooltip_st_css_cssStates = statesRuntime.bind(null, Tooltip_st_css_namespace_);
|
|
@@ -34865,12 +34947,12 @@ var Tooltip_st_css_style = (/* unused pure expression or super */ null && (Toolt
|
|
|
34865
34947
|
var Tooltip_st_css_st = Tooltip_st_css_style_;
|
|
34866
34948
|
|
|
34867
34949
|
var Tooltip_st_css_namespace = (/* unused pure expression or super */ null && (Tooltip_st_css_namespace_));
|
|
34868
|
-
var Tooltip_st_css_classes = {"root":"
|
|
34950
|
+
var Tooltip_st_css_classes = {"root":"wds_1_125_0_Tooltip__root","text-small-normal":"wds_1_125_0_StylableTypography__text-small-normal","text-tiny-thin":"wds_1_125_0_StylableTypography__text-tiny-thin","text":"wds_1_125_0_Tooltip__text"};
|
|
34869
34951
|
var Tooltip_st_css_keyframes = {};
|
|
34870
34952
|
var Tooltip_st_css_layers = {};
|
|
34871
34953
|
var Tooltip_st_css_containers = {};
|
|
34872
34954
|
var Tooltip_st_css_stVars = {};
|
|
34873
|
-
var Tooltip_st_css_vars = {};
|
|
34955
|
+
var Tooltip_st_css_vars = {"wds-tooltip-padding-vertical-medium":"--wds-tooltip-padding-vertical-medium","wds-tooltip-padding-horizontal-medium":"--wds-tooltip-padding-horizontal-medium","wds-tooltip-padding-vertical-small":"--wds-tooltip-padding-vertical-small","wds-tooltip-padding-horizontal-small":"--wds-tooltip-padding-horizontal-small"};
|
|
34874
34956
|
|
|
34875
34957
|
|
|
34876
34958
|
|
|
@@ -34883,7 +34965,7 @@ var Tooltip_st_css_vars = {};
|
|
|
34883
34965
|
|
|
34884
34966
|
|
|
34885
34967
|
|
|
34886
|
-
var Ellipsis_st_css_namespace_ = "
|
|
34968
|
+
var Ellipsis_st_css_namespace_ = "wds_1_125_0_Ellipsis";
|
|
34887
34969
|
var Ellipsis_st_css_style_ = classesRuntime.bind(null, Ellipsis_st_css_namespace_);
|
|
34888
34970
|
|
|
34889
34971
|
var Ellipsis_st_css_cssStates = statesRuntime.bind(null, Ellipsis_st_css_namespace_);
|
|
@@ -34891,12 +34973,12 @@ var Ellipsis_st_css_style = (/* unused pure expression or super */ null && (Elli
|
|
|
34891
34973
|
var Ellipsis_st_css_st = Ellipsis_st_css_style_;
|
|
34892
34974
|
|
|
34893
34975
|
var Ellipsis_st_css_namespace = (/* unused pure expression or super */ null && (Ellipsis_st_css_namespace_));
|
|
34894
|
-
var Ellipsis_st_css_classes = {"root":"
|
|
34976
|
+
var Ellipsis_st_css_classes = {"root":"wds_1_125_0_Ellipsis__root","tooltip":"wds_1_125_0_Ellipsis__tooltip"};
|
|
34895
34977
|
var Ellipsis_st_css_keyframes = {};
|
|
34896
34978
|
var Ellipsis_st_css_layers = {};
|
|
34897
34979
|
var Ellipsis_st_css_containers = {};
|
|
34898
34980
|
var Ellipsis_st_css_stVars = {};
|
|
34899
|
-
var Ellipsis_st_css_vars = {"maxLines":"--
|
|
34981
|
+
var Ellipsis_st_css_vars = {"maxLines":"--wds_1_125_0_Ellipsis-maxLines"};
|
|
34900
34982
|
|
|
34901
34983
|
|
|
34902
34984
|
|
|
@@ -39884,7 +39966,7 @@ const TooltipCommonProps = {
|
|
|
39884
39966
|
|
|
39885
39967
|
|
|
39886
39968
|
|
|
39887
|
-
var TextComponent_st_css_namespace_ = "
|
|
39969
|
+
var TextComponent_st_css_namespace_ = "wds_1_125_0_TextComponent";
|
|
39888
39970
|
var TextComponent_st_css_style_ = classesRuntime.bind(null, TextComponent_st_css_namespace_);
|
|
39889
39971
|
|
|
39890
39972
|
var TextComponent_st_css_cssStates = statesRuntime.bind(null, TextComponent_st_css_namespace_);
|
|
@@ -39892,12 +39974,12 @@ var TextComponent_st_css_style = (/* unused pure expression or super */ null &&
|
|
|
39892
39974
|
var TextComponent_st_css_st = TextComponent_st_css_style_;
|
|
39893
39975
|
|
|
39894
39976
|
var TextComponent_st_css_namespace = (/* unused pure expression or super */ null && (TextComponent_st_css_namespace_));
|
|
39895
|
-
var TextComponent_st_css_classes = {"root":"
|
|
39977
|
+
var TextComponent_st_css_classes = {"root":"wds_1_125_0_TextComponent__root","text":"wds_1_125_0_TextComponent__text","suffix":"wds_1_125_0_TextComponent__suffix","multilineSuffixWrapper":"wds_1_125_0_TextComponent__multilineSuffixWrapper","multilineSuffix":"wds_1_125_0_TextComponent__multilineSuffix"};
|
|
39896
39978
|
var TextComponent_st_css_keyframes = {};
|
|
39897
39979
|
var TextComponent_st_css_layers = {};
|
|
39898
39980
|
var TextComponent_st_css_containers = {};
|
|
39899
39981
|
var TextComponent_st_css_stVars = {};
|
|
39900
|
-
var TextComponent_st_css_vars = {"maxLines":"--
|
|
39982
|
+
var TextComponent_st_css_vars = {"maxLines":"--wds_1_125_0_TextComponent-maxLines"};
|
|
39901
39983
|
|
|
39902
39984
|
|
|
39903
39985
|
|
|
@@ -40299,7 +40381,7 @@ const generateDataAttr = (props, filter) => Object.entries(props)
|
|
|
40299
40381
|
|
|
40300
40382
|
|
|
40301
40383
|
|
|
40302
|
-
var breakpoints_st_css_namespace_ = "
|
|
40384
|
+
var breakpoints_st_css_namespace_ = "wds_1_125_0_breakpoints";
|
|
40303
40385
|
var breakpoints_st_css_style_ = classesRuntime.bind(null, breakpoints_st_css_namespace_);
|
|
40304
40386
|
|
|
40305
40387
|
var breakpoints_st_css_cssStates = statesRuntime.bind(null, breakpoints_st_css_namespace_);
|
|
@@ -40307,7 +40389,7 @@ var breakpoints_st_css_style = (/* unused pure expression or super */ null && (b
|
|
|
40307
40389
|
var breakpoints_st_css_st = (/* unused pure expression or super */ null && (breakpoints_st_css_style_));
|
|
40308
40390
|
|
|
40309
40391
|
var breakpoints_st_css_namespace = (/* unused pure expression or super */ null && (breakpoints_st_css_namespace_));
|
|
40310
|
-
var breakpoints_st_css_classes = {"root":"
|
|
40392
|
+
var breakpoints_st_css_classes = {"root":"wds_1_125_0_breakpoints__root"};
|
|
40311
40393
|
var breakpoints_st_css_keyframes = {};
|
|
40312
40394
|
var breakpoints_st_css_layers = {};
|
|
40313
40395
|
var breakpoints_st_css_containers = {};
|
|
@@ -40325,7 +40407,7 @@ var breakpoints_st_css_vars = {};
|
|
|
40325
40407
|
|
|
40326
40408
|
|
|
40327
40409
|
|
|
40328
|
-
var Focusable_st_css_namespace_ = "
|
|
40410
|
+
var Focusable_st_css_namespace_ = "wds_1_125_0_Focusable";
|
|
40329
40411
|
var Focusable_st_css_style_ = classesRuntime.bind(null, Focusable_st_css_namespace_);
|
|
40330
40412
|
|
|
40331
40413
|
var Focusable_st_css_cssStates = statesRuntime.bind(null, Focusable_st_css_namespace_);
|
|
@@ -40333,7 +40415,7 @@ var Focusable_st_css_style = (/* unused pure expression or super */ null && (Foc
|
|
|
40333
40415
|
var Focusable_st_css_st = Focusable_st_css_style_;
|
|
40334
40416
|
|
|
40335
40417
|
var Focusable_st_css_namespace = (/* unused pure expression or super */ null && (Focusable_st_css_namespace_));
|
|
40336
|
-
var Focusable_st_css_classes = {"root":"
|
|
40418
|
+
var Focusable_st_css_classes = {"root":"wds_1_125_0_Focusable__root","focus-box":"wds_1_125_0_Focusable__focus-box","focus-box-error":"wds_1_125_0_Focusable__focus-box-error"};
|
|
40337
40419
|
var Focusable_st_css_keyframes = {};
|
|
40338
40420
|
var Focusable_st_css_layers = {};
|
|
40339
40421
|
var Focusable_st_css_containers = {};
|
|
@@ -40351,7 +40433,7 @@ var Focusable_st_css_vars = {};
|
|
|
40351
40433
|
|
|
40352
40434
|
|
|
40353
40435
|
|
|
40354
|
-
var ButtonCore_st_css_namespace_ = "
|
|
40436
|
+
var ButtonCore_st_css_namespace_ = "wds_1_125_0_ButtonCore";
|
|
40355
40437
|
var ButtonCore_st_css_style_ = classesRuntime.bind(null, ButtonCore_st_css_namespace_);
|
|
40356
40438
|
|
|
40357
40439
|
var ButtonCore_st_css_cssStates = statesRuntime.bind(null, ButtonCore_st_css_namespace_);
|
|
@@ -40359,7 +40441,7 @@ var ButtonCore_st_css_style = (/* unused pure expression or super */ null && (Bu
|
|
|
40359
40441
|
var ButtonCore_st_css_st = ButtonCore_st_css_style_;
|
|
40360
40442
|
|
|
40361
40443
|
var ButtonCore_st_css_namespace = (/* unused pure expression or super */ null && (ButtonCore_st_css_namespace_));
|
|
40362
|
-
var ButtonCore_st_css_classes = {"root":"
|
|
40444
|
+
var ButtonCore_st_css_classes = {"root":"wds_1_125_0_ButtonCore__root","content":"wds_1_125_0_ButtonCore__content","prefix":"wds_1_125_0_ButtonCore__prefix","suffix":"wds_1_125_0_ButtonCore__suffix"};
|
|
40363
40445
|
var ButtonCore_st_css_keyframes = {};
|
|
40364
40446
|
var ButtonCore_st_css_layers = {};
|
|
40365
40447
|
var ButtonCore_st_css_containers = {};
|
|
@@ -40383,7 +40465,7 @@ var ButtonCore_st_css_vars = {};
|
|
|
40383
40465
|
|
|
40384
40466
|
|
|
40385
40467
|
|
|
40386
|
-
var TextButton_st_css_namespace_ = "
|
|
40468
|
+
var TextButton_st_css_namespace_ = "wds_1_125_0_TextButton";
|
|
40387
40469
|
var TextButton_st_css_style_ = classesRuntime.bind(null, TextButton_st_css_namespace_);
|
|
40388
40470
|
|
|
40389
40471
|
var TextButton_st_css_cssStates = statesRuntime.bind(null, TextButton_st_css_namespace_);
|
|
@@ -40391,7 +40473,7 @@ var TextButton_st_css_style = (/* unused pure expression or super */ null && (Te
|
|
|
40391
40473
|
var TextButton_st_css_st = TextButton_st_css_style_;
|
|
40392
40474
|
|
|
40393
40475
|
var TextButton_st_css_namespace = (/* unused pure expression or super */ null && (TextButton_st_css_namespace_));
|
|
40394
|
-
var TextButton_st_css_classes = {"root":"
|
|
40476
|
+
var TextButton_st_css_classes = {"root":"wds_1_125_0_TextButton__root","mobile":"wds_1_125_0_WixDesignSystemProvider__mobile","text-tiny-thin":"wds_1_125_0_StylableTypography__text-tiny-thin","text-tiny-normal":"wds_1_125_0_StylableTypography__text-tiny-normal","text-tiny-bold":"wds_1_125_0_StylableTypography__text-tiny-bold","text-small-thin":"wds_1_125_0_StylableTypography__text-small-thin","text-small-normal":"wds_1_125_0_StylableTypography__text-small-normal","text-small-bold":"wds_1_125_0_StylableTypography__text-small-bold","text-medium-thin":"wds_1_125_0_StylableTypography__text-medium-thin","text-medium-normal":"wds_1_125_0_StylableTypography__text-medium-normal","text-medium-bold":"wds_1_125_0_StylableTypography__text-medium-bold"};
|
|
40395
40477
|
var TextButton_st_css_keyframes = {};
|
|
40396
40478
|
var TextButton_st_css_layers = {};
|
|
40397
40479
|
var TextButton_st_css_containers = {};
|
|
@@ -40715,7 +40797,7 @@ TextButton_TextButton.defaultProps = {
|
|
|
40715
40797
|
|
|
40716
40798
|
|
|
40717
40799
|
|
|
40718
|
-
var Button_st_css_namespace_ = "
|
|
40800
|
+
var Button_st_css_namespace_ = "wds_1_125_0_Button";
|
|
40719
40801
|
var Button_st_css_style_ = classesRuntime.bind(null, Button_st_css_namespace_);
|
|
40720
40802
|
|
|
40721
40803
|
var Button_st_css_cssStates = statesRuntime.bind(null, Button_st_css_namespace_);
|
|
@@ -40723,7 +40805,7 @@ var Button_st_css_style = (/* unused pure expression or super */ null && (Button
|
|
|
40723
40805
|
var Button_st_css_st = Button_st_css_style_;
|
|
40724
40806
|
|
|
40725
40807
|
var Button_st_css_namespace = (/* unused pure expression or super */ null && (Button_st_css_namespace_));
|
|
40726
|
-
var Button_st_css_classes = {"root":"
|
|
40808
|
+
var Button_st_css_classes = {"root":"wds_1_125_0_Button__root","text-tiny-normal":"wds_1_125_0_StylableTypography__text-tiny-normal","text-small-normal":"wds_1_125_0_StylableTypography__text-small-normal","text-medium-normal":"wds_1_125_0_StylableTypography__text-medium-normal","text-tiny-bold":"wds_1_125_0_StylableTypography__text-tiny-bold"};
|
|
40727
40809
|
var Button_st_css_keyframes = {};
|
|
40728
40810
|
var Button_st_css_layers = {};
|
|
40729
40811
|
var Button_st_css_containers = {};
|
|
@@ -40899,7 +40981,7 @@ const CloseButton_constants_SIZES = {
|
|
|
40899
40981
|
|
|
40900
40982
|
|
|
40901
40983
|
|
|
40902
|
-
var CloseButton_st_css_namespace_ = "
|
|
40984
|
+
var CloseButton_st_css_namespace_ = "wds_1_125_0_CloseButton";
|
|
40903
40985
|
var CloseButton_st_css_style_ = classesRuntime.bind(null, CloseButton_st_css_namespace_);
|
|
40904
40986
|
|
|
40905
40987
|
var CloseButton_st_css_cssStates = statesRuntime.bind(null, CloseButton_st_css_namespace_);
|
|
@@ -40907,7 +40989,7 @@ var CloseButton_st_css_style = (/* unused pure expression or super */ null && (C
|
|
|
40907
40989
|
var CloseButton_st_css_st = CloseButton_st_css_style_;
|
|
40908
40990
|
|
|
40909
40991
|
var CloseButton_st_css_namespace = (/* unused pure expression or super */ null && (CloseButton_st_css_namespace_));
|
|
40910
|
-
var CloseButton_st_css_classes = {"root":"
|
|
40992
|
+
var CloseButton_st_css_classes = {"root":"wds_1_125_0_CloseButton__root"};
|
|
40911
40993
|
var CloseButton_st_css_keyframes = {};
|
|
40912
40994
|
var CloseButton_st_css_layers = {};
|
|
40913
40995
|
var CloseButton_st_css_containers = {};
|
|
@@ -41020,7 +41102,7 @@ const FloatingNotification_constants_dataHooks = {
|
|
|
41020
41102
|
|
|
41021
41103
|
|
|
41022
41104
|
|
|
41023
|
-
var FloatingNotification_st_css_namespace_ = "
|
|
41105
|
+
var FloatingNotification_st_css_namespace_ = "wds_1_125_0_FloatingNotification";
|
|
41024
41106
|
var FloatingNotification_st_css_style_ = classesRuntime.bind(null, FloatingNotification_st_css_namespace_);
|
|
41025
41107
|
|
|
41026
41108
|
var FloatingNotification_st_css_cssStates = statesRuntime.bind(null, FloatingNotification_st_css_namespace_);
|
|
@@ -41028,7 +41110,7 @@ var FloatingNotification_st_css_style = (/* unused pure expression or super */ n
|
|
|
41028
41110
|
var FloatingNotification_st_css_st = FloatingNotification_st_css_style_;
|
|
41029
41111
|
|
|
41030
41112
|
var FloatingNotification_st_css_namespace = (/* unused pure expression or super */ null && (FloatingNotification_st_css_namespace_));
|
|
41031
|
-
var FloatingNotification_st_css_classes = {"root":"
|
|
41113
|
+
var FloatingNotification_st_css_classes = {"root":"wds_1_125_0_FloatingNotification__root","icon":"wds_1_125_0_FloatingNotification__icon","text":"wds_1_125_0_FloatingNotification__text","textButton":"wds_1_125_0_FloatingNotification__textButton","button":"wds_1_125_0_FloatingNotification__button","gap":"wds_1_125_0_FloatingNotification__gap","close":"wds_1_125_0_FloatingNotification__close"};
|
|
41032
41114
|
var FloatingNotification_st_css_keyframes = {};
|
|
41033
41115
|
var FloatingNotification_st_css_layers = {};
|
|
41034
41116
|
var FloatingNotification_st_css_containers = {};
|
|
@@ -41149,7 +41231,7 @@ FloatingNotification.defaultProps = {
|
|
|
41149
41231
|
|
|
41150
41232
|
|
|
41151
41233
|
|
|
41152
|
-
var Divider_st_css_namespace_ = "
|
|
41234
|
+
var Divider_st_css_namespace_ = "wds_1_125_0_Divider";
|
|
41153
41235
|
var Divider_st_css_style_ = classesRuntime.bind(null, Divider_st_css_namespace_);
|
|
41154
41236
|
|
|
41155
41237
|
var Divider_st_css_cssStates = statesRuntime.bind(null, Divider_st_css_namespace_);
|
|
@@ -41157,7 +41239,7 @@ var Divider_st_css_style = (/* unused pure expression or super */ null && (Divid
|
|
|
41157
41239
|
var Divider_st_css_st = Divider_st_css_style_;
|
|
41158
41240
|
|
|
41159
41241
|
var Divider_st_css_namespace = (/* unused pure expression or super */ null && (Divider_st_css_namespace_));
|
|
41160
|
-
var Divider_st_css_classes = {"root":"
|
|
41242
|
+
var Divider_st_css_classes = {"root":"wds_1_125_0_Divider__root"};
|
|
41161
41243
|
var Divider_st_css_keyframes = {};
|
|
41162
41244
|
var Divider_st_css_layers = {};
|
|
41163
41245
|
var Divider_st_css_containers = {};
|
|
@@ -41265,7 +41347,7 @@ Arc.displayName = 'Arc';
|
|
|
41265
41347
|
|
|
41266
41348
|
|
|
41267
41349
|
|
|
41268
|
-
var Heading_st_css_namespace_ = "
|
|
41350
|
+
var Heading_st_css_namespace_ = "wds_1_125_0_Heading";
|
|
41269
41351
|
var Heading_st_css_style_ = classesRuntime.bind(null, Heading_st_css_namespace_);
|
|
41270
41352
|
|
|
41271
41353
|
var Heading_st_css_cssStates = statesRuntime.bind(null, Heading_st_css_namespace_);
|
|
@@ -41273,7 +41355,7 @@ var Heading_st_css_style = (/* unused pure expression or super */ null && (Headi
|
|
|
41273
41355
|
var Heading_st_css_st = Heading_st_css_style_;
|
|
41274
41356
|
|
|
41275
41357
|
var Heading_st_css_namespace = (/* unused pure expression or super */ null && (Heading_st_css_namespace_));
|
|
41276
|
-
var Heading_st_css_classes = {"root":"
|
|
41358
|
+
var Heading_st_css_classes = {"root":"wds_1_125_0_Heading__root","heading-h1":"wds_1_125_0_StylableTypography__heading-h1","heading-h2":"wds_1_125_0_StylableTypography__heading-h2","heading-h3":"wds_1_125_0_StylableTypography__heading-h3","heading-h4":"wds_1_125_0_StylableTypography__heading-h4","heading-h5":"wds_1_125_0_StylableTypography__heading-h5","heading-h6":"wds_1_125_0_StylableTypography__heading-h6","heading-xl":"wds_1_125_0_StylableTypography__heading-xl","heading-l":"wds_1_125_0_StylableTypography__heading-l","heading-m":"wds_1_125_0_StylableTypography__heading-m","heading-s":"wds_1_125_0_StylableTypography__heading-s","heading-t":"wds_1_125_0_StylableTypography__heading-t","heading-xt":"wds_1_125_0_StylableTypography__heading-xt"};
|
|
41277
41359
|
var Heading_st_css_keyframes = {};
|
|
41278
41360
|
var Heading_st_css_layers = {};
|
|
41279
41361
|
var Heading_st_css_containers = {};
|
|
@@ -41426,7 +41508,7 @@ const SIZE_TO_ARC_ANGLE_MAP = {
|
|
|
41426
41508
|
|
|
41427
41509
|
|
|
41428
41510
|
|
|
41429
|
-
var Loader_st_css_namespace_ = "
|
|
41511
|
+
var Loader_st_css_namespace_ = "wds_1_125_0_Loader";
|
|
41430
41512
|
var Loader_st_css_style_ = classesRuntime.bind(null, Loader_st_css_namespace_);
|
|
41431
41513
|
|
|
41432
41514
|
var Loader_st_css_cssStates = statesRuntime.bind(null, Loader_st_css_namespace_);
|
|
@@ -41434,8 +41516,8 @@ var Loader_st_css_style = (/* unused pure expression or super */ null && (Loader
|
|
|
41434
41516
|
var Loader_st_css_st = Loader_st_css_style_;
|
|
41435
41517
|
|
|
41436
41518
|
var Loader_st_css_namespace = (/* unused pure expression or super */ null && (Loader_st_css_namespace_));
|
|
41437
|
-
var Loader_st_css_classes = {"root":"
|
|
41438
|
-
var Loader_st_css_keyframes = {"rotation":"
|
|
41519
|
+
var Loader_st_css_classes = {"root":"wds_1_125_0_Loader__root","statusIndicator":"wds_1_125_0_Loader__statusIndicator","arcsContainer":"wds_1_125_0_Loader__arcsContainer","darkArc":"wds_1_125_0_Loader__darkArc","lightArc":"wds_1_125_0_Loader__lightArc","text":"wds_1_125_0_Loader__text"};
|
|
41520
|
+
var Loader_st_css_keyframes = {"rotation":"wds_1_125_0_Loader__rotation","staggered-rotation":"wds_1_125_0_Loader__staggered-rotation"};
|
|
41439
41521
|
var Loader_st_css_layers = {};
|
|
41440
41522
|
var Loader_st_css_containers = {};
|
|
41441
41523
|
var Loader_st_css_stVars = {};
|
|
@@ -43227,7 +43309,7 @@ var he_default = /*#__PURE__*/__webpack_require__.n(he);
|
|
|
43227
43309
|
|
|
43228
43310
|
|
|
43229
43311
|
|
|
43230
|
-
var default_scroll_bar_st_css_namespace_ = "
|
|
43312
|
+
var default_scroll_bar_st_css_namespace_ = "wds_1_125_0_defaultscrollbar";
|
|
43231
43313
|
var default_scroll_bar_st_css_style_ = classesRuntime.bind(null, default_scroll_bar_st_css_namespace_);
|
|
43232
43314
|
|
|
43233
43315
|
var default_scroll_bar_st_css_cssStates = statesRuntime.bind(null, default_scroll_bar_st_css_namespace_);
|
|
@@ -43235,7 +43317,7 @@ var default_scroll_bar_st_css_style = (/* unused pure expression or super */ nul
|
|
|
43235
43317
|
var default_scroll_bar_st_css_st = (/* unused pure expression or super */ null && (default_scroll_bar_st_css_style_));
|
|
43236
43318
|
|
|
43237
43319
|
var default_scroll_bar_st_css_namespace = (/* unused pure expression or super */ null && (default_scroll_bar_st_css_namespace_));
|
|
43238
|
-
var default_scroll_bar_st_css_classes = {"root":"
|
|
43320
|
+
var default_scroll_bar_st_css_classes = {"root":"wds_1_125_0_defaultscrollbar__root","defaultScrollBar":"wds_1_125_0_defaultscrollbar__defaultScrollBar"};
|
|
43239
43321
|
var default_scroll_bar_st_css_keyframes = {};
|
|
43240
43322
|
var default_scroll_bar_st_css_layers = {};
|
|
43241
43323
|
var default_scroll_bar_st_css_containers = {};
|
|
@@ -43253,7 +43335,7 @@ var default_scroll_bar_st_css_vars = {"wds-scrollbar-fill":"--wds-scrollbar-fill
|
|
|
43253
43335
|
|
|
43254
43336
|
|
|
43255
43337
|
|
|
43256
|
-
var Box_st_css_namespace_ = "
|
|
43338
|
+
var Box_st_css_namespace_ = "wds_1_125_0_Box";
|
|
43257
43339
|
var Box_st_css_style_ = classesRuntime.bind(null, Box_st_css_namespace_);
|
|
43258
43340
|
|
|
43259
43341
|
var Box_st_css_cssStates = statesRuntime.bind(null, Box_st_css_namespace_);
|
|
@@ -43261,12 +43343,12 @@ var Box_st_css_style = (/* unused pure expression or super */ null && (Box_st_cs
|
|
|
43261
43343
|
var Box_st_css_st = Box_st_css_style_;
|
|
43262
43344
|
|
|
43263
43345
|
var Box_st_css_namespace = (/* unused pure expression or super */ null && (Box_st_css_namespace_));
|
|
43264
|
-
var Box_st_css_classes = {"root":"
|
|
43346
|
+
var Box_st_css_classes = {"root":"wds_1_125_0_Box__root","defaultScrollBar":"wds_1_125_0_defaultscrollbar__defaultScrollBar"};
|
|
43265
43347
|
var Box_st_css_keyframes = {};
|
|
43266
43348
|
var Box_st_css_layers = {};
|
|
43267
43349
|
var Box_st_css_containers = {};
|
|
43268
43350
|
var Box_st_css_stVars = {};
|
|
43269
|
-
var Box_st_css_vars = {"gap":"--
|
|
43351
|
+
var Box_st_css_vars = {"gap":"--wds_1_125_0_Box-gap"};
|
|
43270
43352
|
|
|
43271
43353
|
|
|
43272
43354
|
|
|
@@ -43279,7 +43361,7 @@ var Box_st_css_vars = {"gap":"--wds_1_123_0_Box-gap"};
|
|
|
43279
43361
|
|
|
43280
43362
|
|
|
43281
43363
|
|
|
43282
|
-
var spacing_st_css_namespace_ = "
|
|
43364
|
+
var spacing_st_css_namespace_ = "wds_1_125_0_spacing";
|
|
43283
43365
|
var spacing_st_css_style_ = classesRuntime.bind(null, spacing_st_css_namespace_);
|
|
43284
43366
|
|
|
43285
43367
|
var spacing_st_css_cssStates = statesRuntime.bind(null, spacing_st_css_namespace_);
|
|
@@ -43287,7 +43369,7 @@ var spacing_st_css_style = (/* unused pure expression or super */ null && (spaci
|
|
|
43287
43369
|
var spacing_st_css_st = (/* unused pure expression or super */ null && (spacing_st_css_style_));
|
|
43288
43370
|
|
|
43289
43371
|
var spacing_st_css_namespace = (/* unused pure expression or super */ null && (spacing_st_css_namespace_));
|
|
43290
|
-
var spacing_st_css_classes = {"root":"
|
|
43372
|
+
var spacing_st_css_classes = {"root":"wds_1_125_0_spacing__root"};
|
|
43291
43373
|
var spacing_st_css_keyframes = {};
|
|
43292
43374
|
var spacing_st_css_layers = {};
|
|
43293
43375
|
var spacing_st_css_containers = {};
|
|
@@ -43565,7 +43647,7 @@ const CheckboxChecked_o=({size:e,...h})=>external_React_.createElement("svg",{vi
|
|
|
43565
43647
|
|
|
43566
43648
|
|
|
43567
43649
|
|
|
43568
|
-
var Checkbox_st_css_namespace_ = "
|
|
43650
|
+
var Checkbox_st_css_namespace_ = "wds_1_125_0_Checkbox";
|
|
43569
43651
|
var Checkbox_st_css_style_ = classesRuntime.bind(null, Checkbox_st_css_namespace_);
|
|
43570
43652
|
|
|
43571
43653
|
var Checkbox_st_css_cssStates = statesRuntime.bind(null, Checkbox_st_css_namespace_);
|
|
@@ -43573,7 +43655,7 @@ var Checkbox_st_css_style = (/* unused pure expression or super */ null && (Chec
|
|
|
43573
43655
|
var Checkbox_st_css_st = Checkbox_st_css_style_;
|
|
43574
43656
|
|
|
43575
43657
|
var Checkbox_st_css_namespace = (/* unused pure expression or super */ null && (Checkbox_st_css_namespace_));
|
|
43576
|
-
var Checkbox_st_css_classes = {"root":"
|
|
43658
|
+
var Checkbox_st_css_classes = {"root":"wds_1_125_0_Checkbox__root","label":"wds_1_125_0_Checkbox__label","labelInner":"wds_1_125_0_Checkbox__labelInner","children":"wds_1_125_0_Checkbox__children","checkbox":"wds_1_125_0_Checkbox__checkbox","inner":"wds_1_125_0_Checkbox__inner","outer":"wds_1_125_0_Checkbox__outer"};
|
|
43577
43659
|
var Checkbox_st_css_keyframes = {};
|
|
43578
43660
|
var Checkbox_st_css_layers = {};
|
|
43579
43661
|
var Checkbox_st_css_containers = {};
|
|
@@ -43746,7 +43828,7 @@ var escapeRegExp_default = /*#__PURE__*/__webpack_require__.n(lodash_escapeRegEx
|
|
|
43746
43828
|
|
|
43747
43829
|
|
|
43748
43830
|
|
|
43749
|
-
var Highlighter_st_css_namespace_ = "
|
|
43831
|
+
var Highlighter_st_css_namespace_ = "wds_1_125_0_Highlighter";
|
|
43750
43832
|
var Highlighter_st_css_style_ = classesRuntime.bind(null, Highlighter_st_css_namespace_);
|
|
43751
43833
|
|
|
43752
43834
|
var Highlighter_st_css_cssStates = statesRuntime.bind(null, Highlighter_st_css_namespace_);
|
|
@@ -43754,7 +43836,7 @@ var Highlighter_st_css_style = (/* unused pure expression or super */ null && (H
|
|
|
43754
43836
|
var Highlighter_st_css_st = Highlighter_st_css_style_;
|
|
43755
43837
|
|
|
43756
43838
|
var Highlighter_st_css_namespace = (/* unused pure expression or super */ null && (Highlighter_st_css_namespace_));
|
|
43757
|
-
var Highlighter_st_css_classes = {"root":"
|
|
43839
|
+
var Highlighter_st_css_classes = {"root":"wds_1_125_0_Highlighter__root"};
|
|
43758
43840
|
var Highlighter_st_css_keyframes = {};
|
|
43759
43841
|
var Highlighter_st_css_layers = {};
|
|
43760
43842
|
var Highlighter_st_css_containers = {};
|
|
@@ -43947,7 +44029,7 @@ const ListItemSelect_constants_SIZES = {
|
|
|
43947
44029
|
|
|
43948
44030
|
|
|
43949
44031
|
|
|
43950
|
-
var ListItemSelect_st_css_namespace_ = "
|
|
44032
|
+
var ListItemSelect_st_css_namespace_ = "wds_1_125_0_ListItemSelect";
|
|
43951
44033
|
var ListItemSelect_st_css_style_ = classesRuntime.bind(null, ListItemSelect_st_css_namespace_);
|
|
43952
44034
|
|
|
43953
44035
|
var ListItemSelect_st_css_cssStates = statesRuntime.bind(null, ListItemSelect_st_css_namespace_);
|
|
@@ -43955,7 +44037,7 @@ var ListItemSelect_st_css_style = (/* unused pure expression or super */ null &&
|
|
|
43955
44037
|
var ListItemSelect_st_css_st = ListItemSelect_st_css_style_;
|
|
43956
44038
|
|
|
43957
44039
|
var ListItemSelect_st_css_namespace = (/* unused pure expression or super */ null && (ListItemSelect_st_css_namespace_));
|
|
43958
|
-
var ListItemSelect_st_css_classes = {"root":"
|
|
44040
|
+
var ListItemSelect_st_css_classes = {"root":"wds_1_125_0_ListItemSelect__root","mobile":"wds_1_125_0_WixDesignSystemProvider__mobile","fullWidthContent":"wds_1_125_0_ListItemSelect__fullWidthContent","textsWrapper":"wds_1_125_0_ListItemSelect__textsWrapper","titleWrapper":"wds_1_125_0_ListItemSelect__titleWrapper","title":"wds_1_125_0_ListItemSelect__title","prefix":"wds_1_125_0_ListItemSelect__prefix","suffix":"wds_1_125_0_ListItemSelect__suffix","subtitle":"wds_1_125_0_ListItemSelect__subtitle"};
|
|
43959
44041
|
var ListItemSelect_st_css_keyframes = {};
|
|
43960
44042
|
var ListItemSelect_st_css_layers = {};
|
|
43961
44043
|
var ListItemSelect_st_css_containers = {};
|
|
@@ -44060,7 +44142,7 @@ var sortBy_default = /*#__PURE__*/__webpack_require__.n(sortBy);
|
|
|
44060
44142
|
|
|
44061
44143
|
|
|
44062
44144
|
|
|
44063
|
-
var border_st_css_namespace_ = "
|
|
44145
|
+
var border_st_css_namespace_ = "wds_1_125_0_border";
|
|
44064
44146
|
var border_st_css_style_ = classesRuntime.bind(null, border_st_css_namespace_);
|
|
44065
44147
|
|
|
44066
44148
|
var border_st_css_cssStates = statesRuntime.bind(null, border_st_css_namespace_);
|
|
@@ -44068,7 +44150,7 @@ var border_st_css_style = (/* unused pure expression or super */ null && (border
|
|
|
44068
44150
|
var border_st_css_st = (/* unused pure expression or super */ null && (border_st_css_style_));
|
|
44069
44151
|
|
|
44070
44152
|
var border_st_css_namespace = (/* unused pure expression or super */ null && (border_st_css_namespace_));
|
|
44071
|
-
var border_st_css_classes = {"root":"
|
|
44153
|
+
var border_st_css_classes = {"root":"wds_1_125_0_border__root"};
|
|
44072
44154
|
var border_st_css_keyframes = {};
|
|
44073
44155
|
var border_st_css_layers = {};
|
|
44074
44156
|
var border_st_css_containers = {};
|
|
@@ -44091,7 +44173,7 @@ var border_st_css_vars = {"wsr-border-radius-02":"--wsr-border-radius-02","wsr-b
|
|
|
44091
44173
|
|
|
44092
44174
|
|
|
44093
44175
|
|
|
44094
|
-
var Input_st_css_namespace_ = "
|
|
44176
|
+
var Input_st_css_namespace_ = "wds_1_125_0_Input";
|
|
44095
44177
|
var Input_st_css_style_ = classesRuntime.bind(null, Input_st_css_namespace_);
|
|
44096
44178
|
|
|
44097
44179
|
var Input_st_css_cssStates = statesRuntime.bind(null, Input_st_css_namespace_);
|
|
@@ -44099,12 +44181,12 @@ var Input_st_css_style = (/* unused pure expression or super */ null && (Input_s
|
|
|
44099
44181
|
var Input_st_css_st = Input_st_css_style_;
|
|
44100
44182
|
|
|
44101
44183
|
var Input_st_css_namespace = (/* unused pure expression or super */ null && (Input_st_css_namespace_));
|
|
44102
|
-
var Input_st_css_classes = {"root":"
|
|
44184
|
+
var Input_st_css_classes = {"root":"wds_1_125_0_Input__root","text-tiny-thin":"wds_1_125_0_StylableTypography__text-tiny-thin","text-small-thin":"wds_1_125_0_StylableTypography__text-small-thin","text-medium-thin":"wds_1_125_0_StylableTypography__text-medium-thin","wrapper":"wds_1_125_0_Input__wrapper","input":"wds_1_125_0_Input__input","disabled":"wds_1_125_0_Input__disabled","readOnly":"wds_1_125_0_Input__readOnly","suffixes":"wds_1_125_0_Input__suffixes","suffix":"wds_1_125_0_Input__suffix","statusWrapper":"wds_1_125_0_Input__statusWrapper","clearButtonWrapper":"wds_1_125_0_Input__clearButtonWrapper","menuArrow":"wds_1_125_0_Input__menuArrow","clearButton":"wds_1_125_0_Input__clearButton"};
|
|
44103
44185
|
var Input_st_css_keyframes = {};
|
|
44104
44186
|
var Input_st_css_layers = {};
|
|
44105
44187
|
var Input_st_css_containers = {};
|
|
44106
44188
|
var Input_st_css_stVars = {};
|
|
44107
|
-
var Input_st_css_vars = {"wds-color-border-destructive-secondary-active":"--wds-color-border-destructive-secondary-active","wds-color-border-destructive-secondary-hover":"--wds-color-border-destructive-secondary-hover","wds-color-border-destructive-tertiary-hover":"--wds-color-border-destructive-tertiary-hover","wds-color-border-standard-secondary":"--wds-color-border-standard-secondary","wds-color-border-standard-secondary-active":"--wds-color-border-standard-secondary-active","wds-color-border-standard-secondary-disabled":"--wds-color-border-standard-secondary-disabled","wds-color-border-standard-secondary-hover":"--wds-color-border-standard-secondary-hover","wds-color-border-standard-secondary-readonly":"--wds-color-border-standard-secondary-readonly","wds-color-border-warning-secondary-active":"--wds-color-border-warning-secondary-active","wds-color-border-warning-secondary-hover":"--wds-color-border-warning-secondary-hover","wds-color-border-warning-tertiary-hover":"--wds-color-border-warning-tertiary-hover","wds-color-fill-standard-secondary":"--wds-color-fill-standard-secondary","wds-color-fill-standard-tertiary":"--wds-color-fill-standard-tertiary","wds-color-fill-standard-tertiary-disabled":"--wds-color-fill-standard-tertiary-disabled","wds-color-fill-standard-tertiary-hover":"--wds-color-fill-standard-tertiary-hover","wds-color-fill-standard-tertiary-readonly":"--wds-color-fill-standard-tertiary-readonly","wds-color-text-disabled":"--wds-color-text-disabled","wds-color-text-placeholder":"--wds-color-text-placeholder","wds-color-text-primary":"--wds-color-text-primary","wds-color-text-standard-primary":"--wds-color-text-standard-primary","wds-input-border-radius-default-tiny":"--wds-input-border-radius-default-tiny","wds-input-border-radius-default-small":"--wds-input-border-radius-default-small","wds-input-border-radius-default-medium":"--wds-input-border-radius-default-medium","wds-input-border-radius-default-large":"--wds-input-border-radius-default-large","wds-input-border-radius-round-tiny":"--wds-input-border-radius-round-tiny","wds-input-border-radius-round-small":"--wds-input-border-radius-round-small","wds-input-border-radius-round-medium":"--wds-input-border-radius-round-medium","wds-input-border-radius-round-large":"--wds-input-border-radius-round-large","wds-input-padding-horizontal-large":"--wds-input-padding-horizontal-large","wds-input-padding-horizontal-medium":"--wds-input-padding-horizontal-medium","wds-input-padding-horizontal-small":"--wds-input-padding-horizontal-small","wds-input-padding-horizontal-tiny":"--wds-input-padding-horizontal-tiny","wds-input-padding-vertical-large":"--wds-input-padding-vertical-large","wds-input-padding-vertical-medium":"--wds-input-padding-vertical-medium","wds-input-padding-vertical-small":"--wds-input-padding-vertical-small","wds-input-padding-vertical-tiny":"--wds-input-padding-vertical-tiny","wds-input-size-large":"--wds-input-size-large","wds-input-size-medium":"--wds-input-size-medium","wds-input-size-small":"--wds-input-size-small","wds-input-size-tiny":"--wds-input-size-tiny","wds-input-value-font-line-height-tiny":"--wds-input-value-font-line-height-tiny","wds-input-value-font-line-height-small":"--wds-input-value-font-line-height-small","wds-input-value-font-line-height-medium":"--wds-input-value-font-line-height-medium","wds-input-value-font-line-height-large":"--wds-input-value-font-line-height-large","wds-input-value-font-size-tiny":"--wds-input-value-font-size-tiny","wds-input-value-font-size-small":"--wds-input-value-font-size-small","wds-input-value-font-size-medium":"--wds-input-value-font-size-medium","wds-input-value-font-size-large":"--wds-input-value-font-size-large","wds-shadow-focus-destructive":"--wds-shadow-focus-destructive","wds-shadow-focus-standard":"--wds-shadow-focus-standard","wds-shadow-focus-warning":"--wds-shadow-focus-warning","wds-space-0":"--wds-space-0","wds-space-50":"--wds-space-50","wds-space-100":"--wds-space-100","border-color-hover":"--
|
|
44189
|
+
var Input_st_css_vars = {"wds-color-border-destructive-secondary-active":"--wds-color-border-destructive-secondary-active","wds-color-border-destructive-secondary-hover":"--wds-color-border-destructive-secondary-hover","wds-color-border-destructive-tertiary-hover":"--wds-color-border-destructive-tertiary-hover","wds-color-border-standard-secondary":"--wds-color-border-standard-secondary","wds-color-border-standard-secondary-active":"--wds-color-border-standard-secondary-active","wds-color-border-standard-secondary-disabled":"--wds-color-border-standard-secondary-disabled","wds-color-border-standard-secondary-hover":"--wds-color-border-standard-secondary-hover","wds-color-border-standard-secondary-readonly":"--wds-color-border-standard-secondary-readonly","wds-color-border-warning-secondary-active":"--wds-color-border-warning-secondary-active","wds-color-border-warning-secondary-hover":"--wds-color-border-warning-secondary-hover","wds-color-border-warning-tertiary-hover":"--wds-color-border-warning-tertiary-hover","wds-color-fill-standard-secondary":"--wds-color-fill-standard-secondary","wds-color-fill-standard-tertiary":"--wds-color-fill-standard-tertiary","wds-color-fill-standard-tertiary-disabled":"--wds-color-fill-standard-tertiary-disabled","wds-color-fill-standard-tertiary-hover":"--wds-color-fill-standard-tertiary-hover","wds-color-fill-standard-tertiary-readonly":"--wds-color-fill-standard-tertiary-readonly","wds-color-text-disabled":"--wds-color-text-disabled","wds-color-text-placeholder":"--wds-color-text-placeholder","wds-color-text-primary":"--wds-color-text-primary","wds-color-text-standard-primary":"--wds-color-text-standard-primary","wds-input-border-radius-default-tiny":"--wds-input-border-radius-default-tiny","wds-input-border-radius-default-small":"--wds-input-border-radius-default-small","wds-input-border-radius-default-medium":"--wds-input-border-radius-default-medium","wds-input-border-radius-default-large":"--wds-input-border-radius-default-large","wds-input-border-radius-round-tiny":"--wds-input-border-radius-round-tiny","wds-input-border-radius-round-small":"--wds-input-border-radius-round-small","wds-input-border-radius-round-medium":"--wds-input-border-radius-round-medium","wds-input-border-radius-round-large":"--wds-input-border-radius-round-large","wds-input-padding-horizontal-large":"--wds-input-padding-horizontal-large","wds-input-padding-horizontal-medium":"--wds-input-padding-horizontal-medium","wds-input-padding-horizontal-small":"--wds-input-padding-horizontal-small","wds-input-padding-horizontal-tiny":"--wds-input-padding-horizontal-tiny","wds-input-padding-vertical-large":"--wds-input-padding-vertical-large","wds-input-padding-vertical-medium":"--wds-input-padding-vertical-medium","wds-input-padding-vertical-small":"--wds-input-padding-vertical-small","wds-input-padding-vertical-tiny":"--wds-input-padding-vertical-tiny","wds-input-size-large":"--wds-input-size-large","wds-input-size-medium":"--wds-input-size-medium","wds-input-size-small":"--wds-input-size-small","wds-input-size-tiny":"--wds-input-size-tiny","wds-input-value-font-line-height-tiny":"--wds-input-value-font-line-height-tiny","wds-input-value-font-line-height-small":"--wds-input-value-font-line-height-small","wds-input-value-font-line-height-medium":"--wds-input-value-font-line-height-medium","wds-input-value-font-line-height-large":"--wds-input-value-font-line-height-large","wds-input-value-font-size-tiny":"--wds-input-value-font-size-tiny","wds-input-value-font-size-small":"--wds-input-value-font-size-small","wds-input-value-font-size-medium":"--wds-input-value-font-size-medium","wds-input-value-font-size-large":"--wds-input-value-font-size-large","wds-shadow-focus-destructive":"--wds-shadow-focus-destructive","wds-shadow-focus-standard":"--wds-shadow-focus-standard","wds-shadow-focus-warning":"--wds-shadow-focus-warning","wds-space-0":"--wds-space-0","wds-space-50":"--wds-space-50","wds-space-100":"--wds-space-100","border-color-hover":"--wds_1_125_0_Input-border-color-hover","border-color-hover-destructive":"--wds_1_125_0_Input-border-color-hover-destructive","border-color-hover-warning":"--wds_1_125_0_Input-border-color-hover-warning"};
|
|
44108
44190
|
|
|
44109
44191
|
|
|
44110
44192
|
|
|
@@ -44159,7 +44241,7 @@ const FormFieldSpinnerDown_n=({size:e,...o})=>external_React_.createElement("svg
|
|
|
44159
44241
|
|
|
44160
44242
|
|
|
44161
44243
|
|
|
44162
|
-
var Ticker_st_css_namespace_ = "
|
|
44244
|
+
var Ticker_st_css_namespace_ = "wds_1_125_0_Ticker";
|
|
44163
44245
|
var Ticker_st_css_style_ = classesRuntime.bind(null, Ticker_st_css_namespace_);
|
|
44164
44246
|
|
|
44165
44247
|
var Ticker_st_css_cssStates = statesRuntime.bind(null, Ticker_st_css_namespace_);
|
|
@@ -44167,7 +44249,7 @@ var Ticker_st_css_style = (/* unused pure expression or super */ null && (Ticker
|
|
|
44167
44249
|
var Ticker_st_css_st = Ticker_st_css_style_;
|
|
44168
44250
|
|
|
44169
44251
|
var Ticker_st_css_namespace = (/* unused pure expression or super */ null && (Ticker_st_css_namespace_));
|
|
44170
|
-
var Ticker_st_css_classes = {"root":"
|
|
44252
|
+
var Ticker_st_css_classes = {"root":"wds_1_125_0_Ticker__root","up":"wds_1_125_0_Ticker__up","down":"wds_1_125_0_Ticker__down"};
|
|
44171
44253
|
var Ticker_st_css_keyframes = {};
|
|
44172
44254
|
var Ticker_st_css_layers = {};
|
|
44173
44255
|
var Ticker_st_css_containers = {};
|
|
@@ -44241,7 +44323,7 @@ Ticker.propTypes = {
|
|
|
44241
44323
|
|
|
44242
44324
|
|
|
44243
44325
|
|
|
44244
|
-
var IconAffix_st_css_namespace_ = "
|
|
44326
|
+
var IconAffix_st_css_namespace_ = "wds_1_125_0_IconAffix";
|
|
44245
44327
|
var IconAffix_st_css_style_ = classesRuntime.bind(null, IconAffix_st_css_namespace_);
|
|
44246
44328
|
|
|
44247
44329
|
var IconAffix_st_css_cssStates = statesRuntime.bind(null, IconAffix_st_css_namespace_);
|
|
@@ -44249,7 +44331,7 @@ var IconAffix_st_css_style = (/* unused pure expression or super */ null && (Ico
|
|
|
44249
44331
|
var IconAffix_st_css_st = IconAffix_st_css_style_;
|
|
44250
44332
|
|
|
44251
44333
|
var IconAffix_st_css_namespace = (/* unused pure expression or super */ null && (IconAffix_st_css_namespace_));
|
|
44252
|
-
var IconAffix_st_css_classes = {"root":"
|
|
44334
|
+
var IconAffix_st_css_classes = {"root":"wds_1_125_0_IconAffix__root"};
|
|
44253
44335
|
var IconAffix_st_css_keyframes = {};
|
|
44254
44336
|
var IconAffix_st_css_layers = {};
|
|
44255
44337
|
var IconAffix_st_css_containers = {};
|
|
@@ -44290,7 +44372,7 @@ IconAffix.propTypes = {
|
|
|
44290
44372
|
|
|
44291
44373
|
|
|
44292
44374
|
|
|
44293
|
-
var Affix_st_css_namespace_ = "
|
|
44375
|
+
var Affix_st_css_namespace_ = "wds_1_125_0_Affix";
|
|
44294
44376
|
var Affix_st_css_style_ = classesRuntime.bind(null, Affix_st_css_namespace_);
|
|
44295
44377
|
|
|
44296
44378
|
var Affix_st_css_cssStates = statesRuntime.bind(null, Affix_st_css_namespace_);
|
|
@@ -44298,7 +44380,7 @@ var Affix_st_css_style = (/* unused pure expression or super */ null && (Affix_s
|
|
|
44298
44380
|
var Affix_st_css_st = Affix_st_css_style_;
|
|
44299
44381
|
|
|
44300
44382
|
var Affix_st_css_namespace = (/* unused pure expression or super */ null && (Affix_st_css_namespace_));
|
|
44301
|
-
var Affix_st_css_classes = {"root":"
|
|
44383
|
+
var Affix_st_css_classes = {"root":"wds_1_125_0_Affix__root","text-tiny-thin":"wds_1_125_0_StylableTypography__text-tiny-thin","text-small-normal":"wds_1_125_0_StylableTypography__text-small-normal","text-small-thin":"wds_1_125_0_StylableTypography__text-small-thin","text-medium-normal":"wds_1_125_0_StylableTypography__text-medium-normal","text-medium-thin":"wds_1_125_0_StylableTypography__text-medium-thin"};
|
|
44302
44384
|
var Affix_st_css_keyframes = {};
|
|
44303
44385
|
var Affix_st_css_layers = {};
|
|
44304
44386
|
var Affix_st_css_containers = {};
|
|
@@ -44335,7 +44417,7 @@ Affix.propTypes = {
|
|
|
44335
44417
|
|
|
44336
44418
|
|
|
44337
44419
|
|
|
44338
|
-
var Group_st_css_namespace_ = "
|
|
44420
|
+
var Group_st_css_namespace_ = "wds_1_125_0_Group";
|
|
44339
44421
|
var Group_st_css_style_ = classesRuntime.bind(null, Group_st_css_namespace_);
|
|
44340
44422
|
|
|
44341
44423
|
var Group_st_css_cssStates = statesRuntime.bind(null, Group_st_css_namespace_);
|
|
@@ -44343,7 +44425,7 @@ var Group_st_css_style = (/* unused pure expression or super */ null && (Group_s
|
|
|
44343
44425
|
var Group_st_css_st = (/* unused pure expression or super */ null && (Group_st_css_style_));
|
|
44344
44426
|
|
|
44345
44427
|
var Group_st_css_namespace = (/* unused pure expression or super */ null && (Group_st_css_namespace_));
|
|
44346
|
-
var Group_st_css_classes = {"root":"
|
|
44428
|
+
var Group_st_css_classes = {"root":"wds_1_125_0_Group__root"};
|
|
44347
44429
|
var Group_st_css_keyframes = {};
|
|
44348
44430
|
var Group_st_css_layers = {};
|
|
44349
44431
|
var Group_st_css_containers = {};
|
|
@@ -44376,7 +44458,7 @@ const DropDownArrow_t=({size:r,...e})=>external_React_.createElement("svg",{view
|
|
|
44376
44458
|
|
|
44377
44459
|
|
|
44378
44460
|
|
|
44379
|
-
var StatusIndicator_st_css_namespace_ = "
|
|
44461
|
+
var StatusIndicator_st_css_namespace_ = "wds_1_125_0_StatusIndicator";
|
|
44380
44462
|
var StatusIndicator_st_css_style_ = classesRuntime.bind(null, StatusIndicator_st_css_namespace_);
|
|
44381
44463
|
|
|
44382
44464
|
var StatusIndicator_st_css_cssStates = statesRuntime.bind(null, StatusIndicator_st_css_namespace_);
|
|
@@ -44384,7 +44466,7 @@ var StatusIndicator_st_css_style = (/* unused pure expression or super */ null &
|
|
|
44384
44466
|
var StatusIndicator_st_css_st = StatusIndicator_st_css_style_;
|
|
44385
44467
|
|
|
44386
44468
|
var StatusIndicator_st_css_namespace = (/* unused pure expression or super */ null && (StatusIndicator_st_css_namespace_));
|
|
44387
|
-
var StatusIndicator_st_css_classes = {"root":"
|
|
44469
|
+
var StatusIndicator_st_css_classes = {"root":"wds_1_125_0_StatusIndicator__root"};
|
|
44388
44470
|
var StatusIndicator_st_css_keyframes = {};
|
|
44389
44471
|
var StatusIndicator_st_css_layers = {};
|
|
44390
44472
|
var StatusIndicator_st_css_containers = {};
|
|
@@ -45196,7 +45278,7 @@ const DROPDOWN_LAYOUT_DIRECTIONS = {
|
|
|
45196
45278
|
|
|
45197
45279
|
|
|
45198
45280
|
|
|
45199
|
-
var DropdownLayout_st_css_namespace_ = "
|
|
45281
|
+
var DropdownLayout_st_css_namespace_ = "wds_1_125_0_DropdownLayout";
|
|
45200
45282
|
var DropdownLayout_st_css_style_ = classesRuntime.bind(null, DropdownLayout_st_css_namespace_);
|
|
45201
45283
|
|
|
45202
45284
|
var DropdownLayout_st_css_cssStates = statesRuntime.bind(null, DropdownLayout_st_css_namespace_);
|
|
@@ -45204,7 +45286,7 @@ var DropdownLayout_st_css_style = (/* unused pure expression or super */ null &&
|
|
|
45204
45286
|
var DropdownLayout_st_css_st = DropdownLayout_st_css_style_;
|
|
45205
45287
|
|
|
45206
45288
|
var DropdownLayout_st_css_namespace = (/* unused pure expression or super */ null && (DropdownLayout_st_css_namespace_));
|
|
45207
|
-
var DropdownLayout_st_css_classes = {"root":"
|
|
45289
|
+
var DropdownLayout_st_css_classes = {"root":"wds_1_125_0_DropdownLayout__root","heading-h6":"wds_1_125_0_StylableTypography__heading-h6","text-medium-normal":"wds_1_125_0_StylableTypography__text-medium-normal","defaultScrollBar":"wds_1_125_0_defaultscrollbar__defaultScrollBar","contentContainer":"wds_1_125_0_DropdownLayout__contentContainer","options":"wds_1_125_0_DropdownLayout__options","optionsContent":"wds_1_125_0_DropdownLayout__optionsContent","option":"wds_1_125_0_DropdownLayout__option","selectableOption":"wds_1_125_0_DropdownLayout__selectableOption","arrow":"wds_1_125_0_DropdownLayout__arrow","loader":"wds_1_125_0_DropdownLayout__loader","linkItem":"wds_1_125_0_DropdownLayout__linkItem"};
|
|
45208
45290
|
var DropdownLayout_st_css_keyframes = {};
|
|
45209
45291
|
var DropdownLayout_st_css_layers = {};
|
|
45210
45292
|
var DropdownLayout_st_css_containers = {};
|
|
@@ -45216,7 +45298,7 @@ var DropdownLayout_st_css_vars = {"wds-input-value-font-size-medium":"--wds-inpu
|
|
|
45216
45298
|
|
|
45217
45299
|
|
|
45218
45300
|
;// CONCATENATED MODULE: ../../../node_modules/@wix/design-system/dist/esm/utils/StringUtils.js
|
|
45219
|
-
const isString = a => typeof a === 'string';
|
|
45301
|
+
const isString = (a) => typeof a === 'string';
|
|
45220
45302
|
/**
|
|
45221
45303
|
* a includes b (with case insensitive matching)
|
|
45222
45304
|
*/
|
|
@@ -45249,7 +45331,7 @@ const ListItemSection_constants_TYPES = {
|
|
|
45249
45331
|
|
|
45250
45332
|
|
|
45251
45333
|
|
|
45252
|
-
var ListItemSection_st_css_namespace_ = "
|
|
45334
|
+
var ListItemSection_st_css_namespace_ = "wds_1_125_0_ListItemSection";
|
|
45253
45335
|
var ListItemSection_st_css_style_ = classesRuntime.bind(null, ListItemSection_st_css_namespace_);
|
|
45254
45336
|
|
|
45255
45337
|
var ListItemSection_st_css_cssStates = statesRuntime.bind(null, ListItemSection_st_css_namespace_);
|
|
@@ -45257,7 +45339,7 @@ var ListItemSection_st_css_style = (/* unused pure expression or super */ null &
|
|
|
45257
45339
|
var ListItemSection_st_css_st = ListItemSection_st_css_style_;
|
|
45258
45340
|
|
|
45259
45341
|
var ListItemSection_st_css_namespace = (/* unused pure expression or super */ null && (ListItemSection_st_css_namespace_));
|
|
45260
|
-
var ListItemSection_st_css_classes = {"root":"
|
|
45342
|
+
var ListItemSection_st_css_classes = {"root":"wds_1_125_0_ListItemSection__root","title":"wds_1_125_0_ListItemSection__title","titleWrapper":"wds_1_125_0_ListItemSection__titleWrapper","suffixWrapper":"wds_1_125_0_ListItemSection__suffixWrapper","suffix":"wds_1_125_0_ListItemSection__suffix"};
|
|
45261
45343
|
var ListItemSection_st_css_keyframes = {};
|
|
45262
45344
|
var ListItemSection_st_css_layers = {};
|
|
45263
45345
|
var ListItemSection_st_css_containers = {};
|
|
@@ -46067,7 +46149,7 @@ const useFocusRing = () => {
|
|
|
46067
46149
|
|
|
46068
46150
|
|
|
46069
46151
|
|
|
46070
|
-
var ListItemAction_st_css_namespace_ = "
|
|
46152
|
+
var ListItemAction_st_css_namespace_ = "wds_1_125_0_ListItemAction";
|
|
46071
46153
|
var ListItemAction_st_css_style_ = classesRuntime.bind(null, ListItemAction_st_css_namespace_);
|
|
46072
46154
|
|
|
46073
46155
|
var ListItemAction_st_css_cssStates = statesRuntime.bind(null, ListItemAction_st_css_namespace_);
|
|
@@ -46075,7 +46157,7 @@ var ListItemAction_st_css_style = (/* unused pure expression or super */ null &&
|
|
|
46075
46157
|
var ListItemAction_st_css_st = ListItemAction_st_css_style_;
|
|
46076
46158
|
|
|
46077
46159
|
var ListItemAction_st_css_namespace = (/* unused pure expression or super */ null && (ListItemAction_st_css_namespace_));
|
|
46078
|
-
var ListItemAction_st_css_classes = {"root":"
|
|
46160
|
+
var ListItemAction_st_css_classes = {"root":"wds_1_125_0_ListItemAction__root","mobile":"wds_1_125_0_WixDesignSystemProvider__mobile","prefixIcon":"wds_1_125_0_ListItemAction__prefixIcon","textBox":"wds_1_125_0_ListItemAction__textBox","text":"wds_1_125_0_ListItemAction__text","subtitle":"wds_1_125_0_ListItemAction__subtitle","suffixBox":"wds_1_125_0_ListItemAction__suffixBox","suffix":"wds_1_125_0_ListItemAction__suffix","suffixIcon":"wds_1_125_0_ListItemAction__suffixIcon"};
|
|
46079
46161
|
var ListItemAction_st_css_keyframes = {};
|
|
46080
46162
|
var ListItemAction_st_css_layers = {};
|
|
46081
46163
|
var ListItemAction_st_css_containers = {};
|
|
@@ -49074,7 +49156,7 @@ OverlayScrollbars.env = () => {
|
|
|
49074
49156
|
|
|
49075
49157
|
|
|
49076
49158
|
|
|
49077
|
-
var useOverlayScrollbar_initialization_st_css_namespace_ = "
|
|
49159
|
+
var useOverlayScrollbar_initialization_st_css_namespace_ = "wds_1_125_0_useOverlayScrollbarinitialization";
|
|
49078
49160
|
var useOverlayScrollbar_initialization_st_css_style_ = classesRuntime.bind(null, useOverlayScrollbar_initialization_st_css_namespace_);
|
|
49079
49161
|
|
|
49080
49162
|
var useOverlayScrollbar_initialization_st_css_cssStates = statesRuntime.bind(null, useOverlayScrollbar_initialization_st_css_namespace_);
|
|
@@ -49082,8 +49164,8 @@ var useOverlayScrollbar_initialization_st_css_style = (/* unused pure expression
|
|
|
49082
49164
|
var useOverlayScrollbar_initialization_st_css_st = (/* unused pure expression or super */ null && (useOverlayScrollbar_initialization_st_css_style_));
|
|
49083
49165
|
|
|
49084
49166
|
var useOverlayScrollbar_initialization_st_css_namespace = (/* unused pure expression or super */ null && (useOverlayScrollbar_initialization_st_css_namespace_));
|
|
49085
|
-
var useOverlayScrollbar_initialization_st_css_classes = {"root":"
|
|
49086
|
-
var useOverlayScrollbar_initialization_st_css_keyframes = {"os-size-observer-appear-animation":"
|
|
49167
|
+
var useOverlayScrollbar_initialization_st_css_classes = {"root":"wds_1_125_0_useOverlayScrollbarinitialization__root"};
|
|
49168
|
+
var useOverlayScrollbar_initialization_st_css_keyframes = {"os-size-observer-appear-animation":"wds_1_125_0_useOverlayScrollbarinitialization__os-size-observer-appear-animation"};
|
|
49087
49169
|
var useOverlayScrollbar_initialization_st_css_layers = {};
|
|
49088
49170
|
var useOverlayScrollbar_initialization_st_css_containers = {};
|
|
49089
49171
|
var useOverlayScrollbar_initialization_st_css_stVars = {};
|
|
@@ -49102,7 +49184,7 @@ var useOverlayScrollbar_initialization_st_css_vars = {"os-vaw":"--os-vaw","os-va
|
|
|
49102
49184
|
|
|
49103
49185
|
|
|
49104
49186
|
|
|
49105
|
-
var useOverlayScrollbar_st_css_namespace_ = "
|
|
49187
|
+
var useOverlayScrollbar_st_css_namespace_ = "wds_1_125_0_useOverlayScrollbar";
|
|
49106
49188
|
var useOverlayScrollbar_st_css_style_ = classesRuntime.bind(null, useOverlayScrollbar_st_css_namespace_);
|
|
49107
49189
|
|
|
49108
49190
|
var useOverlayScrollbar_st_css_cssStates = statesRuntime.bind(null, useOverlayScrollbar_st_css_namespace_);
|
|
@@ -49110,7 +49192,7 @@ var useOverlayScrollbar_st_css_style = (/* unused pure expression or super */ nu
|
|
|
49110
49192
|
var useOverlayScrollbar_st_css_st = useOverlayScrollbar_st_css_style_;
|
|
49111
49193
|
|
|
49112
49194
|
var useOverlayScrollbar_st_css_namespace = (/* unused pure expression or super */ null && (useOverlayScrollbar_st_css_namespace_));
|
|
49113
|
-
var useOverlayScrollbar_st_css_classes = {"root":"
|
|
49195
|
+
var useOverlayScrollbar_st_css_classes = {"root":"wds_1_125_0_useOverlayScrollbar__root"};
|
|
49114
49196
|
var useOverlayScrollbar_st_css_keyframes = {};
|
|
49115
49197
|
var useOverlayScrollbar_st_css_layers = {};
|
|
49116
49198
|
var useOverlayScrollbar_st_css_containers = {};
|
|
@@ -49247,30 +49329,36 @@ const DIVIDER_OPTION_VALUE = '-';
|
|
|
49247
49329
|
|
|
49248
49330
|
|
|
49249
49331
|
const modulus = (n, m) => ((n % m) + m) % m;
|
|
49250
|
-
const DropdownLayout_getUnit = value =>
|
|
49251
|
-
class DropdownLayout extends
|
|
49332
|
+
const DropdownLayout_getUnit = (value) => isString(value) ? value : `${value}px`;
|
|
49333
|
+
class DropdownLayout extends external_React_.PureComponent {
|
|
49252
49334
|
constructor(props) {
|
|
49253
49335
|
super(props);
|
|
49254
|
-
this.setScrollElement = node => {
|
|
49336
|
+
this.setScrollElement = (node) => {
|
|
49255
49337
|
this.setState({ scrollElement: node });
|
|
49256
49338
|
};
|
|
49339
|
+
this.containerRef = external_React_default().createRef();
|
|
49340
|
+
this.optionsRef = external_React_default().createRef();
|
|
49341
|
+
this.loadedWithUndefinedOptions = false;
|
|
49342
|
+
this._boundEvents = [];
|
|
49257
49343
|
this.focusableItemsIdsList = [];
|
|
49258
49344
|
this.savedOnClicks = [];
|
|
49259
49345
|
this.children = {};
|
|
49346
|
+
this.selectedOption = null;
|
|
49260
49347
|
// Deprecated
|
|
49261
|
-
this._onMouseEventsHandler = e => {
|
|
49348
|
+
this._onMouseEventsHandler = (e) => {
|
|
49262
49349
|
if (!this._checkIfEventOnElements(e, [external_ReactDOM_default().findDOMNode(this)])) {
|
|
49263
49350
|
this._onClickOutside(e);
|
|
49264
49351
|
}
|
|
49265
49352
|
};
|
|
49266
|
-
this._onClickOutside = event => {
|
|
49353
|
+
this._onClickOutside = (event) => {
|
|
49267
49354
|
const { visible, onClickOutside } = this.props;
|
|
49268
49355
|
if (visible && onClickOutside) {
|
|
49269
49356
|
onClickOutside(event);
|
|
49270
49357
|
}
|
|
49271
49358
|
};
|
|
49272
49359
|
this._onSelect = (index, e) => {
|
|
49273
|
-
const {
|
|
49360
|
+
const { onSelect, listType } = this.props;
|
|
49361
|
+
const options = this.props.options || [];
|
|
49274
49362
|
if (listType !== ListType.select) {
|
|
49275
49363
|
e.stopPropagation();
|
|
49276
49364
|
this._onClose();
|
|
@@ -49281,7 +49369,9 @@ class DropdownLayout extends (external_React_default()).PureComponent {
|
|
|
49281
49369
|
const sameOptionWasPicked = chosenOption.id === this.state.selectedId;
|
|
49282
49370
|
if (onSelect) {
|
|
49283
49371
|
e.stopPropagation();
|
|
49284
|
-
onSelect(
|
|
49372
|
+
onSelect(
|
|
49373
|
+
// casting to avoid breaking changes after TS conversion
|
|
49374
|
+
chosenOption, sameOptionWasPicked);
|
|
49285
49375
|
}
|
|
49286
49376
|
}
|
|
49287
49377
|
if (!this._isControlled()) {
|
|
@@ -49289,24 +49379,30 @@ class DropdownLayout extends (external_React_default()).PureComponent {
|
|
|
49289
49379
|
}
|
|
49290
49380
|
return !!onSelect && chosenOption;
|
|
49291
49381
|
};
|
|
49292
|
-
this._onActionClick = e => {
|
|
49293
|
-
const onClick = this.savedOnClicks.find(({ id }) => id === e.id)
|
|
49382
|
+
this._onActionClick = (e) => {
|
|
49383
|
+
const onClick = this.savedOnClicks.find(({ id }) => id === e.id)?.onClick;
|
|
49294
49384
|
onClick && onClick(e);
|
|
49295
49385
|
};
|
|
49296
49386
|
this._saveOnClicks = () => {
|
|
49297
|
-
|
|
49387
|
+
const options = this.props.options || [];
|
|
49388
|
+
this.savedOnClicks = options.map(({ id,
|
|
49389
|
+
// only builder options have onClick
|
|
49390
|
+
// @ts-expect-error
|
|
49391
|
+
onClick, }) => ({
|
|
49298
49392
|
id,
|
|
49299
49393
|
onClick,
|
|
49300
49394
|
}));
|
|
49301
49395
|
};
|
|
49302
|
-
this._onMouseEnter = index => {
|
|
49303
|
-
|
|
49396
|
+
this._onMouseEnter = (index) => {
|
|
49397
|
+
const options = this.props.options || [];
|
|
49398
|
+
if (this._isSelectableOption(options[index])) {
|
|
49304
49399
|
this._markOption(index);
|
|
49305
49400
|
}
|
|
49306
49401
|
};
|
|
49307
49402
|
this._onMouseLeave = () => this._markOption(DropdownLayout_constants_NOT_HOVERED_INDEX);
|
|
49308
49403
|
this._focusOnOption = () => {
|
|
49309
|
-
const { focusOnOption
|
|
49404
|
+
const { focusOnOption } = this.props;
|
|
49405
|
+
const options = this.props.options || [];
|
|
49310
49406
|
const markedIndex = options.findIndex(option => option.id === focusOnOption);
|
|
49311
49407
|
if (markedIndex !== -1) {
|
|
49312
49408
|
this._markOptionAtIndex(markedIndex);
|
|
@@ -49316,16 +49412,16 @@ class DropdownLayout extends (external_React_default()).PureComponent {
|
|
|
49316
49412
|
this._markOption(markedIndex);
|
|
49317
49413
|
}
|
|
49318
49414
|
};
|
|
49319
|
-
this._markOptionAtIndex = markedIndex => {
|
|
49415
|
+
this._markOptionAtIndex = (markedIndex) => {
|
|
49320
49416
|
this._markOption(markedIndex);
|
|
49321
49417
|
this._scrollIntoViewByIndex(markedIndex);
|
|
49322
49418
|
};
|
|
49323
|
-
this._scrollIntoViewByIndex = index => {
|
|
49419
|
+
this._scrollIntoViewByIndex = (index) => {
|
|
49324
49420
|
const { infiniteScroll } = this.props;
|
|
49325
49421
|
const menuElement = this.optionsRef.current;
|
|
49326
49422
|
const hoveredElement = infiniteScroll
|
|
49327
|
-
? this.optionsRef.current
|
|
49328
|
-
: this.optionsRef.current
|
|
49423
|
+
? this.optionsRef.current?.childNodes[0].childNodes[index]
|
|
49424
|
+
: this.optionsRef.current?.childNodes[index];
|
|
49329
49425
|
scrollIntoView(menuElement, hoveredElement);
|
|
49330
49426
|
};
|
|
49331
49427
|
/**
|
|
@@ -49334,8 +49430,10 @@ class DropdownLayout extends (external_React_default()).PureComponent {
|
|
|
49334
49430
|
* @param {SyntheticEvent} event - The keydown event triggered by React
|
|
49335
49431
|
* @returns {boolean} - Whether the event was handled by the component
|
|
49336
49432
|
*/
|
|
49337
|
-
this._onSelectListKeyDown = event => {
|
|
49433
|
+
this._onSelectListKeyDown = (event) => {
|
|
49338
49434
|
if (!this.props.visible ||
|
|
49435
|
+
// such prop does not exist but let's avoid potential breaking change
|
|
49436
|
+
// @ts-expect-error
|
|
49339
49437
|
this.props.isComposing ||
|
|
49340
49438
|
this.props.listType !== ListType.select) {
|
|
49341
49439
|
return false;
|
|
@@ -49396,7 +49494,7 @@ class DropdownLayout extends (external_React_default()).PureComponent {
|
|
|
49396
49494
|
: focusableHOC
|
|
49397
49495
|
? focusableHOC.innerComponentRef.focus
|
|
49398
49496
|
: () => ({});
|
|
49399
|
-
this.setState({ focusedItemId }, () => callback());
|
|
49497
|
+
this.setState({ focusedItemId }, () => callback?.());
|
|
49400
49498
|
};
|
|
49401
49499
|
this._handleActionListNavigation = (event, id) => {
|
|
49402
49500
|
const length = this.focusableItemsIdsList.length;
|
|
@@ -49452,7 +49550,7 @@ class DropdownLayout extends (external_React_default()).PureComponent {
|
|
|
49452
49550
|
this.props.onClose();
|
|
49453
49551
|
}
|
|
49454
49552
|
};
|
|
49455
|
-
this._wrapWithInfiniteScroll = scrollableElement => {
|
|
49553
|
+
this._wrapWithInfiniteScroll = (scrollableElement) => {
|
|
49456
49554
|
if (!this.optionsRef.current) {
|
|
49457
49555
|
this.loadedWithUndefinedOptions = true;
|
|
49458
49556
|
}
|
|
@@ -49470,10 +49568,10 @@ class DropdownLayout extends (external_React_default()).PureComponent {
|
|
|
49470
49568
|
[DATA_DIRECTION]: dropDirectionUp
|
|
49471
49569
|
? DROPDOWN_LAYOUT_DIRECTIONS.UP
|
|
49472
49570
|
: DROPDOWN_LAYOUT_DIRECTIONS.DOWN,
|
|
49473
|
-
}, (
|
|
49571
|
+
}, (_, value) => !!value);
|
|
49474
49572
|
};
|
|
49475
49573
|
// For testing purposes only
|
|
49476
|
-
this._getItemDataAttr = ({ hovered, selected, disabled }) => {
|
|
49574
|
+
this._getItemDataAttr = ({ hovered, selected, disabled, }) => {
|
|
49477
49575
|
const { itemHeight, selectedHighlight } = this.props;
|
|
49478
49576
|
return filterObject({
|
|
49479
49577
|
[DATA_OPTION.DISABLED]: disabled,
|
|
@@ -49481,7 +49579,20 @@ class DropdownLayout extends (external_React_default()).PureComponent {
|
|
|
49481
49579
|
[DATA_OPTION.HOVERED]: hovered,
|
|
49482
49580
|
/* deprecated */
|
|
49483
49581
|
[DATA_OPTION.SIZE]: itemHeight,
|
|
49484
|
-
}, (
|
|
49582
|
+
}, (_, value) => !!value);
|
|
49583
|
+
};
|
|
49584
|
+
this._isSelectableOption = (option) => {
|
|
49585
|
+
if (!option) {
|
|
49586
|
+
return false;
|
|
49587
|
+
}
|
|
49588
|
+
if (this._isDivider(option)) {
|
|
49589
|
+
return false;
|
|
49590
|
+
}
|
|
49591
|
+
// only DropdownLayoutValueOption type has title prop, which is deprecated
|
|
49592
|
+
// therefore expecting error instead of dealing with it
|
|
49593
|
+
// @ts-expect-error
|
|
49594
|
+
const hasTitle = option.title;
|
|
49595
|
+
return !this._isDivider(option) && !option.disabled && !hasTitle;
|
|
49485
49596
|
};
|
|
49486
49597
|
this.containerRef = external_React_default().createRef();
|
|
49487
49598
|
this.optionsRef = external_React_default().createRef();
|
|
@@ -49530,6 +49641,8 @@ class DropdownLayout extends (external_React_default()).PureComponent {
|
|
|
49530
49641
|
}
|
|
49531
49642
|
}
|
|
49532
49643
|
UNSAFE_componentWillReceiveProps(nextProps) {
|
|
49644
|
+
const options = this.props.options || [];
|
|
49645
|
+
const nextOptions = nextProps.options || [];
|
|
49533
49646
|
if (this.props.visible !== nextProps.visible) {
|
|
49534
49647
|
this._markOption(DropdownLayout_constants_NOT_HOVERED_INDEX);
|
|
49535
49648
|
}
|
|
@@ -49538,10 +49651,9 @@ class DropdownLayout extends (external_React_default()).PureComponent {
|
|
|
49538
49651
|
}
|
|
49539
49652
|
// make sure the same item is hovered if options changed
|
|
49540
49653
|
if (this.state.hovered !== DropdownLayout_constants_NOT_HOVERED_INDEX &&
|
|
49541
|
-
(!
|
|
49542
|
-
this.
|
|
49543
|
-
|
|
49544
|
-
this._markOption(this._findIndex(nextProps.options, item => item.id === this.props.options[this.state.hovered].id));
|
|
49654
|
+
(!nextOptions[this.state.hovered] ||
|
|
49655
|
+
options[this.state.hovered].id !== nextOptions[this.state.hovered].id)) {
|
|
49656
|
+
this._markOption(this._findIndex(nextProps.options ?? [], item => item.id === options[this.state.hovered].id));
|
|
49545
49657
|
}
|
|
49546
49658
|
this._markOptionByProperty(nextProps);
|
|
49547
49659
|
}
|
|
@@ -49564,29 +49676,32 @@ class DropdownLayout extends (external_React_default()).PureComponent {
|
|
|
49564
49676
|
const { withArrow, visible } = this.props;
|
|
49565
49677
|
return withArrow && visible ? (external_React_default().createElement("div", { "data-hook": DataAttr_DATA_HOOKS.TOP_ARROW, className: DropdownLayout_st_css_classes.arrow })) : null;
|
|
49566
49678
|
}
|
|
49567
|
-
_convertOptionToListItemSectionBuilder({ option, idx }) {
|
|
49568
|
-
|
|
49569
|
-
if (value === DIVIDER_OPTION_VALUE) {
|
|
49679
|
+
_convertOptionToListItemSectionBuilder({ option, idx, }) {
|
|
49680
|
+
if (this._isDivider(option)) {
|
|
49570
49681
|
return listItemSectionBuilder({
|
|
49571
49682
|
dataHook: OPTION_DATA_HOOKS.DIVIDER,
|
|
49572
|
-
id: id || idx,
|
|
49683
|
+
id: option.id || idx,
|
|
49573
49684
|
type: 'divider',
|
|
49574
49685
|
});
|
|
49575
49686
|
}
|
|
49576
|
-
if (
|
|
49687
|
+
else if (option.title) {
|
|
49577
49688
|
return listItemSectionBuilder({
|
|
49578
49689
|
dataHook: OPTION_DATA_HOOKS.TITLE,
|
|
49579
|
-
id,
|
|
49690
|
+
id: option.id,
|
|
49580
49691
|
type: 'subheader',
|
|
49581
|
-
title: value,
|
|
49692
|
+
title: option.value,
|
|
49582
49693
|
});
|
|
49583
49694
|
}
|
|
49695
|
+
else {
|
|
49696
|
+
// This should never happen but let's make TS happy
|
|
49697
|
+
return undefined;
|
|
49698
|
+
}
|
|
49584
49699
|
}
|
|
49585
|
-
_convertOptionToListItemActionBuilder({ option, idx }) {
|
|
49700
|
+
_convertOptionToListItemActionBuilder({ option, idx, }) {
|
|
49586
49701
|
const { id, value, disabled, optionTitle, title, ...rest } = option;
|
|
49587
49702
|
return listItemActionBuilder({
|
|
49588
49703
|
id: id !== undefined ? id : idx,
|
|
49589
|
-
ref: ref => (this.children[id] = ref),
|
|
49704
|
+
ref: (ref) => (this.children[id] = ref),
|
|
49590
49705
|
tabIndex: id === this.state.focusedItemId && !disabled ? '0' : '-1',
|
|
49591
49706
|
disabled,
|
|
49592
49707
|
title: optionTitle,
|
|
@@ -49599,7 +49714,7 @@ class DropdownLayout extends (external_React_default()).PureComponent {
|
|
|
49599
49714
|
typeof this.props.onSelect !== 'undefined');
|
|
49600
49715
|
}
|
|
49601
49716
|
_focusOnSelectedOption() {
|
|
49602
|
-
if (this.selectedOption) {
|
|
49717
|
+
if (this.selectedOption && this.optionsRef.current) {
|
|
49603
49718
|
this.optionsRef.current.scrollTop = Math.max(this.selectedOption.offsetTop - this.selectedOption.offsetHeight, 0);
|
|
49604
49719
|
}
|
|
49605
49720
|
}
|
|
@@ -49610,12 +49725,16 @@ class DropdownLayout extends (external_React_default()).PureComponent {
|
|
|
49610
49725
|
}
|
|
49611
49726
|
_markOption(index, options) {
|
|
49612
49727
|
const { onOptionMarked } = this.props;
|
|
49613
|
-
options = options || this.props.options;
|
|
49728
|
+
options = options || this.props.options || [];
|
|
49614
49729
|
this.setState({ hovered: index });
|
|
49615
|
-
|
|
49730
|
+
if (onOptionMarked) {
|
|
49731
|
+
const markedOption = options[index] || null;
|
|
49732
|
+
// the type declaration was incorrect, casting to avoid breaking changes after TS conversion
|
|
49733
|
+
onOptionMarked(markedOption);
|
|
49734
|
+
}
|
|
49616
49735
|
}
|
|
49617
49736
|
_getMarkedIndex() {
|
|
49618
|
-
const
|
|
49737
|
+
const options = this.props.options || [];
|
|
49619
49738
|
const useHoverIndex = this.state.hovered > DropdownLayout_constants_NOT_HOVERED_INDEX;
|
|
49620
49739
|
const useSelectedIdIndex = typeof this.state.selectedId !== 'undefined';
|
|
49621
49740
|
let markedIndex;
|
|
@@ -49631,7 +49750,7 @@ class DropdownLayout extends (external_React_default()).PureComponent {
|
|
|
49631
49750
|
return markedIndex;
|
|
49632
49751
|
}
|
|
49633
49752
|
_markNextStep(step) {
|
|
49634
|
-
const
|
|
49753
|
+
const options = this.props.options || [];
|
|
49635
49754
|
if (!options.some(this._isSelectableOption)) {
|
|
49636
49755
|
return;
|
|
49637
49756
|
}
|
|
@@ -49642,10 +49761,11 @@ class DropdownLayout extends (external_React_default()).PureComponent {
|
|
|
49642
49761
|
this._markOptionAtIndex(markedIndex);
|
|
49643
49762
|
}
|
|
49644
49763
|
_scrollToOption() {
|
|
49645
|
-
const { scrollToOption
|
|
49764
|
+
const { scrollToOption } = this.props;
|
|
49765
|
+
const options = this.props.options || [];
|
|
49646
49766
|
const optionIndex = options.findIndex(option => option.id === scrollToOption);
|
|
49647
|
-
const optionNode = this.optionsRef.current
|
|
49648
|
-
if (!optionNode) {
|
|
49767
|
+
const optionNode = this.optionsRef.current?.childNodes[optionIndex];
|
|
49768
|
+
if (!optionNode || !this.optionsRef.current) {
|
|
49649
49769
|
return;
|
|
49650
49770
|
}
|
|
49651
49771
|
this.optionsRef.current.scrollTop = Math.max(optionNode.offsetTop - optionNode.offsetHeight, 0);
|
|
@@ -49653,14 +49773,14 @@ class DropdownLayout extends (external_React_default()).PureComponent {
|
|
|
49653
49773
|
_renderNode(node) {
|
|
49654
49774
|
return node ? external_React_default().createElement("div", null, node) : null;
|
|
49655
49775
|
}
|
|
49656
|
-
_convertCustomOptionToBuilder({ option }) {
|
|
49776
|
+
_convertCustomOptionToBuilder({ option, }) {
|
|
49657
49777
|
const { value, id, disabled, overrideOptionStyle, overrideStyle } = option;
|
|
49658
49778
|
if (overrideStyle) {
|
|
49659
49779
|
return {
|
|
49660
49780
|
id,
|
|
49661
49781
|
disabled,
|
|
49662
49782
|
overrideStyle,
|
|
49663
|
-
value: () => external_React_default().createElement("div", { "data-hook": DataAttr_DATA_HOOKS.OPTION }, value),
|
|
49783
|
+
value: () => (external_React_default().createElement("div", { "data-hook": DataAttr_DATA_HOOKS.OPTION }, value)),
|
|
49664
49784
|
};
|
|
49665
49785
|
}
|
|
49666
49786
|
if (overrideOptionStyle) {
|
|
@@ -49668,70 +49788,89 @@ class DropdownLayout extends (external_React_default()).PureComponent {
|
|
|
49668
49788
|
id,
|
|
49669
49789
|
disabled,
|
|
49670
49790
|
overrideOptionStyle,
|
|
49671
|
-
value: () => external_React_default().createElement("div", { "data-hook": DataAttr_DATA_HOOKS.OPTION }, value),
|
|
49791
|
+
value: () => (external_React_default().createElement("div", { "data-hook": DataAttr_DATA_HOOKS.OPTION }, value)),
|
|
49672
49792
|
};
|
|
49673
49793
|
}
|
|
49794
|
+
else {
|
|
49795
|
+
// This should never happen but let's make TS happy
|
|
49796
|
+
return undefined;
|
|
49797
|
+
}
|
|
49674
49798
|
}
|
|
49675
|
-
_convertOptionToListItemSelectBuilder({ option }) {
|
|
49799
|
+
_convertOptionToListItemSelectBuilder({ option, }) {
|
|
49676
49800
|
const { value, id, disabled } = option;
|
|
49677
49801
|
const { selectedId } = this.state;
|
|
49678
49802
|
const { itemHeight, selectedHighlight } = this.props;
|
|
49679
49803
|
return listItemSelectBuilder({
|
|
49680
49804
|
id,
|
|
49681
|
-
title: external_React_default().createElement("div", { "data-hook": DataAttr_DATA_HOOKS.OPTION }, value),
|
|
49805
|
+
title: (external_React_default().createElement("div", { "data-hook": DataAttr_DATA_HOOKS.OPTION }, value)),
|
|
49682
49806
|
disabled,
|
|
49683
49807
|
selected: id === selectedId && selectedHighlight,
|
|
49684
49808
|
className: DropdownLayout_st_css_st(DropdownLayout_st_css_classes.selectableOption, { itemHeight }),
|
|
49685
49809
|
});
|
|
49686
49810
|
}
|
|
49687
|
-
_isBuilderOption(
|
|
49811
|
+
_isBuilderOption(option) {
|
|
49688
49812
|
const { value } = option;
|
|
49689
49813
|
return typeof value === 'function';
|
|
49690
49814
|
}
|
|
49691
|
-
_isCustomOption(
|
|
49815
|
+
_isCustomOption(option) {
|
|
49692
49816
|
const { overrideOptionStyle, overrideStyle } = option;
|
|
49693
49817
|
return overrideOptionStyle || overrideStyle;
|
|
49694
49818
|
}
|
|
49695
|
-
_isActionOption(
|
|
49696
|
-
return option.value === ListType.action;
|
|
49819
|
+
_isActionOption(option) {
|
|
49820
|
+
return 'value' in option && option.value === ListType.action;
|
|
49697
49821
|
}
|
|
49698
|
-
_isItemSection(
|
|
49699
|
-
|
|
49700
|
-
|
|
49822
|
+
_isItemSection(option) {
|
|
49823
|
+
// only DropdownLayoutValueOption type has title prop, which is deprecated
|
|
49824
|
+
// therefore expecting error instead of dealing with it
|
|
49825
|
+
// @ts-expect-error
|
|
49826
|
+
const { title: isTitle } = option;
|
|
49827
|
+
return this._isDivider(option) || isTitle;
|
|
49828
|
+
}
|
|
49829
|
+
_isDivider(opt) {
|
|
49830
|
+
return opt.value === DIVIDER_OPTION_VALUE;
|
|
49701
49831
|
}
|
|
49702
49832
|
_convertOptionToBuilder(option, idx) {
|
|
49703
|
-
if (this._isBuilderOption(
|
|
49833
|
+
if (this._isBuilderOption(option)) {
|
|
49704
49834
|
return option;
|
|
49705
49835
|
}
|
|
49706
|
-
else if (this._isActionOption(
|
|
49836
|
+
else if (this._isActionOption(option)) {
|
|
49707
49837
|
return this._convertOptionToListItemActionBuilder({ option, idx });
|
|
49708
49838
|
}
|
|
49709
|
-
else if (this._isItemSection(
|
|
49839
|
+
else if (this._isItemSection(option)) {
|
|
49710
49840
|
return this._convertOptionToListItemSectionBuilder({ option, idx });
|
|
49711
49841
|
}
|
|
49712
|
-
else if (this._isCustomOption(
|
|
49842
|
+
else if (this._isCustomOption(option)) {
|
|
49713
49843
|
return this._convertCustomOptionToBuilder({ option });
|
|
49714
49844
|
}
|
|
49715
49845
|
else {
|
|
49716
49846
|
return this._convertOptionToListItemSelectBuilder({ option });
|
|
49717
49847
|
}
|
|
49718
49848
|
}
|
|
49719
|
-
_renderOption({ option, idx }) {
|
|
49849
|
+
_renderOption({ option, idx, }) {
|
|
49850
|
+
const isValueOption = (opt) => 'id' in opt && 'value' in opt && typeof opt.value !== 'function';
|
|
49720
49851
|
const builderOption = this._convertOptionToBuilder(option, idx);
|
|
49852
|
+
const hasLink = isValueOption(option) && !!option.linkTo;
|
|
49721
49853
|
const content = this._renderOptionContent({
|
|
49722
49854
|
option: builderOption,
|
|
49723
49855
|
idx,
|
|
49724
|
-
hasLink
|
|
49856
|
+
hasLink,
|
|
49725
49857
|
});
|
|
49726
49858
|
const isActionItem = this.props.listType === ListType.action;
|
|
49727
|
-
return
|
|
49859
|
+
return hasLink ? (external_React_default().createElement("a", { className: DropdownLayout_st_css_classes.linkItem, key: idx, "data-hook": DataAttr_DATA_HOOKS.LINK_ITEM, href: option.linkTo, role: isActionItem ? undefined : 'option', "aria-selected": isActionItem || option.disabled
|
|
49728
49860
|
? undefined
|
|
49729
49861
|
: option.id === this.state.selectedId, "aria-hidden": option.disabled }, content)) : (content);
|
|
49730
49862
|
}
|
|
49731
|
-
_renderOptionContent({ option, idx, hasLink }) {
|
|
49863
|
+
_renderOptionContent({ option, idx, hasLink, }) {
|
|
49864
|
+
if (!option) {
|
|
49865
|
+
return undefined;
|
|
49866
|
+
}
|
|
49732
49867
|
const { itemHeight, selectedHighlight, listType } = this.props;
|
|
49733
49868
|
const { selectedId, hovered } = this.state;
|
|
49734
|
-
const { id, disabled,
|
|
49869
|
+
const { id, disabled,
|
|
49870
|
+
// only ConvertedCustomOption type has overrideStyle prop, which is deprecated
|
|
49871
|
+
// therefore expecting error instead of dealing with it
|
|
49872
|
+
// @ts-expect-error
|
|
49873
|
+
overrideStyle, overrideOptionStyle, } = option;
|
|
49735
49874
|
const optionState = {
|
|
49736
49875
|
selected: id === selectedId,
|
|
49737
49876
|
hovered: idx === hovered,
|
|
@@ -49748,40 +49887,37 @@ class DropdownLayout extends (external_React_default()).PureComponent {
|
|
|
49748
49887
|
selected: optionState.selected && selectedHighlight,
|
|
49749
49888
|
itemHeight,
|
|
49750
49889
|
overrideStyle,
|
|
49751
|
-
}), ref: node => this._setSelectedOptionNode(node, option), onClick: !disabled ? e => this._onSelect(idx, e) :
|
|
49890
|
+
}), ref: node => this._setSelectedOptionNode(node, option), onClick: !disabled ? e => this._onSelect(idx, e) : undefined, key: idx, onMouseEnter: () => this._onMouseEnter(idx), onMouseLeave: this._onMouseLeave, "data-hook": `dropdown-item-${id}`, onKeyDown: e => this._onActionListKeyDown(e, id) }, option?.value(optionState)));
|
|
49752
49891
|
}
|
|
49753
49892
|
_markOptionByProperty(props) {
|
|
49893
|
+
const options = props.options || [];
|
|
49754
49894
|
if (this.state.hovered === DropdownLayout_constants_NOT_HOVERED_INDEX && props.markedOption) {
|
|
49755
|
-
const selectableOptions =
|
|
49895
|
+
const selectableOptions = options.filter(this._isSelectableOption);
|
|
49756
49896
|
if (selectableOptions.length) {
|
|
49757
49897
|
const idToMark = props.markedOption === true
|
|
49758
49898
|
? selectableOptions[0].id
|
|
49759
49899
|
: props.markedOption;
|
|
49760
|
-
this._markOption(this._findIndex(
|
|
49900
|
+
this._markOption(this._findIndex(options, (item) => item.id === idToMark), props.options);
|
|
49761
49901
|
}
|
|
49762
49902
|
}
|
|
49763
49903
|
}
|
|
49764
49904
|
_findIndex(arr, predicate) {
|
|
49765
49905
|
return (Array.isArray(arr) ? arr : []).findIndex(predicate);
|
|
49766
49906
|
}
|
|
49767
|
-
_isSelectableOption(option) {
|
|
49768
|
-
return (option &&
|
|
49769
|
-
option.value !== DIVIDER_OPTION_VALUE &&
|
|
49770
|
-
!option.disabled &&
|
|
49771
|
-
!option.title);
|
|
49772
|
-
}
|
|
49773
49907
|
_renderOptions() {
|
|
49774
49908
|
this.focusableItemsIdsList = [];
|
|
49775
49909
|
this._saveOnClicks();
|
|
49776
|
-
|
|
49910
|
+
const options = this.props.options || [];
|
|
49911
|
+
return options.map((option, idx) => this._renderOption({ option, idx }));
|
|
49777
49912
|
}
|
|
49778
49913
|
render() {
|
|
49779
|
-
const { className, visible, dropDirectionUp, tabIndex, onMouseEnter, onMouseLeave, onMouseDown, fixedHeader, withArrow, fixedFooter, inContainer, overflow, maxHeightPixels, minWidthPixels, infiniteScroll, dataHook, listType, } = this.props;
|
|
49914
|
+
const { className, visible, dropDirectionUp, tabIndex, onMouseEnter, onMouseLeave, onMouseDown, fixedHeader, withArrow, fixedFooter, inContainer, overflow, maxHeightPixels = 260, minWidthPixels, infiniteScroll, dataHook, listType, overlayScrollbarProps, } = this.props;
|
|
49780
49915
|
const renderedOptions = this._renderOptions();
|
|
49781
|
-
const
|
|
49916
|
+
const OverlayScrollbarHostElement = overlayScrollbarProps?.OverlayScrollbarHostElement;
|
|
49917
|
+
const OverlayScrollbarContentElement = overlayScrollbarProps?.OverlayScrollbarContentElement;
|
|
49782
49918
|
const optionsContainerProps = {
|
|
49783
49919
|
style: {
|
|
49784
|
-
maxHeight: DropdownLayout_getUnit(parseInt(maxHeightPixels, 10) - 35),
|
|
49920
|
+
maxHeight: DropdownLayout_getUnit(parseInt(String(maxHeightPixels), 10) - 35),
|
|
49785
49921
|
overflow,
|
|
49786
49922
|
},
|
|
49787
49923
|
'data-hook': DataAttr_DATA_HOOKS.DROPDOWN_LAYOUT_OPTIONS,
|
|
@@ -49790,7 +49926,9 @@ class DropdownLayout extends (external_React_default()).PureComponent {
|
|
|
49790
49926
|
const options = infiniteScroll
|
|
49791
49927
|
? this._wrapWithInfiniteScroll(renderedOptions)
|
|
49792
49928
|
: renderedOptions;
|
|
49793
|
-
const optionsContainer = this.props.scrollbar === Scrollbar.OVERLAY
|
|
49929
|
+
const optionsContainer = this.props.scrollbar === Scrollbar.OVERLAY &&
|
|
49930
|
+
OverlayScrollbarHostElement &&
|
|
49931
|
+
OverlayScrollbarContentElement ? (external_React_default().createElement(OverlayScrollbarHostElement, { className: DropdownLayout_st_css_classes.options, ...optionsContainerProps },
|
|
49794
49932
|
external_React_default().createElement(OverlayScrollbarContentElement, { className: DropdownLayout_st_css_classes.optionsContent, ref: forkRef(this.optionsRef, this.setScrollElement) }, options))) : (external_React_default().createElement("div", { className: DropdownLayout_st_css_st(DropdownLayout_st_css_classes.options, DropdownLayout_st_css_classes.optionsContent), ref: forkRef(this.optionsRef, this.setScrollElement), ...optionsContainerProps }, options));
|
|
49795
49933
|
return (external_React_default().createElement("div", { "data-list-type": listType, "data-hook": dataHook, className: DropdownLayout_st_css_st(DropdownLayout_st_css_classes.root, {
|
|
49796
49934
|
visible,
|
|
@@ -49802,8 +49940,8 @@ class DropdownLayout extends (external_React_default()).PureComponent {
|
|
|
49802
49940
|
}, className), tabIndex: tabIndex, onKeyDown: this._onSelectListKeyDown, onMouseEnter: onMouseEnter, onMouseLeave: onMouseLeave, onMouseDown: onMouseDown, ref: this.containerRef },
|
|
49803
49941
|
external_React_default().createElement("div", { ...this._getDataAttributes(), className: DropdownLayout_st_css_classes.contentContainer, style: {
|
|
49804
49942
|
overflow,
|
|
49805
|
-
maxHeight: DropdownLayout_getUnit(maxHeightPixels),
|
|
49806
|
-
minWidth: DropdownLayout_getUnit(minWidthPixels),
|
|
49943
|
+
maxHeight: maxHeightPixels ? DropdownLayout_getUnit(maxHeightPixels) : undefined,
|
|
49944
|
+
minWidth: minWidthPixels ? DropdownLayout_getUnit(minWidthPixels) : undefined,
|
|
49807
49945
|
} },
|
|
49808
49946
|
this._renderNode(fixedHeader),
|
|
49809
49947
|
optionsContainer,
|
|
@@ -49811,112 +49949,39 @@ class DropdownLayout extends (external_React_default()).PureComponent {
|
|
|
49811
49949
|
this._renderTopArrow()));
|
|
49812
49950
|
}
|
|
49813
49951
|
}
|
|
49814
|
-
const optionPropTypes = prop_types_default().shape({
|
|
49815
|
-
id: prop_types_default().oneOfType([(prop_types_default()).string, (prop_types_default()).number]).isRequired,
|
|
49816
|
-
value: prop_types_default().oneOfType([(prop_types_default()).node, (prop_types_default()).string, (prop_types_default()).func])
|
|
49817
|
-
.isRequired,
|
|
49818
|
-
disabled: (prop_types_default()).bool,
|
|
49819
|
-
/** @deprecated*/
|
|
49820
|
-
overrideStyle: (prop_types_default()).bool,
|
|
49821
|
-
/** @deprecated*/
|
|
49822
|
-
title: (prop_types_default()).bool,
|
|
49823
|
-
overrideOptionStyle: (prop_types_default()).bool,
|
|
49824
|
-
/* the string displayed within the input when the option is selected */
|
|
49825
|
-
label: (prop_types_default()).string,
|
|
49826
|
-
});
|
|
49827
|
-
function optionValidator(props, propName, componentName) {
|
|
49828
|
-
const option = props[propName];
|
|
49829
|
-
// Notice: We don't use Proptypes.oneOf() to check for either option OR divider, because then the failure message would be less informative.
|
|
49830
|
-
if (typeof option === 'object' && option.value === DIVIDER_OPTION_VALUE) {
|
|
49831
|
-
return;
|
|
49832
|
-
}
|
|
49833
|
-
const optionError = prop_types_default().checkPropTypes({ option: optionPropTypes }, { option }, 'option', componentName);
|
|
49834
|
-
if (optionError) {
|
|
49835
|
-
return optionError;
|
|
49836
|
-
}
|
|
49837
|
-
}
|
|
49838
49952
|
DropdownLayout.propTypes = {
|
|
49839
|
-
|
|
49840
|
-
|
|
49841
|
-
|
|
49842
|
-
|
|
49843
|
-
|
|
49844
|
-
|
|
49845
|
-
|
|
49846
|
-
|
|
49847
|
-
|
|
49848
|
-
|
|
49849
|
-
|
|
49850
|
-
|
|
49851
|
-
|
|
49852
|
-
|
|
49853
|
-
|
|
49854
|
-
|
|
49855
|
-
|
|
49856
|
-
|
|
49857
|
-
|
|
49858
|
-
|
|
49859
|
-
|
|
49860
|
-
|
|
49861
|
-
|
|
49862
|
-
|
|
49863
|
-
|
|
49864
|
-
|
|
49865
|
-
|
|
49866
|
-
|
|
49867
|
-
|
|
49868
|
-
|
|
49869
|
-
|
|
49870
|
-
|
|
49871
|
-
onClickOutside: (prop_types_default()).func,
|
|
49872
|
-
/** A fixed header to the list */
|
|
49873
|
-
fixedHeader: (prop_types_default()).node,
|
|
49874
|
-
/** A fixed footer to the list */
|
|
49875
|
-
fixedFooter: (prop_types_default()).node,
|
|
49876
|
-
/** Set the max height of the dropdownLayout in pixels */
|
|
49877
|
-
maxHeightPixels: prop_types_default().oneOfType([(prop_types_default()).string, (prop_types_default()).number]),
|
|
49878
|
-
/** Set the min width of the dropdownLayout in pixels */
|
|
49879
|
-
minWidthPixels: prop_types_default().oneOfType([(prop_types_default()).string, (prop_types_default()).number]),
|
|
49880
|
-
/** @deprecated Do not use this prop. */
|
|
49881
|
-
withArrow: (prop_types_default()).bool,
|
|
49882
|
-
/** Closes DropdownLayout on option selection */
|
|
49883
|
-
closeOnSelect: (prop_types_default()).bool,
|
|
49884
|
-
/** Callback function called whenever the user entered with the mouse to the dropdown layout.*/
|
|
49885
|
-
onMouseEnter: (prop_types_default()).func,
|
|
49886
|
-
/** Callback function called whenever the user exited with the mouse from the dropdown layout.*/
|
|
49887
|
-
onMouseLeave: (prop_types_default()).func,
|
|
49888
|
-
/** @deprecated Do not use this prop. */
|
|
49889
|
-
itemHeight: prop_types_default().oneOf(['small', 'big']),
|
|
49890
|
-
/** Whether the selected option will be highlighted when dropdown reopened. */
|
|
49891
|
-
selectedHighlight: (prop_types_default()).bool,
|
|
49892
|
-
/** Whether the `<DropdownLayout/>` is in a container component. If `true`, some styles such as shadows, positioning and padding will be added the the component contentContainer. */
|
|
49893
|
-
inContainer: (prop_types_default()).bool,
|
|
49894
|
-
/** Set this prop for lazy loading of the dropdown layout items.*/
|
|
49895
|
-
infiniteScroll: (prop_types_default()).bool,
|
|
49896
|
-
/** A callback called when more items are requested to be rendered. */
|
|
49897
|
-
loadMore: (prop_types_default()).func,
|
|
49898
|
-
/** Whether there are more items to be loaded. */
|
|
49899
|
-
hasMore: (prop_types_default()).bool,
|
|
49900
|
-
/** Sets the default hover behavior when:
|
|
49901
|
-
* 1. `false` means no default
|
|
49902
|
-
* 2. `true` means to hover the first selectable option
|
|
49903
|
-
* 3. Any number/string represents the id of option to hover
|
|
49904
|
-
*/
|
|
49905
|
-
markedOption: prop_types_default().oneOfType([
|
|
49906
|
-
(prop_types_default()).bool,
|
|
49907
|
-
(prop_types_default()).string,
|
|
49908
|
-
(prop_types_default()).number,
|
|
49909
|
-
]),
|
|
49910
|
-
/** Marks (not selects) and scrolls view to the option on opening the dropdown by option id */
|
|
49911
|
-
focusOnOption: prop_types_default().oneOfType([(prop_types_default()).string, (prop_types_default()).number]),
|
|
49912
|
-
/** Scrolls to the specified option when dropdown is opened without marking it */
|
|
49913
|
-
scrollToOption: prop_types_default().oneOfType([(prop_types_default()).number, (prop_types_default()).string]),
|
|
49914
|
-
/** Defines type of behavior applied in list */
|
|
49915
|
-
listType: prop_types_default().oneOf([ListType.action, ListType.select]),
|
|
49916
|
-
/** Specifies whether first list item should be focused */
|
|
49917
|
-
autoFocus: (prop_types_default()).bool,
|
|
49918
|
-
/** Controls which type of scrollbar to render */
|
|
49919
|
-
scrollbar: prop_types_default().oneOf(['overlay', 'fixed']),
|
|
49953
|
+
className: (prop_types_default()).any,
|
|
49954
|
+
dropDirectionUp: (prop_types_default()).any,
|
|
49955
|
+
focusOnSelectedOption: (prop_types_default()).any,
|
|
49956
|
+
onClose: (prop_types_default()).any,
|
|
49957
|
+
onSelect: (prop_types_default()).any,
|
|
49958
|
+
onOptionMarked: (prop_types_default()).any,
|
|
49959
|
+
overflow: (prop_types_default()).any,
|
|
49960
|
+
visible: (prop_types_default()).any,
|
|
49961
|
+
options: (prop_types_default()).any,
|
|
49962
|
+
selectedId: (prop_types_default()).any,
|
|
49963
|
+
tabIndex: (prop_types_default()).any,
|
|
49964
|
+
onClickOutside: (prop_types_default()).any,
|
|
49965
|
+
fixedHeader: (prop_types_default()).any,
|
|
49966
|
+
fixedFooter: (prop_types_default()).any,
|
|
49967
|
+
maxHeightPixels: (prop_types_default()).any,
|
|
49968
|
+
minWidthPixels: (prop_types_default()).any,
|
|
49969
|
+
withArrow: (prop_types_default()).any,
|
|
49970
|
+
closeOnSelect: (prop_types_default()).any,
|
|
49971
|
+
onMouseEnter: (prop_types_default()).any,
|
|
49972
|
+
onMouseLeave: (prop_types_default()).any,
|
|
49973
|
+
itemHeight: (prop_types_default()).any,
|
|
49974
|
+
selectedHighlight: (prop_types_default()).any,
|
|
49975
|
+
inContainer: (prop_types_default()).any,
|
|
49976
|
+
infiniteScroll: (prop_types_default()).any,
|
|
49977
|
+
loadMore: (prop_types_default()).any,
|
|
49978
|
+
hasMore: (prop_types_default()).any,
|
|
49979
|
+
markedOption: (prop_types_default()).any,
|
|
49980
|
+
focusOnOption: (prop_types_default()).any,
|
|
49981
|
+
scrollToOption: (prop_types_default()).any,
|
|
49982
|
+
listType: (prop_types_default()).any,
|
|
49983
|
+
autoFocus: (prop_types_default()).any,
|
|
49984
|
+
scrollbar: (prop_types_default()).any,
|
|
49920
49985
|
};
|
|
49921
49986
|
DropdownLayout.defaultProps = {
|
|
49922
49987
|
options: [],
|
|
@@ -49927,7 +49992,7 @@ DropdownLayout.defaultProps = {
|
|
|
49927
49992
|
selectedHighlight: true,
|
|
49928
49993
|
inContainer: false,
|
|
49929
49994
|
infiniteScroll: false,
|
|
49930
|
-
loadMore:
|
|
49995
|
+
loadMore: undefined,
|
|
49931
49996
|
hasMore: false,
|
|
49932
49997
|
markedOption: false,
|
|
49933
49998
|
overflow: 'auto',
|
|
@@ -49947,7 +50012,7 @@ DropdownLayout.NONE_SELECTED_ID = DropdownLayout_constants_NOT_HOVERED_INDEX;
|
|
|
49947
50012
|
|
|
49948
50013
|
|
|
49949
50014
|
|
|
49950
|
-
var DropdownBase_st_css_namespace_ = "
|
|
50015
|
+
var DropdownBase_st_css_namespace_ = "wds_1_125_0_DropdownBase";
|
|
49951
50016
|
var DropdownBase_st_css_style_ = classesRuntime.bind(null, DropdownBase_st_css_namespace_);
|
|
49952
50017
|
|
|
49953
50018
|
var DropdownBase_st_css_cssStates = statesRuntime.bind(null, DropdownBase_st_css_namespace_);
|
|
@@ -49955,7 +50020,7 @@ var DropdownBase_st_css_style = (/* unused pure expression or super */ null && (
|
|
|
49955
50020
|
var DropdownBase_st_css_st = DropdownBase_st_css_style_;
|
|
49956
50021
|
|
|
49957
50022
|
var DropdownBase_st_css_namespace = (/* unused pure expression or super */ null && (DropdownBase_st_css_namespace_));
|
|
49958
|
-
var DropdownBase_st_css_classes = {"root":"
|
|
50023
|
+
var DropdownBase_st_css_classes = {"root":"wds_1_125_0_DropdownBase__root","list":"wds_1_125_0_DropdownBase__list"};
|
|
49959
50024
|
var DropdownBase_st_css_keyframes = {};
|
|
49960
50025
|
var DropdownBase_st_css_layers = {};
|
|
49961
50026
|
var DropdownBase_st_css_containers = {};
|
|
@@ -49976,7 +50041,7 @@ var DropdownBase_st_css_vars = {"wds-space-200":"--wds-space-200"};
|
|
|
49976
50041
|
|
|
49977
50042
|
|
|
49978
50043
|
|
|
49979
|
-
var InputWithOptions_st_css_namespace_ = "
|
|
50044
|
+
var InputWithOptions_st_css_namespace_ = "wds_1_125_0_InputWithOptions";
|
|
49980
50045
|
var InputWithOptions_st_css_style_ = classesRuntime.bind(null, InputWithOptions_st_css_namespace_);
|
|
49981
50046
|
|
|
49982
50047
|
var InputWithOptions_st_css_cssStates = statesRuntime.bind(null, InputWithOptions_st_css_namespace_);
|
|
@@ -49984,7 +50049,7 @@ var InputWithOptions_st_css_style = (/* unused pure expression or super */ null
|
|
|
49984
50049
|
var InputWithOptions_st_css_st = InputWithOptions_st_css_style_;
|
|
49985
50050
|
|
|
49986
50051
|
var InputWithOptions_st_css_namespace = (/* unused pure expression or super */ null && (InputWithOptions_st_css_namespace_));
|
|
49987
|
-
var InputWithOptions_st_css_classes = {"root":"
|
|
50052
|
+
var InputWithOptions_st_css_classes = {"root":"wds_1_125_0_InputWithOptions__root","nativeSelectWrapper":"wds_1_125_0_InputWithOptions__nativeSelectWrapper","nativeSelect":"wds_1_125_0_InputWithOptions__nativeSelect"};
|
|
49988
50053
|
var InputWithOptions_st_css_keyframes = {};
|
|
49989
50054
|
var InputWithOptions_st_css_layers = {};
|
|
49990
50055
|
var InputWithOptions_st_css_containers = {};
|
|
@@ -50443,7 +50508,7 @@ InputWithOptions.displayName = 'InputWithOptions';
|
|
|
50443
50508
|
|
|
50444
50509
|
|
|
50445
50510
|
|
|
50446
|
-
var Dropdown_st_css_namespace_ = "
|
|
50511
|
+
var Dropdown_st_css_namespace_ = "wds_1_125_0_Dropdown";
|
|
50447
50512
|
var Dropdown_st_css_style_ = classesRuntime.bind(null, Dropdown_st_css_namespace_);
|
|
50448
50513
|
|
|
50449
50514
|
var Dropdown_st_css_cssStates = statesRuntime.bind(null, Dropdown_st_css_namespace_);
|
|
@@ -50451,7 +50516,7 @@ var Dropdown_st_css_style = (/* unused pure expression or super */ null && (Drop
|
|
|
50451
50516
|
var Dropdown_st_css_st = Dropdown_st_css_style_;
|
|
50452
50517
|
|
|
50453
50518
|
var Dropdown_st_css_namespace = (/* unused pure expression or super */ null && (Dropdown_st_css_namespace_));
|
|
50454
|
-
var Dropdown_st_css_classes = {"root":"
|
|
50519
|
+
var Dropdown_st_css_classes = {"root":"wds_1_125_0_Dropdown__root","input":"wds_1_125_0_Input__input","showPointer":"wds_1_125_0_Dropdown__showPointer"};
|
|
50455
50520
|
var Dropdown_st_css_keyframes = {};
|
|
50456
50521
|
var Dropdown_st_css_layers = {};
|
|
50457
50522
|
var Dropdown_st_css_containers = {};
|
|
@@ -50470,7 +50535,6 @@ var Dropdown_st_css_vars = {};
|
|
|
50470
50535
|
|
|
50471
50536
|
|
|
50472
50537
|
|
|
50473
|
-
|
|
50474
50538
|
const NO_SELECTED_ID = null;
|
|
50475
50539
|
class Dropdown extends InputWithOptions_InputWithOptions {
|
|
50476
50540
|
constructor(props) {
|
|
@@ -50680,7 +50744,7 @@ Dropdown.propTypes = {
|
|
|
50680
50744
|
* - overrideOptionStyle `<bool>` *default value- false* - when set to `true`, the option will be responsible to its own styles. No styles will be applied from the DropdownLayout itself;
|
|
50681
50745
|
* - label `<string>`: the string displayed within an input when the option is selected. This is used when using `<DropdownLayout/>` with an `<Input/>`.
|
|
50682
50746
|
*/
|
|
50683
|
-
options: prop_types_default().arrayOf(
|
|
50747
|
+
options: prop_types_default().arrayOf((prop_types_default()).any),
|
|
50684
50748
|
/** Handles container overflow. */
|
|
50685
50749
|
overflow: (prop_types_default()).string,
|
|
50686
50750
|
/** Sets a placeholder message to display. */
|
|
@@ -63657,7 +63721,7 @@ const testDataHooks = {
|
|
|
63657
63721
|
|
|
63658
63722
|
|
|
63659
63723
|
|
|
63660
|
-
var IconButton_st_css_namespace_ = "
|
|
63724
|
+
var IconButton_st_css_namespace_ = "wds_1_125_0_IconButton";
|
|
63661
63725
|
var IconButton_st_css_style_ = classesRuntime.bind(null, IconButton_st_css_namespace_);
|
|
63662
63726
|
|
|
63663
63727
|
var IconButton_st_css_cssStates = statesRuntime.bind(null, IconButton_st_css_namespace_);
|
|
@@ -63665,7 +63729,7 @@ var IconButton_st_css_style = (/* unused pure expression or super */ null && (Ic
|
|
|
63665
63729
|
var IconButton_st_css_st = IconButton_st_css_style_;
|
|
63666
63730
|
|
|
63667
63731
|
var IconButton_st_css_namespace = (/* unused pure expression or super */ null && (IconButton_st_css_namespace_));
|
|
63668
|
-
var IconButton_st_css_classes = {"root":"
|
|
63732
|
+
var IconButton_st_css_classes = {"root":"wds_1_125_0_IconButton__root","mobile":"wds_1_125_0_WixDesignSystemProvider__mobile"};
|
|
63669
63733
|
var IconButton_st_css_keyframes = {};
|
|
63670
63734
|
var IconButton_st_css_layers = {};
|
|
63671
63735
|
var IconButton_st_css_containers = {};
|
|
@@ -63751,7 +63815,7 @@ const Avatar_constants_dataHooks = {
|
|
|
63751
63815
|
|
|
63752
63816
|
|
|
63753
63817
|
|
|
63754
|
-
var AvatarCore_st_css_namespace_ = "
|
|
63818
|
+
var AvatarCore_st_css_namespace_ = "wds_1_125_0_AvatarCore";
|
|
63755
63819
|
var AvatarCore_st_css_style_ = classesRuntime.bind(null, AvatarCore_st_css_namespace_);
|
|
63756
63820
|
|
|
63757
63821
|
var AvatarCore_st_css_cssStates = statesRuntime.bind(null, AvatarCore_st_css_namespace_);
|
|
@@ -63759,7 +63823,7 @@ var AvatarCore_st_css_style = (/* unused pure expression or super */ null && (Av
|
|
|
63759
63823
|
var AvatarCore_st_css_st = AvatarCore_st_css_style_;
|
|
63760
63824
|
|
|
63761
63825
|
var AvatarCore_st_css_namespace = (/* unused pure expression or super */ null && (AvatarCore_st_css_namespace_));
|
|
63762
|
-
var AvatarCore_st_css_classes = {"root":"
|
|
63826
|
+
var AvatarCore_st_css_classes = {"root":"wds_1_125_0_AvatarCore__root","content":"wds_1_125_0_AvatarCore__content"};
|
|
63763
63827
|
var AvatarCore_st_css_keyframes = {};
|
|
63764
63828
|
var AvatarCore_st_css_layers = {};
|
|
63765
63829
|
var AvatarCore_st_css_containers = {};
|
|
@@ -63777,7 +63841,7 @@ var AvatarCore_st_css_vars = {};
|
|
|
63777
63841
|
|
|
63778
63842
|
|
|
63779
63843
|
|
|
63780
|
-
var gradients_st_css_namespace_ = "
|
|
63844
|
+
var gradients_st_css_namespace_ = "wds_1_125_0_gradients";
|
|
63781
63845
|
var gradients_st_css_style_ = classesRuntime.bind(null, gradients_st_css_namespace_);
|
|
63782
63846
|
|
|
63783
63847
|
var gradients_st_css_cssStates = statesRuntime.bind(null, gradients_st_css_namespace_);
|
|
@@ -63785,7 +63849,7 @@ var gradients_st_css_style = (/* unused pure expression or super */ null && (gra
|
|
|
63785
63849
|
var gradients_st_css_st = (/* unused pure expression or super */ null && (gradients_st_css_style_));
|
|
63786
63850
|
|
|
63787
63851
|
var gradients_st_css_namespace = (/* unused pure expression or super */ null && (gradients_st_css_namespace_));
|
|
63788
|
-
var gradients_st_css_classes = {"root":"
|
|
63852
|
+
var gradients_st_css_classes = {"root":"wds_1_125_0_gradients__root"};
|
|
63789
63853
|
var gradients_st_css_keyframes = {};
|
|
63790
63854
|
var gradients_st_css_layers = {};
|
|
63791
63855
|
var gradients_st_css_containers = {};
|
|
@@ -63809,7 +63873,7 @@ var gradients_st_css_vars = {};
|
|
|
63809
63873
|
|
|
63810
63874
|
|
|
63811
63875
|
|
|
63812
|
-
var Avatar_st_css_namespace_ = "
|
|
63876
|
+
var Avatar_st_css_namespace_ = "wds_1_125_0_Avatar";
|
|
63813
63877
|
var Avatar_st_css_style_ = classesRuntime.bind(null, Avatar_st_css_namespace_);
|
|
63814
63878
|
|
|
63815
63879
|
var Avatar_st_css_cssStates = statesRuntime.bind(null, Avatar_st_css_namespace_);
|
|
@@ -63817,7 +63881,7 @@ var Avatar_st_css_style = (/* unused pure expression or super */ null && (Avatar
|
|
|
63817
63881
|
var Avatar_st_css_st = Avatar_st_css_style_;
|
|
63818
63882
|
|
|
63819
63883
|
var Avatar_st_css_namespace = (/* unused pure expression or super */ null && (Avatar_st_css_namespace_));
|
|
63820
|
-
var Avatar_st_css_classes = {"root":"
|
|
63884
|
+
var Avatar_st_css_classes = {"root":"wds_1_125_0_Avatar__root","text-small-bold":"wds_1_125_0_StylableTypography__text-small-bold","text-tiny-normal":"wds_1_125_0_StylableTypography__text-tiny-normal","text-medium-normal":"wds_1_125_0_StylableTypography__text-medium-normal","text-medium-bold":"wds_1_125_0_StylableTypography__text-medium-bold","text-tiny-bold":"wds_1_125_0_StylableTypography__text-tiny-bold","placeholder":"wds_1_125_0_Avatar__placeholder","avatarContainer":"wds_1_125_0_Avatar__avatarContainer","coreAvatar":"wds_1_125_0_Avatar__coreAvatar","avatar":"wds_1_125_0_Avatar__avatar","presence":"wds_1_125_0_Avatar__presence","indication":"wds_1_125_0_Avatar__indication","iconButtonShadow":"wds_1_125_0_Avatar__iconButtonShadow","colorA1":"wds_1_125_0_Avatar__colorA1","colorA2":"wds_1_125_0_Avatar__colorA2","colorA3":"wds_1_125_0_Avatar__colorA3","colorA4":"wds_1_125_0_Avatar__colorA4","colorA5":"wds_1_125_0_Avatar__colorA5","colorA6":"wds_1_125_0_Avatar__colorA6","loaderContainer":"wds_1_125_0_Avatar__loaderContainer","overlay":"wds_1_125_0_Avatar__overlay","loader":"wds_1_125_0_Avatar__loader"};
|
|
63821
63885
|
var Avatar_st_css_keyframes = {};
|
|
63822
63886
|
var Avatar_st_css_layers = {};
|
|
63823
63887
|
var Avatar_st_css_containers = {};
|
|
@@ -64312,7 +64376,7 @@ const customStyles=(props,rtl)=>{return{valueContainer:provided=>({...provided,p
|
|
|
64312
64376
|
|
|
64313
64377
|
|
|
64314
64378
|
|
|
64315
|
-
var Tag_st_css_namespace_ = "
|
|
64379
|
+
var Tag_st_css_namespace_ = "wds_1_125_0_Tag";
|
|
64316
64380
|
var Tag_st_css_style_ = classesRuntime.bind(null, Tag_st_css_namespace_);
|
|
64317
64381
|
|
|
64318
64382
|
var Tag_st_css_cssStates = statesRuntime.bind(null, Tag_st_css_namespace_);
|
|
@@ -64320,7 +64384,7 @@ var Tag_st_css_style = (/* unused pure expression or super */ null && (Tag_st_cs
|
|
|
64320
64384
|
var Tag_st_css_st = Tag_st_css_style_;
|
|
64321
64385
|
|
|
64322
64386
|
var Tag_st_css_namespace = (/* unused pure expression or super */ null && (Tag_st_css_namespace_));
|
|
64323
|
-
var Tag_st_css_classes = {"root":"
|
|
64387
|
+
var Tag_st_css_classes = {"root":"wds_1_125_0_Tag__root","thumb":"wds_1_125_0_Tag__thumb","removeButton":"wds_1_125_0_Tag__removeButton","text":"wds_1_125_0_Tag__text"};
|
|
64324
64388
|
var Tag_st_css_keyframes = {};
|
|
64325
64389
|
var Tag_st_css_layers = {};
|
|
64326
64390
|
var Tag_st_css_containers = {};
|
|
@@ -64482,7 +64546,7 @@ Tag.defaultProps = {
|
|
|
64482
64546
|
|
|
64483
64547
|
|
|
64484
64548
|
|
|
64485
|
-
var InputWithTags_st_css_namespace_ = "
|
|
64549
|
+
var InputWithTags_st_css_namespace_ = "wds_1_125_0_InputWithTags";
|
|
64486
64550
|
var InputWithTags_st_css_style_ = classesRuntime.bind(null, InputWithTags_st_css_namespace_);
|
|
64487
64551
|
|
|
64488
64552
|
var InputWithTags_st_css_cssStates = statesRuntime.bind(null, InputWithTags_st_css_namespace_);
|
|
@@ -64490,7 +64554,7 @@ var InputWithTags_st_css_style = (/* unused pure expression or super */ null &&
|
|
|
64490
64554
|
var InputWithTags_st_css_st = InputWithTags_st_css_style_;
|
|
64491
64555
|
|
|
64492
64556
|
var InputWithTags_st_css_namespace = (/* unused pure expression or super */ null && (InputWithTags_st_css_namespace_));
|
|
64493
|
-
var InputWithTags_st_css_classes = {"root":"
|
|
64557
|
+
var InputWithTags_st_css_classes = {"root":"wds_1_125_0_InputWithTags__root","text-medium-normal":"wds_1_125_0_StylableTypography__text-medium-normal","inputWrapper":"wds_1_125_0_InputWithTags__inputWrapper","emptyInput":"wds_1_125_0_InputWithTags__emptyInput","selectMode":"wds_1_125_0_InputWithTags__selectMode","inputSuffix":"wds_1_125_0_InputWithTags__inputSuffix","menuArrow":"wds_1_125_0_InputWithTags__menuArrow","statusIndicator":"wds_1_125_0_InputWithTags__statusIndicator","suffixes":"wds_1_125_0_InputWithTags__suffixes","hiddenDiv":"wds_1_125_0_InputWithTags__hiddenDiv","hasMaxHeight":"wds_1_125_0_InputWithTags__hasMaxHeight","customSuffix":"wds_1_125_0_InputWithTags__customSuffix","customPrefix":"wds_1_125_0_InputWithTags__customPrefix","tagsContainer":"wds_1_125_0_InputWithTags__tagsContainer","draggedTag":"wds_1_125_0_InputWithTags__draggedTag","draggedTagPlaceholder":"wds_1_125_0_InputWithTags__draggedTagPlaceholder","input":"wds_1_125_0_InputWithTags__input"};
|
|
64494
64558
|
var InputWithTags_st_css_keyframes = {};
|
|
64495
64559
|
var InputWithTags_st_css_layers = {};
|
|
64496
64560
|
var InputWithTags_st_css_containers = {};
|
|
@@ -66590,7 +66654,7 @@ SortableListBase.propTypes = {
|
|
|
66590
66654
|
|
|
66591
66655
|
|
|
66592
66656
|
|
|
66593
|
-
var dnd_styles_st_css_namespace_ = "
|
|
66657
|
+
var dnd_styles_st_css_namespace_ = "wds_1_125_0_dndstyles";
|
|
66594
66658
|
var dnd_styles_st_css_style_ = classesRuntime.bind(null, dnd_styles_st_css_namespace_);
|
|
66595
66659
|
|
|
66596
66660
|
var dnd_styles_st_css_cssStates = statesRuntime.bind(null, dnd_styles_st_css_namespace_);
|
|
@@ -66598,7 +66662,7 @@ var dnd_styles_st_css_style = (/* unused pure expression or super */ null && (dn
|
|
|
66598
66662
|
var dnd_styles_st_css_st = (/* unused pure expression or super */ null && (dnd_styles_st_css_style_));
|
|
66599
66663
|
|
|
66600
66664
|
var dnd_styles_st_css_namespace = (/* unused pure expression or super */ null && (dnd_styles_st_css_namespace_));
|
|
66601
|
-
var dnd_styles_st_css_classes = {"root":"
|
|
66665
|
+
var dnd_styles_st_css_classes = {"root":"wds_1_125_0_dndstyles__root","item":"wds_1_125_0_dndstyles__item","itemPlaceholder":"wds_1_125_0_dndstyles__itemPlaceholder","itemPreview":"wds_1_125_0_dndstyles__itemPreview","list":"wds_1_125_0_dndstyles__list","gridItemPlaceholder":"wds_1_125_0_dndstyles__gridItemPlaceholder","isInitialPositionToDrop":"wds_1_125_0_dndstyles__isInitialPositionToDrop","withGridItemStrip":"wds_1_125_0_dndstyles__withGridItemStrip","withGridItemStripRight":"wds_1_125_0_dndstyles__withGridItemStripRight","gridItemPreview":"wds_1_125_0_dndstyles__gridItemPreview"};
|
|
66602
66666
|
var dnd_styles_st_css_keyframes = {};
|
|
66603
66667
|
var dnd_styles_st_css_layers = {};
|
|
66604
66668
|
var dnd_styles_st_css_containers = {};
|
|
@@ -66800,7 +66864,7 @@ var difference_default = /*#__PURE__*/__webpack_require__.n(difference);
|
|
|
66800
66864
|
|
|
66801
66865
|
|
|
66802
66866
|
|
|
66803
|
-
var MultiSelect_st_css_namespace_ = "
|
|
66867
|
+
var MultiSelect_st_css_namespace_ = "wds_1_125_0_MultiSelect";
|
|
66804
66868
|
var MultiSelect_st_css_style_ = classesRuntime.bind(null, MultiSelect_st_css_namespace_);
|
|
66805
66869
|
|
|
66806
66870
|
var MultiSelect_st_css_cssStates = statesRuntime.bind(null, MultiSelect_st_css_namespace_);
|
|
@@ -66808,7 +66872,7 @@ var MultiSelect_st_css_style = (/* unused pure expression or super */ null && (M
|
|
|
66808
66872
|
var MultiSelect_st_css_st = MultiSelect_st_css_style_;
|
|
66809
66873
|
|
|
66810
66874
|
var MultiSelect_st_css_namespace = (/* unused pure expression or super */ null && (MultiSelect_st_css_namespace_));
|
|
66811
|
-
var MultiSelect_st_css_classes = {"root":"
|
|
66875
|
+
var MultiSelect_st_css_classes = {"root":"wds_1_125_0_MultiSelect__root","inputWithTags":"wds_1_125_0_MultiSelect__inputWithTags","autoSizeInput":"wds_1_125_0_MultiSelect__autoSizeInput"};
|
|
66812
66876
|
var MultiSelect_st_css_keyframes = {};
|
|
66813
66877
|
var MultiSelect_st_css_layers = {};
|
|
66814
66878
|
var MultiSelect_st_css_containers = {};
|
|
@@ -67151,7 +67215,7 @@ if(false /* HMR */) {}
|
|
|
67151
67215
|
|
|
67152
67216
|
|
|
67153
67217
|
|
|
67154
|
-
var EmptyState_st_css_namespace_ = "
|
|
67218
|
+
var EmptyState_st_css_namespace_ = "wds_1_125_0_EmptyState";
|
|
67155
67219
|
var EmptyState_st_css_style_ = classesRuntime.bind(null, EmptyState_st_css_namespace_);
|
|
67156
67220
|
|
|
67157
67221
|
var EmptyState_st_css_cssStates = statesRuntime.bind(null, EmptyState_st_css_namespace_);
|
|
@@ -67159,7 +67223,7 @@ var EmptyState_st_css_style = (/* unused pure expression or super */ null && (Em
|
|
|
67159
67223
|
var EmptyState_st_css_st = EmptyState_st_css_style_;
|
|
67160
67224
|
|
|
67161
67225
|
var EmptyState_st_css_namespace = (/* unused pure expression or super */ null && (EmptyState_st_css_namespace_));
|
|
67162
|
-
var EmptyState_st_css_classes = {"root":"
|
|
67226
|
+
var EmptyState_st_css_classes = {"root":"wds_1_125_0_EmptyState__root","imageContainer":"wds_1_125_0_EmptyState__imageContainer","childrenContainer":"wds_1_125_0_EmptyState__childrenContainer","container":"wds_1_125_0_EmptyState__container","imageElement":"wds_1_125_0_EmptyState__imageElement","titleContainer":"wds_1_125_0_EmptyState__titleContainer","title":"wds_1_125_0_EmptyState__title","sectionTitle":"wds_1_125_0_EmptyState__sectionTitle","subtitle":"wds_1_125_0_EmptyState__subtitle","subtitleContainer":"wds_1_125_0_EmptyState__subtitleContainer"};
|
|
67163
67227
|
var EmptyState_st_css_keyframes = {};
|
|
67164
67228
|
var EmptyState_st_css_layers = {};
|
|
67165
67229
|
var EmptyState_st_css_containers = {};
|
|
@@ -67957,7 +68021,7 @@ const InfoIcon_constants_dataHooks = {
|
|
|
67957
68021
|
|
|
67958
68022
|
|
|
67959
68023
|
|
|
67960
|
-
var InfoIcon_st_css_namespace_ = "
|
|
68024
|
+
var InfoIcon_st_css_namespace_ = "wds_1_125_0_InfoIcon";
|
|
67961
68025
|
var InfoIcon_st_css_style_ = classesRuntime.bind(null, InfoIcon_st_css_namespace_);
|
|
67962
68026
|
|
|
67963
68027
|
var InfoIcon_st_css_cssStates = statesRuntime.bind(null, InfoIcon_st_css_namespace_);
|
|
@@ -67965,7 +68029,7 @@ var InfoIcon_st_css_style = (/* unused pure expression or super */ null && (Info
|
|
|
67965
68029
|
var InfoIcon_st_css_st = InfoIcon_st_css_style_;
|
|
67966
68030
|
|
|
67967
68031
|
var InfoIcon_st_css_namespace = (/* unused pure expression or super */ null && (InfoIcon_st_css_namespace_));
|
|
67968
|
-
var InfoIcon_st_css_classes = {"root":"
|
|
68032
|
+
var InfoIcon_st_css_classes = {"root":"wds_1_125_0_InfoIcon__root","icon":"wds_1_125_0_InfoIcon__icon"};
|
|
67969
68033
|
var InfoIcon_st_css_keyframes = {};
|
|
67970
68034
|
var InfoIcon_st_css_layers = {};
|
|
67971
68035
|
var InfoIcon_st_css_containers = {};
|
|
@@ -68053,7 +68117,7 @@ const LABEL_SIZE = {
|
|
|
68053
68117
|
|
|
68054
68118
|
|
|
68055
68119
|
|
|
68056
|
-
var FormField_st_css_namespace_ = "
|
|
68120
|
+
var FormField_st_css_namespace_ = "wds_1_125_0_FormField";
|
|
68057
68121
|
var FormField_st_css_style_ = classesRuntime.bind(null, FormField_st_css_namespace_);
|
|
68058
68122
|
|
|
68059
68123
|
var FormField_st_css_cssStates = statesRuntime.bind(null, FormField_st_css_namespace_);
|
|
@@ -68061,7 +68125,7 @@ var FormField_st_css_style = (/* unused pure expression or super */ null && (For
|
|
|
68061
68125
|
var FormField_st_css_st = FormField_st_css_style_;
|
|
68062
68126
|
|
|
68063
68127
|
var FormField_st_css_namespace = (/* unused pure expression or super */ null && (FormField_st_css_namespace_));
|
|
68064
|
-
var FormField_st_css_classes = {"root":"
|
|
68128
|
+
var FormField_st_css_classes = {"root":"wds_1_125_0_FormField__root","text-small-thin":"wds_1_125_0_StylableTypography__text-small-thin","text-tiny-thin":"wds_1_125_0_StylableTypography__text-tiny-thin","label":"wds_1_125_0_FormField__label","children":"wds_1_125_0_FormField__children","statusMessage":"wds_1_125_0_FormField__statusMessage","suffix":"wds_1_125_0_FormField__suffix","labelRow":"wds_1_125_0_FormField__labelRow","labelRowMain":"wds_1_125_0_FormField__labelRowMain","asterisk":"wds_1_125_0_FormField__asterisk","charCount":"wds_1_125_0_FormField__charCount","infoIcon":"wds_1_125_0_FormField__infoIcon","statusIcon":"wds_1_125_0_FormField__statusIcon"};
|
|
68065
68129
|
var FormField_st_css_keyframes = {};
|
|
68066
68130
|
var FormField_st_css_layers = {};
|
|
68067
68131
|
var FormField_st_css_containers = {};
|
|
@@ -68284,6 +68348,9 @@ FormField.defaultProps = {
|
|
|
68284
68348
|
};
|
|
68285
68349
|
/* harmony default export */ const FormField_FormField = (FormField);
|
|
68286
68350
|
//# sourceMappingURL=FormField.js.map
|
|
68351
|
+
// EXTERNAL MODULE: ../../../node_modules/lodash/clamp.js
|
|
68352
|
+
var clamp = __webpack_require__(1190);
|
|
68353
|
+
var clamp_default = /*#__PURE__*/__webpack_require__.n(clamp);
|
|
68287
68354
|
// EXTERNAL MODULE: ../../../node_modules/lodash/isNaN.js
|
|
68288
68355
|
var lodash_isNaN = __webpack_require__(5919);
|
|
68289
68356
|
var isNaN_default = /*#__PURE__*/__webpack_require__.n(lodash_isNaN);
|
|
@@ -68297,7 +68364,7 @@ var isNaN_default = /*#__PURE__*/__webpack_require__.n(lodash_isNaN);
|
|
|
68297
68364
|
|
|
68298
68365
|
|
|
68299
68366
|
|
|
68300
|
-
var InputArea_st_css_namespace_ = "
|
|
68367
|
+
var InputArea_st_css_namespace_ = "wds_1_125_0_InputArea";
|
|
68301
68368
|
var InputArea_st_css_style_ = classesRuntime.bind(null, InputArea_st_css_namespace_);
|
|
68302
68369
|
|
|
68303
68370
|
var InputArea_st_css_cssStates = statesRuntime.bind(null, InputArea_st_css_namespace_);
|
|
@@ -68305,12 +68372,12 @@ var InputArea_st_css_style = (/* unused pure expression or super */ null && (Inp
|
|
|
68305
68372
|
var InputArea_st_css_st = InputArea_st_css_style_;
|
|
68306
68373
|
|
|
68307
68374
|
var InputArea_st_css_namespace = (/* unused pure expression or super */ null && (InputArea_st_css_namespace_));
|
|
68308
|
-
var InputArea_st_css_classes = {"root":"
|
|
68375
|
+
var InputArea_st_css_classes = {"root":"wds_1_125_0_InputArea__root","text-small-thin":"wds_1_125_0_StylableTypography__text-small-thin","text-medium-thin":"wds_1_125_0_StylableTypography__text-medium-thin","defaultScrollBar":"wds_1_125_0_defaultscrollbar__defaultScrollBar","inputArea":"wds_1_125_0_InputArea__inputArea","counter":"wds_1_125_0_InputArea__counter","status":"wds_1_125_0_InputArea__status","disabled":"wds_1_125_0_InputArea__disabled","readOnly":"wds_1_125_0_InputArea__readOnly"};
|
|
68309
68376
|
var InputArea_st_css_keyframes = {};
|
|
68310
68377
|
var InputArea_st_css_layers = {};
|
|
68311
68378
|
var InputArea_st_css_containers = {};
|
|
68312
68379
|
var InputArea_st_css_stVars = {};
|
|
68313
|
-
var InputArea_st_css_vars = {"wds-font-size-body-small":"--wds-font-size-body-small","wds-color-blue-500":"--wds-color-blue-500","wds-color-text-standard-primary":"--wds-color-text-standard-primary","wds-color-text-disabled":"--wds-color-text-disabled","wds-color-text-placeholder":"--wds-color-text-placeholder","wds-color-fill-standard-tertiary":"--wds-color-fill-standard-tertiary","wds-color-fill-standard-tertiary-hover":"--wds-color-fill-standard-tertiary-hover","wds-color-border-standard-secondary":"--wds-color-border-standard-secondary","wds-color-border-destructive-secondary-active":"--wds-color-border-destructive-secondary-active","wds-color-border-warning-secondary-active":"--wds-color-border-warning-secondary-active","wds-color-border-standard-secondary-active":"--wds-color-border-standard-secondary-active","wds-color-border-standard-secondary-readonly":"--wds-color-border-standard-secondary-readonly","wds-color-border-standard-secondary-disabled":"--wds-color-border-standard-secondary-disabled","wds-color-border-standard-secondary-hover":"--wds-color-border-standard-secondary-hover","wds-color-fill-standard-tertiary-readonly":"--wds-color-fill-standard-tertiary-readonly","wds-shadow-focus-standard":"--wds-shadow-focus-standard","wds-shadow-focus-destructive":"--wds-shadow-focus-destructive","wds-shadow-focus-warning":"--wds-shadow-focus-warning","wds-space-100":"--wds-space-100","wds-input-area-padding-vertical-small":"--wds-input-area-padding-vertical-small","wds-input-area-padding-right-small":"--wds-input-area-padding-right-small","wds-input-area-padding-left-small":"--wds-input-area-padding-left-small","wds-input-area-padding-vertical-medium":"--wds-input-area-padding-vertical-medium","wds-input-area-padding-right-medium":"--wds-input-area-padding-right-medium","wds-input-area-padding-left-medium":"--wds-input-area-padding-left-medium","wds-input-area-border-radius-default-medium":"--wds-input-area-border-radius-default-medium","wds-input-value-font-size-small":"--wds-input-value-font-size-small","wds-input-value-font-size-medium":"--wds-input-value-font-size-medium","wds-input-value-font-line-height-small":"--wds-input-value-font-line-height-small","wds-input-value-font-line-height-medium":"--wds-input-value-font-line-height-medium","wds-border-radius-full":"--wds-border-radius-full","wds-input-size-small":"--wds-input-size-small","wds-input-size-medium":"--wds-input-size-medium","border-color":"--
|
|
68380
|
+
var InputArea_st_css_vars = {"wds-font-size-body-small":"--wds-font-size-body-small","wds-color-blue-500":"--wds-color-blue-500","wds-color-text-standard-primary":"--wds-color-text-standard-primary","wds-color-text-disabled":"--wds-color-text-disabled","wds-color-text-placeholder":"--wds-color-text-placeholder","wds-color-fill-standard-tertiary":"--wds-color-fill-standard-tertiary","wds-color-fill-standard-tertiary-hover":"--wds-color-fill-standard-tertiary-hover","wds-color-border-standard-secondary":"--wds-color-border-standard-secondary","wds-color-border-destructive-secondary-active":"--wds-color-border-destructive-secondary-active","wds-color-border-warning-secondary-active":"--wds-color-border-warning-secondary-active","wds-color-border-standard-secondary-active":"--wds-color-border-standard-secondary-active","wds-color-border-standard-secondary-readonly":"--wds-color-border-standard-secondary-readonly","wds-color-border-standard-secondary-disabled":"--wds-color-border-standard-secondary-disabled","wds-color-border-standard-secondary-hover":"--wds-color-border-standard-secondary-hover","wds-color-fill-standard-tertiary-readonly":"--wds-color-fill-standard-tertiary-readonly","wds-shadow-focus-standard":"--wds-shadow-focus-standard","wds-shadow-focus-destructive":"--wds-shadow-focus-destructive","wds-shadow-focus-warning":"--wds-shadow-focus-warning","wds-space-100":"--wds-space-100","wds-input-area-padding-vertical-small":"--wds-input-area-padding-vertical-small","wds-input-area-padding-right-small":"--wds-input-area-padding-right-small","wds-input-area-padding-left-small":"--wds-input-area-padding-left-small","wds-input-area-padding-vertical-medium":"--wds-input-area-padding-vertical-medium","wds-input-area-padding-right-medium":"--wds-input-area-padding-right-medium","wds-input-area-padding-left-medium":"--wds-input-area-padding-left-medium","wds-input-area-border-radius-default-medium":"--wds-input-area-border-radius-default-medium","wds-input-value-font-size-small":"--wds-input-value-font-size-small","wds-input-value-font-size-medium":"--wds-input-value-font-size-medium","wds-input-value-font-line-height-small":"--wds-input-value-font-line-height-small","wds-input-value-font-line-height-medium":"--wds-input-value-font-line-height-medium","wds-border-radius-full":"--wds-border-radius-full","wds-input-size-small":"--wds-input-size-small","wds-input-size-medium":"--wds-input-size-medium","border-color":"--wds_1_125_0_InputArea-border-color","border-color-destructive":"--wds_1_125_0_InputArea-border-color-destructive","border-color-warning":"--wds_1_125_0_InputArea-border-color-warning","border-color-disabled":"--wds_1_125_0_InputArea-border-color-disabled","wds-input-area-height-small-adjusted":"--wds_1_125_0_InputArea-wds-input-area-height-small-adjusted","wds-input-area-height-medium-adjusted":"--wds_1_125_0_InputArea-wds-input-area-height-medium-adjusted"};
|
|
68314
68381
|
|
|
68315
68382
|
|
|
68316
68383
|
|
|
@@ -68341,6 +68408,7 @@ const constants_dataAttr = {
|
|
|
68341
68408
|
|
|
68342
68409
|
|
|
68343
68410
|
|
|
68411
|
+
|
|
68344
68412
|
/**
|
|
68345
68413
|
* General inputArea container
|
|
68346
68414
|
*/
|
|
@@ -68377,10 +68445,10 @@ class InputArea extends (external_React_default()).PureComponent {
|
|
|
68377
68445
|
this.textArea && this.textArea.select();
|
|
68378
68446
|
};
|
|
68379
68447
|
this.calculateComputedRows = () => {
|
|
68380
|
-
const { minRowsAutoGrow } = this.props;
|
|
68448
|
+
const { minRowsAutoGrow, maxRowsAutoGrow } = this.props;
|
|
68381
68449
|
this.setState({ computedRows: 1 }, () => {
|
|
68382
68450
|
const rowsCount = this._getRowsCount();
|
|
68383
|
-
const computedRows =
|
|
68451
|
+
const computedRows = clamp_default()(rowsCount, minRowsAutoGrow, maxRowsAutoGrow);
|
|
68384
68452
|
this.setState({
|
|
68385
68453
|
computedRows,
|
|
68386
68454
|
});
|
|
@@ -68471,8 +68539,8 @@ class InputArea extends (external_React_default()).PureComponent {
|
|
|
68471
68539
|
}
|
|
68472
68540
|
}
|
|
68473
68541
|
componentDidUpdate(prevProps) {
|
|
68474
|
-
const { minRowsAutoGrow, value, defaultValue, autoGrow, hasCounter } = this.props;
|
|
68475
|
-
if (autoGrow && prevProps.minRowsAutoGrow !== minRowsAutoGrow) {
|
|
68542
|
+
const { minRowsAutoGrow, maxRowsAutoGrow, value, defaultValue, autoGrow, hasCounter, } = this.props;
|
|
68543
|
+
if (autoGrow && (prevProps.minRowsAutoGrow !== minRowsAutoGrow || prevProps.maxRowsAutoGrow !== maxRowsAutoGrow)) {
|
|
68476
68544
|
this.calculateComputedRows();
|
|
68477
68545
|
}
|
|
68478
68546
|
if (hasCounter && prevProps.value !== value) {
|
|
@@ -68540,9 +68608,12 @@ class InputArea extends (external_React_default()).PureComponent {
|
|
|
68540
68608
|
}
|
|
68541
68609
|
// For autoGrow prop min rows is 2 so the textarea does not look like an input
|
|
68542
68610
|
InputArea.MIN_ROWS = 2;
|
|
68611
|
+
// For autoGrow prop max rows is Infinity to keep backwards compatibility
|
|
68612
|
+
InputArea.MAX_ROWS = Number.POSITIVE_INFINITY;
|
|
68543
68613
|
InputArea.displayName = 'InputArea';
|
|
68544
68614
|
InputArea.defaultProps = {
|
|
68545
68615
|
minRowsAutoGrow: InputArea.MIN_ROWS,
|
|
68616
|
+
maxRowsAutoGrow: InputArea.MAX_ROWS,
|
|
68546
68617
|
size: 'medium',
|
|
68547
68618
|
};
|
|
68548
68619
|
InputArea.propTypes = {
|
|
@@ -68612,6 +68683,8 @@ InputArea.propTypes = {
|
|
|
68612
68683
|
autoGrow: (prop_types_default()).bool,
|
|
68613
68684
|
/** Sets the minimum amount of rows the component can have in `autoGrow` mode */
|
|
68614
68685
|
minRowsAutoGrow: (prop_types_default()).number,
|
|
68686
|
+
/** Sets the maximum amount of rows the component can have in `autoGrow` mode */
|
|
68687
|
+
maxRowsAutoGrow: (prop_types_default()).number,
|
|
68615
68688
|
/** Indicates that element can be focused and where it participates in sequential keyboard navigation. */
|
|
68616
68689
|
tabIndex: (prop_types_default()).number,
|
|
68617
68690
|
/** Controls placement of a status tooltip. */
|