@croquiscom/pds 15.9.2 → 15.9.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 15.9.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 54fd61b: peer dependency react version 조정
8
+
3
9
  ## 15.9.2
4
10
 
5
11
  ### Patch Changes
@@ -6,3 +6,5 @@ type Story = StoryObj<typeof Badge>;
6
6
  export declare const Outline: Story;
7
7
  export declare const Fill: Story;
8
8
  export declare const Icon: Story;
9
+ export declare const IconSize: Story;
10
+ export declare const CustomIcon: Story;
@@ -0,0 +1,9 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import { Banner } from './Banner';
3
+ declare const meta: Meta<typeof Banner>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof Banner>;
6
+ export declare const Base: Story;
7
+ export declare const NoIcon: Story;
8
+ export declare const WithActionClose: Story;
9
+ export declare const Kind: Story;
@@ -0,0 +1,10 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import { BottomSheet } from './BottomSheet';
3
+ declare const meta: Meta<typeof BottomSheet>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof BottomSheet>;
6
+ export declare const Base: Story;
7
+ export declare const NoUsePortalBottomSheet: Story;
8
+ export declare const ContentWithCloseAction: Story;
9
+ export declare const DisabledCloseDimClick: Story;
10
+ export declare const DisabledCloseDrag: Story;
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import { AccordionButton } from './AccordionButton';
3
+ declare const meta: Meta<typeof AccordionButton>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof AccordionButton>;
6
+ export declare const Base: Story;
@@ -0,0 +1,11 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import { Button } from './Button';
3
+ declare const meta: Meta<typeof Button>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof Button>;
6
+ export declare const Size: Story;
7
+ export declare const FullWidth: Story;
8
+ export declare const WithIcon: Story;
9
+ export declare const WithIconCustomColor: Story;
10
+ export declare const Loading: Story;
11
+ export declare const Disabled: Story;
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import { FloatingButton } from './FloatingButton';
3
+ declare const meta: Meta<typeof FloatingButton>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof FloatingButton>;
6
+ export declare const Base: Story;
@@ -0,0 +1,9 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import { IconButton } from './IconButton';
3
+ declare const meta: Meta<typeof IconButton>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof IconButton>;
6
+ export declare const Rectangle: Story;
7
+ export declare const Circle: Story;
8
+ export declare const Kind: Story;
9
+ export declare const WithIconCustomColor: Story;
@@ -0,0 +1,9 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import { PopoverButton } from './PopoverButton';
3
+ declare const meta: Meta<typeof PopoverButton>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof PopoverButton>;
6
+ export declare const Base: Story;
7
+ export declare const CustomButton: Story;
8
+ export declare const Loading: Story;
9
+ export declare const Disabled: Story;
@@ -0,0 +1,9 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import { TextButton } from './TextButton';
3
+ declare const meta: Meta<typeof TextButton>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof TextButton>;
6
+ export declare const Text: Story;
7
+ export declare const WithCustomColor: Story;
8
+ export declare const WithCustomIconColor: Story;
9
+ export declare const Loading: Story;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@croquiscom/pds",
3
- "version": "15.9.2",
3
+ "version": "15.9.3",
4
4
  "description": "Design system for Zigzag's Partner Center",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.es.js",
@@ -34,8 +34,8 @@
34
34
  "peerDependencies": {
35
35
  "@emotion/react": "^11.4.0",
36
36
  "@emotion/styled": "^11.3.0",
37
- "react": "^18",
38
- "react-dom": "^18"
37
+ "react": "^18 || ^19",
38
+ "react-dom": "^18 || ^19"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@babel/preset-env": "^7.14.7",