@leapdev/gui 0.2.234 → 0.2.240

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.
Files changed (60) hide show
  1. package/dist/auth-leap-addin.js +96 -0
  2. package/dist/auth-leap-desktop.js +96 -0
  3. package/dist/auth-leap-web.js +96 -0
  4. package/dist/bs-lawconnect.js +2 -2
  5. package/dist/bs-leap-slim.js +2 -2
  6. package/dist/bs-leap.js +2 -2
  7. package/dist/bs-titlex.js +2 -2
  8. package/dist/css/auth-leap-addin.css +1 -0
  9. package/dist/css/auth-leap-desktop.css +1 -0
  10. package/dist/css/auth-leap-web.css +1 -0
  11. package/dist/images/leap-auth/auth-bg.png +0 -0
  12. package/dist/images/leap-auth/auth-icons.svg +9 -0
  13. package/dist/images/leap-auth/auth-logo.svg +6 -0
  14. package/dist/index.html +2 -2
  15. package/dist/scss/auth/bootstrap/_bootstrap.scss +16 -0
  16. package/dist/scss/auth/product/leap-4d.scss +22 -0
  17. package/dist/scss/auth/product/leap.scss +21 -0
  18. package/dist/scss/auth/product/office-addin.scss +21 -0
  19. package/dist/scss/auth/theme/bootstrap-variables/_avatar.scss +8 -0
  20. package/dist/scss/auth/theme/bootstrap-variables/_badges.scss +5 -0
  21. package/dist/scss/auth/theme/bootstrap-variables/_breadcrumbs.scss +8 -0
  22. package/dist/scss/auth/theme/bootstrap-variables/_buttons.scss +7 -0
  23. package/dist/scss/auth/theme/bootstrap-variables/_colours.scss +60 -0
  24. package/dist/scss/auth/theme/bootstrap-variables/_components.scss +18 -0
  25. package/dist/scss/auth/theme/bootstrap-variables/_dropdowns.scss +24 -0
  26. package/dist/scss/auth/theme/bootstrap-variables/_grid.scss +21 -0
  27. package/dist/scss/auth/theme/bootstrap-variables/_input-box.scss +53 -0
  28. package/dist/scss/auth/theme/bootstrap-variables/_input-group.scss +0 -0
  29. package/dist/scss/auth/theme/bootstrap-variables/_input-options.scss +18 -0
  30. package/dist/scss/auth/theme/bootstrap-variables/_nav.scss +20 -0
  31. package/dist/scss/auth/theme/bootstrap-variables/_opacity.scss +6 -0
  32. package/dist/scss/auth/theme/bootstrap-variables/_select.scss +8 -0
  33. package/dist/scss/auth/theme/bootstrap-variables/_switch.scss +9 -0
  34. package/dist/scss/auth/theme/bootstrap-variables/_typography.scss +40 -0
  35. package/dist/scss/auth/theme/bootstrap-variables/_variables.scss +16 -0
  36. package/dist/scss/auth/theme/components/_badge.scss +34 -0
  37. package/dist/scss/auth/theme/components/_buttons.scss +92 -0
  38. package/dist/scss/auth/theme/components/_components.scss +12 -0
  39. package/dist/scss/auth/theme/components/_divider.scss +14 -0
  40. package/dist/scss/auth/theme/components/_dropdown.scss +40 -0
  41. package/dist/scss/auth/theme/components/_icons.scss +27 -0
  42. package/dist/scss/auth/theme/components/_nav.scss +79 -0
  43. package/dist/scss/auth/theme/components/_toastr.scss +24 -0
  44. package/dist/scss/auth/theme/components/forms/_checkbox.scss +73 -0
  45. package/dist/scss/auth/theme/components/forms/_form-control.scss +60 -0
  46. package/dist/scss/auth/theme/components/forms/_form-group.scss +8 -0
  47. package/dist/scss/auth/theme/components/forms/_forms.scss +4 -0
  48. package/dist/scss/auth/theme/components/forms/_input-group.scss +43 -0
  49. package/dist/scss/auth/theme/css-variables/_leap-4d.scss +74 -0
  50. package/dist/scss/auth/theme/css-variables/_leap.scss +77 -0
  51. package/dist/scss/auth/theme/css-variables/_office-addin.scss +73 -0
  52. package/dist/scss/auth/theme/features/_auth.scss +290 -0
  53. package/dist/scss/auth/theme/mixins/_badge.scss +12 -0
  54. package/dist/scss/auth/theme/mixins/_icons.scss +7 -0
  55. package/dist/scss/auth/theme/mixins/_mixins.scss +2 -0
  56. package/dist/scss/product/auth-leap-addin.scss +21 -0
  57. package/dist/scss/product/auth-leap-desktop.scss +22 -0
  58. package/dist/scss/product/auth-leap-web.scss +21 -0
  59. package/dist/scss/xsf-crx/sf-leap.js +154 -2
  60. package/package.json +3 -2
