@blueprint-chart/ui 0.1.13 → 0.1.15
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/components/Layout/LayoutBottomDrawer/LayoutBottomDrawer.vue.d.ts +1 -5
- package/dist/components/Navigation/NavigationIconRail/NavigationIconRail.vue.d.ts +0 -2
- package/dist/components/Navigation/{NavigationStepperChevron/NavigationStepperChevron.vue.d.ts → NavigationStepperTabs/NavigationStepperTabs.vue.d.ts} +7 -1
- package/dist/components/Scene/SceneList/SceneList.vue.d.ts +30 -0
- package/dist/components/Scene/SceneList/SceneListItem.vue.d.ts +19 -0
- package/dist/components/Scene/SceneTimeline/SceneTimelineControls.vue.d.ts +2 -0
- package/dist/components/Scene/SceneTimelineCompact/SceneTimelineCompact.vue.d.ts +27 -0
- package/dist/index.d.ts +5 -4
- package/dist/index.js +3090 -2988
- package/dist/style.css +1 -1
- package/dist/styles/tokens.css +1 -1
- package/dist/styles/tokens.scss +3 -1
- package/package.json +2 -2
- package/dist/components/Button/ButtonDetach/ButtonDetach.vue.d.ts +0 -6
- package/dist/components/Button/ButtonDock/ButtonDock.vue.d.ts +0 -6
- package/dist/components/Button/ButtonDrag/ButtonDrag.vue.d.ts +0 -2
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
2
|
title?: string;
|
|
3
|
-
maxHeight?: string;
|
|
4
3
|
};
|
|
5
4
|
type __VLS_PublicProps = __VLS_Props & {
|
|
6
5
|
modelValue: boolean;
|
|
@@ -13,10 +12,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
13
12
|
"update:modelValue": (value: boolean) => any;
|
|
14
13
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
15
14
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
16
|
-
}>, {
|
|
17
|
-
title: string;
|
|
18
|
-
maxHeight: string;
|
|
19
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
20
16
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
21
17
|
export default _default;
|
|
22
18
|
type __VLS_WithSlots<T, S> = T & {
|
|
@@ -5,7 +5,6 @@ type __VLS_Props = {
|
|
|
5
5
|
icon: Component;
|
|
6
6
|
tooltip: string;
|
|
7
7
|
}[];
|
|
8
|
-
horizontal?: boolean;
|
|
9
8
|
};
|
|
10
9
|
type __VLS_PublicProps = __VLS_Props & {
|
|
11
10
|
modelValue: string;
|
|
@@ -21,7 +20,6 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
21
20
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
22
21
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
23
22
|
}>, {
|
|
24
|
-
horizontal: boolean;
|
|
25
23
|
items: {
|
|
26
24
|
value: string;
|
|
27
25
|
icon: Component;
|
|
@@ -1,10 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
import { Component } from 'vue';
|
|
2
|
+
export interface StepEntry {
|
|
2
3
|
label: string;
|
|
3
4
|
key?: string;
|
|
5
|
+
icon?: Component;
|
|
4
6
|
}
|
|
5
7
|
type __VLS_Props = {
|
|
6
8
|
steps: StepEntry[];
|
|
7
9
|
disabledSteps?: number[];
|
|
10
|
+
layout?: 'inline' | 'stacked';
|
|
11
|
+
separator?: boolean;
|
|
8
12
|
};
|
|
9
13
|
type __VLS_PublicProps = __VLS_Props & {
|
|
10
14
|
'currentStep': number;
|
|
@@ -14,6 +18,8 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
14
18
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
15
19
|
"onUpdate:currentStep"?: ((value: number) => any) | undefined;
|
|
16
20
|
}>, {
|
|
21
|
+
separator: boolean;
|
|
17
22
|
disabledSteps: number[];
|
|
23
|
+
layout: "inline" | "stacked";
|
|
18
24
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
19
25
|
export default _default;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
interface SceneEntry {
|
|
2
|
+
name: string | null;
|
|
3
|
+
index: number;
|
|
4
|
+
removable?: boolean;
|
|
5
|
+
thumbnail?: string | null;
|
|
6
|
+
hint?: string | null;
|
|
7
|
+
}
|
|
8
|
+
type __VLS_Props = {
|
|
9
|
+
scenes: SceneEntry[];
|
|
10
|
+
playing?: boolean;
|
|
11
|
+
};
|
|
12
|
+
type __VLS_PublicProps = __VLS_Props & {
|
|
13
|
+
'activeIndex'?: number;
|
|
14
|
+
};
|
|
15
|
+
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
+
add: () => any;
|
|
17
|
+
remove: (index: number) => any;
|
|
18
|
+
pause: () => any;
|
|
19
|
+
play: () => any;
|
|
20
|
+
"update:activeIndex": (value: number) => any;
|
|
21
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
22
|
+
onAdd?: (() => any) | undefined;
|
|
23
|
+
onRemove?: ((index: number) => any) | undefined;
|
|
24
|
+
onPause?: (() => any) | undefined;
|
|
25
|
+
onPlay?: (() => any) | undefined;
|
|
26
|
+
"onUpdate:activeIndex"?: ((value: number) => any) | undefined;
|
|
27
|
+
}>, {
|
|
28
|
+
playing: boolean;
|
|
29
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
30
|
+
export default _default;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
index: number;
|
|
3
|
+
name: string | null;
|
|
4
|
+
thumbnail: string | null;
|
|
5
|
+
hint: string | null;
|
|
6
|
+
active?: boolean;
|
|
7
|
+
removable?: boolean;
|
|
8
|
+
};
|
|
9
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
|
+
select: () => any;
|
|
11
|
+
remove: () => any;
|
|
12
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
13
|
+
onSelect?: (() => any) | undefined;
|
|
14
|
+
onRemove?: (() => any) | undefined;
|
|
15
|
+
}>, {
|
|
16
|
+
active: boolean;
|
|
17
|
+
removable: boolean;
|
|
18
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
19
|
+
export default _default;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
2
|
total: number;
|
|
3
3
|
playing?: boolean;
|
|
4
|
+
hideCounter?: boolean;
|
|
4
5
|
};
|
|
5
6
|
type __VLS_PublicProps = __VLS_Props & {
|
|
6
7
|
'activeIndex'?: number;
|
|
@@ -15,5 +16,6 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
15
16
|
"onUpdate:activeIndex"?: ((value: number) => any) | undefined;
|
|
16
17
|
}>, {
|
|
17
18
|
playing: boolean;
|
|
19
|
+
hideCounter: boolean;
|
|
18
20
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
19
21
|
export default _default;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
interface SceneEntry {
|
|
2
|
+
name: string | null;
|
|
3
|
+
index: number;
|
|
4
|
+
}
|
|
5
|
+
type __VLS_Props = {
|
|
6
|
+
scenes: SceneEntry[];
|
|
7
|
+
playing?: boolean;
|
|
8
|
+
expanded?: boolean;
|
|
9
|
+
};
|
|
10
|
+
type __VLS_PublicProps = __VLS_Props & {
|
|
11
|
+
'activeIndex'?: number;
|
|
12
|
+
};
|
|
13
|
+
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
14
|
+
pause: () => any;
|
|
15
|
+
play: () => any;
|
|
16
|
+
"update:activeIndex": (value: number) => any;
|
|
17
|
+
expand: () => any;
|
|
18
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
19
|
+
onPause?: (() => any) | undefined;
|
|
20
|
+
onPlay?: (() => any) | undefined;
|
|
21
|
+
"onUpdate:activeIndex"?: ((value: number) => any) | undefined;
|
|
22
|
+
onExpand?: (() => any) | undefined;
|
|
23
|
+
}>, {
|
|
24
|
+
playing: boolean;
|
|
25
|
+
expanded: boolean;
|
|
26
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
27
|
+
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -48,9 +48,6 @@ export { default as SettingsSectionTitle } from './components/SettingsSection/Se
|
|
|
48
48
|
export { default as SettingsSectionDescription } from './components/SettingsSection/SettingsSectionDescription.vue';
|
|
49
49
|
export { default as ButtonAdd } from './components/Button/ButtonAdd/ButtonAdd.vue';
|
|
50
50
|
export { default as ButtonClose } from './components/Button/ButtonClose/ButtonClose.vue';
|
|
51
|
-
export { default as ButtonDetach } from './components/Button/ButtonDetach/ButtonDetach.vue';
|
|
52
|
-
export { default as ButtonDock } from './components/Button/ButtonDock/ButtonDock.vue';
|
|
53
|
-
export { default as ButtonDrag } from './components/Button/ButtonDrag/ButtonDrag.vue';
|
|
54
51
|
export { default as ButtonIcon } from './components/Button/ButtonIcon/ButtonIcon.vue';
|
|
55
52
|
export type { ButtonIconProps } from './components/Button/ButtonIcon/ButtonIcon.vue';
|
|
56
53
|
export { default as ButtonIconCounter } from './components/Button/ButtonIconCounter/ButtonIconCounter.vue';
|
|
@@ -63,7 +60,8 @@ export { default as LayoutPanel } from './components/Layout/LayoutPanel/LayoutPa
|
|
|
63
60
|
export { default as LayoutToolbarSeparator } from './components/Layout/LayoutToolbarSeparator/LayoutToolbarSeparator.vue';
|
|
64
61
|
export { default as NavigationSegmentedControl } from './components/Navigation/NavigationSegmentedControl/NavigationSegmentedControl.vue';
|
|
65
62
|
export type { NavigationSegmentedControlItem } from './components/Navigation/NavigationSegmentedControl/NavigationSegmentedControl.vue';
|
|
66
|
-
export { default as
|
|
63
|
+
export { default as NavigationStepperTabs } from './components/Navigation/NavigationStepperTabs/NavigationStepperTabs.vue';
|
|
64
|
+
export type { StepEntry as NavigationStepperTabsStep } from './components/Navigation/NavigationStepperTabs/NavigationStepperTabs.vue';
|
|
67
65
|
export { default as NavigationToggle } from './components/Navigation/NavigationToggle/NavigationToggle.vue';
|
|
68
66
|
export { default as NavigationToggleOption } from './components/Navigation/NavigationToggle/NavigationToggleOption.vue';
|
|
69
67
|
export { default as NavigationCommandBar } from './components/Navigation/NavigationCommandBar/NavigationCommandBar.vue';
|
|
@@ -90,6 +88,9 @@ export { default as GalleryGrid } from './components/Gallery/GalleryGrid/Gallery
|
|
|
90
88
|
export { default as SceneTimeline } from './components/Scene/SceneTimeline/SceneTimeline.vue';
|
|
91
89
|
export { default as SceneTimelineControls } from './components/Scene/SceneTimeline/SceneTimelineControls.vue';
|
|
92
90
|
export { default as SceneTimelineItem } from './components/Scene/SceneTimelineItem/SceneTimelineItem.vue';
|
|
91
|
+
export { default as SceneTimelineCompact } from './components/Scene/SceneTimelineCompact/SceneTimelineCompact.vue';
|
|
92
|
+
export { default as SceneList } from './components/Scene/SceneList/SceneList.vue';
|
|
93
|
+
export { default as SceneListItem } from './components/Scene/SceneList/SceneListItem.vue';
|
|
93
94
|
export { default as ScenePlayerProgressBar } from './components/Scene/ScenePlayer/ScenePlayerProgressBar.vue';
|
|
94
95
|
export { default as ScenePlayerDotStepper } from './components/Scene/ScenePlayer/ScenePlayerDotStepper.vue';
|
|
95
96
|
export { default as ScenePlayerMinimalArrows } from './components/Scene/ScenePlayer/ScenePlayerMinimalArrows.vue';
|