bms-shared-components 1.1.25 → 1.1.28
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/bms-shared-components.css +1 -1
- package/dist/bms-shared-components.d.ts +1 -0
- package/dist/bms-shared-components.js +33300 -32118
- package/dist/bms-shared-components.umd.cjs +224 -222
- package/global-components.d.ts +1 -0
- package/package.json +7 -4
package/global-components.d.ts
CHANGED
|
@@ -27,5 +27,6 @@ declare module "vue" {
|
|
|
27
27
|
TablePresetPicker: (typeof import("bms-shared-components"))["TablePresetPicker"];
|
|
28
28
|
TheTable: (typeof import("bms-shared-components"))["TheTable"];
|
|
29
29
|
ReSimpleTable: (typeof import("bms-shared-components"))["ReSimpleTable"];
|
|
30
|
+
InventoryV2Page: (typeof import("bms-shared-components"))["InventoryV2Page"];
|
|
30
31
|
}
|
|
31
32
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bms-shared-components",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.28",
|
|
4
4
|
"description": "Shared Vue 3 components library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/bms-shared-components.umd.cjs",
|
|
@@ -23,8 +23,9 @@
|
|
|
23
23
|
],
|
|
24
24
|
"scripts": {
|
|
25
25
|
"dev": "vite --mode development",
|
|
26
|
-
"build": "vite build",
|
|
27
|
-
"build:
|
|
26
|
+
"build": "vite build --mode library && node -e \"require('fs').copyFileSync('bms-shared-components.d.ts','dist/bms-shared-components.d.ts')\"",
|
|
27
|
+
"build:playground": "vite build",
|
|
28
|
+
"build:lib": "npm run build",
|
|
28
29
|
"preview": "vite preview",
|
|
29
30
|
"prepublishOnly": "npm run build:lib",
|
|
30
31
|
"publish:patch": "npm version patch && npm publish",
|
|
@@ -37,9 +38,11 @@
|
|
|
37
38
|
"test:watch": "vitest --watch"
|
|
38
39
|
},
|
|
39
40
|
"peerDependencies": {
|
|
40
|
-
"vue": "^3.0.0"
|
|
41
|
+
"vue": "^3.0.0",
|
|
42
|
+
"vue-router": "^4.0.0"
|
|
41
43
|
},
|
|
42
44
|
"devDependencies": {
|
|
45
|
+
"vue-router": "^4.4.0",
|
|
43
46
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
44
47
|
"@vitest/ui": "^1.6.1",
|
|
45
48
|
"@vue/test-utils": "^2.4.6",
|