@nmorph/nmorph-ui-kit 3.0.8 → 3.0.9
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/components/basic/nmorph-button/NmorphButton.css +1 -1
- package/dist/components/data/nmorph-empty/NmorphEmpty.css +1 -1
- package/dist/components/data/nmorph-image/NmorphImage.vue2.js +13 -14
- package/dist/components/data/nmorph-media-tile/NmorphMediaTile.vue.js +28 -25
- package/dist/components/data/nmorph-table/NmorphTable.css +1 -1
- package/dist/components/form/nmorph-color-picker/NmorphColorPicker.css +1 -1
- package/dist/components/form/nmorph-color-picker/NmorphColorPicker.vue.js +5 -5
- package/dist/components/form/nmorph-time-picker/NmorphTimePicker.css +1 -1
- package/dist/components/form/nmorph-time-picker/NmorphTimePicker.vue.js +66 -64
- package/dist/components/navigation/nmorph-tabs/NmorphTabs.css +1 -1
- package/dist/emoji/index.d.ts +1 -1
- package/dist/emoji/index.js +1 -1
- package/dist/emoji/locales/en.d.ts +4 -0
- package/dist/emoji/locales/en.js +1 -1
- package/dist/emoji/locales/ru.d.ts +4 -0
- package/dist/emoji/locales/ru.js +1 -1
- package/dist/emoji/locales/zh.d.ts +4 -0
- package/dist/emoji/locales/zh.js +1 -1
- package/dist/index.es.js +2 -2
- package/dist/index.umd.js +2 -2
- package/dist/locales/en.js +0 -1
- package/dist/locales/ru.js +0 -1
- package/dist/locales/zh.js +0 -1
- package/dist/outside-hooks/use-nmorph-theme.js +1 -1
- package/dist/package.json.js +1 -1
- package/dist/plugin.js +1 -1
- package/dist/src/components/basic/index.d.ts +2 -0
- package/dist/src/components/data/index.d.ts +13 -0
- package/dist/src/{emoji → components/data/nmorph-emoji-picker/emoji}/base.d.ts +1 -1
- package/dist/src/components/data/nmorph-image/NmorphImage.vue.d.ts +0 -1
- package/dist/src/components/data/nmorph-image/types.d.ts +0 -2
- package/dist/src/components/feedback/index.d.ts +3 -0
- package/dist/src/components/feedback/nmorph-drawer/NmorphDrawer.vue.d.ts +2 -1
- package/dist/src/components/form/index.d.ts +14 -0
- package/dist/src/components/form/nmorph-slider/NmorphSlider.vue.d.ts +1 -1
- package/dist/src/components/navigation/index.d.ts +4 -0
- package/dist/src/components/others/index.d.ts +1 -0
- package/dist/src/main.d.ts +1 -1
- package/dist/src/plugin.d.ts +1 -1
- package/dist/style.css +1 -1
- package/package.json +14 -25
- /package/dist/{emoji → components/data/nmorph-emoji-picker/emoji}/base.js +0 -0
- /package/dist/outside-utils/{index.js → nmorph-log.js} +0 -0
- /package/dist/src/{emoji → components/data/nmorph-emoji-picker/emoji}/index.d.ts +0 -0
- /package/dist/src/{emoji → components/data/nmorph-emoji-picker/emoji}/locales/en.d.ts +0 -0
- /package/dist/src/{emoji → components/data/nmorph-emoji-picker/emoji}/locales/ru.d.ts +0 -0
- /package/dist/src/{emoji → components/data/nmorph-emoji-picker/emoji}/locales/zh.d.ts +0 -0
- /package/dist/src/outside-utils/{index.d.ts → nmorph-log.d.ts} +0 -0
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": "3.0.
|
|
5
|
+
"version": "3.0.9",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -20,11 +20,7 @@
|
|
|
20
20
|
"**/*.css"
|
|
21
21
|
],
|
|
22
22
|
"files": [
|
|
23
|
-
"dist"
|
|
24
|
-
"tsconfig.base.json",
|
|
25
|
-
".eslintrc.base.cjs",
|
|
26
|
-
".stylelintrc.base.cjs",
|
|
27
|
-
".prettierrc.base.cjs"
|
|
23
|
+
"dist"
|
|
28
24
|
],
|
|
29
25
|
"exports": {
|
|
30
26
|
".": {
|
|
@@ -47,19 +43,19 @@
|
|
|
47
43
|
"import": "./dist/styles.js"
|
|
48
44
|
},
|
|
49
45
|
"./emoji": {
|
|
50
|
-
"types": "./dist/src/emoji/index.d.ts",
|
|
46
|
+
"types": "./dist/src/components/data/nmorph-emoji-picker/emoji/index.d.ts",
|
|
51
47
|
"import": "./dist/emoji/index.js"
|
|
52
48
|
},
|
|
53
49
|
"./emoji/en": {
|
|
54
|
-
"types": "./dist/src/emoji/locales/en.d.ts",
|
|
50
|
+
"types": "./dist/src/components/data/nmorph-emoji-picker/emoji/locales/en.d.ts",
|
|
55
51
|
"import": "./dist/emoji/locales/en.js"
|
|
56
52
|
},
|
|
57
53
|
"./emoji/ru": {
|
|
58
|
-
"types": "./dist/src/emoji/locales/ru.d.ts",
|
|
54
|
+
"types": "./dist/src/components/data/nmorph-emoji-picker/emoji/locales/ru.d.ts",
|
|
59
55
|
"import": "./dist/emoji/locales/ru.js"
|
|
60
56
|
},
|
|
61
57
|
"./emoji/zh": {
|
|
62
|
-
"types": "./dist/src/emoji/locales/zh.d.ts",
|
|
58
|
+
"types": "./dist/src/components/data/nmorph-emoji-picker/emoji/locales/zh.d.ts",
|
|
63
59
|
"import": "./dist/emoji/locales/zh.js"
|
|
64
60
|
},
|
|
65
61
|
"./styles.css": "./dist/style.css",
|
|
@@ -81,9 +77,9 @@
|
|
|
81
77
|
"./dist/styles/main.scss": "./dist/styles/main.scss"
|
|
82
78
|
},
|
|
83
79
|
"scripts": {
|
|
84
|
-
"dev": "
|
|
85
|
-
"storybook": "
|
|
86
|
-
"build:storybook": "
|
|
80
|
+
"dev": "storybook dev -p 43183",
|
|
81
|
+
"storybook": "storybook dev -p 43183",
|
|
82
|
+
"build:storybook": "storybook build",
|
|
87
83
|
"build": "pnpm run build:types && vite build && vite build --config vite.umd.config.ts && vite build --config vite.nuxt.config.ts",
|
|
88
84
|
"test": "vitest run",
|
|
89
85
|
"test:watch": "vitest",
|
|
@@ -97,17 +93,12 @@
|
|
|
97
93
|
"dev:type": "vue-tsc -p ./tsconfig.json",
|
|
98
94
|
"typecheck": "vue-tsc -p ./tsconfig.json",
|
|
99
95
|
"check": "pnpm run lint:check && pnpm run typecheck && pnpm run test",
|
|
100
|
-
"prepare": "node ./scripts/install-husky.cjs",
|
|
101
|
-
"validate-branch-name": "node .husky/validate-branch-name.cjs",
|
|
102
|
-
"validate-commit-msg": "node .husky/validate-commit-msg.cjs",
|
|
103
96
|
"build:types": "vue-tsc --declaration --emitDeclarationOnly --outDir dist"
|
|
104
97
|
},
|
|
105
|
-
"dependencies": {
|
|
106
|
-
"vue": "^3.5.13",
|
|
107
|
-
"vue-i18n": "^9.9.0"
|
|
108
|
-
},
|
|
109
98
|
"peerDependencies": {
|
|
110
|
-
"nuxt": ">=3.0.0"
|
|
99
|
+
"nuxt": ">=3.0.0",
|
|
100
|
+
"vue": ">=3.4.0",
|
|
101
|
+
"vue-i18n": ">=9.0.0"
|
|
111
102
|
},
|
|
112
103
|
"peerDependenciesMeta": {
|
|
113
104
|
"nuxt": {
|
|
@@ -122,7 +113,6 @@
|
|
|
122
113
|
"@storybook/vue3": "10.3.6",
|
|
123
114
|
"@storybook/vue3-vite": "10.3.6",
|
|
124
115
|
"@types/node": "^20.10.8",
|
|
125
|
-
"@types/vue": "^2.0.0",
|
|
126
116
|
"@typescript-eslint/eslint-plugin": "^6.18.1",
|
|
127
117
|
"@typescript-eslint/parser": "^6.18.1",
|
|
128
118
|
"@vitejs/plugin-vue": "^5.2.4",
|
|
@@ -134,9 +124,7 @@
|
|
|
134
124
|
"eslint-plugin-storybook": "^0.6.15",
|
|
135
125
|
"eslint-plugin-vue": "^9.19.2",
|
|
136
126
|
"happy-dom": "^15.11.7",
|
|
137
|
-
"husky": "^8.0.3",
|
|
138
127
|
"prettier": "^3.1.1",
|
|
139
|
-
"rollup-plugin-ignore": "^1.0.10",
|
|
140
128
|
"sass": "^1.69.7",
|
|
141
129
|
"storybook": "10.3.6",
|
|
142
130
|
"stylelint": "^16.1.0",
|
|
@@ -152,10 +140,11 @@
|
|
|
152
140
|
"typescript": "~5.1.6",
|
|
153
141
|
"vite": "^5.4.21",
|
|
154
142
|
"vite-plugin-dts": "^4.3.0",
|
|
155
|
-
"vite-plugin-static-copy": "^0.17.1",
|
|
156
143
|
"vite-svg-loader": "^5.1.0",
|
|
157
144
|
"vitest": "2.1.9",
|
|
145
|
+
"vue": "^3.5.13",
|
|
158
146
|
"vue-eslint-parser": "^9.4.0",
|
|
147
|
+
"vue-i18n": "^9.9.0",
|
|
159
148
|
"vue-tsc": "^1.6.5"
|
|
160
149
|
}
|
|
161
150
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|