@form-engine-ts/react 2.9.1 → 2.9.2
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 +6 -0
- package/dist/index.cjs +879 -764
- package/dist/index.d.cts +24 -8
- package/dist/index.d.ts +24 -8
- package/dist/index.js +879 -764
- package/dist/styles.css +12 -8
- package/package.json +3 -3
package/dist/styles.css
CHANGED
|
@@ -241,32 +241,36 @@
|
|
|
241
241
|
gap: 0.75rem;
|
|
242
242
|
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
|
|
243
243
|
}
|
|
244
|
-
.form-engine-
|
|
244
|
+
.form-engine-builder__field,
|
|
245
245
|
.form-engine-builder__options {
|
|
246
246
|
display: grid;
|
|
247
247
|
gap: 0.35rem;
|
|
248
248
|
}
|
|
249
|
-
.
|
|
250
|
-
.
|
|
251
|
-
.
|
|
249
|
+
.feb-input,
|
|
250
|
+
.feb-textarea,
|
|
251
|
+
.feb-select,
|
|
252
|
+
.feb-button,
|
|
253
|
+
.feb-icon-button {
|
|
252
254
|
border: 1px solid #aab2bd;
|
|
253
255
|
border-radius: 0.4rem;
|
|
254
256
|
font: inherit;
|
|
255
257
|
padding: 0.5rem 0.6rem;
|
|
256
258
|
}
|
|
257
|
-
.
|
|
259
|
+
.feb-button,
|
|
260
|
+
.feb-icon-button {
|
|
258
261
|
background: #f7f8fb;
|
|
259
262
|
cursor: pointer;
|
|
260
263
|
}
|
|
261
|
-
.
|
|
264
|
+
.feb-button:disabled,
|
|
265
|
+
.feb-icon-button:disabled {
|
|
262
266
|
cursor: not-allowed;
|
|
263
267
|
opacity: 0.45;
|
|
264
268
|
}
|
|
265
|
-
.
|
|
269
|
+
.feb-checkbox {
|
|
266
270
|
align-items: center;
|
|
267
271
|
display: flex;
|
|
268
272
|
}
|
|
269
|
-
.form-engine-builder__option input {
|
|
273
|
+
.form-engine-builder__option .feb-input {
|
|
270
274
|
flex: 1 1 12rem;
|
|
271
275
|
}
|
|
272
276
|
.form-engine-builder__error {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@form-engine-ts/react",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"typescript"
|
|
43
43
|
],
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@form-engine-ts/
|
|
46
|
-
"@form-engine-ts/
|
|
45
|
+
"@form-engine-ts/privacy": "2.9.2",
|
|
46
|
+
"@form-engine-ts/core": "2.9.2"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"react": ">=18.2 <20",
|