@abgov/react-components 6.7.0-alpha.1 → 6.7.0-alpha.2
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 +0 -1
- package/index.js +0 -27
- package/index.js.map +1 -1
- package/index.mjs +0 -27
- package/index.mjs.map +1 -1
- package/package.json +1 -1
- package/lib/temporary-notification/temporary-notification.d.ts +0 -33
package/index.d.ts
CHANGED
|
@@ -60,7 +60,6 @@ export * from './lib/table/table';
|
|
|
60
60
|
export * from './lib/table/table-sort-header';
|
|
61
61
|
export * from './lib/tabs/tabs';
|
|
62
62
|
export * from './lib/tab/tab';
|
|
63
|
-
export * from './lib/temporary-notification/temporary-notification';
|
|
64
63
|
export * from './lib/temporary-notification-ctrl/temporary-notification-ctrl';
|
|
65
64
|
export * from './lib/text/text';
|
|
66
65
|
export { GoabTextArea, GoabTextArea as GoabTextarea } from './lib/textarea/textarea';
|
package/index.js
CHANGED
|
@@ -3663,32 +3663,6 @@ function GoabTab({ heading, children }) {
|
|
|
3663
3663
|
children
|
|
3664
3664
|
] });
|
|
3665
3665
|
}
|
|
3666
|
-
const GoabTemporaryNotification = ({
|
|
3667
|
-
message: message2 = "",
|
|
3668
|
-
type = "basic",
|
|
3669
|
-
duration,
|
|
3670
|
-
progress,
|
|
3671
|
-
testId,
|
|
3672
|
-
actionText,
|
|
3673
|
-
visible = true,
|
|
3674
|
-
animationDirection = "down"
|
|
3675
|
-
}) => {
|
|
3676
|
-
const el = react.useRef(null);
|
|
3677
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
3678
|
-
"goa-temp-notification",
|
|
3679
|
-
{
|
|
3680
|
-
ref: el,
|
|
3681
|
-
message: message2,
|
|
3682
|
-
type,
|
|
3683
|
-
duration,
|
|
3684
|
-
progress,
|
|
3685
|
-
testid: testId,
|
|
3686
|
-
"action-text": actionText,
|
|
3687
|
-
visible,
|
|
3688
|
-
"animation-direction": animationDirection
|
|
3689
|
-
}
|
|
3690
|
-
);
|
|
3691
|
-
};
|
|
3692
3666
|
const GoabTemporaryNotificationCtrl = ({
|
|
3693
3667
|
verticalPosition = "bottom",
|
|
3694
3668
|
horizontalPosition = "center",
|
|
@@ -4374,7 +4348,6 @@ exports.GoabTab = GoabTab;
|
|
|
4374
4348
|
exports.GoabTable = GoabTable;
|
|
4375
4349
|
exports.GoabTableSortHeader = GoabTableSortHeader;
|
|
4376
4350
|
exports.GoabTabs = GoabTabs;
|
|
4377
|
-
exports.GoabTemporaryNotification = GoabTemporaryNotification;
|
|
4378
4351
|
exports.GoabTemporaryNotificationCtrl = GoabTemporaryNotificationCtrl;
|
|
4379
4352
|
exports.GoabText = GoabText;
|
|
4380
4353
|
exports.GoabTextArea = GoabTextArea;
|