@databrainhq/plugin 0.14.63 → 0.14.64

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.
@@ -13,7 +13,6 @@ type AccordionV2Props = {
13
13
  footer?: React.ReactNode;
14
14
  isEnableEditBtn?: boolean;
15
15
  editBtnOnClick?: () => void;
16
- isNoPadding?: boolean;
17
16
  } & AccordionProps;
18
17
  export declare const AccordionV2: React.FC<AccordionV2Props>;
19
18
  type AccordionV3Props = {
@@ -26,8 +25,4 @@ type AccordionV3Props = {
26
25
  setIsOpen?: React.Dispatch<React.SetStateAction<boolean>>;
27
26
  };
28
27
  export declare const AccordionV3: ({ content, footer, header, isOpen, width, setIsOpen, headerButton, }: AccordionV3Props) => React.JSX.Element;
29
- type AccordionV4Props = {
30
- headerIcon?: React.ReactNode;
31
- } & AccordionV3Props;
32
- export declare const AccordionV4: ({ content, footer, header, headerIcon, isOpen, width, setIsOpen, headerButton, }: AccordionV4Props) => React.JSX.Element;
33
28
  export {};
@@ -1,5 +1,4 @@
1
1
  import React from 'react';
2
- import { Ui } from '@databrainhq/plugin';
3
2
  import { FloatingDropDownOption, OnChangeAliasParams, OnChangeHelperFunctionParams, SelectedColumn } from '@/types';
4
3
  export type AutoCompleteDropdownProps = {
5
4
  setSelectedOptions: React.Dispatch<React.SetStateAction<SelectedColumn[]>>;
@@ -1,10 +1,9 @@
1
1
  import React from 'react';
2
2
  type Props = {
3
3
  label: string | number;
4
- varaint?: 'warning' | 'success' | 'danger' | 'primary' | 'secondary' | 'info' | 'xs';
4
+ varaint?: 'warning' | 'success' | 'danger' | 'primary' | 'secondary' | 'info';
5
5
  size?: 'xs' | 'sm' | 'md' | 'lg';
6
6
  onClick?: () => void;
7
- indicator?: JSX.Element;
8
7
  };
9
8
  export declare const Badge: React.FC<Props>;
10
9
  export {};
@@ -11,7 +11,6 @@ export type FloatingDropDownProps = {
11
11
  isSearchEnabled?: boolean;
12
12
  icon?: JSX.Element;
13
13
  buttonWidth?: string;
14
- buttonHeight?: string;
15
14
  menuWidth?: string;
16
15
  searchPlaceholder?: string;
17
16
  placeholder?: string;
@@ -22,5 +21,4 @@ export type FloatingDropDownProps = {
22
21
  isFilter?: boolean;
23
22
  isClearEnabled?: boolean;
24
23
  };
25
- export declare const FloatingDropDown: ({ label, labelVariant, selectedOption, onChange, button, options, isDisabled, customButton, icon, buttonWidth, buttonHeight, menuWidth, isSearchEnabled, searchPlaceholder, placeholder, children, radius, isFilter, disableAutoClose, isClearEnabled, }: FloatingDropDownProps) => React.JSX.Element;
26
- export declare const FloatingDropDownWithSubValues: ({ label, labelVariant, selectedOption, onChange, button, options, isDisabled, customButton, icon, buttonWidth, menuWidth, isSearchEnabled, searchPlaceholder, placeholder, children, radius, isFilter, disableAutoClose, isClearEnabled, }: FloatingDropDownProps) => React.JSX.Element;
24
+ export declare const FloatingDropDown: ({ label, labelVariant, selectedOption, onChange, button, options, isDisabled, customButton, icon, buttonWidth, menuWidth, isSearchEnabled, searchPlaceholder, placeholder, children, radius, isFilter, disableAutoClose, isClearEnabled, }: FloatingDropDownProps) => React.JSX.Element;