@stenajs-webui/forms 17.4.1 → 17.7.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 +26 -0
- package/dist/components/ui/checkbox/Checkbox.d.ts +10 -10
- package/dist/components/ui/checkbox/CheckboxWithLabel.d.ts +10 -10
- package/dist/components/ui/numeric-stepper/NumericStepper.d.ts +6 -6
- package/dist/components/ui/numeric-text-input/NumericTextInput.d.ts +10 -10
- package/dist/components/ui/numeric-text-input/hooks/UseNumericInputValue.d.ts +4 -4
- package/dist/components/ui/password-input/PasswordInput.d.ts +8 -8
- package/dist/components/ui/radio/RadioButton.d.ts +8 -8
- package/dist/components/ui/radio/RadioButtonWithLabel.d.ts +10 -10
- package/dist/components/ui/switch/Switch.d.ts +8 -8
- package/dist/components/ui/switch/SwitchWithLabel.d.ts +7 -7
- package/dist/components/ui/text-area/TextArea.d.ts +12 -12
- package/dist/components/ui/text-input/TextInput.d.ts +43 -43
- package/dist/components/ui/text-input/TextInputBox.d.ts +7 -7
- package/dist/components/ui/text-input/TextInputIcon.d.ts +14 -14
- package/dist/components/ui/text-input/__tests__/TextInput.test.d.ts +1 -1
- package/dist/components/ui/types.d.ts +17 -17
- package/dist/hooks/UseKeyboardNavigation.d.ts +8 -8
- package/dist/hooks/UseSelectAllOnMount.d.ts +4 -4
- package/dist/hooks/UseTextInput.d.ts +30 -30
- package/dist/index.d.ts +18 -18
- package/dist/index.es.js +665 -466
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1 -529
- package/dist/index.js.map +1 -1
- package/dist/storybook-helpers/storybook-controls.d.ts +46 -46
- package/dist/utils/NumberComparator.d.ts +2 -2
- package/dist/utils/NumericHelpers.d.ts +13 -13
- package/package.json +7 -8
- package/dist/components/ui/Form.stories.d.ts +0 -6
- package/dist/components/ui/checkbox/Checkbox.stories.d.ts +0 -24
- package/dist/components/ui/checkbox/CheckboxWithLabel.stories.d.ts +0 -27
- package/dist/components/ui/numeric-stepper/NumericStepper.stories.d.ts +0 -40
- package/dist/components/ui/numeric-text-input/NumericTextInput.stories.d.ts +0 -57
- package/dist/components/ui/password-input/PasswordInput.stories.d.ts +0 -9
- package/dist/components/ui/radio/RadioButton.stories.d.ts +0 -25
- package/dist/components/ui/radio/RadioButtonWithLabel.stories.d.ts +0 -7
- package/dist/components/ui/switch/Switch.stories.d.ts +0 -13
- package/dist/components/ui/switch/SwitchWithLabel.stories.d.ts +0 -12
- package/dist/components/ui/text-area/TextArea.stories.d.ts +0 -21
- package/dist/components/ui/text-input/TextInput.stories.d.ts +0 -62
- package/dist/components/ui/text-input/TextInputBox.stories.d.ts +0 -7
- package/dist/hooks/__tests__/useSelectAllOnMount.test.d.ts +0 -1
- package/dist/utils/__tests__/NumberComparator.test.d.ts +0 -1
- package/dist/utils/__tests__/NumericHelpers.test.d.ts +0 -1
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
import { TextAreaProps } from "./TextArea";
|
|
3
|
-
import { Story } from "@storybook/react";
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
component: React.ForwardRefExoticComponent<TextAreaProps & React.RefAttributes<HTMLTextAreaElement>>;
|
|
7
|
-
argTypes: {
|
|
8
|
-
inputRef: {
|
|
9
|
-
control: {
|
|
10
|
-
disable: boolean;
|
|
11
|
-
};
|
|
12
|
-
};
|
|
13
|
-
};
|
|
14
|
-
};
|
|
15
|
-
export default _default;
|
|
16
|
-
export declare const Demo: Story<TextAreaProps>;
|
|
17
|
-
export declare const Standard: () => JSX.Element;
|
|
18
|
-
export declare const WithCustomWidth: () => JSX.Element;
|
|
19
|
-
export declare const WithResize: () => JSX.Element;
|
|
20
|
-
export declare const Readonly: () => JSX.Element;
|
|
21
|
-
export declare const Disabled: () => JSX.Element;
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
import { TextInputProps } from "./TextInput";
|
|
3
|
-
import { Story } from "@storybook/react";
|
|
4
|
-
declare const _default: {
|
|
5
|
-
title: string;
|
|
6
|
-
component: React.FC<TextInputProps>;
|
|
7
|
-
argTypes: {
|
|
8
|
-
wrapperStyle: {
|
|
9
|
-
control: {
|
|
10
|
-
disable: boolean;
|
|
11
|
-
};
|
|
12
|
-
};
|
|
13
|
-
wrapperClassName: {
|
|
14
|
-
control: {
|
|
15
|
-
disable: boolean;
|
|
16
|
-
};
|
|
17
|
-
};
|
|
18
|
-
inputRef: {
|
|
19
|
-
control: {
|
|
20
|
-
disable: boolean;
|
|
21
|
-
};
|
|
22
|
-
};
|
|
23
|
-
contentLeft: {
|
|
24
|
-
control: {
|
|
25
|
-
disable: boolean;
|
|
26
|
-
};
|
|
27
|
-
};
|
|
28
|
-
contentRight: {
|
|
29
|
-
control: {
|
|
30
|
-
disable: boolean;
|
|
31
|
-
};
|
|
32
|
-
};
|
|
33
|
-
iconLeft: {
|
|
34
|
-
control: {
|
|
35
|
-
disable: boolean;
|
|
36
|
-
};
|
|
37
|
-
};
|
|
38
|
-
iconRight: {
|
|
39
|
-
control: {
|
|
40
|
-
disable: boolean;
|
|
41
|
-
};
|
|
42
|
-
};
|
|
43
|
-
};
|
|
44
|
-
};
|
|
45
|
-
export default _default;
|
|
46
|
-
export declare const Demo: Story<TextInputProps>;
|
|
47
|
-
export declare const Overview: () => JSX.Element;
|
|
48
|
-
export declare const Standard: () => JSX.Element;
|
|
49
|
-
export declare const WithIconLeft: () => JSX.Element;
|
|
50
|
-
export declare const WithIconRight: () => JSX.Element;
|
|
51
|
-
export declare const WithContentLeft: () => JSX.Element;
|
|
52
|
-
export declare const WithContentRight: () => JSX.Element;
|
|
53
|
-
export declare const WithContentAndNoContentPadding: () => JSX.Element;
|
|
54
|
-
export declare const WithContentAndNoContentPaddingRight: () => JSX.Element;
|
|
55
|
-
export declare const WithContentAndNoContentPaddingLeft: () => JSX.Element;
|
|
56
|
-
export declare const Empty: () => JSX.Element;
|
|
57
|
-
export declare const WithPlaceholder: () => JSX.Element;
|
|
58
|
-
export declare const WithCustomStyling: () => JSX.Element;
|
|
59
|
-
export declare const Disabled: () => JSX.Element;
|
|
60
|
-
export declare const DisabledWithContent: () => JSX.Element;
|
|
61
|
-
export declare const TypeDate: () => JSX.Element;
|
|
62
|
-
export declare const WithClickableContent: () => JSX.Element;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|