@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 +6 -0
- package/dist/form/FormHelperText.stories.d.ts +2 -5
- package/dist/form/FormLabel.stories.d.ts +2 -5
- package/dist/form/index.d.ts +1 -0
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/input/Input.stories.d.ts +2 -22
- package/dist/input/NumericInput.stories.d.ts +4 -13
- package/package.json +1 -1
|
@@ -1,26 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
component: React.ForwardRefExoticComponent<React.InputHTMLAttributes<HTMLInputElement> & import("./InputBase").InputBaseType & import("./InputAffix").InputAffixProps & React.RefAttributes<HTMLInputElement>>;
|
|
5
|
-
argTypes: {
|
|
6
|
-
startElement: {
|
|
7
|
-
options: string[];
|
|
8
|
-
mapping: {
|
|
9
|
-
reset: any;
|
|
10
|
-
'set IconSearch14': JSX.Element;
|
|
11
|
-
'set IconEyeOn16': JSX.Element;
|
|
12
|
-
};
|
|
13
|
-
};
|
|
14
|
-
endElement: {
|
|
15
|
-
options: string[];
|
|
16
|
-
mapping: {
|
|
17
|
-
reset: any;
|
|
18
|
-
'set IconSearch14': JSX.Element;
|
|
19
|
-
'set IconEyeOn16': JSX.Element;
|
|
20
|
-
};
|
|
21
|
-
};
|
|
22
|
-
};
|
|
23
|
-
};
|
|
2
|
+
import { ComponentMeta } from '@storybook/react';
|
|
3
|
+
declare const _default: ComponentMeta<React.ForwardRefExoticComponent<React.InputHTMLAttributes<HTMLInputElement> & import("./InputBase").InputBaseType & import("./InputAffix").InputAffixProps & React.RefAttributes<HTMLInputElement>>>;
|
|
24
4
|
export default _default;
|
|
25
5
|
export declare const Base: any;
|
|
26
6
|
export declare const Error: any;
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
component: React.ForwardRefExoticComponent<Omit<React.InputHTMLAttributes<HTMLInputElement>, "type" | "width" | "onChange"> & import("./NumericInput").NumericInputBaseType & React.RefAttributes<HTMLInputElement>>;
|
|
6
|
-
};
|
|
2
|
+
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
|
3
|
+
import { NumericInput } from './NumericInput';
|
|
4
|
+
declare const _default: ComponentMeta<React.ForwardRefExoticComponent<Omit<React.InputHTMLAttributes<HTMLInputElement>, "type" | "width" | "onChange"> & import("./NumericInput").NumericInputBaseType & React.RefAttributes<HTMLInputElement>>>;
|
|
7
5
|
export default _default;
|
|
8
6
|
export declare const Base: any;
|
|
9
7
|
export declare const Addon: any;
|
|
@@ -13,11 +11,4 @@ export declare const WhetherNegativeNumbersAreAllowed: any;
|
|
|
13
11
|
export declare const DecimalScale: any;
|
|
14
12
|
export declare const EnteredDisabled: any;
|
|
15
13
|
export declare const RightAlignment: any;
|
|
16
|
-
export declare const SetValueWithName:
|
|
17
|
-
(args: NumericInputProps): JSX.Element;
|
|
18
|
-
args: {
|
|
19
|
-
prefix: string;
|
|
20
|
-
suffix: string;
|
|
21
|
-
placeholder: string;
|
|
22
|
-
};
|
|
23
|
-
};
|
|
14
|
+
export declare const SetValueWithName: ComponentStory<typeof NumericInput>;
|