@utahdts/utah-design-system 1.6.0 → 1.7.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.
- package/css/1-settings/_icons.scss +25 -0
- package/css/2-tools/_tools-index.scss +0 -25
- package/css/6-components/base-components/navigation/_side-panel-navigation.scss +17 -1
- package/css/6-components/base-components/navigation/_vertical-menu.scss +10 -2
- package/css/6-components/base-components/tablesAndLists/_table.scss +1 -3
- package/dist/style.css +73 -23
- package/dist/utah-design-system.es.js +9 -9
- package/dist/utah-design-system.umd.js +15 -15
- package/package.json +9 -9
|
@@ -244,4 +244,29 @@
|
|
|
244
244
|
.utds-icon-after-more-horizontal::after {
|
|
245
245
|
content: "\006d";
|
|
246
246
|
}
|
|
247
|
+
|
|
248
|
+
.utds-icon-before-download::before,
|
|
249
|
+
.utds-icon-after-download::after {
|
|
250
|
+
content: "\006e";
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.utds-icon-before-upload::before,
|
|
254
|
+
.utds-icon-after-upload::after {
|
|
255
|
+
content: "\006f";
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.utds-icon-before-favorite::before,
|
|
259
|
+
.utds-icon-after-favorite::after {
|
|
260
|
+
content: "\0070";
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.utds-icon-before-visibility::before,
|
|
264
|
+
.utds-icon-after-visibility::after {
|
|
265
|
+
content: "\0071";
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.utds-icon-before-visibility-off::before,
|
|
269
|
+
.utds-icon-after-visibility-off::after {
|
|
270
|
+
content: "\0072";
|
|
271
|
+
}
|
|
247
272
|
}
|
|
@@ -36,8 +36,6 @@ scss mixins and functions
|
|
|
36
36
|
outline: 2px solid var(--form-ele-color);
|
|
37
37
|
outline-offset: 2px;
|
|
38
38
|
transition: none;
|
|
39
|
-
// outline: none;
|
|
40
|
-
// box-shadow: #ffffffaa 0 0 0 2px, var(--form-ele-color-60) 0 0 0 4px;
|
|
41
39
|
}
|
|
42
40
|
|
|
43
41
|
@mixin form-ele-focus {
|
|
@@ -45,26 +43,3 @@ scss mixins and functions
|
|
|
45
43
|
@include form-ele-focus-appearance;
|
|
46
44
|
}
|
|
47
45
|
}
|
|
48
|
-
|
|
49
|
-
@mixin selected-vertical-menu-item {
|
|
50
|
-
&.menu-item--selected_parent {
|
|
51
|
-
font-weight: bold;
|
|
52
|
-
}
|
|
53
|
-
&.menu-item--selected {
|
|
54
|
-
font-weight: bold;
|
|
55
|
-
border-top-left-radius: 0;
|
|
56
|
-
border-bottom-left-radius: 0;
|
|
57
|
-
box-shadow: inset 0 0 0 1000px var(--hover-gray-color);
|
|
58
|
-
//a chiclet
|
|
59
|
-
&::after {
|
|
60
|
-
content: '';
|
|
61
|
-
position: absolute;
|
|
62
|
-
left: -3px;
|
|
63
|
-
top: 0;
|
|
64
|
-
width: 5px;
|
|
65
|
-
height: 100%;
|
|
66
|
-
background: var(--primary-color);
|
|
67
|
-
border-radius: var(--radius-circle);
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
}
|
|
@@ -38,7 +38,23 @@
|
|
|
38
38
|
box-shadow: inset 0 0 0 1000px var(--hover-gray-color);
|
|
39
39
|
color: var(--primary-color);
|
|
40
40
|
}
|
|
41
|
-
|
|
41
|
+
&.menu-item--selected {
|
|
42
|
+
font-weight: bold;
|
|
43
|
+
border-top-left-radius: 0;
|
|
44
|
+
border-bottom-left-radius: 0;
|
|
45
|
+
box-shadow: inset 0 0 0 1000px var(--hover-gray-color);
|
|
46
|
+
//a chiclet
|
|
47
|
+
&::after {
|
|
48
|
+
content: '';
|
|
49
|
+
position: absolute;
|
|
50
|
+
left: -3px;
|
|
51
|
+
top: 0;
|
|
52
|
+
width: 5px;
|
|
53
|
+
height: 100%;
|
|
54
|
+
background: var(--primary-color);
|
|
55
|
+
border-radius: var(--radius-circle);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
42
58
|
}
|
|
43
59
|
}
|
|
44
60
|
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
}
|
|
10
10
|
.vertical-menu {
|
|
11
11
|
li > ul {
|
|
12
|
-
|
|
12
|
+
margin-left: var(--spacing-s);
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
button.vertical-menu__button-title,
|
|
@@ -39,7 +39,15 @@
|
|
|
39
39
|
&:active {
|
|
40
40
|
transform: none;
|
|
41
41
|
}
|
|
42
|
-
|
|
42
|
+
&.menu-item--selected_parent {
|
|
43
|
+
font-weight: bold;
|
|
44
|
+
}
|
|
45
|
+
&.menu-item--selected {
|
|
46
|
+
font-weight: bold;
|
|
47
|
+
box-shadow: inset 0 0 0 1000px var(--hover-gray-color);
|
|
48
|
+
color: var(--primary-color);
|
|
49
|
+
}
|
|
50
|
+
|
|
43
51
|
}
|
|
44
52
|
a.vertical-menu__link-title {
|
|
45
53
|
&:hover {
|
|
@@ -190,6 +190,7 @@
|
|
|
190
190
|
&--filters {
|
|
191
191
|
th {
|
|
192
192
|
background-color: var(--gray-light-color);
|
|
193
|
+
padding: var(--spacing-s) var(--spacing-2xs);
|
|
193
194
|
}
|
|
194
195
|
th:first-child {
|
|
195
196
|
border-top-left-radius: var(--radius-medium);
|
|
@@ -201,9 +202,6 @@
|
|
|
201
202
|
border-bottom-right-radius: var(--radius-medium);
|
|
202
203
|
padding: var(--spacing-s) var(--spacing-s) var(--spacing-s) var(--spacing-2xs);
|
|
203
204
|
}
|
|
204
|
-
th {
|
|
205
|
-
padding: var(--spacing-s) var(--spacing-2xs);
|
|
206
|
-
}
|
|
207
205
|
.input-wrapper {
|
|
208
206
|
margin: 0;
|
|
209
207
|
label {
|
package/dist/style.css
CHANGED
|
@@ -588,6 +588,26 @@ variables and settings
|
|
|
588
588
|
.utah-design-system .utds-icon-after-more-horizontal::after {
|
|
589
589
|
content: "m";
|
|
590
590
|
}
|
|
591
|
+
.utah-design-system .utds-icon-before-download::before,
|
|
592
|
+
.utah-design-system .utds-icon-after-download::after {
|
|
593
|
+
content: "n";
|
|
594
|
+
}
|
|
595
|
+
.utah-design-system .utds-icon-before-upload::before,
|
|
596
|
+
.utah-design-system .utds-icon-after-upload::after {
|
|
597
|
+
content: "o";
|
|
598
|
+
}
|
|
599
|
+
.utah-design-system .utds-icon-before-favorite::before,
|
|
600
|
+
.utah-design-system .utds-icon-after-favorite::after {
|
|
601
|
+
content: "p";
|
|
602
|
+
}
|
|
603
|
+
.utah-design-system .utds-icon-before-visibility::before,
|
|
604
|
+
.utah-design-system .utds-icon-after-visibility::after {
|
|
605
|
+
content: "q";
|
|
606
|
+
}
|
|
607
|
+
.utah-design-system .utds-icon-before-visibility-off::before,
|
|
608
|
+
.utah-design-system .utds-icon-after-visibility-off::after {
|
|
609
|
+
content: "r";
|
|
610
|
+
}
|
|
591
611
|
|
|
592
612
|
/*
|
|
593
613
|
############ _media-size-vars.scss ############
|
|
@@ -1425,6 +1445,31 @@ variables and settings
|
|
|
1425
1445
|
content: "m";
|
|
1426
1446
|
}
|
|
1427
1447
|
|
|
1448
|
+
.utah-design-system .utds-icon-before-download::before,
|
|
1449
|
+
.utah-design-system .utds-icon-after-download::after {
|
|
1450
|
+
content: "n";
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
.utah-design-system .utds-icon-before-upload::before,
|
|
1454
|
+
.utah-design-system .utds-icon-after-upload::after {
|
|
1455
|
+
content: "o";
|
|
1456
|
+
}
|
|
1457
|
+
|
|
1458
|
+
.utah-design-system .utds-icon-before-favorite::before,
|
|
1459
|
+
.utah-design-system .utds-icon-after-favorite::after {
|
|
1460
|
+
content: "p";
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1463
|
+
.utah-design-system .utds-icon-before-visibility::before,
|
|
1464
|
+
.utah-design-system .utds-icon-after-visibility::after {
|
|
1465
|
+
content: "q";
|
|
1466
|
+
}
|
|
1467
|
+
|
|
1468
|
+
.utah-design-system .utds-icon-before-visibility-off::before,
|
|
1469
|
+
.utah-design-system .utds-icon-after-visibility-off::after {
|
|
1470
|
+
content: "r";
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1428
1473
|
/*
|
|
1429
1474
|
############ _media-size-vars.scss ############
|
|
1430
1475
|
Media Sizes - SCSS Variables
|
|
@@ -3405,10 +3450,6 @@ base color swatches for the design system
|
|
|
3405
3450
|
color: var(--primary-color);
|
|
3406
3451
|
}
|
|
3407
3452
|
|
|
3408
|
-
.utah-design-system .menu-side-panel .menu-item__title a.menu-item--selected_parent {
|
|
3409
|
-
font-weight: bold;
|
|
3410
|
-
}
|
|
3411
|
-
|
|
3412
3453
|
.utah-design-system .menu-side-panel .menu-item__title a.menu-item--selected {
|
|
3413
3454
|
font-weight: bold;
|
|
3414
3455
|
border-top-left-radius: 0;
|
|
@@ -3492,7 +3533,7 @@ base color swatches for the design system
|
|
|
3492
3533
|
}
|
|
3493
3534
|
|
|
3494
3535
|
.utah-design-system .vertical-menu li > ul {
|
|
3495
|
-
|
|
3536
|
+
margin-left: var(--spacing-s);
|
|
3496
3537
|
}
|
|
3497
3538
|
|
|
3498
3539
|
.utah-design-system .vertical-menu button.vertical-menu__button-title,
|
|
@@ -3535,21 +3576,8 @@ base color swatches for the design system
|
|
|
3535
3576
|
.utah-design-system .vertical-menu button.vertical-menu__button-title.menu-item--selected,
|
|
3536
3577
|
.utah-design-system .vertical-menu a[href].vertical-menu__link-title.menu-item--selected {
|
|
3537
3578
|
font-weight: bold;
|
|
3538
|
-
border-top-left-radius: 0;
|
|
3539
|
-
border-bottom-left-radius: 0;
|
|
3540
3579
|
box-shadow: inset 0 0 0 1000px var(--hover-gray-color);
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
.utah-design-system .vertical-menu button.vertical-menu__button-title.menu-item--selected::after,
|
|
3544
|
-
.utah-design-system .vertical-menu a[href].vertical-menu__link-title.menu-item--selected::after {
|
|
3545
|
-
content: "";
|
|
3546
|
-
position: absolute;
|
|
3547
|
-
left: -3px;
|
|
3548
|
-
top: 0;
|
|
3549
|
-
width: 5px;
|
|
3550
|
-
height: 100%;
|
|
3551
|
-
background: var(--primary-color);
|
|
3552
|
-
border-radius: var(--radius-circle);
|
|
3580
|
+
color: var(--primary-color);
|
|
3553
3581
|
}
|
|
3554
3582
|
|
|
3555
3583
|
.utah-design-system .vertical-menu a.vertical-menu__link-title:hover {
|
|
@@ -4293,6 +4321,31 @@ variables and settings
|
|
|
4293
4321
|
content: "m";
|
|
4294
4322
|
}
|
|
4295
4323
|
|
|
4324
|
+
.utah-design-system .utds-icon-before-download::before,
|
|
4325
|
+
.utah-design-system .utds-icon-after-download::after {
|
|
4326
|
+
content: "n";
|
|
4327
|
+
}
|
|
4328
|
+
|
|
4329
|
+
.utah-design-system .utds-icon-before-upload::before,
|
|
4330
|
+
.utah-design-system .utds-icon-after-upload::after {
|
|
4331
|
+
content: "o";
|
|
4332
|
+
}
|
|
4333
|
+
|
|
4334
|
+
.utah-design-system .utds-icon-before-favorite::before,
|
|
4335
|
+
.utah-design-system .utds-icon-after-favorite::after {
|
|
4336
|
+
content: "p";
|
|
4337
|
+
}
|
|
4338
|
+
|
|
4339
|
+
.utah-design-system .utds-icon-before-visibility::before,
|
|
4340
|
+
.utah-design-system .utds-icon-after-visibility::after {
|
|
4341
|
+
content: "q";
|
|
4342
|
+
}
|
|
4343
|
+
|
|
4344
|
+
.utah-design-system .utds-icon-before-visibility-off::before,
|
|
4345
|
+
.utah-design-system .utds-icon-after-visibility-off::after {
|
|
4346
|
+
content: "r";
|
|
4347
|
+
}
|
|
4348
|
+
|
|
4296
4349
|
/*
|
|
4297
4350
|
############ _media-size-vars.scss ############
|
|
4298
4351
|
Media Sizes - SCSS Variables
|
|
@@ -5186,6 +5239,7 @@ BEM standard: Block, Element, Modifier
|
|
|
5186
5239
|
|
|
5187
5240
|
.utah-design-system table .table-header__row--filters th {
|
|
5188
5241
|
background-color: var(--gray-light-color);
|
|
5242
|
+
padding: var(--spacing-s) var(--spacing-2xs);
|
|
5189
5243
|
}
|
|
5190
5244
|
|
|
5191
5245
|
.utah-design-system table .table-header__row--filters th:first-child {
|
|
@@ -5200,10 +5254,6 @@ BEM standard: Block, Element, Modifier
|
|
|
5200
5254
|
padding: var(--spacing-s) var(--spacing-s) var(--spacing-s) var(--spacing-2xs);
|
|
5201
5255
|
}
|
|
5202
5256
|
|
|
5203
|
-
.utah-design-system table .table-header__row--filters th {
|
|
5204
|
-
padding: var(--spacing-s) var(--spacing-2xs);
|
|
5205
|
-
}
|
|
5206
|
-
|
|
5207
5257
|
.utah-design-system table .table-header__row--filters .input-wrapper {
|
|
5208
5258
|
margin: 0;
|
|
5209
5259
|
}
|
|
@@ -32,7 +32,7 @@ const index = "";
|
|
|
32
32
|
const name = "@utahdts/utah-design-system";
|
|
33
33
|
const description = "Utah Design System React Library";
|
|
34
34
|
const displayName = "Utah Design System React Library";
|
|
35
|
-
const version$1 = "1.
|
|
35
|
+
const version$1 = "1.7.0";
|
|
36
36
|
const exports = {
|
|
37
37
|
".": {
|
|
38
38
|
"development-local": "./index.js",
|
|
@@ -89,7 +89,7 @@ const bugs = {
|
|
|
89
89
|
};
|
|
90
90
|
const homepage = "https://github.com/utahdts/utah-design-system";
|
|
91
91
|
const dependencies = {
|
|
92
|
-
"@utahdts/utah-design-system-header": "1.
|
|
92
|
+
"@utahdts/utah-design-system-header": "1.7.0",
|
|
93
93
|
lodash: "4.17.21",
|
|
94
94
|
"prop-types": "15.8.1",
|
|
95
95
|
react: "18.x",
|
|
@@ -99,14 +99,14 @@ const dependencies = {
|
|
|
99
99
|
uuid: "9.0.1"
|
|
100
100
|
};
|
|
101
101
|
const devDependencies = {
|
|
102
|
-
"@types/react": "18.2.
|
|
103
|
-
"@types/react-dom": "18.2.
|
|
104
|
-
"@vitejs/plugin-react": "4.0
|
|
105
|
-
"@vitest/coverage-istanbul": "0.34.
|
|
102
|
+
"@types/react": "18.2.24",
|
|
103
|
+
"@types/react-dom": "18.2.8",
|
|
104
|
+
"@vitejs/plugin-react": "4.1.0",
|
|
105
|
+
"@vitest/coverage-istanbul": "0.34.6",
|
|
106
106
|
jsdom: "22.1.0",
|
|
107
|
-
sass: "1.
|
|
108
|
-
vite: "4.4.
|
|
109
|
-
vitest: "0.34.
|
|
107
|
+
sass: "1.68.0",
|
|
108
|
+
vite: "4.4.10",
|
|
109
|
+
vitest: "0.34.6"
|
|
110
110
|
};
|
|
111
111
|
const type = "module";
|
|
112
112
|
const packageJson = {
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
(function(global2, factory) {
|
|
2
|
+
typeof exports === "object" && typeof module !== "undefined" ? factory(exports, require("@utahdts/utah-design-system-header"), require("react"), require("react-router-dom")) : typeof define === "function" && define.amd ? define(["exports", "@utahdts/utah-design-system-header", "react", "react-router-dom"], factory) : (global2 = typeof globalThis !== "undefined" ? globalThis : global2 || self, factory(global2["@utahdts/utah-design-system"] = {}, global2.utahDesignSystemHeader, global2.React, global2.ReactRouterDom));
|
|
3
|
+
})(this, function(exports2, utahDesignSystemHeader, React, reactRouterDom) {
|
|
4
|
+
var _popupTimeoutId, _noPopupTimeoutId, _isImmediatePopup;
|
|
5
|
+
"use strict";var __defProp = Object.defineProperty;
|
|
2
6
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3
7
|
var __publicField = (obj, key, value) => {
|
|
4
8
|
__defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
@@ -22,11 +26,7 @@ var __privateSet = (obj, member, value, setter) => {
|
|
|
22
26
|
setter ? setter.call(obj, value) : member.set(obj, value);
|
|
23
27
|
return value;
|
|
24
28
|
};
|
|
25
|
-
|
|
26
|
-
typeof exports === "object" && typeof module !== "undefined" ? factory(exports, require("@utahdts/utah-design-system-header"), require("react"), require("react-router-dom")) : typeof define === "function" && define.amd ? define(["exports", "@utahdts/utah-design-system-header", "react", "react-router-dom"], factory) : (global2 = typeof globalThis !== "undefined" ? globalThis : global2 || self, factory(global2["@utahdts/utah-design-system"] = {}, global2.utahDesignSystemHeader, global2.React, global2.ReactRouterDom));
|
|
27
|
-
})(this, function(exports2, utahDesignSystemHeader, React, reactRouterDom) {
|
|
28
|
-
var _popupTimeoutId, _noPopupTimeoutId, _isImmediatePopup;
|
|
29
|
-
"use strict";
|
|
29
|
+
|
|
30
30
|
function _interopNamespaceDefault(e) {
|
|
31
31
|
const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
|
|
32
32
|
if (e) {
|
|
@@ -48,7 +48,7 @@ var __privateSet = (obj, member, value, setter) => {
|
|
|
48
48
|
const name = "@utahdts/utah-design-system";
|
|
49
49
|
const description = "Utah Design System React Library";
|
|
50
50
|
const displayName = "Utah Design System React Library";
|
|
51
|
-
const version$1 = "1.
|
|
51
|
+
const version$1 = "1.7.0";
|
|
52
52
|
const exports$1 = {
|
|
53
53
|
".": {
|
|
54
54
|
"development-local": "./index.js",
|
|
@@ -105,7 +105,7 @@ var __privateSet = (obj, member, value, setter) => {
|
|
|
105
105
|
};
|
|
106
106
|
const homepage = "https://github.com/utahdts/utah-design-system";
|
|
107
107
|
const dependencies = {
|
|
108
|
-
"@utahdts/utah-design-system-header": "1.
|
|
108
|
+
"@utahdts/utah-design-system-header": "1.7.0",
|
|
109
109
|
lodash: "4.17.21",
|
|
110
110
|
"prop-types": "15.8.1",
|
|
111
111
|
react: "18.x",
|
|
@@ -115,14 +115,14 @@ var __privateSet = (obj, member, value, setter) => {
|
|
|
115
115
|
uuid: "9.0.1"
|
|
116
116
|
};
|
|
117
117
|
const devDependencies = {
|
|
118
|
-
"@types/react": "18.2.
|
|
119
|
-
"@types/react-dom": "18.2.
|
|
120
|
-
"@vitejs/plugin-react": "4.0
|
|
121
|
-
"@vitest/coverage-istanbul": "0.34.
|
|
118
|
+
"@types/react": "18.2.24",
|
|
119
|
+
"@types/react-dom": "18.2.8",
|
|
120
|
+
"@vitejs/plugin-react": "4.1.0",
|
|
121
|
+
"@vitest/coverage-istanbul": "0.34.6",
|
|
122
122
|
jsdom: "22.1.0",
|
|
123
|
-
sass: "1.
|
|
124
|
-
vite: "4.4.
|
|
125
|
-
vitest: "0.34.
|
|
123
|
+
sass: "1.68.0",
|
|
124
|
+
vite: "4.4.10",
|
|
125
|
+
vitest: "0.34.6"
|
|
126
126
|
};
|
|
127
127
|
const type = "module";
|
|
128
128
|
const packageJson = {
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@utahdts/utah-design-system",
|
|
3
3
|
"description": "Utah Design System React Library",
|
|
4
4
|
"displayName": "Utah Design System React Library",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.7.0",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
8
8
|
"development-local": "./index.js",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
},
|
|
60
60
|
"homepage": "https://github.com/utahdts/utah-design-system",
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@utahdts/utah-design-system-header": "1.
|
|
62
|
+
"@utahdts/utah-design-system-header": "1.7.0",
|
|
63
63
|
"lodash": "4.17.21",
|
|
64
64
|
"prop-types": "15.8.1",
|
|
65
65
|
"react": "18.x",
|
|
@@ -69,14 +69,14 @@
|
|
|
69
69
|
"uuid": "9.0.1"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
|
-
"@types/react": "18.2.
|
|
73
|
-
"@types/react-dom": "18.2.
|
|
74
|
-
"@vitejs/plugin-react": "4.0
|
|
75
|
-
"@vitest/coverage-istanbul": "0.34.
|
|
72
|
+
"@types/react": "18.2.24",
|
|
73
|
+
"@types/react-dom": "18.2.8",
|
|
74
|
+
"@vitejs/plugin-react": "4.1.0",
|
|
75
|
+
"@vitest/coverage-istanbul": "0.34.6",
|
|
76
76
|
"jsdom": "22.1.0",
|
|
77
|
-
"sass": "1.
|
|
78
|
-
"vite": "4.4.
|
|
79
|
-
"vitest": "0.34.
|
|
77
|
+
"sass": "1.68.0",
|
|
78
|
+
"vite": "4.4.10",
|
|
79
|
+
"vitest": "0.34.6"
|
|
80
80
|
},
|
|
81
81
|
"type": "module"
|
|
82
82
|
}
|