cisse-vue-ui 0.7.7 → 0.7.8
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
|
+
import { Meta, StoryObj } from '@storybook/vue3';
|
|
2
|
+
import { default as CheckboxGroup } from './CheckboxGroup.vue';
|
|
3
|
+
declare const meta: Meta<typeof CheckboxGroup>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof CheckboxGroup>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const WithHint: Story;
|
|
8
|
+
export declare const WithError: Story;
|
|
9
|
+
export declare const Required: Story;
|
|
10
|
+
export declare const ThreeColumns: Story;
|
|
11
|
+
export declare const FourColumns: Story;
|
|
12
|
+
export declare const SingleColumn: Story;
|
|
13
|
+
export declare const Inline: Story;
|
|
14
|
+
export declare const Disabled: Story;
|
|
15
|
+
export declare const WithDisabledOptions: Story;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/vue3';
|
|
2
|
+
import { default as TextArea } from './TextArea.vue';
|
|
3
|
+
declare const meta: Meta<typeof TextArea>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof TextArea>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const WithHint: Story;
|
|
8
|
+
export declare const WithError: Story;
|
|
9
|
+
export declare const WithMaxLength: Story;
|
|
10
|
+
export declare const Disabled: Story;
|
|
11
|
+
export declare const Readonly: Story;
|
|
12
|
+
export declare const NoResize: Story;
|
|
13
|
+
export declare const Required: Story;
|