@nmorph/nmorph-ui-kit 1.1.6 → 2.0.0
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.
|
@@ -27,6 +27,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<INmorphProps, {
|
|
|
27
27
|
height: "default" | "thick" | "thin";
|
|
28
28
|
disabled: boolean;
|
|
29
29
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
|
|
30
|
+
"icon-only"?(_: {}): any;
|
|
30
31
|
icon?(_: {}): any;
|
|
31
32
|
default?(_: {}): any;
|
|
32
33
|
append?(_: {}): any;
|
|
@@ -11,6 +11,7 @@ interface INmorphProps {
|
|
|
11
11
|
disabled?: boolean;
|
|
12
12
|
}
|
|
13
13
|
declare const _default: __VLS_WithTemplateSlots< DefineComponent<INmorphProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<INmorphProps> & Readonly<{}>, {
|
|
14
|
+
value: string | number;
|
|
14
15
|
disabled: boolean;
|
|
15
16
|
color: string;
|
|
16
17
|
hidden: boolean;
|
|
@@ -102,7 +102,10 @@ export interface INmorphStaticColors {
|
|
|
102
102
|
black?: string;
|
|
103
103
|
text?: string;
|
|
104
104
|
overlay?: string;
|
|
105
|
-
|
|
105
|
+
focusText?: string;
|
|
106
|
+
placeholderText?: string;
|
|
107
|
+
semiContrastText?: string;
|
|
108
|
+
contrastText?: string;
|
|
106
109
|
}
|
|
107
110
|
export interface INmorphDynamicColors {
|
|
108
111
|
darkShade?: string;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@nmorph/nmorph-ui-kit",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "
|
|
5
|
+
"version": "2.0.0",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": ">=18.13.0",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"lint:check": "npm run lint:es:check && npm run lint:style:check",
|
|
48
48
|
"lint": "npm run lint:es && npm run lint:style",
|
|
49
49
|
"dev:type": "vue-tsc -p ./tsconfig.json",
|
|
50
|
-
"prepare": "cd .. && husky install ./library/.husky",
|
|
50
|
+
"prepare": "command -v husky >/dev/null 2>&1 && cd .. && husky install ./library/.husky || true",
|
|
51
51
|
"validate-branch-name": "node .husky/validate-branch-name.cjs",
|
|
52
52
|
"validate-commit-msg": "node .husky/validate-commit-msg.cjs",
|
|
53
53
|
"build:types": "vue-tsc --declaration --emitDeclarationOnly --outDir dist"
|