@iebh/tera-fy 2.0.8 → 2.0.10

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.0.9](https://github.com/IEBH/TERA-fy/compare/v2.0.8...v2.0.9) (2025-03-05)
4
+
5
+
6
+ ### fix
7
+
8
+ * Typo ([be0c001](https://github.com/IEBH/TERA-fy/commit/be0c00171a9fe7d8a62897f1e2b58c4952f99c0e))
9
+
10
+ ### refactor
11
+
12
+ * Moved reflib from production dep to peer dep ([f21fa69](https://github.com/IEBH/TERA-fy/commit/f21fa69ca5cff87e53a988d48dc015211c8cc4ba))
13
+ * Remove forceLocalInit config setting as it just buggers up esbuild when compiling Vue2 due to it resolving dynamic imports as regular inline imports ([96f76f5](https://github.com/IEBH/TERA-fy/commit/96f76f5f10f858cefb1cebac806adc309ee74bca))
14
+
3
15
  ## [2.0.8](https://github.com/IEBH/TERA-fy/compare/v2.0.7...v2.0.8) (2025-03-04)
4
16
 
5
17
 
package/api.md CHANGED
@@ -1089,6 +1089,7 @@ All options are cumulative - i.e. they are merged with other options previously
1089
1089
  * `options` **([Object][159] | [Boolean][167])?** Additional options to mutate behaviour, if boolean false `{close: true}` is assumed
1090
1090
 
1091
1091
  * `options.title` **[String][158]** Window title, can only be set on the initial call (optional, default `'TERA'`)
1092
+ * `options.backdrop` **[String][158]** Set to `'static'` to prevent user being able to click outside the modal to close (optional, default `true`)
1092
1093
  * `options.body` **[String][158]** Window body text, can only be set on the initial call (optional, default `''`)
1093
1094
  * `options.bodyHtml` **[Boolean][167]** Treat body text as HTML (optional, default `false`)
1094
1095
  * `options.close` **[Boolean][167]** Close the existing dialog, if true the dialog is disposed and options reset (optional, default `false`)