bt-core-app 2.1.1 → 2.1.2
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 +1919 -1862
- package/dist/index.d.ts +3 -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 BTCronSpan } from './components/BT-Cron-Span.vue';
|
|
7
|
+
import { default as BTDateSelect } from './components/BT-Date-Select.vue';
|
|
7
8
|
import { default as BTDemoProfileSelect } from './components/BT-Demo-Profile-Select.vue';
|
|
8
9
|
import { default as BTDialogConfirm } from './components/BT-Dialog-Confirm.vue';
|
|
9
10
|
import { default as BTDialogDate } from './components/BT-Dialog-Date.vue';
|
|
@@ -357,6 +358,8 @@ export declare interface BTDates {
|
|
|
357
358
|
utcString: (val?: string, format?: string, fromFormat?: string) => string;
|
|
358
359
|
}
|
|
359
360
|
|
|
361
|
+
export { BTDateSelect }
|
|
362
|
+
|
|
360
363
|
export declare interface BTDemo {
|
|
361
364
|
getProfiles?: () => DemoProfile[];
|
|
362
365
|
endDemo: (goHome?: boolean) => void;
|
package/package.json
CHANGED