@formio/js 5.1.0-dev.6102.8eddaab → 5.1.0-dev.6102.9a0147c

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/README.md CHANGED
@@ -52,6 +52,7 @@ This library has a very powerful JSON form builder, and can be used like the fol
52
52
  <head>
53
53
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css">
54
54
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap/dist/css/bootstrap.min.css">
55
+ <link rel="stylesheet" href="https://cdn.form.io/js/formio.full.min.css">
55
56
  <script src='https://cdn.form.io/js/formio.full.min.js'></script>
56
57
  </head>
57
58
  <body>
@@ -155,6 +156,8 @@ being set to ```wizard```.
155
156
  You can also use this library as a JavaScript embedding of the form using a single line of code. For example, to embed the https://examples.form.io/example form within your application you can simply use the following embed code.
156
157
 
157
158
  ```html
159
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css">
160
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap/dist/css/bootstrap.min.css">
158
161
  <script src="https://cdn.form.io/js/formio.embed.min.js?src=https://examples.form.io/example&libs=true"></script>
159
162
  ```
160
163
 
@@ -169,6 +172,8 @@ In addition to having a Form Renderer within this application, you can also use
169
172
  ```html
170
173
  <html>
171
174
  <head>
175
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css">
176
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap/dist/css/bootstrap.min.css">
172
177
  <script src='https://cdn.form.io/js/formio.min.js'></script>
173
178
  <script type='text/javascript'>
174
179
  var formio = new Formio('https://examples.form.io/example');