bt-core-app 1.4.401 → 1.4.403
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 +1 -0
- 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
|
}, {
|
|
@@ -40326,7 +40327,7 @@ const PV = /* @__PURE__ */ Je({
|
|
|
40326
40327
|
}, {
|
|
40327
40328
|
default: N(() => [
|
|
40328
40329
|
($(!0), ie(Me, null, at(D(i).filteredItems.value, (u) => ($(), ne(ft, {
|
|
40329
|
-
key: `${u.id ?? D(l)(u, n.value.itemValue)}
|
|
40330
|
+
key: `${u.id ?? D(l)(u, n.value.itemValue)}-table-list-item`,
|
|
40330
40331
|
value: D(l)(u, n.value.itemValue)
|
|
40331
40332
|
}, {
|
|
40332
40333
|
default: N(() => [
|
|
@@ -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
|
});
|
package/dist/index.d.ts
CHANGED
|
@@ -1476,6 +1476,7 @@ export declare interface UseDialogItemsOptions extends ListProps<any, any, any>
|
|
|
1476
1476
|
itemTitleTruncate?: boolean;
|
|
1477
1477
|
itemValue?: string;
|
|
1478
1478
|
lines?: 'one' | 'two' | 'three';
|
|
1479
|
+
maxWidth?: string;
|
|
1479
1480
|
/**defaults to single */
|
|
1480
1481
|
selectMode?: 'single' | 'multi';
|
|
1481
1482
|
selected?: any[];
|
package/package.json
CHANGED