sag_components 2.0.0-beta326 → 2.0.0-beta328
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 +1 -0
- package/dist/index.esm.js +145 -82
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +145 -82
- package/dist/index.js.map +1 -1
- package/dist/types/components/DropdownMultiNew/DropdownMultiNew.d.ts +2 -1
- package/dist/types/components/DropdownNew/DropdownNew.stories.d.ts +22 -0
- package/dist/types/components/FilterPanel/FilterPanel.d.ts +1 -0
- package/dist/types/icons/CheckBoxIndeterminateIcon.d.ts +6 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export function DropdownMultiNew({ label, labelEmptyValue, options, selectedValue, onChange, required, disabled, width, height, minHeight, withMarginBottom, error, errorMessage, labelColor, xIconShow, checkBoxColor, showLabelOnTop, orderBy, elementType, }: {
|
|
1
|
+
export function DropdownMultiNew({ label, labelEmptyValue, options, selectedValue, onChange, required, disabled, width, height, minHeight, withMarginBottom, error, errorMessage, labelColor, xIconShow, checkBoxColor, showLabelOnTop, orderBy, elementType, showSelectAll, }: {
|
|
2
2
|
label: any;
|
|
3
3
|
labelEmptyValue: any;
|
|
4
4
|
options: any;
|
|
@@ -18,5 +18,6 @@ export function DropdownMultiNew({ label, labelEmptyValue, options, selectedValu
|
|
|
18
18
|
showLabelOnTop: any;
|
|
19
19
|
orderBy: any;
|
|
20
20
|
elementType: any;
|
|
21
|
+
showSelectAll?: boolean;
|
|
21
22
|
}): import("react/jsx-runtime").JSX.Element;
|
|
22
23
|
export default DropdownMultiNew;
|
|
@@ -307,6 +307,27 @@ declare namespace _default {
|
|
|
307
307
|
}
|
|
308
308
|
export { control_14 as control };
|
|
309
309
|
}
|
|
310
|
+
namespace showSelectAll {
|
|
311
|
+
const name_30: string;
|
|
312
|
+
export { name_30 as name };
|
|
313
|
+
export namespace type_28 {
|
|
314
|
+
const name_31: string;
|
|
315
|
+
export { name_31 as name };
|
|
316
|
+
}
|
|
317
|
+
export { type_28 as type };
|
|
318
|
+
const description_17: string;
|
|
319
|
+
export { description_17 as description };
|
|
320
|
+
export namespace defaultValue_13 {
|
|
321
|
+
const summary_13: boolean;
|
|
322
|
+
export { summary_13 as summary };
|
|
323
|
+
}
|
|
324
|
+
export { defaultValue_13 as defaultValue };
|
|
325
|
+
export namespace control_15 {
|
|
326
|
+
const type_29: string;
|
|
327
|
+
export { type_29 as type };
|
|
328
|
+
}
|
|
329
|
+
export { control_15 as control };
|
|
330
|
+
}
|
|
310
331
|
}
|
|
311
332
|
}
|
|
312
333
|
export default _default;
|
|
@@ -320,5 +341,6 @@ export const InitMulti: any;
|
|
|
320
341
|
export const MultiDisabled: any;
|
|
321
342
|
export const ErrorMessage: any;
|
|
322
343
|
export const NoLabelOnTopSingle: any;
|
|
344
|
+
export const MultiWithSelectAll: any;
|
|
323
345
|
export const NoLabelOnTopMulti: any;
|
|
324
346
|
import DropdownNew from "./DropdownNew";
|
|
@@ -12,6 +12,7 @@ declare namespace FilterPanel {
|
|
|
12
12
|
placeHolder: PropTypes.Requireable<string>;
|
|
13
13
|
xIconShow: PropTypes.Requireable<boolean>;
|
|
14
14
|
label: PropTypes.Requireable<string>;
|
|
15
|
+
showSelectAll: PropTypes.Requireable<boolean>;
|
|
15
16
|
labelEmptyValue: PropTypes.Requireable<string>;
|
|
16
17
|
name: PropTypes.Requireable<string>;
|
|
17
18
|
periodPickerSelectedValue: PropTypes.Requireable<string>;
|