@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.mjs
CHANGED
|
@@ -253,6 +253,7 @@ function GoAButton({
|
|
|
253
253
|
variant,
|
|
254
254
|
leadingIcon,
|
|
255
255
|
trailingIcon,
|
|
256
|
+
width,
|
|
256
257
|
testId,
|
|
257
258
|
children,
|
|
258
259
|
onClick,
|
|
@@ -288,6 +289,7 @@ function GoAButton({
|
|
|
288
289
|
disabled,
|
|
289
290
|
leadingicon: leadingIcon,
|
|
290
291
|
trailingicon: trailingIcon,
|
|
292
|
+
width,
|
|
291
293
|
testid: testId,
|
|
292
294
|
mt,
|
|
293
295
|
mr,
|
|
@@ -3423,6 +3425,7 @@ function GoATextarea({
|
|
|
3423
3425
|
value,
|
|
3424
3426
|
placeholder,
|
|
3425
3427
|
rows,
|
|
3428
|
+
readOnly,
|
|
3426
3429
|
disabled,
|
|
3427
3430
|
countBy,
|
|
3428
3431
|
maxCount,
|
|
@@ -3475,6 +3478,7 @@ function GoATextarea({
|
|
|
3475
3478
|
placeholder,
|
|
3476
3479
|
value,
|
|
3477
3480
|
rows,
|
|
3481
|
+
readOnly,
|
|
3478
3482
|
disabled,
|
|
3479
3483
|
countby: countBy,
|
|
3480
3484
|
maxcount: maxCount,
|