@devtable/dashboard 10.25.0 → 10.25.1

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.
@@ -15,6 +15,7 @@ interface IProps extends DefaultProps<StylesNames, MultiSelectWidgetStylesParams
15
15
  options: TSelectOption[];
16
16
  disabled: boolean;
17
17
  errorMessage?: string;
18
+ required: boolean;
18
19
  }
19
- export declare const MultiSelectWidget: ({ disabled, classNames, styles, unstyled, radius, style, label, value, onChange, options, errorMessage, }: IProps) => import('./react/jsx-runtime').JSX.Element;
20
+ export declare const MultiSelectWidget: ({ disabled, classNames, styles, unstyled, radius, style, label, value, onChange, options, errorMessage, required, }: IProps) => import('./react/jsx-runtime').JSX.Element;
20
21
  export {};
@@ -6,6 +6,7 @@ declare const _default: (params: MultiSelectWidgetStylesParams, options?: import
6
6
  classes: {
7
7
  root: string;
8
8
  label: string;
9
+ required: string;
9
10
  dropdown: string;
10
11
  };
11
12
  cx: (...args: any) => string;
@@ -10,6 +10,7 @@ interface IFilterTreeSelectWidget extends DefaultProps<MyComponentStylesNames, T
10
10
  treeData: $TSFixMe;
11
11
  disabled: boolean;
12
12
  errorMessage?: string;
13
+ required: boolean;
13
14
  }
14
- export declare const FilterTreeSelectWidget: ({ disabled, classNames, styles, unstyled, radius, style, label, value, onChange, treeData, errorMessage, }: IFilterTreeSelectWidget) => import('./react/jsx-runtime').JSX.Element;
15
+ export declare const FilterTreeSelectWidget: ({ disabled, classNames, styles, unstyled, radius, style, label, value, onChange, treeData, errorMessage, required, }: IFilterTreeSelectWidget) => import('./react/jsx-runtime').JSX.Element;
15
16
  export {};
@@ -6,6 +6,7 @@ declare const _default: (params: TreeSelectWidgetStylesParams, options?: import(
6
6
  classes: {
7
7
  root: string;
8
8
  label: string;
9
+ required: string;
9
10
  dropdown: string;
10
11
  };
11
12
  cx: (...args: any) => string;