@abgov/react-components 4.1.0 → 4.3.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.
@@ -1,21 +0,0 @@
1
- import React, { FC } from "react";
2
- declare global {
3
- namespace JSX {
4
- interface IntrinsicElements {
5
- "goa-dropdown-item": DropdownOptionProps & React.HTMLAttributes<HTMLElement>;
6
- }
7
- }
8
- }
9
- interface DropdownOptionProps {
10
- name: string;
11
- value: string;
12
- label?: string;
13
- }
14
- interface Props {
15
- name: string;
16
- value: string;
17
- label?: string;
18
- testId?: string;
19
- }
20
- export declare const GoADropdownOption: FC<Props>;
21
- export default GoADropdownOption;
@@ -1,17 +0,0 @@
1
- import React, { FC } from "react";
2
- interface WCProps {
3
- gap?: "small" | "medium" | "large";
4
- }
5
- declare global {
6
- namespace JSX {
7
- interface IntrinsicElements {
8
- "goa-flex-col": WCProps & React.HTMLAttributes<HTMLElement>;
9
- }
10
- }
11
- }
12
- interface Props {
13
- gap?: "small" | "medium" | "large";
14
- children?: React.ReactNode;
15
- }
16
- export declare const GoAFlexCol: FC<Props>;
17
- export default GoAFlexCol;
@@ -1,17 +0,0 @@
1
- import React, { FC } from "react";
2
- interface WCProps {
3
- gap?: "small" | "medium" | "large";
4
- }
5
- declare global {
6
- namespace JSX {
7
- interface IntrinsicElements {
8
- "goa-flex-row": WCProps & React.HTMLAttributes<HTMLElement>;
9
- }
10
- }
11
- }
12
- interface Props {
13
- gap?: "small" | "medium" | "large";
14
- children?: React.ReactNode;
15
- }
16
- export declare const GoAFlexRow: FC<Props>;
17
- export default GoAFlexRow;
@@ -1,2 +0,0 @@
1
- export * from "./icon";
2
- export * from "./icon-button";