lism-css 0.9.2 → 1.0.0-beta.1
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/Box/Box.stories.d.ts +7 -0
- package/dist/components/Center/Center.stories.d.ts +8 -0
- package/dist/components/Cluster/Cluster.stories.d.ts +7 -0
- package/dist/components/Columns/Columns.stories.d.ts +8 -0
- package/dist/components/Container/Container.stories.d.ts +8 -0
- package/dist/components/Dummy/getContent.d.ts +1 -2
- package/dist/components/Flex/Flex.stories.d.ts +9 -0
- package/dist/components/Flow/Flow.stories.d.ts +9 -0
- package/dist/components/FluidCols/FluidCols.stories.d.ts +7 -0
- package/dist/components/Frame/Frame.stories.d.ts +7 -0
- package/dist/components/Grid/Grid.stories.d.ts +8 -0
- package/dist/components/Layer/Layer.stories.d.ts +8 -0
- package/dist/components/LinkBox/LinkBox.stories.d.ts +7 -0
- package/dist/components/Lism/Lism.stories.d.ts +1 -650
- package/dist/components/SideMain/SideMain.stories.d.ts +9 -0
- package/dist/components/Stack/Stack.stories.d.ts +8 -0
- package/dist/components/SwitchCols/SwitchCols.stories.d.ts +9 -0
- package/dist/components/Wrapper/Wrapper.stories.d.ts +10 -0
- package/dist/components/atomic/Decorator/Decorator.stories.d.ts +10 -0
- package/dist/components/atomic/Decorator/getProps.d.ts +4 -5
- package/dist/components/atomic/Divider/Divider.stories.d.ts +8 -0
- package/dist/components/atomic/Divider/getProps.d.ts +2 -2
- package/dist/components/atomic/Icon/Icon.d.ts +7 -3
- package/dist/components/atomic/Icon/Icon.stories.d.ts +15 -0
- package/dist/components/atomic/Icon/getProps.d.ts +10 -5
- package/dist/components/atomic/Icon/index.d.ts +1 -0
- package/dist/components/atomic/Media/Media.d.ts +6 -2
- package/dist/components/atomic/Media/Media.stories.d.ts +9 -0
- package/dist/components/atomic/Media/getProps.d.ts +4 -5
- package/dist/components/atomic/Spacer/Spacer.stories.d.ts +9 -0
- package/dist/components/atomic/Spacer/getProps.d.ts +2 -2
- package/dist/css/base.css +1 -1
- package/dist/css/main.css +1 -1
- package/dist/css/main_no_layer.css +1 -1
- package/dist/lib/getLismProps.d.ts +5 -5
- package/dist/lib/types/ResponsiveProps.d.ts +1 -1
- package/package.json +7 -6
- package/packages/astro/Box/Box.astro +2 -3
- package/packages/astro/Center/Center.astro +3 -0
- package/packages/astro/Cluster/Cluster.astro +3 -0
- package/packages/astro/Columns/Columns.astro +3 -0
- package/packages/astro/Container/Container.astro +4 -2
- package/packages/astro/Decorator/Decorator.astro +3 -4
- package/packages/astro/Divider/Divider.astro +3 -4
- package/packages/astro/Dummy/Dummy.astro +8 -4
- package/packages/astro/Flex/Flex.astro +3 -0
- package/packages/astro/Flow/Flow.astro +3 -0
- package/packages/astro/FluidCols/FluidCols.astro +3 -0
- package/packages/astro/Frame/Frame.astro +3 -0
- package/packages/astro/Grid/Grid.astro +3 -0
- package/packages/astro/HTML/a.astro +3 -0
- package/packages/astro/HTML/button.astro +3 -0
- package/packages/astro/HTML/div.astro +3 -0
- package/packages/astro/HTML/h.astro +6 -0
- package/packages/astro/HTML/img.astro +3 -0
- package/packages/astro/HTML/li.astro +3 -0
- package/packages/astro/HTML/ol.astro +3 -0
- package/packages/astro/HTML/p.astro +3 -0
- package/packages/astro/HTML/span.astro +3 -0
- package/packages/astro/HTML/ul.astro +3 -0
- package/packages/astro/Icon/Icon.astro +7 -12
- package/packages/astro/Layer/Layer.astro +4 -1
- package/packages/astro/LinkBox/LinkBox.astro +4 -3
- package/packages/astro/Lism/Lism.astro +5 -6
- package/packages/astro/Media/Media.astro +6 -3
- package/packages/astro/SideMain/SideMain.astro +3 -0
- package/packages/astro/Spacer/Spacer.astro +3 -4
- package/packages/astro/Stack/Stack.astro +3 -0
- package/packages/astro/SwitchCols/SwitchCols.astro +3 -0
- package/packages/astro/Wrapper/Wrapper.astro +5 -0
- package/packages/astro/env.d.ts +10 -0
- package/packages/astro/tsconfig.json +12 -0
- package/packages/astro/types.ts +53 -0
- package/src/scss/base/tokens/_shadow.scss +1 -0
- package/packages/astro/OverlayLink/OverlayLink.astro +0 -10
- package/packages/astro/OverlayLink/index.js +0 -1
- package/packages/astro/helper.js +0 -6
- /package/packages/astro/Box/{index.js → index.ts} +0 -0
- /package/packages/astro/Center/{index.js → index.ts} +0 -0
- /package/packages/astro/Cluster/{index.js → index.ts} +0 -0
- /package/packages/astro/Columns/{index.js → index.ts} +0 -0
- /package/packages/astro/Container/{index.js → index.ts} +0 -0
- /package/packages/astro/Decorator/{index.js → index.ts} +0 -0
- /package/packages/astro/Divider/{index.js → index.ts} +0 -0
- /package/packages/astro/Dummy/{index.js → index.ts} +0 -0
- /package/packages/astro/Flex/{index.js → index.ts} +0 -0
- /package/packages/astro/Flow/{index.js → index.ts} +0 -0
- /package/packages/astro/FluidCols/{index.js → index.ts} +0 -0
- /package/packages/astro/Frame/{index.js → index.ts} +0 -0
- /package/packages/astro/Grid/{index.js → index.ts} +0 -0
- /package/packages/astro/HTML/{index.js → index.ts} +0 -0
- /package/packages/astro/Icon/{index.js → index.ts} +0 -0
- /package/packages/astro/Layer/{index.js → index.ts} +0 -0
- /package/packages/astro/LinkBox/{index.js → index.ts} +0 -0
- /package/packages/astro/Lism/{index.js → index.ts} +0 -0
- /package/packages/astro/Media/{index.js → index.ts} +0 -0
- /package/packages/astro/SideMain/{index.js → index.ts} +0 -0
- /package/packages/astro/Spacer/{index.js → index.ts} +0 -0
- /package/packages/astro/Stack/{index.js → index.ts} +0 -0
- /package/packages/astro/SwitchCols/{index.js → index.ts} +0 -0
- /package/packages/astro/Wrapper/{index.js → index.ts} +0 -0
- /package/packages/astro/{index.js → index.ts} +0 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react-vite';
|
|
2
|
+
import { Box } from './index';
|
|
3
|
+
declare const meta: Meta<typeof Box>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof Box>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const WithBackground: Story;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react-vite';
|
|
2
|
+
import { Center } from './index';
|
|
3
|
+
declare const meta: Meta<typeof Center>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof Center>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const WithAspectRatio: Story;
|
|
8
|
+
export declare const IntrinsicCenter: Story;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react-vite';
|
|
2
|
+
import { Cluster } from './index';
|
|
3
|
+
declare const meta: Meta<typeof Cluster>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof Cluster>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const WithGap: Story;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react-vite';
|
|
2
|
+
import { Columns } from './index';
|
|
3
|
+
declare const meta: Meta<typeof Columns>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof Columns>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const TwoColumns: Story;
|
|
8
|
+
export declare const ResponsiveColumns: Story;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react-vite';
|
|
2
|
+
import { Container } from './index';
|
|
3
|
+
declare const meta: Meta<typeof Container>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof Container>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const SizeS: Story;
|
|
8
|
+
export declare const SizeL: Story;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react-vite';
|
|
2
|
+
import { Flex } from './index';
|
|
3
|
+
declare const meta: Meta<typeof Flex>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof Flex>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const WithJustify: Story;
|
|
8
|
+
export declare const WithAlign: Story;
|
|
9
|
+
export declare const WithWrap: Story;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react-vite';
|
|
2
|
+
import { Flow } from './index';
|
|
3
|
+
declare const meta: Meta<typeof Flow>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof Flow>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const WithFlowValue: Story;
|
|
8
|
+
export declare const SmallFlow: Story;
|
|
9
|
+
export declare const WithSkipFlow: Story;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react-vite';
|
|
2
|
+
import { FluidCols } from './index';
|
|
3
|
+
declare const meta: Meta<typeof FluidCols>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof FluidCols>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const WithAutoFill: Story;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react-vite';
|
|
2
|
+
import { Frame } from './index';
|
|
3
|
+
declare const meta: Meta<typeof Frame>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof Frame>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const ResponsiveAspect: Story;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react-vite';
|
|
2
|
+
import { Grid } from './index';
|
|
3
|
+
declare const meta: Meta<typeof Grid>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof Grid>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const WithGtc: Story;
|
|
8
|
+
export declare const WithGridAreas: Story;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react-vite';
|
|
2
|
+
import { Layer } from './index';
|
|
3
|
+
declare const meta: Meta<typeof Layer>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof Layer>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const WithBlur: Story;
|
|
8
|
+
export declare const CenterLayer: Story;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react-vite';
|
|
2
|
+
import { LinkBox } from './index';
|
|
3
|
+
declare const meta: Meta<typeof LinkBox>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof LinkBox>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const WithoutHref: Story;
|