@abgov/react-components 4.0.0-alpha.9 → 4.1.0

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.
Files changed (52) hide show
  1. package/README.md +16 -44
  2. package/experimental/package.json +2 -1
  3. package/index.d.ts +34 -36
  4. package/lib/app-header/app-header.d.ts +7 -4
  5. package/lib/badge/badge.d.ts +6 -7
  6. package/lib/button/button.d.ts +9 -11
  7. package/lib/button-group/button-group.d.ts +9 -5
  8. package/lib/callout/callout.d.ts +6 -6
  9. package/lib/card/card-actions.d.ts +2 -2
  10. package/lib/card/card-content.d.ts +2 -2
  11. package/lib/card/card-group.d.ts +2 -2
  12. package/lib/card/card-image.d.ts +2 -2
  13. package/lib/card/card.d.ts +2 -2
  14. package/lib/card/index.d.ts +5 -5
  15. package/lib/checkbox/checkbox.d.ts +5 -4
  16. package/lib/chip/chip.d.ts +7 -4
  17. package/lib/circular-progress/circular-progress.d.ts +3 -6
  18. package/lib/container/container.d.ts +12 -9
  19. package/lib/divider/divider.d.ts +17 -0
  20. package/lib/dropdown/dropdown-option.d.ts +1 -1
  21. package/lib/dropdown/dropdown.d.ts +11 -7
  22. package/lib/flex-column/flex-column.d.ts +17 -0
  23. package/lib/{flex/row.d.ts → flex-row/flex-row.d.ts} +5 -4
  24. package/lib/footer/footer.d.ts +17 -0
  25. package/lib/footer-meta-section/footer-meta-section.d.ts +13 -0
  26. package/lib/footer-nav-section/footer-nav-section.d.ts +19 -0
  27. package/lib/form/form-item.d.ts +6 -4
  28. package/lib/form/index.d.ts +1 -1
  29. package/lib/hero-banner/hero-banner-actions.d.ts +5 -3
  30. package/lib/hero-banner/hero-banner.d.ts +5 -4
  31. package/lib/icons/icon-button.d.ts +8 -6
  32. package/lib/icons/icon.d.ts +8 -8
  33. package/lib/icons/index.d.ts +2 -2
  34. package/lib/input/input.d.ts +53 -37
  35. package/lib/microsite-header/microsite-header.d.ts +5 -5
  36. package/lib/modal/modal.d.ts +10 -4
  37. package/lib/notification/notification.d.ts +4 -4
  38. package/lib/one-column-layout/one-column-layout.d.ts +13 -0
  39. package/lib/page-block/page-block.d.ts +10 -3
  40. package/lib/radio-group/radio-group.d.ts +5 -4
  41. package/lib/radio-group/radio.d.ts +3 -2
  42. package/lib/skeleton/skeleton.d.ts +10 -5
  43. package/lib/spinner/spinner.d.ts +3 -3
  44. package/lib/textarea/textarea.d.ts +4 -2
  45. package/lib/two-column-layout/two-column-layout.d.ts +22 -0
  46. package/package.json +6 -6
  47. package/react-components.esm.js +14282 -167
  48. package/react-components.umd.js +15083 -921
  49. package/lib/app-footer/app-footer.d.ts +0 -26
  50. package/lib/app-footer/meta-link.d.ts +0 -20
  51. package/lib/app-footer/navigation-link.d.ts +0 -22
  52. package/lib/flex/index.d.ts +0 -1
@@ -1,26 +0,0 @@
1
- import React, { FC } from 'react';
2
- interface WCProps {
3
- id?: string;
4
- appurl?: string;
5
- title?: string;
6
- copyrighturl?: string;
7
- copyrighttext?: string;
8
- multicolumnsectionnames?: string;
9
- }
10
- declare global {
11
- namespace JSX {
12
- interface IntrinsicElements {
13
- 'goa-app-footer': WCProps & React.HTMLAttributes<HTMLElement>;
14
- }
15
- }
16
- }
17
- export interface Props {
18
- id?: string;
19
- appUrl?: string;
20
- title?: string;
21
- copyrightUrl?: string;
22
- copyrightText?: string;
23
- multiColumnSectionNames?: string;
24
- }
25
- export declare const GoAAppFooter: FC<Props>;
26
- export default GoAAppFooter;
@@ -1,20 +0,0 @@
1
- import React, { FC } from 'react';
2
- interface WCProps {
3
- footerid?: string;
4
- url: string;
5
- title: string;
6
- }
7
- declare global {
8
- namespace JSX {
9
- interface IntrinsicElements {
10
- 'goa-meta-link': WCProps & React.HTMLAttributes<HTMLElement>;
11
- }
12
- }
13
- }
14
- interface Props {
15
- footerId?: string;
16
- url: string;
17
- title: string;
18
- }
19
- export declare const GoAMetaLink: FC<Props>;
20
- export default GoAMetaLink;
@@ -1,22 +0,0 @@
1
- import React, { FC } from 'react';
2
- interface WCProps {
3
- footerid?: string;
4
- url: string;
5
- title: string;
6
- section?: string;
7
- }
8
- declare global {
9
- namespace JSX {
10
- interface IntrinsicElements {
11
- 'goa-navigation-link': WCProps & React.HTMLAttributes<HTMLElement>;
12
- }
13
- }
14
- }
15
- interface Props {
16
- footerId?: string;
17
- url: string;
18
- title: string;
19
- section?: string;
20
- }
21
- export declare const GoANavigationLink: FC<Props>;
22
- export default GoANavigationLink;
@@ -1 +0,0 @@
1
- export { GoAFlexRow } from './row';