yahee-components 0.0.10 → 0.0.13

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 (53) hide show
  1. package/es/api/server.js +26 -10
  2. package/es/api/tool.js +10 -11
  3. package/es/country-platform-shop-condition/country-platform-shop-condition.vue.js +218 -0
  4. package/es/country-platform-shop-condition/country-platform-shop-condition.vue2.js +4 -0
  5. package/es/country-platform-shop-condition/index.js +7 -0
  6. package/es/country-platform-shop-condition/style/index.css +48 -0
  7. package/es/drop-down-condition/drop-down-condition.vue.js +216 -0
  8. package/es/drop-down-condition/drop-down-condition.vue2.js +4 -0
  9. package/es/drop-down-condition/index.js +7 -0
  10. package/es/drop-down-condition/style/index.css +45 -0
  11. package/es/index.js +23 -15
  12. package/es/installs.js +18 -10
  13. package/es/left-condition/index.js +7 -0
  14. package/es/left-condition/left-condition-sub.vue.js +95 -0
  15. package/es/left-condition/left-condition-sub.vue2.js +4 -0
  16. package/es/left-condition/left-condition.vue.js +216 -0
  17. package/es/left-condition/left-condition.vue2.js +4 -0
  18. package/es/left-condition/style/index.css +10 -0
  19. package/es/left-condition-enum/index.js +7 -0
  20. package/es/left-condition-enum/left-condition-enum.vue.js +80 -0
  21. package/es/left-condition-enum/left-condition-enum.vue2.js +4 -0
  22. package/es/left-condition-enum/style/index.css +10 -0
  23. package/es/operation-log/operation-log-form.vue.js +179 -5
  24. package/es/operation-log/operation-log-form.vue2.js +2 -179
  25. package/es/operation-log/operation-log.vue.js +30 -30
  26. package/es/packages/components/api/server.js +26 -13
  27. package/es/packages/components/api/tool.js +9 -10
  28. package/es/static/CommonObject.js +4 -0
  29. package/es/style.css +89 -194
  30. package/es/utils/style.js +28 -0
  31. package/es/utils/translate.js +39 -22
  32. package/lib/country-platform-shop-condition/style/index.css +48 -0
  33. package/lib/drop-down-condition/style/index.css +45 -0
  34. package/lib/left-condition/style/index.css +10 -0
  35. package/lib/left-condition-enum/style/index.css +10 -0
  36. package/lib/style.css +89 -194
  37. package/package.json +1 -1
  38. package/types/src/components.d.ts +4 -0
  39. package/types/src/country-platform-shop-condition/country-platform-shop-condition.d.ts +17 -0
  40. package/types/src/country-platform-shop-condition/country-platform-shop-condition.vue.d.ts +14 -0
  41. package/types/src/country-platform-shop-condition/index.d.ts +16 -0
  42. package/types/src/drop-down-condition/drop-down-condition.d.ts +6 -0
  43. package/types/src/drop-down-condition/drop-down-condition.vue.d.ts +40 -0
  44. package/types/src/drop-down-condition/index.d.ts +42 -0
  45. package/types/src/installs.d.ts +270 -2
  46. package/types/src/left-condition/index.d.ts +69 -0
  47. package/types/src/left-condition/left-condition-sub.vue.d.ts +47 -0
  48. package/types/src/left-condition/left-condition.d.ts +5 -0
  49. package/types/src/left-condition/left-condition.vue.d.ts +68 -0
  50. package/types/src/left-condition-enum/index.d.ts +162 -0
  51. package/types/src/left-condition-enum/left-condition-enum.d.ts +5 -0
  52. package/types/src/left-condition-enum/left-condition-enum.vue.d.ts +160 -0
  53. package/es/_virtual/_plugin-vue_export-helper.js +0 -9
