@arc-ui/components 11.11.0 → 11.13.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.
@@ -92,6 +92,10 @@ export interface ButtonProps extends ButtonElementProps, LinkElementProps {
92
92
  * Optional property to provide component Ref
93
93
  */
94
94
  ref?: Ref;
95
+ /**
96
+ * How should a Button icon be displayed?
97
+ */
98
+ size?: "s" | "m" | "l";
95
99
  /**
96
100
  * Optional supporting text for the Button.
97
101
  */
@@ -15,6 +15,7 @@ export interface SelectProps extends Omit<FormControlProps, "children" | "elemen
15
15
  onChange?: (value: string) => void;
16
16
  onBlur?: (e: FocusEvent) => void;
17
17
  onOpenChange?: () => void;
18
+ selectSize?: "s" | "m" | "l";
18
19
  isFluid?: boolean;
19
20
  isDisabled?: boolean;
20
21
  isDefaultOpen?: boolean;
@@ -58,6 +58,10 @@ export interface TextInputProps extends Omit<FormControlProps, "children" | "ele
58
58
  * Validation regex pattern.
59
59
  */
60
60
  pattern?: string;
61
+ /**
62
+ * Size of the input.
63
+ */
64
+ inputSize?: "s" | "m" | "l";
61
65
  /**
62
66
  * Enable button to toggle TextInput type from `Selected Type` to `Text`
63
67
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arc-ui/components",
3
- "version": "11.11.0",
3
+ "version": "11.13.0",
4
4
  "homepage": "https://ui.digital-ent-int.bt.com",
5
5
  "author": "BT Enterprise Digital UI Team <ui-digital-ent-int@bt.com>",
6
6
  "main": "./dist/index.js",