yahee-components 0.0.75 → 0.0.81
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/annex-upload/annex-upload.vue.js +51 -154
- package/es/annex-upload/annex-upload.vue2.js +119 -2
- package/es/annex-upload/index.js +3 -3
- package/es/api/server.js +24 -19
- package/es/api/tool.js +31 -28
- package/es/border-wrap/border-wrap.vue.js +64 -95
- package/es/border-wrap/border-wrap.vue2.js +46 -2
- package/es/common-import/common-import.vue.js +369 -640
- package/es/common-import/common-import.vue2.js +328 -2
- package/es/common-import/index.js +3 -3
- package/es/common-import/props.js +4 -1
- package/es/complex-search/complex-search.vue.js +15 -15
- package/es/copy/copy.vue.js +37 -55
- package/es/copy/copy.vue2.js +34 -2
- package/es/copy/index.js +3 -3
- package/es/country-platform-shop-condition/country-platform-shop-condition.vue.js +114 -213
- package/es/country-platform-shop-condition/country-platform-shop-condition.vue2.js +125 -2
- package/es/drop-down-condition/drop-down-condition.vue.js +113 -213
- package/es/drop-down-condition/drop-down-condition.vue2.js +127 -2
- package/es/echart-gauge/echart-gauge.vue.js +12 -140
- package/es/echart-gauge/echart-gauge.vue2.js +147 -2
- package/es/echart-gauge/index.js +3 -3
- package/es/image-upload/image-upload.vue.js +109 -170
- package/es/image-upload/image-upload.vue2.js +91 -2
- package/es/image-upload/index.js +3 -3
- package/es/input/index.js +3 -3
- package/es/input/input.vue.js +17 -38
- package/es/input/input.vue2.js +33 -2
- package/es/left-condition/index.js +3 -3
- package/es/left-condition/left-condition-sub.vue.js +32 -91
- package/es/left-condition/left-condition-sub.vue2.js +76 -2
- package/es/left-condition/left-condition.vue.js +70 -218
- package/es/left-condition/left-condition.vue2.js +160 -2
- package/es/left-condition-enum/index.js +3 -3
- package/es/left-condition-enum/left-condition-enum.vue.js +20 -49
- package/es/left-condition-enum/left-condition-enum.vue2.js +40 -2
- package/es/operation-log/operation-log-content.vue.js +71 -92
- package/es/operation-log/operation-log-content.vue2.js +39 -2
- package/es/operation-log/operation-log-dialog.vue.js +46 -68
- package/es/operation-log/operation-log-dialog.vue2.js +38 -2
- package/es/operation-log/operation-log-form.vue.js +108 -183
- package/es/operation-log/operation-log-form.vue2.js +104 -2
- package/es/operation-log/operation-log.vue.js +119 -228
- package/es/operation-log/operation-log.vue2.js +135 -2
- package/es/packages/components/api/log-server.js +6 -6
- package/es/packages/components/api/server.js +18 -20
- package/es/packages/components/api/tool.js +35 -32
- package/es/packages/components/api/upload-server.js +1 -1
- package/es/packages/components/hooks/useEcharts.js +19 -19
- package/es/packages/components/hooks/useImg.js +8 -8
- package/es/scale-screen/index.js +4 -4
- package/es/scale-screen/scale-screen.vue.js +19 -126
- package/es/scale-screen/scale-screen.vue2.js +125 -2
- package/es/utils/translate.js +21 -21
- package/package.json +46 -46
- package/readme.md +249 -249
- package/types/src/common-import/common-import.vue.d.ts +10 -0
- package/types/src/common-import/index.d.ts +25 -0
- package/types/src/common-import/props.d.ts +19 -0
- package/types/src/installs.d.ts +25 -0
- package/types/src/left-condition-enum/left-condition-enum.d.ts +3 -0
- package/es/packages/components/api/common/index.js +0 -7
package/types/src/installs.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ import { DropdownEntity } from './drop-down-condition/drop-down-condition';
|
|
|
12
12
|
import { data } from './country-platform-shop-condition/country-platform-shop-condition';
|
|
13
13
|
import { CommonImportProps } from './common-import/props';
|
|
14
14
|
import { PageObj } from './common-import/common-import';
|
|
15
|
+
import { IAnyObj } from './left-condition-enum/left-condition-enum';
|
|
15
16
|
declare const _default: (( SFCWithInstall<DefineComponent<InputProps, {
|
|
16
17
|
focus: () => void;
|
|
17
18
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
@@ -2253,10 +2254,12 @@ declare const _default: (( SFCWithInstall<DefineComponent<InputProps, {
|
|
|
2253
2254
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< CommonImportProps> & Readonly<{
|
|
2254
2255
|
onSubmit?: (...args: any[]) => any;
|
|
2255
2256
|
onSetIsShowDialog?: (...args: any[]) => any;
|
|
2257
|
+
onSetResponseData?: (...args: any[]) => any;
|
|
2256
2258
|
onReloadTableData?: (...args: any[]) => any;
|
|
2257
2259
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2258
2260
|
submit: (...args: any[]) => void;
|
|
2259
2261
|
setIsShowDialog: (...args: any[]) => void;
|
|
2262
|
+
setResponseData: (...args: any[]) => void;
|
|
2260
2263
|
reloadTableData: (...args: any[]) => void;
|
|
2261
2264
|
}, PublicProps, {
|
|
2262
2265
|
title: string;
|
|
@@ -2268,6 +2271,7 @@ declare const _default: (( SFCWithInstall<DefineComponent<InputProps, {
|
|
|
2268
2271
|
data: object;
|
|
2269
2272
|
}>;
|
|
2270
2273
|
isShowDialog: boolean;
|
|
2274
|
+
isShowResponseDataMessage: boolean;
|
|
2271
2275
|
importId: string;
|
|
2272
2276
|
ProcessRequestData: any;
|
|
2273
2277
|
AutoCompleteResult: boolean;
|
|
@@ -2279,6 +2283,11 @@ declare const _default: (( SFCWithInstall<DefineComponent<InputProps, {
|
|
|
2279
2283
|
data: object;
|
|
2280
2284
|
}>;
|
|
2281
2285
|
uploadDisabled: boolean;
|
|
2286
|
+
filePath: string;
|
|
2287
|
+
processFiles: (url: string, data: IAnyObj, conf: IAnyObj) => Promise<{
|
|
2288
|
+
msg: string;
|
|
2289
|
+
data: object;
|
|
2290
|
+
}>;
|
|
2282
2291
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
2283
2292
|
P: {};
|
|
2284
2293
|
B: {};
|
|
@@ -2289,6 +2298,7 @@ declare const _default: (( SFCWithInstall<DefineComponent<InputProps, {
|
|
|
2289
2298
|
}, Readonly< CommonImportProps> & Readonly<{
|
|
2290
2299
|
onSubmit?: (...args: any[]) => any;
|
|
2291
2300
|
onSetIsShowDialog?: (...args: any[]) => any;
|
|
2301
|
+
onSetResponseData?: (...args: any[]) => any;
|
|
2292
2302
|
onReloadTableData?: (...args: any[]) => any;
|
|
2293
2303
|
}>, {}, {}, {}, {}, {
|
|
2294
2304
|
title: string;
|
|
@@ -2300,6 +2310,7 @@ declare const _default: (( SFCWithInstall<DefineComponent<InputProps, {
|
|
|
2300
2310
|
data: object;
|
|
2301
2311
|
}>;
|
|
2302
2312
|
isShowDialog: boolean;
|
|
2313
|
+
isShowResponseDataMessage: boolean;
|
|
2303
2314
|
importId: string;
|
|
2304
2315
|
ProcessRequestData: any;
|
|
2305
2316
|
AutoCompleteResult: boolean;
|
|
@@ -2311,6 +2322,11 @@ declare const _default: (( SFCWithInstall<DefineComponent<InputProps, {
|
|
|
2311
2322
|
data: object;
|
|
2312
2323
|
}>;
|
|
2313
2324
|
uploadDisabled: boolean;
|
|
2325
|
+
filePath: string;
|
|
2326
|
+
processFiles: (url: string, data: IAnyObj, conf: IAnyObj) => Promise<{
|
|
2327
|
+
msg: string;
|
|
2328
|
+
data: object;
|
|
2329
|
+
}>;
|
|
2314
2330
|
}>;
|
|
2315
2331
|
__isFragment?: never;
|
|
2316
2332
|
__isTeleport?: never;
|
|
@@ -2318,10 +2334,12 @@ declare const _default: (( SFCWithInstall<DefineComponent<InputProps, {
|
|
|
2318
2334
|
} & ComponentOptionsBase<Readonly< CommonImportProps> & Readonly<{
|
|
2319
2335
|
onSubmit?: (...args: any[]) => any;
|
|
2320
2336
|
onSetIsShowDialog?: (...args: any[]) => any;
|
|
2337
|
+
onSetResponseData?: (...args: any[]) => any;
|
|
2321
2338
|
onReloadTableData?: (...args: any[]) => any;
|
|
2322
2339
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2323
2340
|
submit: (...args: any[]) => void;
|
|
2324
2341
|
setIsShowDialog: (...args: any[]) => void;
|
|
2342
|
+
setResponseData: (...args: any[]) => void;
|
|
2325
2343
|
reloadTableData: (...args: any[]) => void;
|
|
2326
2344
|
}, string, {
|
|
2327
2345
|
title: string;
|
|
@@ -2333,6 +2351,7 @@ declare const _default: (( SFCWithInstall<DefineComponent<InputProps, {
|
|
|
2333
2351
|
data: object;
|
|
2334
2352
|
}>;
|
|
2335
2353
|
isShowDialog: boolean;
|
|
2354
|
+
isShowResponseDataMessage: boolean;
|
|
2336
2355
|
importId: string;
|
|
2337
2356
|
ProcessRequestData: any;
|
|
2338
2357
|
AutoCompleteResult: boolean;
|
|
@@ -2344,9 +2363,15 @@ declare const _default: (( SFCWithInstall<DefineComponent<InputProps, {
|
|
|
2344
2363
|
data: object;
|
|
2345
2364
|
}>;
|
|
2346
2365
|
uploadDisabled: boolean;
|
|
2366
|
+
filePath: string;
|
|
2367
|
+
processFiles: (url: string, data: IAnyObj, conf: IAnyObj) => Promise<{
|
|
2368
|
+
msg: string;
|
|
2369
|
+
data: object;
|
|
2370
|
+
}>;
|
|
2347
2371
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
2348
2372
|
$slots: {
|
|
2349
2373
|
form?(_: {}): any;
|
|
2374
|
+
resultMessage?(_: {}): any;
|
|
2350
2375
|
};
|
|
2351
2376
|
})> & Record<string, any>) | ( SFCWithInstall<{
|
|
2352
2377
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
|