@secondstaxorg/sscomp 1.6.52 → 1.6.57
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 +45 -22
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1518 -1468
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +41 -18
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/LoadingSpinner/LoadingSpinner.d.ts +1 -6
- package/types/components/LoadingSpinner/type.d.ts +6 -0
- package/types/components/Selector/Selector.d.ts +7 -0
- package/types/components/index.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import './style.css';
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* Variant of the loader whether
|
|
6
|
-
*/
|
|
7
|
-
variant: 'primary' | 'error';
|
|
8
|
-
}
|
|
3
|
+
import { LoaderProps } from "./type";
|
|
9
4
|
/**
|
|
10
5
|
* Component for displaying a loading spinner for when data is being loaded
|
|
11
6
|
*/
|
|
@@ -64,3 +64,4 @@ export { default as SSXBar } from './SSXBar/SSXBar';
|
|
|
64
64
|
export { default as BidsCards } from './BidsCards/BidsCard';
|
|
65
65
|
export { default as TablePrimary } from './TablePrimary';
|
|
66
66
|
export { default as TableAlternative } from './TableAlternative';
|
|
67
|
+
export { default as Selector } from './Selector/Selector';
|