dfh-ui-library 1.2.11 → 1.2.13
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/core/Row.d.ts +7 -0
- package/dist/cjs/types/components/core/index.d.ts +1 -0
- package/dist/cjs/types/components/index.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/core/Row.d.ts +7 -0
- package/dist/esm/types/components/core/index.d.ts +1 -0
- package/dist/esm/types/components/index.d.ts +1 -0
- package/dist/index.d.ts +7 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Row } from "./Row";
|
package/dist/index.d.ts
CHANGED
|
@@ -450,6 +450,12 @@ declare const ImagePreview: React$1.FC<ImagePreviewProps>;
|
|
|
450
450
|
|
|
451
451
|
declare const CustomDatePicker: React$1.FC<CustomDatePickerProps>;
|
|
452
452
|
|
|
453
|
+
interface RowProps {
|
|
454
|
+
children: React$1.ReactNode;
|
|
455
|
+
additionalClasses?: string;
|
|
456
|
+
}
|
|
457
|
+
declare const Row: React$1.FC<RowProps>;
|
|
458
|
+
|
|
453
459
|
interface UseSchemaProcessorProps {
|
|
454
460
|
schema: ISchema[];
|
|
455
461
|
externalSetComponents: (data: IComponent[]) => void;
|
|
@@ -458,4 +464,4 @@ declare const useSchemaProcessor: ({ schema, externalSetComponents, }: UseSchema
|
|
|
458
464
|
componentsRtn: IComponent[] | undefined;
|
|
459
465
|
};
|
|
460
466
|
|
|
461
|
-
export { Breadcrumb, Button, Card, Checkbox as CheckBox, DFHFormProvider as ComponentProvider, CustomDatePicker as DatePicker, IconInput, ImagePreview, Input, type InputType, InputValidation, Label, LoadingSpinner, Logo, type LogoProps, Message, type MessageProps, NavBar, RadioButton, Select, Textarea, Typhography, useSchemaProcessor as UseSchemaProcessor };
|
|
467
|
+
export { Breadcrumb, Button, Card, Checkbox as CheckBox, DFHFormProvider as ComponentProvider, CustomDatePicker as DatePicker, IconInput, ImagePreview, Input, type InputType, InputValidation, Label, LoadingSpinner, Logo, type LogoProps, Message, type MessageProps, NavBar, RadioButton, Row, Select, Textarea, Typhography, useSchemaProcessor as UseSchemaProcessor };
|