@tecsinapse/react-web-kit 3.4.20 → 3.4.21

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.
Files changed (60) hide show
  1. package/dist/cjs/components/atoms/Skeleton/styled.js +2 -2
  2. package/dist/cjs/components/molecules/Select/SelectItem/SelectItem.js +1 -1
  3. package/dist/esm/components/atoms/Skeleton/styled.js +2 -2
  4. package/dist/esm/components/molecules/Select/SelectItem/SelectItem.js +1 -1
  5. package/dist/types/components/atoms/Accordion/Accordion.d.ts +1 -1
  6. package/dist/types/components/atoms/Accordion/styled.d.ts +8 -9
  7. package/dist/types/components/atoms/Button/styled.d.ts +6 -7
  8. package/dist/types/components/atoms/Dropdown/styled.d.ts +2 -3
  9. package/dist/types/components/atoms/Input/Input.d.ts +2 -2
  10. package/dist/types/components/atoms/Input/styled.d.ts +2 -3
  11. package/dist/types/components/atoms/InputMask/InputMask.d.ts +2 -2
  12. package/dist/types/components/atoms/InputMask/styled.d.ts +2 -3
  13. package/dist/types/components/atoms/Modal/styled.d.ts +2 -3
  14. package/dist/types/components/atoms/Overlay/styled.d.ts +2 -3
  15. package/dist/types/components/atoms/Skeleton/styled.d.ts +2 -3
  16. package/dist/types/components/atoms/Switch/styled.d.ts +4 -5
  17. package/dist/types/components/atoms/Table/Cell/styled.d.ts +2 -3
  18. package/dist/types/components/atoms/Table/Container/styled.d.ts +2 -3
  19. package/dist/types/components/atoms/Table/Footer/styled.d.ts +2 -3
  20. package/dist/types/components/atoms/Table/Header/styled.d.ts +6 -7
  21. package/dist/types/components/atoms/Table/Row/styled.d.ts +2 -3
  22. package/dist/types/components/atoms/Table/Toolbar/styled.d.ts +2 -3
  23. package/dist/types/components/atoms/Table/styled.d.ts +2 -3
  24. package/dist/types/components/atoms/Tooltip/styled.d.ts +5 -6
  25. package/dist/types/components/molecules/Breadcrumbs/BreadcrumbItem/styled.d.ts +4 -5
  26. package/dist/types/components/molecules/Breadcrumbs/styled.d.ts +2 -3
  27. package/dist/types/components/molecules/DatePicker/DatePicker.d.ts +0 -1
  28. package/dist/types/components/molecules/DatePicker/Modal.d.ts +0 -1
  29. package/dist/types/components/molecules/DatePicker/styled.d.ts +4 -5
  30. package/dist/types/components/molecules/DateTimePicker/styled.d.ts +4 -5
  31. package/dist/types/components/molecules/DateTimePickerSelector/styled.d.ts +15 -16
  32. package/dist/types/components/molecules/Drawer/styled.d.ts +2 -3
  33. package/dist/types/components/molecules/IconTextButton/styled.d.ts +6 -7
  34. package/dist/types/components/molecules/InputPassword/InputPassword.d.ts +2 -2
  35. package/dist/types/components/molecules/LabeledSwitch/styled.d.ts +4 -5
  36. package/dist/types/components/molecules/Masonry/styled.d.ts +6 -7
  37. package/dist/types/components/molecules/Menubar/MenuBlock/MenuItem/SubMenuBlock/styled.d.ts +4 -5
  38. package/dist/types/components/molecules/Menubar/MenuBlock/MenuItem/styled.d.ts +4 -5
  39. package/dist/types/components/molecules/Menubar/MenuBlock/styled.d.ts +10 -11
  40. package/dist/types/components/molecules/Menubar/MostUsed/styled.d.ts +4 -5
  41. package/dist/types/components/molecules/Menubar/SearchResultItem/styled.d.ts +4 -5
  42. package/dist/types/components/molecules/Menubar/styled.d.ts +21 -24
  43. package/dist/types/components/molecules/ScrollableMonthYearPicker/styled.d.ts +4 -5
  44. package/dist/types/components/molecules/ScrollableTimePicker/styled.d.ts +4 -5
  45. package/dist/types/components/molecules/Select/Dropdown/components/SearchInput.d.ts +1 -1
  46. package/dist/types/components/molecules/Select/Dropdown/styled.d.ts +15 -16
  47. package/dist/types/components/molecules/Select/SelectItem/SelectItem.d.ts +2 -2
  48. package/dist/types/components/molecules/Select/SelectItem/styled.d.ts +6 -7
  49. package/dist/types/components/molecules/Select/functions.d.ts +1 -1
  50. package/dist/types/components/molecules/Select/styled.d.ts +8 -9
  51. package/dist/types/components/molecules/Snackbar/styled.d.ts +2 -3
  52. package/dist/types/components/molecules/TextArea/styled.d.ts +4 -5
  53. package/dist/types/components/organisms/DataGrid/Footer/styled.d.ts +32 -33
  54. package/dist/types/components/organisms/DataGrid/Header/Header.d.ts +0 -1
  55. package/dist/types/components/organisms/DataGrid/Header/styled.d.ts +1 -2
  56. package/dist/types/components/organisms/DataGrid/Header/utils.d.ts +1 -1
  57. package/dist/types/components/organisms/DataGrid/Row/Row.d.ts +1 -1
  58. package/dist/types/components/organisms/DataGrid/styled.d.ts +1 -2
  59. package/dist/types/hooks/useClickAwayListener.d.ts +1 -1
  60. package/package.json +3 -3
@@ -54,8 +54,8 @@ const Wrapper = styled("div")`
54
54
  animation,
55
55
  active
56
56
  }) => !active ? void 0 : animation === "pulse" ? theme.miscellaneous.bodyColor : theme.miscellaneous.surfaceColor};
57
- width: ${({ width }) => `${width}px` ?? "100%"};
58
- height: ${({ height }) => `${height}px` ?? "auto"};
57
+ width: ${({ width }) => width ? `${width}px` : "100%"};
58
+ height: ${({ height }) => height ? `${height}px` : "auto"};
59
59
  border-radius: ${({ theme, radius }) => radius ? theme.borderRadius[radius] : "unset"};
60
60
  ${({ animation, active }) => !active ? void 0 : animation === "pulse" ? pulseAnim : waveAnim};
61
61
  `;
