@croquiscom/pds 12.1.1 → 12.1.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,17 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 12.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - ea7a97a: Breadcrumb 정렬 틀어짐 및 커스텀 링크 스타일 주입 방식 변경
8
+
9
+ ## 12.1.2
10
+
11
+ ### Patch Changes
12
+
13
+ - 573ee71: Breadcrumb 라벨 커스텀할 경우 링크 스타일 지원
14
+
3
15
  ## 12.1.1
4
16
 
5
17
  ### Patch Changes
@@ -9,3 +9,4 @@ export declare const Disabled: Story;
9
9
  export declare const WithLink: Story;
10
10
  export declare const WithIcon: Story;
11
11
  export declare const OnlyIcon: Story;
12
+ export declare const CustomLink: Story;
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Breadcrumb, BreadcrumbProps } from './Breadcrumb';
3
+ declare const meta: Meta<typeof Breadcrumb>;
4
+ export default meta;
5
+ type Story = StoryObj<BreadcrumbProps>;
6
+ export declare const CustomLink: Story;
@@ -1,4 +1,4 @@
1
+ export declare const breadcrumb_item_link_css: import("@emotion/utils").SerializedStyles;
1
2
  export declare const breadcrumb_item_base_css: import("@emotion/utils").SerializedStyles;
2
3
  export declare const breadcrumb_item_selected_css: import("@emotion/utils").SerializedStyles;
3
4
  export declare const breadcrumb_item_disabled_css: import("@emotion/utils").SerializedStyles;
4
- export declare const breadcrumb_item_link_css: import("@emotion/utils").SerializedStyles;