@seeqdev/qomponents 0.0.172 → 0.0.174
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/index.esm.js +406 -374
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +406 -374
- package/dist/index.js.map +1 -1
- package/dist/src/Alert/Alert.stories.d.ts +1 -0
- package/dist/src/Alert/Alert.types.d.ts +1 -1
- package/dist/styles.css +2769 -3418
- package/package.json +15 -12
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const ThemedAlert: any;
|
|
2
2
|
export declare const WarningAlert: any;
|
|
3
3
|
export declare const DangerAlert: any;
|
|
4
|
+
export declare const FormulaErrorAlert: any;
|
|
4
5
|
export declare const GrayAlert: any;
|
|
5
6
|
export declare const AllAlertsVariants: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -33,7 +33,7 @@ interface Props {
|
|
|
33
33
|
* - `gray`: Neutral gray styling for general information
|
|
34
34
|
* - `theme`: Uses the current theme colors for contextual information
|
|
35
35
|
*/
|
|
36
|
-
variant: 'danger' | 'theme' | 'warning' | 'gray';
|
|
36
|
+
variant: 'danger' | 'theme' | 'warning' | 'gray' | 'formulaError';
|
|
37
37
|
/**
|
|
38
38
|
* Test ID attribute for the alert container element.
|
|
39
39
|
* Used for automated testing and element selection in test suites.
|