@abgov/react-components 6.10.0-dev.5 → 6.10.0-dev.7
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.d.ts +1 -0
- package/index.js +19 -0
- package/index.js.map +1 -1
- package/index.mjs +19 -0
- package/index.mjs.map +1 -1
- package/lib/linear-progress/linear-progress.d.ts +23 -0
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -3340,6 +3340,24 @@ function GoabInputNumber({
|
|
|
3340
3340
|
function GoabInputRange(props) {
|
|
3341
3341
|
return /* @__PURE__ */ jsx(GoabInput, { ...props, type: "range" });
|
|
3342
3342
|
}
|
|
3343
|
+
const GoabLinearProgress = ({
|
|
3344
|
+
progress,
|
|
3345
|
+
percentVisibility,
|
|
3346
|
+
ariaLabel,
|
|
3347
|
+
ariaLabelledBy,
|
|
3348
|
+
testId
|
|
3349
|
+
}) => {
|
|
3350
|
+
return /* @__PURE__ */ jsx(
|
|
3351
|
+
"goa-linear-progress",
|
|
3352
|
+
{
|
|
3353
|
+
progress,
|
|
3354
|
+
"percent-visibility": percentVisibility,
|
|
3355
|
+
"aria-label": ariaLabel,
|
|
3356
|
+
"aria-labelledby": ariaLabelledBy,
|
|
3357
|
+
testid: testId
|
|
3358
|
+
}
|
|
3359
|
+
);
|
|
3360
|
+
};
|
|
3343
3361
|
function GoabLink(props) {
|
|
3344
3362
|
return /* @__PURE__ */ jsx(
|
|
3345
3363
|
"goa-link",
|
|
@@ -4510,6 +4528,7 @@ export {
|
|
|
4510
4528
|
GoabInputText,
|
|
4511
4529
|
GoabInputTime,
|
|
4512
4530
|
GoabInputUrl,
|
|
4531
|
+
GoabLinearProgress,
|
|
4513
4532
|
GoabLink,
|
|
4514
4533
|
GoabMenuAction,
|
|
4515
4534
|
GoabMenuButton,
|