@secondstaxorg/sscomp 1.9.65 → 1.9.67
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.es.js +382 -314
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +182 -57
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +383 -315
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/ActionWarning/ActionWarning.d.ts +8 -0
- package/types/components/index.d.ts +1 -0
package/package.json
CHANGED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { ActionSuccessProps } from "./type";
|
|
3
|
+
import '../../styles/typography.css';
|
|
4
|
+
/**
|
|
5
|
+
* Message status of an action whether it succeeded or failed.
|
|
6
|
+
*/
|
|
7
|
+
declare const ActionWarning: (props: ActionSuccessProps) => JSX.Element;
|
|
8
|
+
export default ActionWarning;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { default as Button } from './Button/Button';
|
|
2
2
|
export { default as ActionFailed } from './ActionFailed/ActionFailed';
|
|
3
3
|
export { default as ActionSuccess } from './ActionSuccess/ActionSuccess';
|
|
4
|
+
export { default as ActionWarning } from './ActionWarning/ActionWarning';
|
|
4
5
|
export { default as AppActionsTable } from './AppActionsTable/AppActionsTable';
|
|
5
6
|
export { default as AppFormsTable } from './AppFormsTable/AppFormsTable';
|
|
6
7
|
export { default as AppModulesTable } from './AppModulesTable/AppModulesTable';
|