@vc-shell/create-vc-app 1.1.49 → 1.1.50
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/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import i from "node:path";
|
|
|
6
6
|
import s from "node:fs";
|
|
7
7
|
import { fileURLToPath as Re } from "node:url";
|
|
8
8
|
import { cwd as je, argv as Ae, exit as we } from "node:process";
|
|
9
|
-
const ke = "1.1.
|
|
9
|
+
const ke = "1.1.50", Oe = {
|
|
10
10
|
version: ke
|
|
11
11
|
};
|
|
12
12
|
var Ne = typeof global == "object" && global && global.Object === Object && global, Me = typeof self == "object" && self && self.Object === Object && self, Te = Ne || Me || Function("return this")(), p = Te.Symbol, H = Object.prototype, Ue = H.hasOwnProperty, Ee = H.toString, y = p ? p.toStringTag : void 0;
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"@types/node": "^20.10.5",
|
|
24
24
|
"@typescript-eslint/eslint-plugin": "^6.16.0",
|
|
25
25
|
"@typescript-eslint/parser": "^6.16.0",
|
|
26
|
-
"@vc-shell/api-client-generator": "^1.1.
|
|
27
|
-
"@vc-shell/release-config": "^1.1.
|
|
28
|
-
"@vc-shell/ts-config": "^1.1.
|
|
26
|
+
"@vc-shell/api-client-generator": "^1.1.50",
|
|
27
|
+
"@vc-shell/release-config": "^1.1.50",
|
|
28
|
+
"@vc-shell/ts-config": "^1.1.50",
|
|
29
29
|
"@vitejs/plugin-vue": "^5.2.3",
|
|
30
30
|
"@vue/eslint-config-prettier": "^9.0.0",
|
|
31
31
|
"@vue/eslint-config-typescript": "^12.0.0",
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
"vue-tsc": "^2.2.10"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@vc-shell/config-generator": "^1.1.
|
|
57
|
-
"@vc-shell/framework": "^1.1.
|
|
56
|
+
"@vc-shell/config-generator": "^1.1.50",
|
|
57
|
+
"@vc-shell/framework": "^1.1.50",
|
|
58
58
|
"@vueuse/core": "^10.7.1",
|
|
59
59
|
"@vueuse/integrations": "^10.7.1",
|
|
60
60
|
"cross-spawn": "^7.0.3",
|
|
@@ -1,64 +1,28 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
|
-
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import
|
|
6
|
-
import * as vueRouter from "vue-router";
|
|
7
|
-
import * as veeValidate from "vee-validate";
|
|
8
|
-
import * as vueI18n from "vue-i18n";
|
|
9
|
-
import moment from "moment";
|
|
10
|
-
import type {Component} from "vue";
|
|
2
|
+
|
|
3
|
+
import { CoreBladeAdditionalSettings } from "@vc-shell/framework";
|
|
4
|
+
import type { Ref } from "vue";
|
|
5
|
+
import type { Composer } from "vue-i18n";
|
|
11
6
|
|
|
12
7
|
declare module "*.vue" {
|
|
13
|
-
import type {DefineComponent} from "vue";
|
|
8
|
+
import type { DefineComponent } from "vue";
|
|
14
9
|
const component: DefineComponent<{}, {}, any>;
|
|
15
10
|
export default component;
|
|
16
11
|
}
|
|
17
12
|
|
|
18
13
|
declare module "@vue/runtime-core" {
|
|
19
|
-
interface ComponentCustomProperties {
|
|
20
|
-
$
|
|
14
|
+
interface ComponentCustomProperties extends _ComponentCustomProperties {
|
|
15
|
+
$mergeLocaleMessage: Composer<{}, {}, {}, string, never, string>["mergeLocaleMessage"];
|
|
16
|
+
$hasAccess: (permissions: string | string[] | undefined) => boolean;
|
|
21
17
|
$isPhone: Ref<boolean>;
|
|
22
18
|
$isTablet: Ref<boolean>;
|
|
23
19
|
$isMobile: Ref<boolean>;
|
|
24
20
|
$isDesktop: Ref<boolean>;
|
|
25
21
|
$isTouch: boolean;
|
|
26
22
|
$t: (key: string, ...args: any[]) => string;
|
|
27
|
-
$dynamicModules: {
|
|
28
|
-
[x: string]: {
|
|
29
|
-
components?: { [key: string]: Component };
|
|
30
|
-
composables?: { [key: string]: (...args: any[]) => any };
|
|
31
|
-
default: { install: (app: any, options?: any) => void };
|
|
32
|
-
schema: { [key: string]: DynamicGridSchema | DynamicDetailsSchema };
|
|
33
|
-
locales: { [key: string]: { [key: string]: string } };
|
|
34
|
-
notificationTemplates?: { [key: string]: Component };
|
|
35
|
-
};
|
|
36
|
-
};
|
|
37
23
|
}
|
|
38
24
|
|
|
39
|
-
interface ComponentOptionsBase extends CoreBladeAdditionalSettings {
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
declare global {
|
|
44
|
-
interface Window {
|
|
45
|
-
VcShellDynamicModules: {
|
|
46
|
-
[x: string]: {
|
|
47
|
-
components?: { [key: string]: Component };
|
|
48
|
-
composables?: { [key: string]: (...args: any[]) => any };
|
|
49
|
-
default: { install: (app: any, options?: any) => void };
|
|
50
|
-
schema: { [key: string]: DynamicGridSchema | DynamicDetailsSchema };
|
|
51
|
-
locales: { [key: string]: { [key: string]: string } };
|
|
52
|
-
notificationTemplates?: { [key: string]: Component };
|
|
53
|
-
};
|
|
54
|
-
};
|
|
55
|
-
Vue: typeof vue;
|
|
56
|
-
VueRouter: typeof vueRouter;
|
|
57
|
-
VeeValidate: typeof veeValidate;
|
|
58
|
-
VueI18n: typeof vueI18n;
|
|
59
|
-
moment: moment;
|
|
60
|
-
VcShellFramework: any;
|
|
61
|
-
}
|
|
25
|
+
interface ComponentOptionsBase extends CoreBladeAdditionalSettings {}
|
|
62
26
|
}
|
|
63
27
|
|
|
64
28
|
export {};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vc-shell/create-vc-app",
|
|
3
3
|
"description": "Application scaffolding",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.50",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": "./dist/index.js",
|
|
7
7
|
"files": [
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@types/prompts": "^2.4.4",
|
|
16
|
-
"@vc-shell/ts-config": "^1.1.
|
|
16
|
+
"@vc-shell/ts-config": "^1.1.50",
|
|
17
17
|
"copyfiles": "^2.4.1",
|
|
18
18
|
"cross-env": "^7.0.3",
|
|
19
19
|
"shx": "^0.3.4",
|