hplx-react-elements-dev 1.3.22 → 1.3.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.
- package/dist/esm/Badges/Badge.d.ts +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/types.d.ts +2 -1
- package/package.json +1 -1
package/dist/esm/types.d.ts
CHANGED
|
@@ -168,7 +168,7 @@ export interface TextAreaFieldProps {
|
|
|
168
168
|
}
|
|
169
169
|
type badgesizeType = "sm" | "md" | "lg";
|
|
170
170
|
type badgeiconType = "Left" | "Right" | "Only";
|
|
171
|
-
type badgecolourType = "Gray" | "Primary" | "Error" | "Warning" | "Success" | "BlueGray" | "Default" | "Blue" | "Indigo" | "Purple" | "Pink" | "Rose" | "Orange";
|
|
171
|
+
export type badgecolourType = "Gray" | "Primary" | "Error" | "Warning" | "Success" | "BlueGray" | "Default" | "Blue" | "Indigo" | "Purple" | "Pink" | "Rose" | "Orange";
|
|
172
172
|
type iconFileType = "hx_close" | "avatar" | "icon_src_url";
|
|
173
173
|
export interface BadgeType {
|
|
174
174
|
colour: badgecolourType;
|
|
@@ -182,6 +182,7 @@ export interface BadgeType {
|
|
|
182
182
|
onLeftIconClick?: () => void;
|
|
183
183
|
classNameTypography?: string;
|
|
184
184
|
onRightIconClick?: () => void;
|
|
185
|
+
outerDivClass?: string;
|
|
185
186
|
}
|
|
186
187
|
type typographyVariantType = "Regular" | "Medium" | "Semibold" | "Bold";
|
|
187
188
|
type typographyTextType = "Display 2xl" | "Display xl" | "Display lg" | "Display md" | "Display sm" | "Display xs" | "Text xl" | "Text lg" | "Text md" | "Text sm" | "Text [13px]" | "Text xs";
|