@vanjana/vue-ui 0.1.95 → 0.1.99

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,8 @@
1
+ type Props = {
2
+ amount: number;
3
+ maxAmount: number;
4
+ segments?: number;
5
+ };
6
+ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
+ declare const _default: typeof __VLS_export;
8
+ export default _default;
@@ -22,7 +22,9 @@ import TabView from './tab-view.vue';
22
22
  import Tab from './tab.vue';
23
23
  import EditableLabel from './editable-label.vue';
24
24
  import Skeleton from './skeleton.vue';
25
+ import AmountBar from './amount-bar.vue';
25
26
  export type { ChipSelectorOption, ChipSelectorProps } from './chip-selector.vue';
26
27
  export * from './form';
27
28
  export * from './shell';
28
- export { Button, ButtonBar, Card, Carousel, Checkbox, Radio, Chip, ChipGroup, ChipSelector, Dialog, DotMenu, Icon, LinkButton, Menu, MenuAction, Page, Paginator, SearchField, Separator, Spinner, Tab, TabView, EditableLabel, Skeleton, };
29
+ export * from './notification';
30
+ export { AmountBar, Button, ButtonBar, Card, Carousel, Checkbox, Radio, Chip, ChipGroup, ChipSelector, Dialog, DotMenu, Icon, LinkButton, Menu, MenuAction, Page, Paginator, SearchField, Separator, Spinner, Tab, TabView, EditableLabel, Skeleton, };
@@ -0,0 +1,3 @@
1
+ import NotificationComponent from './notification.vue';
2
+ import Notifications from './notifications.vue';
3
+ export { NotificationComponent, Notifications };
@@ -0,0 +1,38 @@
1
+ import type { StoryObj } from '@storybook/vue3-vite';
2
+ declare const meta: {
3
+ title: string;
4
+ component: import("vue").DefineComponent<{
5
+ amount: number;
6
+ maxAmount: number;
7
+ segments?: number;
8
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
9
+ amount: number;
10
+ maxAmount: number;
11
+ segments?: number;
12
+ }> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
+ render: (args: unknown) => {
14
+ components: {
15
+ AmountBar: import("vue").DefineComponent<{
16
+ amount: number;
17
+ maxAmount: number;
18
+ segments?: number;
19
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
20
+ amount: number;
21
+ maxAmount: number;
22
+ segments?: number;
23
+ }> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
24
+ };
25
+ setup(this: void): {
26
+ args: unknown;
27
+ };
28
+ template: string;
29
+ };
30
+ tags: string[];
31
+ argTypes: {};
32
+ args: {};
33
+ };
34
+ export default meta;
35
+ type Story = StoryObj<typeof meta>;
36
+ export declare const Primary: Story;
37
+ export declare const WithSegments: Story;
38
+ export declare const WithFullSegments: Story;
@@ -42,3 +42,4 @@ export declare const SuccessNotification: Story;
42
42
  export declare const WarningNotification: Story;
43
43
  export declare const ErrorNotification: Story;
44
44
  export declare const MultipleNotifications: Story;
45
+ export declare const ShowAllNotifications: Story;