@hybr1d-tech/charizard 1.1.33 → 1.1.35
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.css +1 -1
- package/dist/hybr1d-ui.js +394 -393
- package/dist/hybr1d-ui.umd.cjs +2 -2
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -159,6 +159,7 @@ declare interface BaseButtonProps {
|
|
|
159
159
|
onClick?: React_2.MouseEventHandler<HTMLButtonElement>;
|
|
160
160
|
size?: BUTTON_SIZE;
|
|
161
161
|
customStyles?: React_2.CSSProperties;
|
|
162
|
+
className?: string;
|
|
162
163
|
btnType?: 'button' | 'reset' | 'submit';
|
|
163
164
|
}
|
|
164
165
|
|
|
@@ -198,7 +199,7 @@ export declare const buildFilterQuery: (queryFilters: Record<string, any>, exclu
|
|
|
198
199
|
|
|
199
200
|
export declare const buildTableQuery: (query: TBaseQuery) => Record<string, any>;
|
|
200
201
|
|
|
201
|
-
export declare function Button({ children, variant, disabled, onClick, type, size, customStyles, icon, btnType, }: ButtonProps): JSX_2.Element;
|
|
202
|
+
export declare function Button({ children, variant, disabled, onClick, type, size, customStyles, className, icon, btnType, }: ButtonProps): JSX_2.Element;
|
|
202
203
|
|
|
203
204
|
export declare namespace Button {
|
|
204
205
|
var GroupAction: React_2.ForwardRefExoticComponent<GroupActionProps & React_2.RefAttributes<unknown>>;
|