bt-core-app 1.4.728 → 1.4.729
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 +1 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -43909,6 +43909,7 @@ const FV = De({
|
|
|
43909
43909
|
export {
|
|
43910
43910
|
r4 as BTAssistantMenu,
|
|
43911
43911
|
i4 as BTBladeSteps,
|
|
43912
|
+
ac as BTColorPickerMenu,
|
|
43912
43913
|
Ca as BTDateFormat,
|
|
43913
43914
|
c4 as BTDemoProfileSelect,
|
|
43914
43915
|
u4 as BTDialogDate,
|
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { App } from 'vue';
|
|
|
2
2
|
import { BladeData as BladeData_2 } from '../composables/blade.ts';
|
|
3
3
|
import { default as BTAssistantMenu } from './components/BT-Assistant-Menu.vue';
|
|
4
4
|
import { default as BTBladeSteps } from './components/BT-Blade-Steps.vue';
|
|
5
|
+
import { default as BTColorPickerMenu } from './components/BT-Color-Picker-Menu.vue';
|
|
5
6
|
import { default as BTDemoProfileSelect } from './components/BT-Demo-Profile-Select.vue';
|
|
6
7
|
import { default as BTDialogDate } from './components/BT-Dialog-Date.vue';
|
|
7
8
|
import { default as BTDialogNumber } from './components/BT-Dialog-Number.vue';
|
|
@@ -218,6 +219,8 @@ export declare interface BTBlobStoreDefinition extends StoreDefinition<any, {},
|
|
|
218
219
|
}> {
|
|
219
220
|
}
|
|
220
221
|
|
|
222
|
+
export { BTColorPickerMenu }
|
|
223
|
+
|
|
221
224
|
export declare interface BTCosmetics {
|
|
222
225
|
state: Ref<CosmeticData>;
|
|
223
226
|
currentSet: ComputedRef<BaseCosmeticTheme>;
|
package/package.json
CHANGED