@sio-group/form-react 0.1.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.
Files changed (45) hide show
  1. package/CHANGELOG.md +97 -0
  2. package/README.md +783 -0
  3. package/ROADMAP.md +21 -0
  4. package/dist/index.cjs +1919 -0
  5. package/dist/index.d.cts +284 -0
  6. package/dist/index.d.ts +284 -0
  7. package/dist/index.js +1878 -0
  8. package/dist/styles/components/button.css +244 -0
  9. package/dist/styles/components/button.css.map +1 -0
  10. package/dist/styles/components/checkbox.css +90 -0
  11. package/dist/styles/components/checkbox.css.map +1 -0
  12. package/dist/styles/components/color.css +31 -0
  13. package/dist/styles/components/color.css.map +1 -0
  14. package/dist/styles/components/form-field.css +36 -0
  15. package/dist/styles/components/form-field.css.map +1 -0
  16. package/dist/styles/components/form-states.css +80 -0
  17. package/dist/styles/components/form-states.css.map +1 -0
  18. package/dist/styles/components/grid.css +818 -0
  19. package/dist/styles/components/grid.css.map +1 -0
  20. package/dist/styles/components/input.css +112 -0
  21. package/dist/styles/components/input.css.map +1 -0
  22. package/dist/styles/components/link.css +113 -0
  23. package/dist/styles/components/link.css.map +1 -0
  24. package/dist/styles/components/radio.css +104 -0
  25. package/dist/styles/components/radio.css.map +1 -0
  26. package/dist/styles/components/range.css +54 -0
  27. package/dist/styles/components/range.css.map +1 -0
  28. package/dist/styles/components/select.css +37 -0
  29. package/dist/styles/components/select.css.map +1 -0
  30. package/dist/styles/components/upload.css +54 -0
  31. package/dist/styles/components/upload.css.map +1 -0
  32. package/dist/styles/index.css +1733 -0
  33. package/dist/styles/index.css.map +1 -0
  34. package/package.json +42 -0
  35. package/screenshots/contact-form.png +0 -0
  36. package/screenshots/file-input.png +0 -0
  37. package/screenshots/invalid-username.png +0 -0
  38. package/screenshots/number-field.png +0 -0
  39. package/screenshots/radio-field.png +0 -0
  40. package/screenshots/range-field.png +0 -0
  41. package/screenshots/registration-form.png +0 -0
  42. package/screenshots/select-field.png +0 -0
  43. package/screenshots/textarea-field.png +0 -0
  44. package/tsconfig.tsbuildinfo +1 -0
  45. package/tsup.config.ts +8 -0
