@okiss/oms 0.0.30 → 0.0.32

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 (108) hide show
  1. package/dist/index.es.js +226 -230
  2. package/dist/index.es.js.map +1 -1
  3. package/dist/style.css +1 -1
  4. package/dist/types/App.vue.d.ts +44 -0
  5. package/dist/types/admin.d.ts +6 -7
  6. package/dist/types/components/{PageLoad.d.ts → PageLoad.vue.d.ts} +0 -0
  7. package/dist/types/components/{RightMenu.d.ts → RightMenu.vue.d.ts} +2 -2
  8. package/dist/types/components/VLoading.vue.d.ts +2 -0
  9. package/dist/types/components/{VTree.d.ts → VTree.vue.d.ts} +5 -5
  10. package/dist/types/components/report/{NumberPanel.d.ts → NumberPanel.vue.d.ts} +1 -1
  11. package/dist/types/components/report/index.vue.d.ts +89 -0
  12. package/dist/types/components/report/part.vue.d.ts +2 -0
  13. package/dist/types/default.d.ts +2 -2
  14. package/dist/types/directive/devtool.d.ts +1 -1
  15. package/dist/types/directive/outClick.d.ts +1 -1
  16. package/dist/types/directive/resize.d.ts +1 -1
  17. package/dist/types/directive/rightClick.d.ts +1 -1
  18. package/dist/types/index.d.ts +1 -1
  19. package/dist/types/mock/apis/index.d.ts +1 -1
  20. package/dist/types/mock/apis/user.d.ts +1 -1
  21. package/dist/types/mock/index.d.ts +1 -1
  22. package/dist/types/plugins/element-plus.d.ts +3 -3
  23. package/dist/types/plugins/eventBus.d.ts +1 -1
  24. package/dist/types/render/index.d.ts +1 -1
  25. package/dist/types/router/guard/index.d.ts +1 -1
  26. package/dist/types/router/guard/nprogress.d.ts +2 -2
  27. package/dist/types/router/guard/permission.d.ts +1 -1
  28. package/dist/types/router/guard/remote-routes.d.ts +1 -1
  29. package/dist/types/router/guard/set-page-title.d.ts +1 -1
  30. package/dist/types/router/index.d.ts +1 -1
  31. package/dist/types/router/remote.d.ts +1 -1
  32. package/dist/types/router/types.d.ts +1 -1
  33. package/dist/types/scaffold/404.vue.d.ts +2 -0
  34. package/dist/types/scaffold/container.vue.d.ts +44 -0
  35. package/dist/types/scaffold/custom.vue.d.ts +44 -0
  36. package/dist/types/scaffold/dashboard.vue.d.ts +2 -0
  37. package/dist/types/scaffold/devtool/DevLayout.vue.d.ts +2 -0
  38. package/dist/types/scaffold/devtool/formBuilder/ctrls/select.d.ts +0 -1
  39. package/dist/types/scaffold/devtool/formBuilder/index.vue.d.ts +142 -0
  40. package/dist/types/scaffold/devtool/tableBuilder/btn/index.d.ts +11 -0
  41. package/dist/types/scaffold/devtool/tableBuilder/btn/jump.d.ts +49 -0
  42. package/dist/types/scaffold/devtool/tableBuilder/btn/table.d.ts +50 -0
  43. package/dist/types/scaffold/devtool/tableBuilder/columns/emum.d.ts +35 -0
  44. package/dist/types/scaffold/devtool/tableBuilder/columns/html.d.ts +17 -0
  45. package/dist/types/scaffold/devtool/tableBuilder/columns/icon.d.ts +17 -0
  46. package/dist/types/scaffold/devtool/tableBuilder/columns/image.d.ts +17 -0
  47. package/dist/types/scaffold/devtool/tableBuilder/columns/index.d.ts +21 -0
  48. package/dist/types/scaffold/devtool/tableBuilder/columns/json.d.ts +17 -0
  49. package/dist/types/scaffold/devtool/tableBuilder/columns/link.d.ts +17 -0
  50. package/dist/types/scaffold/devtool/tableBuilder/columns/rich.d.ts +17 -0
  51. package/dist/types/scaffold/devtool/tableBuilder/columns/span.d.ts +17 -0
  52. package/dist/types/scaffold/devtool/tableBuilder/columns/tpl.d.ts +23 -0
  53. package/dist/types/scaffold/devtool/tableBuilder/ctrls/date.d.ts +17 -0
  54. package/dist/types/scaffold/devtool/tableBuilder/ctrls/input.d.ts +38 -0
  55. package/dist/types/scaffold/devtool/tableBuilder/ctrls/select.d.ts +89 -0
  56. package/dist/types/scaffold/devtool/tableBuilder/index.vue.d.ts +572 -0
  57. package/dist/types/scaffold/form.vue.d.ts +44 -0
  58. package/dist/types/scaffold/layout/components/AppMain.vue.d.ts +44 -0
  59. package/dist/types/scaffold/layout/components/Breadcrumb/index.vue.d.ts +9 -0
  60. package/dist/types/scaffold/layout/components/Hamburger/index.vue.d.ts +18 -0
  61. package/dist/types/scaffold/layout/components/Navbar.vue.d.ts +29 -0
  62. package/dist/types/scaffold/layout/components/PageEditor.vue.d.ts +7 -0
  63. package/dist/types/scaffold/layout/components/PageScheam.vue.d.ts +7 -0
  64. package/dist/types/scaffold/layout/components/Sidebar/FixiOSBug.d.ts +10 -0
  65. package/dist/types/scaffold/layout/components/Sidebar/Link.vue.d.ts +37 -0
  66. package/dist/types/scaffold/layout/components/Sidebar/Logo.vue.d.ts +15 -0
  67. package/dist/types/scaffold/layout/components/Sidebar/MenuContent.vue.d.ts +82 -0
  68. package/dist/types/scaffold/layout/components/Sidebar/SidebarItem.vue.d.ts +41 -0
  69. package/dist/types/scaffold/layout/components/Sidebar/index.vue.d.ts +17 -0
  70. package/dist/types/scaffold/layout/components/index.d.ts +3 -0
  71. package/dist/types/scaffold/layout/index.vue.d.ts +44 -0
  72. package/dist/types/scaffold/login.vue.d.ts +44 -0
  73. package/dist/types/scaffold/report.vue.d.ts +44 -0
  74. package/dist/types/scaffold/table.vue.d.ts +44 -0
  75. package/dist/types/scaffold/tree.vue.d.ts +44 -0
  76. package/dist/types/store/index.d.ts +5 -0
  77. package/dist/types/store/modules/app.d.ts +5 -0
  78. package/dist/types/store/modules/builderSchema.d.ts +9 -0
  79. package/dist/types/store/modules/settings.d.ts +5 -0
  80. package/dist/types/store/modules/user.d.ts +5 -0
  81. package/dist/types/store/types.d.ts +43 -0
  82. package/dist/types/types.d.ts +10 -10
  83. package/dist/types/utils/comm.d.ts +1 -0
  84. package/dist/types/utils/container/index.d.ts +3 -0
  85. package/dist/types/utils/index.d.ts +2 -0
  86. package/dist/types/utils/request/cache.d.ts +5 -0
  87. package/dist/types/utils/request/index.d.ts +4 -0
  88. package/dist/types/utils/request/interceptors.d.ts +3 -0
  89. package/dist/types/utils/request/pending.d.ts +15 -0
  90. package/dist/types/utils/request/types.d.ts +14 -0
  91. package/dist/types/utils/sso/index.d.ts +35 -0
  92. package/dist/types/utils/token.d.ts +3 -0
  93. package/package.json +12 -38
  94. package/dist/types/App.d.ts +0 -124
  95. package/dist/types/components/VLoading.d.ts +0 -0
  96. package/dist/types/components/report/part.d.ts +0 -66
  97. package/dist/types/scaffold/404.d.ts +0 -4
  98. package/dist/types/scaffold/container.d.ts +0 -10
  99. package/dist/types/scaffold/custom.d.ts +0 -15
  100. package/dist/types/scaffold/dashboard.d.ts +0 -2
  101. package/dist/types/scaffold/devtool/DevLayout.d.ts +0 -0
  102. package/dist/types/scaffold/devtool/formBuilder/index.d.ts +0 -47
  103. package/dist/types/scaffold/devtool/tableBuilder/index.d.ts +0 -51
  104. package/dist/types/scaffold/form.d.ts +0 -21
  105. package/dist/types/scaffold/login.d.ts +0 -14
  106. package/dist/types/scaffold/report.d.ts +0 -11
  107. package/dist/types/scaffold/table.d.ts +0 -17
  108. package/dist/types/scaffold/tree.d.ts +0 -10
