sag_components 2.0.0-beta138 → 2.0.0-beta139
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.d.ts +2 -2
- package/dist/index.esm.js +77 -72
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +77 -72
- package/dist/index.js.map +1 -1
- package/dist/types/components/QuickFilterCards/QuickFilterCards.d.ts +2 -2
- package/dist/types/components/QuickFilterCards/QuickFilterCards.stories.d.ts +2 -2
- package/dist/types/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export function
|
|
1
|
+
export function QuickFilterCards({ data, onCardToggle, width, }: {
|
|
2
2
|
data?: any[];
|
|
3
3
|
onCardToggle?: () => void;
|
|
4
4
|
width?: string;
|
|
5
5
|
}): import("react/jsx-runtime").JSX.Element;
|
|
6
|
-
export default
|
|
6
|
+
export default QuickFilterCards;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare namespace _default {
|
|
2
2
|
export const title: string;
|
|
3
|
-
export {
|
|
3
|
+
export { QuickFilterCards as component };
|
|
4
4
|
export const tags: string[];
|
|
5
5
|
export namespace argTypes {
|
|
6
6
|
namespace data {
|
|
@@ -39,4 +39,4 @@ export const Default: any;
|
|
|
39
39
|
export const PartialSelection: any;
|
|
40
40
|
export const ZeroValues: any;
|
|
41
41
|
export const CustomWidth: any;
|
|
42
|
-
import
|
|
42
|
+
import QuickFilterCards from "./QuickFilterCards";
|
package/dist/types/index.d.ts
CHANGED
|
@@ -57,5 +57,5 @@ export { default as ModalDrawer } from "./components/ModalDrawer/ModalDrawer.jsx
|
|
|
57
57
|
export { default as OverlayDropdown } from "./components/OverlayDropdown/OverlayDropdown.jsx";
|
|
58
58
|
export { default as MessageBox } from "./components/MessageBox/MessageBox.jsx";
|
|
59
59
|
export { default as ToasterMessageBox } from "./components/ToasterMessageBox/ToasterMessageBox.jsx";
|
|
60
|
-
export { default as
|
|
60
|
+
export { default as QuickFilterCards } from "./components/QuickFilterCards/QuickFilterCards.jsx";
|
|
61
61
|
export { default as RangePicker } from "./components/RangePicker/RangePicker.jsx";
|