@react-form-builder/components-rsuite 3.6.0 → 4.0.0
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/LICENSE +21 -0
- package/README.md +93 -2
- package/dist/css/rsuite-no-reset-rtl.min.css +1 -1
- package/dist/css/rsuite-no-reset.min.css +1 -1
- package/dist/index.d.ts +13 -0
- package/dist/index.js +351 -349
- package/dist/index.js.map +1 -1
- package/dist/rsuite-no-reset-rtl.min-f9b04ca7.js +5 -0
- package/dist/rsuite-no-reset-rtl.min-f9b04ca7.js.map +1 -0
- package/dist/rsuite-no-reset.min-12eea714.js +5 -0
- package/dist/rsuite-no-reset.min-12eea714.js.map +1 -0
- package/package.json +9 -6
- package/dist/rsuite-no-reset-rtl.min-a25850c9.js +0 -5
- package/dist/rsuite-no-reset-rtl.min-a25850c9.js.map +0 -1
- package/dist/rsuite-no-reset.min-c2ac3ca5.js +0 -5
- package/dist/rsuite-no-reset.min-c2ac3ca5.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { BuilderView } from '@react-form-builder/core';
|
|
1
2
|
import { Definer } from '@react-form-builder/core';
|
|
2
3
|
import { ErrorWrapperProps } from '@react-form-builder/core';
|
|
3
4
|
import type { FormViewerWrapperComponentProps } from '@react-form-builder/core';
|
|
@@ -8,6 +9,12 @@ import type { TypeAttributes } from 'rsuite/esm/internals/types';
|
|
|
8
9
|
import { View } from '@react-form-builder/core';
|
|
9
10
|
import { WrapperProps } from '@react-form-builder/core';
|
|
10
11
|
|
|
12
|
+
/**
|
|
13
|
+
* An assembled set of rSuite components metadata, ready to be passed as a property to the FormBuilder.
|
|
14
|
+
* This view contains CSS loaders.
|
|
15
|
+
*/
|
|
16
|
+
export declare const builderViewWithCss: BuilderView;
|
|
17
|
+
|
|
11
18
|
/**
|
|
12
19
|
* Loads FormEngine specific styles over "rsuite" library.
|
|
13
20
|
* @returns the Promise that resolves when the custom styles have been loaded successfully.
|
|
@@ -88,4 +95,10 @@ export declare const rtlCssLoader: () => Promise<void>;
|
|
|
88
95
|
*/
|
|
89
96
|
export declare const view: View;
|
|
90
97
|
|
|
98
|
+
/**
|
|
99
|
+
* An assembled set of rSuite components, ready to be passed as a property to the FormViewer.
|
|
100
|
+
* This view contains CSS loaders.
|
|
101
|
+
*/
|
|
102
|
+
export declare const viewWithCss: View;
|
|
103
|
+
|
|
91
104
|
export { }
|