@madgex/design-system-ce 5.5.6 → 5.6.1

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.
@@ -1,6 +1,12 @@
1
1
  # Change Log
2
2
 
3
- All notable changes to this project will be documented in this file.
3
+
4
+ ~~All notable changes to this project will be documented in this file.~~
5
+
6
+
7
+ See github releases for newer changelogs https://github.com/wiley/madgex-design-system/releases .
8
+
9
+
4
10
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
11
 
6
12
  ## [5.5.6](https://github.com/wiley/madgex-design-system/compare/@madgex/design-system-ce@5.5.5...@madgex/design-system-ce@5.5.6) (2025-05-08)
@@ -1,10 +1,5 @@
1
1
  import '@ungap/custom-elements';
2
- /**
3
- * We're using a modified `defineCustomElement` where we can choose not to use shadowDom
4
- * shadowDom prevents access to external CSS, which is how design-system css works!
5
- * https://github.com/vuejs/core/issues/4314#issuecomment-1021393430
6
- */
7
- import { defineCustomElement } from '../temp-define-custom-element';
2
+ import { defineCustomElement } from 'vue';
8
3
  // --- Components ---
9
4
  import Combobox from '../components/combobox/Combobox.ce.vue';
10
5
 
@@ -1,10 +1,5 @@
1
1
  import '@ungap/custom-elements';
2
- /**
3
- * We're using a modified `defineCustomElement` where we can choose not to use shadowDom
4
- * shadowDom prevents access to external CSS, which is how design-system css works!
5
- * https://github.com/vuejs/core/issues/4314#issuecomment-1021393430
6
- */
7
- import { defineCustomElement } from '../temp-define-custom-element';
2
+ import { defineCustomElement } from 'vue';
8
3
  import TextEditor from '../components/text-editor/TextEditor.ce.vue';
9
4
 
10
5
  const MdsTextEditor = defineCustomElement(TextEditor, { shadowRoot: false });