create-mendix-widget-gleam 3.0.2 → 4.0.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.
@@ -2,7 +2,7 @@
2
2
  {{I18N:editor_config_2}}
3
3
 
4
4
  import glendix/editor_config.{type Properties}
5
- import glendix/mendix.{type JsProps}
5
+ import mendraw/mendix.{type JsProps}
6
6
 
7
7
  {{I18N:editor_config_doc}}
8
8
  pub fn get_properties(
@@ -2,7 +2,7 @@
2
2
  {{I18N:editor_preview_2}}
3
3
 
4
4
  import components/hello_world
5
- import glendix/mendix.{type JsProps}
5
+ import mendraw/mendix.{type JsProps}
6
6
  import redraw.{type Element}
7
7
 
8
8
  {{I18N:editor_preview_doc}}
@@ -1,10 +0,0 @@
1
- export default args => {
2
- const configs = args.configDefaultConfig;
3
- return configs.map(config => ({
4
- ...config,
5
- onwarn(warning, warn) {
6
- if (warning.code === "CIRCULAR_DEPENDENCY") return;
7
- config.onwarn(warning, warn);
8
- }
9
- }));
10
- };