sag_components 2.0.0-beta333 → 2.0.0-beta335
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 +9 -1
- package/dist/index.esm.js +399 -111
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +399 -111
- package/dist/index.js.map +1 -1
- package/dist/types/components/RangePicker/RangeDatePicker.d.ts +2 -1
- package/dist/types/components/RangePicker/RangePicker.d.ts +9 -1
- package/dist/types/components/RangePicker/RangePicker.stories.d.ts +22 -0
- package/dist/types/components/Table/Table.stories.d.ts +198 -142
- package/dist/types/components/Table/Table.style.d.ts +1 -0
- package/dist/types/components/Table/TableBody.styles.d.ts +3 -0
- package/dist/types/components/Table/data.d.ts +9 -0
- package/dist/types/icons/CalendarIcon.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1670,7 +1670,7 @@ declare function QuickFilterCards({ data, onCardToggle, width, CardsContainerCla
|
|
|
1670
1670
|
CardsContainerClassName?: string;
|
|
1671
1671
|
}): react_jsx_runtime.JSX.Element;
|
|
1672
1672
|
|
|
1673
|
-
declare function RangePicker({ label, onChange, borderRadius, required, width, height, placeholder, disabled, borderColor, borderColorFocus, textColor, selectedValue, selectedColor, hoverColor, inRangeColor, clearButtonColor, calendarIconColor, }: {
|
|
1673
|
+
declare function RangePicker({ label, onChange, borderRadius, required, width, height, placeholder, disabled, borderColor, borderColorFocus, textColor, selectedValue, selectedColor, hoverColor, inRangeColor, clearButtonColor, calendarIconColor, showClearButton, showOpenIcon, }: {
|
|
1674
1674
|
label: any;
|
|
1675
1675
|
onChange: any;
|
|
1676
1676
|
borderRadius: any;
|
|
@@ -1688,6 +1688,8 @@ declare function RangePicker({ label, onChange, borderRadius, required, width, h
|
|
|
1688
1688
|
inRangeColor: any;
|
|
1689
1689
|
clearButtonColor: any;
|
|
1690
1690
|
calendarIconColor: any;
|
|
1691
|
+
showClearButton: any;
|
|
1692
|
+
showOpenIcon: any;
|
|
1691
1693
|
}): react_jsx_runtime.JSX.Element;
|
|
1692
1694
|
declare namespace RangePicker {
|
|
1693
1695
|
namespace propTypes {
|
|
@@ -1708,6 +1710,8 @@ declare namespace RangePicker {
|
|
|
1708
1710
|
const inRangeColor: PropTypes.Requireable<string>;
|
|
1709
1711
|
const clearButtonColor: PropTypes.Requireable<string>;
|
|
1710
1712
|
const calendarIconColor: PropTypes.Requireable<string>;
|
|
1713
|
+
const showClearButton: PropTypes.Requireable<boolean>;
|
|
1714
|
+
const showOpenIcon: PropTypes.Requireable<boolean>;
|
|
1711
1715
|
}
|
|
1712
1716
|
namespace defaultProps {
|
|
1713
1717
|
const required_1: boolean;
|
|
@@ -1738,6 +1742,10 @@ declare namespace RangePicker {
|
|
|
1738
1742
|
export { clearButtonColor_1 as clearButtonColor };
|
|
1739
1743
|
const calendarIconColor_1: string;
|
|
1740
1744
|
export { calendarIconColor_1 as calendarIconColor };
|
|
1745
|
+
const showClearButton_1: boolean;
|
|
1746
|
+
export { showClearButton_1 as showClearButton };
|
|
1747
|
+
const showOpenIcon_1: boolean;
|
|
1748
|
+
export { showOpenIcon_1 as showOpenIcon };
|
|
1741
1749
|
}
|
|
1742
1750
|
}
|
|
1743
1751
|
|