@databrainhq/plugin 0.14.37 → 0.14.38
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/components/DateRangePicker/index.d.ts +1 -0
- package/dist/components/FilterDropDown/index.d.ts +3 -1
- package/dist/components/FloatingDropDown/index.d.ts +2 -1
- package/dist/components/GlobalFilters/NumberFilterField.d.ts +2 -1
- package/dist/components/MultiSelectDropdown/index.d.ts +2 -1
- package/dist/types/app.d.ts +1 -0
- package/dist/webcomponents.es.js +3063 -2985
- package/dist/webcomponents.umd.js +101 -95
- package/package.json +1 -1
|
@@ -16,10 +16,12 @@ export type FilterDropDownProps = Omit<FloatingDropDownProps, 'options'> & {
|
|
|
16
16
|
query: string;
|
|
17
17
|
alias: string;
|
|
18
18
|
};
|
|
19
|
+
isFilter?: boolean;
|
|
19
20
|
};
|
|
20
|
-
export declare const FilterDropDown: React.MemoExoticComponent<({ filter, onChange, selectedOption, autoSelected, workspaceId, filterClause, isDisableLabel, customTable, ...rest }: FilterDropDownProps) => React.JSX.Element>;
|
|
21
|
+
export declare const FilterDropDown: React.MemoExoticComponent<({ filter, onChange, selectedOption, autoSelected, workspaceId, filterClause, isDisableLabel, customTable, isFilter, ...rest }: FilterDropDownProps) => React.JSX.Element>;
|
|
21
22
|
export type MultiFilterDropDownProps = Pick<FilterDropDownProps, 'autoSelected' | 'filter' | 'label' | 'workspaceId' | 'filterClause' | 'customTable'> & Omit<MultiSelectDropdownProps, 'options'> & {
|
|
22
23
|
isDisablelabel?: boolean;
|
|
23
24
|
radius?: string;
|
|
25
|
+
isFilter?: boolean;
|
|
24
26
|
};
|
|
25
27
|
export declare const MultiFilterDropdown: React.FC<MultiFilterDropDownProps>;
|
|
@@ -18,5 +18,6 @@ export type FloatingDropDownProps = {
|
|
|
18
18
|
children?: React.ReactNode;
|
|
19
19
|
disableAutoClose?: boolean;
|
|
20
20
|
radius?: string;
|
|
21
|
+
isFilter?: boolean;
|
|
21
22
|
};
|
|
22
|
-
export declare const FloatingDropDown: ({ label, labelVariant, selectedOption, onChange, button, options, isDisabled, customButton, icon, buttonWidth, menuWidth, isSearchEnabled, searchPlaceholder, placeholder, children, radius, disableAutoClose, }: FloatingDropDownProps) => React.JSX.Element;
|
|
23
|
+
export declare const FloatingDropDown: ({ label, labelVariant, selectedOption, onChange, button, options, isDisabled, customButton, icon, buttonWidth, menuWidth, isSearchEnabled, searchPlaceholder, placeholder, children, radius, isFilter, disableAutoClose, }: FloatingDropDownProps) => React.JSX.Element;
|
|
@@ -22,6 +22,7 @@ type NumberFieldProps = {
|
|
|
22
22
|
variant?: 'static' | 'floating';
|
|
23
23
|
buttonWidth?: string;
|
|
24
24
|
radius?: string;
|
|
25
|
+
isFilter?: boolean;
|
|
25
26
|
};
|
|
26
|
-
export declare const NumberFilterField: ({ setAppliedFilters, column, defaultValues, className, onChange, label, variant, buttonWidth, radius, }: NumberFieldProps) => React.JSX.Element;
|
|
27
|
+
export declare const NumberFilterField: ({ setAppliedFilters, column, defaultValues, className, onChange, label, variant, buttonWidth, radius, isFilter, }: NumberFieldProps) => React.JSX.Element;
|
|
27
28
|
export default NumberFilterField;
|
|
@@ -25,6 +25,7 @@ export type MultiSelectDropdownProps = Omit<MultiSelectAccordianDropdownProps, '
|
|
|
25
25
|
options: FloatingDropDownOption[];
|
|
26
26
|
isShowSelectedOptions?: boolean;
|
|
27
27
|
radius?: string;
|
|
28
|
+
isFilter?: boolean;
|
|
28
29
|
};
|
|
29
30
|
export declare const MultiSelectAccordianDropdown: ({ label, labelVariant, selectedOption, onChange, button, options, isDisabled, icon, buttonWidth, menuWidth, isSearchEnabled, searchIcon, closeControl, searchPlaceholder, radius, }: MultiSelectAccordianDropdownProps) => React.JSX.Element;
|
|
30
|
-
export declare const MultiSelectDropdown: ({ label, labelVariant, selectedOption, onChange, button, options, isDisabled, icon, buttonWidth, menuWidth, isSearchEnabled, searchIcon, closeControl, searchPlaceholder, isShowSelectedOptions, radius, }: MultiSelectDropdownProps) => React.JSX.Element;
|
|
31
|
+
export declare const MultiSelectDropdown: ({ label, labelVariant, selectedOption, onChange, button, options, isDisabled, icon, buttonWidth, menuWidth, isSearchEnabled, searchIcon, closeControl, searchPlaceholder, isShowSelectedOptions, radius, isFilter, }: MultiSelectDropdownProps) => React.JSX.Element;
|
package/dist/types/app.d.ts
CHANGED
|
@@ -514,6 +514,7 @@ export type AdminThemeOptionsType = {
|
|
|
514
514
|
selectBoxSize?: 'small' | 'medium' | 'large';
|
|
515
515
|
selectBoxVariant?: 'floating' | 'static';
|
|
516
516
|
selectBoxBorderRadius?: string;
|
|
517
|
+
selectBoxTextColor?: string;
|
|
517
518
|
};
|
|
518
519
|
cardDescription: {
|
|
519
520
|
fontSize?: string;
|