sag_components 2.0.0-beta210 → 2.0.0-beta212

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.
@@ -21,6 +21,7 @@ export const DotContainer: import("styled-components/dist/types").IStyledCompone
21
21
  export const LineContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
22
22
  export const ButtonContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
23
23
  export const CustomTooltip: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<any, never>> & string & Omit<(props: any) => import("react/jsx-runtime").JSX.Element, keyof import("react").Component<any, {}, any>>;
24
+ export const TooltipContent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
24
25
  export const Container: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
25
26
  export const DisabledTrashIconWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
26
27
  export const TrashIconWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
@@ -10,6 +10,7 @@ export const List: import("styled-components/dist/types").IStyledComponentBase<"
10
10
  export const AddButtonContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
11
11
  export const Container: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
12
12
  export const Item: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
13
+ export const TooltipContent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
13
14
  export const Title: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
14
15
  export const ComponentContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
15
16
  export const PaperPlane: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
@@ -1,4 +1,4 @@
1
- export function QuickFilter({ hoverColor, multipleSelection, xIconShow, disabled, error, errorMessage, label, labelColor, placeHolder, width, checkBoxColor, onChange, options, selectedValue, }: {
1
+ export function QuickFilter({ hoverColor, multipleSelection, xIconShow, disabled, error, errorMessage, label, labelColor, placeHolder, width, height, checkBoxColor, dropdownHeight, onChange, options, selectedValue, }: {
2
2
  hoverColor?: string;
3
3
  multipleSelection?: boolean;
4
4
  xIconShow?: boolean;
@@ -9,7 +9,9 @@ export function QuickFilter({ hoverColor, multipleSelection, xIconShow, disabled
9
9
  labelColor?: string;
10
10
  placeHolder?: string;
11
11
  width?: string;
12
+ height?: string;
12
13
  checkBoxColor?: string;
14
+ dropdownHeight?: string;
13
15
  onChange?: (value: any) => void;
14
16
  options?: any[];
15
17
  selectedValue?: any[];
@@ -236,6 +236,27 @@ declare namespace _default {
236
236
  }
237
237
  export { control_11 as control };
238
238
  }
239
+ namespace dropdownHeight {
240
+ const name_23: string;
241
+ export { name_23 as name };
242
+ export namespace type_21 {
243
+ const name_24: string;
244
+ export { name_24 as name };
245
+ }
246
+ export { type_21 as type };
247
+ const description_14: string;
248
+ export { description_14 as description };
249
+ export namespace defaultValue_9 {
250
+ const summary_9: string;
251
+ export { summary_9 as summary };
252
+ }
253
+ export { defaultValue_9 as defaultValue };
254
+ export namespace control_12 {
255
+ const type_22: string;
256
+ export { type_22 as type };
257
+ }
258
+ export { control_12 as control };
259
+ }
239
260
  }
240
261
  }
241
262
  export default _default;
@@ -1,4 +1,4 @@
1
- export function QuickFilterDropdownMultiSelection({ label, labelEmptyValue, options, selectedValue, placeHolder, onChange, required, disabled, width, error, errorMessage, labelColor, xIconShow, checkBoxColor, showLabelOnTop, }: {
1
+ export function QuickFilterDropdownMultiSelection({ label, labelEmptyValue, options, selectedValue, placeHolder, onChange, required, disabled, width, height, error, errorMessage, labelColor, xIconShow, checkBoxColor, showLabelOnTop, dropdownHeight, }: {
2
2
  label: any;
3
3
  labelEmptyValue: any;
4
4
  options: any;
@@ -8,12 +8,14 @@ export function QuickFilterDropdownMultiSelection({ label, labelEmptyValue, opti
8
8
  required: any;
9
9
  disabled: any;
10
10
  width: any;
11
+ height: any;
11
12
  error: any;
12
13
  errorMessage: any;
13
14
  labelColor: any;
14
15
  xIconShow: any;
15
16
  checkBoxColor: any;
16
17
  showLabelOnTop: any;
18
+ dropdownHeight: any;
17
19
  }): import("react/jsx-runtime").JSX.Element;
18
20
  export namespace QuickFilterDropdownMultiSelection {
19
21
  namespace propTypes {
@@ -24,6 +26,8 @@ export namespace QuickFilterDropdownMultiSelection {
24
26
  const checkBoxColor: PropTypes.Requireable<string>;
25
27
  const required: PropTypes.Requireable<boolean>;
26
28
  const width: PropTypes.Requireable<string>;
29
+ const height: PropTypes.Requireable<string>;
30
+ const dropdownHeight: PropTypes.Requireable<string>;
27
31
  const disabled: PropTypes.Requireable<boolean>;
28
32
  const error: PropTypes.Requireable<boolean>;
29
33
  const errorMessage: string;
@@ -54,6 +58,10 @@ export namespace QuickFilterDropdownMultiSelection {
54
58
  export { required_1 as required };
55
59
  const width_1: string;
56
60
  export { width_1 as width };
61
+ const height_1: string;
62
+ export { height_1 as height };
63
+ const dropdownHeight_1: string;
64
+ export { dropdownHeight_1 as dropdownHeight };
57
65
  const disabled_1: boolean;
58
66
  export { disabled_1 as disabled };
59
67
  const error_1: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sag_components",
3
- "version": "2.0.0-beta210",
3
+ "version": "2.0.0-beta212",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",