dfh-ui-library 1.2.11 → 1.2.12

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.
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ interface RowProps {
3
+ children: React.ReactNode;
4
+ }
5
+ declare const Row: React.FC<RowProps>;
6
+ export default Row;
@@ -0,0 +1 @@
1
+ export { default as Row } from "./Row";
@@ -11,3 +11,4 @@ export { default as Message } from "./Message";
11
11
  export { default as Breadcrumb } from "./Breadcrumb";
12
12
  export { default as ImagePreview } from "./ImagePreview";
13
13
  export { default as DatePicker } from "./Datepicker";
14
+ export { Row } from "./core";
package/dist/index.d.ts CHANGED
@@ -450,6 +450,11 @@ 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
+ }
456
+ declare const Row: React$1.FC<RowProps>;
457
+
453
458
  interface UseSchemaProcessorProps {
454
459
  schema: ISchema[];
455
460
  externalSetComponents: (data: IComponent[]) => void;
@@ -458,4 +463,4 @@ declare const useSchemaProcessor: ({ schema, externalSetComponents, }: UseSchema
458
463
  componentsRtn: IComponent[] | undefined;
459
464
  };
460
465
 
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 };
466
+ 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.2.11",
3
+ "version": "1.2.12",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "rollup": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",