@tsed/tailwind-formio 3.0.0-alpha.12 → 3.0.0-alpha.13
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/package.json
CHANGED
|
@@ -14,57 +14,57 @@ export default {
|
|
|
14
14
|
|
|
15
15
|
export const Sandbox = () => {
|
|
16
16
|
return (
|
|
17
|
-
<div>
|
|
18
|
-
<div className=
|
|
19
|
-
<button type='button' className='
|
|
17
|
+
<div className='flex flex-col gap-5'>
|
|
18
|
+
<div className='flex flex-wrap gap-2'>
|
|
19
|
+
<button type='button' className='btn btn-primary'>
|
|
20
20
|
Primary
|
|
21
21
|
</button>
|
|
22
|
-
<button type='button' className='
|
|
22
|
+
<button type='button' className='btn btn-secondary'>
|
|
23
23
|
Secondary
|
|
24
24
|
</button>
|
|
25
|
-
<button type='button' className='
|
|
25
|
+
<button type='button' className='btn btn-success'>
|
|
26
26
|
Success
|
|
27
27
|
</button>
|
|
28
|
-
<button type='button' className='
|
|
28
|
+
<button type='button' className='btn btn-danger'>
|
|
29
29
|
Danger
|
|
30
30
|
</button>
|
|
31
|
-
<button type='button' className='
|
|
31
|
+
<button type='button' className='btn btn-warning'>
|
|
32
32
|
Warning
|
|
33
33
|
</button>
|
|
34
|
-
<button type='button' className='
|
|
34
|
+
<button type='button' className='btn btn-info'>
|
|
35
35
|
Info
|
|
36
36
|
</button>
|
|
37
|
-
<button type='button' className='
|
|
37
|
+
<button type='button' className='btn btn-light'>
|
|
38
38
|
Light
|
|
39
39
|
</button>
|
|
40
|
-
<button type='button' className='
|
|
40
|
+
<button type='button' className='btn btn-dark'>
|
|
41
41
|
Dark
|
|
42
42
|
</button>
|
|
43
43
|
</div>
|
|
44
44
|
|
|
45
|
-
<div>
|
|
46
|
-
<button type='button' className='
|
|
45
|
+
<div className='flex flex-wrap gap-2'>
|
|
46
|
+
<button type='button' className='btn btn-outline-primary'>
|
|
47
47
|
Primary
|
|
48
48
|
</button>
|
|
49
|
-
<button type='button' className='
|
|
49
|
+
<button type='button' className='btn btn-outline-secondary'>
|
|
50
50
|
Secondary
|
|
51
51
|
</button>
|
|
52
|
-
<button type='button' className='
|
|
52
|
+
<button type='button' className='btn btn-outline-success'>
|
|
53
53
|
Success
|
|
54
54
|
</button>
|
|
55
|
-
<button type='button' className='
|
|
55
|
+
<button type='button' className='btn btn-outline-danger'>
|
|
56
56
|
Danger
|
|
57
57
|
</button>
|
|
58
|
-
<button type='button' className='
|
|
58
|
+
<button type='button' className='btn btn-outline-warning'>
|
|
59
59
|
Warning
|
|
60
60
|
</button>
|
|
61
|
-
<button type='button' className='
|
|
61
|
+
<button type='button' className='btn btn-outline-info'>
|
|
62
62
|
Info
|
|
63
63
|
</button>
|
|
64
|
-
<button type='button' className='
|
|
64
|
+
<button type='button' className='btn btn-outline-light'>
|
|
65
65
|
Light
|
|
66
66
|
</button>
|
|
67
|
-
<button type='button' className='
|
|
67
|
+
<button type='button' className='btn btn-outline-dark'>
|
|
68
68
|
Dark
|
|
69
69
|
</button>
|
|
70
70
|
</div>
|