yahee-components 0.0.9 → 0.0.12

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 (213) hide show
  1. package/es/annex-upload/annex-upload.vue.js +6 -6
  2. package/es/api/server.js +29 -0
  3. package/es/api/tool.js +69 -0
  4. package/es/comprehensive-search/comprehensive-search.vue.js +10 -10
  5. package/es/country-platform-shop-condition/country-platform-shop-condition.vue.js +218 -0
  6. package/es/country-platform-shop-condition/country-platform-shop-condition.vue2.js +4 -0
  7. package/es/country-platform-shop-condition/index.js +7 -0
  8. package/es/country-platform-shop-condition/style/index.css +48 -0
  9. package/es/drop-down-condition/drop-down-condition.vue.js +215 -0
  10. package/es/drop-down-condition/drop-down-condition.vue2.js +4 -0
  11. package/es/drop-down-condition/index.js +7 -0
  12. package/es/drop-down-condition/style/index.css +45 -0
  13. package/es/image-upload/image-upload.vue.js +125 -124
  14. package/es/index.js +28 -15
  15. package/es/installs.js +18 -10
  16. package/es/left-condition/index.js +7 -0
  17. package/es/left-condition/left-condition-sub.vue.js +95 -0
  18. package/es/left-condition/left-condition-sub.vue2.js +4 -0
  19. package/es/left-condition/left-condition.vue.js +214 -0
  20. package/es/left-condition/left-condition.vue2.js +4 -0
  21. package/es/left-condition/style/index.css +11 -0
  22. package/es/left-condition-enum/index.js +7 -0
  23. package/es/left-condition-enum/left-condition-enum.vue.js +76 -0
  24. package/es/left-condition-enum/left-condition-enum.vue2.js +4 -0
  25. package/es/left-condition-enum/style/index.css +0 -0
  26. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/index.js +38 -0
  27. package/es/operation-log/operation-log-content.vue.js +6 -6
  28. package/es/operation-log/operation-log-form.vue.js +2 -2
  29. package/es/operation-log/operation-log-form.vue2.js +17 -17
  30. package/es/operation-log/operation-log.vue.js +50 -49
  31. package/es/packages/components/api/log/index.js +15 -0
  32. package/es/packages/components/api/log-server.js +17 -21
  33. package/es/packages/components/api/server.js +19 -0
  34. package/es/packages/components/api/tool.js +57 -0
  35. package/es/packages/components/api/{requestTools.js → upload-server.js} +13 -10
  36. package/es/packages/components/hooks/useClipboard.js +16 -14
  37. package/es/packages/components/hooks/useImport.js +14 -12
  38. package/es/packages/components/hooks/useUpload.js +9 -9
  39. package/es/static/CommonObject.js +4 -0
  40. package/es/style.css +81 -196
  41. package/es/utils/config.js +19 -0
  42. package/es/utils/const.js +19 -0
  43. package/es/utils/style.js +28 -0
  44. package/es/utils/translate.js +50 -31
  45. package/lib/country-platform-shop-condition/style/index.css +48 -0
  46. package/lib/drop-down-condition/style/index.css +45 -0
  47. package/lib/left-condition/style/index.css +11 -0
  48. package/lib/left-condition-enum/style/index.css +0 -0
  49. package/lib/style.css +81 -196
  50. package/package.json +1 -1
  51. package/types/hooks/useClipboard.d.ts +7 -0
  52. package/types/hooks/useImg.d.ts +10 -0
  53. package/types/hooks/useImgPath.d.ts +5 -0
  54. package/types/hooks/useImport.d.ts +11 -0
  55. package/types/hooks/useUpload.d.ts +12 -0
  56. package/types/index.d.ts +6 -1204
  57. package/types/src/annex-upload/annex-upload.d.ts +30 -0
  58. package/types/src/annex-upload/annex-upload.vue.d.ts +443 -0
  59. package/types/src/annex-upload/index.d.ts +123 -0
  60. package/types/src/annex-upload/mimeType.d.ts +2 -0
  61. package/types/src/api/server.d.ts +6 -0
  62. package/types/src/api/tool.d.ts +6 -0
  63. package/types/src/api/types.d.ts +17 -0
  64. package/types/src/components.d.ts +10 -0
  65. package/types/src/comprehensive-search/comprehensive-search.d.ts +12 -0
  66. package/types/src/comprehensive-search/comprehensive-search.vue.d.ts +33 -0
  67. package/types/src/comprehensive-search/index.d.ts +36 -0
  68. package/types/src/copy/copy.d.ts +12 -0
  69. package/types/src/copy/copy.vue.d.ts +21 -0
  70. package/types/src/copy/index.d.ts +32 -0
  71. package/types/src/country-platform-shop-condition/country-platform-shop-condition.d.ts +17 -0
  72. package/types/src/country-platform-shop-condition/country-platform-shop-condition.vue.d.ts +14 -0
  73. package/types/src/country-platform-shop-condition/index.d.ts +16 -0
  74. package/types/src/drop-down-condition/drop-down-condition.d.ts +6 -0
  75. package/types/src/drop-down-condition/drop-down-condition.vue.d.ts +38 -0
  76. package/types/src/drop-down-condition/index.d.ts +40 -0
  77. package/types/src/image-upload/image-upload.d.ts +26 -0
  78. package/types/src/image-upload/image-upload.vue.d.ts +43 -0
  79. package/types/src/image-upload/index.d.ts +94 -0
  80. package/types/src/index.d.ts +7 -0
  81. package/types/src/input/index.d.ts +16 -0
  82. package/types/src/input/input.d.ts +18 -0
  83. package/types/src/input/input.vue.d.ts +14 -0
  84. package/types/src/installs.d.ts +535 -0
  85. package/types/src/left-condition/index.d.ts +69 -0
  86. package/types/src/left-condition/left-condition-sub.vue.d.ts +47 -0
  87. package/types/src/left-condition/left-condition.d.ts +5 -0
  88. package/types/src/left-condition/left-condition.vue.d.ts +68 -0
  89. package/types/src/left-condition-enum/index.d.ts +153 -0
  90. package/types/src/left-condition-enum/left-condition-enum.d.ts +5 -0
  91. package/types/src/left-condition-enum/left-condition-enum.vue.d.ts +151 -0
  92. package/types/src/operation-log/index.d.ts +9 -0
  93. package/types/src/operation-log/operation-log-content.vue.d.ts +24 -0
  94. package/types/src/operation-log/operation-log-dialog.vue.d.ts +39 -0
  95. package/types/src/operation-log/operation-log-form.vue.d.ts +19 -0
  96. package/types/src/operation-log/operation-log.d.ts +11 -0
  97. package/types/src/operation-log/operation-log.vue.d.ts +6 -0
  98. package/types/src/static/CommonObject.d.ts +18 -0
  99. package/types/src/static/CommonVariables.d.ts +4 -0
  100. package/types/src/utils/config.d.ts +8 -0
  101. package/types/src/utils/const.d.ts +19 -0
  102. package/types/src/utils/functions.d.ts +1 -0
  103. package/types/src/utils/install.d.ts +8 -0
  104. package/types/src/utils/storage.d.ts +18 -0
  105. package/types/src/utils/style.d.ts +19 -0
  106. package/types/src/utils/to-kebab-case.d.ts +1 -0
  107. package/types/src/utils/translate.d.ts +5 -0
  108. package/types/src/utils/typescript.d.ts +5 -0
  109. package/es/packages/components/api/remarkApi.js +0 -15
  110. package/es/packages/components/api/requestRemark.js +0 -47
  111. package/lib/_virtual/_commonjsHelpers.js +0 -1
  112. package/lib/_virtual/_plugin-vue_export-helper.js +0 -1
  113. package/lib/_virtual/dayjs.min.js +0 -1
  114. package/lib/_virtual/lodash.js +0 -1
  115. package/lib/annex-upload/annex-upload.vue.js +0 -1
  116. package/lib/annex-upload/annex-upload.vue2.js +0 -1
  117. package/lib/annex-upload/index.js +0 -1
  118. package/lib/annex-upload/mimeType.js +0 -1
  119. package/lib/comprehensive-search/comprehensive-search.vue.js +0 -1
  120. package/lib/comprehensive-search/comprehensive-search.vue2.js +0 -1
  121. package/lib/comprehensive-search/index.js +0 -1
  122. package/lib/copy/copy.vue.js +0 -1
  123. package/lib/copy/copy.vue2.js +0 -1
  124. package/lib/copy/index.js +0 -1
  125. package/lib/image-upload/image-upload.vue.js +0 -1
  126. package/lib/image-upload/image-upload.vue2.js +0 -1
  127. package/lib/image-upload/index.js +0 -1
  128. package/lib/index.js +0 -1
  129. package/lib/input/index.js +0 -1
  130. package/lib/input/input.vue.js +0 -1
  131. package/lib/input/input.vue2.js +0 -1
  132. package/lib/installs.js +0 -1
  133. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/adapters/adapters.js +0 -3
  134. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/adapters/fetch.js +0 -1
  135. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/adapters/xhr.js +0 -1
  136. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/axios.js +0 -1
  137. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/cancel/CancelToken.js +0 -1
  138. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/cancel/CanceledError.js +0 -1
  139. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/cancel/isCancel.js +0 -1
  140. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/Axios.js +0 -2
  141. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/AxiosError.js +0 -1
  142. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/AxiosHeaders.js +0 -2
  143. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/InterceptorManager.js +0 -1
  144. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/buildFullPath.js +0 -1
  145. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/dispatchRequest.js +0 -1
  146. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/mergeConfig.js +0 -1
  147. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/settle.js +0 -1
  148. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/transformData.js +0 -1
  149. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/defaults/index.js +0 -1
  150. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/defaults/transitional.js +0 -1
  151. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/env/data.js +0 -1
  152. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +0 -1
  153. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/HttpStatusCode.js +0 -1
  154. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/bind.js +0 -1
  155. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/buildURL.js +0 -1
  156. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/combineURLs.js +0 -1
  157. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/composeSignals.js +0 -1
  158. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/cookies.js +0 -1
  159. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/formDataToJSON.js +0 -1
  160. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/isAbsoluteURL.js +0 -1
  161. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/isAxiosError.js +0 -1
  162. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/isURLSameOrigin.js +0 -1
  163. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/null.js +0 -1
  164. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/parseHeaders.js +0 -2
  165. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/parseProtocol.js +0 -1
  166. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/progressEventReducer.js +0 -1
  167. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/resolveConfig.js +0 -1
  168. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/speedometer.js +0 -1
  169. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/spread.js +0 -1
  170. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/throttle.js +0 -1
  171. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/toFormData.js +0 -1
  172. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/toURLEncodedForm.js +0 -1
  173. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/trackStream.js +0 -1
  174. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/validator.js +0 -1
  175. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/platform/browser/classes/Blob.js +0 -1
  176. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/platform/browser/classes/FormData.js +0 -1
  177. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +0 -1
  178. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/platform/browser/index.js +0 -1
  179. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/platform/common/utils.js +0 -1
  180. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/platform/index.js +0 -1
  181. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/utils.js +0 -1
  182. package/lib/node_modules/.pnpm/dayjs@1.11.13/node_modules/dayjs/dayjs.min.js +0 -1
  183. package/lib/node_modules/.pnpm/element-plus@2.8.3_vue@3.5.4_typescript@5.6.2_/node_modules/element-plus/es/locale/lang/zh-cn.js +0 -1
  184. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js +0 -27
  185. package/lib/node_modules/.pnpm/v3-infinite-loading@1.3.2/node_modules/v3-infinite-loading/lib/v3-infinite-loading.es.js +0 -1
  186. package/lib/operation-log/index.js +0 -1
  187. package/lib/operation-log/operation-log-content.vue.js +0 -1
  188. package/lib/operation-log/operation-log-content.vue2.js +0 -1
  189. package/lib/operation-log/operation-log-dialog.vue.js +0 -1
  190. package/lib/operation-log/operation-log-dialog.vue2.js +0 -1
  191. package/lib/operation-log/operation-log-form.vue.js +0 -1
  192. package/lib/operation-log/operation-log-form.vue2.js +0 -1
  193. package/lib/operation-log/operation-log.vue.js +0 -1
  194. package/lib/operation-log/operation-log.vue2.js +0 -1
  195. package/lib/packages/components/api/log-server.js +0 -1
  196. package/lib/packages/components/api/remarkApi.js +0 -1
  197. package/lib/packages/components/api/requestRemark.js +0 -1
  198. package/lib/packages/components/api/requestTools.js +0 -1
  199. package/lib/packages/components/assets/images/errorimg.png.js +0 -1
  200. package/lib/packages/components/assets/images/excel.png.js +0 -1
  201. package/lib/packages/components/assets/images/file-word.png.js +0 -1
  202. package/lib/packages/components/assets/images/pdf.png.js +0 -1
  203. package/lib/packages/components/assets/images/ppt.png.js +0 -1
  204. package/lib/packages/components/assets/images/vue.svg.js +0 -1
  205. package/lib/packages/components/hooks/useClipboard.js +0 -1
  206. package/lib/packages/components/hooks/useImg.js +0 -1
  207. package/lib/packages/components/hooks/useImgPath.js +0 -1
  208. package/lib/packages/components/hooks/useImport.js +0 -1
  209. package/lib/packages/components/hooks/useUpload.js +0 -1
  210. package/lib/utils/install.js +0 -1
  211. package/lib/utils/storage.js +0 -1
  212. package/lib/utils/translate.js +0 -1
  213. /package/es/node_modules/.pnpm/{element-plus@2.8.3_vue@3.5.4_typescript@5.6.2_ → element-plus@2.8.3_vue@3.5.12_typescript@5.6.2_}/node_modules/element-plus/es/locale/lang/zh-cn.js +0 -0
