@evergis/uilib-gl 1.0.22 → 1.0.24

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.
@@ -295,6 +295,9 @@ export declare const iconTypes: {
295
295
  selection_route: string;
296
296
  pulse: string;
297
297
  tree_vertical: string;
298
+ tool_settings: string;
299
+ folder_outline: string;
300
+ menu: string;
298
301
  };
299
302
  export declare const Icon: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, IIconProps, never>;
300
303
  export declare const injectIcon: (icon: IconTypesKeys) => import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<import("styled-components").DefaultTheme>>;
@@ -2,5 +2,5 @@ export declare const H4: import("styled-components").StyledComponent<"h4", impor
2
2
  export declare const H3: import("styled-components").StyledComponent<"h3", import("styled-components").DefaultTheme, {}, never>;
3
3
  export declare const H2: import("styled-components").StyledComponent<"h2", import("styled-components").DefaultTheme, {}, never>;
4
4
  export declare const H1: import("styled-components").StyledComponent<"h1", import("styled-components").DefaultTheme, {}, never>;
5
- export declare const Description: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, {}, never>;
5
+ export declare const Description: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
6
6
  export declare const textOverflowEllipsisMixin = "\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n";
@@ -1,7 +1,7 @@
1
1
  import { IBasicCardProps, ICardBlankProps } from "./types";
2
2
  export declare const Header: import("styled-components").StyledComponent<"h3", import("styled-components").DefaultTheme, {}, never>;
3
- export declare const Title: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, {}, never>;
4
- export declare const CardDescription: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, {}, never>;
3
+ export declare const Title: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
4
+ export declare const CardDescription: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
5
5
  export declare type BlackoutProps = {
6
6
  checked?: boolean;
7
7
  disabled?: boolean;
@@ -1,3 +1,2 @@
1
1
  import { IRadioLabelProps } from "./types";
2
2
  export declare const Label: import("styled-components").StyledComponent<"label", import("styled-components").DefaultTheme, IRadioLabelProps, never>;
3
- export declare const LabelDescription: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, {}, never>;