@croquiscom/pds 14.3.0 → 14.4.0
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 +6 -0
- package/dist/components/dropdown/DropdownFilter.stories.d.ts +1 -0
- package/dist/components/form/FormHelperText.d.ts +3 -0
- package/dist/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/plugin/generate_svg/ui.html +1 -1
- package/plugin/generate_svg/ui.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/// <reference types="@emotion/react/types/css-prop" />
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { InputStatus } from '../input/types';
|
|
4
|
+
import { CSSValueWithLength } from '../../styles';
|
|
4
5
|
type FormHelperTextElement = keyof Pick<JSX.IntrinsicElements, 'div' | 'p' | 'span'>;
|
|
5
6
|
export interface FormHelperTextProps extends React.Attributes {
|
|
6
7
|
/**
|
|
@@ -9,6 +10,8 @@ export interface FormHelperTextProps extends React.Attributes {
|
|
|
9
10
|
as?: FormHelperTextElement;
|
|
10
11
|
/** @default info */
|
|
11
12
|
status?: InputStatus;
|
|
13
|
+
/** @deprecated FormHelperText 사용처에서 margin 마이그레이션 이후 스펙아웃될 예정입니다. */
|
|
14
|
+
mt?: CSSValueWithLength;
|
|
12
15
|
}
|
|
13
16
|
export declare const FormHelperText: React.FC<FormHelperTextProps & JSX.IntrinsicElements[FormHelperTextProps['as']]>;
|
|
14
17
|
export {};
|