@nmorph/nmorph-ui-kit 2.2.43 → 2.2.44

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.
Files changed (45) hide show
  1. package/dist/assets/icons/chevron-up.svg.js +4 -4
  2. package/dist/assets/icons/download.svg.js +5 -5
  3. package/dist/assets/icons/open.svg.js +2 -2
  4. package/dist/assets/icons/search.svg.js +1 -1
  5. package/dist/assets/icons/smile.svg.js +4 -4
  6. package/dist/components/basic/nmorph-button/NmorphButton.vue.js +16 -16
  7. package/dist/components/data/nmorph-audio-preview/NmorphAudioPreview.css +1 -0
  8. package/dist/components/data/nmorph-audio-preview/NmorphAudioPreview.vue.js +207 -0
  9. package/dist/components/data/nmorph-audio-preview/NmorphAudioPreview.vue3.js +6 -0
  10. package/dist/components/data/nmorph-emoji-picker/NmorphEmojiPicker.css +1 -0
  11. package/dist/components/data/nmorph-emoji-picker/NmorphEmojiPicker.vue.js +371 -0
  12. package/dist/components/data/nmorph-emoji-picker/NmorphEmojiPicker.vue3.js +6 -0
  13. package/dist/components/data/nmorph-file-card/NmorphFileCard.css +1 -0
  14. package/dist/components/data/nmorph-file-card/NmorphFileCard.vue.js +124 -0
  15. package/dist/components/data/nmorph-file-card/NmorphFileCard.vue3.js +6 -0
  16. package/dist/components/data/nmorph-media-tile/NmorphMediaTile.vue.js +8 -8
  17. package/dist/components/data/nmorph-video-preview/NmorphVideoPreview.css +1 -0
  18. package/dist/components/data/nmorph-video-preview/NmorphVideoPreview.vue.js +147 -0
  19. package/dist/components/data/nmorph-video-preview/NmorphVideoPreview.vue3.js +6 -0
  20. package/dist/components/form/nmorph-file-upload/NmorphFileUpload.css +1 -1
  21. package/dist/components/form/nmorph-file-upload/NmorphFileUpload.vue.js +154 -125
  22. package/dist/components/form/nmorph-file-upload/types.js +9 -9
  23. package/dist/index.es.js +861 -849
  24. package/dist/index.umd.js +26 -26
  25. package/dist/package.json.js +1 -1
  26. package/dist/src/components/data/index.d.ts +8 -0
  27. package/dist/src/components/data/nmorph-audio-preview/NmorphAudioPreview.vue.d.ts +38 -0
  28. package/dist/src/components/data/nmorph-audio-preview/types.d.ts +20 -0
  29. package/dist/src/components/data/nmorph-calendar/NmorphCalendar.vue.d.ts +1 -1
  30. package/dist/src/components/data/nmorph-emoji-picker/NmorphEmojiPicker.vue.d.ts +25 -0
  31. package/dist/src/components/data/nmorph-emoji-picker/types.d.ts +50 -0
  32. package/dist/src/components/data/nmorph-file-card/NmorphFileCard.vue.d.ts +30 -0
  33. package/dist/src/components/data/nmorph-file-card/types.d.ts +18 -0
  34. package/dist/src/components/data/nmorph-media-tile/NmorphMediaTile.vue.d.ts +1 -1
  35. package/dist/src/components/data/nmorph-video-preview/NmorphVideoPreview.vue.d.ts +41 -0
  36. package/dist/src/components/data/nmorph-video-preview/types.d.ts +27 -0
  37. package/dist/src/components/form/nmorph-date-picker/inner-components/nmorph-year-month-picker/NmorphYearMonthPicker.vue.d.ts +1 -1
  38. package/dist/src/components/form/nmorph-file-upload/NmorphFileUpload.vue.d.ts +1 -1
  39. package/dist/src/components/form/nmorph-file-upload/types.d.ts +4 -0
  40. package/dist/src/components/form/nmorph-number-input/NmorphNumberInput.vue.d.ts +1 -1
  41. package/dist/src/components/form/nmorph-slider/NmorphSlider.vue.d.ts +1 -1
  42. package/dist/src/utils/file-types.d.ts +8 -1
  43. package/dist/style.css +1 -1
  44. package/dist/utils/file-types.js +28 -21
  45. package/package.json +23 -24
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": "2.2.43",
5
+ "version": "2.2.44",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
@@ -64,28 +64,6 @@
64
64
  "./dist/styles/abstracts/_functions.scss": "./dist/styles/abstracts/_functions.scss",
