@ailife-dev-vue/uiplus-dev 0.1.26 → 0.1.28
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 +325 -0
- package/dist/index.mjs +12939 -12913
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1063,6 +1063,8 @@ export declare type GeneralCombinedDeliveryDisplayItem = {
|
|
|
1063
1063
|
enumVal: string;
|
|
1064
1064
|
label: string;
|
|
1065
1065
|
isPlaceholder?: boolean;
|
|
1066
|
+
/** enableRule 白名单外:保留展示但不可点(optionReadonly) */
|
|
1067
|
+
enableReadonly?: boolean;
|
|
1066
1068
|
};
|
|
1067
1069
|
|
|
1068
1070
|
export declare type GeneralCombinedDeliveryModeOptionConfig = {
|
|
@@ -1905,6 +1907,74 @@ export declare type PageBarNewEmits = {
|
|
|
1905
1907
|
export declare type PageBarNewProps = ExtractPropTypes<typeof pageBarNewProps>;
|
|
1906
1908
|
|
|
1907
1909
|
declare const pageBarNewProps: {
|
|
1910
|
+
subscribesLeftTop: {
|
|
1911
|
+
type: PropType<ProductSubscribe[]>;
|
|
1912
|
+
default: () => never[];
|
|
1913
|
+
};
|
|
1914
|
+
showLeftBottom: {
|
|
1915
|
+
type: BooleanConstructor;
|
|
1916
|
+
default: boolean;
|
|
1917
|
+
};
|
|
1918
|
+
subscribesLeftBottom: {
|
|
1919
|
+
type: PropType<ProductSubscribe[]>;
|
|
1920
|
+
default: () => never[];
|
|
1921
|
+
};
|
|
1922
|
+
subscribesRightBottom: {
|
|
1923
|
+
type: PropType<ProductSubscribe[]>;
|
|
1924
|
+
default: () => never[];
|
|
1925
|
+
};
|
|
1926
|
+
centerImageUrl: {
|
|
1927
|
+
type: StringConstructor;
|
|
1928
|
+
default: string;
|
|
1929
|
+
};
|
|
1930
|
+
logo: {
|
|
1931
|
+
type: StringConstructor;
|
|
1932
|
+
default: string;
|
|
1933
|
+
};
|
|
1934
|
+
showBottomWhenOff: {
|
|
1935
|
+
type: BooleanConstructor;
|
|
1936
|
+
default: boolean;
|
|
1937
|
+
};
|
|
1938
|
+
middleAsTimeFormat: {
|
|
1939
|
+
type: BooleanConstructor;
|
|
1940
|
+
default: boolean;
|
|
1941
|
+
};
|
|
1942
|
+
middleTimeUnit: {
|
|
1943
|
+
type: PropType<CommonBannerNewMiddleTimeUnit>;
|
|
1944
|
+
default: string;
|
|
1945
|
+
};
|
|
1946
|
+
enableOpenDialog: {
|
|
1947
|
+
type: BooleanConstructor;
|
|
1948
|
+
default: boolean;
|
|
1949
|
+
};
|
|
1950
|
+
openDialogShowTitle: {
|
|
1951
|
+
type: BooleanConstructor;
|
|
1952
|
+
default: boolean;
|
|
1953
|
+
};
|
|
1954
|
+
openDialogTitle: {
|
|
1955
|
+
type: StringConstructor;
|
|
1956
|
+
default: string;
|
|
1957
|
+
};
|
|
1958
|
+
openDialogContent: {
|
|
1959
|
+
type: StringConstructor;
|
|
1960
|
+
default: string;
|
|
1961
|
+
};
|
|
1962
|
+
enableCloseDialog: {
|
|
1963
|
+
type: BooleanConstructor;
|
|
1964
|
+
default: boolean;
|
|
1965
|
+
};
|
|
1966
|
+
closeDialogShowTitle: {
|
|
1967
|
+
type: BooleanConstructor;
|
|
1968
|
+
default: boolean;
|
|
1969
|
+
};
|
|
1970
|
+
closeDialogTitle: {
|
|
1971
|
+
type: StringConstructor;
|
|
1972
|
+
default: string;
|
|
1973
|
+
};
|
|
1974
|
+
closeDialogContent: {
|
|
1975
|
+
type: StringConstructor;
|
|
1976
|
+
default: string;
|
|
1977
|
+
};
|
|
1908
1978
|
showProductWikiCard: {
|
|
1909
1979
|
type: BooleanConstructor;
|
|
1910
1980
|
default: boolean;
|
|
@@ -6153,6 +6223,74 @@ integerOnly: boolean;
|
|
|
6153
6223
|
|
|
6154
6224
|
export declare const UpPageBarNew: {
|
|
6155
6225
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
6226
|
+
subscribesLeftTop: {
|
|
6227
|
+
type: PropType<ProductSubscribe[]>;
|
|
6228
|
+
default: () => never[];
|
|
6229
|
+
};
|
|
6230
|
+
showLeftBottom: {
|
|
6231
|
+
type: BooleanConstructor;
|
|
6232
|
+
default: boolean;
|
|
6233
|
+
};
|
|
6234
|
+
subscribesLeftBottom: {
|
|
6235
|
+
type: PropType<ProductSubscribe[]>;
|
|
6236
|
+
default: () => never[];
|
|
6237
|
+
};
|
|
6238
|
+
subscribesRightBottom: {
|
|
6239
|
+
type: PropType<ProductSubscribe[]>;
|
|
6240
|
+
default: () => never[];
|
|
6241
|
+
};
|
|
6242
|
+
centerImageUrl: {
|
|
6243
|
+
type: StringConstructor;
|
|
6244
|
+
default: string;
|
|
6245
|
+
};
|
|
6246
|
+
logo: {
|
|
6247
|
+
type: StringConstructor;
|
|
6248
|
+
default: string;
|
|
6249
|
+
};
|
|
6250
|
+
showBottomWhenOff: {
|
|
6251
|
+
type: BooleanConstructor;
|
|
6252
|
+
default: boolean;
|
|
6253
|
+
};
|
|
6254
|
+
middleAsTimeFormat: {
|
|
6255
|
+
type: BooleanConstructor;
|
|
6256
|
+
default: boolean;
|
|
6257
|
+
};
|
|
6258
|
+
middleTimeUnit: {
|
|
6259
|
+
type: PropType<CommonBannerNewMiddleTimeUnit>;
|
|
6260
|
+
default: string;
|
|
6261
|
+
};
|
|
6262
|
+
enableOpenDialog: {
|
|
6263
|
+
type: BooleanConstructor;
|
|
6264
|
+
default: boolean;
|
|
6265
|
+
};
|
|
6266
|
+
openDialogShowTitle: {
|
|
6267
|
+
type: BooleanConstructor;
|
|
6268
|
+
default: boolean;
|
|
6269
|
+
};
|
|
6270
|
+
openDialogTitle: {
|
|
6271
|
+
type: StringConstructor;
|
|
6272
|
+
default: string;
|
|
6273
|
+
};
|
|
6274
|
+
openDialogContent: {
|
|
6275
|
+
type: StringConstructor;
|
|
6276
|
+
default: string;
|
|
6277
|
+
};
|
|
6278
|
+
enableCloseDialog: {
|
|
6279
|
+
type: BooleanConstructor;
|
|
6280
|
+
default: boolean;
|
|
6281
|
+
};
|
|
6282
|
+
closeDialogShowTitle: {
|
|
6283
|
+
type: BooleanConstructor;
|
|
6284
|
+
default: boolean;
|
|
6285
|
+
};
|
|
6286
|
+
closeDialogTitle: {
|
|
6287
|
+
type: StringConstructor;
|
|
6288
|
+
default: string;
|
|
6289
|
+
};
|
|
6290
|
+
closeDialogContent: {
|
|
6291
|
+
type: StringConstructor;
|
|
6292
|
+
default: string;
|
|
6293
|
+
};
|
|
6156
6294
|
showProductWikiCard: {
|
|
6157
6295
|
type: BooleanConstructor;
|
|
6158
6296
|
default: boolean;
|
|
@@ -6170,6 +6308,23 @@ export declare const UpPageBarNew: {
|
|
|
6170
6308
|
"second-card-click": () => any;
|
|
6171
6309
|
"third-card-click": () => any;
|
|
6172
6310
|
}, PublicProps, {
|
|
6311
|
+
enableOpenDialog: boolean;
|
|
6312
|
+
openDialogShowTitle: boolean;
|
|
6313
|
+
openDialogTitle: string;
|
|
6314
|
+
openDialogContent: string;
|
|
6315
|
+
enableCloseDialog: boolean;
|
|
6316
|
+
closeDialogShowTitle: boolean;
|
|
6317
|
+
closeDialogTitle: string;
|
|
6318
|
+
closeDialogContent: string;
|
|
6319
|
+
middleAsTimeFormat: boolean;
|
|
6320
|
+
middleTimeUnit: DurationTimeUnit;
|
|
6321
|
+
subscribesLeftTop: ProductSubscribe[];
|
|
6322
|
+
showLeftBottom: boolean;
|
|
6323
|
+
subscribesLeftBottom: ProductSubscribe[];
|
|
6324
|
+
subscribesRightBottom: ProductSubscribe[];
|
|
6325
|
+
centerImageUrl: string;
|
|
6326
|
+
logo: string;
|
|
6327
|
+
showBottomWhenOff: boolean;
|
|
6173
6328
|
showProductWikiCard: boolean;
|
|
6174
6329
|
hotline: string;
|
|
6175
6330
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
@@ -6182,6 +6337,74 @@ export declare const UpPageBarNew: {
|
|
|
6182
6337
|
M: {};
|
|
6183
6338
|
Defaults: {};
|
|
6184
6339
|
}, Readonly<ExtractPropTypes< {
|
|
6340
|
+
subscribesLeftTop: {
|
|
6341
|
+
type: PropType<ProductSubscribe[]>;
|
|
6342
|
+
default: () => never[];
|
|
6343
|
+
};
|
|
6344
|
+
showLeftBottom: {
|
|
6345
|
+
type: BooleanConstructor;
|
|
6346
|
+
default: boolean;
|
|
6347
|
+
};
|
|
6348
|
+
subscribesLeftBottom: {
|
|
6349
|
+
type: PropType<ProductSubscribe[]>;
|
|
6350
|
+
default: () => never[];
|
|
6351
|
+
};
|
|
6352
|
+
subscribesRightBottom: {
|
|
6353
|
+
type: PropType<ProductSubscribe[]>;
|
|
6354
|
+
default: () => never[];
|
|
6355
|
+
};
|
|
6356
|
+
centerImageUrl: {
|
|
6357
|
+
type: StringConstructor;
|
|
6358
|
+
default: string;
|
|
6359
|
+
};
|
|
6360
|
+
logo: {
|
|
6361
|
+
type: StringConstructor;
|
|
6362
|
+
default: string;
|
|
6363
|
+
};
|
|
6364
|
+
showBottomWhenOff: {
|
|
6365
|
+
type: BooleanConstructor;
|
|
6366
|
+
default: boolean;
|
|
6367
|
+
};
|
|
6368
|
+
middleAsTimeFormat: {
|
|
6369
|
+
type: BooleanConstructor;
|
|
6370
|
+
default: boolean;
|
|
6371
|
+
};
|
|
6372
|
+
middleTimeUnit: {
|
|
6373
|
+
type: PropType<CommonBannerNewMiddleTimeUnit>;
|
|
6374
|
+
default: string;
|
|
6375
|
+
};
|
|
6376
|
+
enableOpenDialog: {
|
|
6377
|
+
type: BooleanConstructor;
|
|
6378
|
+
default: boolean;
|
|
6379
|
+
};
|
|
6380
|
+
openDialogShowTitle: {
|
|
6381
|
+
type: BooleanConstructor;
|
|
6382
|
+
default: boolean;
|
|
6383
|
+
};
|
|
6384
|
+
openDialogTitle: {
|
|
6385
|
+
type: StringConstructor;
|
|
6386
|
+
default: string;
|
|
6387
|
+
};
|
|
6388
|
+
openDialogContent: {
|
|
6389
|
+
type: StringConstructor;
|
|
6390
|
+
default: string;
|
|
6391
|
+
};
|
|
6392
|
+
enableCloseDialog: {
|
|
6393
|
+
type: BooleanConstructor;
|
|
6394
|
+
default: boolean;
|
|
6395
|
+
};
|
|
6396
|
+
closeDialogShowTitle: {
|
|
6397
|
+
type: BooleanConstructor;
|
|
6398
|
+
default: boolean;
|
|
6399
|
+
};
|
|
6400
|
+
closeDialogTitle: {
|
|
6401
|
+
type: StringConstructor;
|
|
6402
|
+
default: string;
|
|
6403
|
+
};
|
|
6404
|
+
closeDialogContent: {
|
|
6405
|
+
type: StringConstructor;
|
|
6406
|
+
default: string;
|
|
6407
|
+
};
|
|
6185
6408
|
showProductWikiCard: {
|
|
6186
6409
|
type: BooleanConstructor;
|
|
6187
6410
|
default: boolean;
|
|
@@ -6195,6 +6418,23 @@ export declare const UpPageBarNew: {
|
|
|
6195
6418
|
"onSecond-card-click"?: (() => any) | undefined;
|
|
6196
6419
|
"onThird-card-click"?: (() => any) | undefined;
|
|
6197
6420
|
}>, {}, {}, {}, {}, {
|
|
6421
|
+
enableOpenDialog: boolean;
|
|
6422
|
+
openDialogShowTitle: boolean;
|
|
6423
|
+
openDialogTitle: string;
|
|
6424
|
+
openDialogContent: string;
|
|
6425
|
+
enableCloseDialog: boolean;
|
|
6426
|
+
closeDialogShowTitle: boolean;
|
|
6427
|
+
closeDialogTitle: string;
|
|
6428
|
+
closeDialogContent: string;
|
|
6429
|
+
middleAsTimeFormat: boolean;
|
|
6430
|
+
middleTimeUnit: DurationTimeUnit;
|
|
6431
|
+
subscribesLeftTop: ProductSubscribe[];
|
|
6432
|
+
showLeftBottom: boolean;
|
|
6433
|
+
subscribesLeftBottom: ProductSubscribe[];
|
|
6434
|
+
subscribesRightBottom: ProductSubscribe[];
|
|
6435
|
+
centerImageUrl: string;
|
|
6436
|
+
logo: string;
|
|
6437
|
+
showBottomWhenOff: boolean;
|
|
6198
6438
|
showProductWikiCard: boolean;
|
|
6199
6439
|
hotline: string;
|
|
6200
6440
|
}>;
|
|
@@ -6202,6 +6442,74 @@ export declare const UpPageBarNew: {
|
|
|
6202
6442
|
__isTeleport?: never;
|
|
6203
6443
|
__isSuspense?: never;
|
|
6204
6444
|
} & ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
6445
|
+
subscribesLeftTop: {
|
|
6446
|
+
type: PropType<ProductSubscribe[]>;
|
|
6447
|
+
default: () => never[];
|
|
6448
|
+
};
|
|
6449
|
+
showLeftBottom: {
|
|
6450
|
+
type: BooleanConstructor;
|
|
6451
|
+
default: boolean;
|
|
6452
|
+
};
|
|
6453
|
+
subscribesLeftBottom: {
|
|
6454
|
+
type: PropType<ProductSubscribe[]>;
|
|
6455
|
+
default: () => never[];
|
|
6456
|
+
};
|
|
6457
|
+
subscribesRightBottom: {
|
|
6458
|
+
type: PropType<ProductSubscribe[]>;
|
|
6459
|
+
default: () => never[];
|
|
6460
|
+
};
|
|
6461
|
+
centerImageUrl: {
|
|
6462
|
+
type: StringConstructor;
|
|
6463
|
+
default: string;
|
|
6464
|
+
};
|
|
6465
|
+
logo: {
|
|
6466
|
+
type: StringConstructor;
|
|
6467
|
+
default: string;
|
|
6468
|
+
};
|
|
6469
|
+
showBottomWhenOff: {
|
|
6470
|
+
type: BooleanConstructor;
|
|
6471
|
+
default: boolean;
|
|
6472
|
+
};
|
|
6473
|
+
middleAsTimeFormat: {
|
|
6474
|
+
type: BooleanConstructor;
|
|
6475
|
+
default: boolean;
|
|
6476
|
+
};
|
|
6477
|
+
middleTimeUnit: {
|
|
6478
|
+
type: PropType<CommonBannerNewMiddleTimeUnit>;
|
|
6479
|
+
default: string;
|
|
6480
|
+
};
|
|
6481
|
+
enableOpenDialog: {
|
|
6482
|
+
type: BooleanConstructor;
|
|
6483
|
+
default: boolean;
|
|
6484
|
+
};
|
|
6485
|
+
openDialogShowTitle: {
|
|
6486
|
+
type: BooleanConstructor;
|
|
6487
|
+
default: boolean;
|
|
6488
|
+
};
|
|
6489
|
+
openDialogTitle: {
|
|
6490
|
+
type: StringConstructor;
|
|
6491
|
+
default: string;
|
|
6492
|
+
};
|
|
6493
|
+
openDialogContent: {
|
|
6494
|
+
type: StringConstructor;
|
|
6495
|
+
default: string;
|
|
6496
|
+
};
|
|
6497
|
+
enableCloseDialog: {
|
|
6498
|
+
type: BooleanConstructor;
|
|
6499
|
+
default: boolean;
|
|
6500
|
+
};
|
|
6501
|
+
closeDialogShowTitle: {
|
|
6502
|
+
type: BooleanConstructor;
|
|
6503
|
+
default: boolean;
|
|
6504
|
+
};
|
|
6505
|
+
closeDialogTitle: {
|
|
6506
|
+
type: StringConstructor;
|
|
6507
|
+
default: string;
|
|
6508
|
+
};
|
|
6509
|
+
closeDialogContent: {
|
|
6510
|
+
type: StringConstructor;
|
|
6511
|
+
default: string;
|
|
6512
|
+
};
|
|
6205
6513
|
showProductWikiCard: {
|
|
6206
6514
|
type: BooleanConstructor;
|
|
6207
6515
|
default: boolean;
|
|
@@ -6219,6 +6527,23 @@ default: string;
|
|
|
6219
6527
|
"second-card-click": () => any;
|
|
6220
6528
|
"third-card-click": () => any;
|
|
6221
6529
|
}, string, {
|
|
6530
|
+
enableOpenDialog: boolean;
|
|
6531
|
+
openDialogShowTitle: boolean;
|
|
6532
|
+
openDialogTitle: string;
|
|
6533
|
+
openDialogContent: string;
|
|
6534
|
+
enableCloseDialog: boolean;
|
|
6535
|
+
closeDialogShowTitle: boolean;
|
|
6536
|
+
closeDialogTitle: string;
|
|
6537
|
+
closeDialogContent: string;
|
|
6538
|
+
middleAsTimeFormat: boolean;
|
|
6539
|
+
middleTimeUnit: DurationTimeUnit;
|
|
6540
|
+
subscribesLeftTop: ProductSubscribe[];
|
|
6541
|
+
showLeftBottom: boolean;
|
|
6542
|
+
subscribesLeftBottom: ProductSubscribe[];
|
|
6543
|
+
subscribesRightBottom: ProductSubscribe[];
|
|
6544
|
+
centerImageUrl: string;
|
|
6545
|
+
logo: string;
|
|
6546
|
+
showBottomWhenOff: boolean;
|
|
6222
6547
|
showProductWikiCard: boolean;
|
|
6223
6548
|
hotline: string;
|
|
6224
6549
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|