@ailife-dev-vue/uiplus-dev 0.1.27 → 0.1.29
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/dist/index.css +1 -1
- package/dist/index.d.ts +333 -1
- package/dist/index.mjs +21861 -21711
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -259,6 +259,10 @@ export declare interface Characteristic {
|
|
|
259
259
|
max?: string;
|
|
260
260
|
step?: number;
|
|
261
261
|
unit?: string;
|
|
262
|
+
/** 为 1 时按 min/max(及可选 divisor)换算为百分比展示 */
|
|
263
|
+
percent?: number;
|
|
264
|
+
/** 百分比换算时除数;真值才对 min/max 做除法 */
|
|
265
|
+
divisor?: string | number;
|
|
262
266
|
method?: string;
|
|
263
267
|
permission?: string;
|
|
264
268
|
report?: number;
|
|
@@ -1063,6 +1067,8 @@ export declare type GeneralCombinedDeliveryDisplayItem = {
|
|
|
1063
1067
|
enumVal: string;
|
|
1064
1068
|
label: string;
|
|
1065
1069
|
isPlaceholder?: boolean;
|
|
1070
|
+
/** enableRule 白名单外:保留展示但不可点(optionReadonly) */
|
|
1071
|
+
enableReadonly?: boolean;
|
|
1066
1072
|
};
|
|
1067
1073
|
|
|
1068
1074
|
export declare type GeneralCombinedDeliveryModeOptionConfig = {
|
|
@@ -1905,6 +1911,74 @@ export declare type PageBarNewEmits = {
|
|
|
1905
1911
|
export declare type PageBarNewProps = ExtractPropTypes<typeof pageBarNewProps>;
|
|
1906
1912
|
|
|
1907
1913
|
declare const pageBarNewProps: {
|
|
1914
|
+
subscribesLeftTop: {
|
|
1915
|
+
type: PropType<ProductSubscribe[]>;
|
|
1916
|
+
default: () => never[];
|
|
1917
|
+
};
|
|
1918
|
+
showLeftBottom: {
|
|
1919
|
+
type: BooleanConstructor;
|
|
1920
|
+
default: boolean;
|
|
1921
|
+
};
|
|
1922
|
+
subscribesLeftBottom: {
|
|
1923
|
+
type: PropType<ProductSubscribe[]>;
|
|
1924
|
+
default: () => never[];
|
|
1925
|
+
};
|
|
1926
|
+
subscribesRightBottom: {
|
|
1927
|
+
type: PropType<ProductSubscribe[]>;
|
|
1928
|
+
default: () => never[];
|
|
1929
|
+
};
|
|
1930
|
+
centerImageUrl: {
|
|
1931
|
+
type: StringConstructor;
|
|
1932
|
+
default: string;
|
|
1933
|
+
};
|
|
1934
|
+
logo: {
|
|
1935
|
+
type: StringConstructor;
|
|
1936
|
+
default: string;
|
|
1937
|
+
};
|
|
1938
|
+
showBottomWhenOff: {
|
|
1939
|
+
type: BooleanConstructor;
|
|
1940
|
+
default: boolean;
|
|
1941
|
+
};
|
|
1942
|
+
middleAsTimeFormat: {
|
|
1943
|
+
type: BooleanConstructor;
|
|
1944
|
+
default: boolean;
|
|
1945
|
+
};
|
|
1946
|
+
middleTimeUnit: {
|
|
1947
|
+
type: PropType<CommonBannerNewMiddleTimeUnit>;
|
|
1948
|
+
default: string;
|
|
1949
|
+
};
|
|
1950
|
+
enableOpenDialog: {
|
|
1951
|
+
type: BooleanConstructor;
|
|
1952
|
+
default: boolean;
|
|
1953
|
+
};
|
|
1954
|
+
openDialogShowTitle: {
|
|
1955
|
+
type: BooleanConstructor;
|
|
1956
|
+
default: boolean;
|
|
1957
|
+
};
|
|
1958
|
+
openDialogTitle: {
|
|
1959
|
+
type: StringConstructor;
|
|
1960
|
+
default: string;
|
|
1961
|
+
};
|
|
1962
|
+
openDialogContent: {
|
|
1963
|
+
type: StringConstructor;
|
|
1964
|
+
default: string;
|
|
1965
|
+
};
|
|
1966
|
+
enableCloseDialog: {
|
|
1967
|
+
type: BooleanConstructor;
|
|
1968
|
+
default: boolean;
|
|
1969
|
+
};
|
|
1970
|
+
closeDialogShowTitle: {
|
|
1971
|
+
type: BooleanConstructor;
|
|
1972
|
+
default: boolean;
|
|
1973
|
+
};
|
|
1974
|
+
closeDialogTitle: {
|
|
1975
|
+
type: StringConstructor;
|
|
1976
|
+
default: string;
|
|
1977
|
+
};
|
|
1978
|
+
closeDialogContent: {
|
|
1979
|
+
type: StringConstructor;
|
|
1980
|
+
default: string;
|
|
1981
|
+
};
|
|
1908
1982
|
showProductWikiCard: {
|
|
1909
1983
|
type: BooleanConstructor;
|
|
1910
1984
|
default: boolean;
|
|
@@ -3712,7 +3786,10 @@ export declare const UpCommonBannerNew: {
|
|
|
3712
3786
|
centerImageUrl: string;
|
|
3713
3787
|
logo: string;
|
|
3714
3788
|
showBottomWhenOff: boolean;
|
|
3715
|
-
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
3789
|
+
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
3790
|
+
topLeftRef: HTMLDivElement;
|
|
3791
|
+
bottomLeftRef: HTMLDivElement;
|
|
3792
|
+
}, HTMLDivElement, ComponentProvideOptions, {
|
|
3716
3793
|
P: {};
|
|
3717
3794
|
B: {};
|
|
3718
3795
|
D: {};
|
|
@@ -6153,6 +6230,74 @@ integerOnly: boolean;
|
|
|
6153
6230
|
|
|
6154
6231
|
export declare const UpPageBarNew: {
|
|
6155
6232
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
6233
|
+
subscribesLeftTop: {
|
|
6234
|
+
type: PropType<ProductSubscribe[]>;
|
|
6235
|
+
default: () => never[];
|
|
6236
|
+
};
|
|
6237
|
+
showLeftBottom: {
|
|
6238
|
+
type: BooleanConstructor;
|
|
6239
|
+
default: boolean;
|
|
6240
|
+
};
|
|
6241
|
+
subscribesLeftBottom: {
|
|
6242
|
+
type: PropType<ProductSubscribe[]>;
|
|
6243
|
+
default: () => never[];
|
|
6244
|
+
};
|
|
6245
|
+
subscribesRightBottom: {
|
|
6246
|
+
type: PropType<ProductSubscribe[]>;
|
|
6247
|
+
default: () => never[];
|
|
6248
|
+
};
|
|
6249
|
+
centerImageUrl: {
|
|
6250
|
+
type: StringConstructor;
|
|
6251
|
+
default: string;
|
|
6252
|
+
};
|
|
6253
|
+
logo: {
|
|
6254
|
+
type: StringConstructor;
|
|
6255
|
+
default: string;
|
|
6256
|
+
};
|
|
6257
|
+
showBottomWhenOff: {
|
|
6258
|
+
type: BooleanConstructor;
|
|
6259
|
+
default: boolean;
|
|
6260
|
+
};
|
|
6261
|
+
middleAsTimeFormat: {
|
|
6262
|
+
type: BooleanConstructor;
|
|
6263
|
+
default: boolean;
|
|
6264
|
+
};
|
|
6265
|
+
middleTimeUnit: {
|
|
6266
|
+
type: PropType<CommonBannerNewMiddleTimeUnit>;
|
|
6267
|
+
default: string;
|
|
6268
|
+
};
|
|
6269
|
+
enableOpenDialog: {
|
|
6270
|
+
type: BooleanConstructor;
|
|
6271
|
+
default: boolean;
|
|
6272
|
+
};
|
|
6273
|
+
openDialogShowTitle: {
|
|
6274
|
+
type: BooleanConstructor;
|
|
6275
|
+
default: boolean;
|
|
6276
|
+
};
|
|
6277
|
+
openDialogTitle: {
|
|
6278
|
+
type: StringConstructor;
|
|
6279
|
+
default: string;
|
|
6280
|
+
};
|
|
6281
|
+
openDialogContent: {
|
|
6282
|
+
type: StringConstructor;
|
|
6283
|
+
default: string;
|
|
6284
|
+
};
|
|
6285
|
+
enableCloseDialog: {
|
|
6286
|
+
type: BooleanConstructor;
|
|
6287
|
+
default: boolean;
|
|
6288
|
+
};
|
|
6289
|
+
closeDialogShowTitle: {
|
|
6290
|
+
type: BooleanConstructor;
|
|
6291
|
+
default: boolean;
|
|
6292
|
+
};
|
|
6293
|
+
closeDialogTitle: {
|
|
6294
|
+
type: StringConstructor;
|
|
6295
|
+
default: string;
|
|
6296
|
+
};
|
|
6297
|
+
closeDialogContent: {
|
|
6298
|
+
type: StringConstructor;
|
|
6299
|
+
default: string;
|
|
6300
|
+
};
|
|
6156
6301
|
showProductWikiCard: {
|
|
6157
6302
|
type: BooleanConstructor;
|
|
6158
6303
|
default: boolean;
|
|
@@ -6170,6 +6315,23 @@ export declare const UpPageBarNew: {
|
|
|
6170
6315
|
"second-card-click": () => any;
|
|
6171
6316
|
"third-card-click": () => any;
|
|
6172
6317
|
}, PublicProps, {
|
|
6318
|
+
enableOpenDialog: boolean;
|
|
6319
|
+
openDialogShowTitle: boolean;
|
|
6320
|
+
openDialogTitle: string;
|
|
6321
|
+
openDialogContent: string;
|
|
6322
|
+
enableCloseDialog: boolean;
|
|
6323
|
+
closeDialogShowTitle: boolean;
|
|
6324
|
+
closeDialogTitle: string;
|
|
6325
|
+
closeDialogContent: string;
|
|
6326
|
+
middleAsTimeFormat: boolean;
|
|
6327
|
+
middleTimeUnit: DurationTimeUnit;
|
|
6328
|
+
subscribesLeftTop: ProductSubscribe[];
|
|
6329
|
+
showLeftBottom: boolean;
|
|
6330
|
+
subscribesLeftBottom: ProductSubscribe[];
|
|
6331
|
+
subscribesRightBottom: ProductSubscribe[];
|
|
6332
|
+
centerImageUrl: string;
|
|
6333
|
+
logo: string;
|
|
6334
|
+
showBottomWhenOff: boolean;
|
|
6173
6335
|
showProductWikiCard: boolean;
|
|
6174
6336
|
hotline: string;
|
|
6175
6337
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
@@ -6182,6 +6344,74 @@ export declare const UpPageBarNew: {
|
|
|
6182
6344
|
M: {};
|
|
6183
6345
|
Defaults: {};
|
|
6184
6346
|
}, Readonly<ExtractPropTypes< {
|
|
6347
|
+
subscribesLeftTop: {
|
|
6348
|
+
type: PropType<ProductSubscribe[]>;
|
|
6349
|
+
default: () => never[];
|
|
6350
|
+
};
|
|
6351
|
+
showLeftBottom: {
|
|
6352
|
+
type: BooleanConstructor;
|
|
6353
|
+
default: boolean;
|
|
6354
|
+
};
|
|
6355
|
+
subscribesLeftBottom: {
|
|
6356
|
+
type: PropType<ProductSubscribe[]>;
|
|
6357
|
+
default: () => never[];
|
|
6358
|
+
};
|
|
6359
|
+
subscribesRightBottom: {
|
|
6360
|
+
type: PropType<ProductSubscribe[]>;
|
|
6361
|
+
default: () => never[];
|
|
6362
|
+
};
|
|
6363
|
+
centerImageUrl: {
|
|
6364
|
+
type: StringConstructor;
|
|
6365
|
+
default: string;
|
|
6366
|
+
};
|
|
6367
|
+
logo: {
|
|
6368
|
+
type: StringConstructor;
|
|
6369
|
+
default: string;
|
|
6370
|
+
};
|
|
6371
|
+
showBottomWhenOff: {
|
|
6372
|
+
type: BooleanConstructor;
|
|
6373
|
+
default: boolean;
|
|
6374
|
+
};
|
|
6375
|
+
middleAsTimeFormat: {
|
|
6376
|
+
type: BooleanConstructor;
|
|
6377
|
+
default: boolean;
|
|
6378
|
+
};
|
|
6379
|
+
middleTimeUnit: {
|
|
6380
|
+
type: PropType<CommonBannerNewMiddleTimeUnit>;
|
|
6381
|
+
default: string;
|
|
6382
|
+
};
|
|
6383
|
+
enableOpenDialog: {
|
|
6384
|
+
type: BooleanConstructor;
|
|
6385
|
+
default: boolean;
|
|
6386
|
+
};
|
|
6387
|
+
openDialogShowTitle: {
|
|
6388
|
+
type: BooleanConstructor;
|
|
6389
|
+
default: boolean;
|
|
6390
|
+
};
|
|
6391
|
+
openDialogTitle: {
|
|
6392
|
+
type: StringConstructor;
|
|
6393
|
+
default: string;
|
|
6394
|
+
};
|
|
6395
|
+
openDialogContent: {
|
|
6396
|
+
type: StringConstructor;
|
|
6397
|
+
default: string;
|
|
6398
|
+
};
|
|
6399
|
+
enableCloseDialog: {
|
|
6400
|
+
type: BooleanConstructor;
|
|
6401
|
+
default: boolean;
|
|
6402
|
+
};
|
|
6403
|
+
closeDialogShowTitle: {
|
|
6404
|
+
type: BooleanConstructor;
|
|
6405
|
+
default: boolean;
|
|
6406
|
+
};
|
|
6407
|
+
closeDialogTitle: {
|
|
6408
|
+
type: StringConstructor;
|
|
6409
|
+
default: string;
|
|
6410
|
+
};
|
|
6411
|
+
closeDialogContent: {
|
|
6412
|
+
type: StringConstructor;
|
|
6413
|
+
default: string;
|
|
6414
|
+
};
|
|
6185
6415
|
showProductWikiCard: {
|
|
6186
6416
|
type: BooleanConstructor;
|
|
6187
6417
|
default: boolean;
|
|
@@ -6195,6 +6425,23 @@ export declare const UpPageBarNew: {
|
|
|
6195
6425
|
"onSecond-card-click"?: (() => any) | undefined;
|
|
6196
6426
|
"onThird-card-click"?: (() => any) | undefined;
|
|
6197
6427
|
}>, {}, {}, {}, {}, {
|
|
6428
|
+
enableOpenDialog: boolean;
|
|
6429
|
+
openDialogShowTitle: boolean;
|
|
6430
|
+
openDialogTitle: string;
|
|
6431
|
+
openDialogContent: string;
|
|
6432
|
+
enableCloseDialog: boolean;
|
|
6433
|
+
closeDialogShowTitle: boolean;
|
|
6434
|
+
closeDialogTitle: string;
|
|
6435
|
+
closeDialogContent: string;
|
|
6436
|
+
middleAsTimeFormat: boolean;
|
|
6437
|
+
middleTimeUnit: DurationTimeUnit;
|
|
6438
|
+
subscribesLeftTop: ProductSubscribe[];
|
|
6439
|
+
showLeftBottom: boolean;
|
|
6440
|
+
subscribesLeftBottom: ProductSubscribe[];
|
|
6441
|
+
subscribesRightBottom: ProductSubscribe[];
|
|
6442
|
+
centerImageUrl: string;
|
|
6443
|
+
logo: string;
|
|
6444
|
+
showBottomWhenOff: boolean;
|
|
6198
6445
|
showProductWikiCard: boolean;
|
|
6199
6446
|
hotline: string;
|
|
6200
6447
|
}>;
|
|
@@ -6202,6 +6449,74 @@ export declare const UpPageBarNew: {
|
|
|
6202
6449
|
__isTeleport?: never;
|
|
6203
6450
|
__isSuspense?: never;
|
|
6204
6451
|
} & ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
6452
|
+
subscribesLeftTop: {
|
|
6453
|
+
type: PropType<ProductSubscribe[]>;
|
|
6454
|
+
default: () => never[];
|
|
6455
|
+
};
|
|
6456
|
+
showLeftBottom: {
|
|
6457
|
+
type: BooleanConstructor;
|
|
6458
|
+
default: boolean;
|
|
6459
|
+
};
|
|
6460
|
+
subscribesLeftBottom: {
|
|
6461
|
+
type: PropType<ProductSubscribe[]>;
|
|
6462
|
+
default: () => never[];
|
|
6463
|
+
};
|
|
6464
|
+
subscribesRightBottom: {
|
|
6465
|
+
type: PropType<ProductSubscribe[]>;
|
|
6466
|
+
default: () => never[];
|
|
6467
|
+
};
|
|
6468
|
+
centerImageUrl: {
|
|
6469
|
+
type: StringConstructor;
|
|
6470
|
+
default: string;
|
|
6471
|
+
};
|
|
6472
|
+
logo: {
|
|
6473
|
+
type: StringConstructor;
|
|
6474
|
+
default: string;
|
|
6475
|
+
};
|
|
6476
|
+
showBottomWhenOff: {
|
|
6477
|
+
type: BooleanConstructor;
|
|
6478
|
+
default: boolean;
|
|
6479
|
+
};
|
|
6480
|
+
middleAsTimeFormat: {
|
|
6481
|
+
type: BooleanConstructor;
|
|
6482
|
+
default: boolean;
|
|
6483
|
+
};
|
|
6484
|
+
middleTimeUnit: {
|
|
6485
|
+
type: PropType<CommonBannerNewMiddleTimeUnit>;
|
|
6486
|
+
default: string;
|
|
6487
|
+
};
|
|
6488
|
+
enableOpenDialog: {
|
|
6489
|
+
type: BooleanConstructor;
|
|
6490
|
+
default: boolean;
|
|
6491
|
+
};
|
|
6492
|
+
openDialogShowTitle: {
|
|
6493
|
+
type: BooleanConstructor;
|
|
6494
|
+
default: boolean;
|
|
6495
|
+
};
|
|
6496
|
+
openDialogTitle: {
|
|
6497
|
+
type: StringConstructor;
|
|
6498
|
+
default: string;
|
|
6499
|
+
};
|
|
6500
|
+
openDialogContent: {
|
|
6501
|
+
type: StringConstructor;
|
|
6502
|
+
default: string;
|
|
6503
|
+
};
|
|
6504
|
+
enableCloseDialog: {
|
|
6505
|
+
type: BooleanConstructor;
|
|
6506
|
+
default: boolean;
|
|
6507
|
+
};
|
|
6508
|
+
closeDialogShowTitle: {
|
|
6509
|
+
type: BooleanConstructor;
|
|
6510
|
+
default: boolean;
|
|
6511
|
+
};
|
|
6512
|
+
closeDialogTitle: {
|
|
6513
|
+
type: StringConstructor;
|
|
6514
|
+
default: string;
|
|
6515
|
+
};
|
|
6516
|
+
closeDialogContent: {
|
|
6517
|
+
type: StringConstructor;
|
|
6518
|
+
default: string;
|
|
6519
|
+
};
|
|
6205
6520
|
showProductWikiCard: {
|
|
6206
6521
|
type: BooleanConstructor;
|
|
6207
6522
|
default: boolean;
|
|
@@ -6219,6 +6534,23 @@ default: string;
|
|
|
6219
6534
|
"second-card-click": () => any;
|
|
6220
6535
|
"third-card-click": () => any;
|
|
6221
6536
|
}, string, {
|
|
6537
|
+
enableOpenDialog: boolean;
|
|
6538
|
+
openDialogShowTitle: boolean;
|
|
6539
|
+
openDialogTitle: string;
|
|
6540
|
+
openDialogContent: string;
|
|
6541
|
+
enableCloseDialog: boolean;
|
|
6542
|
+
closeDialogShowTitle: boolean;
|
|
6543
|
+
closeDialogTitle: string;
|
|
6544
|
+
closeDialogContent: string;
|
|
6545
|
+
middleAsTimeFormat: boolean;
|
|
6546
|
+
middleTimeUnit: DurationTimeUnit;
|
|
6547
|
+
subscribesLeftTop: ProductSubscribe[];
|
|
6548
|
+
showLeftBottom: boolean;
|
|
6549
|
+
subscribesLeftBottom: ProductSubscribe[];
|
|
6550
|
+
subscribesRightBottom: ProductSubscribe[];
|
|
6551
|
+
centerImageUrl: string;
|
|
6552
|
+
logo: string;
|
|
6553
|
+
showBottomWhenOff: boolean;
|
|
6222
6554
|
showProductWikiCard: boolean;
|
|
6223
6555
|
hotline: string;
|
|
6224
6556
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|