react-gldn-kit 0.1.23 → 0.1.25
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/index.js +1 -1
- package/dist/lib/components/ui/Selector/index.js +1 -1
- package/dist/main.css +11 -7
- package/package.json +1 -1
|
@@ -119,7 +119,7 @@ var Selector = function (props) {
|
|
|
119
119
|
return ((0, jsx_runtime_1.jsxs)("div", __assign({ className: (0, classnames_1.default)(styles.wrapperSelector, styles[sizeModifier], classes) }, { children: [(0, jsx_runtime_1.jsxs)("div", __assign({ className: (0, classnames_1.default)(styles.mainContainer, styles.item, styles[sizeModifier], classesItem, (_a = {},
|
|
120
120
|
_a[styles.opacity] = isOpened,
|
|
121
121
|
_a[selectedMainItemClasses] = activeId || (activeIds === null || activeIds === void 0 ? void 0 : activeIds.length),
|
|
122
|
-
_a)), onClick: isDisabled && type === 'base' ? undefined : handleToggleState }, { children: [selectorStyleType === 'labelUp' && placeholder && ((0, jsx_runtime_1.jsx)("div", __assign({ className: styles.placeholder }, { children: (0, jsx_runtime_1.jsx)(Text_1.Text, { idT: placeholder }) }))), (0, jsx_runtime_1.jsx)("div", __assign({ className: styles.overflow }, { children: getTitle() })), (0, jsx_runtime_1.jsxs)("div", __assign({ className: styles.iconBlock }, { children: [isDisabled && (0, jsx_runtime_1.jsx)(LockSvg_1.LockSvg, {}), !isDisabled &&
|
|
122
|
+
_a)), onClick: isDisabled && type === 'base' ? undefined : handleToggleState }, { children: [selectorStyleType === 'labelUp' && placeholder && ((0, jsx_runtime_1.jsx)("div", __assign({ className: styles.placeholder }, { children: (0, jsx_runtime_1.jsx)(Text_1.Text, { idT: placeholder }) }))), (0, jsx_runtime_1.jsx)("div", __assign({ className: styles.overflow }, { children: getTitle() })), (0, jsx_runtime_1.jsxs)("div", __assign({ className: styles.iconBlock }, { children: [isDisabled && (0, jsx_runtime_1.jsx)(LockSvg_1.LockSvg, {}), !isDisabled && ((0, jsx_runtime_1.jsx)(ArrowButton_1.ArrowButton, { isOpened: isOpened, toggleState: resetValue })), !isDisabled && !!activeId && !!isAll && ((0, jsx_runtime_1.jsx)(CloseSvg_1.CloseSvg, { handleClick: resetValue }))] }))] })), (0, jsx_runtime_1.jsxs)("div", __assign({ className: (0, classnames_1.default)(styles.dropDownWrapper, styles[directionModifier], styles[sizeModifier], (_b = {},
|
|
123
123
|
_b[styles.animationSelectorGrowing] = isOpened,
|
|
124
124
|
_b[styles.animationSelectorReducing] = !isOpened,
|
|
125
125
|
_b[styles.bigBorder] = isOpened,
|
package/dist/main.css
CHANGED
|
@@ -2256,6 +2256,7 @@
|
|
|
2256
2256
|
opacity: 0;
|
|
2257
2257
|
}
|
|
2258
2258
|
}
|
|
2259
|
+
|
|
2259
2260
|
.KIT__BannerTemplate-module__wrapperBanner___vPzec {
|
|
2260
2261
|
height: 150px;
|
|
2261
2262
|
background-size: cover;
|
|
@@ -2503,15 +2504,18 @@
|
|
|
2503
2504
|
}
|
|
2504
2505
|
|
|
2505
2506
|
.KIT__LanguageSelector-module__content___nWMCf {
|
|
2507
|
+
--width: 80px;
|
|
2508
|
+
--height: 37px;
|
|
2509
|
+
height: 37px;
|
|
2510
|
+
height: var(--height);
|
|
2511
|
+
width: 80px;
|
|
2512
|
+
width: var(--width);
|
|
2506
2513
|
background: rgba(255, 255, 255, 0.1);
|
|
2507
|
-
-webkit-backdrop-filter: blur(13.6px);
|
|
2508
|
-
backdrop-filter: blur(13.6px);
|
|
2509
|
-
padding: var(--indent-s);
|
|
2510
2514
|
display: flex;
|
|
2511
2515
|
align-items: center;
|
|
2516
|
+
justify-content: center;
|
|
2512
2517
|
border-radius: var(--border-m);
|
|
2513
|
-
gap: var(--indent-
|
|
2514
|
-
width: 80px;
|
|
2518
|
+
gap: var(--indent-s);
|
|
2515
2519
|
transition: all 0.5s;
|
|
2516
2520
|
will-change: background, border;
|
|
2517
2521
|
cursor: pointer;
|
|
@@ -2528,8 +2532,8 @@
|
|
|
2528
2532
|
}
|
|
2529
2533
|
|
|
2530
2534
|
.KIT__LanguageSelector-module__content___nWMCf.KIT__LanguageSelector-module__initialWidth___cc2YQ {
|
|
2531
|
-
width:
|
|
2532
|
-
|
|
2535
|
+
--width: 24px;
|
|
2536
|
+
--height: 24px;
|
|
2533
2537
|
}
|
|
2534
2538
|
|
|
2535
2539
|
.KIT__LanguageSelector-module__languages_____Vbx {
|