bt-core-app 2.0.149 → 2.0.151
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 +5316 -5242
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ import { default as BTFormBuilder } from './components/BT-Form-Builder.vue';
|
|
|
15
15
|
import { default as BTFormField } from './components/BT-Form-Field.vue';
|
|
16
16
|
import { default as BTSelectSimple } from './components/BT-Select-Simple.vue';
|
|
17
17
|
import { default as BTSquareCheck } from './components/BT-Square-Check.vue';
|
|
18
|
+
import { default as BTTour } from './components/BT-Tour.vue';
|
|
18
19
|
import { CloseBladeOptions as CloseBladeOptions_2 } from '../composables/blade.ts';
|
|
19
20
|
import { ComponentPublicInstance } from 'vue';
|
|
20
21
|
import { ComputedRef } from 'vue';
|
|
@@ -486,6 +487,8 @@ export declare interface BTStoreDefinition extends StoreDefinition<any, {}, {},
|
|
|
486
487
|
}> {
|
|
487
488
|
}
|
|
488
489
|
|
|
490
|
+
export { BTTour }
|
|
491
|
+
|
|
489
492
|
export declare interface BTUseDialog {
|
|
490
493
|
options: BTUseDialogOption[];
|
|
491
494
|
}
|
package/package.json
CHANGED