sag_components 2.0.0-beta5 → 2.0.0-beta7
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 +10 -1
- package/dist/index.esm.js +22 -14
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +22 -14
- package/dist/index.js.map +1 -1
- package/dist/types/components/FilterPanel/FilterPanel.d.ts +10 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -273,7 +273,16 @@ declare namespace FilterPanel {
|
|
|
273
273
|
label: PropTypes.Requireable<string>;
|
|
274
274
|
labelEmptyValue: PropTypes.Requireable<string>;
|
|
275
275
|
name: PropTypes.Requireable<string>;
|
|
276
|
-
|
|
276
|
+
periodPickerSelectedValue: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
277
|
+
value: PropTypes.Requireable<string>;
|
|
278
|
+
label: PropTypes.Requireable<string>;
|
|
279
|
+
}> | null | undefined)[]>;
|
|
280
|
+
selectedValue: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
281
|
+
value: PropTypes.Requireable<string>;
|
|
282
|
+
label: PropTypes.Requireable<string>;
|
|
283
|
+
}> | null | undefined)[]>;
|
|
284
|
+
orderBy: PropTypes.Requireable<string>;
|
|
285
|
+
elementType: PropTypes.Requireable<string>;
|
|
277
286
|
value: PropTypes.Requireable<number>;
|
|
278
287
|
color: PropTypes.Requireable<string>;
|
|
279
288
|
dropdownOptions: PropTypes.Requireable<(PropTypes.InferProps<{
|
package/dist/index.esm.js
CHANGED
|
@@ -44289,19 +44289,18 @@ const InfoIcon = _ref => {
|
|
|
44289
44289
|
}));
|
|
44290
44290
|
};
|
|
44291
44291
|
|
|
44292
|
-
const LinkButton =
|
|
44293
|
-
|
|
44294
|
-
|
|
44295
|
-
|
|
44296
|
-
|
|
44297
|
-
|
|
44298
|
-
|
|
44299
|
-
|
|
44300
|
-
|
|
44301
|
-
|
|
44302
|
-
|
|
44303
|
-
|
|
44304
|
-
} = _ref;
|
|
44292
|
+
const LinkButton = ({
|
|
44293
|
+
text = '',
|
|
44294
|
+
type = 'primary',
|
|
44295
|
+
size = 'small',
|
|
44296
|
+
height = '',
|
|
44297
|
+
width = '',
|
|
44298
|
+
disabled = false,
|
|
44299
|
+
textColor = '',
|
|
44300
|
+
onClick,
|
|
44301
|
+
leftIcon = 'none',
|
|
44302
|
+
rightIcon = 'none'
|
|
44303
|
+
}) => {
|
|
44305
44304
|
// const {
|
|
44306
44305
|
// text,
|
|
44307
44306
|
// type,
|
|
@@ -53455,7 +53454,16 @@ FilterPanel.propTypes = {
|
|
|
53455
53454
|
label: PropTypes.string,
|
|
53456
53455
|
labelEmptyValue: PropTypes.string,
|
|
53457
53456
|
name: PropTypes.string,
|
|
53458
|
-
|
|
53457
|
+
periodPickerSelectedValue: PropTypes.arrayOf(PropTypes.shape({
|
|
53458
|
+
value: PropTypes.string,
|
|
53459
|
+
label: PropTypes.string
|
|
53460
|
+
})),
|
|
53461
|
+
selectedValue: PropTypes.arrayOf(PropTypes.shape({
|
|
53462
|
+
value: PropTypes.string,
|
|
53463
|
+
label: PropTypes.string
|
|
53464
|
+
})),
|
|
53465
|
+
orderBy: PropTypes.string,
|
|
53466
|
+
elementType: PropTypes.string,
|
|
53459
53467
|
value: PropTypes.number,
|
|
53460
53468
|
color: PropTypes.string,
|
|
53461
53469
|
dropdownOptions: PropTypes.arrayOf(PropTypes.shape({
|