@croquiscom/pds 0.11.0 → 0.11.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
+ ## 0.11.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 999480c: FormField export 누락 수정
8
+
3
9
  ## 0.11.0
4
10
 
5
11
  ### Minor Changes
@@ -1,9 +1,6 @@
1
1
  import React from 'react';
2
- import { FormHelperTextProps } from './FormHelperText';
3
- declare const _default: {
4
- title: string;
5
- component: React.FC<FormHelperTextProps & (React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> | React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement> | React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>)>;
6
- };
2
+ import { ComponentMeta } from '@storybook/react';
3
+ declare const _default: ComponentMeta<React.FC<import("./FormHelperText").FormHelperTextProps & (React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> | React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement> | React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>)>>;
7
4
  export default _default;
8
5
  export declare const Base: any;
9
6
  export declare const Confirm: any;
@@ -1,9 +1,6 @@
1
1
  import React from 'react';
2
- import { FormLabelProps } from './FormLabel';
3
- declare const _default: {
4
- title: string;
5
- component: React.ForwardRefExoticComponent<FormLabelProps & React.RefAttributes<HTMLLabelElement>>;
6
- };
2
+ import { ComponentMeta } from '@storybook/react';
3
+ declare const _default: ComponentMeta<React.ForwardRefExoticComponent<import("./FormLabel").FormLabelProps & React.RefAttributes<HTMLLabelElement>>>;
7
4
  export default _default;
8
5
  export declare const Base: any;
9
6
  export declare const Required: any;
@@ -1,2 +1,3 @@
1
1
  export * from './FormLabel';
2
2
  export * from './FormHelperText';
3
+ export * from './FormField';