@form-engine-ts/react 2.9.5 → 3.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/dist/styles.css CHANGED
@@ -93,6 +93,27 @@
93
93
  font-size: 0.875rem;
94
94
  font-weight: 600;
95
95
  }
96
+ .fe-character-count {
97
+ color: #667085;
98
+ font-size: 0.8rem;
99
+ text-align: right;
100
+ }
101
+ .fe-spinner {
102
+ display: inline-block;
103
+ width: 0.85em;
104
+ height: 0.85em;
105
+ margin-right: 0.4em;
106
+ border: 0.12em solid currentColor;
107
+ border-right-color: transparent;
108
+ border-radius: 50%;
109
+ animation: fe-spin 0.8s linear infinite;
110
+ vertical-align: -0.1em;
111
+ }
112
+ @keyframes fe-spin {
113
+ to {
114
+ transform: rotate(360deg);
115
+ }
116
+ }
96
117
  .fe-check-label {
97
118
  align-items: flex-start;
98
119
  display: flex;
@@ -281,3 +302,33 @@
281
302
  .form-engine-builder__add {
282
303
  justify-self: start;
283
304
  }
305
+ .fe-confirmation-dialog-backdrop {
306
+ position: fixed;
307
+ inset: 0;
308
+ z-index: 1000;
309
+ display: grid;
310
+ place-items: center;
311
+ padding: 1rem;
312
+ background: rgb(0 0 0 / 45%);
313
+ }
314
+ .fe-confirmation-dialog-backdrop .fe-submission-confirmation {
315
+ max-width: 32rem;
316
+ padding: 1.5rem;
317
+ background: Canvas;
318
+ color: CanvasText;
319
+ border-radius: 0.5rem;
320
+ box-shadow: 0 1rem 3rem rgb(0 0 0 / 25%);
321
+ }
322
+ .fe-sensitive-type {
323
+ border-radius: 999px;
324
+ background: #f2f4f7;
325
+ padding: 0.15rem 0.45rem;
326
+ font-size: 0.8rem;
327
+ }
328
+ .fe-sensitive-value {
329
+ font-family:
330
+ ui-monospace,
331
+ SFMono-Regular,
332
+ Menlo,
333
+ monospace;
334
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@form-engine-ts/react",
3
- "version": "2.9.5",
3
+ "version": "3.0.0",
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/core": "2.9.5",
46
- "@form-engine-ts/privacy": "2.9.5"
45
+ "@form-engine-ts/core": "3.0.0",
46
+ "@form-engine-ts/privacy": "3.0.0"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "react": ">=18.2 <20",