@abgov/react-components 6.10.0-dev.6 → 6.10.0-dev.8
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.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ export * from './lib/hero-banner/hero-banner-actions';
|
|
|
40
40
|
export * from './lib/icon-button/icon-button';
|
|
41
41
|
export * from './lib/icon/icon';
|
|
42
42
|
export * from './lib/input/input';
|
|
43
|
+
export * from './lib/linear-progress/linear-progress';
|
|
43
44
|
export * from './lib/link/link';
|
|
44
45
|
export * from './lib/link-button/link-button';
|
|
45
46
|
export * from './lib/menu-button/menu-button';
|
package/index.js
CHANGED
|
@@ -3342,6 +3342,24 @@ function GoabInputNumber({
|
|
|
3342
3342
|
function GoabInputRange(props) {
|
|
3343
3343
|
return /* @__PURE__ */ jsxRuntime.jsx(GoabInput, { ...props, type: "range" });
|
|
3344
3344
|
}
|
|
3345
|
+
const GoabLinearProgress = ({
|
|
3346
|
+
progress,
|
|
3347
|
+
percentVisibility,
|
|
3348
|
+
ariaLabel,
|
|
3349
|
+
ariaLabelledBy,
|
|
3350
|
+
testId
|
|
3351
|
+
}) => {
|
|
3352
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
3353
|
+
"goa-linear-progress",
|
|
3354
|
+
{
|
|
3355
|
+
progress,
|
|
3356
|
+
"percent-visibility": percentVisibility,
|
|
3357
|
+
"aria-label": ariaLabel,
|
|
3358
|
+
"aria-labelledby": ariaLabelledBy,
|
|
3359
|
+
testid: testId
|
|
3360
|
+
}
|
|
3361
|
+
);
|
|
3362
|
+
};
|
|
3345
3363
|
function GoabLink(props) {
|
|
3346
3364
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
3347
3365
|
"goa-link",
|
|
@@ -4511,6 +4529,7 @@ exports.GoabInputTel = GoabInputTel;
|
|
|
4511
4529
|
exports.GoabInputText = GoabInputText;
|
|
4512
4530
|
exports.GoabInputTime = GoabInputTime;
|
|
4513
4531
|
exports.GoabInputUrl = GoabInputUrl;
|
|
4532
|
+
exports.GoabLinearProgress = GoabLinearProgress;
|
|
4514
4533
|
exports.GoabLink = GoabLink;
|
|
4515
4534
|
exports.GoabMenuAction = GoabMenuAction;
|
|
4516
4535
|
exports.GoabMenuButton = GoabMenuButton;
|