@react-form-builder/viewer-bundle 7.8.0 → 7.10.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/README.md +1 -0
- package/dist/formengine-rsuite.css +13 -12
- package/dist/index.iife.js +117 -165
- package/dist/index.umd.js +117 -165
- package/package.json +7 -4
package/README.md
CHANGED
|
@@ -19,6 +19,7 @@ This library is part of the [React Form Builder](https://formengine.io/) project
|
|
|
19
19
|
with [Yup](https://github.com/jquense/yup), [AJV](https://github.com/ajv-validator/ajv), [Zod](https://github.com/colinhacks/zod),
|
|
20
20
|
[Superstruct](https://github.com/ianstormtaylor/superstruct),
|
|
21
21
|
[Joi](https://github.com/hapijs/joi), and other custom validation libraries.
|
|
22
|
+
- **Localization** - Powerful capabilities for localizing forms using [Fluent.js](https://projectfluent.org).
|
|
22
23
|
- **Responsive Layouts**: Build forms that automatically [adapt](https://formengine.io/documentation/adaptive-layout) to all screen sizes.
|
|
23
24
|
- **Custom Actions**: Enhance forms with interactive logic through [custom JavaScript code](https://formengine.io/documentation/actions).
|
|
24
25
|
- **Dynamic Properties**: Implement real-time component changes with [MobX](https://github.com/mobxjs/mobx)-powered reactive properties.
|
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
.optimajet-formviewer,
|
|
3
|
-
.rs-toast-provider,
|
|
4
|
-
.rs-modal,
|
|
5
|
-
.rs-tooltip,
|
|
6
|
-
.rs-picker-menu,
|
|
7
|
-
.rs-picker-popup,
|
|
8
|
-
.rs-picker-popup-date,
|
|
9
|
-
.rs-picker-select-menu,
|
|
10
|
-
.rs-popover
|
|
1
|
+
:where(
|
|
2
|
+
.optimajet-formviewer,
|
|
3
|
+
.rs-toast-provider,
|
|
4
|
+
.rs-modal,
|
|
5
|
+
.rs-tooltip,
|
|
6
|
+
.rs-picker-menu,
|
|
7
|
+
.rs-picker-popup,
|
|
8
|
+
.rs-picker-popup-date,
|
|
9
|
+
.rs-picker-select-menu,
|
|
10
|
+
.rs-popover
|
|
11
|
+
) {
|
|
11
12
|
& *::-webkit-scrollbar {
|
|
12
13
|
width: 4px;
|
|
13
14
|
height: 4px;
|
|
@@ -275,14 +276,14 @@
|
|
|
275
276
|
}
|
|
276
277
|
}
|
|
277
278
|
|
|
278
|
-
.optimajet-
|
|
279
|
+
.optimajet-formviewer {
|
|
279
280
|
.rs-nav button {
|
|
280
281
|
font-size: 14px;
|
|
281
282
|
}
|
|
282
283
|
}
|
|
283
284
|
|
|
284
|
-
.optimajet-formbuilder,
|
|
285
285
|
.rs-toast-provider,
|
|
286
|
+
.optimajet-formviewer,
|
|
286
287
|
.rs-modal,
|
|
287
288
|
.rs-picker-popup,
|
|
288
289
|
.rs-picker-popup-date,
|