@@ -45,7 +45,7 @@ const SelectItem = ({
45
45
  setChecked(!checked);
46
46
  if (auxChecked) {
47
47
  onSelect([..._value, key]);
48
- [..._value, key].length === lenghtOptions && setCheckedAll(true);
48
+ if ([..._value, key].length === lenghtOptions) setCheckedAll(true);
49
49
  } else {
50
50
  const auxArray = [..._value];
51
51
  const indexToExclude = auxArray.findIndex(
@@ -52,8 +52,8 @@ const Wrapper = styled("div")`
52
52
  animation,
53
53
  active
54
54
  }) => !active ? void 0 : animation === "pulse" ? theme.miscellaneous.bodyColor : theme.miscellaneous.surfaceColor};
55
- width: ${({ width }) => `${width}px` ?? "100%"};
56
- height: ${({ height }) => `${height}px` ?? "auto"};
55
+ width: ${({ width }) => width ? `${width}px` : "100%"};
56
+ height: ${({ height }) => height ? `${height}px` : "auto"};
57
57
  border-radius: ${({ theme, radius }) => radius ? theme.borderRadius[radius] : "unset"};
58
58
  ${({ animation, active }) => !active ? void 0 : animation === "pulse" ? pulseAnim : waveAnim};
59
59
  `;
@@ -43,7 +43,7 @@ const SelectItem = ({
43
43
  setChecked(!checked);
44
44
  if (auxChecked) {
45
45
  onSelect([..._value, key]);
46
- [..._value, key].length === lenghtOptions && setCheckedAll(true);
46
+ if ([..._value, key].length === lenghtOptions) setCheckedAll(true);
47
47
  } else {
48
48
  const auxArray = [..._value];
49
49
  const indexToExclude = auxArray.findIndex(
@@ -5,5 +5,5 @@ export interface AccordionProps extends React.HTMLAttributes<HTMLDivElement> {
5
5
  title: string;
6
6
  transition?: number;
7
7
  }
8
- declare const Accordion: ({ title, open: _open, onChange, transition, children, ...rest }: PropsWithChildren<AccordionProps>) => JSX.Element;
8
+ declare const Accordion: ({ title, open: _open, onChange, transition, children, ...rest }: PropsWithChildren<AccordionProps>) => React.JSX.Element;
9
9
  export default Accordion;
@@ -1,17 +1,16 @@
1
- /// <reference types="react" />
2
1
  export declare const IconContainer: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
5
  export declare const TitleContainer: import("@emotion/styled").StyledComponent<{
7
- theme?: import("@emotion/react").Theme | undefined;
8
- as?: import("react").ElementType<any> | undefined;
6
+ theme?: import("@emotion/react").Theme;
7
+ as?: React.ElementType;
9
8
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
10
9
  export declare const AccordionContainer: import("@emotion/styled").StyledComponent<{
11
- theme?: import("@emotion/react").Theme | undefined;
12
- as?: import("react").ElementType<any> | undefined;
10
+ theme?: import("@emotion/react").Theme;
11
+ as?: React.ElementType;
13
12
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
14
13
  export declare const ContentContainer: import("@emotion/styled").StyledComponent<{
15
- theme?: import("@emotion/react").Theme | undefined;
16
- as?: import("react").ElementType<any> | undefined;
14
+ theme?: import("@emotion/react").Theme;
15
+ as?: React.ElementType;
17
16
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,13 +1,12 @@
1
- /// <reference types="react" />
2
1
  export declare const StyledWebButton: import("@emotion/native").StyledComponent<import("@tecsinapse/react-core").ButtonProps & {
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & {
6
5
  mouseOver: boolean;
7
6
  pressed: boolean;
8
7
  } & {
9
- onMouseOver?: (() => void) | undefined;
10
- onMouseOut?: (() => void) | undefined;
11
- onPressIn?: (() => void) | undefined;
12
- onPressOut?: (() => void) | undefined;
8
+ onMouseOver?: () => void;
9
+ onMouseOut?: () => void;
10
+ onPressIn?: () => void;
11
+ onPressOut?: () => void;
13
12
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, {}, {}>;
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
1
  export declare const StyledContainerDropdown: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,7 +1,7 @@
1
1
  import { InputContainerProps, InputElementProps } from '@tecsinapse/react-core';
2
- import React, { FC } from 'react';
2
+ import React from 'react';
3
3
  export type InputWebProps = Omit<InputElementProps, 'style'> & InputContainerProps & {
4
4
  ref?: React.Ref<HTMLInputElement | undefined>;
5
5
  };
6
- declare const Input: FC<InputWebProps>;
6
+ declare const Input: React.ForwardRefExoticComponent<Omit<InputWebProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
7
7
  export default Input;
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
1
  export declare const StyledWebTextInput: import("@emotion/native").StyledComponent<import("@tecsinapse/react-core").InputElementProps & import("react").RefAttributes<import("react-native").TextInput> & {
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, {}, {}>;
@@ -1,7 +1,7 @@
1
1
  import { InputContainerProps, InputMaskElementProps } from '@tecsinapse/react-core';
2
- import React, { FC } from 'react';
2
+ import React from 'react';
3
3
  export type InputMaskWebProps = Omit<InputMaskElementProps, 'style'> & InputContainerProps & {
4
4
  ref?: React.Ref<HTMLInputElement | undefined>;
5
5
  };
6
- declare const InputMask: FC<InputMaskWebProps>;
6
+ declare const InputMask: React.ForwardRefExoticComponent<Omit<InputMaskWebProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
7
7
  export default InputMask;
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
1
  export declare const StyledWebTextInputMask: import("@emotion/native").StyledComponent<import("@tecsinapse/react-core").InputMaskElementProps & import("react").RefAttributes<import("react-native").TextInput> & {
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, {}, {}>;
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
1
  export declare const ModalContainer: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,11 +1,10 @@
1
- /// <reference types="react" />
2
1
  import { ZIndex } from '@tecsinapse/react-core';
3
2
  type InjectedProps = {
4
3
  show: boolean;
5
4
  zIndex: keyof ZIndex;
6
5
  };
7
6
  export declare const StyledOverlay: import("@emotion/styled").StyledComponent<{
8
- theme?: import("@emotion/react").Theme | undefined;
9
- as?: import("react").ElementType<any> | undefined;
7
+ theme?: import("@emotion/react").Theme;
8
+ as?: React.ElementType;
10
9
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps> & InjectedProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
11
10
  export {};
@@ -1,6 +1,5 @@
1
- /// <reference types="react" />
2
1
  import { SkeletonProps } from './Skeleton';
3
2
  export declare const Wrapper: import("@emotion/styled").StyledComponent<{
4
- theme?: import("@emotion/react").Theme | undefined;
5
- as?: import("react").ElementType<any> | undefined;
3
+ theme?: import("@emotion/react").Theme;
4
+ as?: React.ElementType;
6
5
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps & SkeletonProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,9 +1,8 @@
1
- /// <reference types="react" />
2
1
  export declare const StyledSwitchContent: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
5
  export declare const StyledSwitch: import("@emotion/styled").StyledComponent<{
7
- theme?: import("@emotion/react").Theme | undefined;
8
- as?: import("react").ElementType<any> | undefined;
6
+ theme?: import("@emotion/react").Theme;
7
+ as?: React.ElementType;
9
8
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
1
  export declare const TCell: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>, {}>;
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
1
  export declare const TContainer: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
1
  export declare const TFooter: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, {}>;
@@ -1,13 +1,12 @@
1
- /// <reference types="react" />
2
1
  export declare const ThStyled: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>, {}>;
6
5
  export declare const THeadStyled: import("@emotion/styled").StyledComponent<{
7
- theme?: import("@emotion/react").Theme | undefined;
8
- as?: import("react").ElementType<any> | undefined;
6
+ theme?: import("@emotion/react").Theme;
7
+ as?: React.ElementType;
9
8
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, {}>;
10
9
  export declare const HeaderBackground: import("@emotion/styled").StyledComponent<{
11
- theme?: import("@emotion/react").Theme | undefined;
12
- as?: import("react").ElementType<any> | undefined;
10
+ theme?: import("@emotion/react").Theme;
11
+ as?: React.ElementType;
13
12
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHRElement>, HTMLHRElement>, {}>;
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
1
  export declare const TRow: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, {}>;
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
1
  export declare const TableToolbarStyled: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
1
  export declare const TableStyled: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, {}>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { ComputedType, MaxWidth, Position } from './Tooltip';
3
2
  type InjectedProps = {
4
3
  computed?: ComputedType;
@@ -6,13 +5,13 @@ type InjectedProps = {
6
5
  maxWidth?: MaxWidth;
7
6
  };
8
7
  export declare const TooltipSpan: import("@emotion/styled").StyledComponent<{
9
- theme?: import("@emotion/react").Theme | undefined;
10
- as?: import("react").ElementType<any> | undefined;
8
+ theme?: import("@emotion/react").Theme;
9
+ as?: React.ElementType;
11
10
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps> & InjectedProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
12
11
  export declare const Container: import("@emotion/styled").StyledComponent<{
13
- theme?: import("@emotion/react").Theme | undefined;
14
- as?: import("react").ElementType<any> | undefined;
12
+ theme?: import("@emotion/react").Theme;
13
+ as?: React.ElementType;
15
14
  } & {
16
- position?: Position | undefined;
15
+ position?: Position;
17
16
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
18
17
  export {};
@@ -1,9 +1,8 @@
1
- /// <reference types="react" />
2
1
  export declare const StyledContainerItem: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
5
  export declare const StyledContainerIcon: import("@emotion/styled").StyledComponent<{
7
- theme?: import("@emotion/react").Theme | undefined;
8
- as?: import("react").ElementType<any> | undefined;
6
+ theme?: import("@emotion/react").Theme;
7
+ as?: React.ElementType;
9
8
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
1
  export declare const StyledContainerBreadcrumbs: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { DatePickerProps, SelectionType } from '@tecsinapse/react-core';
3
2
  export type WebDatePickerProps<T extends SelectionType> = Omit<DatePickerProps<T>, 'CalendarComponent' | 'renderCalendar' | 'requestCloseCalendar' | 'requestShowCalendar'> & {
4
3
  callbackAfterValidated?: (valid: boolean, message?: string) => void;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { CalendarProps, SelectionType } from '@tecsinapse/react-core';
3
2
  import { ModalProps } from 'react-native';
4
3
  export declare const Modal: <T extends SelectionType>({ onRequestClose, children, ...modalProps }: CalendarProps<T> & ModalProps & {
@@ -1,11 +1,10 @@
1
- /// <reference types="react" />
2
1
  export declare const Backdrop: import("@emotion/native").StyledComponent<import("@tecsinapse/react-core").PressableSurfaceProps & {
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, {}, {}>;
6
5
  export declare const ModalContent: import("@emotion/native").StyledComponent<import("react-native").ViewProps & {
7
- theme?: import("@emotion/react").Theme | undefined;
8
- as?: import("react").ElementType<any> | undefined;
6
+ theme?: import("@emotion/react").Theme;
7
+ as?: React.ElementType;
9
8
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, {}, {
10
9
  ref?: import("react").Ref<import("react-native").View> | undefined;
11
10
  }>;
@@ -1,11 +1,10 @@
1
- /// <reference types="react" />
2
1
  export declare const Backdrop: import("@emotion/native").StyledComponent<import("@tecsinapse/react-core").PressableSurfaceProps & {
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, {}, {}>;
6
5
  export declare const ModalContent: import("@emotion/native").StyledComponent<import("react-native").ViewProps & {
7
- theme?: import("@emotion/react").Theme | undefined;
8
- as?: import("react").ElementType<any> | undefined;
6
+ theme?: import("@emotion/react").Theme;
7
+ as?: React.ElementType;
9
8
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, {}, {
10
9
  ref?: import("react").Ref<import("react-native").View> | undefined;
11
10
  }>;
@@ -1,40 +1,39 @@
1
- /// <reference types="react" />
2
1
  import { FlatList } from 'react-native';
3
2
  export declare const StyledTextLabel: import("@emotion/native").StyledComponent<import("@tecsinapse/react-core").TextProps & {
4
- theme?: import("@emotion/react").Theme | undefined;
5
- as?: import("react").ElementType<any> | undefined;
3
+ theme?: import("@emotion/react").Theme;
4
+ as?: React.ElementType;
6
5
  }, {}, {}>;
7
6
  export declare const TimeDigitContainer: import("@emotion/native").StyledComponent<import("react-native").FlatListProps<string> & {
8
- theme?: import("@emotion/react").Theme | undefined;
9
- as?: import("react").ElementType<any> | undefined;
7
+ theme?: import("@emotion/react").Theme;
8
+ as?: React.ElementType;
10
9
  }, {}, {
11
10
  ref?: import("react").Ref<FlatList<string>> | undefined;
12
11
  }>;
13
12
  export declare const TimeCard: import("@emotion/native").StyledComponent<import("@tecsinapse/react-core").PressableSurfaceProps & {
14
- theme?: import("@emotion/react").Theme | undefined;
15
- as?: import("react").ElementType<any> | undefined;
13
+ theme?: import("@emotion/react").Theme;
14
+ as?: React.ElementType;
16
15
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps> & {
17
- isSelected?: boolean | undefined;
16
+ isSelected?: boolean;
18
17
  }, {}, {}>;
19
18
  export declare const Root: import("@emotion/native").StyledComponent<import("react-native").ViewProps & {
20
- theme?: import("@emotion/react").Theme | undefined;
21
- as?: import("react").ElementType<any> | undefined;
19
+ theme?: import("@emotion/react").Theme;
20
+ as?: React.ElementType;
22
21
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, {}, {
23
22
  ref?: import("react").Ref<import("react-native").View> | undefined;
24
23
  }>;
25
24
  export declare const Content: import("@emotion/native").StyledComponent<import("react-native").ViewProps & {
26
- theme?: import("@emotion/react").Theme | undefined;
27
- as?: import("react").ElementType<any> | undefined;
25
+ theme?: import("@emotion/react").Theme;
26
+ as?: React.ElementType;
28
27
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, {}, {
29
28
  ref?: import("react").Ref<import("react-native").View> | undefined;
30
29
  }>;
31
30
  export declare const BackButton: import("@emotion/native").StyledComponent<import("@tecsinapse/react-core").PressableSurfaceProps & {
32
- theme?: import("@emotion/react").Theme | undefined;
33
- as?: import("react").ElementType<any> | undefined;
31
+ theme?: import("@emotion/react").Theme;
32
+ as?: React.ElementType;
34
33
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, {}, {}>;
35
34
  export declare const Header: import("@emotion/native").StyledComponent<import("react-native").ViewProps & {
36
- theme?: import("@emotion/react").Theme | undefined;
37
- as?: import("react").ElementType<any> | undefined;
35
+ theme?: import("@emotion/react").Theme;
36
+ as?: React.ElementType;
38
37
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, {}, {
39
38
  ref?: import("react").Ref<import("react-native").View> | undefined;
40
39
  }>;
@@ -1,6 +1,5 @@
1
- /// <reference types="react" />
2
1
  import { DrawerProps } from './Drawer';
3
2
  export declare const StyledContainerDrawer: import("@emotion/styled").StyledComponent<{
4
- theme?: import("@emotion/react").Theme | undefined;
5
- as?: import("react").ElementType<any> | undefined;
3
+ theme?: import("@emotion/react").Theme;
4
+ as?: React.ElementType;
6
5
  } & DrawerProps & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,12 +1,11 @@
1
- /// <reference types="react" />
2
1
  export declare const StyledIconTextButton: import("@emotion/native").StyledComponent<import("@tecsinapse/react-core").ButtonProps & {
3
- onMouseOver?: (() => void) | undefined;
4
- onMouseOut?: (() => void) | undefined;
5
- onPressIn?: (() => void) | undefined;
6
- onPressOut?: (() => void) | undefined;
2
+ onMouseOver?: () => void;
3
+ onMouseOut?: () => void;
4
+ onPressIn?: () => void;
5
+ onPressOut?: () => void;
7
6
  } & {
8
- theme?: import("@emotion/react").Theme | undefined;
9
- as?: import("react").ElementType<any> | undefined;
7
+ theme?: import("@emotion/react").Theme;
8
+ as?: React.ElementType;
10
9
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps> & {
11
10
  boxed: boolean;
12
11
  }, {}, {}>;
@@ -1,5 +1,5 @@
1
- import { FC } from 'react';
1
+ import React from 'react';
2
2
  import { InputWebProps } from '../../atoms/Input';
3
3
  export type InputPasswordWebProps = InputWebProps;
4
- declare const InputPassword: FC<InputPasswordWebProps>;
4
+ declare const InputPassword: React.ForwardRefExoticComponent<Omit<InputWebProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
5
5
  export default InputPassword;
@@ -1,12 +1,11 @@
1
- /// <reference types="react" />
2
1
  import { LabelPositionOptions } from '@tecsinapse/react-core';
3
2
  export declare const StyledDiv: import("@emotion/styled").StyledComponent<{
4
- theme?: import("@emotion/react").Theme | undefined;
5
- as?: import("react").ElementType<any> | undefined;
3
+ theme?: import("@emotion/react").Theme;
4
+ as?: React.ElementType;
6
5
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
7
6
  export declare const StyledLabel: import("@emotion/native").StyledComponent<import("@tecsinapse/react-core").TextProps & {
8
- theme?: import("@emotion/react").Theme | undefined;
9
- as?: import("react").ElementType<any> | undefined;
7
+ theme?: import("@emotion/react").Theme;
8
+ as?: React.ElementType;
10
9
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps> & {
11
10
  labelPosition: LabelPositionOptions;
12
11
  }, {}, {}>;
@@ -1,18 +1,17 @@
1
- /// <reference types="react" />
2
1
  import { MasonryProps } from './Masonry';
3
2
  export declare const StyledColumnItem: import("@emotion/styled").StyledComponent<{
4
- theme?: import("@emotion/react").Theme | undefined;
5
- as?: import("react").ElementType<any> | undefined;
3
+ theme?: import("@emotion/react").Theme;
4
+ as?: React.ElementType;
6
5
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps> & {
7
6
  index: number;
8
7
  } & Partial<MasonryProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
9
8
  export declare const StyledMasonry: import("@emotion/styled").StyledComponent<{
10
- theme?: import("@emotion/react").Theme | undefined;
11
- as?: import("react").ElementType<any> | undefined;
9
+ theme?: import("@emotion/react").Theme;
10
+ as?: React.ElementType;
12
11
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
13
12
  export declare const StyledRowItem: import("@emotion/styled").StyledComponent<{
14
- theme?: import("@emotion/react").Theme | undefined;
15
- as?: import("react").ElementType<any> | undefined;
13
+ theme?: import("@emotion/react").Theme;
14
+ as?: React.ElementType;
16
15
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps> & {
17
16
  index: number;
18
17
  } & Partial<MasonryProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,9 +1,8 @@
1
- /// <reference types="react" />
2
1
  export declare const StyledContainerItem: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
5
  export declare const DummyBorder: import("@emotion/styled").StyledComponent<{
7
- theme?: import("@emotion/react").Theme | undefined;
8
- as?: import("react").ElementType<any> | undefined;
6
+ theme?: import("@emotion/react").Theme;
7
+ as?: React.ElementType;
9
8
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,9 +1,8 @@
1
- /// <reference types="react" />
2
1
  export declare const StyledContainerItemText: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
5
  export declare const StyledSubButton: import("@emotion/styled").StyledComponent<{
7
- theme?: import("@emotion/react").Theme | undefined;
8
- as?: import("react").ElementType<any> | undefined;
6
+ theme?: import("@emotion/react").Theme;
7
+ as?: React.ElementType;
9
8
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
@@ -1,21 +1,20 @@
1
- /// <reference types="react" />
2
1
  export declare const StyledLeftComponent: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
5
  export declare const StyledRightComponent: import("@emotion/styled").StyledComponent<{
7
- theme?: import("@emotion/react").Theme | undefined;
8
- as?: import("react").ElementType<any> | undefined;
6
+ theme?: import("@emotion/react").Theme;
7
+ as?: React.ElementType;
9
8
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
10
9
  export declare const StyledContainerMenu: import("@emotion/styled").StyledComponent<{
11
- theme?: import("@emotion/react").Theme | undefined;
12
- as?: import("react").ElementType<any> | undefined;
10
+ theme?: import("@emotion/react").Theme;
11
+ as?: React.ElementType;
13
12
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
14
13
  export declare const StyledContainerItems: import("@emotion/styled").StyledComponent<{
15
- theme?: import("@emotion/react").Theme | undefined;
16
- as?: import("react").ElementType<any> | undefined;
14
+ theme?: import("@emotion/react").Theme;
15
+ as?: React.ElementType;
17
16
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
18
17
  export declare const StyledText: import("@emotion/styled").StyledComponent<{
19
- theme?: import("@emotion/react").Theme | undefined;
20
- as?: import("react").ElementType<any> | undefined;
18
+ theme?: import("@emotion/react").Theme;
19
+ as?: React.ElementType;
21
20
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
@@ -1,9 +1,8 @@
1
- /// <reference types="react" />
2
1
  export declare const StyledCardContainer: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
5
  export declare const StyledCard: import("@emotion/native").StyledComponent<import("@tecsinapse/react-core").CardProps & {
7
- theme?: import("@emotion/react").Theme | undefined;
8
- as?: import("react").ElementType<any> | undefined;
6
+ theme?: import("@emotion/react").Theme;
7
+ as?: React.ElementType;
9
8
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, {}, {}>;
@@ -1,9 +1,8 @@
1
- /// <reference types="react" />
2
1
  export declare const StyledSearchItemContainer: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
5
  export declare const HighlightText: import("@emotion/native").StyledComponent<import("@tecsinapse/react-core").TextProps & {
7
- theme?: import("@emotion/react").Theme | undefined;
8
- as?: import("react").ElementType<any> | undefined;
6
+ theme?: import("@emotion/react").Theme;
7
+ as?: React.ElementType;
9
8
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, {}, {}>;
@@ -1,40 +1,37 @@
1
- /// <reference types="react" />
2
1
  export declare const StyledIconInput: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
5
  export declare const StyledMenuBar: import("@emotion/styled").StyledComponent<{
7
- theme?: import("@emotion/react").Theme | undefined;
8
- as?: import("react").ElementType<any> | undefined;
6
+ theme?: import("@emotion/react").Theme;
7
+ as?: React.ElementType;
9
8
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
10
9
  export declare const StyledMenuButton: import("@emotion/native").StyledComponent<import("@tecsinapse/react-core").ButtonProps & {
11
- onMouseOver?: (() => void) | undefined;
12
- onMouseOut?: (() => void) | undefined;
13
- onPressIn?: (() => void) | undefined;
14
- onPressOut?: (() => void) | undefined;
10
+ onMouseOver?: () => void;
11
+ onMouseOut?: () => void;
12
+ onPressIn?: () => void;
13
+ onPressOut?: () => void;
15
14
  } & {
16
- theme?: import("@emotion/react").Theme | undefined;
17
- as?: import("react").ElementType<any> | undefined;
15
+ theme?: import("@emotion/react").Theme;
16
+ as?: React.ElementType;
18
17
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, {}, {}>;
19
18
  export declare const StyledContainerOpenMenu: import("@emotion/styled").StyledComponent<{
20
- theme?: import("@emotion/react").Theme | undefined;
21
- as?: import("react").ElementType<any> | undefined;
19
+ theme?: import("@emotion/react").Theme;
20
+ as?: React.ElementType;
22
21
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
23
- export declare const StyledInput: import("@emotion/native").StyledComponent<Omit<import("@tecsinapse/react-core").InputElementProps, "style"> & import("@tecsinapse/react-core").InputContainerProps & {
24
- ref?: import("react").Ref<HTMLInputElement | undefined> | undefined;
25
- } & {
26
- theme?: import("@emotion/react").Theme | undefined;
27
- as?: import("react").ElementType<any> | undefined;
22
+ export declare const StyledInput: import("@emotion/native").StyledComponent<Omit<import("../../atoms/Input").InputWebProps, "ref"> & import("react").RefAttributes<HTMLInputElement> & {
23
+ theme?: import("@emotion/react").Theme;
24
+ as?: React.ElementType;
28
25
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, {}, {}>;
29
26
  export declare const StyledInputContainer: import("@emotion/styled").StyledComponent<{
30
- theme?: import("@emotion/react").Theme | undefined;
31
- as?: import("react").ElementType<any> | undefined;
27
+ theme?: import("@emotion/react").Theme;
28
+ as?: React.ElementType;
32
29
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
33
30
  export declare const StyledSearchResultsContainer: import("@emotion/styled").StyledComponent<{
34
- theme?: import("@emotion/react").Theme | undefined;
35
- as?: import("react").ElementType<any> | undefined;
31
+ theme?: import("@emotion/react").Theme;
32
+ as?: React.ElementType;
36
33
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
37
34
  export declare const StyledSearchTextContainer: import("@emotion/styled").StyledComponent<{
38
- theme?: import("@emotion/react").Theme | undefined;
39
- as?: import("react").ElementType<any> | undefined;
35
+ theme?: import("@emotion/react").Theme;
36
+ as?: React.ElementType;
40
37
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,9 +1,8 @@
1
- /// <reference types="react" />
2
1
  export declare const DivStyledColumn: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
5
  export declare const DivStyledRow: import("@emotion/styled").StyledComponent<{
7
- theme?: import("@emotion/react").Theme | undefined;
8
- as?: import("react").ElementType<any> | undefined;
6
+ theme?: import("@emotion/react").Theme;
7
+ as?: React.ElementType;
9
8
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,9 +1,8 @@
1
- /// <reference types="react" />
2
1
  export declare const DivStyledColumn: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
5
  export declare const DivStyledRow: import("@emotion/styled").StyledComponent<{
7
- theme?: import("@emotion/react").Theme | undefined;
8
- as?: import("react").ElementType<any> | undefined;
6
+ theme?: import("@emotion/react").Theme;
7
+ as?: React.ElementType;
9
8
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -4,5 +4,5 @@ declare const _default: React.MemoExoticComponent<({ fullWidth, searchArg, onCha
4
4
  searchArg: any;
5
5
  onChange: any;
6
6
  placeholder: any;
7
- }) => JSX.Element>;
7
+ }) => React.JSX.Element>;
8
8
  export default _default;
@@ -1,36 +1,35 @@
1
- /// <reference types="react" />
2
1
  import { SelectProps } from '../Select';
3
2
  export declare const StyledContainerDropdown: import("@emotion/styled").StyledComponent<{
4
- theme?: import("@emotion/react").Theme | undefined;
5
- as?: import("react").ElementType<any> | undefined;
3
+ theme?: import("@emotion/react").Theme;
4
+ as?: React.ElementType;
6
5
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps & SelectProps<unknown, "single" | "multi"> & {
7
6
  lengthOptions: number;
8
7
  }>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
9
8
  export declare const OptionsContainer: import("@emotion/styled").StyledComponent<{
10
- theme?: import("@emotion/react").Theme | undefined;
11
- as?: import("react").ElementType<any> | undefined;
9
+ theme?: import("@emotion/react").Theme;
10
+ as?: React.ElementType;
12
11
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps & SelectProps<unknown, "single" | "multi"> & {
13
12
  lengthOptions: number;
14
13
  }>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
15
14
  export declare const SearchBarContainer: import("@emotion/styled").StyledComponent<{
16
- theme?: import("@emotion/react").Theme | undefined;
17
- as?: import("react").ElementType<any> | undefined;
15
+ theme?: import("@emotion/react").Theme;
16
+ as?: React.ElementType;
18
17
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
19
18
  export declare const PaddedContainer: import("@emotion/styled").StyledComponent<{
20
- theme?: import("@emotion/react").Theme | undefined;
21
- as?: import("react").ElementType<any> | undefined;
19
+ theme?: import("@emotion/react").Theme;
20
+ as?: React.ElementType;
22
21
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
23
22
  export declare const StyledContainerCheckAll: import("@emotion/styled").StyledComponent<{
24
- theme?: import("@emotion/react").Theme | undefined;
25
- as?: import("react").ElementType<any> | undefined;
23
+ theme?: import("@emotion/react").Theme;
24
+ as?: React.ElementType;
26
25
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps> & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
27
- theme?: import("@emotion/react").Theme | undefined;
26
+ theme?: import("@emotion/react").Theme;
28
27
  }, {}, {}>;
29
28
  export declare const StyledSpan: import("@emotion/styled").StyledComponent<{
30
- theme?: import("@emotion/react").Theme | undefined;
31
- as?: import("react").ElementType<any> | undefined;
29
+ theme?: import("@emotion/react").Theme;
30
+ as?: React.ElementType;
32
31
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
33
32
  export declare const StyledContainerTextLabel: import("@emotion/styled").StyledComponent<{
34
- theme?: import("@emotion/react").Theme | undefined;
35
- as?: import("react").ElementType<any> | undefined;
33
+ theme?: import("@emotion/react").Theme;
34
+ as?: React.ElementType;
36
35
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  interface SelectItemProps<Data, Type extends 'single' | 'multi'> {
3
2
  item: Data;
4
3
  type: Type;
@@ -8,10 +7,11 @@ interface SelectItemProps<Data, Type extends 'single' | 'multi'> {
8
7
  labelExtractor: (t: Data) => string;
9
8
  index: number;
10
9
  }
11
- declare const _default: <Data, Type extends "single" | "multi">({ item, onSelect, type, value, labelExtractor, setDropDownVisible, checkedAll, setCheckedAll, lenghtOptions, keyExtractor, }: SelectItemProps<Data, Type> & {
10
+ declare const SelectItem: <Data, Type extends "single" | "multi">({ item, onSelect, type, value, labelExtractor, setDropDownVisible, checkedAll, setCheckedAll, lenghtOptions, keyExtractor, }: SelectItemProps<Data, Type> & {
12
11
  setDropDownVisible: (t: boolean) => void;
13
12
  checkedAll: boolean;
14
13
  setCheckedAll: (t: boolean) => void;
15
14
  lenghtOptions: number;
16
15
  }) => JSX.Element;
16
+ declare const _default: typeof SelectItem;
17
17
  export default _default;
@@ -1,15 +1,14 @@
1
- /// <reference types="react" />
2
1
  export declare const ContainerItemSelect: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
5
  export declare const StyledSpan: import("@emotion/styled").StyledComponent<{
7
- theme?: import("@emotion/react").Theme | undefined;
8
- as?: import("react").ElementType<any> | undefined;
6
+ theme?: import("@emotion/react").Theme;
7
+ as?: React.ElementType;
9
8
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps> & {
10
9
  singleHighligh: boolean;
11
10
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
12
11
  export declare const StyledContainerTextLabel: import("@emotion/styled").StyledComponent<{
13
- theme?: import("@emotion/react").Theme | undefined;
14
- as?: import("react").ElementType<any> | undefined;
12
+ theme?: import("@emotion/react").Theme;
13
+ as?: React.ElementType;
15
14
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,2 +1,2 @@
1
1
  import { MultiLabels } from './types';
2
- export declare const getDisplayValue: <Data>(type: 'multi' | 'single', value: Data | Data[] | undefined, options: Data[], placeholder: string | undefined, keyExtractor: (option: Data, idx?: number) => string, labelExtractor: (option: Data) => string, multiLabels?: MultiLabels) => string | undefined;
2
+ export declare const getDisplayValue: <Data>(type: "multi" | "single", value: Data | Data[] | undefined, options: Data[], placeholder: string | undefined, keyExtractor: (option: Data, idx?: number) => string, labelExtractor: (option: Data) => string, multiLabels?: MultiLabels) => string | undefined;
@@ -1,19 +1,18 @@
1
- /// <reference types="react" />
2
1
  export declare const StyledContainer: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
6
5
  export declare const StyledInputContainer: import("@emotion/styled").StyledComponent<{
7
- theme?: import("@emotion/react").Theme | undefined;
8
- as?: import("react").ElementType<any> | undefined;
6
+ theme?: import("@emotion/react").Theme;
7
+ as?: React.ElementType;
9
8
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
10
9
  export declare const StyledHintContainer: import("@emotion/styled").StyledComponent<{
11
- theme?: import("@emotion/react").Theme | undefined;
12
- as?: import("react").ElementType<any> | undefined;
10
+ theme?: import("@emotion/react").Theme;
11
+ as?: React.ElementType;
13
12
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
14
13
  export declare const StyledIconComponent: import("@emotion/native").StyledComponent<import("@tecsinapse/react-core").IconProps & {
15
- theme?: import("@emotion/react").Theme | undefined;
16
- as?: import("react").ElementType<any> | undefined;
14
+ theme?: import("@emotion/react").Theme;
15
+ as?: React.ElementType;
17
16
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps & {
18
17
  disabled: boolean;
19
18
  }>, {}, {}>;
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
1
  export declare const SnackbarStyled: import("@emotion/native").StyledComponent<import("@tecsinapse/react-core").SnackbarProps & {
3
- theme?: import("@emotion/react").Theme | undefined;
4
- as?: import("react").ElementType<any> | undefined;
2
+ theme?: import("@emotion/react").Theme;
3
+ as?: React.ElementType;
5
4
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, {}, {}>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { FontStackType, FontWeightType } from '@tecsinapse/react-core';
3
2
  import { TextAreaProps } from './TextArea';
4
3
  interface Font {
@@ -6,10 +5,10 @@ interface Font {
6
5
  fontWeight?: FontWeightType;
7
6
  }
8
7
  export declare const StyledWebInput: import("@emotion/native").StyledComponent<import("@tecsinapse/react-core").InputElementProps & import("react").RefAttributes<import("react-native").TextInput> & {
9
- theme?: import("@emotion/react").Theme | undefined;
10
- as?: import("react").ElementType<any> | undefined;
8
+ theme?: import("@emotion/react").Theme;
9
+ as?: React.ElementType;
11
10
  } & Partial<import("@tecsinapse/react-core").TextAreaProps> & Partial<import("@tecsinapse/react-core").ThemeProviderProps> & {
12
- theme?: import("@emotion/react").Theme | undefined;
13
- as?: import("react").ElementType<any> | undefined;
11
+ theme?: import("@emotion/react").Theme;
12
+ as?: React.ElementType;
14
13
  } & Font & Partial<TextAreaProps>, {}, {}>;
15
14
  export {};
@@ -1,60 +1,59 @@
1
- /// <reference types="react" />
2
1
  export declare const TdFooterStyled: import("@emotion/styled").StyledComponent<import("react").TdHTMLAttributes<HTMLTableCellElement> & {
3
- theme?: import("@emotion/react").Theme | undefined;
2
+ theme?: import("@emotion/react").Theme;
4
3
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, {}, {}>;
5
4
  export declare const FlexContainer: import("@emotion/styled").StyledComponent<{
6
- theme?: import("@emotion/react").Theme | undefined;
7
- as?: import("react").ElementType<any> | undefined;
5
+ theme?: import("@emotion/react").Theme;
6
+ as?: React.ElementType;
8
7
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
9
8
  export declare const FooterContainer: import("@emotion/styled").StyledComponent<{
10
- theme?: import("@emotion/react").Theme | undefined;
11
- as?: import("react").ElementType<any> | undefined;
9
+ theme?: import("@emotion/react").Theme;
10
+ as?: React.ElementType;
12
11
  } & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
13
- theme?: import("@emotion/react").Theme | undefined;
12
+ theme?: import("@emotion/react").Theme;
14
13
  }, {}, {}>;
15
14
  export declare const FooterContainerStart: import("@emotion/styled").StyledComponent<{
16
- theme?: import("@emotion/react").Theme | undefined;
17
- as?: import("react").ElementType<any> | undefined;
15
+ theme?: import("@emotion/react").Theme;
16
+ as?: React.ElementType;
18
17
  } & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
19
- theme?: import("@emotion/react").Theme | undefined;
18
+ theme?: import("@emotion/react").Theme;
20
19
  }, {}, {}>;
21
20
  export declare const FooterContainerEnd: import("@emotion/styled").StyledComponent<{
22
- theme?: import("@emotion/react").Theme | undefined;
23
- as?: import("react").ElementType<any> | undefined;
21
+ theme?: import("@emotion/react").Theme;
22
+ as?: React.ElementType;
24
23
  } & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
25
- theme?: import("@emotion/react").Theme | undefined;
24
+ theme?: import("@emotion/react").Theme;
26
25
  }, {}, {}>;
27
26
  export declare const SelectContainer: import("@emotion/styled").StyledComponent<{
28
- theme?: import("@emotion/react").Theme | undefined;
29
- as?: import("react").ElementType<any> | undefined;
27
+ theme?: import("@emotion/react").Theme;
28
+ as?: React.ElementType;
30
29
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
31
30
  export declare const NavigationButton: import("@emotion/native").StyledComponent<import("@tecsinapse/react-core").ButtonProps & {
32
- onMouseOver?: (() => void) | undefined;
33
- onMouseOut?: (() => void) | undefined;
34
- onPressIn?: (() => void) | undefined;
35
- onPressOut?: (() => void) | undefined;
31
+ onMouseOver?: () => void;
32
+ onMouseOut?: () => void;
33
+ onPressIn?: () => void;
34
+ onPressOut?: () => void;
36
35
  } & {
37
- theme?: import("@emotion/react").Theme | undefined;
38
- as?: import("react").ElementType<any> | undefined;
36
+ theme?: import("@emotion/react").Theme;
37
+ as?: React.ElementType;
39
38
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, {}, {}>;
40
39
  export declare const PageButton: import("@emotion/native").StyledComponent<import("@tecsinapse/react-core").ButtonProps & {
41
- onMouseOver?: (() => void) | undefined;
42
- onMouseOut?: (() => void) | undefined;
43
- onPressIn?: (() => void) | undefined;
44
- onPressOut?: (() => void) | undefined;
40
+ onMouseOver?: () => void;
41
+ onMouseOut?: () => void;
42
+ onPressIn?: () => void;
43
+ onPressOut?: () => void;
45
44
  } & {
46
- theme?: import("@emotion/react").Theme | undefined;
47
- as?: import("react").ElementType<any> | undefined;
45
+ theme?: import("@emotion/react").Theme;
46
+ as?: React.ElementType;
48
47
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, {}, {}>;
49
48
  export declare const PagesContainer: import("@emotion/styled").StyledComponent<{
50
- theme?: import("@emotion/react").Theme | undefined;
51
- as?: import("react").ElementType<any> | undefined;
49
+ theme?: import("@emotion/react").Theme;
50
+ as?: React.ElementType;
52
51
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
53
52
  export declare const HoveredText: import("@emotion/styled").StyledComponent<{
54
- theme?: import("@emotion/react").Theme | undefined;
55
- as?: import("react").ElementType<any> | undefined;
53
+ theme?: import("@emotion/react").Theme;
54
+ as?: React.ElementType;
56
55
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
57
56
  export declare const TextPagination: import("@emotion/native").StyledComponent<import("@tecsinapse/react-core").TextProps & {
58
- theme?: import("@emotion/react").Theme | undefined;
59
- as?: import("react").ElementType<any> | undefined;
57
+ theme?: import("@emotion/react").Theme;
58
+ as?: React.ElementType;
60
59
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, {}, {}>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { HeadersType } from '../types';
3
2
  export interface DataGridHeaderProps<Data> {
4
3
  headers: HeadersType<Data>[];
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export declare const CheckboxHeader: import("@emotion/styled").StyledComponent<import("react").ThHTMLAttributes<HTMLTableHeaderCellElement> & {
3
- theme?: import("@emotion/react").Theme | undefined;
2
+ theme?: import("@emotion/react").Theme;
4
3
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, {}, {}>;
@@ -3,6 +3,6 @@ export declare const NEXT_STATE: {
3
3
  [key: string]: SortState;
4
4
  };
5
5
  export declare const getIconSuffix: (state: SortState) => string;
6
- export declare const getIconColor: (state: SortState) => 'medium' | 'orange';
6
+ export declare const getIconColor: (state: SortState) => "medium" | "orange";
7
7
  export declare const findUnselectedItemsOnData: <T>(selected: T[], data: T[], rowKeyExtractor: (t: T) => string) => T[];
8
8
  export declare const findCurrentItemsOnData: <T>(selected: T[], data: T[], rowKeyExtractor: (t: T) => string) => T[];
@@ -6,5 +6,5 @@ declare const _default: React.MemoExoticComponent<({ rowKeyExtractor, data, chec
6
6
  handleSelect: any;
7
7
  selectable: any;
8
8
  headers: any;
9
- }) => JSX.Element>;
9
+ }) => React.JSX.Element>;
10
10
  export default _default;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export declare const CheckboxCell: import("@emotion/styled").StyledComponent<import("react").TdHTMLAttributes<HTMLTableCellElement> & {
3
- theme?: import("@emotion/react").Theme | undefined;
2
+ theme?: import("@emotion/react").Theme;
4
3
  } & Partial<import("@tecsinapse/react-core").ThemeProviderProps>, {}, {}>;
@@ -1,2 +1,2 @@
1
1
  import React from 'react';
2
- export declare const useClickAwayListener: (ref: React.MutableRefObject<any>, setVisible: React.Dispatch<React.SetStateAction<boolean>>, event?: 'mouseup' | 'mousedown' | undefined, onClickAway?: () => void) => void;
2
+ export declare const useClickAwayListener: (ref: React.MutableRefObject<any>, setVisible: React.Dispatch<React.SetStateAction<boolean>>, event?: "mouseup" | "mousedown" | undefined, onClickAway?: () => void) => void;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tecsinapse/react-web-kit",
3
3
  "description": "React components library for web",
4
- "version": "3.4.20",
4
+ "version": "3.4.21",
5
5
  "license": "MIT",
6
6
  "main": "dist/esm/index.js",
7
7
  "module": "dist/esm/index.js",
@@ -19,7 +19,7 @@
19
19
  "@emotion/native": "~11.11.0",
20
20
  "@emotion/react": "~11.11.0",
21
21
  "@emotion/styled": "~11.11.0",
22
- "@tecsinapse/react-core": "3.4.13",
22
+ "@tecsinapse/react-core": "3.4.14",
23
23
  "date-fns": "~2.30.0",
24
24
  "react-native-vector-icons": "^9.2.0",
25
25
  "react-transition-group": "~4.4.5"
@@ -38,5 +38,5 @@
38
38
  "react-dom": ">=18.0.0",
39
39
  "react-native-web": ">=0.18.0 <1"
40
40
  },
41
- "gitHead": "56265c4e49e362349a4b93bef75555e0d6b25d64"
41
+ "gitHead": "facab9dc92fe7dfaf55579ab593fd81c95bb34c6"
42
42
  }