star-horse-lowcode 2.7.67 → 2.7.69
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/README.md +1 -0
- package/dist/assets/index.css +1 -1
- package/dist/index.es.js +972 -719
- package/dist/types/index.d.ts +40 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -2255,16 +2255,50 @@ export declare interface CustomerItem {
|
|
|
2255
2255
|
}
|
|
2256
2256
|
|
|
2257
2257
|
declare interface DataDropdownProps {
|
|
2258
|
+
/**
|
|
2259
|
+
* 模型值
|
|
2260
|
+
*/
|
|
2258
2261
|
modelValue: ModelValueType;
|
|
2262
|
+
/**
|
|
2263
|
+
* 接口地址
|
|
2264
|
+
*/
|
|
2259
2265
|
dataUrl?: string;
|
|
2266
|
+
/**
|
|
2267
|
+
* 页码
|
|
2268
|
+
*/
|
|
2260
2269
|
pageSize?: number;
|
|
2270
|
+
/**
|
|
2271
|
+
* 数据
|
|
2272
|
+
*/
|
|
2261
2273
|
datas?: Array<any>;
|
|
2274
|
+
/**
|
|
2275
|
+
* 标题
|
|
2276
|
+
*/
|
|
2262
2277
|
title?: string;
|
|
2278
|
+
/**
|
|
2279
|
+
* 组件大小
|
|
2280
|
+
*/
|
|
2263
2281
|
compSize?: string;
|
|
2282
|
+
/**
|
|
2283
|
+
* 显示名称
|
|
2284
|
+
*/
|
|
2264
2285
|
displayName?: string;
|
|
2286
|
+
/**
|
|
2287
|
+
* 显示值
|
|
2288
|
+
*/
|
|
2265
2289
|
displayValue?: string;
|
|
2290
|
+
/**
|
|
2291
|
+
* 是否多选
|
|
2292
|
+
*/
|
|
2266
2293
|
multiple?: boolean;
|
|
2294
|
+
/**
|
|
2295
|
+
* 是否严格选择
|
|
2296
|
+
*/
|
|
2267
2297
|
checkStrictly?: boolean;
|
|
2298
|
+
/**
|
|
2299
|
+
* 是否只选叶子节点
|
|
2300
|
+
*/
|
|
2301
|
+
selectLeaf?: boolean;
|
|
2268
2302
|
}
|
|
2269
2303
|
|
|
2270
2304
|
declare interface DataSelectorProps {
|
|
@@ -2281,6 +2315,7 @@ declare interface DataSelectorProps {
|
|
|
2281
2315
|
multiple?: boolean;
|
|
2282
2316
|
disabled?: boolean;
|
|
2283
2317
|
checkStrictly?: boolean;
|
|
2318
|
+
selectLeaf?: boolean;
|
|
2284
2319
|
style?: CSSProperties;
|
|
2285
2320
|
}
|
|
2286
2321
|
|
|
@@ -5369,9 +5404,11 @@ viewFlag: boolean;
|
|
|
5369
5404
|
export declare const StarHorseDataSelector: DefineComponent<DataSelectorProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
5370
5405
|
"update:modelValue": (modelValue: any) => any;
|
|
5371
5406
|
selectedData: (selectData: any) => any;
|
|
5407
|
+
"update:selectedData": (selectData: any) => any;
|
|
5372
5408
|
}, string, PublicProps, Readonly<DataSelectorProps> & Readonly<{
|
|
5373
5409
|
"onUpdate:modelValue"?: (modelValue: any) => any;
|
|
5374
5410
|
onSelectedData?: (selectData: any) => any;
|
|
5411
|
+
"onUpdate:selectedData"?: (selectData: any) => any;
|
|
5375
5412
|
}>, {
|
|
5376
5413
|
placeholder: string;
|
|
5377
5414
|
displayName: string;
|
|
@@ -5381,6 +5418,7 @@ displayValue: string;
|
|
|
5381
5418
|
pageSize: number;
|
|
5382
5419
|
multiple: boolean;
|
|
5383
5420
|
checkStrictly: boolean;
|
|
5421
|
+
selectLeaf: boolean;
|
|
5384
5422
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
5385
5423
|
dataPickerRef: CreateComponentPublicInstanceWithMixins<Readonly<DataDropdownProps> & Readonly<{
|
|
5386
5424
|
"onUpdate:modelValue"?: (modelValue: any) => any;
|
|
@@ -5395,6 +5433,7 @@ displayValue: string;
|
|
|
5395
5433
|
pageSize: number;
|
|
5396
5434
|
multiple: boolean;
|
|
5397
5435
|
checkStrictly: boolean;
|
|
5436
|
+
selectLeaf: boolean;
|
|
5398
5437
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
5399
5438
|
orgTreeRef: unknown;
|
|
5400
5439
|
}, any, ComponentProvideOptions, {
|
|
@@ -5415,6 +5454,7 @@ displayValue: string;
|
|
|
5415
5454
|
pageSize: number;
|
|
5416
5455
|
multiple: boolean;
|
|
5417
5456
|
checkStrictly: boolean;
|
|
5457
|
+
selectLeaf: boolean;
|
|
5418
5458
|
}>;
|
|
5419
5459
|
}, any>;
|
|
5420
5460
|
|