@react-form-builder/components-rsuite 1.0.9 → 1.2.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/css/formengine-rsuite.css +285 -0
- package/dist/css/rsuite-no-reset-rtl.min.css +2 -0
- package/dist/css/rsuite-no-reset.min.css +2 -0
- package/dist/formengine-rsuite-763d9d03.js +5 -0
- package/dist/formengine-rsuite-763d9d03.js.map +1 -0
- package/dist/index.d.ts +7 -1
- package/dist/index.js +280 -264
- package/dist/index.js.map +1 -1
- package/dist/rsuite-no-reset-rtl.min-10caee1e.js +5 -0
- package/dist/rsuite-no-reset-rtl.min-10caee1e.js.map +1 -0
- package/dist/rsuite-no-reset.min-b3ffcb2b.js +5 -0
- package/dist/rsuite-no-reset.min-b3ffcb2b.js.map +1 -0
- package/package.json +4 -4
- package/dist/css/rsuite-rtl.min.css +0 -242
- package/dist/css/rsuite.min.css +0 -242
- package/dist/rsuite-rtl.min-9f20f996.js +0 -5
- package/dist/rsuite-rtl.min-9f20f996.js.map +0 -1
- package/dist/rsuite.min-1af6c914.js +0 -5
- package/dist/rsuite.min-1af6c914.js.map +0 -1
|
@@ -0,0 +1,285 @@
|
|
|
1
|
+
.optimajet-formbuilder,
|
|
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
|
+
& *::-webkit-scrollbar {
|
|
12
|
+
width: 4px;
|
|
13
|
+
height: 4px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
& *::-webkit-scrollbar-thumb {
|
|
17
|
+
background: rgb(179 179 179 / 60%);
|
|
18
|
+
border-radius: 4px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
& *::-webkit-scrollbar-thumb:hover {
|
|
22
|
+
background: rgb(179 179 179);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
@-moz-document url-prefix() {
|
|
26
|
+
& * {
|
|
27
|
+
scrollbar-width: thin;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
& * {
|
|
32
|
+
-webkit-box-sizing: border-box;
|
|
33
|
+
box-sizing: border-box;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
& *::before,
|
|
37
|
+
& *::after {
|
|
38
|
+
-webkit-box-sizing: border-box;
|
|
39
|
+
box-sizing: border-box;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
& a {
|
|
43
|
+
background-color: transparent;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
& a:active,
|
|
47
|
+
& a:hover {
|
|
48
|
+
outline: 0;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
& b,
|
|
52
|
+
& strong {
|
|
53
|
+
font-weight: bold;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
& sub,
|
|
57
|
+
& sup {
|
|
58
|
+
font-size: 75%;
|
|
59
|
+
line-height: 0;
|
|
60
|
+
position: relative;
|
|
61
|
+
vertical-align: baseline;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
& sup {
|
|
65
|
+
top: -0.5em;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
& sub {
|
|
69
|
+
bottom: -0.25em;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
& img {
|
|
73
|
+
border: 0;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
& svg:not(:root) {
|
|
77
|
+
overflow: hidden;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
& hr {
|
|
81
|
+
-webkit-box-sizing: content-box;
|
|
82
|
+
box-sizing: content-box;
|
|
83
|
+
height: 0;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
& pre {
|
|
87
|
+
overflow: auto;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
& button,
|
|
91
|
+
& select {
|
|
92
|
+
text-transform: none;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
& button,
|
|
96
|
+
& html input[type='button'],
|
|
97
|
+
& input[type='reset'],
|
|
98
|
+
& input[type='submit'] {
|
|
99
|
+
-webkit-appearance: button;
|
|
100
|
+
cursor: pointer;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
& button[disabled],
|
|
104
|
+
& html input[disabled] {
|
|
105
|
+
cursor: not-allowed;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
& input {
|
|
109
|
+
line-height: normal;
|
|
110
|
+
color: var(--rs-text-primary);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
& input[type='checkbox'],
|
|
114
|
+
& input[type='radio'] {
|
|
115
|
+
-webkit-box-sizing: border-box;
|
|
116
|
+
box-sizing: border-box;
|
|
117
|
+
padding: 0;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
& input[type='number']::-webkit-inner-spin-button,
|
|
121
|
+
& input[type='number']::-webkit-outer-spin-button {
|
|
122
|
+
height: auto;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
& textarea {
|
|
126
|
+
overflow: auto;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
& table {
|
|
130
|
+
border-collapse: collapse;
|
|
131
|
+
border-spacing: 0;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
& td,
|
|
135
|
+
& th {
|
|
136
|
+
padding: 0;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
[tabindex='-1'] {
|
|
140
|
+
outline: none;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
& input::-ms-clear {
|
|
144
|
+
display: none;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
& input[type='file']::-webkit-file-upload-button,
|
|
148
|
+
& input[type='file']::-ms-browse {
|
|
149
|
+
border-width: 0;
|
|
150
|
+
background: transparent;
|
|
151
|
+
color: currentColor;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
-webkit-font-smoothing: antialiased;
|
|
155
|
+
-moz-osx-font-smoothing: grayscale;
|
|
156
|
+
font-family: Apple-System, Arial, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, STXihei, sans-serif;
|
|
157
|
+
font-size: 14px;
|
|
158
|
+
line-height: 1.42857143;
|
|
159
|
+
|
|
160
|
+
& h1,
|
|
161
|
+
& h2,
|
|
162
|
+
& h3,
|
|
163
|
+
& h4,
|
|
164
|
+
& h5,
|
|
165
|
+
& h6 {
|
|
166
|
+
font-family: inherit;
|
|
167
|
+
font-weight: bolder;
|
|
168
|
+
color: inherit;
|
|
169
|
+
margin: 0;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
& h1 small,
|
|
173
|
+
& h2 small,
|
|
174
|
+
& h3 small,
|
|
175
|
+
& h4 small,
|
|
176
|
+
& h5 small,
|
|
177
|
+
& h6 small {
|
|
178
|
+
font-weight: normal;
|
|
179
|
+
line-height: 1;
|
|
180
|
+
color: #c5c6c7;
|
|
181
|
+
color: var(--rs-text-disabled);
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
& h1 {
|
|
185
|
+
font-size: 46px;
|
|
186
|
+
line-height: 62px;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
& h2 {
|
|
190
|
+
font-size: 36px;
|
|
191
|
+
line-height: 50px;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
& h3 {
|
|
195
|
+
font-size: 28px;
|
|
196
|
+
line-height: 42px;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
& h4 {
|
|
200
|
+
font-size: 22px;
|
|
201
|
+
line-height: 34px;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
& h5 {
|
|
205
|
+
font-size: 18px;
|
|
206
|
+
line-height: 24px;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
& h6 {
|
|
210
|
+
font-size: 16px;
|
|
211
|
+
line-height: 22px;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
& p {
|
|
215
|
+
margin: 0;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
& p + p {
|
|
219
|
+
margin-top: 8px;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
& small {
|
|
223
|
+
font-size: 85%;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
& mark {
|
|
227
|
+
background-color: #fff9e6;
|
|
228
|
+
background-color: var(--rs-bg-warning);
|
|
229
|
+
padding: 0.2em;
|
|
230
|
+
font-weight: bolder;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
& ul,
|
|
234
|
+
& ol {
|
|
235
|
+
margin-top: 0;
|
|
236
|
+
margin-bottom: 10px;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
& ul ul,
|
|
240
|
+
& ol ul,
|
|
241
|
+
& ul ol,
|
|
242
|
+
ol ol {
|
|
243
|
+
margin-bottom: 0;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
dl {
|
|
247
|
+
margin-top: 0;
|
|
248
|
+
margin-bottom: 10px;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
dt,
|
|
252
|
+
dd {
|
|
253
|
+
line-height: 1.42857143;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
dt {
|
|
257
|
+
font-weight: bold;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
dd {
|
|
261
|
+
margin-left: 0;
|
|
262
|
+
margin-bottom: 10px;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
@font-face {
|
|
266
|
+
font-family: Apple-System;
|
|
267
|
+
src: local(-apple-system), local(BlinkMacSystemFont), local(system-ui);
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
& button::-moz-focus-inner,
|
|
271
|
+
& input::-moz-focus-inner {
|
|
272
|
+
border: 0;
|
|
273
|
+
padding: 0;
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.optimajet-formbuilder,
|
|
278
|
+
.rs-toast-provider,
|
|
279
|
+
.rs-modal,
|
|
280
|
+
.rs-picker-popup,
|
|
281
|
+
.rs-picker-popup-date,
|
|
282
|
+
.rs-picker-menu {
|
|
283
|
+
background-color: var(--rs-body) !important;
|
|
284
|
+
color: var(--rs-text-primary) !important;
|
|
285
|
+
}
|