@nmorph/nmorph-ui-kit 2.2.51 → 2.2.52

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 (28) hide show
  1. package/dist/components/data/nmorph-file-card/NmorphFileCard.css +1 -1
  2. package/dist/components/data/nmorph-file-card/NmorphFileCard.vue.js +118 -86
  3. package/dist/components/data/nmorph-image-preview/NmorphImagePreview.css +1 -1
  4. package/dist/components/data/nmorph-image-preview/NmorphImagePreview.vue.js +183 -225
  5. package/dist/components/data/nmorph-media-gallery/NmorphMediaGallery.css +1 -0
  6. package/dist/components/data/nmorph-media-gallery/NmorphMediaGallery.vue.js +298 -0
  7. package/dist/components/data/nmorph-media-gallery/NmorphMediaGallery.vue3.js +6 -0
  8. package/dist/components/data/nmorph-preview-portal/NmorphPreviewPortal.css +1 -0
  9. package/dist/components/data/nmorph-preview-portal/NmorphPreviewPortal.vue.js +110 -0
  10. package/dist/components/data/nmorph-preview-portal/NmorphPreviewPortal.vue3.js +6 -0
  11. package/dist/components/data/nmorph-video-preview/NmorphVideoPreview.vue.js +6 -5
  12. package/dist/index.es.js +866 -863
  13. package/dist/index.umd.js +21 -21
  14. package/dist/outside-hooks/use-nmorph-theme.js +16 -16
  15. package/dist/package.json.js +1 -1
  16. package/dist/src/components/data/index.d.ts +2 -0
  17. package/dist/src/components/data/nmorph-card/NmorphCard.vue.d.ts +1 -1
  18. package/dist/src/components/data/nmorph-file-card/types.d.ts +1 -1
  19. package/dist/src/components/data/nmorph-image-preview/NmorphImagePreview.vue.d.ts +3 -3
  20. package/dist/src/components/data/nmorph-media-gallery/NmorphMediaGallery.vue.d.ts +26 -0
  21. package/dist/src/components/data/nmorph-media-gallery/types.d.ts +34 -0
  22. package/dist/src/components/data/nmorph-preview-portal/NmorphPreviewPortal.vue.d.ts +43 -0
  23. package/dist/src/components/data/nmorph-video-preview/NmorphVideoPreview.vue.d.ts +2 -1
  24. package/dist/src/components/data/nmorph-video-preview/types.d.ts +2 -0
  25. package/dist/src/components/feedback/nmorph-drawer/NmorphDrawer.vue.d.ts +1 -1
  26. package/dist/src/components/navigation/nmorph-dropdown/NmorphDropdown.vue.d.ts +1 -1
  27. package/dist/style.css +1 -1
  28. package/package.json +24 -23
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.51",
5
+ "version": "2.2.52",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
@@ -80,6 +80,28 @@
80
80
  "./dist/styles/abstracts/_functions.scss": "./dist/styles/abstracts/_functions.scss",
81
81
  "./dist/styles/main.scss": "./dist/styles/main.scss"
82
82
  },
83
+ "scripts": {
84
+ "dev": "node ./scripts/run-storybook.cjs dev -p 43183",
85
+ "storybook": "node ./scripts/run-storybook.cjs dev -p 43183",
86
+ "build:storybook": "node ./scripts/run-storybook.cjs build",
87
+ "build": "pnpm run build:types && vite build && vite build --config vite.umd.config.ts && vite build --config vite.nuxt.config.ts",
88
+ "test": "vitest run",
89
+ "test:watch": "vitest",
90
+ "watch": "vite build --watch",
91
+ "lint:es:check": "eslint --ext .js,.ts,.vue --ignore-path .gitignore src/",
92
+ "lint:es": "eslint --ext .js,.ts,.vue --ignore-path .gitignore --fix src/",
93
+ "lint:style:check": "stylelint ./src/**/*.{scss,vue}",
94
+ "lint:style": "stylelint ./src/**/*.{scss,vue} --fix",
95
+ "lint:check": "pnpm run lint:es:check && pnpm run lint:style:check",
96
+ "lint": "pnpm run lint:es && pnpm run lint:style",
97
+ "dev:type": "vue-tsc -p ./tsconfig.json",
98
+ "typecheck": "vue-tsc -p ./tsconfig.json",
99
+ "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
+ "build:types": "vue-tsc --declaration --emitDeclarationOnly --outDir dist"
104
+ },
83
105
  "dependencies": {
84
106
  "vue": "^3.5.13",
85
107
  "vue-i18n": "^9.9.0"
@@ -135,26 +157,5 @@
135
157
  "vitest": "2.1.9",
136
158
  "vue-eslint-parser": "^9.4.0",
137
159
  "vue-tsc": "^1.6.5"
138
- },
139
- "scripts": {
140
- "dev": "node ./scripts/run-storybook.cjs dev -p 43183",
141
- "storybook": "node ./scripts/run-storybook.cjs dev -p 43183",
142
- "build:storybook": "node ./scripts/run-storybook.cjs build",
143
- "build": "pnpm run build:types && vite build && vite build --config vite.umd.config.ts && vite build --config vite.nuxt.config.ts",
144
- "test": "vitest run",
145
- "test:watch": "vitest",
146
- "watch": "vite build --watch",
147
- "lint:es:check": "eslint --ext .js,.ts,.vue --ignore-path .gitignore src/",
148
- "lint:es": "eslint --ext .js,.ts,.vue --ignore-path .gitignore --fix src/",
149
- "lint:style:check": "stylelint ./src/**/*.{scss,vue}",
150
- "lint:style": "stylelint ./src/**/*.{scss,vue} --fix",
151
- "lint:check": "pnpm run lint:es:check && pnpm run lint:style:check",
152
- "lint": "pnpm run lint:es && pnpm run lint:style",
153
- "dev:type": "vue-tsc -p ./tsconfig.json",
154
- "typecheck": "vue-tsc -p ./tsconfig.json",
155
- "check": "pnpm run lint:check && pnpm run typecheck && pnpm run test",
156
- "validate-branch-name": "node .husky/validate-branch-name.cjs",
157
- "validate-commit-msg": "node .husky/validate-commit-msg.cjs",
158
- "build:types": "vue-tsc --declaration --emitDeclarationOnly --outDir dist"
159
160
  }
160
- }
161
+ }