@@ -0,0 +1,290 @@
1
+ html {
2
+ height: 100%;
3
+ }
4
+
5
+ .auth-page {
6
+ background-color: var(--leap-body-background-color);
7
+ // display: grid;
8
+ // place-items: center;
9
+ display: flex;
10
+ align-items: center;
11
+ min-height: 100%;
12
+ padding-left: 1rem;
13
+ padding-right: 1rem;
14
+
15
+ @media screen and (min-height: 850px) {
16
+ background-image: url(https://unpkg.com/@leapdev/gui@latest/dist/images/leap-auth/auth-bg.png);
17
+ background-position: bottom left;
18
+ background-repeat: no-repeat;
19
+ background-size: 1194px;
20
+ }
21
+
22
+ > .container {
23
+ align-self: center;
24
+ display: flex;
25
+ }
26
+ }
27
+
28
+
29
+ .auth {
30
+ margin: 0 auto;
31
+ padding-bottom: 16vh;
32
+ height: auto;
33
+
34
+ @media screen and (min-width: 577px) {
35
+ max-width: 21.25rem;
36
+ }
37
+
38
+ @media screen and (max-height: 849px) {
39
+ padding-bottom: 0;
40
+ }
41
+
42
+ &_container {
43
+ margin: auto;
44
+ }
45
+
46
+ &_logo {
47
+ display: flex;
48
+ align-items: center;
49
+ justify-content: center;
50
+ margin-bottom: 3.5rem;
51
+
52
+ @media screen and (max-height: 849px) {
53
+ height: auto;
54
+ margin-bottom: 4vh;
55
+ margin-top: 4vh;
56
+
57
+ > svg {
58
+ height: 100%;
59
+ }
60
+ }
61
+ }
62
+
63
+ &_title {
64
+ font-size: $h2-font-size;
65
+ color: var(--leap-heading-color);
66
+ font-weight: $font-weight-bold;
67
+ margin-bottom: 1rem;
68
+ }
69
+
70
+ &_form {
71
+ margin: auto;
72
+ .input-group-text,
73
+ .form-control {
74
+ border-radius: var(--leap-border-radius) !important;
75
+ }
76
+ }
77
+
78
+ &_links {
79
+ display: flex;
80
+ margin-top: 2rem;
81
+ color: $text-muted;
82
+ text-align: center;
83
+ justify-content: space-between;
84
+
85
+ a {
86
+ text-decoration: none;
87
+ font-size: $font-size-sm;
88
+ font-weight: 400;
89
+ &:hover, &:focus {
90
+ text-decoration: underline;
91
+ }
92
+ }
93
+ }
94
+
95
+ @media screen and (max-width: 376px) {
96
+ &_links {
97
+ flex-wrap: wrap;
98
+ margin-bottom: 2rem;
99
+
100
+ .nav {
101
+ width: 100%;
102
+
103
+ > li {
104
+ display: block;
105
+ white-space: wrap;
106
+ width: 100%;
107
+ padding-top: 0.25rem;
108
+ padding-bottom: 0.25rem;
109
+ }
110
+ }
111
+ }
112
+ }
113
+
114
+ &_or {
115
+ $or-dim: 2.25rem;
116
+ width: 100%;
117
+ height: $or-dim !important;
118
+ margin: 1.5rem 0;
119
+ display: flex;
120
+ flex-wrap: nowrap;
121
+ align-items: center;
122
+ position: relative;
123
+ user-select: none;
124
+ overflow: hidden;
125
+ > span {
126
+ color: var(--leap-label-color);
127
+ display: block;
128
+ font-weight: 600;
129
+ font-size: 0.875rem;
130
+ text-align: center;
131
+ width: $or-dim;
132
+ height: $or-dim;
133
+ padding-top: 0.25rem;
134
+ border: 2px solid var(--leap-border-color);
135
+ border-radius: $or-dim;
136
+ }
137
+
138
+ &::before, &::after {
139
+ content: '';
140
+ display: inline-block;
141
+ width: calc(50% - #{$or-dim / 2});
142
+ height: 0.125rem;
143
+ background-color: var(--leap-border-color);
144
+ }
145
+ }
146
+
147
+ &_btn_microsoft {
148
+ display: flex;
149
+ justify-content: center;
150
+ align-items: center;
151
+ }
152
+
153
+ $icon_microsoft_dimension: 1.25rem;
154
+ &_icon_microsoft {
155
+ width: $icon_microsoft_dimension;
156
+ height: $icon_microsoft_dimension;
157
+ margin-top: -0.0625rem;
158
+ margin-right: 0.5rem;
159
+ $microsoft-icon: str-replace(url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2_21)'%3E%3Cpath d='M0 0.125H20V20.125H0V0.125Z' fill='%23F3F3F3'/%3E%3Cpath d='M0.869568 0.994564H9.56522V9.69022H0.869568V0.994564Z' fill='%23F35325'/%3E%3Cpath d='M10.4348 0.994564H19.1304V9.69022H10.4348V0.994564Z' fill='%2381BC06'/%3E%3Cpath d='M0.869568 10.5598H9.56522V19.2554H0.869568V10.5598Z' fill='%2305A6F0'/%3E%3Cpath d='M10.4348 10.5598H19.1304V19.2554H10.4348V10.5598Z' fill='%23FFBA08'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2_21'%3E%3Crect width='20' height='20' fill='white' transform='translate(0 0.125)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A"), "#", "%23");
160
+ &::before {
161
+ width: $icon_microsoft_dimension;
162
+ height: $icon_microsoft_dimension;
163
+ display: inline-block;
164
+ background-repeat: no-repeat;
165
+ background-size: 100%;
166
+ content: '';
167
+ background-image: $microsoft-icon;
168
+
169
+ }
170
+ }
171
+
172
+ &_permissions {
173
+ padding-top: 0.25rem;
174
+ padding-right: 0.25rem;
175
+ padding-bottom: 0.25rem;
176
+ background-color: #f7f7f7;
177
+ border-radius: var(--leap-border-radius);
178
+ margin-bottom: 1rem;
179
+
180
+ &:hover > .auth_permissions_list::-webkit-scrollbar-thumb {
181
+ background-color: #333;
182
+ transition: all 0.25s ease-out;
183
+ }
184
+ }
185
+
186
+ &_permissions_list {
187
+ list-style-type: none;
188
+ padding-left: 0;
189
+ margin-bottom: 0;
190
+ background-color: #f7f7f7;
191
+ padding: 0.75rem 0.75rem 0.75rem 1rem;
192
+ overflow-y: auto;
193
+ min-height: 200px;
194
+ max-height: 30vh;
195
+ -webkit-overflow-scrolling: touch;
196
+
197
+ &::-webkit-scrollbar {
198
+ width: 0.5rem;
199
+ border-top-right-radius: 4px;
200
+ }
201
+
202
+ &::-webkit-scrollbar-thumb {
203
+ border-radius: 8px;
204
+ background-color: var(--leap-border-color);
205
+ transition: all 0.25s ease-out;
206
+ &:hover {
207
+ background-color: #333;
208
+ transition: all 0.25s ease-out;
209
+ }
210
+ }
211
+
212
+ > li {
213
+ &:not(:first-child) {
214
+ margin-top: 1rem;
215
+ }
216
+
217
+ > ul {
218
+ list-style-type: none;
219
+ padding-left: 0;
220
+ }
221
+
222
+ > ul li {
223
+ &::before {
224
+ display: inline-block;
225
+ content: '-';
226
+ margin-right: 0.25rem;
227
+ }
228
+ margin-bottom: 0.25rem;
229
+ }
230
+ }
231
+ }
232
+
233
+ // @media screen and (min-width: 577px) {
234
+ &_support_tabcontent {
235
+ min-height: 21.5rem;
236
+ }
237
+ // }
238
+
239
+ &_firm_id {
240
+ position: relative;
241
+
242
+ .form-control {
243
+ z-index: 1;
244
+ padding-right: 3rem;
245
+
246
+ @if not $is-desktop {
247
+ padding-left: 1rem;
248
+ }
249
+ @else {
250
+ padding-left: 0.5rem;
251
+ }
252
+ }
253
+
254
+ .btn-icon-only {
255
+ height: auto;
256
+ padding: 0.5rem;
257
+ position: absolute;
258
+ z-index: 2;
259
+
260
+ @if $is-desktop {
261
+ right: 0;
262
+ top: 0;
263
+ bottom: 0;
264
+ }
265
+ @else {
266
+ right: 0.25rem;
267
+ top: 0.25rem;
268
+ bottom: 0.25rem;
269
+ }
270
+
271
+ .icon {
272
+ width: 1.2rem;
273
+ height: 1.2rem;
274
+ }
275
+ }
276
+ }
277
+
278
+ &_reason {
279
+ @if $is-desktop {
280
+ > span.input-group-text {
281
+ height: 60% !important;
282
+ }
283
+ }
284
+ @else {
285
+ > span.input-group-text {
286
+ height: 71% !important;
287
+ }
288
+ }
289
+ }
290
+ }
@@ -0,0 +1,12 @@
1
+ @mixin badge-variant-outline($bg, $color, $border) {
2
+ color: $color;
3
+ background-color: rgba($bg, 0.12);
4
+ border: 1px solid $border;
5
+
6
+ &[href]:hover,
7
+ &[href]:focus {
8
+ color: $color;
9
+ text-decoration: none;
10
+ background-color: rgba($bg, 0.2);
11
+ }
12
+ }
@@ -0,0 +1,7 @@
1
+ @mixin icon-sizing($map) {
2
+ @each $size, $value in $map {
3
+ .icon-#{$size} {
4
+ font-size: $value;
5
+ }
6
+ }
7
+ }
@@ -0,0 +1,2 @@
1
+ @import './icons';
2
+ @import './badge';
@@ -0,0 +1,21 @@
1
+ //
2
+ // Theme
3
+ //
4
+ // Custom variables followed by theme variables followed by Bootstrap variables
5
+ // to ensure cascade of styles.
6
+ //
7
+
8
+ // Bootstrap functions
9
+ @import '~bootstrap/scss/functions';
10
+
11
+ // Custom theme variables override
12
+ @import '../auth/theme/css-variables/office-addin';
13
+ @import '../auth/theme/bootstrap-variables/variables';
14
+
15
+ // Bootstrap core
16
+ @import '../auth/bootstrap/bootstrap';
17
+
18
+ // Custom theme core including mixins / utilities / features
19
+ @import '../auth/theme/mixins/mixins';
20
+ @import '../auth/theme/components/components';
21
+ @import '../auth/theme/features/auth';
@@ -0,0 +1,22 @@
1
+ //
2
+ // Theme
3
+ //
4
+ // Custom variables followed by theme variables followed by Bootstrap variables
5
+ // to ensure cascade of styles.
6
+ //
7
+
8
+ // Bootstrap functions
9
+ @import '~bootstrap/scss/functions';
10
+
11
+ // Custom theme variables override
12
+ @import '../auth/theme/css-variables/leap-4d';
13
+ @import '../auth/theme/bootstrap-variables/variables';
14
+
15
+ // Bootstrap core
16
+ @import '../auth/bootstrap/bootstrap';
17
+
18
+ // Custom theme core including mixins / utilities / features
19
+ @import '../auth/theme/mixins/mixins';
20
+ @import '../auth/theme/components/components';
21
+ @import '../auth/theme/features/auth';
22
+
@@ -0,0 +1,21 @@
1
+ //
2
+ // Theme
3
+ //
4
+ // Custom variables followed by theme variables followed by Bootstrap variables
5
+ // to ensure cascade of styles.
6
+ //
7
+
8
+ // Bootstrap functions
9
+ @import '~bootstrap/scss/functions';
10
+
11
+ // Custom theme variables override
12
+ @import '../auth/theme/css-variables/leap';
13
+ @import '../auth/theme/bootstrap-variables/variables';
14
+
15
+ // Bootstrap core
16
+ @import '../auth/bootstrap/bootstrap';
17
+
18
+ // Custom theme core including mixins / utilities / features
19
+ @import '../auth/theme/mixins/mixins';
20
+ @import '../auth/theme/components/components';
21
+ @import '../auth/theme/features/auth';
@@ -1,3 +1,53 @@
1
+ // Mutation Observer for Accordion and Tabs
2
+ //https://gist.github.com/matthewmorrone/da487467501e8b815430
3
+ (function (win) {
4
+ 'use strict';
5
+
6
+ var listeners = [],
7
+ doc = win.document,
8
+ MutationObserver = win.MutationObserver || win.WebKitMutationObserver,
9
+ observer;
10
+
11
+ function ready(selector, fn) {
12
+ // Store the selector and callback to be monitored
13
+ listeners.push({
14
+ selector: selector,
15
+ fn: fn
16
+ });
17
+ if (!observer) {
18
+ // Watch for changes in the document
19
+ observer = new MutationObserver(check);
20
+ observer.observe(doc.documentElement, {
21
+ childList: true,
22
+ subtree: true
23
+ });
24
+ }
25
+ // Check if the element is currently in the DOM
26
+ check();
27
+ }
28
+
29
+ function check() {
30
+ // Check the DOM for elements matching a stored selector
31
+ for (var i = 0, len = listeners.length, listener, elements; i < len; i++) {
32
+ listener = listeners[i];
33
+ // Query for elements matching the specified selector
34
+ elements = doc.querySelectorAll(listener.selector);
35
+ for (var j = 0, jLen = elements.length, element; j < jLen; j++) {
36
+ element = elements[j];
37
+ // Make sure the callback isn't invoked with the
38
+ // same element more than once
39
+ if (!element.ready) {
40
+ element.ready = true;
41
+ // Invoke the callback with the element
42
+ listener.fn.call(element, element);
43
+ }
44
+ }
45
+ }
46
+ }
47
+ // Expose `ready`
48
+ win.ready = ready;
49
+ })(this);
50
+
1
51
  (function () {
2
52
  var getChildren = function (n, skipMe) {
3
53
  var r = [];
@@ -10,6 +60,59 @@
10
60
  return getChildren(n.parentNode.firstChild, n);
11
61
  };
12
62
 
63
+ var getClosestParent = function (elem, selector) {
64
+ if (!Element.prototype.matches) {
65
+ Element.prototype.matches =
66
+ Element.prototype.matchesSelector ||
67
+ Element.prototype.mozMatchesSelector ||
68
+ Element.prototype.msMatchesSelector ||
69
+ Element.prototype.oMatchesSelector ||
70
+ Element.prototype.webkitMatchesSelector ||
71
+ function (s) {
72
+ const matches = (this.document || this.ownerDocument).querySelectorAll(s),
73
+ i = matches.length;
74
+ while (--i >= 0 && matches.item(i) !== this) { }
75
+ return i > -1;
76
+ };
77
+ }
78
+
79
+ // Get the closest matching element
80
+ for (; elem && elem !== document; elem = elem.parentNode) {
81
+ if (elem.matches(selector)) return elem;
82
+ }
83
+ return null;
84
+ };
85
+
86
+ // For Version 1 the order of Hash appendages is Tab -> Accordion -> Subaccordion
87
+ var appendHash = function (str) {
88
+ window.location.hash = (() => {
89
+ const lowercasedStr = str.toLowerCase();
90
+ return lowercasedStr.split(' ').join('-');
91
+ })();
92
+ };
93
+
94
+ var getDeviceType = function () {
95
+ const ua = navigator.userAgent;
96
+ const isiOS = () => {
97
+ return /iPad|iPhone/.test(ua) || navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1;
98
+ };
99
+ const isAndroid = () => { return /android/i.test(ua); };
100
+
101
+ if (isAndroid()) {
102
+ return 'android';
103
+ }
104
+ else if (isiOS()) {
105
+ if (/iPad/.test(ua)) { return 'ipad'; }
106
+ else if (/iPhone/.test(ua)) { return 'iphone'; }
107
+ else { return 'ios'; }
108
+ }
109
+ return;
110
+ };
111
+
112
+ var getURLHashList = function () {
113
+ return window.location.hash !== '' ? window.location.hash.substring(1).split('#') : undefined;
114
+ };
115
+
13
116
  document.addEventListener('click', function (event) {
14
117
  var
15
118
  targetElem = event.target,
@@ -33,15 +136,18 @@
33
136
  activeTabBtn.classList.add('active');
34
137
  targetTab.classList.add('in');
35
138
 
36
- activeBtnTabSiblings.forEach(function (element, index) {
139
+ appendHash(targetElem.textContent);
140
+
141
+ activeBtnTabSiblings.forEach(function (element) {
37
142
  if (element.classList.value.indexOf('active') !== -1) element.classList.remove('active');
38
143
  });
39
- targetTabSiblings.forEach(function (element, index) {
144
+ targetTabSiblings.forEach(function (element) {
40
145
  if (element.classList.value.indexOf('in') !== -1) element.classList.remove('in');
41
146
  });
42
147
  }
43
148
 
44
149
  if (className.value.indexOf('sf-accordion-toggle') !== -1) {
150
+ appendHash(targetElem.querySelector('.sf-accordion-text').textContent);
45
151
  className.value.indexOf('in') == -1 ?
46
152
  className.add('in') : className.remove('in');
47
153
  }
@@ -49,4 +155,50 @@
49
155
  return false;
50
156
  }, false);
51
157
 
158
+ const openParent = (childElement) => {
159
+ const closestTab = getClosestParent(childElement, '.sf-tab-content');
160
+ const closestAccordion = getClosestParent(childElement, '.sf-accordion-content');
161
+
162
+ if (closestTab !== null) {
163
+ document.getElementById(`target_${closestTab.id}`).click();
164
+ }
165
+ if (closestAccordion !== null) {
166
+ document.getElementById(`target_${closestAccordion.id}`).click();
167
+ }
168
+ };
169
+
170
+ // Set default tab via URL hash or device type if present on tabs
171
+ ready('.sf-tabs', function () {
172
+ const urlHashList = getURLHashList();
173
+ document.querySelectorAll('.sf-tabs').forEach(tab => {
174
+ const deviceType = getDeviceType();
175
+ tab.querySelectorAll('.sf-tab-item-link').forEach(tabitem => {
176
+ console.log(tabitem);
177
+ const tabItemText = tabitem.textContent.toLowerCase().replace(/\s/g, '');
178
+ console.log(tabItemText, deviceType, typeof (urlHashList));
179
+
180
+ if (tabItemText === deviceType && typeof (urlHashList) === 'undefined') {
181
+ tabitem.click();
182
+ }
183
+ else if (typeof (urlHashList) !== 'undefined' && urlHashList.includes(tabItemText)) {
184
+ openParent(tabitem);
185
+ tabitem.click();
186
+ }
187
+ });
188
+ });
189
+ });
190
+
191
+ ready('.sf-accordion', function () {
192
+ const urlHashList = getURLHashList();
193
+ document.querySelectorAll('.sf-accordion-toggle').forEach(accordionToggle => {
194
+ const accordionText = accordionToggle
195
+ .querySelector('.sf-accordion-text')
196
+ .textContent.split(' ').join('-').toLowerCase();
197
+
198
+ if (typeof (urlHashList) !== 'undefined' && urlHashList.includes(accordionText)) {
199
+ openParent(accordionToggle);
200
+ accordionToggle.click();
201
+ }
202
+ });
203
+ });
52
204
  })();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leapdev/gui",
3
- "version": "0.2.234",
3
+ "version": "0.2.240",
4
4
  "description": "LEAP GUI",
5
5
  "author": "LEAP Dev",
6
6
  "license": "ISC",
@@ -48,5 +48,6 @@
48
48
  "webpack": "^4.44.1",
49
49
  "webpack-cli": "^3.3.12",
50
50
  "webpack-dev-server": "^3.11.0"
51
- }
51
+ },
52
+ "dependencies": {}
52
53
  }