funuicss 1.9.19 → 1.9.20
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/component/Button.jsx +2 -1
- package/component/Starter.jsx +13 -5
- package/component/Typography.jsx +6 -4
- package/css/fun.css +40 -10
- package/js/Fun.jsx +235 -0
- package/package.json +1 -1
package/component/Button.jsx
CHANGED
|
@@ -87,7 +87,8 @@ function Button(_ref) {
|
|
|
87
87
|
onChange: onChange,
|
|
88
88
|
style: {
|
|
89
89
|
height: height ? height : "",
|
|
90
|
-
width: fullWidth ? "100%" : width ? width : ""
|
|
90
|
+
width: fullWidth ? "100%" : width ? width : "",
|
|
91
|
+
borderRadius: flat ? "0rem" : ""
|
|
91
92
|
}
|
|
92
93
|
}, startIcon, " \xA0", text, children, " \xA0", endIcon);
|
|
93
94
|
}
|
package/component/Starter.jsx
CHANGED
|
@@ -76,12 +76,14 @@ var Starter = function Starter() {
|
|
|
76
76
|
display: 'block'
|
|
77
77
|
}
|
|
78
78
|
}, "Fun Ui @latest"), /*#__PURE__*/external_react_default().createElement("span", {
|
|
79
|
-
className: "text-big text-
|
|
79
|
+
className: "text-big text-secondary",
|
|
80
80
|
style: {
|
|
81
81
|
display: 'block',
|
|
82
82
|
transition: '0.2s linear'
|
|
83
83
|
}
|
|
84
|
-
}, "React & Next
|
|
84
|
+
}, "React & Next.Js Ui "), /*#__PURE__*/external_react_default().createElement("div", {
|
|
85
|
+
className: "text-jumbo text-gradient"
|
|
86
|
+
}, "Library"), /*#__PURE__*/external_react_default().createElement("div", {
|
|
85
87
|
className: "section"
|
|
86
88
|
}), /*#__PURE__*/external_react_default().createElement("div", {
|
|
87
89
|
className: "section"
|
|
@@ -115,7 +117,11 @@ var Starter = function Starter() {
|
|
|
115
117
|
className: "text-primary text-bold"
|
|
116
118
|
}, "`Tooltips`, "), "and other standard features like", /*#__PURE__*/external_react_default().createElement("span", {
|
|
117
119
|
className: "text-primary text-bold"
|
|
118
|
-
}, "`helpers` "),
|
|
120
|
+
}, "`helpers` "), /*#__PURE__*/external_react_default().createElement("span", {
|
|
121
|
+
className: "text-primary text-bold"
|
|
122
|
+
}, "`requests` "), /*#__PURE__*/external_react_default().createElement("span", {
|
|
123
|
+
className: "text-primary text-bold"
|
|
124
|
+
}, "`styling` "), "and", /*#__PURE__*/external_react_default().createElement("span", {
|
|
119
125
|
className: "text-primary text-bold"
|
|
120
126
|
}, " `Blob generator` ")), /*#__PURE__*/external_react_default().createElement("div", {
|
|
121
127
|
className: "section"
|
|
@@ -126,8 +132,10 @@ var Starter = function Starter() {
|
|
|
126
132
|
}, /*#__PURE__*/external_react_default().createElement("div", null, /*#__PURE__*/external_react_default().createElement("div", null, /*#__PURE__*/external_react_default().createElement("a", {
|
|
127
133
|
href: "https://funui.netlify.app"
|
|
128
134
|
}, /*#__PURE__*/external_react_default().createElement("button", {
|
|
129
|
-
className: "button gradient
|
|
130
|
-
}, "Visit FunUi
|
|
135
|
+
className: "button gradient"
|
|
136
|
+
}, "Visit FunUi ", /*#__PURE__*/external_react_default().createElement("i", {
|
|
137
|
+
className: "fas fa-code-branch"
|
|
138
|
+
}))))), /*#__PURE__*/external_react_default().createElement("div", null, /*#__PURE__*/external_react_default().createElement("div", {
|
|
131
139
|
className: "icon-container section full-width right"
|
|
132
140
|
}, /*#__PURE__*/external_react_default().createElement("input", {
|
|
133
141
|
className: "input full-width light width-200-min borderedInput",
|
package/component/Typography.jsx
CHANGED
|
@@ -80,15 +80,17 @@ function Typography(_ref) {
|
|
|
80
80
|
underline = _ref.underline,
|
|
81
81
|
align = _ref.align,
|
|
82
82
|
lineHeight = _ref.lineHeight,
|
|
83
|
-
letterSpacing = _ref.letterSpacing
|
|
83
|
+
letterSpacing = _ref.letterSpacing,
|
|
84
|
+
monospace = _ref.monospace,
|
|
85
|
+
font = _ref.font;
|
|
84
86
|
return /*#__PURE__*/external_react_default().createElement("span", {
|
|
85
|
-
className: "\
|
|
87
|
+
className: "\n".concat(size ? "text-".concat(size) : "", "\n").concat(color ? "text-".concat(color) : '', "\n").concat(align ? "text-".concat(align) : '', "\n").concat(block ? "block" : "", "\n").concat(monospace ? "monospace" : "", "\n").concat(bg ? bg : "", "\n").concat(hoverText ? "hover-text-".concat(hoverText) : '', "\n").concat(hoverBg ? "hover-".concat(hoverBg) : '', "\n").concat(light ? "lightText" : lighter ? "lighterText" : "", "\n").concat(heading ? heading : "", "\n").concat(italic ? "italicText" : "", "\n").concat(underline ? "underlineText" : "", "\n").concat(body ? "body" : "", "\n").concat(article ? "article" : "", "\n").concat(funcss, "\n").concat(emp ? "emp" : "", "\n").concat(bold ? "bold" : "", "\n"),
|
|
86
88
|
style: {
|
|
87
89
|
display: block ? "block" : "",
|
|
88
|
-
transition: "0.2s linear",
|
|
89
90
|
fontWeight: "".concat(bold ? "bold" : ""),
|
|
90
91
|
lineHeight: lineHeight ? lineHeight : "",
|
|
91
|
-
letterSpacing: letterSpacing ? letterSpacing : ""
|
|
92
|
+
letterSpacing: letterSpacing ? letterSpacing : "",
|
|
93
|
+
fontFamily: font ? font : ""
|
|
92
94
|
}
|
|
93
95
|
}, children, text);
|
|
94
96
|
}
|
package/css/fun.css
CHANGED
|
@@ -52,6 +52,9 @@
|
|
|
52
52
|
--shadowMedium:0 0.8rem 2rem 0 rgba(0, 0, 0, 0.1);
|
|
53
53
|
--card:0 2rem 3rem 0 rgba(0, 0, 0, 0.2);
|
|
54
54
|
|
|
55
|
+
/* medium Screen body */
|
|
56
|
+
--midBdFontSize:0.8rem;
|
|
57
|
+
|
|
55
58
|
}
|
|
56
59
|
|
|
57
60
|
|
|
@@ -90,6 +93,11 @@ body {
|
|
|
90
93
|
letter-spacing: normal;
|
|
91
94
|
|
|
92
95
|
}
|
|
96
|
+
@media (max-width:800px){
|
|
97
|
+
body{
|
|
98
|
+
font-size: var(--midBdFontSize);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
93
101
|
|
|
94
102
|
.theme{
|
|
95
103
|
background-color: var(--bd-theme);
|
|
@@ -320,24 +328,25 @@ link:hover {
|
|
|
320
328
|
line-height: 1em;
|
|
321
329
|
font-weight: 900;
|
|
322
330
|
}
|
|
331
|
+
.monospace{
|
|
332
|
+
font-family:monospace !important;
|
|
333
|
+
}
|
|
323
334
|
|
|
324
335
|
.text-big {
|
|
325
336
|
font-size: calc(1.375rem + 2vw);
|
|
326
337
|
}
|
|
327
338
|
.text-small {
|
|
328
339
|
font-size: var(--smallFont);
|
|
329
|
-
line-height: normal;
|
|
330
340
|
}
|
|
331
341
|
.text-smaller {
|
|
332
342
|
font-size: var(--smallerFont);
|
|
333
|
-
line-height: normal;
|
|
334
343
|
}
|
|
335
344
|
.article{
|
|
336
|
-
line-height: 1.
|
|
345
|
+
line-height: 1.6rem;
|
|
337
346
|
letter-spacing: normal;
|
|
338
347
|
}
|
|
339
348
|
.body{
|
|
340
|
-
line-height: 1.
|
|
349
|
+
line-height: 1.5rem;
|
|
341
350
|
letter-spacing: normal;
|
|
342
351
|
font-size: 1em;
|
|
343
352
|
}
|
|
@@ -2135,12 +2144,7 @@ th {
|
|
|
2135
2144
|
max-height: 70px;
|
|
2136
2145
|
height: fit-content;
|
|
2137
2146
|
}
|
|
2138
|
-
|
|
2139
|
-
Button,
|
|
2140
|
-
.button {
|
|
2141
|
-
display: inline-block;
|
|
2142
|
-
margin: 0px 5px;
|
|
2143
|
-
}
|
|
2147
|
+
|
|
2144
2148
|
|
|
2145
2149
|
|
|
2146
2150
|
.notification{
|
|
@@ -2348,6 +2352,8 @@ Button,
|
|
|
2348
2352
|
}
|
|
2349
2353
|
}
|
|
2350
2354
|
|
|
2355
|
+
|
|
2356
|
+
|
|
2351
2357
|
/* Progress bars */
|
|
2352
2358
|
.progressBar {
|
|
2353
2359
|
background-color: var(--lighter);
|
|
@@ -2556,6 +2562,14 @@ Button,
|
|
|
2556
2562
|
transform: scale(1);
|
|
2557
2563
|
}
|
|
2558
2564
|
}
|
|
2565
|
+
@keyframes ScaleDown {
|
|
2566
|
+
from {
|
|
2567
|
+
transform: scale(1);
|
|
2568
|
+
}
|
|
2569
|
+
to {
|
|
2570
|
+
transform: scale(0);
|
|
2571
|
+
}
|
|
2572
|
+
}
|
|
2559
2573
|
@keyframes Opacity {
|
|
2560
2574
|
from {
|
|
2561
2575
|
opacity: 0;
|
|
@@ -2564,6 +2578,22 @@ Button,
|
|
|
2564
2578
|
opacity: 1;
|
|
2565
2579
|
}
|
|
2566
2580
|
}
|
|
2581
|
+
@keyframes FadeIn {
|
|
2582
|
+
from {
|
|
2583
|
+
opacity: 0;
|
|
2584
|
+
}
|
|
2585
|
+
to {
|
|
2586
|
+
opacity: 1;
|
|
2587
|
+
}
|
|
2588
|
+
}
|
|
2589
|
+
@keyframes FadeOut {
|
|
2590
|
+
from {
|
|
2591
|
+
opacity: 1;
|
|
2592
|
+
}
|
|
2593
|
+
to {
|
|
2594
|
+
opacity: 0;
|
|
2595
|
+
}
|
|
2596
|
+
}
|
|
2567
2597
|
|
|
2568
2598
|
@keyframes SlideBottom {
|
|
2569
2599
|
from {
|
package/js/Fun.jsx
ADDED
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
/******/ (() => { // webpackBootstrap
|
|
2
|
+
/******/ "use strict";
|
|
3
|
+
/******/ // The require scope
|
|
4
|
+
/******/ var __webpack_require__ = {};
|
|
5
|
+
/******/
|
|
6
|
+
/************************************************************************/
|
|
7
|
+
/******/ /* webpack/runtime/define property getters */
|
|
8
|
+
/******/ (() => {
|
|
9
|
+
/******/ // define getter functions for harmony exports
|
|
10
|
+
/******/ __webpack_require__.d = (exports, definition) => {
|
|
11
|
+
/******/ for(var key in definition) {
|
|
12
|
+
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
13
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
14
|
+
/******/ }
|
|
15
|
+
/******/ }
|
|
16
|
+
/******/ };
|
|
17
|
+
/******/ })();
|
|
18
|
+
/******/
|
|
19
|
+
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
20
|
+
/******/ (() => {
|
|
21
|
+
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
|
22
|
+
/******/ })();
|
|
23
|
+
/******/
|
|
24
|
+
/******/ /* webpack/runtime/make namespace object */
|
|
25
|
+
/******/ (() => {
|
|
26
|
+
/******/ // define __esModule on exports
|
|
27
|
+
/******/ __webpack_require__.r = (exports) => {
|
|
28
|
+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
29
|
+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
30
|
+
/******/ }
|
|
31
|
+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
32
|
+
/******/ };
|
|
33
|
+
/******/ })();
|
|
34
|
+
/******/
|
|
35
|
+
/************************************************************************/
|
|
36
|
+
var __webpack_exports__ = {};
|
|
37
|
+
__webpack_require__.r(__webpack_exports__);
|
|
38
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
39
|
+
/* harmony export */ "FunAdd": () => (/* binding */ FunAdd),
|
|
40
|
+
/* harmony export */ "FunClass": () => (/* binding */ FunClass),
|
|
41
|
+
/* harmony export */ "FunEvent": () => (/* binding */ FunEvent),
|
|
42
|
+
/* harmony export */ "FunGet": () => (/* binding */ FunGet),
|
|
43
|
+
/* harmony export */ "FunHide": () => (/* binding */ FunHide),
|
|
44
|
+
/* harmony export */ "FunRequest": () => (/* binding */ FunRequest),
|
|
45
|
+
/* harmony export */ "FunStyle": () => (/* binding */ FunStyle)
|
|
46
|
+
/* harmony export */ });
|
|
47
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
48
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
49
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
50
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
51
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
52
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
53
|
+
var FunHide = {
|
|
54
|
+
hide: function hide(selector) {
|
|
55
|
+
var element = document.querySelector(selector);
|
|
56
|
+
element.style.display = "none";
|
|
57
|
+
},
|
|
58
|
+
show: function show(selector) {
|
|
59
|
+
var element = document.querySelector(selector);
|
|
60
|
+
element.style.display = "inline-block";
|
|
61
|
+
},
|
|
62
|
+
toggle: function toggle(selector) {
|
|
63
|
+
var element = document.querySelector(selector);
|
|
64
|
+
var style = element.style.display;
|
|
65
|
+
if (style == "none") {
|
|
66
|
+
element.style.display = "inline-block";
|
|
67
|
+
} else {
|
|
68
|
+
element.style.display = "none";
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
};
|
|
72
|
+
var FunGet = {
|
|
73
|
+
text: function text(selector, data) {
|
|
74
|
+
var element = document.querySelector(selector);
|
|
75
|
+
if (typeof element != 'undefined' && element != null) {
|
|
76
|
+
var text = element.textContent;
|
|
77
|
+
if (data) {
|
|
78
|
+
element.textContent = data;
|
|
79
|
+
} else {
|
|
80
|
+
return text ? text : '';
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
html: function html(selector, data) {
|
|
85
|
+
var element = document.querySelector(selector);
|
|
86
|
+
if (typeof element != 'undefined' && element != null) {
|
|
87
|
+
var text = element.innerHTML;
|
|
88
|
+
if (data) {
|
|
89
|
+
element.innerHTML = data;
|
|
90
|
+
} else {
|
|
91
|
+
return text ? text : "";
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
val: function val(selector, data) {
|
|
96
|
+
var element = document.querySelector(selector);
|
|
97
|
+
if (typeof element != 'undefined' && element != null) {
|
|
98
|
+
var text = element.value;
|
|
99
|
+
if (data) {
|
|
100
|
+
element.value = data;
|
|
101
|
+
} else {
|
|
102
|
+
return text;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
};
|
|
107
|
+
var FunStyle = {
|
|
108
|
+
css: function css(selector, _css) {
|
|
109
|
+
// Get the element you want to style
|
|
110
|
+
var element = document.querySelector(selector);
|
|
111
|
+
|
|
112
|
+
// Define multiple styles using JavaScript objects
|
|
113
|
+
var styles = _css;
|
|
114
|
+
|
|
115
|
+
// Apply the styles to the element
|
|
116
|
+
Object.assign(element.style, styles);
|
|
117
|
+
}
|
|
118
|
+
};
|
|
119
|
+
var FunEvent = {
|
|
120
|
+
event: function event(selector, eventType, callBack) {
|
|
121
|
+
var element = document.querySelector(selector);
|
|
122
|
+
if (selector && eventType && callBack) {
|
|
123
|
+
if (typeof element != 'undefined' && element != null) {
|
|
124
|
+
document.querySelector(selector).addEventListener(eventType, callBack);
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
};
|
|
129
|
+
var FunClass = {
|
|
130
|
+
add: function add(selector, newClass) {
|
|
131
|
+
var element = document.querySelector(selector);
|
|
132
|
+
if (typeof element != 'undefined' && element != null && newClass) {
|
|
133
|
+
element.classList.add(newClass);
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
remove: function remove(selector, newClass) {
|
|
137
|
+
var element = document.querySelector(selector);
|
|
138
|
+
if (typeof element != 'undefined' && element != null && newClass) {
|
|
139
|
+
element.classList.remove(newClass);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
};
|
|
143
|
+
var FunAdd = {
|
|
144
|
+
append: function append(selector, child) {
|
|
145
|
+
var element = document.querySelector(selector);
|
|
146
|
+
if (typeof element != 'undefined' && element != null && child) {
|
|
147
|
+
element.append(child);
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
prepend: function prepend(selector, child) {
|
|
151
|
+
var element = document.querySelector(selector);
|
|
152
|
+
if (typeof element != 'undefined' && element != null && child) {
|
|
153
|
+
element.prepend(child);
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
};
|
|
157
|
+
var FunRequest = {
|
|
158
|
+
get: function get(url, headers) {
|
|
159
|
+
return new Promise(function (resolve, reject) {
|
|
160
|
+
fetch(url, headers ? {
|
|
161
|
+
headers: headers
|
|
162
|
+
} : {}).then(function (response) {
|
|
163
|
+
return response.json();
|
|
164
|
+
}).then(function (data) {
|
|
165
|
+
// Handle the received data
|
|
166
|
+
resolve(data);
|
|
167
|
+
})["catch"](function (error) {
|
|
168
|
+
// Handle any errors that occur during the request
|
|
169
|
+
reject(error);
|
|
170
|
+
});
|
|
171
|
+
});
|
|
172
|
+
},
|
|
173
|
+
post: function post(url, body, headers) {
|
|
174
|
+
return new Promise(function (resolve, reject) {
|
|
175
|
+
fetch(url, {
|
|
176
|
+
method: 'POST',
|
|
177
|
+
headers: headers ? _objectSpread(_objectSpread({}, headers), {}, {
|
|
178
|
+
'Content-Type': 'application/json'
|
|
179
|
+
}) : {
|
|
180
|
+
'Content-Type': 'application/json'
|
|
181
|
+
},
|
|
182
|
+
body: JSON.stringify(body)
|
|
183
|
+
}).then(function (response) {
|
|
184
|
+
return response.json();
|
|
185
|
+
}).then(function (data) {
|
|
186
|
+
// Handle the received data
|
|
187
|
+
resolve(data);
|
|
188
|
+
})["catch"](function (error) {
|
|
189
|
+
// Handle any errors that occur during the request
|
|
190
|
+
reject(error);
|
|
191
|
+
});
|
|
192
|
+
});
|
|
193
|
+
},
|
|
194
|
+
patch: function patch(url, body, headers) {
|
|
195
|
+
return new Promise(function (resolve, reject) {
|
|
196
|
+
fetch(url, {
|
|
197
|
+
method: 'PATCH',
|
|
198
|
+
headers: headers ? _objectSpread(_objectSpread({}, headers), {}, {
|
|
199
|
+
'Content-Type': 'application/json'
|
|
200
|
+
}) : {
|
|
201
|
+
'Content-Type': 'application/json'
|
|
202
|
+
},
|
|
203
|
+
body: JSON.stringify(body)
|
|
204
|
+
}).then(function (response) {
|
|
205
|
+
return response.json();
|
|
206
|
+
}).then(function (data) {
|
|
207
|
+
// Handle the received data
|
|
208
|
+
resolve(data);
|
|
209
|
+
})["catch"](function (error) {
|
|
210
|
+
// Handle any errors that occur during the request
|
|
211
|
+
reject(error);
|
|
212
|
+
});
|
|
213
|
+
});
|
|
214
|
+
},
|
|
215
|
+
"delete": function _delete(url, headers) {
|
|
216
|
+
return new Promise(function (resolve, reject) {
|
|
217
|
+
fetch(url, {
|
|
218
|
+
method: 'DELETE',
|
|
219
|
+
headers: headers ? headers : {}
|
|
220
|
+
}).then(function (response) {
|
|
221
|
+
if (response.ok) {
|
|
222
|
+
resolve(); // Resolve with no data for successful DELETE requests
|
|
223
|
+
} else {
|
|
224
|
+
reject("Error: ".concat(response.status, " ").concat(response.statusText));
|
|
225
|
+
}
|
|
226
|
+
})["catch"](function (error) {
|
|
227
|
+
// Handle any errors that occur during the request
|
|
228
|
+
reject(error);
|
|
229
|
+
});
|
|
230
|
+
});
|
|
231
|
+
}
|
|
232
|
+
};
|
|
233
|
+
module.exports = __webpack_exports__;
|
|
234
|
+
/******/ })()
|
|
235
|
+
;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "funuicss",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.20",
|
|
4
4
|
"description": "React/Next.js component UI Library for creating Easy and good looking websites with fewer lines of code.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"keywords": ["funui" , "React Component", "Next Component", "react" , "react and next component Library"],
|