@@ -0,0 +1,5 @@
1
+ import { InterceptorUse } from './types';
2
+ import { AxiosError, AxiosInstance, AxiosResponse, AxiosRequestConfig } from 'axios';
3
+ export declare const cacheAdapter: (config: AxiosRequestConfig, instance: AxiosInstance) => Promise<any>;
4
+ export declare const cancelRequestInterceptor: InterceptorUse<AxiosRequestConfig, AxiosError>;
5
+ export declare const cancelResponseInterceptor: InterceptorUse<AxiosResponse, AxiosError>;
@@ -0,0 +1,4 @@
1
+ import { AxiosRequestConfig } from 'axios';
2
+ export declare function instance(conf?: AxiosRequestConfig): import("axios").AxiosInstance;
3
+ declare const _default: import("axios").AxiosInstance;
4
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import { Interceptor } from './types';
2
+ export declare const interceptors: Interceptor[];
3
+ export declare function addInterceptor(newInterceptor: Interceptor): void;
@@ -0,0 +1,15 @@
1
+ import { AxiosRequestConfig } from 'axios';
2
+ /**
3
+ * 添加请求
4
+ * @param {Object} config
5
+ */
6
+ export declare const addPending: (config: AxiosRequestConfig) => void;
7
+ /**
8
+ * 移除请求
9
+ * @param {Object} config
10
+ */
11
+ export declare const removePending: (config: AxiosRequestConfig) => void;
12
+ /**
13
+ * 清空 pending 中的请求(在路由跳转时调用)
14
+ */
15
+ export declare const clearPending: () => void;
@@ -0,0 +1,14 @@
1
+ import { AxiosError, AxiosRequestConfig, AxiosResponse } from 'axios';
2
+ export interface InterceptorUse<V, T> {
3
+ onFulfilled?: (value: V) => V | Promise<V>;
4
+ onRejected?: (error: T) => Promise<V>;
5
+ }
6
+ export interface Interceptor {
7
+ request: InterceptorUse<AxiosRequestConfig, AxiosError>;
8
+ response: InterceptorUse<AxiosResponse, AxiosError>;
9
+ }
10
+ export interface ApiResponse<R> {
11
+ code: number;
12
+ message?: string;
13
+ data?: R;
14
+ }
@@ -0,0 +1,35 @@
1
+ import { NavigationGuardNext } from 'vue-router';
2
+ import { newSso } from '../../types';
3
+ export type SsoType = 'jump' | 'qrcode';
4
+ export interface Sso {
5
+ flag(): string | undefined;
6
+ type: SsoType;
7
+ jumpToLoginPage(next: NavigationGuardNext, path: string): void;
8
+ showQrCode(): void;
9
+ qrCodeUrl?: string;
10
+ appid?: string;
11
+ style?: string;
12
+ redirectUri?: string;
13
+ elId?: string;
14
+ }
15
+ export declare class BaseSso implements Sso {
16
+ type: SsoType;
17
+ flag(): string | undefined;
18
+ jumpToLoginPage(next: NavigationGuardNext, path: string): void;
19
+ showQrCode(): void;
20
+ }
21
+ export declare class DingTalk extends BaseSso {
22
+ type: SsoType;
23
+ qrCodeUrl: string;
24
+ reloadUrl: string;
25
+ elId: string;
26
+ appid: string;
27
+ iframe: HTMLIFrameElement;
28
+ redirectUri: string;
29
+ style: string;
30
+ constructor(options: Record<string, any>);
31
+ flag(): string | undefined;
32
+ showQrCode(): void;
33
+ }
34
+ export declare function allSso(): Record<string, newSso>;
35
+ export default function (options: Record<string, any>): Sso | undefined;
@@ -0,0 +1,3 @@
1
+ export declare function getToken(): string;
2
+ export declare function setToken(token: string): string | undefined;
3
+ export declare function removeToken(): void;
package/package.json CHANGED
@@ -1,22 +1,12 @@
1
1
  {
2
2
  "name": "@okiss/oms",
3
- "version": "0.0.30",
4
- "scripts": {
5
- "dev": "cross-env pkg=oms vite --config ../../build/dev.config.ts",
6
- "build": "cross-env pkg=oms vite build --config ../../build/lib.config.ts",
7
- "release": "pnpm build && cross-env pkg=oms node ../../build/release.js"
8
- },
3
+ "version": "0.0.32",
9
4
  "dependencies": {
10
5
  "@element-plus/icons-vue": "^2.0.10",
11
- "@okiss/utils": "latest",
12
- "@okiss/vbtf": "latest",
13
- "@vueuse/core": "^9.5.0",
14
- "axios": "^1.1.3",
6
+ "@vueuse/core": "^9.6.0",
7
+ "axios": "^1.2.0",
15
8
  "dayjs": "^1.11.6",
16
- "echarts": "^5.4.0",
17
- "element-plus": "2.2.21",
18
- "file-saver": "^2.0.5",
19
- "inputmask": "^5.0.7",
9
+ "element-plus": "2.2.25",
20
10
  "js-cookie": "^3.0.1",
21
11
  "lodash": "^4.17.21",
22
12
  "mitt": "^3.0.0",
@@ -26,35 +16,13 @@
26
16
  "nprogress": "^0.2.0",
27
17
  "path-to-regexp": "^6.2.1",
28
18
  "qs": "^6.11.0",
29
- "sortablejs": "^1.15.0",
30
19
  "vue": "^3.2.45",
31
20
  "vue-router": "^4.1.6",
32
21
  "vue3-markdown-it": "^1.0.10",
33
22
  "vuedraggable": "^4.0.3",
34
23
  "vuex": "^4.1.0",
35
- "xlsx": "^0.18.5"
36
- },
37
- "devDependencies": {
38
- "@vitejs/plugin-vue": "^3.2.0",
39
- "@vitejs/plugin-vue-jsx": "^2.1.1",
40
- "@vue/compiler-sfc": "^3.2.45",
41
- "eslint": "^8.27.0",
42
- "eslint-plugin-vue": "^9.7.0",
43
- "only-allow": "^1.1.1",
44
- "rollup-plugin-cdn": "^0.1.2",
45
- "rollup-plugin-copy": "^3.4.0",
46
- "rollup-plugin-typescript2": "^0.34.1",
47
- "rollup-plugin-visualizer": "^5.8.3",
48
- "sass": "^1.56.1",
49
- "typescript": "^4.8.4",
50
- "unplugin-auto-import": "^0.11",
51
- "unplugin-vue-components": "^0.22.9",
52
- "vite": "^3.2.3",
53
- "vite-plugin-dts": "^1.7.0",
54
- "vite-plugin-monaco-editor-nls": "^2.0.2",
55
- "vite-plugin-vue-setup-extend": "^0.4.0",
56
- "vite-svg-loader": "^3.6.0",
57
- "vue-global-api": "^0.4.1"
24
+ "@okiss/utils": "0.0.8",
25
+ "@okiss/vbtf": "0.0.54"
58
26
  },
59
27
  "files": [
60
28
  "dist/*"
@@ -67,5 +35,11 @@
67
35
  ".": {
68
36
  "import": "./dist/index.es.js"
69
37
  }
38
+ },
39
+ "scripts": {
40
+ "dev": "cross-env pkg=oms vite --config ../../build/dev.config.ts",
41
+ "build": "cross-env pkg=oms vite build --config ../../build/lib.config.ts",
42
+ "ts": "vue-tsc --declaration --emitDeclarationOnly --skipLibCheck",
43
+ "release": "cross-env pkg=oms node ../../build/release.js"
70
44
  }
71
45
  }
