@kingsimba/nc-ui 0.1.5 → 0.1.6
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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -43
- package/dist/index.js +544 -601
- package/dist/index.js.map +1 -1
- package/dist/styles.css +7 -1
- package/package.json +4 -4
package/dist/styles.css
CHANGED
|
@@ -297,6 +297,12 @@ li::marker { color: var(--nc-text-weak); }
|
|
|
297
297
|
border-color: var(--nc-danger);
|
|
298
298
|
}
|
|
299
299
|
|
|
300
|
+
.nc-input:disabled {
|
|
301
|
+
color: var(--nc-text-weak);
|
|
302
|
+
cursor: not-allowed;
|
|
303
|
+
pointer-events: none;
|
|
304
|
+
}
|
|
305
|
+
|
|
300
306
|
.nc-error-message {
|
|
301
307
|
font-size: 13px;
|
|
302
308
|
color: var(--nc-danger);
|
|
@@ -891,7 +897,7 @@ input[type="number"] { -moz-appearance: textfield; appearance: textfield; }
|
|
|
891
897
|
}
|
|
892
898
|
|
|
893
899
|
.nc-dialog-container {
|
|
894
|
-
background: var(--nc-bg);
|
|
900
|
+
background: var(--nc-bg-secondary);
|
|
895
901
|
border-radius: 12px;
|
|
896
902
|
border: 1px solid var(--nc-border);
|
|
897
903
|
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kingsimba/nc-ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"build-storybook": "storybook build"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
+
"i18next": "^23.0.0",
|
|
39
40
|
"react": "^18.0.0",
|
|
40
41
|
"react-dom": "^18.0.0",
|
|
41
|
-
"i18next": "^23.0.0",
|
|
42
42
|
"react-i18next": "^14.0.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
@@ -55,9 +55,9 @@
|
|
|
55
55
|
"react": "^18.2.0",
|
|
56
56
|
"react-dom": "^18.2.0",
|
|
57
57
|
"react-i18next": "^14.0.0",
|
|
58
|
-
"typescript": "
|
|
58
|
+
"typescript": "~5.9.3",
|
|
59
59
|
"vite": "^5.0.8",
|
|
60
|
-
"vite-plugin-dts": "^
|
|
60
|
+
"vite-plugin-dts": "^4.5.4",
|
|
61
61
|
"vite-plugin-static-copy": "^3.1.4"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|