@evergis/uilib-gl 1.0.77 → 1.0.79

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.
@@ -1,4 +1,3 @@
1
1
  export * from "./Input";
2
- export * from "./Label";
3
2
  export * from "./MaskedComponent";
4
3
  export * from "./types";
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { IBaseOption } from "./types";
2
3
  export declare const OptionContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, IBaseOption, never>;
3
4
  export declare const OptionIcon: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {}, never>;
@@ -10,3 +11,7 @@ export declare const OptionValueWrapper: import("styled-components").StyledCompo
10
11
  export declare const OptionValueContainer: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {
11
12
  disabled?: boolean | undefined;
12
13
  }, never>;
14
+ export declare const OptionToggler: import("styled-components").StyledComponent<import("react").FC<import("../..").IIconButtonProps>, import("styled-components").DefaultTheme, {
15
+ toggled?: boolean | undefined;
16
+ color?: string | undefined;
17
+ }, never>;
@@ -1,4 +1,4 @@
1
- import { CSSProperties, ReactNode, ReactChild, ReactFragment, ReactPortal, PropsWithChildren } from "react";
1
+ import { CSSProperties, PropsWithChildren, ReactChild, ReactFragment, ReactNode, ReactPortal } from "react";
2
2
  import { IconTypesKeys } from "../../atoms/Icon";
3
3
  export declare type ComplexOptionText = ReactNode | ReactChild | ReactFragment | ReactPortal | string;
4
4
  export interface IBaseOption {
@@ -19,6 +19,8 @@ export interface IOption<Text = string> {
19
19
  disabled?: boolean;
20
20
  description?: string;
21
21
  heading?: boolean;
22
+ title?: boolean;
23
+ opened?: boolean;
22
24
  primary?: boolean;
23
25
  indeterminate?: boolean;
24
26
  prefix?: ReactNode;
@@ -1,3 +1,2 @@
1
1
  export * from "./RangeNumberInput";
2
- export * from "./styled";
3
2
  export * from "./types";
@@ -47,6 +47,7 @@ export declare type TreeProps<T = any> = {
47
47
  data: TreeItemProps<T>[];
48
48
  setData?: Dispatch<SetStateAction<TreeItemProps<T>[]>>;
49
49
  loadNode?: (item: TreeItemProps<T>, offset?: number) => Promisable<PartialLoadData<T>>;
50
+ partialNodeMerge?: boolean;
50
51
  withLoadMore?: boolean;
51
52
  expanded?: TreeId[];
52
53
  allExpanded?: boolean;