@react-form-builder/components-rsuite 0.0.12 → 0.0.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/css/rsuite-rtl.min.css +1 -1
- package/dist/css/rsuite.min.css +1 -1
- package/dist/index.d.ts +27 -0
- package/dist/index.js +276 -273
- package/dist/index.js.map +1 -1
- package/dist/rsuite-rtl.min-e6560508.js +5 -0
- package/dist/rsuite-rtl.min-e6560508.js.map +1 -0
- package/dist/rsuite.min-50546f81.js +5 -0
- package/dist/rsuite.min-50546f81.js.map +1 -0
- package/package.json +2 -2
- package/dist/rsuite-rtl.min-86303d14.js +0 -5
- package/dist/rsuite-rtl.min-86303d14.js.map +0 -1
- package/dist/rsuite.min-4d4b75f9.js +0 -5
- package/dist/rsuite.min-4d4b75f9.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -14,14 +14,23 @@ import { WrapperProps } from '@react-form-builder/core';
|
|
|
14
14
|
*/
|
|
15
15
|
export declare const ltrCssLoader: () => Promise<void>;
|
|
16
16
|
|
|
17
|
+
/**
|
|
18
|
+
* An array of rSuite component metadata for use in FormViewer.
|
|
19
|
+
*/
|
|
17
20
|
export declare const models: Model<any>[];
|
|
18
21
|
|
|
22
|
+
/**
|
|
23
|
+
* Metadata builder for rSuite-based error display component.
|
|
24
|
+
*/
|
|
19
25
|
export declare const rsErrorMessage: Definer<RsErrorMessageProps>;
|
|
20
26
|
|
|
21
27
|
/**
|
|
22
28
|
* The properties of RsErrorMessage component.
|
|
23
29
|
*/
|
|
24
30
|
export declare interface RsErrorMessageProps extends ErrorWrapperProps {
|
|
31
|
+
/**
|
|
32
|
+
* The placement of an error message.
|
|
33
|
+
*/
|
|
25
34
|
placement?: TypeAttributes.Placement8;
|
|
26
35
|
}
|
|
27
36
|
|
|
@@ -34,17 +43,32 @@ export declare interface RsErrorMessageProps extends ErrorWrapperProps {
|
|
|
34
43
|
*/
|
|
35
44
|
export declare const RsLocalizationWrapper: ({ language, children }: FormViewerWrapperComponentProps) => JSX_2.Element;
|
|
36
45
|
|
|
46
|
+
/**
|
|
47
|
+
* Metadata builder for rSuite-based tooltip display component.
|
|
48
|
+
*/
|
|
37
49
|
export declare const rsTooltip: Definer<RsTooltipProps>;
|
|
38
50
|
|
|
39
51
|
/**
|
|
40
52
|
* The properties of RsTooltip component.
|
|
41
53
|
*/
|
|
42
54
|
export declare interface RsTooltipProps extends WrapperProps {
|
|
55
|
+
/**
|
|
56
|
+
* The tooltip text.
|
|
57
|
+
*/
|
|
43
58
|
text: string;
|
|
59
|
+
/**
|
|
60
|
+
* The placement of a tooltip.
|
|
61
|
+
*/
|
|
44
62
|
placement: TypeAttributes.Placement;
|
|
63
|
+
/**
|
|
64
|
+
* The tooltip trigger.
|
|
65
|
+
*/
|
|
45
66
|
trigger: OverlayTriggerType;
|
|
46
67
|
}
|
|
47
68
|
|
|
69
|
+
/**
|
|
70
|
+
* An array of rSuite component metadata factories.
|
|
71
|
+
*/
|
|
48
72
|
export declare const rSuiteComponents: Definer<any>[];
|
|
49
73
|
|
|
50
74
|
/**
|
|
@@ -53,6 +77,9 @@ export declare const rSuiteComponents: Definer<any>[];
|
|
|
53
77
|
*/
|
|
54
78
|
export declare const rtlCssLoader: () => Promise<void>;
|
|
55
79
|
|
|
80
|
+
/**
|
|
81
|
+
* An assembled set of rSuite components, ready to be passed as a property to the FormViewer.
|
|
82
|
+
*/
|
|
56
83
|
export declare const view: View;
|
|
57
84
|
|
|
58
85
|
export { }
|