sag_components 2.0.0-beta10 → 2.0.0-beta12
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 +16 -10
- package/dist/index.esm.js +25336 -76415
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +25178 -76275
- package/dist/index.js.map +1 -1
- package/dist/types/components/BannerEventBoxList/BannerEventBoxList.d.ts +0 -3
- package/dist/types/components/CollapseHeader/CollapseHeader.d.ts +13 -1
- package/dist/types/components/DropdownNew/DropdownNew.d.ts +1 -1
- package/dist/types/components/FilterPanel/FilterPanel.d.ts +2 -5
- package/dist/types/components/QuickFilter/QuickFilter.d.ts +1 -1
- package/dist/types/components/QuickFilterDropdownSingle/SagIconButton/SagIconButton.d.ts +45 -0
- package/dist/types/components/QuickFilterDropdownSingle/SagIconButton/SagIconButton.stories.d.ts +178 -0
- package/dist/types/components/QuickFilterDropdownSingle/SagIconButton/SagIconButton.style.d.ts +2 -0
- package/dist/types/components/Tooltip/Tooltip.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -273,10 +273,7 @@ declare namespace FilterPanel {
|
|
|
273
273
|
label: PropTypes.Requireable<string>;
|
|
274
274
|
labelEmptyValue: PropTypes.Requireable<string>;
|
|
275
275
|
name: PropTypes.Requireable<string>;
|
|
276
|
-
periodPickerSelectedValue: PropTypes.Requireable<
|
|
277
|
-
value: PropTypes.Requireable<string>;
|
|
278
|
-
label: PropTypes.Requireable<string>;
|
|
279
|
-
}> | null | undefined)[]>;
|
|
276
|
+
periodPickerSelectedValue: PropTypes.Requireable<string>;
|
|
280
277
|
selectedValue: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
281
278
|
value: PropTypes.Requireable<string>;
|
|
282
279
|
label: PropTypes.Requireable<string>;
|
|
@@ -299,7 +296,7 @@ declare namespace FilterPanel {
|
|
|
299
296
|
const okButtonBackgroundColor: PropTypes.Requireable<string>;
|
|
300
297
|
const okButtonHoverColor: PropTypes.Requireable<string>;
|
|
301
298
|
const resetButtonHoverColor: PropTypes.Requireable<string>;
|
|
302
|
-
const borderColor: string
|
|
299
|
+
const borderColor: PropTypes.Requireable<string>;
|
|
303
300
|
const onOkClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
304
301
|
const onResetClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
305
302
|
const onItemValueChanged: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -480,7 +477,6 @@ declare namespace BannerEventBoxList {
|
|
|
480
477
|
const disableToggle: PropTypes.Requireable<boolean>;
|
|
481
478
|
const children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
482
479
|
const bannerWidth: PropTypes.Requireable<string>;
|
|
483
|
-
const loaderColor: PropTypes.Requireable<string>;
|
|
484
480
|
const showDraft: PropTypes.Requireable<boolean>;
|
|
485
481
|
}
|
|
486
482
|
namespace defaultProps {
|
|
@@ -526,8 +522,6 @@ declare namespace BannerEventBoxList {
|
|
|
526
522
|
export { children_1 as children };
|
|
527
523
|
const bannerWidth_1: string;
|
|
528
524
|
export { bannerWidth_1 as bannerWidth };
|
|
529
|
-
const loaderColor_1: string;
|
|
530
|
-
export { loaderColor_1 as loaderColor };
|
|
531
525
|
const showDraft_1: boolean;
|
|
532
526
|
export { showDraft_1 as showDraft };
|
|
533
527
|
}
|
|
@@ -562,7 +556,19 @@ declare namespace CollapseHeader {
|
|
|
562
556
|
const viewCreativeRetailersData: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
563
557
|
label: PropTypes.Requireable<string>;
|
|
564
558
|
}> | null | undefined)[]>;
|
|
565
|
-
const data: PropTypes.Requireable<PropTypes.InferProps<
|
|
559
|
+
const data: PropTypes.Requireable<PropTypes.InferProps<{
|
|
560
|
+
eventType: PropTypes.Requireable<string>;
|
|
561
|
+
retailer: PropTypes.Requireable<string>;
|
|
562
|
+
eventDescription: PropTypes.Requireable<string>;
|
|
563
|
+
objectivesDescription: PropTypes.Requireable<string>;
|
|
564
|
+
eventDatesValue: PropTypes.Requireable<string>;
|
|
565
|
+
externalEventDescription: PropTypes.Requireable<string>;
|
|
566
|
+
externalEventID: PropTypes.Requireable<string>;
|
|
567
|
+
storeType: PropTypes.Requireable<string>;
|
|
568
|
+
category: PropTypes.Requireable<string>;
|
|
569
|
+
supplier: PropTypes.Requireable<string>;
|
|
570
|
+
brand: PropTypes.Requireable<string>;
|
|
571
|
+
}>>;
|
|
566
572
|
const showViewCreativeButton: PropTypes.Requireable<boolean>;
|
|
567
573
|
const viewCreativeOnClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
568
574
|
const descriptionTitle: PropTypes.Requireable<string>;
|
|
@@ -634,7 +640,7 @@ declare function QuickFilter({ hoverColor, multipleSelection, xIconShow, disable
|
|
|
634
640
|
placeHolder?: string | undefined;
|
|
635
641
|
width?: string | undefined;
|
|
636
642
|
checkBoxColor?: string | undefined;
|
|
637
|
-
onChange?: (() => void) | undefined;
|
|
643
|
+
onChange?: ((event: any) => void) | undefined;
|
|
638
644
|
options?: any[] | undefined;
|
|
639
645
|
selectedValue?: any[] | undefined;
|
|
640
646
|
}): react_jsx_runtime.JSX.Element;
|