@edvisor/product-language 0.10.24 → 0.10.26
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.
|
@@ -62,6 +62,7 @@ export declare const IconListMinor: {
|
|
|
62
62
|
readonly calendar: JSX.Element;
|
|
63
63
|
readonly campground: JSX.Element;
|
|
64
64
|
readonly 'cart-shopping': JSX.Element;
|
|
65
|
+
readonly 'cart-shopping-plus': JSX.Element;
|
|
65
66
|
readonly 'chart-pie-simple': JSX.Element;
|
|
66
67
|
readonly check: JSX.Element;
|
|
67
68
|
readonly 'chevron-down-solid': JSX.Element;
|
|
@@ -90,6 +91,7 @@ export declare const IconListMinor: {
|
|
|
90
91
|
readonly h1: JSX.Element;
|
|
91
92
|
readonly 'heart-solid': JSX.Element;
|
|
92
93
|
readonly heart: JSX.Element;
|
|
94
|
+
readonly 'heart-on-media': JSX.Element;
|
|
93
95
|
readonly instagram: JSX.Element;
|
|
94
96
|
readonly italic: JSX.Element;
|
|
95
97
|
readonly link: JSX.Element;
|
|
@@ -128,5 +130,6 @@ export declare const IconListMinor: {
|
|
|
128
130
|
readonly wifi: JSX.Element;
|
|
129
131
|
readonly xmark: JSX.Element;
|
|
130
132
|
readonly youtube: JSX.Element;
|
|
133
|
+
readonly 'virus-covid': JSX.Element;
|
|
131
134
|
};
|
|
132
135
|
export declare type IconNames = keyof typeof IconListMajor & keyof typeof IconListMajor;
|
|
@@ -62,6 +62,7 @@ export declare const IconMinor: {
|
|
|
62
62
|
Calendar: (props: HTMLAttributes<HTMLElement>) => JSX.Element;
|
|
63
63
|
Campground: (props: HTMLAttributes<HTMLElement>) => JSX.Element;
|
|
64
64
|
CartShopping: (props: HTMLAttributes<HTMLElement>) => JSX.Element;
|
|
65
|
+
CartShoppingPlus: (props: HTMLAttributes<HTMLElement>) => JSX.Element;
|
|
65
66
|
ChartPieSimple: (props: HTMLAttributes<HTMLElement>) => JSX.Element;
|
|
66
67
|
Check: (props: HTMLAttributes<HTMLElement>) => JSX.Element;
|
|
67
68
|
ChevronDownSolid: (props: HTMLAttributes<HTMLElement>) => JSX.Element;
|
|
@@ -90,6 +91,7 @@ export declare const IconMinor: {
|
|
|
90
91
|
H1: (props: HTMLAttributes<HTMLElement>) => JSX.Element;
|
|
91
92
|
Heart: (props: HTMLAttributes<HTMLElement>) => JSX.Element;
|
|
92
93
|
HeartSolid: (props: HTMLAttributes<HTMLElement>) => JSX.Element;
|
|
94
|
+
HeartOnMedia: (props: HTMLAttributes<HTMLElement>) => JSX.Element;
|
|
93
95
|
Instagram: (props: HTMLAttributes<HTMLElement>) => JSX.Element;
|
|
94
96
|
Italic: (props: HTMLAttributes<HTMLElement>) => JSX.Element;
|
|
95
97
|
Link: (props: HTMLAttributes<HTMLElement>) => JSX.Element;
|
|
@@ -128,4 +130,5 @@ export declare const IconMinor: {
|
|
|
128
130
|
Wifi: (props: HTMLAttributes<HTMLElement>) => JSX.Element;
|
|
129
131
|
Xmark: (props: HTMLAttributes<HTMLElement>) => JSX.Element;
|
|
130
132
|
Youtube: (props: HTMLAttributes<HTMLElement>) => JSX.Element;
|
|
133
|
+
VirusCovid: (props: HTMLAttributes<HTMLElement>) => JSX.Element;
|
|
131
134
|
};
|
|
@@ -8,6 +8,7 @@ export interface IModalProps extends IModalBaseProps {
|
|
|
8
8
|
secondaryButtonLabel?: string;
|
|
9
9
|
onPrimaryAction?: () => void;
|
|
10
10
|
onSecondaryAction?: () => void;
|
|
11
|
+
isPrimaryButtonDisabled?: boolean;
|
|
11
12
|
}
|
|
12
13
|
export declare type IModal = IModalProps & InputHTMLAttributes<HTMLInputElement>;
|
|
13
14
|
export declare const Modal: FC<IModal>;
|