bt-core-app 2.0.14 → 2.0.16
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 +1759 -1669
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ import { default as BTDialogSelect } from './components/BT-Dialog-Select.vue';
|
|
|
10
10
|
import { default as BTForm } from './components/BT-Form.vue';
|
|
11
11
|
import { default as BTFormBuilder } from './components/BT-Form-Builder.vue';
|
|
12
12
|
import { default as BTFormField } from './components/BT-Form-Field.vue';
|
|
13
|
+
import { default as BTSquareCheck } from './components/BT-Square-Check.vue';
|
|
13
14
|
import { CloseBladeOptions as CloseBladeOptions_2 } from '../composables/blade.ts';
|
|
14
15
|
import { ComponentPublicInstance } from 'vue';
|
|
15
16
|
import { ComputedRef } from 'vue';
|
|
@@ -411,6 +412,8 @@ export declare interface BTPWA {
|
|
|
411
412
|
updateApp: () => void;
|
|
412
413
|
}
|
|
413
414
|
|
|
415
|
+
export { BTSquareCheck }
|
|
416
|
+
|
|
414
417
|
export declare interface BTSteps<T> {
|
|
415
418
|
canFinish: ComputedRef<boolean>;
|
|
416
419
|
canMoveBack: ComputedRef<boolean>;
|
package/package.json
CHANGED