@@ -1,124 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {
2
- locale: {
3
- name: string;
4
- el: {
5
- colorpicker: {
6
- confirm: string;
7
- clear: string;
8
- };
9
- datepicker: {
10
- now: string;
11
- today: string;
12
- cancel: string;
13
- clear: string;
14
- confirm: string;
15
- selectDate: string;
16
- selectTime: string;
17
- startDate: string;
18
- startTime: string;
19
- endDate: string;
20
- endTime: string;
21
- prevYear: string;
22
- nextYear: string;
23
- prevMonth: string;
24
- nextMonth: string;
25
- year: string;
26
- month1: string;
27
- month2: string;
28
- month3: string;
29
- month4: string;
30
- month5: string;
31
- month6: string;
32
- month7: string;
33
- month8: string;
34
- month9: string;
35
- month10: string;
36
- month11: string;
37
- month12: string;
38
- weeks: {
39
- sun: string;
40
- mon: string;
41
- tue: string;
42
- wed: string;
43
- thu: string;
44
- fri: string;
45
- sat: string;
46
- };
47
- months: {
48
- jan: string;
49
- feb: string;
50
- mar: string;
51
- apr: string;
52
- may: string;
53
- jun: string;
54
- jul: string;
55
- aug: string;
56
- sep: string;
57
- oct: string;
58
- nov: string;
59
- dec: string;
60
- };
61
- };
62
- select: {
63
- loading: string;
64
- noMatch: string;
65
- noData: string;
66
- placeholder: string;
67
- };
68
- cascader: {
69
- noMatch: string;
70
- loading: string;
71
- placeholder: string;
72
- noData: string;
73
- };
74
- pagination: {
75
- goto: string;
76
- pagesize: string;
77
- total: string;
78
- pageClassifier: string;
79
- deprecationWarning: string;
80
- };
81
- messagebox: {
82
- title: string;
83
- confirm: string;
84
- cancel: string;
85
- error: string;
86
- };
87
- upload: {
88
- deleteTip: string;
89
- delete: string;
90
- preview: string;
91
- continue: string;
92
- };
93
- table: {
94
- emptyText: string;
95
- confirmFilter: string;
96
- resetFilter: string;
97
- clearFilter: string;
98
- sumText: string;
99
- };
100
- tree: {
101
- emptyText: string;
102
- };
103
- transfer: {
104
- noMatch: string;
105
- noData: string;
106
- titles: string[];
107
- filterPlaceholder: string;
108
- noCheckedFormat: string;
109
- hasCheckedFormat: string;
110
- };
111
- image: {
112
- error: string;
113
- };
114
- pageHeader: {
115
- title: string;
116
- };
117
- popconfirm: {
118
- confirmButtonText: string;
119
- cancelButtonText: string;
120
- };
121
- };
122
- };
123
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
124
- export default _default;
File without changes
@@ -1,66 +0,0 @@
1
- declare const _default: {
2
- components: {
3
- Chart: any;
4
- Md: any;
5
- Json: any;
6
- Table: any;
7
- Number: any;
8
- Html: string;
9
- };
10
- props: {
11
- option: {
12
- type: ObjectConstructor;
13
- default: () => void;
14
- };
15
- };
16
- setup(props: Record<string, any>): {
17
- compprops: (item: Record<string, any>) => {
18
- dataList: any;
19
- options?: undefined;
20
- source?: undefined;
21
- showPagination?: undefined;
22
- headers?: undefined;
23
- list?: undefined;
24
- } | {
25
- options: {};
26
- dataList?: undefined;
27
- source?: undefined;
28
- showPagination?: undefined;
29
- headers?: undefined;
30
- list?: undefined;
31
- } | {
32
- source: any;
33
- dataList?: undefined;
34
- options?: undefined;
35
- showPagination?: undefined;
36
- headers?: undefined;
37
- list?: undefined;
38
- } | {
39
- showPagination: boolean;
40
- dataList?: undefined;
41
- options?: undefined;
42
- source?: undefined;
43
- headers?: undefined;
44
- list?: undefined;
45
- } | {
46
- headers: {
47
- field: string;
48
- label: string;
49
- }[];
50
- list: any;
51
- showPagination: boolean;
52
- dataList?: undefined;
53
- options?: undefined;
54
- source?: undefined;
55
- } | {
56
- dataList?: undefined;
57
- options?: undefined;
58
- source?: undefined;
59
- showPagination?: undefined;
60
- headers?: undefined;
61
- list?: undefined;
62
- };
63
- comptype: () => any;
64
- };
65
- };
66
- export default _default;
@@ -1,4 +0,0 @@
1
- declare const _default: {
2
- name: string;
3
- };
4
- export default _default;
@@ -1,10 +0,0 @@
1
- import { onBeforeRouteUpdate } from "vue-router'";
2
- declare const _default: {
3
- setup(__props: any, { expose }: {
4
- expose: any;
5
- }): {
6
- key: import("vue").Ref<number>;
7
- onBeforeRouteUpdate: typeof onBeforeRouteUpdate;
8
- };
9
- };
10
- export default _default;
@@ -1,15 +0,0 @@
1
- import { toRaw } from "vue'";
2
- declare const _default: {
3
- setup(__props: any, { expose }: {
4
- expose: any;
5
- }): {
6
- schema: import("vue").Ref<never[]>;
7
- schemaHandler: (_schema: any, project: any) => any;
8
- PageLoad: any;
9
- render: (props: import("../render").Props) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
10
- [key: string]: any;
11
- }>[];
12
- toRaw: typeof toRaw;
13
- };
14
- };
15
- export default _default;
@@ -1,2 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, () => custom, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
- export default _default;
File without changes
@@ -1,47 +0,0 @@
1
- export declare const ctrlFormDefaultOptions: {
2
- labelPosition: string;
3
- submitButton: boolean;
4
- cancelButton: boolean;
5
- };
6
- declare const _default: {
7
- components: {
8
- DevLayout: any;
9
- VForm: any;
10
- VButton: any;
11
- JsonView: any;
12
- };
13
- props: {
14
- schema: {
15
- type: ObjectConstructor;
16
- default: (_: any) => void;
17
- };
18
- };
19
- data(): any;
20
- computed: {
21
- getSaveSchema(): any;
22
- };
23
- watch: {
24
- baseOptions: {
25
- deep: boolean;
26
- immediate: boolean;
27
- handler(val: any): void;
28
- };
29
- ctrlOptions: {
30
- deep: boolean;
31
- handler(val: any): void;
32
- };
33
- currentCtrlType: {
34
- handler(val: any): void;
35
- };
36
- };
37
- beforeCreate(): void;
38
- unmounted(): void;
39
- methods: {
40
- onDevAction(btnType: any, path: any): void;
41
- push(name: any): void;
42
- removeOne(): void;
43
- clicklabel(): void;
44
- saveSchema(): void;
45
- };
46
- };
47
- export default _default;
@@ -1,51 +0,0 @@
1
- declare const _default: {
2
- components: {
3
- JsonView: any;
4
- DevLayout: any;
5
- VTable: any;
6
- VForm: any;
7
- VButton: any;
8
- };
9
- props: {
10
- schema: {
11
- type: ObjectConstructor;
12
- default: (_: any) => void;
13
- };
14
- };
15
- data(): any;
16
- computed: {
17
- types(): any[];
18
- getSaveSchema(): any;
19
- currentBuilderSchema(): any;
20
- };
21
- watch: {
22
- baseOptions: {
23
- deep: boolean;
24
- immediate: boolean;
25
- handler(val: any): void;
26
- };
27
- ctrlOptions: {
28
- deep: boolean;
29
- handler(val: any): void;
30
- };
31
- currentCtrlType: {
32
- handler(val: any): void;
33
- };
34
- };
35
- beforeCreate(): void;
36
- unmounted(): void;
37
- methods: {
38
- updateBuilderSchema(): void;
39
- onDevAction(btnType: any, path: any): void;
40
- pushFilter(name: any): void;
41
- pushHeaders(name: any): void;
42
- pushNormalButton(name: any): void;
43
- pushBatchButton(name: any): void;
44
- pushRowButton(name: any): void;
45
- push(name: any, target: any, ctrlMapName: any, brick: any): void;
46
- removeOne(): void;
47
- clicklabel(): void;
48
- saveSchema(): void;
49
- };
50
- };
51
- export default _default;
@@ -1,21 +0,0 @@
1
- import { useRoute } from "vue-router'";
2
- declare const _default: {
3
- setup(__props: any, { expose }: {
4
- expose: any;
5
- }): {
6
- route: import("vue-router").RouteLocationNormalizedLoaded;
7
- schemaHandler: (schema: any, project: any) => any;
8
- VForm: any;
9
- PageLoad: any;
10
- strVarReplace: any;
11
- merge: {
12
- <TObject, TSource>(object: TObject, source: TSource): TObject & TSource;
13
- <TObject_1, TSource1, TSource2>(object: TObject_1, source1: TSource1, source2: TSource2): TObject_1 & TSource1 & TSource2;
14
- <TObject_2, TSource1_1, TSource2_1, TSource3>(object: TObject_2, source1: TSource1_1, source2: TSource2_1, source3: TSource3): TObject_2 & TSource1_1 & TSource2_1 & TSource3;
15
- <TObject_3, TSource1_2, TSource2_2, TSource3_1, TSource4>(object: TObject_3, source1: TSource1_2, source2: TSource2_2, source3: TSource3_1, source4: TSource4): TObject_3 & TSource1_2 & TSource2_2 & TSource3_1 & TSource4;
16
- (object: any, ...otherArgs: any[]): any;
17
- };
18
- useRoute: typeof useRoute;
19
- };
20
- };
21
- export default _default;
@@ -1,14 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<{}, {
2
- router: import("vue-router").Router;
3
- route: import("vue-router").RouteLocationNormalizedLoaded;
4
- tips: import("vue").ComputedRef<string | undefined>;
5
- allsso: () => Record<string, import("..").newSso>;
6
- data: import("vue").Ref<{
7
- username: string;
8
- password: string;
9
- }>;
10
- login: () => void;
11
- loginType: import("vue").Ref<any>;
12
- changLoginChannel: () => void;
13
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
14
- export default _default;
@@ -1,11 +0,0 @@
1
- declare const _default: {
2
- setup(__props: any, { expose }: {
3
- expose: any;
4
- }): {
5
- route: any;
6
- schemaapi: import("vue").ComputedRef<string>;
7
- PageLoad: any;
8
- Report: any;
9
- };
10
- };
11
- export default _default;
@@ -1,17 +0,0 @@
1
- declare const _default: {
2
- setup(__props: any, { expose }: {
3
- expose: any;
4
- }): {
5
- schemaHandler: (schema: any, project: any) => any;
6
- VTable: any;
7
- PageLoad: any;
8
- merge: {
9
- <TObject, TSource>(object: TObject, source: TSource): TObject & TSource;
10
- <TObject_1, TSource1, TSource2>(object: TObject_1, source1: TSource1, source2: TSource2): TObject_1 & TSource1 & TSource2;
11
- <TObject_2, TSource1_1, TSource2_1, TSource3>(object: TObject_2, source1: TSource1_1, source2: TSource2_1, source3: TSource3): TObject_2 & TSource1_1 & TSource2_1 & TSource3;
12
- <TObject_3, TSource1_2, TSource2_2, TSource3_1, TSource4>(object: TObject_3, source1: TSource1_2, source2: TSource2_2, source3: TSource3_1, source4: TSource4): TObject_3 & TSource1_2 & TSource2_2 & TSource3_1 & TSource4;
13
- (object: any, ...otherArgs: any[]): any;
14
- };
15
- };
16
- };
17
- export default _default;
@@ -1,10 +0,0 @@
1
- declare const _default: {
2
- setup(__props: any, { expose }: {
3
- expose: any;
4
- }): {
5
- schemaHandler: (schema: any, project: any) => any;
6
- VTree: any;
7
- PageLoad: any;
8
- };
9
- };
10
- export default _default;