bt-core-app 2.0.26 → 2.0.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/bt-core-app.js +5654 -5572
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { default as BTAssistantMenu } from './components/BT-Assistant-Menu.vue';
|
|
|
4
4
|
import { default as BTBladeSteps } from './components/BT-Blade-Steps.vue';
|
|
5
5
|
import { default as BTColorPickerMenu } from './components/BT-Color-Picker-Menu.vue';
|
|
6
6
|
import { default as BTDemoProfileSelect } from './components/BT-Demo-Profile-Select.vue';
|
|
7
|
+
import { default as BTDialogConfirm } from './components/BT-Dialog-Confirm.vue';
|
|
7
8
|
import { default as BTDialogDate } from './components/BT-Dialog-Date.vue';
|
|
8
9
|
import { default as BTDialogNumber } from './components/BT-Dialog-Number.vue';
|
|
9
10
|
import { default as BTDialogSelect } from './components/BT-Dialog-Select.vue';
|
|
@@ -341,6 +342,8 @@ export declare interface BTDemo {
|
|
|
341
342
|
|
|
342
343
|
export { BTDemoProfileSelect }
|
|
343
344
|
|
|
345
|
+
export { BTDialogConfirm }
|
|
346
|
+
|
|
344
347
|
export { BTDialogDate }
|
|
345
348
|
|
|
346
349
|
export { BTDialogNumber }
|
|
@@ -1603,6 +1606,7 @@ export declare interface StorePathOptions extends PathOptions {
|
|
|
1603
1606
|
/**will store this request in session as a special memory in the pinia store */
|
|
1604
1607
|
getStorageKey?: (dOptions: GetStorageKeyOptions) => string;
|
|
1605
1608
|
localOnly?: boolean;
|
|
1609
|
+
localPredicate?: (item: any) => boolean;
|
|
1606
1610
|
storeKey?: string;
|
|
1607
1611
|
/**PLU Only */
|
|
1608
1612
|
dateFrom?: string;
|
package/package.json
CHANGED