funuicss 3.4.3 → 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 +4 -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;
|
|
@@ -3519,12 +3520,10 @@ background-color: rgba(var(--borderRgb), 0.3);
|
|
|
3519
3520
|
}
|
|
3520
3521
|
|
|
3521
3522
|
|
|
3522
|
-
.custom-select {position: relative; width: 100%; border-radius: var(--InputButtonBorderRadius);
|
|
3523
|
+
.custom-select {position: relative; width: 100%; border-radius: var(--InputButtonBorderRadius); }
|
|
3523
3524
|
|
|
3524
3525
|
.custom-select.fullWidth {max-width: none;}
|
|
3525
3526
|
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
3527
|
.select-trigger {
|
|
3529
3528
|
display: flex;
|
|
3530
3529
|
align-items: center;
|
|
@@ -3631,18 +3630,19 @@ border-top: none;
|
|
|
3631
3630
|
border-radius: 0 0 0.5rem 0.5rem;
|
|
3632
3631
|
max-height: 250px;
|
|
3633
3632
|
overflow: hidden;
|
|
3634
|
-
z-index: 9999;
|
|
3635
3633
|
opacity: 0;
|
|
3636
3634
|
visibility: hidden;
|
|
3637
3635
|
transform: translateY(-10px);
|
|
3638
3636
|
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
3639
3637
|
box-shadow: var(--card);
|
|
3638
|
+
z-index: 1000 !important;
|
|
3640
3639
|
}
|
|
3641
3640
|
|
|
3642
3641
|
.select-dropdown.open {
|
|
3643
3642
|
opacity: 1;
|
|
3644
3643
|
visibility: visible;
|
|
3645
3644
|
transform: translateY(0);
|
|
3645
|
+
|
|
3646
3646
|
}
|
|
3647
3647
|
|
|
3648
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];
|