@tsed/tailwind-formio 1.12.0 → 1.13.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsed/tailwind-formio",
3
- "version": "1.12.0",
3
+ "version": "1.13.2",
4
4
  "description": "Tailwind templates for form.io forms.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -10,6 +10,7 @@
10
10
  "gulp-rename": "^2.0.0",
11
11
  "gulp-template": "^5.0.0",
12
12
  "nodemon": "2.0.7",
13
+ "webpack": "4.44.2",
13
14
  "webpack-cli": "4.9.2"
14
15
  },
15
16
  "scripts": {
@@ -1,4 +1,4 @@
1
- import FormioFormBuilder from "formiojs/FormBuilder";
1
+ import FormioFormBuilder from "formiojs/FormBuilder.js";
2
2
  import React, { useEffect, useRef } from "react";
3
3
 
4
4
  function WrapperFormBuilder({ options, form }) {
package/styles/alert.css CHANGED
@@ -12,6 +12,15 @@
12
12
  &:last-child {
13
13
  @apply mb-0;
14
14
  }
15
+
16
+ ul {
17
+ @apply ml-5 pt-3 pb-2;
18
+
19
+ li {
20
+ @apply list-disc;
21
+ }
22
+ }
23
+
15
24
  }
16
25
 
17
26
  .alert-heading {
package/styles/form.css CHANGED
@@ -31,9 +31,11 @@
31
31
  }
32
32
  }
33
33
 
34
+ .form-control:disabled, .form-control[readonly] {
35
+ @apply bg-gray-200 border-transparent shadow-none;
36
+ }
34
37
 
35
38
  .formio-modified:not(.has-error) {
36
-
37
39
  label {
38
40
  @apply text-green-600;
39
41
  }