@@ -0,0 +1,818 @@
1
+ :root {
2
+ --sio-grid-gutter: 15px;
3
+ }
4
+
5
+ *,
6
+ *::after,
7
+ *::before {
8
+ box-sizing: border-box;
9
+ }
10
+
11
+ .sio-row {
12
+ display: flex;
13
+ flex-wrap: wrap;
14
+ margin-left: calc(var(--sio-grid-gutter) * -1);
15
+ margin-right: calc(var(--sio-grid-gutter) * -1);
16
+ }
17
+
18
+ .sio-row .no-gutters {
19
+ margin-right: 0;
20
+ margin-left: 0;
21
+ }
22
+
23
+ .sio-row .no-gutters > .sio-col,
24
+ .sio-row .no-gutters > [class*=sio-col-] {
25
+ padding-right: 0;
26
+ padding-left: 0;
27
+ }
28
+
29
+ .sio-col-xl,
30
+ .sio-col-xl-auto, .sio-col-xl-12, .sio-col-xl-11, .sio-col-xl-10, .sio-col-xl-9, .sio-col-xl-8, .sio-col-xl-7, .sio-col-xl-6, .sio-col-xl-5, .sio-col-xl-4, .sio-col-xl-3, .sio-col-xl-2, .sio-col-xl-1, .sio-col-lg,
31
+ .sio-col-lg-auto, .sio-col-lg-12, .sio-col-lg-11, .sio-col-lg-10, .sio-col-lg-9, .sio-col-lg-8, .sio-col-lg-7, .sio-col-lg-6, .sio-col-lg-5, .sio-col-lg-4, .sio-col-lg-3, .sio-col-lg-2, .sio-col-lg-1, .sio-col-md,
32
+ .sio-col-md-auto, .sio-col-md-12, .sio-col-md-11, .sio-col-md-10, .sio-col-md-9, .sio-col-md-8, .sio-col-md-7, .sio-col-md-6, .sio-col-md-5, .sio-col-md-4, .sio-col-md-3, .sio-col-md-2, .sio-col-md-1, .sio-col-sm,
33
+ .sio-col-sm-auto, .sio-col-sm-12, .sio-col-sm-11, .sio-col-sm-10, .sio-col-sm-9, .sio-col-sm-8, .sio-col-sm-7, .sio-col-sm-6, .sio-col-sm-5, .sio-col-sm-4, .sio-col-sm-3, .sio-col-sm-2, .sio-col-sm-1, .sio-col-xs,
34
+ .sio-col-xs-auto, .sio-col-xs-12, .sio-col-xs-11, .sio-col-xs-10, .sio-col-xs-9, .sio-col-xs-8, .sio-col-xs-7, .sio-col-xs-6, .sio-col-xs-5, .sio-col-xs-4, .sio-col-xs-3, .sio-col-xs-2, .sio-col-xs-1 {
35
+ position: relative;
36
+ width: 100%;
37
+ padding-left: var(--sio-grid-gutter);
38
+ padding-right: var(--sio-grid-gutter);
39
+ }
40
+
41
+ .sio-col-xs {
42
+ flex-basis: 0;
43
+ flex-grow: 1;
44
+ max-width: 100%;
45
+ }
46
+
47
+ .sio-col-xs-auto {
48
+ flex: 0 0 auto;
49
+ width: auto;
50
+ max-width: 100%;
51
+ }
52
+
53
+ .sio-col-xs-1 {
54
+ flex: 0 0 8.3333333333%;
55
+ max-width: 8.3333333333%;
56
+ }
57
+
58
+ .sio-col-xs-2 {
59
+ flex: 0 0 16.6666666667%;
60
+ max-width: 16.6666666667%;
61
+ }
62
+
63
+ .sio-col-xs-3 {
64
+ flex: 0 0 25%;
65
+ max-width: 25%;
66
+ }
67
+
68
+ .sio-col-xs-4 {
69
+ flex: 0 0 33.3333333333%;
70
+ max-width: 33.3333333333%;
71
+ }
72
+
73
+ .sio-col-xs-5 {
74
+ flex: 0 0 41.6666666667%;
75
+ max-width: 41.6666666667%;
76
+ }
77
+
78
+ .sio-col-xs-6 {
79
+ flex: 0 0 50%;
80
+ max-width: 50%;
81
+ }
82
+
83
+ .sio-col-xs-7 {
84
+ flex: 0 0 58.3333333333%;
85
+ max-width: 58.3333333333%;
86
+ }
87
+
88
+ .sio-col-xs-8 {
89
+ flex: 0 0 66.6666666667%;
90
+ max-width: 66.6666666667%;
91
+ }
92
+
93
+ .sio-col-xs-9 {
94
+ flex: 0 0 75%;
95
+ max-width: 75%;
96
+ }
97
+
98
+ .sio-col-xs-10 {
99
+ flex: 0 0 83.3333333333%;
100
+ max-width: 83.3333333333%;
101
+ }
102
+
103
+ .sio-col-xs-11 {
104
+ flex: 0 0 91.6666666667%;
105
+ max-width: 91.6666666667%;
106
+ }
107
+
108
+ .sio-col-xs-12 {
109
+ flex: 0 0 100%;
110
+ max-width: 100%;
111
+ }
112
+
113
+ .sio-order-xs-first {
114
+ order: -1;
115
+ }
116
+
117
+ .sio-order-xs-last {
118
+ order: 13;
119
+ }
120
+
121
+ .sio-order-xs-0 {
122
+ order: 0;
123
+ }
124
+
125
+ .sio-order-xs-1 {
126
+ order: 1;
127
+ }
128
+
129
+ .sio-order-xs-2 {
130
+ order: 2;
131
+ }
132
+
133
+ .sio-order-xs-3 {
134
+ order: 3;
135
+ }
136
+
137
+ .sio-order-xs-4 {
138
+ order: 4;
139
+ }
140
+
141
+ .sio-order-xs-5 {
142
+ order: 5;
143
+ }
144
+
145
+ .sio-order-xs-6 {
146
+ order: 6;
147
+ }
148
+
149
+ .sio-order-xs-7 {
150
+ order: 7;
151
+ }
152
+
153
+ .sio-order-xs-8 {
154
+ order: 8;
155
+ }
156
+
157
+ .sio-order-xs-9 {
158
+ order: 9;
159
+ }
160
+
161
+ .sio-order-xs-10 {
162
+ order: 10;
163
+ }
164
+
165
+ .sio-order-xs-11 {
166
+ order: 11;
167
+ }
168
+
169
+ .sio-order-xs-12 {
170
+ order: 12;
171
+ }
172
+
173
+ .sio-offset-xs-0 {
174
+ margin-left: 0;
175
+ }
176
+
177
+ .sio-offset-xs-1 {
178
+ margin-left: 8.3333333333%;
179
+ }
180
+
181
+ .sio-offset-xs-2 {
182
+ margin-left: 16.6666666667%;
183
+ }
184
+
185
+ .sio-offset-xs-3 {
186
+ margin-left: 25%;
187
+ }
188
+
189
+ .sio-offset-xs-4 {
190
+ margin-left: 33.3333333333%;
191
+ }
192
+
193
+ .sio-offset-xs-5 {
194
+ margin-left: 41.6666666667%;
195
+ }
196
+
197
+ .sio-offset-xs-6 {
198
+ margin-left: 50%;
199
+ }
200
+
201
+ .sio-offset-xs-7 {
202
+ margin-left: 58.3333333333%;
203
+ }
204
+
205
+ .sio-offset-xs-8 {
206
+ margin-left: 66.6666666667%;
207
+ }
208
+
209
+ .sio-offset-xs-9 {
210
+ margin-left: 75%;
211
+ }
212
+
213
+ .sio-offset-xs-10 {
214
+ margin-left: 83.3333333333%;
215
+ }
216
+
217
+ .sio-offset-xs-11 {
218
+ margin-left: 91.6666666667%;
219
+ }
220
+
221
+ .sio-d-xs-none {
222
+ display: none;
223
+ }
224
+
225
+ .d-xs-block {
226
+ display: block;
227
+ }
228
+
229
+ @media (min-width: 576px) {
230
+ .sio-col-sm {
231
+ flex-basis: 0;
232
+ flex-grow: 1;
233
+ max-width: 100%;
234
+ }
235
+ .sio-col-sm-auto {
236
+ flex: 0 0 auto;
237
+ width: auto;
238
+ max-width: 100%;
239
+ }
240
+ .sio-col-sm-1 {
241
+ flex: 0 0 8.3333333333%;
242
+ max-width: 8.3333333333%;
243
+ }
244
+ .sio-col-sm-2 {
245
+ flex: 0 0 16.6666666667%;
246
+ max-width: 16.6666666667%;
247
+ }
248
+ .sio-col-sm-3 {
249
+ flex: 0 0 25%;
250
+ max-width: 25%;
251
+ }
252
+ .sio-col-sm-4 {
253
+ flex: 0 0 33.3333333333%;
254
+ max-width: 33.3333333333%;
255
+ }
256
+ .sio-col-sm-5 {
257
+ flex: 0 0 41.6666666667%;
258
+ max-width: 41.6666666667%;
259
+ }
260
+ .sio-col-sm-6 {
261
+ flex: 0 0 50%;
262
+ max-width: 50%;
263
+ }
264
+ .sio-col-sm-7 {
265
+ flex: 0 0 58.3333333333%;
266
+ max-width: 58.3333333333%;
267
+ }
268
+ .sio-col-sm-8 {
269
+ flex: 0 0 66.6666666667%;
270
+ max-width: 66.6666666667%;
271
+ }
272
+ .sio-col-sm-9 {
273
+ flex: 0 0 75%;
274
+ max-width: 75%;
275
+ }
276
+ .sio-col-sm-10 {
277
+ flex: 0 0 83.3333333333%;
278
+ max-width: 83.3333333333%;
279
+ }
280
+ .sio-col-sm-11 {
281
+ flex: 0 0 91.6666666667%;
282
+ max-width: 91.6666666667%;
283
+ }
284
+ .sio-col-sm-12 {
285
+ flex: 0 0 100%;
286
+ max-width: 100%;
287
+ }
288
+ .sio-order-sm-first {
289
+ order: -1;
290
+ }
291
+ .sio-order-sm-last {
292
+ order: 13;
293
+ }
294
+ .sio-order-sm-0 {
295
+ order: 0;
296
+ }
297
+ .sio-order-sm-1 {
298
+ order: 1;
299
+ }
300
+ .sio-order-sm-2 {
301
+ order: 2;
302
+ }
303
+ .sio-order-sm-3 {
304
+ order: 3;
305
+ }
306
+ .sio-order-sm-4 {
307
+ order: 4;
308
+ }
309
+ .sio-order-sm-5 {
310
+ order: 5;
311
+ }
312
+ .sio-order-sm-6 {
313
+ order: 6;
314
+ }
315
+ .sio-order-sm-7 {
316
+ order: 7;
317
+ }
318
+ .sio-order-sm-8 {
319
+ order: 8;
320
+ }
321
+ .sio-order-sm-9 {
322
+ order: 9;
323
+ }
324
+ .sio-order-sm-10 {
325
+ order: 10;
326
+ }
327
+ .sio-order-sm-11 {
328
+ order: 11;
329
+ }
330
+ .sio-order-sm-12 {
331
+ order: 12;
332
+ }
333
+ .sio-offset-sm-0 {
334
+ margin-left: 0;
335
+ }
336
+ .sio-offset-sm-1 {
337
+ margin-left: 8.3333333333%;
338
+ }
339
+ .sio-offset-sm-2 {
340
+ margin-left: 16.6666666667%;
341
+ }
342
+ .sio-offset-sm-3 {
343
+ margin-left: 25%;
344
+ }
345
+ .sio-offset-sm-4 {
346
+ margin-left: 33.3333333333%;
347
+ }
348
+ .sio-offset-sm-5 {
349
+ margin-left: 41.6666666667%;
350
+ }
351
+ .sio-offset-sm-6 {
352
+ margin-left: 50%;
353
+ }
354
+ .sio-offset-sm-7 {
355
+ margin-left: 58.3333333333%;
356
+ }
357
+ .sio-offset-sm-8 {
358
+ margin-left: 66.6666666667%;
359
+ }
360
+ .sio-offset-sm-9 {
361
+ margin-left: 75%;
362
+ }
363
+ .sio-offset-sm-10 {
364
+ margin-left: 83.3333333333%;
365
+ }
366
+ .sio-offset-sm-11 {
367
+ margin-left: 91.6666666667%;
368
+ }
369
+ .sio-d-sm-none {
370
+ display: none;
371
+ }
372
+ .d-sm-block {
373
+ display: block;
374
+ }
375
+ }
376
+ @media (min-width: 768px) {
377
+ .sio-col-md {
378
+ flex-basis: 0;
379
+ flex-grow: 1;
380
+ max-width: 100%;
381
+ }
382
+ .sio-col-md-auto {
383
+ flex: 0 0 auto;
384
+ width: auto;
385
+ max-width: 100%;
386
+ }
387
+ .sio-col-md-1 {
388
+ flex: 0 0 8.3333333333%;
389
+ max-width: 8.3333333333%;
390
+ }
391
+ .sio-col-md-2 {
392
+ flex: 0 0 16.6666666667%;
393
+ max-width: 16.6666666667%;
394
+ }
395
+ .sio-col-md-3 {
396
+ flex: 0 0 25%;
397
+ max-width: 25%;
398
+ }
399
+ .sio-col-md-4 {
400
+ flex: 0 0 33.3333333333%;
401
+ max-width: 33.3333333333%;
402
+ }
403
+ .sio-col-md-5 {
404
+ flex: 0 0 41.6666666667%;
405
+ max-width: 41.6666666667%;
406
+ }
407
+ .sio-col-md-6 {
408
+ flex: 0 0 50%;
409
+ max-width: 50%;
410
+ }
411
+ .sio-col-md-7 {
412
+ flex: 0 0 58.3333333333%;
413
+ max-width: 58.3333333333%;
414
+ }
415
+ .sio-col-md-8 {
416
+ flex: 0 0 66.6666666667%;
417
+ max-width: 66.6666666667%;
418
+ }
419
+ .sio-col-md-9 {
420
+ flex: 0 0 75%;
421
+ max-width: 75%;
422
+ }
423
+ .sio-col-md-10 {
424
+ flex: 0 0 83.3333333333%;
425
+ max-width: 83.3333333333%;
426
+ }
427
+ .sio-col-md-11 {
428
+ flex: 0 0 91.6666666667%;
429
+ max-width: 91.6666666667%;
430
+ }
431
+ .sio-col-md-12 {
432
+ flex: 0 0 100%;
433
+ max-width: 100%;
434
+ }
435
+ .sio-order-md-first {
436
+ order: -1;
437
+ }
438
+ .sio-order-md-last {
439
+ order: 13;
440
+ }
441
+ .sio-order-md-0 {
442
+ order: 0;
443
+ }
444
+ .sio-order-md-1 {
445
+ order: 1;
446
+ }
447
+ .sio-order-md-2 {
448
+ order: 2;
449
+ }
450
+ .sio-order-md-3 {
451
+ order: 3;
452
+ }
453
+ .sio-order-md-4 {
454
+ order: 4;
455
+ }
456
+ .sio-order-md-5 {
457
+ order: 5;
458
+ }
459
+ .sio-order-md-6 {
460
+ order: 6;
461
+ }
462
+ .sio-order-md-7 {
463
+ order: 7;
464
+ }
465
+ .sio-order-md-8 {
466
+ order: 8;
467
+ }
468
+ .sio-order-md-9 {
469
+ order: 9;
470
+ }
471
+ .sio-order-md-10 {
472
+ order: 10;
473
+ }
474
+ .sio-order-md-11 {
475
+ order: 11;
476
+ }
477
+ .sio-order-md-12 {
478
+ order: 12;
479
+ }
480
+ .sio-offset-md-0 {
481
+ margin-left: 0;
482
+ }
483
+ .sio-offset-md-1 {
484
+ margin-left: 8.3333333333%;
485
+ }
486
+ .sio-offset-md-2 {
487
+ margin-left: 16.6666666667%;
488
+ }
489
+ .sio-offset-md-3 {
490
+ margin-left: 25%;
491
+ }
492
+ .sio-offset-md-4 {
493
+ margin-left: 33.3333333333%;
494
+ }
495
+ .sio-offset-md-5 {
496
+ margin-left: 41.6666666667%;
497
+ }
498
+ .sio-offset-md-6 {
499
+ margin-left: 50%;
500
+ }
501
+ .sio-offset-md-7 {
502
+ margin-left: 58.3333333333%;
503
+ }
504
+ .sio-offset-md-8 {
505
+ margin-left: 66.6666666667%;
506
+ }
507
+ .sio-offset-md-9 {
508
+ margin-left: 75%;
509
+ }
510
+ .sio-offset-md-10 {
511
+ margin-left: 83.3333333333%;
512
+ }
513
+ .sio-offset-md-11 {
514
+ margin-left: 91.6666666667%;
515
+ }
516
+ .sio-d-md-none {
517
+ display: none;
518
+ }
519
+ .d-md-block {
520
+ display: block;
521
+ }
522
+ }
523
+ @media (min-width: 992px) {
524
+ .sio-col-lg {
525
+ flex-basis: 0;
526
+ flex-grow: 1;
527
+ max-width: 100%;
528
+ }
529
+ .sio-col-lg-auto {
530
+ flex: 0 0 auto;
531
+ width: auto;
532
+ max-width: 100%;
533
+ }
534
+ .sio-col-lg-1 {
535
+ flex: 0 0 8.3333333333%;
536
+ max-width: 8.3333333333%;
537
+ }
538
+ .sio-col-lg-2 {
539
+ flex: 0 0 16.6666666667%;
540
+ max-width: 16.6666666667%;
541
+ }
542
+ .sio-col-lg-3 {
543
+ flex: 0 0 25%;
544
+ max-width: 25%;
545
+ }
546
+ .sio-col-lg-4 {
547
+ flex: 0 0 33.3333333333%;
548
+ max-width: 33.3333333333%;
549
+ }
550
+ .sio-col-lg-5 {
551
+ flex: 0 0 41.6666666667%;
552
+ max-width: 41.6666666667%;
553
+ }
554
+ .sio-col-lg-6 {
555
+ flex: 0 0 50%;
556
+ max-width: 50%;
557
+ }
558
+ .sio-col-lg-7 {
559
+ flex: 0 0 58.3333333333%;
560
+ max-width: 58.3333333333%;
561
+ }
562
+ .sio-col-lg-8 {
563
+ flex: 0 0 66.6666666667%;
564
+ max-width: 66.6666666667%;
565
+ }
566
+ .sio-col-lg-9 {
567
+ flex: 0 0 75%;
568
+ max-width: 75%;
569
+ }
570
+ .sio-col-lg-10 {
571
+ flex: 0 0 83.3333333333%;
572
+ max-width: 83.3333333333%;
573
+ }
574
+ .sio-col-lg-11 {
575
+ flex: 0 0 91.6666666667%;
576
+ max-width: 91.6666666667%;
577
+ }
578
+ .sio-col-lg-12 {
579
+ flex: 0 0 100%;
580
+ max-width: 100%;
581
+ }
582
+ .sio-order-lg-first {
583
+ order: -1;
584
+ }
585
+ .sio-order-lg-last {
586
+ order: 13;
587
+ }
588
+ .sio-order-lg-0 {
589
+ order: 0;
590
+ }
591
+ .sio-order-lg-1 {
592
+ order: 1;
593
+ }
594
+ .sio-order-lg-2 {
595
+ order: 2;
596
+ }
597
+ .sio-order-lg-3 {
598
+ order: 3;
599
+ }
600
+ .sio-order-lg-4 {
601
+ order: 4;
602
+ }
603
+ .sio-order-lg-5 {
604
+ order: 5;
605
+ }
606
+ .sio-order-lg-6 {
607
+ order: 6;
608
+ }
609
+ .sio-order-lg-7 {
610
+ order: 7;
611
+ }
612
+ .sio-order-lg-8 {
613
+ order: 8;
614
+ }
615
+ .sio-order-lg-9 {
616
+ order: 9;
617
+ }
618
+ .sio-order-lg-10 {
619
+ order: 10;
620
+ }
621
+ .sio-order-lg-11 {
622
+ order: 11;
623
+ }
624
+ .sio-order-lg-12 {
625
+ order: 12;
626
+ }
627
+ .sio-offset-lg-0 {
628
+ margin-left: 0;
629
+ }
630
+ .sio-offset-lg-1 {
631
+ margin-left: 8.3333333333%;
632
+ }
633
+ .sio-offset-lg-2 {
634
+ margin-left: 16.6666666667%;
635
+ }
636
+ .sio-offset-lg-3 {
637
+ margin-left: 25%;
638
+ }
639
+ .sio-offset-lg-4 {
640
+ margin-left: 33.3333333333%;
641
+ }
642
+ .sio-offset-lg-5 {
643
+ margin-left: 41.6666666667%;
644
+ }
645
+ .sio-offset-lg-6 {
646
+ margin-left: 50%;
647
+ }
648
+ .sio-offset-lg-7 {
649
+ margin-left: 58.3333333333%;
650
+ }
651
+ .sio-offset-lg-8 {
652
+ margin-left: 66.6666666667%;
653
+ }
654
+ .sio-offset-lg-9 {
655
+ margin-left: 75%;
656
+ }
657
+ .sio-offset-lg-10 {
658
+ margin-left: 83.3333333333%;
659
+ }
660
+ .sio-offset-lg-11 {
661
+ margin-left: 91.6666666667%;
662
+ }
663
+ .sio-d-lg-none {
664
+ display: none;
665
+ }
666
+ .d-lg-block {
667
+ display: block;
668
+ }
669
+ }
670
+ @media (min-width: 1200px) {
671
+ .sio-col-xl {
672
+ flex-basis: 0;
673
+ flex-grow: 1;
674
+ max-width: 100%;
675
+ }
676
+ .sio-col-xl-auto {
677
+ flex: 0 0 auto;
678
+ width: auto;
679
+ max-width: 100%;
680
+ }
681
+ .sio-col-xl-1 {
682
+ flex: 0 0 8.3333333333%;
683
+ max-width: 8.3333333333%;
684
+ }
685
+ .sio-col-xl-2 {
686
+ flex: 0 0 16.6666666667%;
687
+ max-width: 16.6666666667%;
688
+ }
689
+ .sio-col-xl-3 {
690
+ flex: 0 0 25%;
691
+ max-width: 25%;
692
+ }
693
+ .sio-col-xl-4 {
694
+ flex: 0 0 33.3333333333%;
695
+ max-width: 33.3333333333%;
696
+ }
697
+ .sio-col-xl-5 {
698
+ flex: 0 0 41.6666666667%;
699
+ max-width: 41.6666666667%;
700
+ }
701
+ .sio-col-xl-6 {
702
+ flex: 0 0 50%;
703
+ max-width: 50%;
704
+ }
705
+ .sio-col-xl-7 {
706
+ flex: 0 0 58.3333333333%;
707
+ max-width: 58.3333333333%;
708
+ }
709
+ .sio-col-xl-8 {
710
+ flex: 0 0 66.6666666667%;
711
+ max-width: 66.6666666667%;
712
+ }
713
+ .sio-col-xl-9 {
714
+ flex: 0 0 75%;
715
+ max-width: 75%;
716
+ }
717
+ .sio-col-xl-10 {
718
+ flex: 0 0 83.3333333333%;
719
+ max-width: 83.3333333333%;
720
+ }
721
+ .sio-col-xl-11 {
722
+ flex: 0 0 91.6666666667%;
723
+ max-width: 91.6666666667%;
724
+ }
725
+ .sio-col-xl-12 {
726
+ flex: 0 0 100%;
727
+ max-width: 100%;
728
+ }
729
+ .sio-order-xl-first {
730
+ order: -1;
731
+ }
732
+ .sio-order-xl-last {
733
+ order: 13;
734
+ }
735
+ .sio-order-xl-0 {
736
+ order: 0;
737
+ }
738
+ .sio-order-xl-1 {
739
+ order: 1;
740
+ }
741
+ .sio-order-xl-2 {
742
+ order: 2;
743
+ }
744
+ .sio-order-xl-3 {
745
+ order: 3;
746
+ }
747
+ .sio-order-xl-4 {
748
+ order: 4;
749
+ }
750
+ .sio-order-xl-5 {
751
+ order: 5;
752
+ }
753
+ .sio-order-xl-6 {
754
+ order: 6;
755
+ }
756
+ .sio-order-xl-7 {
757
+ order: 7;
758
+ }
759
+ .sio-order-xl-8 {
760
+ order: 8;
761
+ }
762
+ .sio-order-xl-9 {
763
+ order: 9;
764
+ }
765
+ .sio-order-xl-10 {
766
+ order: 10;
767
+ }
768
+ .sio-order-xl-11 {
769
+ order: 11;
770
+ }
771
+ .sio-order-xl-12 {
772
+ order: 12;
773
+ }
774
+ .sio-offset-xl-0 {
775
+ margin-left: 0;
776
+ }
777
+ .sio-offset-xl-1 {
778
+ margin-left: 8.3333333333%;
779
+ }
780
+ .sio-offset-xl-2 {
781
+ margin-left: 16.6666666667%;
782
+ }
783
+ .sio-offset-xl-3 {
784
+ margin-left: 25%;
785
+ }
786
+ .sio-offset-xl-4 {
787
+ margin-left: 33.3333333333%;
788
+ }
789
+ .sio-offset-xl-5 {
790
+ margin-left: 41.6666666667%;
791
+ }
792
+ .sio-offset-xl-6 {
793
+ margin-left: 50%;
794
+ }
795
+ .sio-offset-xl-7 {
796
+ margin-left: 58.3333333333%;
797
+ }
798
+ .sio-offset-xl-8 {
799
+ margin-left: 66.6666666667%;
800
+ }
801
+ .sio-offset-xl-9 {
802
+ margin-left: 75%;
803
+ }
804
+ .sio-offset-xl-10 {
805
+ margin-left: 83.3333333333%;
806
+ }
807
+ .sio-offset-xl-11 {
808
+ margin-left: 91.6666666667%;
809
+ }
810
+ .sio-d-xl-none {
811
+ display: none;
812
+ }
813
+ .d-xl-block {
814
+ display: block;
815
+ }
816
+ }
817
+
818
+ /*# sourceMappingURL=grid.css.map */