@@ -0,0 +1,535 @@
1
+ import { SFCWithInstall } from './utils/typescript';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, VNodeProps, AllowedComponentProps, ComponentCustomProps, GlobalComponents, GlobalDirectives, ComponentOptionsBase, ExtractPropTypes } from 'vue';
3
+ import { InputProps } from './input';
4
+ import { SearchOptions } from './comprehensive-search';
5
+ import { CopyProps } from './copy';
6
+ import { ImageUploadProps } from './image-upload';
7
+ import { OperationLogProps } from './operation-log';
8
+ import { AnnexUploadProps } from './annex-upload';
9
+ import { Option } from './static/CommonObject';
10
+ import { DropdownEntity } from './drop-down-condition/drop-down-condition';
11
+ import { data } from './country-platform-shop-condition/country-platform-shop-condition';
12
+ declare const _default: (( SFCWithInstall<DefineComponent<InputProps, {
13
+ focus: () => void;
14
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
15
+ "update:modelValue": (value: string) => any;
16
+ }, string, PublicProps, Readonly< InputProps> & Readonly<{
17
+ "onUpdate:modelValue"?: (value: string) => any;
18
+ }>, {
19
+ modelValue: string;
20
+ disabled: boolean;
21
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>> & Record<string, any>) | ( SFCWithInstall<DefineComponent<{
22
+ dealSearch?: (selectedSearchType: string, searchQuery: string) => void;
23
+ confirmSearch?: () => void;
24
+ pasteFormat?: () => void;
25
+ isInSearchChange?: () => void;
26
+ defaultSearch?: string;
27
+ options?: SearchOptions[];
28
+ placeholderText?: string;
29
+ showPatchSearch?: boolean;
30
+ showPatchCheckbox?: boolean;
31
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
32
+ dealSearch?: (selectedSearchType: string, searchQuery: string) => void;
33
+ confirmSearch?: () => void;
34
+ pasteFormat?: () => void;
35
+ isInSearchChange?: () => void;
36
+ defaultSearch?: string;
37
+ options?: SearchOptions[];
38
+ placeholderText?: string;
39
+ showPatchSearch?: boolean;
40
+ showPatchCheckbox?: boolean;
41
+ }> & Readonly<{}>, {
42
+ dealSearch: (selectedSearchType: string, searchQuery: string) => void;
43
+ pasteFormat: () => void;
44
+ confirmSearch: () => void;
45
+ isInSearchChange: () => void;
46
+ defaultSearch: string;
47
+ options: SearchOptions[];
48
+ placeholderText: string;
49
+ showPatchSearch: boolean;
50
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>> & Record<string, any>) | ( SFCWithInstall<{
51
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< CopyProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< CopyProps> & Readonly<{}>, {
52
+ message: string;
53
+ content: string;
54
+ }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
55
+ P: {};
56
+ B: {};
57
+ D: {};
58
+ C: {};
59
+ M: {};
60
+ Defaults: {};
61
+ }, Readonly< CopyProps> & Readonly<{}>, {}, {}, {}, {}, {
62
+ message: string;
63
+ content: string;
64
+ }>;
65
+ __isFragment?: never;
66
+ __isTeleport?: never;
67
+ __isSuspense?: never;
68
+ } & ComponentOptionsBase<Readonly< CopyProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
69
+ message: string;
70
+ content: string;
71
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
72
+ $slots: {
73
+ default?(_: {}): any;
74
+ };
75
+ })> & Record<string, any>) | ( SFCWithInstall<{
76
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ImageUploadProps> & Readonly<{
77
+ onChange?: (...args: any[]) => any;
78
+ "onUpdate:modelValue"?: (...args: any[]) => any;
79
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
80
+ change: (...args: any[]) => void;
81
+ "update:modelValue": (...args: any[]) => void;
82
+ }, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ImageUploadProps> & Readonly<{
83
+ onChange?: (...args: any[]) => any;
84
+ "onUpdate:modelValue"?: (...args: any[]) => any;
85
+ }>, {
86
+ modelValue: {
87
+ index: number;
88
+ fileId: string;
89
+ fileName: string;
90
+ };
91
+ fileType: string;
92
+ showDelete: boolean;
93
+ zoom: number;
94
+ imgSize: {
95
+ width: number;
96
+ height: number;
97
+ };
98
+ limitImgSize: boolean;
99
+ limitFileSize: boolean;
100
+ fileSize: number;
101
+ fileSizeUnit: "kb" | "KB" | "mb" | "MB";
102
+ }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
103
+ P: {};
104
+ B: {};
105
+ D: {};
106
+ C: {};
107
+ M: {};
108
+ Defaults: {};
109
+ }, Readonly< ImageUploadProps> & Readonly<{
110
+ onChange?: (...args: any[]) => any;
111
+ "onUpdate:modelValue"?: (...args: any[]) => any;
112
+ }>, {}, {}, {}, {}, {
113
+ modelValue: {
114
+ index: number;
115
+ fileId: string;
116
+ fileName: string;
117
+ };
118
+ fileType: string;
119
+ showDelete: boolean;
120
+ zoom: number;
121
+ imgSize: {
122
+ width: number;
123
+ height: number;
124
+ };
125
+ limitImgSize: boolean;
126
+ limitFileSize: boolean;
127
+ fileSize: number;
128
+ fileSizeUnit: "kb" | "KB" | "mb" | "MB";
129
+ }>;
130
+ __isFragment?: never;
131
+ __isTeleport?: never;
132
+ __isSuspense?: never;
133
+ } & ComponentOptionsBase<Readonly< ImageUploadProps> & Readonly<{
134
+ onChange?: (...args: any[]) => any;
135
+ "onUpdate:modelValue"?: (...args: any[]) => any;
136
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
137
+ change: (...args: any[]) => void;
138
+ "update:modelValue": (...args: any[]) => void;
139
+ }, string, {
140
+ modelValue: {
141
+ index: number;
142
+ fileId: string;
143
+ fileName: string;
144
+ };
145
+ fileType: string;
146
+ showDelete: boolean;
147
+ zoom: number;
148
+ imgSize: {
149
+ width: number;
150
+ height: number;
151
+ };
152
+ limitImgSize: boolean;
153
+ limitFileSize: boolean;
154
+ fileSize: number;
155
+ fileSizeUnit: "kb" | "KB" | "mb" | "MB";
156
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
157
+ $slots: {
158
+ default?(_: {
159
+ value: string;
160
+ }): any;
161
+ };
162
+ })> & Record<string, any>) | ( SFCWithInstall<DefineComponent<OperationLogProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< OperationLogProps> & Readonly<{}>, {
163
+ projectId: string;
164
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>> & Record<string, any>) | ( SFCWithInstall<{
165
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< AnnexUploadProps> & Readonly<{
166
+ onChange?: (...args: any[]) => any;
167
+ "onUpdate:modelValue"?: (...args: any[]) => any;
168
+ onSuccess?: (...args: any[]) => any;
169
+ onRemove?: (...args: any[]) => any;
170
+ }>, {
171
+ clearFiles: () => Promise<void>;
172
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
173
+ change: (...args: any[]) => void;
174
+ "update:modelValue": (...args: any[]) => void;
175
+ success: (...args: any[]) => void;
176
+ remove: (...args: any[]) => void;
177
+ }, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< AnnexUploadProps> & Readonly<{
178
+ onChange?: (...args: any[]) => any;
179
+ "onUpdate:modelValue"?: (...args: any[]) => any;
180
+ onSuccess?: (...args: any[]) => any;
181
+ onRemove?: (...args: any[]) => any;
182
+ }>, {
183
+ modelValue: {
184
+ index: number;
185
+ fileId: string;
186
+ fileName: string;
187
+ }[];
188
+ validateEvent: boolean;
189
+ fileType: string;
190
+ limitFileSize: boolean;
191
+ fileSize: number;
192
+ fileSizeUnit: "kb" | "KB" | "mb" | "MB";
193
+ accept: string;
194
+ fileList: {
195
+ name: string;
196
+ url: string;
197
+ }[];
198
+ limit: number;
199
+ showList: boolean;
200
+ checkRealType: boolean;
201
+ uploadType: "upload" | "import";
202
+ showTips: boolean;
203
+ }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
204
+ P: {};
205
+ B: {};
206
+ D: {};
207
+ C: {};
208
+ M: {};
209
+ Defaults: {};
210
+ }, Readonly< AnnexUploadProps> & Readonly<{
211
+ onChange?: (...args: any[]) => any;
212
+ "onUpdate:modelValue"?: (...args: any[]) => any;
213
+ onSuccess?: (...args: any[]) => any;
214
+ onRemove?: (...args: any[]) => any;
215
+ }>, {
216
+ clearFiles: () => Promise<void>;
217
+ }, {}, {}, {}, {
218
+ modelValue: {
219
+ index: number;
220
+ fileId: string;
221
+ fileName: string;
222
+ }[];
223
+ validateEvent: boolean;
224
+ fileType: string;
225
+ limitFileSize: boolean;
226
+ fileSize: number;
227
+ fileSizeUnit: "kb" | "KB" | "mb" | "MB";
228
+ accept: string;
229
+ fileList: {
230
+ name: string;
231
+ url: string;
232
+ }[];
233
+ limit: number;
234
+ showList: boolean;
235
+ checkRealType: boolean;
236
+ uploadType: "upload" | "import";
237
+ showTips: boolean;
238
+ }>;
239
+ __isFragment?: never;
240
+ __isTeleport?: never;
241
+ __isSuspense?: never;
242
+ } & ComponentOptionsBase<Readonly< AnnexUploadProps> & Readonly<{
243
+ onChange?: (...args: any[]) => any;
244
+ "onUpdate:modelValue"?: (...args: any[]) => any;
245
+ onSuccess?: (...args: any[]) => any;
246
+ onRemove?: (...args: any[]) => any;
247
+ }>, {
248
+ clearFiles: () => Promise<void>;
249
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
250
+ change: (...args: any[]) => void;
251
+ "update:modelValue": (...args: any[]) => void;
252
+ success: (...args: any[]) => void;
253
+ remove: (...args: any[]) => void;
254
+ }, string, {
255
+ modelValue: {
256
+ index: number;
257
+ fileId: string;
258
+ fileName: string;
259
+ }[];
260
+ validateEvent: boolean;
261
+ fileType: string;
262
+ limitFileSize: boolean;
263
+ fileSize: number;
264
+ fileSizeUnit: "kb" | "KB" | "mb" | "MB";
265
+ accept: string;
266
+ fileList: {
267
+ name: string;
268
+ url: string;
269
+ }[];
270
+ limit: number;
271
+ showList: boolean;
272
+ checkRealType: boolean;
273
+ uploadType: "upload" | "import";
274
+ showTips: boolean;
275
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
276
+ $slots: {
277
+ default?(_: {}): any;
278
+ tip?(_: {}): any;
279
+ };
280
+ })> & Record<string, any>) | ( SFCWithInstall<DefineComponent<{
281
+ multiSelectList?: Array<any>;
282
+ selectList: Array< Option>;
283
+ countList?: Array<any>;
284
+ totalCount?: number;
285
+ hasNum?: boolean;
286
+ displayRangeInput?: boolean;
287
+ rangeLabel?: string;
288
+ rangeStartKey?: string;
289
+ rangeEndKey?: string;
290
+ rangeDelimiter?: string;
291
+ allIsCheckbox?: boolean;
292
+ allIsEmpty?: boolean;
293
+ translateUserId?: boolean;
294
+ staticSearch?: boolean;
295
+ label?: string;
296
+ noNeedRefreshNumFilterName?: string;
297
+ filterKey: string;
298
+ defaultValues?: Array<string | number | boolean>;
299
+ }, {
300
+ clickAllSelected: () => void;
301
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
302
+ filterChange: (...args: any[]) => void;
303
+ setNoNeedRefreshNumFilterName: (...args: any[]) => void;
304
+ }, string, PublicProps, Readonly<{
305
+ multiSelectList?: Array<any>;
306
+ selectList: Array< Option>;
307
+ countList?: Array<any>;
308
+ totalCount?: number;
309
+ hasNum?: boolean;
310
+ displayRangeInput?: boolean;
311
+ rangeLabel?: string;
312
+ rangeStartKey?: string;
313
+ rangeEndKey?: string;
314
+ rangeDelimiter?: string;
315
+ allIsCheckbox?: boolean;
316
+ allIsEmpty?: boolean;
317
+ translateUserId?: boolean;
318
+ staticSearch?: boolean;
319
+ label?: string;
320
+ noNeedRefreshNumFilterName?: string;
321
+ filterKey: string;
322
+ defaultValues?: Array<string | number | boolean>;
323
+ }> & Readonly<{
324
+ onFilterChange?: (...args: any[]) => any;
325
+ onSetNoNeedRefreshNumFilterName?: (...args: any[]) => any;
326
+ }>, {
327
+ label: string;
328
+ multiSelectList: Array<any>;
329
+ countList: Array<any>;
330
+ hasNum: boolean;
331
+ selectList: Array< Option>;
332
+ totalCount: number;
333
+ displayRangeInput: boolean;
334
+ rangeLabel: string;
335
+ rangeStartKey: string;
336
+ rangeEndKey: string;
337
+ rangeDelimiter: string;
338
+ allIsEmpty: boolean;
339
+ staticSearch: boolean;
340
+ noNeedRefreshNumFilterName: string;
341
+ filterKey: string;
342
+ defaultValues: Array<string | number | boolean>;
343
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>> & Record<string, any>) | ( SFCWithInstall<DefineComponent<ExtractPropTypes<{
344
+ selectList: {
345
+ type: {
346
+ (arrayLength: number): Option[];
347
+ (...items: Option[]): Option[];
348
+ new (arrayLength: number): Option[];
349
+ new (...items: Option[]): Option[];
350
+ isArray(arg: any): arg is any[];
351
+ readonly prototype: any[];
352
+ from<T>(arrayLike: ArrayLike<T>): T[];
353
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
354
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
355
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
356
+ of<T>(...items: T[]): T[];
357
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
358
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
359
+ readonly [Symbol.species]: ArrayConstructor;
360
+ };
361
+ default: () => Option[];
362
+ };
363
+ countList: {
364
+ type: {
365
+ (arrayLength: number): any[];
366
+ (...items: any[]): any[];
367
+ new (arrayLength: number): any[];
368
+ new (...items: any[]): any[];
369
+ isArray(arg: any): arg is any[];
370
+ readonly prototype: any[];
371
+ from<T>(arrayLike: ArrayLike<T>): T[];
372
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
373
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
374
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
375
+ of<T>(...items: T[]): T[];
376
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
377
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
378
+ readonly [Symbol.species]: ArrayConstructor;
379
+ };
380
+ required: false;
381
+ };
382
+ enumEntity: {
383
+ type: StringConstructor;
384
+ default: string;
385
+ };
386
+ filterKey: {
387
+ type: StringConstructor;
388
+ default: string;
389
+ };
390
+ totalCount: {
391
+ type: NumberConstructor;
392
+ required: false;
393
+ };
394
+ noNeedRefreshNumFilterName: {
395
+ type: StringConstructor;
396
+ required: false;
397
+ };
398
+ allIsCheckbox: {
399
+ type: BooleanConstructor;
400
+ required: false;
401
+ };
402
+ allIsEmpty: {
403
+ type: BooleanConstructor;
404
+ required: false;
405
+ };
406
+ translateUserId: {
407
+ type: BooleanConstructor;
408
+ required: false;
409
+ };
410
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
411
+ filterChange: (...args: any[]) => void;
412
+ setNoNeedRefreshNumFilterName: (...args: any[]) => void;
413
+ }, string, PublicProps, Readonly< ExtractPropTypes<{
414
+ selectList: {
415
+ type: {
416
+ (arrayLength: number): Option[];
417
+ (...items: Option[]): Option[];
418
+ new (arrayLength: number): Option[];
419
+ new (...items: Option[]): Option[];
420
+ isArray(arg: any): arg is any[];
421
+ readonly prototype: any[];
422
+ from<T>(arrayLike: ArrayLike<T>): T[];
423
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
424
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
425
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
426
+ of<T>(...items: T[]): T[];
427
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
428
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
429
+ readonly [Symbol.species]: ArrayConstructor;
430
+ };
431
+ default: () => Option[];
432
+ };
433
+ countList: {
434
+ type: {
435
+ (arrayLength: number): any[];
436
+ (...items: any[]): any[];
437
+ new (arrayLength: number): any[];
438
+ new (...items: any[]): any[];
439
+ isArray(arg: any): arg is any[];
440
+ readonly prototype: any[];
441
+ from<T>(arrayLike: ArrayLike<T>): T[];
442
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
443
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
444
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
445
+ of<T>(...items: T[]): T[];
446
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
447
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
448
+ readonly [Symbol.species]: ArrayConstructor;
449
+ };
450
+ required: false;
451
+ };
452
+ enumEntity: {
453
+ type: StringConstructor;
454
+ default: string;
455
+ };
456
+ filterKey: {
457
+ type: StringConstructor;
458
+ default: string;
459
+ };
460
+ totalCount: {
461
+ type: NumberConstructor;
462
+ required: false;
463
+ };
464
+ noNeedRefreshNumFilterName: {
465
+ type: StringConstructor;
466
+ required: false;
467
+ };
468
+ allIsCheckbox: {
469
+ type: BooleanConstructor;
470
+ required: false;
471
+ };
472
+ allIsEmpty: {
473
+ type: BooleanConstructor;
474
+ required: false;
475
+ };
476
+ translateUserId: {
477
+ type: BooleanConstructor;
478
+ required: false;
479
+ };
480
+ }>> & Readonly<{
481
+ onFilterChange?: (...args: any[]) => any;
482
+ onSetNoNeedRefreshNumFilterName?: (...args: any[]) => any;
483
+ }>, {
484
+ allIsCheckbox: boolean;
485
+ translateUserId: boolean;
486
+ selectList: Option[];
487
+ allIsEmpty: boolean;
488
+ filterKey: string;
489
+ enumEntity: string;
490
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>> & Record<string, any>) | ( SFCWithInstall<DefineComponent<{
491
+ filterList?: Array< DropdownEntity>;
492
+ totalCount?: number;
493
+ level1Count?: Array<{
494
+ value: string;
495
+ count: number;
496
+ }>;
497
+ level2Count?: Array<{
498
+ value: string;
499
+ count: number;
500
+ }>;
501
+ filterKey: string;
502
+ enumEntity: string;
503
+ noNeedRefreshNumFilterName?: string;
504
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
505
+ filterChange: (...args: any[]) => void;
506
+ setNoNeedRefreshNumFilterName: (...args: any[]) => void;
507
+ }, string, PublicProps, Readonly<{
508
+ filterList?: Array< DropdownEntity>;
509
+ totalCount?: number;
510
+ level1Count?: Array<{
511
+ value: string;
512
+ count: number;
513
+ }>;
514
+ level2Count?: Array<{
515
+ value: string;
516
+ count: number;
517
+ }>;
518
+ filterKey: string;
519
+ enumEntity: string;
520
+ noNeedRefreshNumFilterName?: string;
521
+ }> & Readonly<{
522
+ onFilterChange?: (...args: any[]) => any;
523
+ onSetNoNeedRefreshNumFilterName?: (...args: any[]) => any;
524
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>> & Record<string, any>) | ( SFCWithInstall<DefineComponent<{
525
+ xyFilters?: data;
526
+ filterKey: string;
527
+ }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
528
+ filterChange: (...args: any[]) => void;
529
+ }, string, PublicProps, Readonly<{
530
+ xyFilters?: data;
531
+ filterKey: string;
532
+ }> & Readonly<{
533
+ onFilterChange?: (...args: any[]) => any;
534
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>> & Record<string, any>))[];
535
+ export default _default;
@@ -0,0 +1,69 @@
1
+ import { SFCWithInstall } from '../utils/typescript';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ import { Option } from '../static/CommonObject';
4
+ export declare const YaheeLeftCondition: SFCWithInstall<DefineComponent<{
5
+ multiSelectList?: Array<any>;
6
+ selectList: Array< Option>;
7
+ countList?: Array<any>;
8
+ totalCount?: number;
9
+ hasNum?: boolean;
10
+ displayRangeInput?: boolean;
11
+ rangeLabel?: string;
12
+ rangeStartKey?: string;
13
+ rangeEndKey?: string;
14
+ rangeDelimiter?: string;
15
+ allIsCheckbox?: boolean;
16
+ allIsEmpty?: boolean;
17
+ translateUserId?: boolean;
18
+ staticSearch?: boolean;
19
+ label?: string;
20
+ noNeedRefreshNumFilterName?: string;
21
+ filterKey: string;
22
+ defaultValues?: Array<string | number | boolean>;
23
+ }, {
24
+ clickAllSelected: () => void;
25
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
26
+ filterChange: (...args: any[]) => void;
27
+ setNoNeedRefreshNumFilterName: (...args: any[]) => void;
28
+ }, string, PublicProps, Readonly<{
29
+ multiSelectList?: Array<any>;
30
+ selectList: Array< Option>;
31
+ countList?: Array<any>;
32
+ totalCount?: number;
33
+ hasNum?: boolean;
34
+ displayRangeInput?: boolean;
35
+ rangeLabel?: string;
36
+ rangeStartKey?: string;
37
+ rangeEndKey?: string;
38
+ rangeDelimiter?: string;
39
+ allIsCheckbox?: boolean;
40
+ allIsEmpty?: boolean;
41
+ translateUserId?: boolean;
42
+ staticSearch?: boolean;
43
+ label?: string;
44
+ noNeedRefreshNumFilterName?: string;
45
+ filterKey: string;
46
+ defaultValues?: Array<string | number | boolean>;
47
+ }> & Readonly<{
48
+ onFilterChange?: (...args: any[]) => any;
49
+ onSetNoNeedRefreshNumFilterName?: (...args: any[]) => any;
50
+ }>, {
51
+ label: string;
52
+ multiSelectList: Array<any>;
53
+ countList: Array<any>;
54
+ hasNum: boolean;
55
+ selectList: Array< Option>;
56
+ totalCount: number;
57
+ displayRangeInput: boolean;
58
+ rangeLabel: string;
59
+ rangeStartKey: string;
60
+ rangeEndKey: string;
61
+ rangeDelimiter: string;
62
+ allIsEmpty: boolean;
63
+ staticSearch: boolean;
64
+ noNeedRefreshNumFilterName: string;
65
+ filterKey: string;
66
+ defaultValues: Array<string | number | boolean>;
67
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>> & Record<string, any>;
68
+ export default YaheeLeftCondition;
69
+ export * from './left-condition.vue';
@@ -0,0 +1,47 @@
1
+ import { Option } from '../static/CommonObject';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare function setCheckboxValue(val: boolean): void;
4
+ declare function setCurrentValue(val: boolean): void;
5
+ declare function resetValue(): void;
6
+ declare function getValue(): Option;
7
+ declare const _default: DefineComponent<{
8
+ multiSelectList: Array<any>;
9
+ countList?: Array<any>;
10
+ item: Option;
11
+ hasNum: boolean;
12
+ allIsCheckbox?: boolean;
13
+ translateUserId: boolean;
14
+ }, {
15
+ resetValue: typeof resetValue;
16
+ getValue: typeof getValue;
17
+ setCurrentValue: typeof setCurrentValue;
18
+ setCheckboxValue: typeof setCheckboxValue;
19
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
20
+ resetAllCheckedValue: (...args: any[]) => void;
21
+ setSelectedStatusMap: (...args: any[]) => void;
22
+ resetRange: (...args: any[]) => void;
23
+ resetIsSelectAll: (...args: any[]) => void;
24
+ notifyParent: (...args: any[]) => void;
25
+ setNoNeedRefreshNumFilterName: (...args: any[]) => void;
26
+ }, string, PublicProps, Readonly<{
27
+ multiSelectList: Array<any>;
28
+ countList?: Array<any>;
29
+ item: Option;
30
+ hasNum: boolean;
31
+ allIsCheckbox?: boolean;
32
+ translateUserId: boolean;
33
+ }> & Readonly<{
34
+ onResetAllCheckedValue?: (...args: any[]) => any;
35
+ onSetSelectedStatusMap?: (...args: any[]) => any;
36
+ onResetRange?: (...args: any[]) => any;
37
+ onResetIsSelectAll?: (...args: any[]) => any;
38
+ onNotifyParent?: (...args: any[]) => any;
39
+ onSetNoNeedRefreshNumFilterName?: (...args: any[]) => any;
40
+ }>, {
41
+ item: Option;
42
+ multiSelectList: Array<any>;
43
+ hasNum: boolean;
44
+ allIsCheckbox: boolean;
45
+ translateUserId: boolean;
46
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
47
+ export default _default;
@@ -0,0 +1,5 @@
1
+ export type SelectStatus = {
2
+ label: string;
3
+ value: any;
4
+ selected: boolean;
5
+ };