@blueprint-chart/ui 0.1.26 → 0.1.28
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.
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
width?: string;
|
|
3
|
+
height?: string;
|
|
4
|
+
radius?: string;
|
|
5
|
+
circle?: boolean;
|
|
6
|
+
animated?: boolean;
|
|
7
|
+
};
|
|
8
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
9
|
+
circle: boolean;
|
|
10
|
+
width: string;
|
|
11
|
+
height: string;
|
|
12
|
+
radius: string;
|
|
13
|
+
animated: boolean;
|
|
14
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
export default _default;
|
|
@@ -6,12 +6,18 @@ type __VLS_Props = {
|
|
|
6
6
|
layout?: 'grid' | 'row';
|
|
7
7
|
forceLightThumb?: boolean;
|
|
8
8
|
serifTitle?: boolean;
|
|
9
|
+
/** Whole-card placeholder: thumb + meta render as skeletons, content ignored. */
|
|
10
|
+
loading?: boolean;
|
|
11
|
+
/** Card is real, but the thumb area shimmers until `thumbSrc` arrives. */
|
|
12
|
+
thumbLoading?: boolean;
|
|
9
13
|
};
|
|
10
|
-
declare var
|
|
14
|
+
declare var __VLS_4: {}, __VLS_6: {}, __VLS_17: {};
|
|
11
15
|
type __VLS_Slots = {} & {
|
|
12
|
-
|
|
16
|
+
status?: (props: typeof __VLS_4) => any;
|
|
13
17
|
} & {
|
|
14
|
-
|
|
18
|
+
actions?: (props: typeof __VLS_6) => any;
|
|
19
|
+
} & {
|
|
20
|
+
footer?: (props: typeof __VLS_17) => any;
|
|
15
21
|
};
|
|
16
22
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
17
23
|
click: () => any;
|
package/dist/index.d.ts
CHANGED
|
@@ -55,6 +55,7 @@ export type { ButtonIconCounterProps } from './components/Button/ButtonIconCount
|
|
|
55
55
|
export { default as ButtonRedo } from './components/Button/ButtonRedo/ButtonRedo.vue';
|
|
56
56
|
export { default as ButtonUndo } from './components/Button/ButtonUndo/ButtonUndo.vue';
|
|
57
57
|
export { default as FeedbackEmptyState } from './components/Feedback/FeedbackEmptyState/FeedbackEmptyState.vue';
|
|
58
|
+
export { default as FeedbackSkeleton } from './components/Feedback/FeedbackSkeleton/FeedbackSkeleton.vue';
|
|
58
59
|
export { default as LayoutBottomDrawer } from './components/Layout/LayoutBottomDrawer/LayoutBottomDrawer.vue';
|
|
59
60
|
export { default as LayoutPanel } from './components/Layout/LayoutPanel/LayoutPanel.vue';
|
|
60
61
|
export { default as LayoutToolbarSeparator } from './components/Layout/LayoutToolbarSeparator/LayoutToolbarSeparator.vue';
|