@croquiscom/pds 0.13.0 → 0.14.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 +12 -0
- package/dist/form/FormHelperText.stories.d.ts +1 -1
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/input/Input.stories.d.ts +1 -1
- package/dist/input/types.d.ts +1 -1
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ declare const _default: ComponentMeta<React.ForwardRefExoticComponent<React.Inpu
|
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Base: any;
|
|
6
6
|
export declare const Error: any;
|
|
7
|
-
export declare const
|
|
7
|
+
export declare const Success: any;
|
|
8
8
|
export declare const Disabled: any;
|
|
9
9
|
export declare const EnteredDisabled: any;
|
|
10
10
|
export declare const RightAlignment: any;
|
package/dist/input/types.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare type InputAlignment = 'left' | 'center' | 'right';
|
|
2
|
-
export declare type InputStatus = 'info' | '
|
|
2
|
+
export declare type InputStatus = 'info' | 'success' | 'error';
|