ingred-ui 23.9.1 → 23.11.0
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/Badge/types.d.ts +12 -1
- package/dist/components/FilterComboBox/styled.d.ts +1 -4
- package/dist/index.es.js +295 -299
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +295 -299
- package/dist/index.js.map +1 -1
- package/dist/styles/index.d.ts +1 -0
- package/package.json +3 -2
|
@@ -2,8 +2,19 @@ import React from "react";
|
|
|
2
2
|
import { Theme } from "../../themes";
|
|
3
3
|
export type BadgeColor = "primary" | "secondary" | "success" | "warning" | "danger" | "basic";
|
|
4
4
|
export type BadgeType = "normal" | "pill" | "signal";
|
|
5
|
-
export type BadgeSize = "
|
|
5
|
+
export type BadgeSize = "xs" | "small" | "medium";
|
|
6
6
|
export declare const BADGE_SIZE: {
|
|
7
|
+
xs: {
|
|
8
|
+
iconSize: number;
|
|
9
|
+
height: string;
|
|
10
|
+
pillHeight: string;
|
|
11
|
+
gap: string;
|
|
12
|
+
padding: (theme: Theme) => string;
|
|
13
|
+
signalPadding: (theme: Theme) => string;
|
|
14
|
+
signalGap: (theme: Theme) => string;
|
|
15
|
+
dotSize: string;
|
|
16
|
+
fontSize: string;
|
|
17
|
+
};
|
|
7
18
|
small: {
|
|
8
19
|
iconSize: number;
|
|
9
20
|
height: string;
|
|
@@ -19,8 +19,5 @@ export declare const SelectIcon: import("styled-components").StyledComponent<"sp
|
|
|
19
19
|
export declare const StyledContextMenu2TextInputItem: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<{
|
|
20
20
|
onEnter?: (() => void) | undefined;
|
|
21
21
|
} & import("react").InputHTMLAttributes<HTMLInputElement> & import("react").RefAttributes<HTMLInputElement>>, import("styled-components").DefaultTheme, {}, never>;
|
|
22
|
-
export declare const
|
|
23
|
-
className?: string | undefined;
|
|
24
|
-
children: import("react").ReactNode;
|
|
25
|
-
}) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
|
|
22
|
+
export declare const SearchHeaderContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
26
23
|
export {};
|