@abgov/react-components 3.4.0-alpha.36 → 3.4.0-alpha.39
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
CHANGED
|
@@ -21,11 +21,11 @@ import { GoANotification } from './lib/notification/notification';
|
|
|
21
21
|
import { GoAPageBlock } from './lib/page-block/page-block';
|
|
22
22
|
import { GoAPageLoader } from './lib/page-loader/page-loader';
|
|
23
23
|
import { GoARadioGroup, GoARadioItem } from './lib/radio-group/radio-group';
|
|
24
|
-
import {
|
|
24
|
+
import { GoAMicrositeHeader } from './lib/microsite-header/microsite-header';
|
|
25
25
|
import { GoATextArea } from './lib/textarea/textarea';
|
|
26
26
|
import { GoASpinner } from './lib/spinner/spinner';
|
|
27
27
|
import type { GoAIconType } from './lib/icons';
|
|
28
28
|
import type { GoABadgeType } from './lib/badge/badge';
|
|
29
29
|
export type { GoAIconType };
|
|
30
30
|
export type { GoABadgeType };
|
|
31
|
-
export { GoAAppHeader, GoABadge, GoAButton, GoAButtonGroup, GoACallout, GoACheckbox, GoAContainer, GoADropdown, GoADropdownOption, GoAEmergencyBadge, GoAFlexRow, GoAFormItem, GoAHeroBanner, GoAHeroBannerActions, GoAIcon, GoAIconButton, GoAInfoBadge, GoAInput, GoAInputDate, GoAInputDateTime, GoAInputEmail, GoAInputFile, GoAInputMonth, GoAInputNumber, GoAInputPassword, GoAInputRange, GoAInputSearch, GoAInputTel, GoAInputText, GoAInputTime, GoAInputUrl, GoAModal, GoANotification, GoAPageBlock, GoAPageLoader, GoARadioItem, GoARadioGroup,
|
|
31
|
+
export { GoAAppHeader, GoABadge, GoAButton, GoAButtonGroup, GoACallout, GoACheckbox, GoAContainer, GoADropdown, GoADropdownOption, GoAEmergencyBadge, GoAFlexRow, GoAFormItem, GoAHeroBanner, GoAHeroBannerActions, GoAIcon, GoAIconButton, GoAInfoBadge, GoAInput, GoAInputDate, GoAInputDateTime, GoAInputEmail, GoAInputFile, GoAInputMonth, GoAInputNumber, GoAInputPassword, GoAInputRange, GoAInputSearch, GoAInputTel, GoAInputText, GoAInputTime, GoAInputUrl, GoAModal, GoANotification, GoAPageBlock, GoAPageLoader, GoARadioItem, GoARadioGroup, GoAMicrositeHeader, GoASuccessBadge, GoASpinner, GoATextArea, GoAWarningBadge, };
|
|
@@ -2,7 +2,7 @@ import React, { FC } from 'react';
|
|
|
2
2
|
declare global {
|
|
3
3
|
namespace JSX {
|
|
4
4
|
interface IntrinsicElements {
|
|
5
|
-
'goa-
|
|
5
|
+
'goa-microsite-header': WebComponentProps & React.HTMLAttributes<HTMLElement>;
|
|
6
6
|
}
|
|
7
7
|
}
|
|
8
8
|
}
|
|
@@ -17,5 +17,5 @@ export interface HeaderProps {
|
|
|
17
17
|
version?: string;
|
|
18
18
|
feedbackUrl?: string;
|
|
19
19
|
}
|
|
20
|
-
export declare const
|
|
21
|
-
export default
|
|
20
|
+
export declare const GoAMicrositeHeader: FC<HeaderProps>;
|
|
21
|
+
export default GoAMicrositeHeader;
|
package/package.json
CHANGED
package/react-components.esm.js
CHANGED
|
@@ -707,12 +707,12 @@ const GoARadioGroup = ({
|
|
|
707
707
|
}), void 0);
|
|
708
708
|
};
|
|
709
709
|
|
|
710
|
-
const
|
|
710
|
+
const GoAMicrositeHeader = ({
|
|
711
711
|
level,
|
|
712
712
|
version,
|
|
713
713
|
feedbackUrl
|
|
714
714
|
}) => {
|
|
715
|
-
return jsx("goa-
|
|
715
|
+
return jsx("goa-microsite-header", {
|
|
716
716
|
level: level,
|
|
717
717
|
version: version,
|
|
718
718
|
feedbackurl: feedbackUrl
|
|
@@ -778,4 +778,4 @@ const GoASpinner = ({
|
|
|
778
778
|
}, void 0);
|
|
779
779
|
};
|
|
780
780
|
|
|
781
|
-
export { GoAAppHeader, GoABadge, GoAButton, GoAButtonGroup, GoACallout, GoACheckbox, GoAContainer, GoADropdown, GoADropdownOption, GoAEmergencyBadge, GoAFlexRow, GoAFormItem, GoAHeroBanner, GoAHeroBannerActions, GoAIcon, GoAIconButton, GoAInfoBadge, GoAInput, GoAInputDate, GoAInputDateTime, GoAInputEmail, GoAInputFile, GoAInputMonth, GoAInputNumber, GoAInputPassword, GoAInputRange, GoAInputSearch, GoAInputTel, GoAInputText, GoAInputTime, GoAInputUrl, GoAModal, GoANotification, GoAPageBlock, GoAPageLoader, GoARadioGroup, GoARadioItem,
|
|
781
|
+
export { GoAAppHeader, GoABadge, GoAButton, GoAButtonGroup, GoACallout, GoACheckbox, GoAContainer, GoADropdown, GoADropdownOption, GoAEmergencyBadge, GoAFlexRow, GoAFormItem, GoAHeroBanner, GoAHeroBannerActions, GoAIcon, GoAIconButton, GoAInfoBadge, GoAInput, GoAInputDate, GoAInputDateTime, GoAInputEmail, GoAInputFile, GoAInputMonth, GoAInputNumber, GoAInputPassword, GoAInputRange, GoAInputSearch, GoAInputTel, GoAInputText, GoAInputTime, GoAInputUrl, GoAMicrositeHeader, GoAModal, GoANotification, GoAPageBlock, GoAPageLoader, GoARadioGroup, GoARadioItem, GoASpinner, GoASuccessBadge, GoATextArea, GoAWarningBadge };
|
package/react-components.umd.js
CHANGED
|
@@ -716,11 +716,11 @@
|
|
|
716
716
|
}), void 0);
|
|
717
717
|
};
|
|
718
718
|
|
|
719
|
-
var
|
|
719
|
+
var GoAMicrositeHeader = function GoAMicrositeHeader(_a) {
|
|
720
720
|
var level = _a.level,
|
|
721
721
|
version = _a.version,
|
|
722
722
|
feedbackUrl = _a.feedbackUrl;
|
|
723
|
-
return jsxRuntime.jsx("goa-
|
|
723
|
+
return jsxRuntime.jsx("goa-microsite-header", {
|
|
724
724
|
level: level,
|
|
725
725
|
version: version,
|
|
726
726
|
feedbackurl: feedbackUrl
|
|
@@ -814,13 +814,13 @@
|
|
|
814
814
|
exports.GoAInputText = GoAInputText;
|
|
815
815
|
exports.GoAInputTime = GoAInputTime;
|
|
816
816
|
exports.GoAInputUrl = GoAInputUrl;
|
|
817
|
+
exports.GoAMicrositeHeader = GoAMicrositeHeader;
|
|
817
818
|
exports.GoAModal = GoAModal;
|
|
818
819
|
exports.GoANotification = GoANotification;
|
|
819
820
|
exports.GoAPageBlock = GoAPageBlock;
|
|
820
821
|
exports.GoAPageLoader = GoAPageLoader;
|
|
821
822
|
exports.GoARadioGroup = GoARadioGroup;
|
|
822
823
|
exports.GoARadioItem = GoARadioItem;
|
|
823
|
-
exports.GoAServiceLevelHeader = GoAServiceLevelHeader;
|
|
824
824
|
exports.GoASpinner = GoASpinner;
|
|
825
825
|
exports.GoASuccessBadge = GoASuccessBadge;
|
|
826
826
|
exports.GoATextArea = GoATextArea;
|