@madgex/design-system-ce 5.1.0-alpha.2 → 5.1.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.
- package/CHANGELOG.md +8 -0
- package/package.json +2 -2
- package/temp-define-custom-element.js +6 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [5.1.1](https://github.com/projects/MDS/repos/mds-branding/compare/diff?targetBranch=refs/tags/@madgex/design-system-ce@5.1.0-alpha.2&sourceBranch=refs/tags/@madgex/design-system-ce@5.1.1) (2022-07-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @madgex/design-system-ce
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [5.1.0-alpha.2](https://github.com/projects/MDS/repos/mds-branding/compare/diff?targetBranch=refs/tags/@madgex/design-system-ce@5.1.0-alpha.1&sourceBranch=refs/tags/@madgex/design-system-ce@5.1.0-alpha.2) (2022-07-04)
|
|
7
15
|
|
|
8
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@madgex/design-system-ce",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.1",
|
|
4
4
|
"description": "Custom Elements built in Vue3",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
},
|
|
37
37
|
"author": "",
|
|
38
38
|
"license": "UNLICENSED",
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "e88b63f8c6cc86e1c3091515b414be50831a2991"
|
|
40
40
|
}
|
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
/* eslint-disable no-cond-assign */
|
|
2
2
|
/* eslint-disable no-param-reassign */
|
|
3
|
-
/* eslint-disable promise/catch-or-return */
|
|
4
3
|
/* eslint-disable guard-for-in */
|
|
5
4
|
/* eslint-disable no-nested-ternary */
|
|
6
5
|
/* eslint-disable no-restricted-syntax */
|
|
7
6
|
/* eslint-disable no-undef */
|
|
8
7
|
/* eslint-disable no-underscore-dangle */
|
|
9
|
-
/* eslint-disable import/no-extraneous-dependencies */
|
|
10
8
|
/* eslint-disable max-classes-per-file */
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* We're using a modified `defineCustomElement` where we can choose not to use shadowDom
|
|
12
|
+
* shadowDom prevents access to external CSS, which is how design-system css works!
|
|
13
|
+
* https://github.com/vuejs/core/issues/4314#issuecomment-1021393430
|
|
14
|
+
*/
|
|
11
15
|
import { createVNode, defineComponent, nextTick, warn } from '@vue/runtime-core';
|
|
12
16
|
import { camelize, extend, hyphenate, isArray, toNumber } from '@vue/shared';
|
|
13
17
|
import HTMLParsedElement from 'html-parsed-element';
|