funuicss 3.4.2 → 3.4.4
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/css/fun.css +5 -4
- package/package.json +1 -1
- package/ui/select/Select.js +1 -1
package/css/fun.css
CHANGED
|
@@ -2456,6 +2456,7 @@ h6, .h6 {
|
|
|
2456
2456
|
}
|
|
2457
2457
|
|
|
2458
2458
|
|
|
2459
|
+
|
|
2459
2460
|
/*buttons*/
|
|
2460
2461
|
.button {
|
|
2461
2462
|
border: none;
|
|
@@ -2468,6 +2469,7 @@ h6, .h6 {
|
|
|
2468
2469
|
position: relative;
|
|
2469
2470
|
overflow: hidden;
|
|
2470
2471
|
font-weight: 500;
|
|
2472
|
+
z-index: 1;
|
|
2471
2473
|
line-height: 1 !important;
|
|
2472
2474
|
}
|
|
2473
2475
|
|
|
@@ -3518,12 +3520,10 @@ background-color: rgba(var(--borderRgb), 0.3);
|
|
|
3518
3520
|
}
|
|
3519
3521
|
|
|
3520
3522
|
|
|
3521
|
-
.custom-select {position: relative; width: 100%; border-radius: var(--InputButtonBorderRadius);
|
|
3523
|
+
.custom-select {position: relative; width: 100%; border-radius: var(--InputButtonBorderRadius); }
|
|
3522
3524
|
|
|
3523
3525
|
.custom-select.fullWidth {max-width: none;}
|
|
3524
3526
|
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
3527
|
.select-trigger {
|
|
3528
3528
|
display: flex;
|
|
3529
3529
|
align-items: center;
|
|
@@ -3630,18 +3630,19 @@ border-top: none;
|
|
|
3630
3630
|
border-radius: 0 0 0.5rem 0.5rem;
|
|
3631
3631
|
max-height: 250px;
|
|
3632
3632
|
overflow: hidden;
|
|
3633
|
-
z-index: 20;
|
|
3634
3633
|
opacity: 0;
|
|
3635
3634
|
visibility: hidden;
|
|
3636
3635
|
transform: translateY(-10px);
|
|
3637
3636
|
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
3638
3637
|
box-shadow: var(--card);
|
|
3638
|
+
z-index: 1000 !important;
|
|
3639
3639
|
}
|
|
3640
3640
|
|
|
3641
3641
|
.select-dropdown.open {
|
|
3642
3642
|
opacity: 1;
|
|
3643
3643
|
visibility: visible;
|
|
3644
3644
|
transform: translateY(0);
|
|
3645
|
+
|
|
3645
3646
|
}
|
|
3646
3647
|
|
|
3647
3648
|
.select-dropdown.rounded {
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "3.4.
|
|
2
|
+
"version": "3.4.4",
|
|
3
3
|
"name": "funuicss",
|
|
4
4
|
"description": "React and Next.js component UI Library for creating Easy and good looking websites with fewer lines of code. Elevate your web development experience with our cutting-edge React/Next.js component UI Library. Craft stunning websites effortlessly, boasting both seamless functionality and aesthetic appeal—all achieved with minimal lines of code. Unleash the power of simplicity and style in your projects!",
|
|
5
5
|
"main": "index.js",
|
package/ui/select/Select.js
CHANGED
|
@@ -35,7 +35,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
36
|
var react_1 = __importStar(require("react"));
|
|
37
37
|
var Select = function (_a) {
|
|
38
|
-
var id = _a.id, name = _a.name, value = _a.value, defaultValue = _a.defaultValue, _b = _a.placeholder, placeholder = _b === void 0 ? 'Select an option' : _b, _c = _a.options, options = _c === void 0 ? [] : _c, onChange = _a.onChange, onBlur = _a.onBlur, _d = _a.searchable, searchable = _d === void 0 ?
|
|
38
|
+
var id = _a.id, name = _a.name, value = _a.value, defaultValue = _a.defaultValue, _b = _a.placeholder, placeholder = _b === void 0 ? 'Select an option' : _b, _c = _a.options, options = _c === void 0 ? [] : _c, onChange = _a.onChange, onBlur = _a.onBlur, _d = _a.searchable, searchable = _d === void 0 ? true : _d, _e = _a.disabled, disabled = _e === void 0 ? false : _e, _f = _a.bordered, bordered = _f === void 0 ? false : _f, _g = _a.borderless, borderless = _g === void 0 ? false : _g, _h = _a.rounded, rounded = _h === void 0 ? false : _h, _j = _a.flat, flat = _j === void 0 ? false : _j, _k = _a.fullWidth, fullWidth = _k === void 0 ? false : _k, _l = _a.status, status = _l === void 0 ? '' : _l, _m = _a.className, className = _m === void 0 ? '' : _m, _o = _a.funcss, funcss = _o === void 0 ? '' : _o, _p = _a.style, style = _p === void 0 ? {} : _p;
|
|
39
39
|
var _q = (0, react_1.useState)(false), isOpen = _q[0], setIsOpen = _q[1];
|
|
40
40
|
var _r = (0, react_1.useState)(null), selectedOption = _r[0], setSelectedOption = _r[1];
|
|
41
41
|
var _s = (0, react_1.useState)(''), searchQuery = _s[0], setSearchQuery = _s[1];
|