dfh-ui-library 1.13.30 → 1.13.31
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/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Button/ButtonV2.d.ts +4 -0
- package/dist/cjs/types/components/index.d.ts +1 -0
- package/dist/cjs/types/shared/libs/tailwindMerge.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Button/ButtonV2.d.ts +4 -0
- package/dist/esm/types/components/index.d.ts +1 -0
- package/dist/esm/types/shared/libs/tailwindMerge.d.ts +1 -0
- package/dist/index.d.ts +3 -1
- package/package.json +2 -1
@@ -0,0 +1,4 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { IButtonProps } from '../../shared/models/components/base.model';
|
3
|
+
declare const ButtonV2: ({ type, isDisabled, buttonLabel, iconType, iconColor, iconAlignment, isIconEnabled, variants, additionalClasses, iconClass, enableBagage, bagageProps, width, onClick, isLoading, }: IButtonProps) => React.JSX.Element;
|
4
|
+
export default ButtonV2;
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import '../index.css';
|
2
2
|
export { default as Button } from './Button';
|
3
|
+
export { default as ButtonV2 } from './Button/ButtonV2';
|
3
4
|
export { default as Typhography } from './Typhography';
|
4
5
|
export { default as TyphographyFormGen } from './TyphographyFormGen';
|
5
6
|
export { Input, Select, CheckBox, Label, InputValidation, Textarea, RadioButton, IconInput, ImageInput, } from './FormElements';
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const twMerge: (...classLists: import("tailwind-merge").ClassNameValue[]) => string;
|