@croquiscom/pds 12.4.0 → 12.4.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 12.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 4c6eae9: TableCell valign 미적용 오류 수정
8
+
3
9
  ## 12.4.0
4
10
 
5
11
  ### Minor Changes
@@ -0,0 +1,7 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import { TableCell } from './TableCell';
3
+ declare const meta: Meta<typeof TableCell>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof TableCell>;
6
+ export declare const Base: Story;
7
+ export declare const Valign: Story;
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import { TableCell } from './TableCell';
3
+ declare const meta: Meta<typeof TableCell>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof TableCell>;
6
+ export declare const Valign: Story;