@hybr1d-tech/charizard 0.7.92 → 0.7.93
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/hybr1d-ui.js +6008 -5666
- package/dist/hybr1d-ui.umd.cjs +46 -14
- package/dist/index.d.ts +18 -2
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -450,7 +450,7 @@ declare interface DatePickerProps extends PropsSingle {
|
|
|
450
450
|
disabled?: Matcher | Matcher[];
|
|
451
451
|
}
|
|
452
452
|
|
|
453
|
-
export declare function DateRangePicker({ value, onChange, mode, datePickerClassNames, showQuickSelect, disabled, customDisable, disableDatepicker, disableWeekends, showOutsideDays, errorMsg, customInputContentStyles, customClasses, size, onReset, ...props }: DateRangePickerProps): JSX_2.Element;
|
|
453
|
+
export declare function DateRangePicker({ value, onChange, mode, datePickerClassNames, showQuickSelect, disabled, customDisable, disableDatepicker, disableWeekends, showOutsideDays, errorMsg, customInputContentStyles, customClasses, size, onReset, placeholder, ...props }: DateRangePickerProps): JSX_2.Element;
|
|
454
454
|
|
|
455
455
|
declare interface DateRangePickerProps extends PropsRange {
|
|
456
456
|
value: DateRange;
|
|
@@ -473,6 +473,7 @@ declare interface DateRangePickerProps extends PropsRange {
|
|
|
473
473
|
dateIcon?: string;
|
|
474
474
|
};
|
|
475
475
|
size?: BUTTON_V2_SIZE;
|
|
476
|
+
placeholder?: string;
|
|
476
477
|
}
|
|
477
478
|
|
|
478
479
|
export declare type DialogFooterButtons = Array<Omit<ButtonV2Props, 'children'> & {
|
|
@@ -735,7 +736,8 @@ declare interface ErrorsPageProps {
|
|
|
735
736
|
|
|
736
737
|
declare enum FILTER_TYPE {
|
|
737
738
|
DATE_RANGE = "date_range",
|
|
738
|
-
MENU = "menu"
|
|
739
|
+
MENU = "menu",
|
|
740
|
+
TAB = "tab"
|
|
739
741
|
}
|
|
740
742
|
|
|
741
743
|
/**
|
|
@@ -768,6 +770,9 @@ declare type FilterConfig = {
|
|
|
768
770
|
*
|
|
769
771
|
*/
|
|
770
772
|
declare type FilterConfig_2 = {
|
|
773
|
+
initialFilters?: {
|
|
774
|
+
[key: string]: string | string[];
|
|
775
|
+
};
|
|
771
776
|
filters?: TableFilters;
|
|
772
777
|
isLoading: boolean;
|
|
773
778
|
isError: boolean;
|
|
@@ -2289,6 +2294,17 @@ export declare interface SelectorsProps {
|
|
|
2289
2294
|
}[];
|
|
2290
2295
|
}
|
|
2291
2296
|
|
|
2297
|
+
export declare function SelectorsV2({ options, onChange, value }: SelectorsV2Props): JSX_2.Element;
|
|
2298
|
+
|
|
2299
|
+
export declare interface SelectorsV2Props {
|
|
2300
|
+
options: {
|
|
2301
|
+
label: string;
|
|
2302
|
+
value: string;
|
|
2303
|
+
}[];
|
|
2304
|
+
onChange: (value: string) => void;
|
|
2305
|
+
value: string;
|
|
2306
|
+
}
|
|
2307
|
+
|
|
2292
2308
|
declare interface SelectProps {
|
|
2293
2309
|
/**
|
|
2294
2310
|
* The options to be displayed in the select
|