@signal24/vue-foundation 4.10.3 → 4.12.1
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/.gitattributes +2 -0
- package/.yarn/install-state.gz +0 -0
- package/.yarn/releases/yarn-4.0.2.cjs +893 -0
- package/.yarnrc.yml +3 -0
- package/dist/src/components/ajax-select.vue.d.ts +2 -2
- package/dist/vue-foundation.css +1 -1
- package/dist/vue-foundation.es.js +215 -217
- package/package.json +32 -28
- package/src/components/overlay-container.ts +5 -5
- package/tsconfig.app.json +2 -0
- package/tsconfig.vitest.json +4 -2
- package/vite.config.ts +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signal24/vue-foundation",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "4.
|
|
4
|
+
"version": "4.12.1",
|
|
5
5
|
"description": "Common components, directives, and helpers for Vue 3 apps",
|
|
6
6
|
"module": "./dist/vue-foundation.es.js",
|
|
7
7
|
"exports": {
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"typings": "./dist/src/index.d.ts",
|
|
22
22
|
"scripts": {
|
|
23
23
|
"dev": "vite",
|
|
24
|
-
"build": "rm -rf dist && vite build && vue-tsc
|
|
24
|
+
"build": "rm -rf dist && vite build && vue-tsc -p tsconfig.app.json && tsc -p tsconfig.vite-plugins.json && find dist -name '*.tsbuildinfo' -delete",
|
|
25
25
|
"build:watch": "fswatch -o src | xargs -n1 -I{} yarn build",
|
|
26
26
|
"preview": "vite preview",
|
|
27
|
-
"test:types": "vue-tsc
|
|
27
|
+
"test:types": "vue-tsc -p tsconfig.vitest.json",
|
|
28
28
|
"test:unit": "vitest",
|
|
29
29
|
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
|
|
30
30
|
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
|
|
@@ -43,36 +43,40 @@
|
|
|
43
43
|
"vue": "^3.3.7"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@nabla/vite-plugin-eslint": "^
|
|
47
|
-
"@rushstack/eslint-patch": "^1.
|
|
46
|
+
"@nabla/vite-plugin-eslint": "^2.0.2",
|
|
47
|
+
"@rushstack/eslint-patch": "^1.6.1",
|
|
48
|
+
"@signal24/openapi-client-codegen": "^1.1.0",
|
|
48
49
|
"@tsconfig/node20": "^20.1.2",
|
|
49
|
-
"@types/jsdom": "^21.1.
|
|
50
|
-
"@types/lodash": "^4.14.
|
|
51
|
-
"@types/node": "^20.
|
|
52
|
-
"@types/uuid": "^9.0.
|
|
53
|
-
"@vitejs/plugin-vue": "^
|
|
50
|
+
"@types/jsdom": "^21.1.6",
|
|
51
|
+
"@types/lodash": "^4.14.202",
|
|
52
|
+
"@types/node": "^20.10.5",
|
|
53
|
+
"@types/uuid": "^9.0.7",
|
|
54
|
+
"@vitejs/plugin-vue": "^5.0.0",
|
|
54
55
|
"@vue/eslint-config-prettier": "^8.0.0",
|
|
55
56
|
"@vue/eslint-config-typescript": "^12.0.0",
|
|
56
|
-
"@vue/test-utils": "^2.4.
|
|
57
|
-
"@vue/tsconfig": "^0.
|
|
58
|
-
"cypress": "^13.
|
|
59
|
-
"
|
|
57
|
+
"@vue/test-utils": "^2.4.3",
|
|
58
|
+
"@vue/tsconfig": "^0.5.1",
|
|
59
|
+
"cypress": "^13.6.2",
|
|
60
|
+
"date-fns": "^3.0.6",
|
|
61
|
+
"eslint": "^8.56.0",
|
|
60
62
|
"eslint-plugin-cypress": "^2.15.1",
|
|
61
63
|
"eslint-plugin-simple-import-sort": "^10.0.0",
|
|
62
64
|
"eslint-plugin-unused-imports": "^3.0.0",
|
|
63
|
-
"eslint-plugin-vue": "^9.
|
|
64
|
-
"jsdom": "^
|
|
65
|
-
"prettier": "^3.0.3",
|
|
66
|
-
"sass": "^1.69.5",
|
|
67
|
-
"start-server-and-test": "^2.0.1",
|
|
68
|
-
"typescript": "~5.2.2",
|
|
69
|
-
"type-fest": "^4.6.0",
|
|
70
|
-
"vite": "^4.5.0",
|
|
71
|
-
"vitest": "^0.34.6",
|
|
72
|
-
"vue-tsc": "^1.8.22",
|
|
73
|
-
"@signal24/openapi-client-codegen": "^1.1.0",
|
|
74
|
-
"date-fns": "^2.30.0",
|
|
65
|
+
"eslint-plugin-vue": "^9.19.2",
|
|
66
|
+
"jsdom": "^23.0.1",
|
|
75
67
|
"lodash": "^4.17.21",
|
|
76
|
-
"
|
|
77
|
-
|
|
68
|
+
"prettier": "^3.1.1",
|
|
69
|
+
"sass": "^1.69.6",
|
|
70
|
+
"start-server-and-test": "^2.0.3",
|
|
71
|
+
"type-fest": "^4.9.0",
|
|
72
|
+
"typescript": "~5.3.3",
|
|
73
|
+
"vite": "^5.0.10",
|
|
74
|
+
"vitest": "^1.1.0",
|
|
75
|
+
"vue": "^3.3.13",
|
|
76
|
+
"vue-tsc": "^1.8.27"
|
|
77
|
+
},
|
|
78
|
+
"resolutions": {
|
|
79
|
+
"jackspeak": "2.1.1"
|
|
80
|
+
},
|
|
81
|
+
"packageManager": "yarn@4.0.2"
|
|
78
82
|
}
|
|
@@ -77,11 +77,11 @@ export type OverlayComponentConfig<T> = T extends Vue__ComponentPublicInstanceCo
|
|
|
77
77
|
component: Raw<T>;
|
|
78
78
|
}
|
|
79
79
|
: T extends (props: infer P) => any
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
80
|
+
? {
|
|
81
|
+
props: Omit<ObjectOrDefault<P>, keyof VNodeProps | keyof AllowedComponentProps>;
|
|
82
|
+
component: T;
|
|
83
|
+
}
|
|
84
|
+
: never;
|
|
85
85
|
export type OverlayComponentUnwrapped<T extends OverlayComponent> = OverlayComponentConfig<T>['component'];
|
|
86
86
|
export type OverlayComponentProps<T extends OverlayComponent> = OverlayComponentConfig<T>['props'];
|
|
87
87
|
|
package/tsconfig.app.json
CHANGED
package/tsconfig.vitest.json
CHANGED
package/vite.config.ts
CHANGED
|
@@ -26,7 +26,7 @@ export default defineConfig({
|
|
|
26
26
|
external: ['date-fns', 'lodash', 'vue', '@vue/shared', '@signal24/openapi-client-codegen/browser'],
|
|
27
27
|
output: {
|
|
28
28
|
assetFileNames: assetInfo => {
|
|
29
|
-
if (assetInfo.name === '
|
|
29
|
+
if (assetInfo.name === 'main.css') return 'vue-foundation.css';
|
|
30
30
|
return assetInfo.name!;
|
|
31
31
|
},
|
|
32
32
|
exports: 'named',
|