@clasing/ui 0.1.79 → 0.1.82

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 CHANGED
@@ -147,6 +147,7 @@ export declare const DropdownSelect: ForwardRefExoticComponent<DropdownSelectPro
147
147
  declare interface DropdownSelectProps<T extends string | number | readonly string[] | undefined> extends Omit<React.SelectHTMLAttributes<HTMLDivElement>, 'value' | 'onChange'> {
148
148
  label?: string;
149
149
  helperText?: string;
150
+ disabled?: boolean;
150
151
  error?: string;
151
152
  touched?: boolean;
152
153
  iconName?: TablerIconName;
@@ -267,6 +268,7 @@ declare interface IDatepickerProps extends React.InputHTMLAttributes<HTMLInputEl
267
268
  closeOnAction?: boolean;
268
269
  minDate?: Date;
269
270
  maxDate?: Date;
271
+ disabled?: boolean;
270
272
  }
271
273
 
272
274
  declare interface IDateRangePickerProps extends React.InputHTMLAttributes<HTMLInputElement> {
@@ -283,6 +285,7 @@ declare interface IDateRangePickerProps extends React.InputHTMLAttributes<HTMLIn
283
285
  placeholder?: string;
284
286
  minDate?: Date;
285
287
  maxDate?: Date;
288
+ disabled?: boolean;
286
289
  }
287
290
 
288
291
  declare interface IIconComponentProps {
@@ -345,6 +348,7 @@ declare interface IPopoverProps {
345
348
  onMouseDown?: (e: default_2.MouseEvent) => void;
346
349
  onMouseUp?: (e: default_2.MouseEvent) => void;
347
350
  popoverWidth?: 'as-trigger' | 'auto';
351
+ disabled?: boolean;
348
352
  }
349
353
 
350
354
  declare interface IProgressBarProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'children'>, VariantProps<typeof progressBarStyles> {