@@ -0,0 +1,160 @@
1
+ import { Option } from '../static/CommonObject';
2
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<ExtractPropTypes<{
4
+ selectList: {
5
+ type: {
6
+ (arrayLength: number): Option[];
7
+ (...items: Option[]): Option[];
8
+ new (arrayLength: number): Option[];
9
+ new (...items: Option[]): Option[];
10
+ isArray(arg: any): arg is any[];
11
+ readonly prototype: any[];
12
+ from<T>(arrayLike: ArrayLike<T>): T[];
13
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
14
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
15
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
16
+ of<T>(...items: T[]): T[];
17
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
18
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
19
+ readonly [Symbol.species]: ArrayConstructor;
20
+ };
21
+ default: () => Option[];
22
+ };
23
+ baseUrl: {
24
+ type: StringConstructor;
25
+ default: string;
26
+ };
27
+ countList: {
28
+ type: {
29
+ (arrayLength: number): any[];
30
+ (...items: any[]): any[];
31
+ new (arrayLength: number): any[];
32
+ new (...items: any[]): any[];
33
+ isArray(arg: any): arg is any[];
34
+ readonly prototype: any[];
35
+ from<T>(arrayLike: ArrayLike<T>): T[];
36
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
37
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
38
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
39
+ of<T>(...items: T[]): T[];
40
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
41
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
42
+ readonly [Symbol.species]: ArrayConstructor;
43
+ };
44
+ required: false;
45
+ };
46
+ enumEntity: {
47
+ type: StringConstructor;
48
+ default: string;
49
+ };
50
+ filterKey: {
51
+ type: StringConstructor;
52
+ default: string;
53
+ };
54
+ totalCount: {
55
+ type: NumberConstructor;
56
+ required: false;
57
+ };
58
+ noNeedRefreshNumFilterName: {
59
+ type: StringConstructor;
60
+ required: false;
61
+ };
62
+ allIsCheckbox: {
63
+ type: BooleanConstructor;
64
+ required: false;
65
+ };
66
+ allIsEmpty: {
67
+ type: BooleanConstructor;
68
+ required: false;
69
+ };
70
+ translateUserId: {
71
+ type: BooleanConstructor;
72
+ required: false;
73
+ };
74
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
75
+ filterChange: (...args: any[]) => void;
76
+ setNoNeedRefreshNumFilterName: (...args: any[]) => void;
77
+ }, string, PublicProps, Readonly< ExtractPropTypes<{
78
+ selectList: {
79
+ type: {
80
+ (arrayLength: number): Option[];
81
+ (...items: Option[]): Option[];
82
+ new (arrayLength: number): Option[];
83
+ new (...items: Option[]): Option[];
84
+ isArray(arg: any): arg is any[];
85
+ readonly prototype: any[];
86
+ from<T>(arrayLike: ArrayLike<T>): T[];
87
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
88
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
89
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
90
+ of<T>(...items: T[]): T[];
91
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
92
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
93
+ readonly [Symbol.species]: ArrayConstructor;
94
+ };
95
+ default: () => Option[];
96
+ };
97
+ baseUrl: {
98
+ type: StringConstructor;
99
+ default: string;
100
+ };
101
+ countList: {
102
+ type: {
103
+ (arrayLength: number): any[];
104
+ (...items: any[]): any[];
105
+ new (arrayLength: number): any[];
106
+ new (...items: any[]): any[];
107
+ isArray(arg: any): arg is any[];
108
+ readonly prototype: any[];
109
+ from<T>(arrayLike: ArrayLike<T>): T[];
110
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
111
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
112
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
113
+ of<T>(...items: T[]): T[];
114
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
115
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
116
+ readonly [Symbol.species]: ArrayConstructor;
117
+ };
118
+ required: false;
119
+ };
120
+ enumEntity: {
121
+ type: StringConstructor;
122
+ default: string;
123
+ };
124
+ filterKey: {
125
+ type: StringConstructor;
126
+ default: string;
127
+ };
128
+ totalCount: {
129
+ type: NumberConstructor;
130
+ required: false;
131
+ };
132
+ noNeedRefreshNumFilterName: {
133
+ type: StringConstructor;
134
+ required: false;
135
+ };
136
+ allIsCheckbox: {
137
+ type: BooleanConstructor;
138
+ required: false;
139
+ };
140
+ allIsEmpty: {
141
+ type: BooleanConstructor;
142
+ required: false;
143
+ };
144
+ translateUserId: {
145
+ type: BooleanConstructor;
146
+ required: false;
147
+ };
148
+ }>> & Readonly<{
149
+ onFilterChange?: (...args: any[]) => any;
150
+ onSetNoNeedRefreshNumFilterName?: (...args: any[]) => any;
151
+ }>, {
152
+ allIsCheckbox: boolean;
153
+ translateUserId: boolean;
154
+ selectList: Option[];
155
+ allIsEmpty: boolean;
156
+ filterKey: string;
157
+ baseUrl: string;
158
+ enumEntity: string;
159
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
160
+ export default _default;
@@ -1,9 +0,0 @@
1
- const s = (t, e) => {
2
- const o = t.__vccOpts || t;
3
- for (const [r, c] of e)
4
- o[r] = c;
5
- return o;
6
- };
7
- export {
8
- s as default
9
- };