@abgov/react-components 4.0.0-alpha.39 → 4.0.0-alpha.41
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/lib/button/button.d.ts +0 -2
- package/lib/input/input.d.ts +4 -0
- package/package.json +1 -1
- package/react-components.esm.js +471 -316
- package/react-components.umd.js +480 -323
package/lib/button/button.d.ts
CHANGED
|
@@ -9,7 +9,6 @@ interface WCProps {
|
|
|
9
9
|
size?: ButtonSize;
|
|
10
10
|
variant?: ButtonVariant;
|
|
11
11
|
disabled?: boolean;
|
|
12
|
-
title?: string;
|
|
13
12
|
leadingicon?: string;
|
|
14
13
|
trailingicon?: string;
|
|
15
14
|
ref: React.RefObject<HTMLElement>;
|
|
@@ -23,7 +22,6 @@ declare global {
|
|
|
23
22
|
}
|
|
24
23
|
declare type ButtonProps = {
|
|
25
24
|
type?: ButtonType;
|
|
26
|
-
title?: string;
|
|
27
25
|
size?: ButtonSize;
|
|
28
26
|
variant?: ButtonVariant;
|
|
29
27
|
disabled?: boolean;
|
package/lib/input/input.d.ts
CHANGED
|
@@ -19,6 +19,8 @@ interface WCProps {
|
|
|
19
19
|
maxcharcount?: number;
|
|
20
20
|
handletrailingiconclick: boolean;
|
|
21
21
|
width?: string;
|
|
22
|
+
prefix?: string;
|
|
23
|
+
suffix?: string;
|
|
22
24
|
testid?: string;
|
|
23
25
|
min?: string;
|
|
24
26
|
max?: string;
|
|
@@ -48,6 +50,8 @@ export interface Props {
|
|
|
48
50
|
width?: string;
|
|
49
51
|
showCounter?: boolean;
|
|
50
52
|
maxCharCount?: number;
|
|
53
|
+
prefix?: string;
|
|
54
|
+
suffix?: string;
|
|
51
55
|
testId?: string;
|
|
52
56
|
min?: string;
|
|
53
57
|
max?: string;
|
package/package.json
CHANGED