@randstad-uca/design-system 1.0.55 → 1.0.57
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/dist/package.json
CHANGED
|
@@ -26,11 +26,14 @@ export interface FormProps {
|
|
|
26
26
|
heightTextArea?: string;
|
|
27
27
|
maxHeightTextArea?: string;
|
|
28
28
|
helperAlign?: 'left' | 'center' | 'right' | 'justify';
|
|
29
|
+
keydown?: 'number' | 'text' | undefined;
|
|
29
30
|
}
|
|
30
31
|
declare const meta: Meta<FormProps>;
|
|
31
32
|
export default meta;
|
|
32
33
|
type Story = StoryObj<FormProps>;
|
|
33
34
|
export declare const Default: Story;
|
|
35
|
+
export declare const KeydownNumber: Story;
|
|
36
|
+
export declare const KeydownText: Story;
|
|
34
37
|
export declare const Filled: Story;
|
|
35
38
|
export declare const Disabled: Story;
|
|
36
39
|
export declare const WithHelperCenter: Story;
|
|
@@ -40,6 +43,7 @@ export declare const WithSuccess: Story;
|
|
|
40
43
|
export declare const WithIconLeft: Story;
|
|
41
44
|
export declare const WithIconRight: Story;
|
|
42
45
|
export declare const PasswordField: Story;
|
|
46
|
+
export declare const PasswordFieldDisabled: Story;
|
|
43
47
|
export declare const TextareaField: Story;
|
|
44
48
|
export declare const TextareaWithHelperRight: Story;
|
|
45
49
|
export declare const TextareaWithHeightAndScroll: Story;
|
|
@@ -61,6 +61,7 @@ declare const _default: {
|
|
|
61
61
|
export default _default;
|
|
62
62
|
export declare const Default: StoryFn;
|
|
63
63
|
export declare const WithError: StoryFn;
|
|
64
|
+
export declare const WithDisabled: StoryFn;
|
|
64
65
|
export declare const WithHelper: StoryFn;
|
|
65
66
|
export declare const WithHelperAndAlign: StoryFn;
|
|
66
67
|
export declare const RequiredFields: StoryFn;
|