@capillarytech/blaze-ui 1.2.8-beta.1 → 1.3.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/CapUnifiedSelect/ENHANCE_OPTIONS_README.md +42 -0
- package/dist/CapUnifiedSelect/enhanceOptions.d.ts.map +1 -1
- package/dist/CapUnifiedSelect/enhanceOptions.test.d.ts +2 -0
- package/dist/CapUnifiedSelect/enhanceOptions.test.d.ts.map +1 -0
- package/dist/CapUnifiedSelect/enhanceOptionsRenderers.d.ts +7 -0
- package/dist/CapUnifiedSelect/enhanceOptionsRenderers.d.ts.map +1 -0
- package/dist/CapUnifiedSelect/enhanceOptionsRenderers.test.d.ts +2 -0
- package/dist/CapUnifiedSelect/enhanceOptionsRenderers.test.d.ts.map +1 -0
- package/dist/CapUnifiedSelect/enhanceOptionsUtils.d.ts +4 -0
- package/dist/CapUnifiedSelect/enhanceOptionsUtils.d.ts.map +1 -0
- package/dist/CapUnifiedSelect/enhanceOptionsUtils.test.d.ts +2 -0
- package/dist/CapUnifiedSelect/enhanceOptionsUtils.test.d.ts.map +1 -0
- package/dist/CapUnifiedSelect/index.js +90 -75
- package/dist/CapUnifiedSelect/index.js.map +1 -1
- package/dist/index.js +90 -75
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Enhance Options Module
|
|
2
|
+
|
|
3
|
+
This module enhances `OptionData[]` with React components for rendering in `CapUnifiedSelect`. It adds decorated titles with suffixes, tooltips, and info icons.
|
|
4
|
+
|
|
5
|
+
## File Structure
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
CapUnifiedSelect/
|
|
9
|
+
├── enhanceOptions.tsx # Main orchestrator – enhances options with React titles
|
|
10
|
+
├── enhanceOptionsUtils.ts # Pure utilities (e.g. isSuffixTruncatable type guard)
|
|
11
|
+
├── enhanceOptionsRenderers.tsx # React render helpers (OptionSuffix, OptionTitle)
|
|
12
|
+
├── enhanceOptions.test.tsx
|
|
13
|
+
├── enhanceOptionsUtils.test.ts
|
|
14
|
+
└── enhanceOptionsRenderers.test.tsx
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## What Each File Does
|
|
18
|
+
|
|
19
|
+
| File | Purpose |
|
|
20
|
+
|------|---------|
|
|
21
|
+
| **enhanceOptions.tsx** | Exports `enhanceOptionsWithComponents` – handles flat vs tree options, recursively enhances children for tree select types. |
|
|
22
|
+
| **enhanceOptionsUtils.ts** | Exports `isSuffixTruncatable` – type guard to determine if a suffix (string/number) should be wrapped in a tooltip for full-text display on hover. |
|
|
23
|
+
| **enhanceOptionsRenderers.tsx** | Exports `renderOptionSuffix` and `renderOptionTitle` – renders the option row (label, suffix, tooltip, info icon). |
|
|
24
|
+
|
|
25
|
+
## Option Data Fields Used
|
|
26
|
+
|
|
27
|
+
- `label` / `value` – display text
|
|
28
|
+
- `hoverText` – tooltip on label hover
|
|
29
|
+
- `optionSuffix` – text shown after the label (string/number wrapped in tooltip; React nodes rendered as-is)
|
|
30
|
+
- `optionSuffixInfo` – info icon tooltip next to suffix
|
|
31
|
+
- `optionTooltipInfo` – info icon tooltip next to the option row
|
|
32
|
+
- `disabled` – applies disabled styling
|
|
33
|
+
|
|
34
|
+
## Running Tests
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
npm test -- enhanceOptions
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Context
|
|
41
|
+
|
|
42
|
+
This module was split from a single `enhanceOptions.tsx` file for better testability and maintainability. Each layer can be unit tested in isolation with appropriate mocks (e.g. `CapTooltip`, `CapTooltipWithInfo`, `CapRow`, `CapLabel`).
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"enhanceOptions.d.ts","sourceRoot":"","sources":["../../components/CapUnifiedSelect/enhanceOptions.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"enhanceOptions.d.ts","sourceRoot":"","sources":["../../components/CapUnifiedSelect/enhanceOptions.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAgB,KAAK,UAAU,EAAE,MAAM,aAAa,CAAC;AAE5D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAE1C;;;GAGG;AACH,eAAO,MAAM,4BAA4B,GACvC,SAAS,UAAU,EAAE,EACrB,MAAM,UAAU,KACf,UAAU,EAwBZ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enhanceOptions.test.d.ts","sourceRoot":"","sources":["../../components/CapUnifiedSelect/enhanceOptions.test.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { OptionData } from './types';
|
|
3
|
+
/** Renders optionSuffix with truncation and optional tooltip for full text on hover */
|
|
4
|
+
export declare function renderOptionSuffix(opt: OptionData): React.ReactNode;
|
|
5
|
+
/** Renders the option row title (label + optional suffix/tooltip) */
|
|
6
|
+
export declare function renderOptionTitle(opt: OptionData): React.ReactNode;
|
|
7
|
+
//# sourceMappingURL=enhanceOptionsRenderers.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enhanceOptionsRenderers.d.ts","sourceRoot":"","sources":["../../components/CapUnifiedSelect/enhanceOptionsRenderers.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAE1C,uFAAuF;AACvF,wBAAgB,kBAAkB,CAAC,GAAG,EAAE,UAAU,GAAG,KAAK,CAAC,SAAS,CAanE;AAED,qEAAqE;AACrE,wBAAgB,iBAAiB,CAAC,GAAG,EAAE,UAAU,GAAG,KAAK,CAAC,SAAS,CA8BlE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enhanceOptionsRenderers.test.d.ts","sourceRoot":"","sources":["../../components/CapUnifiedSelect/enhanceOptionsRenderers.test.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
/** Check if optionSuffix is a string or number so we can show full text in a tooltip on hover */
|
|
3
|
+
export declare const isSuffixTruncatable: (suffix: React.ReactNode) => suffix is string | number;
|
|
4
|
+
//# sourceMappingURL=enhanceOptionsUtils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enhanceOptionsUtils.d.ts","sourceRoot":"","sources":["../../components/CapUnifiedSelect/enhanceOptionsUtils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,iGAAiG;AACjG,eAAO,MAAM,mBAAmB,GAAI,QAAQ,KAAK,CAAC,SAAS,KAAG,MAAM,IAAI,MAAM,GAAG,MACvB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enhanceOptionsUtils.test.d.ts","sourceRoot":"","sources":["../../components/CapUnifiedSelect/enhanceOptionsUtils.test.ts"],"names":[],"mappings":""}
|
|
@@ -3445,6 +3445,74 @@ function useSafeState(defaultValue) {
|
|
|
3445
3445
|
|
|
3446
3446
|
/***/ }),
|
|
3447
3447
|
|
|
3448
|
+
/***/ 1419:
|
|
3449
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
3450
|
+
|
|
3451
|
+
"use strict";
|
|
3452
|
+
|
|
3453
|
+
|
|
3454
|
+
exports.__esModule = true;
|
|
3455
|
+
exports.renderOptionSuffix = renderOptionSuffix;
|
|
3456
|
+
exports.renderOptionTitle = renderOptionTitle;
|
|
3457
|
+
var _classnames = _interopRequireDefault(__webpack_require__(6942));
|
|
3458
|
+
var _react = _interopRequireDefault(__webpack_require__(9206));
|
|
3459
|
+
var _CapLabel = _interopRequireDefault(__webpack_require__(3737));
|
|
3460
|
+
var _CapRow = _interopRequireDefault(__webpack_require__(7375));
|
|
3461
|
+
var _CapTooltip = _interopRequireDefault(__webpack_require__(5636));
|
|
3462
|
+
var _CapTooltipWithInfo = _interopRequireDefault(__webpack_require__(2608));
|
|
3463
|
+
var _enhanceOptionsUtils = __webpack_require__(8280);
|
|
3464
|
+
var _styles = _interopRequireDefault(__webpack_require__(8263));
|
|
3465
|
+
var _jsxRuntime = __webpack_require__(4848);
|
|
3466
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
3467
|
+
/** Renders optionSuffix with truncation and optional tooltip for full text on hover */
|
|
3468
|
+
function renderOptionSuffix(opt) {
|
|
3469
|
+
if (!(opt != null && opt.optionSuffix)) return null;
|
|
3470
|
+
const suffixContent = /*#__PURE__*/(0, _jsxRuntime.jsxs)("span", {
|
|
3471
|
+
className: _styles.default['cap-unified-select-option-suffix'],
|
|
3472
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
|
|
3473
|
+
className: _styles.default['cap-unified-select-option-suffix-text'],
|
|
3474
|
+
children: opt.optionSuffix
|
|
3475
|
+
}), (opt == null ? void 0 : opt.optionSuffixInfo) && /*#__PURE__*/(0, _jsxRuntime.jsx)(_CapTooltipWithInfo.default, {
|
|
3476
|
+
title: opt.optionSuffixInfo
|
|
3477
|
+
})]
|
|
3478
|
+
});
|
|
3479
|
+
return (0, _enhanceOptionsUtils.isSuffixTruncatable)(opt.optionSuffix) ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_CapTooltip.default, {
|
|
3480
|
+
title: String(opt.optionSuffix),
|
|
3481
|
+
children: suffixContent
|
|
3482
|
+
}) : suffixContent;
|
|
3483
|
+
}
|
|
3484
|
+
|
|
3485
|
+
/** Renders the option row title (label + optional suffix/tooltip) */
|
|
3486
|
+
function renderOptionTitle(opt) {
|
|
3487
|
+
const displayText = (opt == null ? void 0 : opt.label) || (opt == null ? void 0 : opt.value);
|
|
3488
|
+
const tooltipTitle = opt == null ? void 0 : opt.hoverText;
|
|
3489
|
+
const isDisabled = (opt == null ? void 0 : opt.disabled) === true;
|
|
3490
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_CapRow.default, {
|
|
3491
|
+
className: _styles.default['cap-unified-select-option-with-suffix'],
|
|
3492
|
+
justify: "space-between",
|
|
3493
|
+
align: "middle",
|
|
3494
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
3495
|
+
className: _styles.default['cap-unified-select-option-label'],
|
|
3496
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_CapLabel.default, {
|
|
3497
|
+
type: "label14",
|
|
3498
|
+
className: (0, _classnames.default)(_styles.default['truncate-text'], {
|
|
3499
|
+
[_styles.default['option-disabled']]: isDisabled,
|
|
3500
|
+
[_styles.default['option-enabled']]: !isDisabled
|
|
3501
|
+
}),
|
|
3502
|
+
title: tooltipTitle,
|
|
3503
|
+
children: displayText
|
|
3504
|
+
})
|
|
3505
|
+
}), ((opt == null ? void 0 : opt.optionSuffix) || (opt == null ? void 0 : opt.optionTooltipInfo)) && /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
3506
|
+
className: _styles.default['cap-unified-select-option-end'],
|
|
3507
|
+
children: [renderOptionSuffix(opt), (opt == null ? void 0 : opt.optionTooltipInfo) && /*#__PURE__*/(0, _jsxRuntime.jsx)(_CapTooltipWithInfo.default, {
|
|
3508
|
+
title: opt.optionTooltipInfo
|
|
3509
|
+
})]
|
|
3510
|
+
})]
|
|
3511
|
+
});
|
|
3512
|
+
}
|
|
3513
|
+
|
|
3514
|
+
/***/ }),
|
|
3515
|
+
|
|
3448
3516
|
/***/ 1470:
|
|
3449
3517
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3450
3518
|
|
|
@@ -3526,15 +3594,8 @@ module.exports = ___CSS_LOADER_EXPORT___;
|
|
|
3526
3594
|
|
|
3527
3595
|
exports.__esModule = true;
|
|
3528
3596
|
exports.enhanceOptionsWithComponents = void 0;
|
|
3529
|
-
var _classnames = _interopRequireDefault(__webpack_require__(6942));
|
|
3530
|
-
var _react = _interopRequireDefault(__webpack_require__(9206));
|
|
3531
|
-
var _CapLabel = _interopRequireDefault(__webpack_require__(3737));
|
|
3532
|
-
var _CapRow = _interopRequireDefault(__webpack_require__(7375));
|
|
3533
|
-
var _CapTooltipWithInfo = _interopRequireDefault(__webpack_require__(2608));
|
|
3534
3597
|
var _constants = __webpack_require__(9788);
|
|
3535
|
-
var
|
|
3536
|
-
var _jsxRuntime = __webpack_require__(4848);
|
|
3537
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
3598
|
+
var _enhanceOptionsRenderers = __webpack_require__(1419);
|
|
3538
3599
|
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
3539
3600
|
/**
|
|
3540
3601
|
* Enhances options with React components for rendering
|
|
@@ -3544,38 +3605,8 @@ const enhanceOptionsWithComponents = (options, type) => {
|
|
|
3544
3605
|
if (!(options != null && options.length)) return [];
|
|
3545
3606
|
const isTree = type === _constants.SELECT_TYPES.TREE_SELECT || type === _constants.SELECT_TYPES.MULTI_TREE_SELECT;
|
|
3546
3607
|
const enhanceOptions = opts => opts.map(opt => {
|
|
3547
|
-
const displayText = (opt == null ? void 0 : opt.label) || (opt == null ? void 0 : opt.value);
|
|
3548
|
-
const tooltipTitle = opt == null ? void 0 : opt.hoverText;
|
|
3549
|
-
const isDisabled = (opt == null ? void 0 : opt.disabled) === true;
|
|
3550
|
-
const decoratedTitle = /*#__PURE__*/(0, _jsxRuntime.jsxs)(_CapRow.default, {
|
|
3551
|
-
className: _styles.default['cap-unified-select-option-with-suffix'],
|
|
3552
|
-
justify: "space-between",
|
|
3553
|
-
align: "middle",
|
|
3554
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
3555
|
-
className: _styles.default['cap-unified-select-option-label'],
|
|
3556
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_CapLabel.default, {
|
|
3557
|
-
type: "label14",
|
|
3558
|
-
className: (0, _classnames.default)(_styles.default['truncate-text'], {
|
|
3559
|
-
[_styles.default['option-disabled']]: isDisabled,
|
|
3560
|
-
[_styles.default['option-enabled']]: !isDisabled
|
|
3561
|
-
}),
|
|
3562
|
-
title: tooltipTitle,
|
|
3563
|
-
children: displayText
|
|
3564
|
-
})
|
|
3565
|
-
}), ((opt == null ? void 0 : opt.optionSuffix) || (opt == null ? void 0 : opt.optionTooltipInfo)) && /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
3566
|
-
className: _styles.default['cap-unified-select-option-end'],
|
|
3567
|
-
children: [(opt == null ? void 0 : opt.optionSuffix) && /*#__PURE__*/(0, _jsxRuntime.jsxs)("span", {
|
|
3568
|
-
className: _styles.default['cap-unified-select-option-suffix'],
|
|
3569
|
-
children: [opt == null ? void 0 : opt.optionSuffix, (opt == null ? void 0 : opt.optionSuffixInfo) && /*#__PURE__*/(0, _jsxRuntime.jsx)(_CapTooltipWithInfo.default, {
|
|
3570
|
-
title: opt == null ? void 0 : opt.optionSuffixInfo
|
|
3571
|
-
})]
|
|
3572
|
-
}), (opt == null ? void 0 : opt.optionTooltipInfo) && /*#__PURE__*/(0, _jsxRuntime.jsx)(_CapTooltipWithInfo.default, {
|
|
3573
|
-
title: opt == null ? void 0 : opt.optionTooltipInfo
|
|
3574
|
-
})]
|
|
3575
|
-
})]
|
|
3576
|
-
});
|
|
3577
3608
|
return _extends({}, opt, {
|
|
3578
|
-
title:
|
|
3609
|
+
title: (0, _enhanceOptionsRenderers.renderOptionTitle)(opt),
|
|
3579
3610
|
label: opt == null ? void 0 : opt.label,
|
|
3580
3611
|
children: opt != null && opt.children ? enhanceOptions(opt.children) : []
|
|
3581
3612
|
});
|
|
@@ -3583,41 +3614,10 @@ const enhanceOptionsWithComponents = (options, type) => {
|
|
|
3583
3614
|
if (isTree) {
|
|
3584
3615
|
return enhanceOptions(options);
|
|
3585
3616
|
}
|
|
3586
|
-
return options.map(opt => {
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
return _extends({}, opt, {
|
|
3591
|
-
title: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_CapRow.default, {
|
|
3592
|
-
className: _styles.default['cap-unified-select-option-with-suffix'],
|
|
3593
|
-
justify: "space-between",
|
|
3594
|
-
align: "middle",
|
|
3595
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
3596
|
-
className: _styles.default['cap-unified-select-option-label'],
|
|
3597
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_CapLabel.default, {
|
|
3598
|
-
type: "label14",
|
|
3599
|
-
className: (0, _classnames.default)(_styles.default['truncate-text'], {
|
|
3600
|
-
[_styles.default['option-disabled']]: isDisabled,
|
|
3601
|
-
[_styles.default['option-enabled']]: !isDisabled
|
|
3602
|
-
}),
|
|
3603
|
-
title: tooltipTitle,
|
|
3604
|
-
children: displayText
|
|
3605
|
-
})
|
|
3606
|
-
}), ((opt == null ? void 0 : opt.optionSuffix) || (opt == null ? void 0 : opt.optionTooltipInfo)) && /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
|
|
3607
|
-
className: _styles.default['cap-unified-select-option-end'],
|
|
3608
|
-
children: [(opt == null ? void 0 : opt.optionSuffix) && /*#__PURE__*/(0, _jsxRuntime.jsxs)("span", {
|
|
3609
|
-
className: _styles.default['cap-unified-select-option-suffix'],
|
|
3610
|
-
children: [opt == null ? void 0 : opt.optionSuffix, (opt == null ? void 0 : opt.optionSuffixInfo) && /*#__PURE__*/(0, _jsxRuntime.jsx)(_CapTooltipWithInfo.default, {
|
|
3611
|
-
title: opt == null ? void 0 : opt.optionSuffixInfo
|
|
3612
|
-
})]
|
|
3613
|
-
}), (opt == null ? void 0 : opt.optionTooltipInfo) && /*#__PURE__*/(0, _jsxRuntime.jsx)(_CapTooltipWithInfo.default, {
|
|
3614
|
-
title: opt == null ? void 0 : opt.optionTooltipInfo
|
|
3615
|
-
})]
|
|
3616
|
-
})]
|
|
3617
|
-
}),
|
|
3618
|
-
label: opt == null ? void 0 : opt.label
|
|
3619
|
-
});
|
|
3620
|
-
});
|
|
3617
|
+
return options.map(opt => _extends({}, opt, {
|
|
3618
|
+
title: (0, _enhanceOptionsRenderers.renderOptionTitle)(opt),
|
|
3619
|
+
label: opt == null ? void 0 : opt.label
|
|
3620
|
+
}));
|
|
3621
3621
|
};
|
|
3622
3622
|
exports.enhanceOptionsWithComponents = enhanceOptionsWithComponents;
|
|
3623
3623
|
|
|
@@ -40481,6 +40481,20 @@ var update = _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js
|
|
|
40481
40481
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5___default()) && (_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5___default().locals) ? (_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5___default().locals) : undefined);
|
|
40482
40482
|
|
|
40483
40483
|
|
|
40484
|
+
/***/ }),
|
|
40485
|
+
|
|
40486
|
+
/***/ 8280:
|
|
40487
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
40488
|
+
|
|
40489
|
+
"use strict";
|
|
40490
|
+
|
|
40491
|
+
|
|
40492
|
+
exports.__esModule = true;
|
|
40493
|
+
exports.isSuffixTruncatable = void 0;
|
|
40494
|
+
/** Check if optionSuffix is a string or number so we can show full text in a tooltip on hover */
|
|
40495
|
+
const isSuffixTruncatable = suffix => typeof suffix === 'string' || typeof suffix === 'number';
|
|
40496
|
+
exports.isSuffixTruncatable = isSuffixTruncatable;
|
|
40497
|
+
|
|
40484
40498
|
/***/ }),
|
|
40485
40499
|
|
|
40486
40500
|
/***/ 8412:
|
|
@@ -42711,7 +42725,7 @@ var ___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___ = __webpack_require__(1601);
|
|
|
42711
42725
|
var ___CSS_LOADER_API_IMPORT___ = __webpack_require__(6314);
|
|
42712
42726
|
var ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___);
|
|
42713
42727
|
// Module
|
|
42714
|
-
___CSS_LOADER_EXPORT___.push([module.id, `.blaze-ui-cap-unified-select-content{flex-direction:column;gap:.571rem}.blaze-ui-cap-unified-select-tree-select-container{position:relative;width:100%}.blaze-ui-cap-unified-select-header-wrapper{display:flex;align-items:center}.blaze-ui-cap-unified-select-header-wrapper.blaze-ui-disabled{opacity:.5;cursor:not-allowed}.blaze-ui-cap-unified-select-header-wrapper .blaze-ui-cap-unified-select-header-label{font-family:"Roboto",sans-serif;font-weight:500;font-size:1rem;line-height:1.429rem;letter-spacing:0}.blaze-ui-cap-unified-select-header-byline-text{font-family:"Roboto",sans-serif;font-weight:400;font-size:.857rem;letter-spacing:0;color:#97a0af}.blaze-ui-cap-unified-select-container{text-align:justify;min-width:13.786rem}.blaze-ui-cap-unified-select-container.blaze-ui-disabled{cursor:not-allowed}.blaze-ui-cap-unified-select-container.ant-select-focused .ant-select-selector{border:.071rem solid #091e42 !important}.blaze-ui-cap-unified-select-container .blaze-ui-cap-unified-select-suffix-wrapper{cursor:pointer;display:inline-flex;align-items:center}.blaze-ui-cap-unified-select-container .blaze-ui-cap-unified-select-suffix-wrapper.blaze-ui-suffix-disabled{cursor:not-allowed}.blaze-ui-cap-unified-select-container .blaze-ui-cap-unified-select-suffix-icon{color:#7a869a}.blaze-ui-cap-unified-select-container .blaze-ui-cap-tooltip-with-info-icon{margin-top:.143rem}.blaze-ui-cap-unified-select-container.blaze-ui-cap-unified-tree-select.blaze-ui-cap-unified-tree-select-readonly{pointer-events:none}.blaze-ui-cap-unified-select-container.blaze-ui-cap-unified-tree-select.blaze-ui-cap-unified-tree-select-readonly .blaze-ui-cap-unified-select-more-text{pointer-events:auto;color:unset !important}.blaze-ui-cap-unified-select-container.blaze-ui-cap-unified-tree-select .ant-select-tree-treenode{padding-left:.286rem}.blaze-ui-cap-unified-select-container.blaze-ui-cap-unified-tree-select-readonly .ant-select-selector{background-color:#fff;border-color:#ebecf0 !important;cursor:default}.blaze-ui-cap-unified-select-container.blaze-ui-cap-unified-tree-select-readonly .ant-select-arrow{pointer-events:auto;color:#b3bac5}.blaze-ui-cap-unified-select-container.blaze-ui-cap-unified-tree-select-readonly.ant-select-outlined:hover .ant-select-selector,.blaze-ui-cap-unified-select-container.blaze-ui-cap-unified-tree-select-readonly.ant-select-outlined:active .ant-select-selector,.blaze-ui-cap-unified-select-container.blaze-ui-cap-unified-tree-select-readonly.ant-select-outlined:focus .ant-select-selector{border-color:#ebecf0 !important}.blaze-ui-cap-unified-select-container .blaze-ui-cap-unified-select-status{color:#ea213a}.blaze-ui-cap-unified-select-container .ant-select-outlined:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer):hover .ant-select-selector{border-color:#7a869a}.blaze-ui-cap-unified-select-container .ant-select-selector{background-color:#fff !important;border:.071rem solid #7a869a !important;border-radius:.286rem !important;display:flex !important;align-items:center;overflow:hidden}.blaze-ui-cap-unified-select-container .ant-select-selector .ant-select-selection-placeholder{pointer-events:unset;color:#97a0af;display:flex;align-items:center}.blaze-ui-cap-unified-select-container .ant-select-selector .ant-select-selection-item{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:calc(100% - 2.857rem)}.blaze-ui-cap-unified-select-container .ant-select-selector .ant-select-selection-wrap{flex:1 1 0;min-width:0}.blaze-ui-cap-unified-select-container .ant-select-prefix{font-size:1rem;font-weight:400;color:unset !important;line-height:1.429rem;overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important;flex:0 1 auto;min-width:0;max-width:calc(100% - 7rem) !important}.blaze-ui-cap-unified-select-container .ant-select-disabled .ant-select-prefix{color:unset !important}.blaze-ui-cap-unified-select-container .ant-input-affix-wrapper .ant-input-prefix{left:.857rem}.blaze-ui-cap-unified-select-container .ant-select-selector{border-color:#7a869a !important;box-shadow:none !important;outline:0}.blaze-ui-cap-unified-select-container .ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):hover{background-color:#47af46}.blaze-ui-cap-unified-select-container .ant-select-dropdown{margin-top:-0.571rem !important;border-radius:.286rem;background-color:#fff;box-shadow:0 .286rem .571rem -0.143rem rgba(9,30,66,.15),0 0 .071rem 0 rgba(9,30,66,.1);max-height:25.714rem;overflow:visible}.blaze-ui-cap-unified-select-container .ant-select-outlined.ant-select-multiple .ant-select-selection-wrap .ant-select-selection-item{background:rgba(0,0,0,0)}.blaze-ui-cap-unified-select-container .ant-select-multiple .ant-select-selection-wrap .ant-select-selection-item,.blaze-ui-cap-unified-select-container .ant-select-selection-wrap .ant-select-selection-item{background:rgba(0,0,0,0)}.blaze-ui-cap-unified-select-container .ant-select-multiple .ant-select-selection-wrap{align-self:center}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-search-container{border-bottom:.071rem solid #ebecf0 !important;line-height:2.857rem !important}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-search-container .blaze-ui-cap-unified-select-search-icon{color:#b3bac5}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-select-all-container{padding:.643rem 1.071rem;display:flex;align-items:center;border-bottom:.071rem solid #ebecf0;height:2.857rem}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-select-all-container .blaze-ui-cap-unified-select-select-all-checkbox{display:contents !important}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-upload-container{cursor:pointer;display:flex;align-items:center;border-bottom:.071rem solid #ebecf0;height:2.857rem;padding-left:1.143rem}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-upload-container .blaze-ui-cap-unified-select-upload-icon{color:#2466ea}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-upload-container .blaze-ui-cap-unified-select-upload-label{margin-left:.857rem;color:#2466ea}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-confirm-container{display:flex;align-items:center;height:3.429rem;padding:.5rem;border-top:.071rem solid #ebecf0}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-confirm-container .blaze-ui-cap-unified-select-confirm-button-group{display:flex;padding-left:.571rem;align-items:center;width:100%}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-confirm-container .blaze-ui-cap-unified-select-confirm-button-group .blaze-ui-cap-unified-select-confirm-button{background-color:#47af46;height:2.286rem;width:6.714rem;color:#fff}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-confirm-container .blaze-ui-cap-unified-select-confirm-button-group .blaze-ui-cap-unified-select-confirm-button:hover{background-color:#1f9a1d}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-confirm-container .blaze-ui-cap-unified-select-confirm-button-group .blaze-ui-cap-unified-select-confirm-button:disabled{background-color:#a1d8a0}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-confirm-container .blaze-ui-cap-unified-select-confirm-button-group .blaze-ui-cap-unified-select-cancel-button{border:rgba(0,0,0,0);box-shadow:none;width:5.714rem}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-confirm-container .blaze-ui-cap-unified-select-confirm-button-group .blaze-ui-cap-unified-select-selected-count{display:flex;margin-left:auto;font-size:.857rem;font-weight:400;line-height:1.143rem;color:#5e6c84}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-tree-clear-container{display:flex;justify-content:center;align-items:center;height:2.857rem;border-top:.071rem solid #ebecf0;cursor:pointer;color:#091e42}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-tree-clear-container:hover{background-color:#ebecf0}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-tree-clear-container .blaze-ui-cap-unified-select-tree-clear-label{font-size:1rem;font-weight:400}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-footer-download-container{cursor:pointer;display:flex;align-items:center;margin-left:auto;padding-right:1.143rem;gap:.857rem;flex-wrap:nowrap}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-footer-download-container:hover{opacity:.8}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-footer-download-container .blaze-ui-cap-unified-select-footer-download-icon{color:#2466ea;display:inline-flex;align-items:center;justify-content:center;flex-shrink:0;line-height:1}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-footer-download-container .blaze-ui-cap-unified-select-footer-download-label{color:#2466ea;font-family:Roboto,sans-serif;font-weight:400;font-style:normal;font-size:.857rem;line-height:1.143rem;letter-spacing:0;white-space:nowrap;display:inline-flex;align-items:center}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-no-result{display:flex;flex-direction:column;align-items:center;justify-content:center;height:14.286rem;color:#97a0af;font-size:1rem}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-no-result .blaze-ui-cap-unified-select-no-result-text{font-weight:500}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-loading-container{display:flex;flex-direction:column;align-items:center;justify-content:center;height:14.286rem;width:100%;gap:.571rem}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-loading-more{display:flex;align-items:center;justify-content:center;padding:.857rem;border-top:.071rem solid #ebecf0;color:#97a0af}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-menu-wrapper{position:relative;width:100%}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-loading-overlay{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;flex-direction:column;align-items:center;justify-content:center;background-color:rgba(255,255,255,.8);z-index:10;gap:.571rem;color:#97a0af}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-option-with-suffix{display:flex;justify-content:start;align-items:center;width:100%;height:100%;line-height:1.5;vertical-align:middle;flex:1}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-option-with-suffix .blaze-ui-cap-unified-select-option-label{display:flex;align-items:center;flex-shrink:1;min-width:0}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-option-with-suffix .blaze-ui-cap-unified-select-option-label .blaze-ui-truncate-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-option-with-suffix .blaze-ui-cap-unified-select-option-label .blaze-ui-truncate-text.blaze-ui-option-enabled{color:#091e42 !important}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-option-with-suffix .blaze-ui-cap-unified-select-option-label .blaze-ui-truncate-text.blaze-ui-option-disabled{color:#b3bac5 !important}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-option-with-suffix .blaze-ui-cap-unified-select-option-end{display:flex;align-items:center;gap:.571rem;flex-shrink:0;margin-left:auto}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-option-with-suffix .blaze-ui-cap-unified-select-option-suffix{display:flex;align-items:center;padding:0 .571rem;max-height:1.429rem;white-space:nowrap}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-option-with-suffix .blaze-ui-cap-tooltip-with-info .blaze-ui-cap-tooltip-with-info-icon{margin-top:.357rem;color:#42526e}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-option-with-suffix .blaze-ui-cap-tooltip-with-info .blaze-ui-cap-tooltip-with-info-icon .blaze-ui-cap-icon{color:#42526e}.blaze-ui-cap-unified-select-popup .ant-select-dropdown .ant-select-dropdown-menu{margin-top:0 !important}.blaze-ui-cap-unified-select-popup .ant-select-dropdown .ant-select-dropdown-menu .ant-select-dropdown-menu-item{padding:.571rem 1.714rem !important;height:unset !important;font-size:1rem !important;color:#091e42 !important}.blaze-ui-cap-unified-select-popup .ant-select-dropdown .ant-select-dropdown-menu-item-disabled{color:#b3bac5 !important;cursor:not-allowed !important;line-height:1.428rem !important;font-size:1rem !important}.blaze-ui-cap-unified-select-popup .ant-select-dropdown .ant-select-dropdown-menu-item-disabled .blaze-ui-cap-unified-select-option-label .blaze-ui-truncate-text{color:#b3bac5 !important}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-node-content-wrapper{background-color:rgba(0,0,0,0);height:100%;display:flex;align-items:center}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-node-content-wrapper.ant-select-tree-node-content-wrapper-normal{width:95%}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-node-content-wrapper:hover{background-color:rgba(0,0,0,0)}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-treenode-active .ant-select-tree-node-content-wrapper{background-color:rgba(0,0,0,0) !important}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-treenode{height:2.857rem;margin-bottom:0;display:flex;align-items:center;width:100%}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-treenode:hover{background-color:#fffbe6}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-treenode .blaze-ui-cap-unified-select-option-label{color:#091e42}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-treenode .blaze-ui-cap-unified-select-option-label .blaze-ui-truncate-text{color:#091e42 !important}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-node-selected{background-color:#f4f5f7 !important}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-treenode-disabled{cursor:not-allowed !important}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-treenode-disabled .blaze-ui-cap-unified-select-option-label{color:#b3bac5}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-treenode-disabled .blaze-ui-cap-unified-select-option-label .blaze-ui-truncate-text{color:#b3bac5 !important}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-treenode-disabled .blaze-ui-cap-icon{color:#b3bac5 !important}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-treenode.ant-select-tree-treenode-selected{background-color:#f4f5f7}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-treenode-leaf .ant-select-tree-switcher-noop{display:none}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-checkbox{display:flex;align-items:center;justify-content:center;line-height:1;vertical-align:middle}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-checkbox .ant-select-tree-checkbox-inner{height:1.286rem;width:1.286rem;border:.143rem solid #b3bac5;border-radius:.286rem;display:flex;align-items:center;justify-content:center}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner{background-color:#47af46;border:.143rem solid #47af46 !important}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner:hover{background-color:#47af46;border:.143rem solid #47af46 !important}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-checkbox.ant-select-tree-checkbox-indeterminate .ant-select-tree-checkbox-inner{background-color:#47af46 !important;border-color:#47af46 !important}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-checkbox.ant-select-tree-checkbox-indeterminate .ant-select-tree-checkbox-inner::after{content:"";position:absolute;top:50%;left:50%;width:.714rem;height:.143rem;background-color:#fff;transform:translate(-50%, -50%);border-radius:.071rem}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-node-content-wrapper{border-radius:0;padding-left:.214rem;width:100%;display:flex;align-items:center}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-node-content-wrapper .ant-select-tree-title{width:100%;display:flex}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-indent{margin-left:.857rem;display:flex;align-items:center}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-switcher{display:flex;align-items:center;justify-content:center}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-switcher:not(.ant-select-tree-switcher-noop):hover:before{background-color:rgba(0,0,0,0)}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-switcher .ant-select-tree-switcher-icon{font-size:.857rem;margin-top:1.286rem}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-list-holder-inner{width:100%}.blaze-ui-cap-unified-select-popup .ant-tree-select:hover .ant-select-selector{border-color:#7a869a}.blaze-ui-cap-unified-select-popup .ant-tree-select-focused .ant-select-selector,.blaze-ui-cap-unified-select-popup .ant-tree-select-open .ant-select-selector{border-color:#7a869a;box-shadow:none;outline:none}.blaze-ui-cap-unified-select-popup .ant-checkbox-inner{height:1.286rem;width:1.286rem;border:.143rem solid #b3bac5;border-radius:.286rem}.blaze-ui-cap-unified-select-popup .ant-checkbox-wrapper:not(.ant-checkbox-wrapper-disabled):hover .ant-checkbox-checked:not(.ant-checkbox-disabled) .ant-checkbox-inner{background-color:#47af46;border:.143rem solid #47af46 !important}.blaze-ui-cap-unified-select-popup .ant-checkbox-indeterminate .ant-checkbox-inner{background-color:#47af46 !important;border-color:#47af46 !important}.blaze-ui-cap-unified-select-popup .ant-checkbox-indeterminate .ant-checkbox-inner::after{content:"";position:absolute;top:50%;left:50%;width:.714rem;height:.143rem;background-color:#fff;transform:translate(-50%, -50%);border-radius:.071rem}.blaze-ui-cap-unified-select-popup .ant-input-affix-wrapper{padding-left:.571rem;border:none;box-shadow:none;border-radius:0;border-bottom:.071rem solid rgba(0,0,0,0);transition:border-color .2s ease}.blaze-ui-cap-unified-select-popup .ant-input-affix-wrapper:hover{border-bottom:.071rem solid #7a869a !important;box-shadow:none}.blaze-ui-cap-unified-select-popup .ant-input-affix-wrapper:focus-within{border-bottom:.071rem solid #091e42 !important;box-shadow:none;outline:none}.blaze-ui-cap-unified-select-popup .ant-input-affix-wrapper .ant-input{border:none !important;box-shadow:none !important}.blaze-ui-cap-unified-select-more-text{display:flex;align-items:center;cursor:pointer;position:absolute;right:0;top:50%;transform:translateY(-50%);padding-right:.857rem;z-index:1;pointer-events:auto;padding-left:.571rem}.blaze-ui-cap-unified-select-more-text .blaze-ui-cap-unified-select-more-text-label{padding-right:.571rem}.blaze-ui-cap-unified-select-more-text .blaze-ui-cap-unified-select-more-text-label:hover{color:#2466ea !important}.blaze-ui-cap-unified-select-more-text-disabled{cursor:not-allowed;color:#97a0af}.blaze-ui-cap-unified-select-more-text-disabled .blaze-ui-cap-unified-select-more-text-label-disabled{cursor:pointer;color:#97a0af !important}.blaze-ui-cap-unified-select-more-text-disabled .blaze-ui-cap-unified-select-more-text-label-disabled:hover{color:#2466ea !important}.blaze-ui-cap-unified-select-disabled-tooltip .ant-tooltip-inner{background-color:#091e42 !important;border-radius:.286rem;padding:.857rem 1.428rem;max-height:21.429rem;overflow-y:auto}.blaze-ui-cap-unified-select-disabled-tooltip .ant-tooltip-arrow::before{background-color:#091e42 !important}.blaze-ui-cap-unified-select-disabled-tooltip .blaze-ui-cap-unified-select-tooltip-loading{display:flex;flex-direction:column;min-width:14.571rem;max-height:14.571rem}.blaze-ui-cap-unified-select-disabled-tooltip .blaze-ui-cap-unified-select-tooltip-loading .ant-skeleton .ant-skeleton-content .ant-skeleton-paragraph>li{background:linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.15) 25%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(255, 255, 255, 0.15) 100%);background-size:200% 100%;border-radius:.286rem;height:1.143rem}.blaze-ui-cap-unified-select-disabled-tooltip .blaze-ui-cap-unified-select-tooltip-error{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.571rem;min-width:14.571rem;min-height:14.571rem}.blaze-ui-cap-unified-select-disabled-tooltip .blaze-ui-cap-unified-select-tooltip-error .blaze-ui-cap-unified-select-tooltip-error-icon{color:#97a0af}.blaze-ui-cap-unified-select-disabled-tooltip .blaze-ui-cap-unified-select-tooltip-error .blaze-ui-cap-unified-select-tooltip-error-text{color:#97a0af;font-family:"Roboto",sans-serif;font-weight:400;font-size:.857rem;line-height:1.143rem;text-align:center}.blaze-ui-cap-unified-select-disabled-tooltip .blaze-ui-cap-unified-select-tooltip-values{display:flex;flex-direction:column;gap:.571rem;min-width:14.571rem;max-height:14.571rem}.blaze-ui-cap-unified-select-disabled-tooltip .blaze-ui-cap-unified-select-tooltip-values .blaze-ui-cap-unified-select-tooltip-value-item{color:#fff;font-family:"Roboto",sans-serif;font-weight:500;font-size:1rem;line-height:1.429rem}`, ""]);
|
|
42728
|
+
___CSS_LOADER_EXPORT___.push([module.id, `.blaze-ui-cap-unified-select-content{flex-direction:column;gap:.571rem}.blaze-ui-cap-unified-select-tree-select-container{position:relative;width:100%}.blaze-ui-cap-unified-select-header-wrapper{display:flex;align-items:center}.blaze-ui-cap-unified-select-header-wrapper.blaze-ui-disabled{opacity:.5;cursor:not-allowed}.blaze-ui-cap-unified-select-header-wrapper .blaze-ui-cap-unified-select-header-label{font-family:"Roboto",sans-serif;font-weight:500;font-size:1rem;line-height:1.429rem;letter-spacing:0}.blaze-ui-cap-unified-select-header-byline-text{font-family:"Roboto",sans-serif;font-weight:400;font-size:.857rem;letter-spacing:0;color:#97a0af}.blaze-ui-cap-unified-select-container{text-align:justify;min-width:13.786rem}.blaze-ui-cap-unified-select-container.blaze-ui-disabled{cursor:not-allowed}.blaze-ui-cap-unified-select-container.ant-select-focused .ant-select-selector{border:.071rem solid #091e42 !important}.blaze-ui-cap-unified-select-container .blaze-ui-cap-unified-select-suffix-wrapper{cursor:pointer;display:inline-flex;align-items:center}.blaze-ui-cap-unified-select-container .blaze-ui-cap-unified-select-suffix-wrapper.blaze-ui-suffix-disabled{cursor:not-allowed}.blaze-ui-cap-unified-select-container .blaze-ui-cap-unified-select-suffix-icon{color:#7a869a}.blaze-ui-cap-unified-select-container .blaze-ui-cap-tooltip-with-info-icon{margin-top:.143rem}.blaze-ui-cap-unified-select-container.blaze-ui-cap-unified-tree-select.blaze-ui-cap-unified-tree-select-readonly{pointer-events:none}.blaze-ui-cap-unified-select-container.blaze-ui-cap-unified-tree-select.blaze-ui-cap-unified-tree-select-readonly .blaze-ui-cap-unified-select-more-text{pointer-events:auto;color:unset !important}.blaze-ui-cap-unified-select-container.blaze-ui-cap-unified-tree-select .ant-select-tree-treenode{padding-left:.286rem}.blaze-ui-cap-unified-select-container.blaze-ui-cap-unified-tree-select-readonly .ant-select-selector{background-color:#fff;border-color:#ebecf0 !important;cursor:default}.blaze-ui-cap-unified-select-container.blaze-ui-cap-unified-tree-select-readonly .ant-select-arrow{pointer-events:auto;color:#b3bac5}.blaze-ui-cap-unified-select-container.blaze-ui-cap-unified-tree-select-readonly.ant-select-outlined:hover .ant-select-selector,.blaze-ui-cap-unified-select-container.blaze-ui-cap-unified-tree-select-readonly.ant-select-outlined:active .ant-select-selector,.blaze-ui-cap-unified-select-container.blaze-ui-cap-unified-tree-select-readonly.ant-select-outlined:focus .ant-select-selector{border-color:#ebecf0 !important}.blaze-ui-cap-unified-select-container .blaze-ui-cap-unified-select-status{color:#ea213a}.blaze-ui-cap-unified-select-container .ant-select-outlined:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer):hover .ant-select-selector{border-color:#7a869a}.blaze-ui-cap-unified-select-container .ant-select-selector{background-color:#fff !important;border:.071rem solid #7a869a !important;border-radius:.286rem !important;display:flex !important;align-items:center;overflow:hidden}.blaze-ui-cap-unified-select-container .ant-select-selector .ant-select-selection-placeholder{pointer-events:unset;color:#97a0af;display:flex;align-items:center}.blaze-ui-cap-unified-select-container .ant-select-selector .ant-select-selection-item{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:calc(100% - 2.857rem)}.blaze-ui-cap-unified-select-container .ant-select-selector .ant-select-selection-wrap{flex:1 1 0;min-width:0}.blaze-ui-cap-unified-select-container .ant-select-prefix{font-size:1rem;font-weight:400;color:unset !important;line-height:1.429rem;overflow:hidden !important;text-overflow:ellipsis !important;white-space:nowrap !important;flex:0 1 auto;min-width:0;max-width:calc(100% - 7rem) !important}.blaze-ui-cap-unified-select-container .ant-select-disabled .ant-select-prefix{color:unset !important}.blaze-ui-cap-unified-select-container .ant-input-affix-wrapper .ant-input-prefix{left:.857rem}.blaze-ui-cap-unified-select-container .ant-select-selector{border-color:#7a869a !important;box-shadow:none !important;outline:0}.blaze-ui-cap-unified-select-container .ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):hover{background-color:#47af46}.blaze-ui-cap-unified-select-container .ant-select-dropdown{margin-top:-0.571rem !important;border-radius:.286rem;background-color:#fff;box-shadow:0 .286rem .571rem -0.143rem rgba(9,30,66,.15),0 0 .071rem 0 rgba(9,30,66,.1);max-height:25.714rem;overflow:visible}.blaze-ui-cap-unified-select-container .ant-select-outlined.ant-select-multiple .ant-select-selection-wrap .ant-select-selection-item{background:rgba(0,0,0,0)}.blaze-ui-cap-unified-select-container .ant-select-multiple .ant-select-selection-wrap .ant-select-selection-item,.blaze-ui-cap-unified-select-container .ant-select-selection-wrap .ant-select-selection-item{background:rgba(0,0,0,0)}.blaze-ui-cap-unified-select-container .ant-select-multiple .ant-select-selection-wrap{align-self:center}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-search-container{border-bottom:.071rem solid #ebecf0 !important;line-height:2.857rem !important}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-search-container .blaze-ui-cap-unified-select-search-icon{color:#b3bac5}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-select-all-container{padding:.643rem 1.071rem;display:flex;align-items:center;border-bottom:.071rem solid #ebecf0;height:2.857rem}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-select-all-container .blaze-ui-cap-unified-select-select-all-checkbox{display:contents !important}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-upload-container{cursor:pointer;display:flex;align-items:center;border-bottom:.071rem solid #ebecf0;height:2.857rem;padding-left:1.143rem}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-upload-container .blaze-ui-cap-unified-select-upload-icon{color:#2466ea}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-upload-container .blaze-ui-cap-unified-select-upload-label{margin-left:.857rem;color:#2466ea}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-confirm-container{display:flex;align-items:center;height:3.429rem;padding:.5rem;border-top:.071rem solid #ebecf0}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-confirm-container .blaze-ui-cap-unified-select-confirm-button-group{display:flex;padding-left:.571rem;align-items:center;width:100%}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-confirm-container .blaze-ui-cap-unified-select-confirm-button-group .blaze-ui-cap-unified-select-confirm-button{background-color:#47af46;height:2.286rem;width:6.714rem;color:#fff}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-confirm-container .blaze-ui-cap-unified-select-confirm-button-group .blaze-ui-cap-unified-select-confirm-button:hover{background-color:#1f9a1d}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-confirm-container .blaze-ui-cap-unified-select-confirm-button-group .blaze-ui-cap-unified-select-confirm-button:disabled{background-color:#a1d8a0}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-confirm-container .blaze-ui-cap-unified-select-confirm-button-group .blaze-ui-cap-unified-select-cancel-button{border:rgba(0,0,0,0);box-shadow:none;width:5.714rem}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-confirm-container .blaze-ui-cap-unified-select-confirm-button-group .blaze-ui-cap-unified-select-selected-count{display:flex;margin-left:auto;font-size:.857rem;font-weight:400;line-height:1.143rem;color:#5e6c84}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-tree-clear-container{display:flex;justify-content:center;align-items:center;height:2.857rem;border-top:.071rem solid #ebecf0;cursor:pointer;color:#091e42}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-tree-clear-container:hover{background-color:#ebecf0}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-tree-clear-container .blaze-ui-cap-unified-select-tree-clear-label{font-size:1rem;font-weight:400}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-footer-download-container{cursor:pointer;display:flex;align-items:center;margin-left:auto;padding-right:1.143rem;gap:.857rem;flex-wrap:nowrap}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-footer-download-container:hover{opacity:.8}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-footer-download-container .blaze-ui-cap-unified-select-footer-download-icon{color:#2466ea;display:inline-flex;align-items:center;justify-content:center;flex-shrink:0;line-height:1}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-footer-download-container .blaze-ui-cap-unified-select-footer-download-label{color:#2466ea;font-family:Roboto,sans-serif;font-weight:400;font-style:normal;font-size:.857rem;line-height:1.143rem;letter-spacing:0;white-space:nowrap;display:inline-flex;align-items:center}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-no-result{display:flex;flex-direction:column;align-items:center;justify-content:center;height:14.286rem;color:#97a0af;font-size:1rem}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-no-result .blaze-ui-cap-unified-select-no-result-text{font-weight:500}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-loading-container{display:flex;flex-direction:column;align-items:center;justify-content:center;height:14.286rem;width:100%;gap:.571rem}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-loading-more{display:flex;align-items:center;justify-content:center;padding:.857rem;border-top:.071rem solid #ebecf0;color:#97a0af}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-menu-wrapper{position:relative;width:100%}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-loading-overlay{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;flex-direction:column;align-items:center;justify-content:center;background-color:rgba(255,255,255,.8);z-index:10;gap:.571rem;color:#97a0af}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-option-with-suffix{display:flex;justify-content:start;align-items:center;width:100%;height:100%;line-height:1.5;vertical-align:middle;flex:1}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-option-with-suffix .blaze-ui-cap-unified-select-option-label{display:flex;align-items:center;flex-shrink:1;min-width:0}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-option-with-suffix .blaze-ui-cap-unified-select-option-label .blaze-ui-truncate-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-option-with-suffix .blaze-ui-cap-unified-select-option-label .blaze-ui-truncate-text.blaze-ui-option-enabled{color:#091e42 !important}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-option-with-suffix .blaze-ui-cap-unified-select-option-label .blaze-ui-truncate-text.blaze-ui-option-disabled{color:#b3bac5 !important}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-option-with-suffix .blaze-ui-cap-unified-select-option-end{display:flex;align-items:center;gap:.571rem;flex-shrink:1;min-width:0;max-width:50%;margin-left:auto}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-option-with-suffix .blaze-ui-cap-unified-select-option-end>*{min-width:0;max-width:100%;overflow:hidden}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-option-with-suffix .blaze-ui-cap-unified-select-option-suffix{display:flex;align-items:center;padding:0 .571rem;max-height:1.429rem;min-width:0;max-width:8rem;overflow:hidden;gap:.571rem}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-option-with-suffix .blaze-ui-cap-unified-select-option-suffix .blaze-ui-cap-unified-select-option-suffix-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;min-width:0;max-width:100%}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-option-with-suffix .blaze-ui-cap-tooltip-with-info .blaze-ui-cap-tooltip-with-info-icon{margin-top:.357rem;color:#42526e}.blaze-ui-cap-unified-select-popup .blaze-ui-cap-unified-select-option-with-suffix .blaze-ui-cap-tooltip-with-info .blaze-ui-cap-tooltip-with-info-icon .blaze-ui-cap-icon{color:#42526e}.blaze-ui-cap-unified-select-popup .ant-select-dropdown .ant-select-dropdown-menu{margin-top:0 !important}.blaze-ui-cap-unified-select-popup .ant-select-dropdown .ant-select-dropdown-menu .ant-select-dropdown-menu-item{padding:.571rem 1.714rem !important;height:unset !important;font-size:1rem !important;color:#091e42 !important}.blaze-ui-cap-unified-select-popup .ant-select-dropdown .ant-select-dropdown-menu-item-disabled{color:#b3bac5 !important;cursor:not-allowed !important;line-height:1.428rem !important;font-size:1rem !important}.blaze-ui-cap-unified-select-popup .ant-select-dropdown .ant-select-dropdown-menu-item-disabled .blaze-ui-cap-unified-select-option-label .blaze-ui-truncate-text{color:#b3bac5 !important}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-node-content-wrapper{background-color:rgba(0,0,0,0);height:100%;display:flex;align-items:center}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-node-content-wrapper.ant-select-tree-node-content-wrapper-normal{width:95%}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-node-content-wrapper:hover{background-color:rgba(0,0,0,0)}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-treenode-active .ant-select-tree-node-content-wrapper{background-color:rgba(0,0,0,0) !important}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-treenode{height:2.857rem;margin-bottom:0;display:flex;align-items:center;width:100%}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-treenode:hover{background-color:#fffbe6}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-treenode .blaze-ui-cap-unified-select-option-label{color:#091e42}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-treenode .blaze-ui-cap-unified-select-option-label .blaze-ui-truncate-text{color:#091e42 !important}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-node-selected{background-color:#f4f5f7 !important}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-treenode-disabled{cursor:not-allowed !important}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-treenode-disabled .blaze-ui-cap-unified-select-option-label{color:#b3bac5}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-treenode-disabled .blaze-ui-cap-unified-select-option-label .blaze-ui-truncate-text{color:#b3bac5 !important}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-treenode-disabled .blaze-ui-cap-icon{color:#b3bac5 !important}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-treenode.ant-select-tree-treenode-selected{background-color:#f4f5f7}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-treenode-leaf .ant-select-tree-switcher-noop{display:none}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-checkbox{display:flex;align-items:center;justify-content:center;line-height:1;vertical-align:middle}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-checkbox .ant-select-tree-checkbox-inner{height:1.286rem;width:1.286rem;border:.143rem solid #b3bac5;border-radius:.286rem;display:flex;align-items:center;justify-content:center}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner{background-color:#47af46;border:.143rem solid #47af46 !important}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner:hover{background-color:#47af46;border:.143rem solid #47af46 !important}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-checkbox.ant-select-tree-checkbox-indeterminate .ant-select-tree-checkbox-inner{background-color:#47af46 !important;border-color:#47af46 !important}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-checkbox.ant-select-tree-checkbox-indeterminate .ant-select-tree-checkbox-inner::after{content:"";position:absolute;top:50%;left:50%;width:.714rem;height:.143rem;background-color:#fff;transform:translate(-50%, -50%);border-radius:.071rem}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-node-content-wrapper{border-radius:0;padding-left:.214rem;width:100%;display:flex;align-items:center}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-node-content-wrapper .ant-select-tree-title{width:100%;display:flex}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-indent{margin-left:.857rem;display:flex;align-items:center}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-switcher{display:flex;align-items:center;justify-content:center}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-switcher:not(.ant-select-tree-switcher-noop):hover:before{background-color:rgba(0,0,0,0)}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-switcher .ant-select-tree-switcher-icon{font-size:.857rem;margin-top:1.286rem}.blaze-ui-cap-unified-select-popup .ant-select-tree .ant-select-tree-list-holder-inner{width:100%}.blaze-ui-cap-unified-select-popup .ant-tree-select:hover .ant-select-selector{border-color:#7a869a}.blaze-ui-cap-unified-select-popup .ant-tree-select-focused .ant-select-selector,.blaze-ui-cap-unified-select-popup .ant-tree-select-open .ant-select-selector{border-color:#7a869a;box-shadow:none;outline:none}.blaze-ui-cap-unified-select-popup .ant-checkbox-inner{height:1.286rem;width:1.286rem;border:.143rem solid #b3bac5;border-radius:.286rem}.blaze-ui-cap-unified-select-popup .ant-checkbox-wrapper:not(.ant-checkbox-wrapper-disabled):hover .ant-checkbox-checked:not(.ant-checkbox-disabled) .ant-checkbox-inner{background-color:#47af46;border:.143rem solid #47af46 !important}.blaze-ui-cap-unified-select-popup .ant-checkbox-indeterminate .ant-checkbox-inner{background-color:#47af46 !important;border-color:#47af46 !important}.blaze-ui-cap-unified-select-popup .ant-checkbox-indeterminate .ant-checkbox-inner::after{content:"";position:absolute;top:50%;left:50%;width:.714rem;height:.143rem;background-color:#fff;transform:translate(-50%, -50%);border-radius:.071rem}.blaze-ui-cap-unified-select-popup .ant-input-affix-wrapper{padding-left:.571rem;border:none;box-shadow:none;border-radius:0;border-bottom:.071rem solid rgba(0,0,0,0);transition:border-color .2s ease}.blaze-ui-cap-unified-select-popup .ant-input-affix-wrapper:hover{border-bottom:.071rem solid #7a869a !important;box-shadow:none}.blaze-ui-cap-unified-select-popup .ant-input-affix-wrapper:focus-within{border-bottom:.071rem solid #091e42 !important;box-shadow:none;outline:none}.blaze-ui-cap-unified-select-popup .ant-input-affix-wrapper .ant-input{border:none !important;box-shadow:none !important}.blaze-ui-cap-unified-select-more-text{display:flex;align-items:center;cursor:pointer;position:absolute;right:0;top:50%;transform:translateY(-50%);padding-right:.857rem;z-index:1;pointer-events:auto;padding-left:.571rem}.blaze-ui-cap-unified-select-more-text .blaze-ui-cap-unified-select-more-text-label{padding-right:.571rem}.blaze-ui-cap-unified-select-more-text .blaze-ui-cap-unified-select-more-text-label:hover{color:#2466ea !important}.blaze-ui-cap-unified-select-more-text-disabled{cursor:not-allowed;color:#97a0af}.blaze-ui-cap-unified-select-more-text-disabled .blaze-ui-cap-unified-select-more-text-label-disabled{cursor:pointer;color:#97a0af !important}.blaze-ui-cap-unified-select-more-text-disabled .blaze-ui-cap-unified-select-more-text-label-disabled:hover{color:#2466ea !important}.blaze-ui-cap-unified-select-disabled-tooltip .ant-tooltip-inner{background-color:#091e42 !important;border-radius:.286rem;padding:.857rem 1.428rem;max-height:21.429rem;overflow-y:auto}.blaze-ui-cap-unified-select-disabled-tooltip .ant-tooltip-arrow::before{background-color:#091e42 !important}.blaze-ui-cap-unified-select-disabled-tooltip .blaze-ui-cap-unified-select-tooltip-loading{display:flex;flex-direction:column;min-width:14.571rem;max-height:14.571rem}.blaze-ui-cap-unified-select-disabled-tooltip .blaze-ui-cap-unified-select-tooltip-loading .ant-skeleton .ant-skeleton-content .ant-skeleton-paragraph>li{background:linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.15) 25%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(255, 255, 255, 0.15) 100%);background-size:200% 100%;border-radius:.286rem;height:1.143rem}.blaze-ui-cap-unified-select-disabled-tooltip .blaze-ui-cap-unified-select-tooltip-error{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.571rem;min-width:14.571rem;min-height:14.571rem}.blaze-ui-cap-unified-select-disabled-tooltip .blaze-ui-cap-unified-select-tooltip-error .blaze-ui-cap-unified-select-tooltip-error-icon{color:#97a0af}.blaze-ui-cap-unified-select-disabled-tooltip .blaze-ui-cap-unified-select-tooltip-error .blaze-ui-cap-unified-select-tooltip-error-text{color:#97a0af;font-family:"Roboto",sans-serif;font-weight:400;font-size:.857rem;line-height:1.143rem;text-align:center}.blaze-ui-cap-unified-select-disabled-tooltip .blaze-ui-cap-unified-select-tooltip-values{display:flex;flex-direction:column;gap:.571rem;min-width:14.571rem;max-height:14.571rem}.blaze-ui-cap-unified-select-disabled-tooltip .blaze-ui-cap-unified-select-tooltip-values .blaze-ui-cap-unified-select-tooltip-value-item{color:#fff;font-family:"Roboto",sans-serif;font-weight:500;font-size:1rem;line-height:1.429rem}`, ""]);
|
|
42715
42729
|
// Exports
|
|
42716
42730
|
___CSS_LOADER_EXPORT___.locals = {
|
|
42717
42731
|
"cap-unified-select-content": `blaze-ui-cap-unified-select-content`,
|
|
@@ -42760,6 +42774,7 @@ ___CSS_LOADER_EXPORT___.locals = {
|
|
|
42760
42774
|
"option-disabled": `blaze-ui-option-disabled`,
|
|
42761
42775
|
"cap-unified-select-option-end": `blaze-ui-cap-unified-select-option-end`,
|
|
42762
42776
|
"cap-unified-select-option-suffix": `blaze-ui-cap-unified-select-option-suffix`,
|
|
42777
|
+
"cap-unified-select-option-suffix-text": `blaze-ui-cap-unified-select-option-suffix-text`,
|
|
42763
42778
|
"cap-tooltip-with-info": `blaze-ui-cap-tooltip-with-info`,
|
|
42764
42779
|
"cap-icon": `blaze-ui-cap-icon`,
|
|
42765
42780
|
"cap-unified-select-more-text-label": `blaze-ui-cap-unified-select-more-text-label`,
|