yc-vep-ui 0.4.0 → 0.4.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.
@@ -1,5 +1,5 @@
1
1
  import { IInstanceHandlerList } from './type';
2
- export interface IProps {
2
+ interface IProps {
3
3
  disabled?: boolean;
4
4
  formData: {
5
5
  instanceHandlerList?: IInstanceHandlerList[];
@@ -546,7 +546,7 @@ var render_default = {
546
546
  ]);
547
547
  };
548
548
  }
549
- }), Table_exports = /* @__PURE__ */ __exportAll$1({ default: () => Table_default }), Table_default = /* @__PURE__ */ _plugin_vue_export_helper_default(index_vue_vue_type_script_setup_true_lang_default$11, [["__scopeId", "data-v-bba6a39a"]]), _hoisted_1$33 = ["src"], Icon_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ defineComponent({
549
+ }), Table_exports = /* @__PURE__ */ __exportAll$1({ default: () => Table_default }), Table_default = /* @__PURE__ */ _plugin_vue_export_helper_default(index_vue_vue_type_script_setup_true_lang_default$11, [["__scopeId", "data-v-adf869c1"]]), _hoisted_1$33 = ["src"], Icon_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ defineComponent({
550
550
  __name: "Icon",
551
551
  props: {
552
552
  name: {},
@@ -2573,87 +2573,80 @@ function useFetch(e, n = {}) {
2573
2573
  //#endregion
2574
2574
  //#region src/hooks/useTable/default.ts
2575
2575
  function useDefaultTable(e, n) {
2576
- let r = reactive({
2577
- ignoreAttrs: [
2578
- "tableName",
2579
- "sort",
2580
- ...n?.ignoreAttrs || []
2581
- ],
2582
- replaceAttrs: n?.replaceAttrs || {
2583
- table: "table",
2584
- total: "total"
2585
- }
2586
- }), i = shallowRef([]), a = reactive({
2576
+ let r = [
2577
+ "tableName",
2578
+ "sort",
2579
+ ...n?.ignoreAttrs || []
2580
+ ], i = n?.replaceAttrs || {
2581
+ table: "table",
2582
+ total: "total"
2583
+ }, a = shallowRef([]), o = reactive({
2587
2584
  total: 0,
2588
2585
  page: 1,
2589
2586
  pageSize: 10
2590
- }), o = ref([]), s = reactive({
2587
+ }), s = ref([]), c = reactive({
2591
2588
  page: 1,
2592
2589
  pageSize: 10
2593
- }), { defaultParams: c, immediate: l = !0, ...u } = n;
2594
- if (u?.onBefore?.(s) === !1) return {
2590
+ });
2591
+ if (n?.onBefore?.(c) === !1) return reactive({
2595
2592
  loading: ref(!1),
2596
- data: i,
2597
- pagination: a
2598
- };
2599
- let d = useFetch(e, {
2600
- ...u,
2593
+ data: a,
2594
+ pagination: o,
2595
+ selection: s,
2596
+ execute: () => {},
2597
+ reset: () => {},
2598
+ updatePagination: () => {},
2599
+ selectionChange: () => {}
2600
+ });
2601
+ let l = useFetch(e, {
2602
+ ...n,
2603
+ defaultParams: c,
2601
2604
  immediate: !1,
2602
2605
  onSuccess: (e) => {
2603
- u?.onSuccess?.(e), a.total = e[r?.replaceAttrs?.total] || 0, i.value = e[r?.replaceAttrs?.table] || [];
2606
+ n?.onSuccess?.(e), o.total = e[i.total] || 0, a.value = e[i.table] || [];
2604
2607
  }
2605
- }), f = !1;
2606
- l && watchEffect(() => {
2607
- (toValue(n.ready) ?? !0) && !f && (f = !0, p());
2608
2608
  });
2609
- function p(e) {
2610
- if (!(toValue(n.ready) ?? !0)) return;
2611
- let r = {
2612
- ...toValue(n.defaultParams) || {},
2613
- ...s,
2614
- ...e
2615
- };
2616
- return Object.keys(r).forEach((e) => {
2617
- e !== "page" && e !== "pageSize" && (s[e] = r[e]);
2618
- }), d.execute(r);
2619
- }
2620
- function m(e = {}) {
2621
- a.page = 1, a.pageSize = 10, e && (Object.keys(s).forEach((n) => {
2622
- r.ignoreAttrs?.includes(n) || Object.keys(e).includes(n) || delete s[n];
2623
- }), Object.assign(s, {
2624
- ...e,
2625
- page: 1,
2626
- pageSize: 10
2627
- })), p();
2628
- }
2629
- function g({ page: e, pageSize: n }) {
2630
- a.page = e, a.pageSize = n, p({
2631
- page: e,
2632
- pageSize: n
2609
+ watchEffect(() => {
2610
+ let e = toValue(n.ready) ?? !0, r = toValue(n.defaultParams || {});
2611
+ (o.page !== 1 || o.pageSize !== 10) && (o.page = 1, o.pageSize = 10);
2612
+ let i = {};
2613
+ for (let e in r) e !== "page" && e !== "pageSize" && (i[e] = r[e], c[e] = r[e]);
2614
+ e && l.execute({
2615
+ ...c,
2616
+ ...i
2617
+ });
2618
+ }, { flush: "sync" });
2619
+ function u(e = {}) {
2620
+ let { page: n, pageSize: i, ...a } = e;
2621
+ o.page = n || 1, o.pageSize = i || 10;
2622
+ let s = [];
2623
+ Object.keys(c).forEach((e) => {
2624
+ !r.includes(e) && !(e in a) && s.push(e);
2625
+ }), s.forEach((e) => delete c[e]), Object.assign(c, a, {
2626
+ page: o.page,
2627
+ pageSize: o.pageSize
2633
2628
  });
2634
2629
  }
2635
- function _(e) {
2636
- o.value = e;
2630
+ function d({ page: e, pageSize: n }) {
2631
+ o.page = e, o.pageSize = n, c.page = e, c.pageSize = n;
2632
+ }
2633
+ function f(e) {
2634
+ s.value = e;
2637
2635
  }
2638
2636
  return reactive({
2639
- ...d,
2640
- data: i,
2641
- pagination: a,
2642
- selection: o,
2643
- reset: m,
2644
- updatePagination: g,
2645
- selectionChange: _,
2646
- execute: p
2637
+ ...l,
2638
+ data: a,
2639
+ pagination: o,
2640
+ selection: s,
2641
+ reset: u,
2642
+ updatePagination: d,
2643
+ selectionChange: f
2647
2644
  });
2648
2645
  }
2649
2646
  //#endregion
2650
2647
  //#region src/hooks/useTable/common.ts
2651
2648
  function useComTable(e, n) {
2652
- let { defaultParams: r, ...i } = n, a = isRef(r) ? r : isReactive(r) ? toRef(r) : ref(r || {}), o = ["sort", ...n?.ignoreAttrs || []], s = toValue(a) || {}, c = {};
2653
- o.forEach((e) => {
2654
- s[e] !== void 0 && (c[e] = s[e]);
2655
- });
2656
- let l = useDefaultTable(e, {
2649
+ let { defaultParams: r, ...i } = n, a = isRef(r) ? r : isReactive(r) ? toRef(r) : ref(r || {}), o = ["sort", ...n?.ignoreAttrs || []], s = useDefaultTable(e, {
2657
2650
  ...i,
2658
2651
  ready: computed(() => {
2659
2652
  let e = isRef(n.ready) ? n.ready.value : n.ready, r = !!a.value?.tableId;
@@ -2668,76 +2661,56 @@ function useComTable(e, n) {
2668
2661
  params: i
2669
2662
  };
2670
2663
  }),
2671
- ignoreAttrs: [...o]
2664
+ ignoreAttrs: o
2672
2665
  });
2673
- function u(e) {
2674
- let n = [
2675
- "tableId",
2676
- "page",
2677
- "pageSize"
2678
- ], r = {}, i = {};
2679
- Object.keys(e || {}).forEach((a) => {
2680
- n.includes(a) ? r[a] = e[a] : i[a] = e[a];
2681
- }), Object.keys(i).length > 0 && (r.params = i);
2682
- let s = toValue(a) || {}, c = {};
2683
- return o.forEach((e) => {
2684
- s[e] !== void 0 && (c[e] = s[e]);
2685
- }), Object.assign(c, s), Object.assign(c, e || {}), a.value = c, l.execute(r);
2686
- }
2687
- function d(e = {}) {
2688
- let { tableId: n } = toValue(a);
2689
- a.value = {
2666
+ function c(e = {}) {
2667
+ let { tableId: n, ...r } = toValue(a), i = {};
2668
+ o.forEach((e) => {
2669
+ r[e] !== void 0 && (i[e] = r[e]);
2670
+ }), a.value = {
2690
2671
  tableId: n,
2691
2672
  page: 1,
2692
2673
  pageSize: 10,
2693
- ...c,
2674
+ ...i,
2694
2675
  ...e
2695
- }, l.reset();
2676
+ }, s.reset();
2696
2677
  }
2697
- async function f(e) {
2698
- let n = toValue(a);
2678
+ let l = () => toValue(a)?.tableId;
2679
+ async function u(e) {
2699
2680
  return request_default.post("/common/insert", {
2700
2681
  params: { ...e },
2701
- tableId: n?.tableId
2682
+ tableId: l()
2702
2683
  });
2703
2684
  }
2704
- async function p(e) {
2705
- let n = toValue(a);
2685
+ async function d(e) {
2706
2686
  return request_default.post("/common/update", {
2707
2687
  params: { ...e },
2708
- tableId: n?.tableId
2688
+ tableId: l()
2709
2689
  });
2710
2690
  }
2711
- async function m(e) {
2712
- let n = toValue(a);
2691
+ async function f(e) {
2713
2692
  return request_default.post("/common/delete", {
2714
2693
  idList: e,
2715
- tableId: n?.tableId
2694
+ tableId: l()
2716
2695
  });
2717
2696
  }
2718
- async function g(e) {
2719
- let { title: n = "export" } = e || {}, r = toValue(a), i = await request_default.blob(e?.url ?? "/common/exportExcel", {
2720
- tableId: r?.tableId,
2721
- type: e?.type || "all"
2722
- }), o = new Blob([i]), s = document.createElement("a");
2723
- s.href = window.URL.createObjectURL(o), s.download = `${n}.xlsx`, s.click(), VepMessage.success("导出成功"), window.URL.revokeObjectURL(s.href);
2724
- }
2725
- let _ = reactive({
2726
- loading: !1,
2727
- data: [],
2728
- selection: [],
2729
- insert: f,
2730
- update: p,
2731
- remove: m,
2732
- delete: m,
2733
- exportData: g
2697
+ async function p({ title: e = "export", url: n } = {}) {
2698
+ let r = await request_default.blob(n ?? "/common/exportExcel", {
2699
+ tableId: l(),
2700
+ type: "all"
2701
+ }), i = new Blob([r]), a = document.createElement("a");
2702
+ a.href = window.URL.createObjectURL(i), a.download = `${e}.xlsx`, a.click(), VepMessage.success("导出成功"), window.URL.revokeObjectURL(a.href);
2703
+ }
2704
+ let m = reactive({
2705
+ insert: u,
2706
+ update: d,
2707
+ remove: f,
2708
+ delete: f,
2709
+ exportData: p
2734
2710
  });
2735
2711
  return watchEffect(() => {
2736
- Object.assign(_, l, {
2737
- reset: d,
2738
- execute: u
2739
- });
2740
- }, { flush: "sync" }), _;
2712
+ Object.assign(m, s, { reset: c });
2713
+ }, { flush: "sync" }), m;
2741
2714
  }
2742
2715
  //#endregion
2743
2716
  //#region src/hooks/useTable/index.ts
@@ -4969,7 +4942,7 @@ var _hoisted_1$1 = { key: 0 }, Remind_vue_vue_type_script_setup_true_lang_defaul
4969
4942
  });
4970
4943
  function s() {
4971
4944
  let e = !1;
4972
- return o.value?.forEach((n) => {
4945
+ return o.value?.forEach((n, r) => {
4973
4946
  e = n?.validate();
4974
4947
  }), e;
4975
4948
  }
@@ -11031,7 +11004,7 @@ var Panel = class {
11031
11004
  });
11032
11005
  };
11033
11006
  }
11034
- }), PageAgent_exports = /* @__PURE__ */ __exportAll$1({ default: () => PageAgent_default }), PageAgent_default = /* @__PURE__ */ _plugin_vue_export_helper_default(index_vue_vue_type_script_setup_true_lang_default, [["__scopeId", "data-v-548e27b3"]]), sticky = {
11007
+ }), PageAgent_exports = /* @__PURE__ */ __exportAll$1({ default: () => PageAgent_default }), PageAgent_default = /* @__PURE__ */ _plugin_vue_export_helper_default(index_vue_vue_type_script_setup_true_lang_default, [["__scopeId", "data-v-fb8f5b21"]]), sticky = {
11035
11008
  mounted(e, n) {
11036
11009
  let r = n.value || {}, i = r.target || "body", a = r.top || 0;
11037
11010
  e._stickyOriginalStyles = {
package/dist/entry.d.ts CHANGED
@@ -1,27 +1,19 @@
1
- import { App } from 'vue';
2
- export { default as YcMessage } from './components/Message';
3
- export type * from './components/type';
4
- export type * from './components/Table/type';
5
- export type * from './components/Filter/type';
6
- export type * from './components/Form/type';
7
- export type * from './components/Descriptions/type';
8
- export type * from './components/InfiniteScroll/type';
9
- export type * from './components/Tree/type';
10
- export type * from './components/Card/type';
11
- export type * from './components/Editor/type';
12
- export type * from './components/Upload/type';
13
- export type * from './components/Message/type';
14
- export * from './components';
15
- export * as hooks from './hooks';
16
- export declare function setHostVue(vue: any): void;
17
- export declare function getHostVue(): any;
1
+ import type { App } from 'vue'
2
+ export type * from './components/type'
3
+ export type { IColumn, ITableProps, ITableInstance, IRender, IRenderProps, IExtra, IColumnRenderProps } from './components/Table/type'
4
+ export type { IField, IFilterProps, IFieldSlot, IFilterRenderProps } from './components/Filter/type'
5
+ export type { IFormProps, IFormInstance } from './components/Form/type'
6
+ export type { IDescriptionsProps, IDescriptionsField } from './components/Descriptions/type'
7
+ export type { ITreeProps } from './components/Tree/type'
8
+ export type { IInfiniteScrollProps } from './components/InfiniteScroll/type'
9
+ export type { IEditorProps } from './components/Editor/type'
10
+ export type { ICardProps } from './components/Card/type'
11
+ export * from './components'
12
+ export declare function setHostVue(vue: any): void
13
+ export declare function getHostVue(): any
18
14
  export interface YcVepUiOptions {
19
- elementPlus?: {
20
- install: (app: App, ...args: any[]) => void;
21
- };
15
+ elementPlus?: { install: (app: App, ...args: any[]) => void }
22
16
  }
23
- declare const ycPlugin: {
24
- install(app: App, options?: YcVepUiOptions): void;
25
- };
26
- export default ycPlugin;
27
- export { ycPlugin };
17
+ declare const ycPlugin: { install(app: App, options?: YcVepUiOptions): void }
18
+ export default ycPlugin
19
+ export { ycPlugin }
@@ -1,2 +1,2 @@
1
- import { c as e, d as t, f as n, l as r, s as i, u as a } from "../entry-BnGnLjQT.js";
1
+ import { c as e, d as t, f as n, l as r, s as i, u as a } from "../entry-J2dcF6ZQ.js";
2
2
  export { e as useDictionary, n as useFetch, r as useRoute, a as useRouter, t as useTable, i as useUser };
@@ -4,7 +4,6 @@ type Response<T> = {
4
4
  data: T | T[] | any;
5
5
  message: string;
6
6
  success?: boolean;
7
- [key: string]: any;
8
7
  };
9
8
  export interface FetchOptions<T> {
10
9
  /** 是否立即执行请求 */
@@ -1,4 +1,3 @@
1
1
  import { FetchOptions } from '../useFetch';
2
2
  import { IExtra, TableReturn } from './type';
3
- /** 通用模板 */
4
3
  export declare function useDefaultTable<T>(url: string, options: FetchOptions<T> & IExtra): TableReturn<T>;
package/dist/index.css CHANGED
@@ -17,11 +17,11 @@
17
17
  padding: 15px 0px;
18
18
  }
19
19
 
20
- .ui-table[data-v-bba6a39a] th.el-table__cell {
20
+ .ui-table[data-v-adf869c1] th.el-table__cell {
21
21
  background-color: #fafafa;
22
22
  color: #606266;
23
23
  }
24
- .ui-pagination[data-v-bba6a39a] {
24
+ .ui-pagination[data-v-adf869c1] {
25
25
  padding: 20px;
26
26
  background-color: white;
27
27
  height: 20px;
@@ -282,7 +282,7 @@ to { transform: rotate(360deg);
282
282
  align-items: center;
283
283
  }
284
284
 
285
- .affix[data-v-548e27b3] {
285
+ .affix[data-v-fb8f5b21] {
286
286
  position: fixed;
287
287
  right: 0px;
288
288
  bottom: 0px;
@@ -1,2 +1,2 @@
1
- import { O as e, _ as t, b as n, v as r, y as i } from "../entry-BnGnLjQT.js";
1
+ import { O as e, _ as t, b as n, v as r, y as i } from "../entry-J2dcF6ZQ.js";
2
2
  export { t as baseUrl, n as request, e as tempToRender, r as uniq, i as uniqBy };
package/dist/vep-ui.js CHANGED
@@ -1,2 +1,2 @@
1
- import { A as e, C as t, D as n, E as r, S as i, T as a, a as o, g as s, h as c, i as l, k as u, m as d, n as f, o as p, p as m, r as h, t as g, w as _, x as v } from "./entry-BnGnLjQT.js";
1
+ import { A as e, C as t, D as n, E as r, S as i, T as a, a as o, g as s, h as c, i as l, k as u, m as d, n as f, o as p, p as m, r as h, t as g, w as _, x as v } from "./entry-J2dcF6ZQ.js";
2
2
  export { e as UiCard, i as UiDescriptions, v as UiDialog, a as UiEditor, n as UiFilter, r as UiForm, t as UiInfiniteScroll, d as UiStaffSelect, u as UiTable, _ as UiTree, m as UiUpload, s as WcUtils, o as YcApproval, c as YcMessage, l as YcPageAgent, h as default, h as ycPlugin, g as getHostVue, p as hooks, f as setHostVue };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yc-vep-ui",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "type": "module",
5
5
  "description": "基于 Vue 3 + Element Plus 的企业级 UI 组件库",
6
6
  "keywords": [
@@ -19,10 +19,6 @@
19
19
  "main": "./dist/vep-ui.js",
20
20
  "module": "./dist/vep-ui.js",
21
21
  "types": "./dist/entry.d.ts",
22
- "publishConfig": {
23
- "access": "public",
24
- "registry": "https://registry.npmjs.org/"
25
- },
26
22
  "exports": {
27
23
  ".": {
28
24
  "types": "./dist/entry.d.ts",
@@ -42,12 +38,6 @@
42
38
  "dist",
43
39
  "README.md"
44
40
  ],
45
- "scripts": {
46
- "dev": "vite",
47
- "build": "vue-tsc && vite build",
48
- "build:lib": "vite build && node scripts/generate-entry-dts.cjs",
49
- "preview": "vite preview"
50
- },
51
41
  "dependencies": {
52
42
  "aieditor": "^1.4.0",
53
43
  "jsencrypt": "^3.5.4",
@@ -77,5 +67,11 @@
77
67
  },
78
68
  "sideEffects": [
79
69
  "**/*.css"
80
- ]
81
- }
70
+ ],
71
+ "scripts": {
72
+ "dev": "vite",
73
+ "build": "vue-tsc && vite build",
74
+ "build:lib": "vite build && node scripts/generate-entry-dts.cjs",
75
+ "preview": "vite preview"
76
+ }
77
+ }
@@ -1,203 +0,0 @@
1
- type __VLS_Props = {
2
- processCode?: string;
3
- getData?: () => any;
4
- };
5
- declare function __VLS_template(): {
6
- attrs: Partial<{}>;
7
- slots: {
8
- default?(_: {
9
- data: any;
10
- }): any;
11
- };
12
- refs: {
13
- processInfoRef: unknown;
14
- remindRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./Remind.vue').IProps> & Readonly<{}>, {
15
- getValues: () => ({
16
- assignee: string[];
17
- assigneeName: string[];
18
- instanceId?: number | undefined;
19
- activityId?: string | undefined;
20
- activityCode?: string | undefined;
21
- activityName?: string | undefined;
22
- assigneeJson?: any;
23
- preData?: {
24
- label: string;
25
- name: string;
26
- account: string;
27
- } | undefined;
28
- } | {
29
- assignee: string;
30
- assigneeName: string;
31
- instanceId?: number | undefined;
32
- activityId?: string | undefined;
33
- activityCode?: string | undefined;
34
- activityName?: string | undefined;
35
- assigneeJson?: any;
36
- preData?: {
37
- label: string;
38
- name: string;
39
- account: string;
40
- } | undefined;
41
- })[];
42
- validate: () => boolean;
43
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
44
- P: {};
45
- B: {};
46
- D: {};
47
- C: {};
48
- M: {};
49
- Defaults: {};
50
- }, Readonly<import('./Remind.vue').IProps> & Readonly<{}>, {
51
- getValues: () => ({
52
- assignee: string[];
53
- assigneeName: string[];
54
- instanceId?: number | undefined;
55
- activityId?: string | undefined;
56
- activityCode?: string | undefined;
57
- activityName?: string | undefined;
58
- assigneeJson?: any;
59
- preData?: {
60
- label: string;
61
- name: string;
62
- account: string;
63
- } | undefined;
64
- } | {
65
- assignee: string;
66
- assigneeName: string;
67
- instanceId?: number | undefined;
68
- activityId?: string | undefined;
69
- activityCode?: string | undefined;
70
- activityName?: string | undefined;
71
- assigneeJson?: any;
72
- preData?: {
73
- label: string;
74
- name: string;
75
- account: string;
76
- } | undefined;
77
- })[];
78
- validate: () => boolean;
79
- }, {}, {}, {}, {}> | null;
80
- readScopeRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
81
- disabled: boolean;
82
- formData: any;
83
- }> & Readonly<{}>, {
84
- formData: {
85
- readScope: string;
86
- };
87
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
88
- P: {};
89
- B: {};
90
- D: {};
91
- C: {};
92
- M: {};
93
- Defaults: {};
94
- }, Readonly<{
95
- disabled: boolean;
96
- formData: any;
97
- }> & Readonly<{}>, {
98
- formData: {
99
- readScope: string;
100
- };
101
- }, {}, {}, {}, {}> | null;
102
- };
103
- rootEl: any;
104
- };
105
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
106
- declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
107
- processInfoRef: unknown;
108
- remindRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./Remind.vue').IProps> & Readonly<{}>, {
109
- getValues: () => ({
110
- assignee: string[];
111
- assigneeName: string[];
112
- instanceId?: number | undefined;
113
- activityId?: string | undefined;
114
- activityCode?: string | undefined;
115
- activityName?: string | undefined;
116
- assigneeJson?: any;
117
- preData?: {
118
- label: string;
119
- name: string;
120
- account: string;
121
- } | undefined;
122
- } | {
123
- assignee: string;
124
- assigneeName: string;
125
- instanceId?: number | undefined;
126
- activityId?: string | undefined;
127
- activityCode?: string | undefined;
128
- activityName?: string | undefined;
129
- assigneeJson?: any;
130
- preData?: {
131
- label: string;
132
- name: string;
133
- account: string;
134
- } | undefined;
135
- })[];
136
- validate: () => boolean;
137
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
138
- P: {};
139
- B: {};
140
- D: {};
141
- C: {};
142
- M: {};
143
- Defaults: {};
144
- }, Readonly<import('./Remind.vue').IProps> & Readonly<{}>, {
145
- getValues: () => ({
146
- assignee: string[];
147
- assigneeName: string[];
148
- instanceId?: number | undefined;
149
- activityId?: string | undefined;
150
- activityCode?: string | undefined;
151
- activityName?: string | undefined;
152
- assigneeJson?: any;
153
- preData?: {
154
- label: string;
155
- name: string;
156
- account: string;
157
- } | undefined;
158
- } | {
159
- assignee: string;
160
- assigneeName: string;
161
- instanceId?: number | undefined;
162
- activityId?: string | undefined;
163
- activityCode?: string | undefined;
164
- activityName?: string | undefined;
165
- assigneeJson?: any;
166
- preData?: {
167
- label: string;
168
- name: string;
169
- account: string;
170
- } | undefined;
171
- })[];
172
- validate: () => boolean;
173
- }, {}, {}, {}, {}> | null;
174
- readScopeRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
175
- disabled: boolean;
176
- formData: any;
177
- }> & Readonly<{}>, {
178
- formData: {
179
- readScope: string;
180
- };
181
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
182
- P: {};
183
- B: {};
184
- D: {};
185
- C: {};
186
- M: {};
187
- Defaults: {};
188
- }, Readonly<{
189
- disabled: boolean;
190
- formData: any;
191
- }> & Readonly<{}>, {
192
- formData: {
193
- readScope: string;
194
- };
195
- }, {}, {}, {}, {}> | null;
196
- }, any>;
197
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
198
- export default _default;
199
- type __VLS_WithTemplateSlots<T, S> = T & {
200
- new (): {
201
- $slots: S;
202
- };
203
- };