@clasing/ui 0.1.79 → 0.1.81

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> {
@@ -345,6 +347,7 @@ declare interface IPopoverProps {
345
347
  onMouseDown?: (e: default_2.MouseEvent) => void;
346
348
  onMouseUp?: (e: default_2.MouseEvent) => void;
347
349
  popoverWidth?: 'as-trigger' | 'auto';
350
+ disabled?: boolean;
348
351
  }
349
352
 
350
353
  declare interface IProgressBarProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'children'>, VariantProps<typeof progressBarStyles> {