bt-core-app 1.4.486 → 1.4.488
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 +4918 -4793
- package/dist/index.d.ts +20 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { App } from 'vue';
|
|
2
2
|
import { BladeData as BladeData_2 } from '../composables/blade.ts';
|
|
3
|
+
import { default as BTDialogNumber } from './components/BT-Dialog-Number.vue';
|
|
3
4
|
import { default as BTDialogSelect } from './components/BT-Dialog-Select.vue';
|
|
4
5
|
import { CloseBladeOptions as CloseBladeOptions_2 } from '../composables/blade.ts';
|
|
5
6
|
import { ComponentPublicInstance } from 'vue';
|
|
@@ -224,6 +225,8 @@ export declare interface BTDemo {
|
|
|
224
225
|
patch: (pathOptions: PathOptions) => Promise<any>;
|
|
225
226
|
}
|
|
226
227
|
|
|
228
|
+
export { BTDialogNumber }
|
|
229
|
+
|
|
227
230
|
export { BTDialogSelect }
|
|
228
231
|
|
|
229
232
|
export declare interface BTDocumentMeta {
|
|
@@ -1554,6 +1557,23 @@ export declare interface UseDialogItemsOptions extends ListProps<any, any, any>
|
|
|
1554
1557
|
title?: string;
|
|
1555
1558
|
}
|
|
1556
1559
|
|
|
1560
|
+
export declare function useDialogNumber(options: UseDialogNumberOptions): Promise<DialogReturn<number>>;
|
|
1561
|
+
|
|
1562
|
+
export declare interface UseDialogNumberOptions {
|
|
1563
|
+
buttonClass?: string;
|
|
1564
|
+
buttonHeight?: string;
|
|
1565
|
+
cancelText?: string;
|
|
1566
|
+
confirmText?: string;
|
|
1567
|
+
height?: string;
|
|
1568
|
+
maxWidth?: string;
|
|
1569
|
+
showDecimal?: boolean;
|
|
1570
|
+
showNegative?: boolean;
|
|
1571
|
+
startValue?: number;
|
|
1572
|
+
subtitle?: string;
|
|
1573
|
+
text?: string;
|
|
1574
|
+
title?: string;
|
|
1575
|
+
}
|
|
1576
|
+
|
|
1557
1577
|
export declare function useDialogSelect<T>(options: UseDialogItemsOptions): Promise<DialogReturn<T>>;
|
|
1558
1578
|
|
|
1559
1579
|
/**routes with meta object */
|
package/package.json
CHANGED