@abgov/react-components 4.0.0-alpha.14 → 4.0.0-alpha.17
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 +6 -3
- package/lib/button/button.d.ts +2 -2
- package/lib/checkbox/checkbox.d.ts +2 -2
- package/lib/circular-progress/circular-progress.d.ts +2 -2
- package/lib/container/container.d.ts +2 -0
- package/lib/divider/divider.d.ts +17 -0
- package/lib/dropdown/dropdown.d.ts +2 -2
- package/lib/flex-column/flex-column.d.ts +16 -0
- package/lib/{flex/row.d.ts → flex-row/flex-row.d.ts} +2 -2
- package/lib/icons/icon.d.ts +1 -1
- package/lib/input/input.d.ts +3 -1
- package/lib/page/page.d.ts +13 -0
- package/lib/page-block/page-block.d.ts +10 -3
- package/lib/textarea/textarea.d.ts +2 -0
- package/package.json +1 -1
- package/react-components.esm.js +268 -239
- package/react-components.umd.js +935 -902
- package/lib/flex/index.d.ts +0 -1
package/index.d.ts
CHANGED
|
@@ -2,11 +2,12 @@
|
|
|
2
2
|
* IMPORTANT: Do NOT export experimental components in this file.
|
|
3
3
|
*/
|
|
4
4
|
import '@abgov/web-components';
|
|
5
|
+
import { GoABadge, GoAInfoBadge, GoAEmergencyBadge, GoASuccessBadge, GoAWarningBadge } from './lib/badge/badge';
|
|
6
|
+
import { GoAInput, GoAInputText, GoAInputPassword, GoAInputDate, GoAInputTime, GoAInputDateTime, GoAInputEmail, GoAInputSearch, GoAInputUrl, GoAInputTel, GoAInputFile, GoAInputMonth, GoAInputNumber, GoAInputRange } from './lib/input/input';
|
|
5
7
|
import { GoAAppHeader } from './lib/app-header/app-header';
|
|
6
8
|
import { GoAAppFooter } from './lib/app-footer/app-footer';
|
|
7
9
|
import { GoAMetaLink } from './lib/app-footer/meta-link';
|
|
8
10
|
import { GoANavigationLink } from './lib/app-footer/navigation-link';
|
|
9
|
-
import { GoABadge, GoAInfoBadge, GoAEmergencyBadge, GoASuccessBadge, GoAWarningBadge } from './lib/badge/badge';
|
|
10
11
|
import { GoAButton } from './lib/button/button';
|
|
11
12
|
import { GoAButtonGroup } from './lib/button-group/button-group';
|
|
12
13
|
import { GoACallout } from './lib/callout/callout';
|
|
@@ -15,12 +16,11 @@ import { GoAChip } from './lib/chip/chip';
|
|
|
15
16
|
import { GoACircularProgress } from './lib/circular-progress/circular-progress';
|
|
16
17
|
import { GoAContainer } from './lib/container/container';
|
|
17
18
|
import { GoADropdown, GoADropdownOption } from './lib/dropdown/dropdown';
|
|
18
|
-
import { GoAFlexRow } from './lib/flex';
|
|
19
|
+
import { GoAFlexRow } from './lib/flex-row/flex-row';
|
|
19
20
|
import { GoAFormItem } from './lib/form';
|
|
20
21
|
import { GoAHeroBanner } from './lib/hero-banner/hero-banner';
|
|
21
22
|
import { GoAHeroBannerActions } from './lib/hero-banner/hero-banner-actions';
|
|
22
23
|
import { GoAIcon, GoAIconButton } from './lib/icons';
|
|
23
|
-
import { GoAInput, GoAInputText, GoAInputPassword, GoAInputDate, GoAInputTime, GoAInputDateTime, GoAInputEmail, GoAInputSearch, GoAInputUrl, GoAInputTel, GoAInputFile, GoAInputMonth, GoAInputNumber, GoAInputRange } from './lib/input/input';
|
|
24
24
|
import { GoAMicrositeHeader } from './lib/microsite-header/microsite-header';
|
|
25
25
|
import { GoAModal } from './lib/modal/modal';
|
|
26
26
|
import { GoANotification } from './lib/notification/notification';
|
|
@@ -31,6 +31,9 @@ import { GoASpinner } from './lib/spinner/spinner';
|
|
|
31
31
|
import { GoATextArea } from './lib/textarea/textarea';
|
|
32
32
|
import type { GoAIconType } from './lib/icons';
|
|
33
33
|
import type { GoABadgeType } from './lib/badge/badge';
|
|
34
|
+
export * from './lib/flex-column/flex-column';
|
|
35
|
+
export * from './lib/page/page';
|
|
36
|
+
export * from './lib/divider/divider';
|
|
34
37
|
export type { GoAIconType };
|
|
35
38
|
export type { GoABadgeType };
|
|
36
39
|
export { GoAAppHeader, GoAAppFooter, GoAMetaLink, GoANavigationLink, GoABadge, GoAButton, GoAButtonGroup, GoACallout, GoACheckbox, GoAChip, GoACircularProgress, 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, GoARadioGroup, GoARadioItem, GoASkeleton, GoASpinner, GoASuccessBadge, GoATextArea, GoAWarningBadge, };
|
package/lib/button/button.d.ts
CHANGED
|
@@ -2,8 +2,8 @@ import React, { FC, ReactNode } from 'react';
|
|
|
2
2
|
import './button.css';
|
|
3
3
|
import { GoAIconType } from '../icons';
|
|
4
4
|
export declare type ButtonType = 'primary' | 'secondary' | 'tertiary' | 'start';
|
|
5
|
-
export declare type ButtonSize = 'compact' | '
|
|
6
|
-
export declare type ButtonVariant = '
|
|
5
|
+
export declare type ButtonSize = 'compact' | '';
|
|
6
|
+
export declare type ButtonVariant = '' | 'danger';
|
|
7
7
|
interface WCProps {
|
|
8
8
|
type?: ButtonType;
|
|
9
9
|
size?: ButtonSize;
|
|
@@ -10,7 +10,7 @@ interface CheckboxProps {
|
|
|
10
10
|
ref: React.RefObject<HTMLElement>;
|
|
11
11
|
id?: string;
|
|
12
12
|
name: string;
|
|
13
|
-
checked
|
|
13
|
+
checked: boolean;
|
|
14
14
|
disabled?: boolean;
|
|
15
15
|
error?: boolean;
|
|
16
16
|
text?: string;
|
|
@@ -19,7 +19,7 @@ interface CheckboxProps {
|
|
|
19
19
|
export interface Props {
|
|
20
20
|
id?: string;
|
|
21
21
|
name: string;
|
|
22
|
-
checked
|
|
22
|
+
checked: boolean;
|
|
23
23
|
disabled?: boolean;
|
|
24
24
|
error?: boolean;
|
|
25
25
|
text?: string;
|
|
@@ -5,7 +5,7 @@ export declare type CircularProgressSize = "small" | "large";
|
|
|
5
5
|
interface WCProps {
|
|
6
6
|
type?: CircularProgressType;
|
|
7
7
|
variant?: CircularProgressVariant;
|
|
8
|
-
size
|
|
8
|
+
size: CircularProgressSize;
|
|
9
9
|
message?: string;
|
|
10
10
|
visible?: string;
|
|
11
11
|
progress?: number;
|
|
@@ -20,7 +20,7 @@ declare global {
|
|
|
20
20
|
export interface CircularProgressProps {
|
|
21
21
|
type?: CircularProgressType;
|
|
22
22
|
variant?: CircularProgressVariant;
|
|
23
|
-
size
|
|
23
|
+
size: CircularProgressSize;
|
|
24
24
|
message?: string;
|
|
25
25
|
visible?: boolean;
|
|
26
26
|
progress?: number;
|
|
@@ -4,6 +4,7 @@ declare type HeadingSize = 'large' | 'small' | 'none';
|
|
|
4
4
|
interface WCProps {
|
|
5
5
|
variant: ContainerVariant;
|
|
6
6
|
headingsize: HeadingSize;
|
|
7
|
+
colored: boolean;
|
|
7
8
|
}
|
|
8
9
|
declare global {
|
|
9
10
|
namespace JSX {
|
|
@@ -16,6 +17,7 @@ interface Props {
|
|
|
16
17
|
headingSize: HeadingSize;
|
|
17
18
|
variant?: ContainerVariant;
|
|
18
19
|
title?: ReactNode;
|
|
20
|
+
colored?: boolean;
|
|
19
21
|
actions?: ReactNode;
|
|
20
22
|
children: ReactNode;
|
|
21
23
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare type DividerSpacing = "small" | "medium" | "large";
|
|
3
|
+
interface WCDividerProps {
|
|
4
|
+
spacing: DividerSpacing;
|
|
5
|
+
}
|
|
6
|
+
declare global {
|
|
7
|
+
namespace JSX {
|
|
8
|
+
interface IntrinsicElements {
|
|
9
|
+
'goa-divider': WCDividerProps & React.HTMLAttributes<HTMLElement>;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
export interface DividerProps {
|
|
14
|
+
spacing: DividerSpacing;
|
|
15
|
+
}
|
|
16
|
+
export declare function GoADivider(props: DividerProps): JSX.Element;
|
|
17
|
+
export default GoADivider;
|
|
@@ -24,8 +24,8 @@ declare global {
|
|
|
24
24
|
}
|
|
25
25
|
interface Props {
|
|
26
26
|
name: string;
|
|
27
|
-
value: string[];
|
|
28
|
-
onChange: (name: string, values: string[]) => void;
|
|
27
|
+
value: string[] | string;
|
|
28
|
+
onChange: (name: string, values: string[] | string) => void;
|
|
29
29
|
disabled?: boolean;
|
|
30
30
|
filterable?: boolean;
|
|
31
31
|
leadingIcon?: GoAIconType;
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
export interface Props {
|
|
13
|
+
gap?: 'small' | 'medium' | 'large';
|
|
14
|
+
}
|
|
15
|
+
export declare const GoAFlexCol: FC<Props>;
|
|
16
|
+
export default GoAFlexCol;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React, { FC } from "react";
|
|
2
2
|
interface WCProps {
|
|
3
|
-
gap
|
|
3
|
+
gap?: 'small' | 'medium' | 'large';
|
|
4
4
|
}
|
|
5
5
|
declare global {
|
|
6
6
|
namespace JSX {
|
|
@@ -10,7 +10,7 @@ declare global {
|
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
12
|
export interface Props {
|
|
13
|
-
gap
|
|
13
|
+
gap?: 'small' | 'medium' | 'large';
|
|
14
14
|
}
|
|
15
15
|
export declare const GoAFlexRow: FC<Props>;
|
|
16
16
|
export default GoAFlexRow;
|
package/lib/icons/icon.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ declare global {
|
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
|
-
export declare type GoAIconType = 'accessibility' | 'add-circle' | 'add' | 'airplane' | 'alarm' | 'albums' | 'alert-circle' | 'alert' | 'american-football' | 'analytics' | 'aperture' | 'apps' | 'archive' | 'arrow-back-circle' | 'arrow-back' | 'arrow-down-circle' | 'arrow-down' | 'arrow-forward-circle' | 'arrow-forward' | 'arrow-redo-circle' | 'arrow-redo' | 'arrow-undo-circle' | 'arrow-undo' | 'arrow-up-circle' | 'arrow-up' | 'at-circle' | 'at' | 'attach' | 'backspace' | 'bag-add' | 'bag-check' | 'bag-handle' | 'bag' | 'bag-remove' | 'balloon' | 'ban' | 'bandage' | 'bar-chart' | 'barbell' | 'barcode' | 'baseball' | 'basket' | 'basketball' | 'battery-charging' | 'battery-dead' | 'battery-full' | 'battery-half' | 'beaker' | 'bed' | 'beer' | 'bicycle' | 'bluetooth' | 'boat' | 'body' | 'bonfire' | 'book' | 'bookmark' | 'bookmarks' | 'bowling-ball' | 'briefcase' | 'browsers' | 'brush' | 'bug' | 'build' | 'bulb' | 'bus' | 'business' | 'cafe' | 'calculator' | 'calendar-clear' | 'calendar-number' | 'calendar' | 'call' | 'camera' | 'camera-reverse' | 'car' | 'car-sport' | 'card' | 'caret-back-circle' | 'caret-back' | 'caret-down-circle' | 'caret-down' | 'caret-forward-circle' | 'caret-forward' | 'caret-up-circle' | 'caret-up' | 'cart' | 'cash' | 'cellular' | 'chatbox-ellipses' | 'chatbox' | 'chatbubble-ellipses' | 'chatbubble' | 'chatbubbles' | 'checkbox' | 'checkmark-circle' | 'checkmark-done-circle' | 'checkmark-done' | 'checkmark' | 'chevron-back-circle' | 'chevron-back' | 'chevron-down-circle' | 'chevron-down' | 'chevron-forward-circle' | 'chevron-forward' | 'chevron-up-circle' | 'chevron-up' | 'clipboard' | 'close-circle' | 'close' | 'cloud-circle' | 'cloud-done' | 'cloud-download' | 'cloud-offline' | 'cloud' | 'cloud-upload' | 'cloudy-night' | 'cloudy' | 'code-download' | 'code' | 'code-slash' | 'code-working' | 'cog' | 'color-fill' | 'color-filter' | 'color-palette' | 'color-wand' | 'compass' | 'construct' | 'contract' | 'contrast' | 'copy' | 'create' | 'crop' | 'cube' | 'cut' | 'desktop' | 'diamond' | 'dice' | 'disc' | 'document-attach' | 'document-lock' | 'document' | 'document-text' | 'documents' | 'download' | 'duplicate' | 'ear' | 'earth' | 'easel' | 'egg' | 'ellipse' | 'ellipsis-horizontal-circle' | 'ellipsis-horizontal' | 'ellipsis-vertical-circle' | 'ellipsis-vertical' | 'enter' | 'exit' | 'expand' | 'extension-puzzle' | 'eye-off' | 'eye' | 'eyedrop' | 'fast-food' | 'female' | 'file-tray-full' | 'file-tray' | 'file-tray-stacked' | 'filenames.ps1' | 'film' | 'filter-circle' | 'filter' | 'finger-print' | 'fish' | 'fitness' | 'flag' | 'flame' | 'flash-off' | 'flash' | 'flashlight' | 'flask' | 'flower' | 'folder-open' | 'folder' | 'football' | 'footsteps' | 'funnel' | 'game-controller' | 'gift' | 'git-branch' | 'git-commit' | 'git-compare' | 'git-merge' | 'git-network' | 'git-pull-request' | 'glasses' | 'globe' | 'golf' | 'grid' | 'hammer' | 'hand-left' | 'hand-right' | 'happy' | 'hardware-chip' | 'headset' | 'heart-circle' | 'heart-dislike-circle' | 'heart-dislike' | 'heart-half' | 'heart' | 'help-buoy' | 'help-circle' | 'help' | 'home' | 'hourglass' | 'ice-cream' | 'id-card' | 'image' | 'images' | 'infinite' | 'information-circle' | 'information' | 'invert-mode' | 'journal' | 'key' | 'keypad' | 'language' | 'laptop' | 'layers' | 'leaf' | 'library' | 'link' | 'list-circle' | 'list' | 'locate' | 'location' | 'lock-closed' | 'lock-open' | 'log-in' | 'log-out' | 'magnet' | 'mail-open' | 'mail' | 'mail-unread' | 'male-female' | 'male' | 'man' | 'map' | 'medal' | 'medical' | 'medkit' | 'megaphone' | 'menu' | 'mic-circle' | 'mic-off-circle' | 'mic-off' | 'mic' | 'moon' | 'move' | 'musical-note' | 'musical-notes' | 'navigate-circle' | 'navigate' | 'newspaper' | 'notifications-circle' | 'notifications-off-circle' | 'notifications-off' | 'notifications' | 'nuclear' | 'nutrition' | 'open' | 'options' | 'paper-plane' | 'partly-sunny' | 'pause-circle' | 'pause' | 'paw' | 'pencil' | 'people-circle' | 'people' | 'person-add' | 'person-circle' | 'person' | 'person-remove' | 'phone-landscape' | 'phone-portrait' | 'pie-chart' | 'pin' | 'pint' | 'pizza' | 'planet' | 'play-back-circle' | 'play-back' | 'play-circle' | 'play-forward-circle' | 'play-forward' | 'play' | 'play-skip-back-circle' | 'play-skip-back' | 'play-skip-forward-circle' | 'play-skip-forward' | 'podium' | 'power' | 'pricetag' | 'pricetags' | 'print' | 'prism' | 'pulse' | 'push' | 'qr-code' | 'radio-button-off' | 'radio-button-on' | 'radio' | 'rainy' | 'reader' | 'receipt' | 'recording' | 'refresh-circle' | 'refresh' | 'reload-circle' | 'reload' | 'remove-circle' | 'remove' | 'reorder-four' | 'reorder-three' | 'reorder-two' | 'repeat' | 'resize' | 'restaurant' | 'return-down-back' | 'return-down-forward' | 'return-up-back' | 'return-up-forward' | 'ribbon' | 'rocket' | 'rose' | 'sad' | 'save' | 'scale' | 'scan-circle' | 'scan' | 'school' | 'search-circle' | 'search' | 'send' | 'server' | 'settings' | 'shapes' | 'share' | 'share-social' | 'shield-checkmark' | 'shield-half' | 'shield' | 'shirt' | 'shuffle' | 'skull' | 'snow' | 'sparkles' | 'speedometer' | 'square' | 'star-half' | 'star' | 'stats-chart' | 'stop-circle' | 'stop' | 'stopwatch' | 'storefront' | 'subway' | 'sunny' | 'swap-horizontal' | 'swap-vertical' | 'sync-circle' | 'sync' | 'tablet-landscape' | 'tablet-portrait' | 'telescope' | 'tennisball' | 'terminal' | 'text' | 'thermometer' | 'thumbs-down' | 'thumbs-up' | 'thunderstorm' | 'ticket' | 'time' | 'timer' | 'today' | 'toggle' | 'trail-sign' | 'train' | 'transgender' | 'trash-bin' | 'trash' | 'trending-down' | 'trending-up' | 'triangle' | 'trophy' | 'tv' | 'umbrella' | 'unlink' | 'videocam-off' | 'videocam' | 'volume-high' | 'volume-low' | 'volume-medium' | 'volume-mute' | 'volume-off' | 'walk' | 'wallet' | 'warning' | 'watch' | 'water' | 'wifi' | 'wine' | 'woman';
|
|
22
|
+
export declare type GoAIconType = 'accessibility' | 'add-circle' | 'add' | 'airplane' | 'alarm' | 'albums' | 'alert-circle' | 'alert' | 'american-football' | 'analytics' | 'aperture' | 'apps' | 'archive' | 'arrow-back-circle' | 'arrow-back' | 'arrow-down-circle' | 'arrow-down' | 'arrow-forward-circle' | 'arrow-forward' | 'arrow-redo-circle' | 'arrow-redo' | 'arrow-undo-circle' | 'arrow-undo' | 'arrow-up-circle' | 'arrow-up' | 'at-circle' | 'at' | 'attach' | 'backspace' | 'bag-add' | 'bag-check' | 'bag-handle' | 'bag' | 'bag-remove' | 'balloon' | 'ban' | 'bandage' | 'bar-chart' | 'barbell' | 'barcode' | 'baseball' | 'basket' | 'basketball' | 'battery-charging' | 'battery-dead' | 'battery-full' | 'battery-half' | 'beaker' | 'bed' | 'beer' | 'bicycle' | 'bluetooth' | 'boat' | 'body' | 'bonfire' | 'book' | 'bookmark' | 'bookmarks' | 'bowling-ball' | 'briefcase' | 'browsers' | 'brush' | 'bug' | 'build' | 'bulb' | 'bus' | 'business' | 'cafe' | 'calculator' | 'calendar-clear' | 'calendar-number' | 'calendar' | 'call' | 'camera' | 'camera-reverse' | 'car' | 'car-sport' | 'card' | 'caret-back-circle' | 'caret-back' | 'caret-down-circle' | 'caret-down' | 'caret-forward-circle' | 'caret-forward' | 'caret-up-circle' | 'caret-up' | 'cart' | 'cash' | 'cellular' | 'chatbox-ellipses' | 'chatbox' | 'chatbubble-ellipses' | 'chatbubble' | 'chatbubbles' | 'checkbox' | 'checkmark-circle' | 'checkmark-done-circle' | 'checkmark-done' | 'checkmark' | 'chevron-back-circle' | 'chevron-back' | 'chevron-down-circle' | 'chevron-down' | 'chevron-forward-circle' | 'chevron-forward' | 'chevron-up-circle' | 'chevron-up' | 'clipboard' | 'close-circle' | 'close' | 'cloud-circle' | 'cloud-done' | 'cloud-download' | 'cloud-offline' | 'cloud' | 'cloud-upload' | 'cloudy-night' | 'cloudy' | 'code-download' | 'code' | 'code-slash' | 'code-working' | 'cog' | 'color-fill' | 'color-filter' | 'color-palette' | 'color-wand' | 'compass' | 'construct' | 'contract' | 'contrast' | 'copy' | 'create' | 'crop' | 'cube' | 'cut' | 'desktop' | 'diamond' | 'dice' | 'disc' | 'document-attach' | 'document-lock' | 'document' | 'document-text' | 'documents' | 'download' | 'duplicate' | 'ear' | 'earth' | 'easel' | 'egg' | 'ellipse' | 'ellipsis-horizontal-circle' | 'ellipsis-horizontal' | 'ellipsis-vertical-circle' | 'ellipsis-vertical' | 'enter' | 'exit' | 'expand' | 'extension-puzzle' | 'eye-off' | 'eye' | 'eyedrop' | 'fast-food' | 'female' | 'file-tray-full' | 'file-tray' | 'file-tray-stacked' | 'filenames.ps1' | 'film' | 'filter-circle' | 'filter' | 'finger-print' | 'fish' | 'fitness' | 'flag' | 'flame' | 'flash-off' | 'flash' | 'flashlight' | 'flask' | 'flower' | 'folder-open' | 'folder' | 'football' | 'footsteps' | 'funnel' | 'game-controller' | 'gift' | 'git-branch' | 'git-commit' | 'git-compare' | 'git-merge' | 'git-network' | 'git-pull-request' | 'glasses' | 'globe' | 'golf' | 'grid' | 'hammer' | 'hand-left' | 'hand-right' | 'happy' | 'hardware-chip' | 'headset' | 'heart-circle' | 'heart-dislike-circle' | 'heart-dislike' | 'heart-half' | 'heart' | 'help-buoy' | 'help-circle' | 'help' | 'home' | 'hourglass' | 'ice-cream' | 'id-card' | 'image' | 'images' | 'infinite' | 'information-circle' | 'information' | 'invert-mode' | 'journal' | 'key' | 'keypad' | 'language' | 'laptop' | 'layers' | 'leaf' | 'library' | 'link' | 'list-circle' | 'list' | 'locate' | 'location' | 'lock-closed' | 'lock-open' | 'log-in' | 'log-out' | 'magnet' | 'mail-open' | 'mail' | 'mail-unread' | 'male-female' | 'male' | 'man' | 'map' | 'medal' | 'medical' | 'medkit' | 'megaphone' | 'menu' | 'mic-circle' | 'mic-off-circle' | 'mic-off' | 'mic' | 'moon' | 'move' | 'musical-note' | 'musical-notes' | 'navigate-circle' | 'navigate' | 'newspaper' | 'notifications-circle' | 'notifications-off-circle' | 'notifications-off' | 'notifications' | 'nuclear' | 'nutrition' | 'open' | 'options' | 'paper-plane' | 'partly-sunny' | 'pause-circle' | 'pause' | 'paw' | 'pencil' | 'people-circle' | 'people' | 'person-add' | 'person-circle' | 'person' | 'person-remove' | 'phone-landscape' | 'phone-portrait' | 'pie-chart' | 'pin' | 'pint' | 'pizza' | 'planet' | 'play-back-circle' | 'play-back' | 'play-circle' | 'play-forward-circle' | 'play-forward' | 'play' | 'play-skip-back-circle' | 'play-skip-back' | 'play-skip-forward-circle' | 'play-skip-forward' | 'podium' | 'power' | 'pricetag' | 'pricetags' | 'print' | 'prism' | 'pulse' | 'push' | 'qr-code' | 'radio-button-off' | 'radio-button-on' | 'radio' | 'rainy' | 'reader' | 'receipt' | 'recording' | 'refresh-circle' | 'refresh' | 'reload-circle' | 'reload' | 'remove-circle' | 'remove' | 'reorder-four' | 'reorder-three' | 'reorder-two' | 'repeat' | 'resize' | 'restaurant' | 'return-down-back' | 'return-down-forward' | 'return-up-back' | 'return-up-forward' | 'ribbon' | 'rocket' | 'rose' | 'sad' | 'save' | 'scale' | 'scan-circle' | 'scan' | 'school' | 'search-circle' | 'search' | 'send' | 'server' | 'settings' | 'shapes' | 'share' | 'share-social' | 'shield-checkmark' | 'shield-half' | 'shield' | 'shirt' | 'shuffle' | 'skull' | 'snow' | 'sparkles' | 'speedometer' | 'square' | 'star-half' | 'star' | 'stats-chart' | 'stop-circle' | 'stop' | 'stopwatch' | 'storefront' | 'subway' | 'sunny' | 'swap-horizontal' | 'swap-vertical' | 'sync-circle' | 'sync' | 'tablet-landscape' | 'tablet-portrait' | 'telescope' | 'tennisball' | 'terminal' | 'text' | 'thermometer' | 'thumbs-down' | 'thumbs-up' | 'thunderstorm' | 'ticket' | 'time' | 'timer' | 'today' | 'toggle' | 'trail-sign' | 'train' | 'transgender' | 'trash-bin' | 'trash' | 'trending-down' | 'trending-up' | 'triangle' | 'trophy' | 'tv' | 'umbrella' | 'unlink' | 'videocam-off' | 'videocam' | 'volume-high' | 'volume-low' | 'volume-medium' | 'volume-mute' | 'volume-off' | 'walk' | 'wallet' | 'warning' | 'watch' | 'water' | 'wifi' | 'wine' | 'woman' | "logo-alipay" | "logo-amazon" | "logo-amplify" | "logo-android" | "logo-angular" | "logo-apple" | "logo-apple-appstore" | "logo-apple-ar" | "logo-behance" | "logo-bitbucket" | "logo-bitcoin" | "logo-buffer" | "logo-capacitor" | "logo-chrome" | "logo-closed-captioning" | "logo-codepen" | "logo-css3" | "logo-designernews" | "logo-deviantart" | "logo-discord" | "logo-docker" | "logo-dribbble" | "logo-dropbox" | "logo-edge" | "logo-electron" | "logo-euro" | "logo-facebook" | "logo-figma" | "logo-firebase" | "logo-firefox" | "logo-flickr" | "logo-foursquare" | "logo-github" | "logo-gitlab" | "logo-google" | "logo-google-playstore" | "logo-hackernews" | "logo-html5" | "logo-instagram" | "logo-ionic" | "logo-ionitron" | "logo-javascript" | "logo-laravel" | "logo-linkedin" | "logo-markdown" | "logo-mastodon" | "logo-medium" | "logo-microsoft" | "logo-no-smoking" | "logo-nodejs" | "logo-npm" | "logo-octocat" | "logo-paypal" | "logo-pinterest" | "logo-playstation" | "logo-pwa" | "logo-python" | "logo-react" | "logo-reddit" | "logo-rss" | "logo-sass" | "logo-skype" | "logo-slack" | "logo-snapchat" | "logo-soundcloud" | "logo-stackoverflow" | "logo-steam" | "logo-stencil" | "logo-tableau" | "logo-tiktok" | "logo-tumblr" | "logo-tux" | "logo-twitch" | "logo-twitter" | "logo-usd" | "logo-venmo" | "logo-vercel" | "logo-vimeo" | "logo-vk" | "logo-vue" | "logo-web-component" | "logo-wechat" | "logo-whatsapp" | "logo-windows" | "logo-wordpress" | "logo-xbox" | "logo-xing" | "logo-yahoo" | "logo-yen" | "logo-youtube";
|
|
23
23
|
export declare type IconSize = 'small' | 'medium' | 'large' | 'xlarge';
|
|
24
24
|
export declare type IconVariant = 'primary' | 'secondary' | 'tertiary';
|
|
25
25
|
export declare type IconTheme = 'outline' | 'filled' | 'sharp';
|
package/lib/input/input.d.ts
CHANGED
|
@@ -66,7 +66,9 @@ export declare const GoAInputUrl: FC<Props>;
|
|
|
66
66
|
export declare const GoAInputTel: FC<Props>;
|
|
67
67
|
export declare const GoAInputFile: FC<Props>;
|
|
68
68
|
export declare const GoAInputMonth: FC<Props>;
|
|
69
|
-
export declare const GoAInputNumber: FC<Props & {
|
|
69
|
+
export declare const GoAInputNumber: FC<Omit<Props, "value"> & {
|
|
70
|
+
value: number;
|
|
71
|
+
} & {
|
|
70
72
|
min?: number;
|
|
71
73
|
max?: number;
|
|
72
74
|
step?: number;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ReactNode } from "react";
|
|
2
|
+
declare global {
|
|
3
|
+
namespace JSX {
|
|
4
|
+
interface IntrinsicElements {
|
|
5
|
+
'goa-page': React.HTMLAttributes<HTMLElement>;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
export interface PageProps {
|
|
10
|
+
children: ReactNode;
|
|
11
|
+
}
|
|
12
|
+
export declare function GoAPage(props: PageProps): JSX.Element;
|
|
13
|
+
export default GoAPage;
|
|
@@ -1,9 +1,16 @@
|
|
|
1
|
-
import React, { FC } from 'react';
|
|
1
|
+
import React, { FC, ReactNode } from 'react';
|
|
2
|
+
export interface WCPageBlockProps {
|
|
3
|
+
width: "full" | string;
|
|
4
|
+
}
|
|
2
5
|
declare global {
|
|
3
6
|
namespace JSX {
|
|
4
7
|
interface IntrinsicElements {
|
|
5
|
-
'goa-page-block': React.HTMLAttributes<HTMLElement>;
|
|
8
|
+
'goa-page-block': WCPageBlockProps & React.HTMLAttributes<HTMLElement>;
|
|
6
9
|
}
|
|
7
10
|
}
|
|
8
11
|
}
|
|
9
|
-
export
|
|
12
|
+
export interface PageBlockProps {
|
|
13
|
+
width: "full" | string;
|
|
14
|
+
children: ReactNode;
|
|
15
|
+
}
|
|
16
|
+
export declare const GoAPageBlock: FC<PageBlockProps>;
|
|
@@ -9,6 +9,7 @@ interface WCProps {
|
|
|
9
9
|
disabled?: boolean;
|
|
10
10
|
showcounter?: boolean;
|
|
11
11
|
maxcharcount?: number;
|
|
12
|
+
width?: string;
|
|
12
13
|
}
|
|
13
14
|
declare global {
|
|
14
15
|
namespace JSX {
|
|
@@ -27,6 +28,7 @@ interface Props {
|
|
|
27
28
|
disabled?: boolean;
|
|
28
29
|
showCounter?: boolean;
|
|
29
30
|
maxCharCount?: number;
|
|
31
|
+
width?: string;
|
|
30
32
|
testId?: string;
|
|
31
33
|
onChange: (name: string, value: string) => void;
|
|
32
34
|
}
|
package/package.json
CHANGED