bt-core-app 1.4.400 → 1.4.402
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/bt-core-app.js +3 -2
- package/dist/index.d.ts +3 -2
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -40306,6 +40306,7 @@ const PV = /* @__PURE__ */ Je({
|
|
|
40306
40306
|
}), (m, v) => {
|
|
40307
40307
|
const g = ia("bt-header-option");
|
|
40308
40308
|
return $(), ne(vs, {
|
|
40309
|
+
"max-width": n.value.maxWidth,
|
|
40309
40310
|
modelValue: t.value,
|
|
40310
40311
|
"onUpdate:modelValue": v[3] || (v[3] = (u) => t.value = u)
|
|
40311
40312
|
}, {
|
|
@@ -40369,7 +40370,7 @@ const PV = /* @__PURE__ */ Je({
|
|
|
40369
40370
|
}, 8, ["subtitle", "text", "title"])
|
|
40370
40371
|
]),
|
|
40371
40372
|
_: 1
|
|
40372
|
-
}, 8, ["modelValue"]);
|
|
40373
|
+
}, 8, ["max-width", "modelValue"]);
|
|
40373
40374
|
};
|
|
40374
40375
|
}
|
|
40375
40376
|
});
|
|
@@ -40463,7 +40464,7 @@ export {
|
|
|
40463
40464
|
Ls as useDates,
|
|
40464
40465
|
wg as useDbName,
|
|
40465
40466
|
bV as useDemo,
|
|
40466
|
-
wV as
|
|
40467
|
+
wV as useDialogSelect,
|
|
40467
40468
|
_V as useDocumentMeta,
|
|
40468
40469
|
hx as useDraggable,
|
|
40469
40470
|
pi as useFilters,
|
package/dist/index.d.ts
CHANGED
|
@@ -1459,8 +1459,6 @@ export declare function useDbName(): string;
|
|
|
1459
1459
|
|
|
1460
1460
|
export declare function useDemo(): BTDemo;
|
|
1461
1461
|
|
|
1462
|
-
export declare function useDialogItems<T>(options: UseDialogItemsOptions): Promise<DialogReturn<T>>;
|
|
1463
|
-
|
|
1464
1462
|
export declare interface UseDialogItemsOptions extends ListProps<any, any, any> {
|
|
1465
1463
|
/**whether to show raw object/string in line items */
|
|
1466
1464
|
isRaw?: boolean;
|
|
@@ -1478,6 +1476,7 @@ export declare interface UseDialogItemsOptions extends ListProps<any, any, any>
|
|
|
1478
1476
|
itemTitleTruncate?: boolean;
|
|
1479
1477
|
itemValue?: string;
|
|
1480
1478
|
lines?: 'one' | 'two' | 'three';
|
|
1479
|
+
maxWidth?: string;
|
|
1481
1480
|
/**defaults to single */
|
|
1482
1481
|
selectMode?: 'single' | 'multi';
|
|
1483
1482
|
selected?: any[];
|
|
@@ -1486,6 +1485,8 @@ export declare interface UseDialogItemsOptions extends ListProps<any, any, any>
|
|
|
1486
1485
|
title?: string;
|
|
1487
1486
|
}
|
|
1488
1487
|
|
|
1488
|
+
export declare function useDialogSelect<T>(options: UseDialogItemsOptions): Promise<DialogReturn<T>>;
|
|
1489
|
+
|
|
1489
1490
|
/**routes with meta object */
|
|
1490
1491
|
export declare function useDocumentMeta(options?: UseDocumentMetaOptions): BTDocumentMeta;
|
|
1491
1492
|
|
package/package.json
CHANGED