wacomm 1.7.0 → 1.8.0
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/TextareaAutosize.d.ts +10 -0
- package/dist/buttons/Button.stories.d.ts +10 -0
- package/dist/buttons/Button.test.d.ts +0 -0
- package/dist/buttons/CacheButton.stories.d.ts +7 -0
- package/dist/buttons/CacheButton.test.d.ts +0 -0
- package/dist/buttons/ModalButton.stories.d.ts +7 -0
- package/dist/buttons/ModalButton.test.d.ts +0 -0
- package/dist/buttons/StyledButton.stories.d.ts +9 -0
- package/dist/buttons/StyledButton.test.d.ts +0 -0
- package/dist/buttons/SvgButton.stories.d.ts +13 -0
- package/dist/buttons/SvgButton.test.d.ts +0 -0
- package/dist/buttons/ToggleButton.stories.d.ts +9 -0
- package/dist/buttons/ToggleButton.test.d.ts +0 -0
- package/dist/buttons/YesNoButtons.stories.d.ts +6 -0
- package/dist/buttons/YesNoButtons.test.d.ts +0 -0
- package/dist/containers/Column.stories.d.ts +7 -0
- package/dist/containers/Column.test.d.ts +0 -0
- package/dist/containers/Container.stories.d.ts +9 -0
- package/dist/containers/Container.test.d.ts +0 -0
- package/dist/containers/Row.stories.d.ts +7 -0
- package/dist/containers/Row.test.d.ts +0 -0
- package/dist/datetime/DateDisplay.stories.d.ts +8 -0
- package/dist/datetime/DateDisplay.test.d.ts +0 -0
- package/dist/datetime/DatePicker.stories.d.ts +10 -0
- package/dist/datetime/DatePicker.test.d.ts +0 -0
- package/dist/index-C0GvBkA4.js +343 -0
- package/dist/{index-DykjGGtD.mjs → index-TzILtr7b.mjs} +7145 -6974
- package/dist/index.d.ts +1 -0
- package/dist/{mapbox-gl-B1zK3TQb.mjs → mapbox-gl-CzQ5VlBu.mjs} +1 -1
- package/dist/{mapbox-gl-BnurK_QI.js → mapbox-gl-DeJ9ysyh.js} +1 -1
- package/dist/wacomm.cjs.js +1 -1
- package/dist/wacomm.css +1 -1
- package/dist/wacomm.es.js +38 -37
- package/package.json +3 -1
- package/dist/index-BrUo36uq.js +0 -343
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
interface TextareaAutosizeProps {
|
|
2
|
+
className?: string;
|
|
3
|
+
placeholder?: string;
|
|
4
|
+
minRows?: number;
|
|
5
|
+
maxRows?: number;
|
|
6
|
+
value?: string;
|
|
7
|
+
onChange: (v: string) => void;
|
|
8
|
+
}
|
|
9
|
+
declare const TextareaAutosize: ({ className, placeholder, minRows, maxRows, value, onChange }: TextareaAutosizeProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export default TextareaAutosize;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as Button } from './Button';
|
|
3
|
+
declare const meta: Meta<typeof Button>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Highlighted: Story;
|
|
8
|
+
export declare const Disabled: Story;
|
|
9
|
+
export declare const Loading: Story;
|
|
10
|
+
export declare const CustomStyling: Story;
|
|
File without changes
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as CacheButton } from './CacheButton';
|
|
3
|
+
declare const meta: Meta<typeof CacheButton>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Highlighted: Story;
|
|
File without changes
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as ModalButton } from './ModalButton';
|
|
3
|
+
declare const meta: Meta<typeof ModalButton>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const SimpleText: Story;
|
|
File without changes
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as StyledButton } from './StyledButton';
|
|
3
|
+
declare const meta: Meta<typeof StyledButton>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Highlighted: Story;
|
|
8
|
+
export declare const Loading: Story;
|
|
9
|
+
export declare const HighlightedAndLoading: Story;
|
|
File without changes
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as SvgButton } from './SvgButton';
|
|
3
|
+
declare const meta: Meta<typeof SvgButton>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Highlighted: Story;
|
|
8
|
+
export declare const Disabled: Story;
|
|
9
|
+
export declare const Loading: Story;
|
|
10
|
+
export declare const Vertical: Story;
|
|
11
|
+
export declare const IconOnly: Story;
|
|
12
|
+
export declare const LargeIcon: Story;
|
|
13
|
+
export declare const CustomStyling: Story;
|
|
File without changes
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as ToggleButton } from './ToggleButton';
|
|
3
|
+
declare const meta: Meta<typeof ToggleButton>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Checked: Story;
|
|
8
|
+
export declare const Disabled: Story;
|
|
9
|
+
export declare const DisabledChecked: Story;
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as Column } from './Column';
|
|
3
|
+
declare const meta: Meta<typeof Column>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const WithCustomClassName: Story;
|
|
File without changes
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as Container } from './Container';
|
|
3
|
+
declare const meta: Meta<typeof Container>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const HorizontalDefault: Story;
|
|
7
|
+
export declare const VerticalDefault: Story;
|
|
8
|
+
export declare const HorizontalWithCustomClassName: Story;
|
|
9
|
+
export declare const VerticalWithCustomClassName: Story;
|
|
File without changes
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as Row } from './Row';
|
|
3
|
+
declare const meta: Meta<typeof Row>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const WithCustomClassName: Story;
|
|
File without changes
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as DateDisplay } from './DateDisplay';
|
|
3
|
+
declare const meta: Meta<typeof DateDisplay>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const EmptyDate: Story;
|
|
8
|
+
export declare const InvalidDate: Story;
|
|
File without changes
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as DatePicker } from './DatePicker';
|
|
3
|
+
declare const meta: Meta<typeof DatePicker>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const EmptyValue: Story;
|
|
8
|
+
export declare const TodaysDate: Story;
|
|
9
|
+
export declare const FutureDate: Story;
|
|
10
|
+
export declare const PastDate: Story;
|
|
File without changes
|