@madgex/design-system 3.7.2 → 3.9.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/coverage/cobertura-coverage.xml +4 -4
- package/coverage/components/accordion/accordion.js.html +1 -1
- package/coverage/components/accordion/index.html +1 -1
- package/coverage/components/button/button.js.html +1 -1
- package/coverage/components/button/index.html +1 -1
- package/coverage/components/inputs/combobox/combobox.js.html +1 -1
- package/coverage/components/inputs/combobox/index.html +1 -1
- package/coverage/components/inputs/combobox/vue-components/Combobox.vue.html +1 -1
- package/coverage/components/inputs/combobox/vue-components/ComboboxInput.vue.html +1 -1
- package/coverage/components/inputs/combobox/vue-components/ListBoxOption.vue.html +1 -1
- package/coverage/components/inputs/combobox/vue-components/index.html +1 -1
- package/coverage/components/inputs/file-upload/file-upload.js.html +1 -1
- package/coverage/components/inputs/file-upload/index.html +1 -1
- package/coverage/components/inputs/textarea/character-count.js.html +1 -1
- package/coverage/components/inputs/textarea/index.html +1 -1
- package/coverage/components/modal/index.html +1 -1
- package/coverage/components/modal/modal.js.html +1 -1
- package/coverage/components/notification/index.html +1 -1
- package/coverage/components/notification/notification.js.html +1 -1
- package/coverage/components/popover/index.html +1 -1
- package/coverage/components/popover/popover.js.html +1 -1
- package/coverage/components/switch-state/index.html +1 -1
- package/coverage/components/switch-state/switch-state.js.html +1 -1
- package/coverage/components/tabs/index.html +1 -1
- package/coverage/components/tabs/tabs.js.html +1 -1
- package/coverage/index.html +1 -1
- package/coverage/js/common.js.html +1 -1
- package/coverage/js/fractal-scripts/combobox.js.html +1 -1
- package/coverage/js/fractal-scripts/index.html +1 -1
- package/coverage/js/fractal-scripts/notification.js.html +1 -1
- package/coverage/js/fractal-scripts/switch-state.js.html +1 -1
- package/coverage/js/index-fractal.js.html +1 -1
- package/coverage/js/index-polyfills.js.html +1 -1
- package/coverage/js/index-vue.js.html +14 -2
- package/coverage/js/index.html +1 -1
- package/coverage/js/index.js.html +1 -1
- package/coverage/js/polyfills/arrayPrototypeFind.js.html +1 -1
- package/coverage/js/polyfills/closest.js.html +1 -1
- package/coverage/js/polyfills/index.html +1 -1
- package/coverage/js/polyfills/objectAssign.js.html +1 -1
- package/coverage/js/polyfills/remove.js.html +1 -1
- package/coverage/tokens/_config.js.html +1 -1
- package/coverage/tokens/index.html +1 -1
- package/dist/_tokens/css/_tokens.css +1 -1
- package/dist/_tokens/js/_tokens-module.js +1 -1
- package/dist/_tokens/scss/_tokens.scss +1 -1
- package/fractal.js +5 -0
- package/gulpfile.js +2 -1
- package/package.json +9 -4
- package/src/components/_preview.njk +17 -0
- package/src/components/icons/README.md +26 -6
- package/src/components/icons/icons.njk +78 -1
- package/src/components/icons/vue-components/MdsIcon.vue +29 -0
- package/src/components/import-MdsLibrary.njk +5 -0
- package/src/components/inputs/checkbox-list/README.md +2 -0
- package/src/components/pagination/README.md +16 -1
- package/src/components/pagination/_template.njk +1 -1
- package/src/components/pagination/pagination.config.js +5 -0
- package/src/components/pagination/pagination.njk +43 -1
- package/src/components/pagination/vue-components/MdsPagination.vue +83 -0
- package/src/js/index-vue.js +4 -0
- package/tasks/vite.js +11 -0
- package/vite-build/node_modules/@vitejs/plugin-vue/LICENSE +21 -0
- package/vite-build/node_modules/@vitejs/plugin-vue/README.md +134 -0
- package/vite-build/node_modules/@vitejs/plugin-vue/dist/index.d.ts +67 -0
- package/vite-build/node_modules/@vitejs/plugin-vue/dist/index.js +4756 -0
- package/vite-build/node_modules/@vitejs/plugin-vue/package.json +47 -0
- package/vite-build/node_modules/@vue/server-renderer/LICENSE +21 -0
- package/vite-build/node_modules/@vue/server-renderer/README.md +178 -0
- package/vite-build/node_modules/@vue/server-renderer/dist/server-renderer.cjs.js +1040 -0
- package/vite-build/node_modules/@vue/server-renderer/dist/server-renderer.cjs.prod.js +792 -0
- package/vite-build/node_modules/@vue/server-renderer/dist/server-renderer.d.ts +98 -0
- package/vite-build/node_modules/@vue/server-renderer/dist/server-renderer.esm-bundler.js +987 -0
- package/vite-build/node_modules/@vue/server-renderer/index.js +7 -0
- package/vite-build/node_modules/@vue/server-renderer/package.json +40 -0
- package/vite-build/node_modules/vue/LICENSE +21 -0
- package/vite-build/node_modules/vue/README.md +54 -0
- package/vite-build/node_modules/vue/compiler-sfc/index.d.ts +1 -0
- package/vite-build/node_modules/vue/compiler-sfc/index.js +1 -0
- package/vite-build/node_modules/vue/compiler-sfc/index.mjs +1 -0
- package/vite-build/node_modules/vue/compiler-sfc/package.json +5 -0
- package/vite-build/node_modules/vue/dist/vue.cjs.js +77 -0
- package/vite-build/node_modules/vue/dist/vue.cjs.prod.js +65 -0
- package/vite-build/node_modules/vue/dist/vue.d.ts +9 -0
- package/vite-build/node_modules/vue/dist/vue.esm-browser.js +15853 -0
- package/vite-build/node_modules/vue/dist/vue.esm-browser.prod.js +1 -0
- package/vite-build/node_modules/vue/dist/vue.esm-bundler.js +67 -0
- package/vite-build/node_modules/vue/dist/vue.global.js +15839 -0
- package/vite-build/node_modules/vue/dist/vue.global.prod.js +1 -0
- package/vite-build/node_modules/vue/dist/vue.runtime.esm-browser.js +10795 -0
- package/vite-build/node_modules/vue/dist/vue.runtime.esm-browser.prod.js +1 -0
- package/vite-build/node_modules/vue/dist/vue.runtime.esm-bundler.js +22 -0
- package/vite-build/node_modules/vue/dist/vue.runtime.global.js +10929 -0
- package/vite-build/node_modules/vue/dist/vue.runtime.global.prod.js +1 -0
- package/vite-build/node_modules/vue/index.js +7 -0
- package/vite-build/node_modules/vue/index.mjs +1 -0
- package/vite-build/node_modules/vue/macros-global.d.ts +19 -0
- package/vite-build/node_modules/vue/macros.d.ts +106 -0
- package/vite-build/node_modules/vue/package.json +75 -0
- package/vite-build/node_modules/vue/ref-macros.d.ts +2 -0
- package/vite-build/node_modules/vue/server-renderer/index.d.ts +1 -0
- package/vite-build/node_modules/vue/server-renderer/index.js +1 -0
- package/vite-build/node_modules/vue/server-renderer/index.mjs +1 -0
- package/vite-build/node_modules/vue/server-renderer/package.json +5 -0
- package/vite-build/package.json +20 -0
- package/vite-build/utils.js +30 -0
- package/vite-build/vite.config.js +42 -0
- package/vite-build/vue-lib.js +8 -0
- package/vue/vue.es.js +178 -0
- package/vue/vue.umd.js +1 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<?xml version="1.0" ?>
|
|
2
2
|
<!DOCTYPE coverage SYSTEM "http://cobertura.sourceforge.net/xml/coverage-04.dtd">
|
|
3
|
-
<coverage lines-valid="570" lines-covered="99" line-rate="0.17370000000000002" branches-valid="177" branches-covered="30" branch-rate="0.16949999999999998" timestamp="
|
|
3
|
+
<coverage lines-valid="570" lines-covered="99" line-rate="0.17370000000000002" branches-valid="177" branches-covered="30" branch-rate="0.16949999999999998" timestamp="1652785980599" complexity="0" version="0.1">
|
|
4
4
|
<sources>
|
|
5
5
|
<source>/data/jenkins/jobs/madgex-design-system/branches/master/workspace</source>
|
|
6
6
|
</sources>
|
|
@@ -1202,17 +1202,17 @@
|
|
|
1202
1202
|
<methods>
|
|
1203
1203
|
<method name="(anonymous_0)" hits="0" signature="()V">
|
|
1204
1204
|
<lines>
|
|
1205
|
-
<line number="
|
|
1205
|
+
<line number="16" hits="0"/>
|
|
1206
1206
|
</lines>
|
|
1207
1207
|
</method>
|
|
1208
1208
|
</methods>
|
|
1209
1209
|
<lines>
|
|
1210
|
-
<line number="6" hits="0" branch="false"/>
|
|
1211
|
-
<line number="7" hits="0" branch="false"/>
|
|
1212
1210
|
<line number="9" hits="0" branch="false"/>
|
|
1213
1211
|
<line number="10" hits="0" branch="false"/>
|
|
1214
1212
|
<line number="12" hits="0" branch="false"/>
|
|
1215
1213
|
<line number="13" hits="0" branch="false"/>
|
|
1214
|
+
<line number="16" hits="0" branch="false"/>
|
|
1215
|
+
<line number="17" hits="0" branch="false"/>
|
|
1216
1216
|
</lines>
|
|
1217
1217
|
</class>
|
|
1218
1218
|
<class name="index.js" filename="src/js/index.js" line-rate="0" branch-rate="1">
|
|
@@ -502,7 +502,7 @@ export default accordion;
|
|
|
502
502
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
503
503
|
Code coverage generated by
|
|
504
504
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
505
|
-
at
|
|
505
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
506
506
|
</div>
|
|
507
507
|
</div>
|
|
508
508
|
<script src="../../prettify.js"></script>
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
96
96
|
Code coverage generated by
|
|
97
97
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
98
|
-
at
|
|
98
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
99
99
|
</div>
|
|
100
100
|
</div>
|
|
101
101
|
<script src="../../prettify.js"></script>
|
|
@@ -151,7 +151,7 @@ export default button;
|
|
|
151
151
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
152
152
|
Code coverage generated by
|
|
153
153
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
154
|
-
at
|
|
154
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
155
155
|
</div>
|
|
156
156
|
</div>
|
|
157
157
|
<script src="../../prettify.js"></script>
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
96
96
|
Code coverage generated by
|
|
97
97
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
98
|
-
at
|
|
98
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
99
99
|
</div>
|
|
100
100
|
</div>
|
|
101
101
|
<script src="../../prettify.js"></script>
|
|
@@ -112,7 +112,7 @@ export default {
|
|
|
112
112
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
113
113
|
Code coverage generated by
|
|
114
114
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
115
|
-
at
|
|
115
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
116
116
|
</div>
|
|
117
117
|
</div>
|
|
118
118
|
<script src="../../../prettify.js"></script>
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
96
96
|
Code coverage generated by
|
|
97
97
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
98
|
-
at
|
|
98
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
99
99
|
</div>
|
|
100
100
|
</div>
|
|
101
101
|
<script src="../../../prettify.js"></script>
|
|
@@ -946,7 +946,7 @@ export default {
|
|
|
946
946
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
947
947
|
Code coverage generated by
|
|
948
948
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
949
|
-
at
|
|
949
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
950
950
|
</div>
|
|
951
951
|
</div>
|
|
952
952
|
<script src="../../../../prettify.js"></script>
|
|
@@ -199,7 +199,7 @@ export default {
|
|
|
199
199
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
200
200
|
Code coverage generated by
|
|
201
201
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
202
|
-
at
|
|
202
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
203
203
|
</div>
|
|
204
204
|
</div>
|
|
205
205
|
<script src="../../../../prettify.js"></script>
|
|
@@ -214,7 +214,7 @@ export default {
|
|
|
214
214
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
215
215
|
Code coverage generated by
|
|
216
216
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
217
|
-
at
|
|
217
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
218
218
|
</div>
|
|
219
219
|
</div>
|
|
220
220
|
<script src="../../../../prettify.js"></script>
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
126
126
|
Code coverage generated by
|
|
127
127
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
128
|
-
at
|
|
128
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
129
129
|
</div>
|
|
130
130
|
</div>
|
|
131
131
|
<script src="../../../../prettify.js"></script>
|
|
@@ -232,7 +232,7 @@ export default fileUpload;
|
|
|
232
232
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
233
233
|
Code coverage generated by
|
|
234
234
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
235
|
-
at
|
|
235
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
236
236
|
</div>
|
|
237
237
|
</div>
|
|
238
238
|
<script src="../../../prettify.js"></script>
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
96
96
|
Code coverage generated by
|
|
97
97
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
98
|
-
at
|
|
98
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
99
99
|
</div>
|
|
100
100
|
</div>
|
|
101
101
|
<script src="../../../prettify.js"></script>
|
|
@@ -184,7 +184,7 @@ export default characterCount;
|
|
|
184
184
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
185
185
|
Code coverage generated by
|
|
186
186
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
187
|
-
at
|
|
187
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
188
188
|
</div>
|
|
189
189
|
</div>
|
|
190
190
|
<script src="../../../prettify.js"></script>
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
96
96
|
Code coverage generated by
|
|
97
97
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
98
|
-
at
|
|
98
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
99
99
|
</div>
|
|
100
100
|
</div>
|
|
101
101
|
<script src="../../../prettify.js"></script>
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
96
96
|
Code coverage generated by
|
|
97
97
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
98
|
-
at
|
|
98
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
99
99
|
</div>
|
|
100
100
|
</div>
|
|
101
101
|
<script src="../../prettify.js"></script>
|
|
@@ -322,7 +322,7 @@ export default modals;
|
|
|
322
322
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
323
323
|
Code coverage generated by
|
|
324
324
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
325
|
-
at
|
|
325
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
326
326
|
</div>
|
|
327
327
|
</div>
|
|
328
328
|
<script src="../../prettify.js"></script>
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
96
96
|
Code coverage generated by
|
|
97
97
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
98
|
-
at
|
|
98
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
99
99
|
</div>
|
|
100
100
|
</div>
|
|
101
101
|
<script src="../../prettify.js"></script>
|
|
@@ -154,7 +154,7 @@ export default notification;
|
|
|
154
154
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
155
155
|
Code coverage generated by
|
|
156
156
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
157
|
-
at
|
|
157
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
158
158
|
</div>
|
|
159
159
|
</div>
|
|
160
160
|
<script src="../../prettify.js"></script>
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
96
96
|
Code coverage generated by
|
|
97
97
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
98
|
-
at
|
|
98
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
99
99
|
</div>
|
|
100
100
|
</div>
|
|
101
101
|
<script src="../../prettify.js"></script>
|
|
@@ -295,7 +295,7 @@ export default popovers;
|
|
|
295
295
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
296
296
|
Code coverage generated by
|
|
297
297
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
298
|
-
at
|
|
298
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
299
299
|
</div>
|
|
300
300
|
</div>
|
|
301
301
|
<script src="../../prettify.js"></script>
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
96
96
|
Code coverage generated by
|
|
97
97
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
98
|
-
at
|
|
98
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
99
99
|
</div>
|
|
100
100
|
</div>
|
|
101
101
|
<script src="../../prettify.js"></script>
|
|
@@ -100,7 +100,7 @@ export default switchState;
|
|
|
100
100
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
101
101
|
Code coverage generated by
|
|
102
102
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
103
|
-
at
|
|
103
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
104
104
|
</div>
|
|
105
105
|
</div>
|
|
106
106
|
<script src="../../prettify.js"></script>
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
96
96
|
Code coverage generated by
|
|
97
97
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
98
|
-
at
|
|
98
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
99
99
|
</div>
|
|
100
100
|
</div>
|
|
101
101
|
<script src="../../prettify.js"></script>
|
|
@@ -583,7 +583,7 @@ export default tabs;
|
|
|
583
583
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
584
584
|
Code coverage generated by
|
|
585
585
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
586
|
-
at
|
|
586
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
587
587
|
</div>
|
|
588
588
|
</div>
|
|
589
589
|
<script src="../../prettify.js"></script>
|
package/coverage/index.html
CHANGED
|
@@ -305,7 +305,7 @@
|
|
|
305
305
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
306
306
|
Code coverage generated by
|
|
307
307
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
308
|
-
at
|
|
308
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
309
309
|
</div>
|
|
310
310
|
</div>
|
|
311
311
|
<script src="prettify.js"></script>
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
101
101
|
Code coverage generated by
|
|
102
102
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
103
|
-
at
|
|
103
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
104
104
|
</div>
|
|
105
105
|
</div>
|
|
106
106
|
<script src="../prettify.js"></script>
|
|
@@ -316,7 +316,7 @@ export default combobox;
|
|
|
316
316
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
317
317
|
Code coverage generated by
|
|
318
318
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
319
|
-
at
|
|
319
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
320
320
|
</div>
|
|
321
321
|
</div>
|
|
322
322
|
<script src="../../prettify.js"></script>
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
126
126
|
Code coverage generated by
|
|
127
127
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
128
|
-
at
|
|
128
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
129
129
|
</div>
|
|
130
130
|
</div>
|
|
131
131
|
<script src="../../prettify.js"></script>
|
|
@@ -133,7 +133,7 @@ export default notificationScript;
|
|
|
133
133
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
134
134
|
Code coverage generated by
|
|
135
135
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
136
|
-
at
|
|
136
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
137
137
|
</div>
|
|
138
138
|
</div>
|
|
139
139
|
<script src="../../prettify.js"></script>
|
|
@@ -145,7 +145,7 @@ export default switchStateScript;
|
|
|
145
145
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
146
146
|
Code coverage generated by
|
|
147
147
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
148
|
-
at
|
|
148
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
149
149
|
</div>
|
|
150
150
|
</div>
|
|
151
151
|
<script src="../../prettify.js"></script>
|
|
@@ -91,7 +91,7 @@ import comboboxScript from './fractal-scripts/combobox';
|
|
|
91
91
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
92
92
|
Code coverage generated by
|
|
93
93
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
94
|
-
at
|
|
94
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
95
95
|
</div>
|
|
96
96
|
</div>
|
|
97
97
|
<script src="../prettify.js"></script>
|
|
@@ -79,7 +79,7 @@ import './polyfills/arrayPrototypeFind';
|
|
|
79
79
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
80
80
|
Code coverage generated by
|
|
81
81
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
82
|
-
at
|
|
82
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
83
83
|
</div>
|
|
84
84
|
</div>
|
|
85
85
|
<script src="../prettify.js"></script>
|
|
@@ -71,7 +71,14 @@
|
|
|
71
71
|
<a name='L12'></a><a href='#L12'>12</a>
|
|
72
72
|
<a name='L13'></a><a href='#L13'>13</a>
|
|
73
73
|
<a name='L14'></a><a href='#L14'>14</a>
|
|
74
|
-
<a name='L15'></a><a href='#L15'>15</a
|
|
74
|
+
<a name='L15'></a><a href='#L15'>15</a>
|
|
75
|
+
<a name='L16'></a><a href='#L16'>16</a>
|
|
76
|
+
<a name='L17'></a><a href='#L17'>17</a>
|
|
77
|
+
<a name='L18'></a><a href='#L18'>18</a>
|
|
78
|
+
<a name='L19'></a><a href='#L19'>19</a></td><td class="line-coverage quiet"><span class="cline-any cline-neutral"> </span>
|
|
79
|
+
<span class="cline-any cline-neutral"> </span>
|
|
80
|
+
<span class="cline-any cline-neutral"> </span>
|
|
81
|
+
<span class="cline-any cline-neutral"> </span>
|
|
75
82
|
<span class="cline-any cline-neutral"> </span>
|
|
76
83
|
<span class="cline-any cline-neutral"> </span>
|
|
77
84
|
<span class="cline-any cline-neutral"> </span>
|
|
@@ -82,20 +89,25 @@
|
|
|
82
89
|
<span class="cline-any cline-no"> </span>
|
|
83
90
|
<span class="cline-any cline-no"> </span>
|
|
84
91
|
<span class="cline-any cline-neutral"> </span>
|
|
92
|
+
<span class="cline-any cline-neutral"> </span>
|
|
85
93
|
<span class="cline-any cline-no"> </span>
|
|
86
94
|
<span class="cline-any cline-no"> </span>
|
|
87
95
|
<span class="cline-any cline-neutral"> </span>
|
|
88
96
|
<span class="cline-any cline-neutral"> </span></td><td class="text"><pre class="prettyprint lang-js">import 'document-register-element/build/document-register-element';
|
|
89
97
|
import Vue from 'vue';
|
|
90
98
|
import vueCustomElement from 'vue-custom-element';
|
|
99
|
+
|
|
100
|
+
// --- Components ---
|
|
91
101
|
import MdsCombobox from '../components/inputs/combobox/combobox';
|
|
92
102
|
|
|
103
|
+
// --- Config ---
|
|
93
104
|
<span class="cstat-no" title="statement not covered" >Vue.use(vueCustomElement);</span>
|
|
94
105
|
<span class="cstat-no" title="statement not covered" >Vue.config.devtools = process.env.NODE_ENV === 'development';</span>
|
|
95
106
|
|
|
96
107
|
<span class="cstat-no" title="statement not covered" >Vue.config.keyCodes.end = 35;</span>
|
|
97
108
|
<span class="cstat-no" title="statement not covered" >Vue.config.keyCodes.home = 36;</span>
|
|
98
109
|
|
|
110
|
+
// --- Custom Elements ---
|
|
99
111
|
<span class="cstat-no" title="statement not covered" >[MdsCombobox].forEach(<span class="fstat-no" title="function not covered" >({</span> name, component, hooks }) => {</span>
|
|
100
112
|
<span class="cstat-no" title="statement not covered" > Vue.customElement(name, component, hooks);</span>
|
|
101
113
|
});
|
|
@@ -106,7 +118,7 @@ import MdsCombobox from '../components/inputs/combobox/combobox';
|
|
|
106
118
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
107
119
|
Code coverage generated by
|
|
108
120
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
109
|
-
at
|
|
121
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
110
122
|
</div>
|
|
111
123
|
</div>
|
|
112
124
|
<script src="../prettify.js"></script>
|
package/coverage/js/index.html
CHANGED
|
@@ -155,7 +155,7 @@
|
|
|
155
155
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
156
156
|
Code coverage generated by
|
|
157
157
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
158
|
-
at
|
|
158
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
159
159
|
</div>
|
|
160
160
|
</div>
|
|
161
161
|
<script src="../prettify.js"></script>
|
|
@@ -145,7 +145,7 @@ import button from '../components/button/button';
|
|
|
145
145
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
146
146
|
Code coverage generated by
|
|
147
147
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
148
|
-
at
|
|
148
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
149
149
|
</div>
|
|
150
150
|
</div>
|
|
151
151
|
<script src="../prettify.js"></script>
|
|
@@ -211,7 +211,7 @@
|
|
|
211
211
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
212
212
|
Code coverage generated by
|
|
213
213
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
214
|
-
at
|
|
214
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
215
215
|
</div>
|
|
216
216
|
</div>
|
|
217
217
|
<script src="../../prettify.js"></script>
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
116
116
|
Code coverage generated by
|
|
117
117
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
118
|
-
at
|
|
118
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
119
119
|
</div>
|
|
120
120
|
</div>
|
|
121
121
|
<script src="../../prettify.js"></script>
|
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
141
141
|
Code coverage generated by
|
|
142
142
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
143
|
-
at
|
|
143
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
144
144
|
</div>
|
|
145
145
|
</div>
|
|
146
146
|
<script src="../../prettify.js"></script>
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
164
164
|
Code coverage generated by
|
|
165
165
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
166
|
-
at
|
|
166
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
167
167
|
</div>
|
|
168
168
|
</div>
|
|
169
169
|
<script src="../../prettify.js"></script>
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
86
86
|
Code coverage generated by
|
|
87
87
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
88
|
-
at
|
|
88
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
89
89
|
</div>
|
|
90
90
|
</div>
|
|
91
91
|
<script src="../../prettify.js"></script>
|
|
@@ -553,7 +553,7 @@ const config = <span class="cstat-no" title="statement not covered" >{</span>
|
|
|
553
553
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
554
554
|
Code coverage generated by
|
|
555
555
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
556
|
-
at
|
|
556
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
557
557
|
</div>
|
|
558
558
|
</div>
|
|
559
559
|
<script src="../prettify.js"></script>
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
96
96
|
Code coverage generated by
|
|
97
97
|
<a href="https://istanbul.js.org/" target="_blank">istanbul</a>
|
|
98
|
-
at
|
|
98
|
+
at Tue May 17 2022 11:13:00 GMT+0000 (Coordinated Universal Time)
|
|
99
99
|
</div>
|
|
100
100
|
</div>
|
|
101
101
|
<script src="../prettify.js"></script>
|
package/fractal.js
CHANGED
|
@@ -54,6 +54,7 @@ fractal.components.set('default.collated', 'true');
|
|
|
54
54
|
fractal.components.set('default.preview', '@preview');
|
|
55
55
|
fractal.components.set('default.context', {
|
|
56
56
|
tokens,
|
|
57
|
+
isDev: process.env.NODE_ENV === 'development',
|
|
57
58
|
});
|
|
58
59
|
|
|
59
60
|
/*
|
|
@@ -103,6 +104,10 @@ fractal.web.theme(madgexTheme);
|
|
|
103
104
|
fractal.web.set('server.port', 4000);
|
|
104
105
|
fractal.web.set('server.sync', true);
|
|
105
106
|
|
|
107
|
+
fractal.web.set('server.syncOptions', {
|
|
108
|
+
serveStatic: [{ route: '/vue-library', dir: path.join(__dirname, '/vue') }],
|
|
109
|
+
});
|
|
110
|
+
|
|
106
111
|
/**
|
|
107
112
|
* Prevent warnings "a promise was created in a handler but was not returned from it"
|
|
108
113
|
* caused by Nunjucks from polluting the console
|
package/gulpfile.js
CHANGED
|
@@ -8,6 +8,7 @@ const { svgsprite } = require('./tasks/svgsprite');
|
|
|
8
8
|
const { jsbundle } = require('./tasks/js-bundle');
|
|
9
9
|
const { fractalStart, fractalBuild } = require('./tasks/fractal');
|
|
10
10
|
const { createMacroIndex } = require('./tasks/createMacroIndex');
|
|
11
|
+
const { viteBuild } = require('./tasks/vite');
|
|
11
12
|
|
|
12
13
|
async function clean() {
|
|
13
14
|
await del([path.resolve(__dirname, './dist')], {
|
|
@@ -23,7 +24,7 @@ function watchFiles() {
|
|
|
23
24
|
}
|
|
24
25
|
|
|
25
26
|
const watch = gulp.parallel(watchFiles);
|
|
26
|
-
const build = gulp.series(clean, tokens, svgsprite, css, jsbundle, createMacroIndex, fractalBuild);
|
|
27
|
+
const build = gulp.series(clean, tokens, svgsprite, css, jsbundle, createMacroIndex, fractalBuild, viteBuild);
|
|
27
28
|
const dev = gulp.series(build, fractalStart, watch);
|
|
28
29
|
|
|
29
30
|
exports.clean = clean;
|