@bcgov-sso/common-react-components 1.18.0 → 1.18.3
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/dist/cjs/index.js +61 -48
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Alert/Alert.d.ts +4 -1
- package/dist/esm/index.js +61 -48
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Alert/Alert.d.ts +4 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -8,12 +8,15 @@ export declare const styles: {
|
|
|
8
8
|
danger: {
|
|
9
9
|
container: string;
|
|
10
10
|
};
|
|
11
|
+
info: {
|
|
12
|
+
container: string;
|
|
13
|
+
};
|
|
11
14
|
success: {
|
|
12
15
|
container: string;
|
|
13
16
|
};
|
|
14
17
|
};
|
|
15
18
|
};
|
|
16
|
-
declare type Variant = 'danger' | 'success';
|
|
19
|
+
declare type Variant = 'danger' | 'success' | 'info';
|
|
17
20
|
interface Props {
|
|
18
21
|
variant?: Variant;
|
|
19
22
|
content?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ declare function NumberedContents({ number, title, children, showLine, circleDia
|
|
|
24
24
|
|
|
25
25
|
declare const Button: (props: _button_inc_component_library_Button.Props) => JSX.Element;
|
|
26
26
|
|
|
27
|
-
declare type Variant = 'danger' | 'success';
|
|
27
|
+
declare type Variant = 'danger' | 'success' | 'info';
|
|
28
28
|
interface Props {
|
|
29
29
|
variant?: Variant;
|
|
30
30
|
content?: string;
|