65
65
  "./dist/styles/main.scss": "./dist/styles/main.scss"
66
66
  },
67
- "scripts": {
68
- "dev": "node ./scripts/run-storybook.cjs dev -p 43183",
69
- "storybook": "node ./scripts/run-storybook.cjs dev -p 43183",
70
- "build:storybook": "node ./scripts/run-storybook.cjs build",
71
- "build": "pnpm run build:types && vite build && vite build --config vite.umd.config.ts && vite build --config vite.nuxt.config.ts",
72
- "test": "vitest run",
73
- "test:watch": "vitest",
74
- "watch": "vite build --watch",
75
- "lint:es:check": "eslint --ext .js,.ts,.vue --ignore-path .gitignore src/",
76
- "lint:es": "eslint --ext .js,.ts,.vue --ignore-path .gitignore --fix src/",
77
- "lint:style:check": "stylelint ./src/**/*.{scss,vue}",
78
- "lint:style": "stylelint ./src/**/*.{scss,vue} --fix",
79
- "lint:check": "pnpm run lint:es:check && pnpm run lint:style:check",
80
- "lint": "pnpm run lint:es && pnpm run lint:style",
81
- "dev:type": "vue-tsc -p ./tsconfig.json",
82
- "typecheck": "vue-tsc -p ./tsconfig.json",
83
- "check": "pnpm run lint:check && pnpm run typecheck && pnpm run test",
84
- "prepare": "node ./scripts/install-husky.cjs",
85
- "validate-branch-name": "node .husky/validate-branch-name.cjs",
86
- "validate-commit-msg": "node .husky/validate-commit-msg.cjs",
87
- "build:types": "vue-tsc --declaration --emitDeclarationOnly --outDir dist"
88
- },
89
67
  "dependencies": {
90
68
  "vue": "^3.5.13",
91
69
  "vue-i18n": "^9.9.0"
@@ -141,5 +119,26 @@
141
119
  "vitest": "2.1.9",
142
120
  "vue-eslint-parser": "^9.4.0",
143
121
  "vue-tsc": "^1.6.5"
122
+ },
123
+ "scripts": {
124
+ "dev": "node ./scripts/run-storybook.cjs dev -p 43183",
125
+ "storybook": "node ./scripts/run-storybook.cjs dev -p 43183",
126
+ "build:storybook": "node ./scripts/run-storybook.cjs build",
127
+ "build": "pnpm run build:types && vite build && vite build --config vite.umd.config.ts && vite build --config vite.nuxt.config.ts",
128
+ "test": "vitest run",
129
+ "test:watch": "vitest",
130
+ "watch": "vite build --watch",
131
+ "lint:es:check": "eslint --ext .js,.ts,.vue --ignore-path .gitignore src/",
132
+ "lint:es": "eslint --ext .js,.ts,.vue --ignore-path .gitignore --fix src/",
133
+ "lint:style:check": "stylelint ./src/**/*.{scss,vue}",
134
+ "lint:style": "stylelint ./src/**/*.{scss,vue} --fix",
135
+ "lint:check": "pnpm run lint:es:check && pnpm run lint:style:check",
136
+ "lint": "pnpm run lint:es && pnpm run lint:style",
137
+ "dev:type": "vue-tsc -p ./tsconfig.json",
138
+ "typecheck": "vue-tsc -p ./tsconfig.json",
139
+ "check": "pnpm run lint:check && pnpm run typecheck && pnpm run test",
140
+ "validate-branch-name": "node .husky/validate-branch-name.cjs",
141
+ "validate-commit-msg": "node .husky/validate-commit-msg.cjs",
142
+ "build:types": "vue-tsc --declaration --emitDeclarationOnly --outDir dist"
144
143
  }
145
- }
144
+ }