@hybr1d-tech/charizard 0.7.39 → 0.7.41
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/hybr1d-ui.js +1581 -1582
- package/dist/hybr1d-ui.umd.cjs +13 -13
- package/dist/index.d.ts +10 -10
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1082,7 +1082,7 @@ export declare namespace InputGroupV2 {
|
|
|
1082
1082
|
*
|
|
1083
1083
|
* @property {string} icon - The icon to display.
|
|
1084
1084
|
* @property {() => void} [onClick] - Optional click handler for the icon.
|
|
1085
|
-
* @property {
|
|
1085
|
+
* @property {React.CSSProperties} [iconStyles] - Used for internal styling when grouping it with multiple components. use className for styling icon if clickable.
|
|
1086
1086
|
* @property {boolean} [disabled] - Whether the icon should be disabled with input.
|
|
1087
1087
|
* @property {string} [className] - Additional classNames for the icon if it is clickable.
|
|
1088
1088
|
*
|
|
@@ -1096,7 +1096,7 @@ export declare namespace InputGroupV2 {
|
|
|
1096
1096
|
declare interface InputIconProps {
|
|
1097
1097
|
icon: string;
|
|
1098
1098
|
onClick?: () => void;
|
|
1099
|
-
iconStyles
|
|
1099
|
+
/* Excluded from this release type: iconStyles */
|
|
1100
1100
|
disabled?: boolean;
|
|
1101
1101
|
className?: string;
|
|
1102
1102
|
}
|
|
@@ -1445,8 +1445,8 @@ export declare const InputV2: React_2.ForwardRefExoticComponent<InputV2Props & R
|
|
|
1445
1445
|
*
|
|
1446
1446
|
* @property {string} [errorMsg] - Error message to display below the input if there is a validation error.
|
|
1447
1447
|
* @property {string} [containerClassName] - Additional class name(s) for the input container div.
|
|
1448
|
-
* @property {
|
|
1449
|
-
* @property {
|
|
1448
|
+
* @property {React.CSSProperties} [inputStyles] - Used for internal styling when grouping it with multiple components. use className for styling input.
|
|
1449
|
+
* @property {React.CSSProperties} [containerStyles] - Used for internal styling when grouping it with multiple components. use containerClassName for styling input container.
|
|
1450
1450
|
*
|
|
1451
1451
|
* @example
|
|
1452
1452
|
* <InputV2
|
|
@@ -1464,8 +1464,8 @@ export declare const InputV2: React_2.ForwardRefExoticComponent<InputV2Props & R
|
|
|
1464
1464
|
declare interface InputV2Props extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
1465
1465
|
errorMsg?: string;
|
|
1466
1466
|
containerClassName?: string;
|
|
1467
|
-
inputStyles
|
|
1468
|
-
containerStyles
|
|
1467
|
+
/* Excluded from this release type: inputStyles */
|
|
1468
|
+
/* Excluded from this release type: containerStyles */
|
|
1469
1469
|
}
|
|
1470
1470
|
|
|
1471
1471
|
declare interface ITask {
|
|
@@ -2765,8 +2765,8 @@ export declare const TextareaV2: React_2.ForwardRefExoticComponent<TextareaV2Pro
|
|
|
2765
2765
|
*
|
|
2766
2766
|
* @property {string} [errorMsg] - Error message to display below the textarea if there is a validation error.
|
|
2767
2767
|
* @property {string} [containerClassName] - Additional class name(s) for the textarea container div.
|
|
2768
|
-
* @property {
|
|
2769
|
-
* @property {
|
|
2768
|
+
* @property {React.CSSProperties} [inputStyles] - Used for internal styling when grouping it with multiple components. use className for styling textarea.
|
|
2769
|
+
* @property {React.CSSProperties} [containerStyles] - Used for internal styling when grouping it with multiple components. use containerClassName for styling textarea container.
|
|
2770
2770
|
*
|
|
2771
2771
|
* @example
|
|
2772
2772
|
* <TextareaV2
|
|
@@ -2784,8 +2784,8 @@ export declare const TextareaV2: React_2.ForwardRefExoticComponent<TextareaV2Pro
|
|
|
2784
2784
|
declare interface TextareaV2Props extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
2785
2785
|
errorMsg?: string;
|
|
2786
2786
|
containerClassName?: string;
|
|
2787
|
-
inputStyles
|
|
2788
|
-
containerStyles
|
|
2787
|
+
/* Excluded from this release type: inputStyles */
|
|
2788
|
+
/* Excluded from this release type: containerStyles */
|
|
2789
2789
|
}
|
|
2790
2790
|
|
|
2791
2791
|
export declare function ToastCloseButton({ closeToast }: ToastCloseButtonProps): JSX_2.Element;
|