@abgov/react-components 5.0.0-alpha.12 → 5.0.0-alpha.14
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/index.js +4 -0
- package/index.js.map +1 -1
- package/index.mjs +4 -0
- package/index.mjs.map +1 -1
- package/lib/button/button.d.ts +3 -1
- package/lib/textarea/textarea.d.ts +3 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -255,6 +255,7 @@ function GoAButton({
|
|
|
255
255
|
variant,
|
|
256
256
|
leadingIcon,
|
|
257
257
|
trailingIcon,
|
|
258
|
+
width,
|
|
258
259
|
testId,
|
|
259
260
|
children,
|
|
260
261
|
onClick,
|
|
@@ -290,6 +291,7 @@ function GoAButton({
|
|
|
290
291
|
disabled,
|
|
291
292
|
leadingicon: leadingIcon,
|
|
292
293
|
trailingicon: trailingIcon,
|
|
294
|
+
width,
|
|
293
295
|
testid: testId,
|
|
294
296
|
mt,
|
|
295
297
|
mr,
|
|
@@ -3425,6 +3427,7 @@ function GoATextarea({
|
|
|
3425
3427
|
value,
|
|
3426
3428
|
placeholder,
|
|
3427
3429
|
rows,
|
|
3430
|
+
readOnly,
|
|
3428
3431
|
disabled,
|
|
3429
3432
|
countBy,
|
|
3430
3433
|
maxCount,
|
|
@@ -3477,6 +3480,7 @@ function GoATextarea({
|
|
|
3477
3480
|
placeholder,
|
|
3478
3481
|
value,
|
|
3479
3482
|
rows,
|
|
3483
|
+
readOnly,
|
|
3480
3484
|
disabled,
|
|
3481
3485
|
countby: countBy,
|
|
3482
3486
|
maxcount: maxCount,
|