Commit 8b2e0f665f15edd211f558bc0526465e07e7bab0

Authored by Vben
1 parent 6a882059

fix: fix the default value of props

package.json
@@ -37,7 +37,7 @@ @@ -37,7 +37,7 @@
37 "@logicflow/extension": "^0.3.4", 37 "@logicflow/extension": "^0.3.4",
38 "@vueuse/core": "^4.9.0", 38 "@vueuse/core": "^4.9.0",
39 "@zxcvbn-ts/core": "^0.3.0", 39 "@zxcvbn-ts/core": "^0.3.0",
40 - "ant-design-vue": "^2.1.2", 40 + "ant-design-vue": "^2.1.3",
41 "axios": "^0.21.1", 41 "axios": "^0.21.1",
42 "codemirror": "^5.61.0", 42 "codemirror": "^5.61.0",
43 "cropperjs": "^1.5.11", 43 "cropperjs": "^1.5.11",
@@ -78,7 +78,7 @@ @@ -78,7 +78,7 @@
78 "@typescript-eslint/eslint-plugin": "^4.22.0", 78 "@typescript-eslint/eslint-plugin": "^4.22.0",
79 "@typescript-eslint/parser": "^4.22.0", 79 "@typescript-eslint/parser": "^4.22.0",
80 "@vitejs/plugin-legacy": "^1.3.2", 80 "@vitejs/plugin-legacy": "^1.3.2",
81 - "@vitejs/plugin-vue": "^1.2.1", 81 + "@vitejs/plugin-vue": "^1.2.2",
82 "@vitejs/plugin-vue-jsx": "^1.1.3", 82 "@vitejs/plugin-vue-jsx": "^1.1.3",
83 "@vue/compiler-sfc": "3.0.11", 83 "@vue/compiler-sfc": "3.0.11",
84 "autoprefixer": "^10.2.5", 84 "autoprefixer": "^10.2.5",
@@ -87,7 +87,7 @@ @@ -87,7 +87,7 @@
87 "cross-env": "^7.0.3", 87 "cross-env": "^7.0.3",
88 "dotenv": "^8.2.0", 88 "dotenv": "^8.2.0",
89 "eslint": "^7.25.0", 89 "eslint": "^7.25.0",
90 - "eslint-config-prettier": "^8.2.0", 90 + "eslint-config-prettier": "^8.3.0",
91 "eslint-define-config": "^1.0.8", 91 "eslint-define-config": "^1.0.8",
92 "eslint-plugin-prettier": "^3.4.0", 92 "eslint-plugin-prettier": "^3.4.0",
93 "eslint-plugin-vue": "^7.9.0", 93 "eslint-plugin-vue": "^7.9.0",
@@ -104,9 +104,9 @@ @@ -104,9 +104,9 @@
104 "pretty-quick": "^3.1.0", 104 "pretty-quick": "^3.1.0",
105 "rimraf": "^3.0.2", 105 "rimraf": "^3.0.2",
106 "rollup-plugin-visualizer": "5.3.4", 106 "rollup-plugin-visualizer": "5.3.4",
107 - "stylelint": "^13.12.0", 107 + "stylelint": "^13.13.0",
108 "stylelint-config-prettier": "^8.0.2", 108 "stylelint-config-prettier": "^8.0.2",
109 - "stylelint-config-standard": "^21.0.0", 109 + "stylelint-config-standard": "^22.0.0",
110 "stylelint-order": "^4.1.0", 110 "stylelint-order": "^4.1.0",
111 "ts-node": "^9.1.1", 111 "ts-node": "^9.1.1",
112 "typescript": "4.2.4", 112 "typescript": "4.2.4",
src/components/Cropper/src/index.vue
@@ -62,11 +62,11 @@ @@ -62,11 +62,11 @@
62 }, 62 },
63 imageStyle: { 63 imageStyle: {
64 type: Object as PropType<CSSProperties>, 64 type: Object as PropType<CSSProperties>,
65 - default: () => {}, 65 + default: () => ({}),
66 }, 66 },
67 options: { 67 options: {
68 type: Object as PropType<Options>, 68 type: Object as PropType<Options>,
69 - default: () => {}, 69 + default: () => ({}),
70 }, 70 },
71 }, 71 },
72 emits: ['cropperedInfo'], 72 emits: ['cropperedInfo'],
src/components/FlowChart/src/index.vue
@@ -32,12 +32,12 @@ @@ -32,12 +32,12 @@
32 props: { 32 props: {
33 flowOptions: { 33 flowOptions: {
34 type: Object as PropType<Definition>, 34 type: Object as PropType<Definition>,
35 - default: () => {}, 35 + default: () => ({}),
36 }, 36 },
37 37
38 data: { 38 data: {
39 type: Object as PropType<any>, 39 type: Object as PropType<any>,
40 - default: () => {}, 40 + default: () => ({}),
41 }, 41 },
42 42
43 toolbar: { 43 toolbar: {
src/components/Form/src/components/ApiSelect.vue
@@ -55,7 +55,7 @@ @@ -55,7 +55,7 @@
55 // api params 55 // api params
56 params: { 56 params: {
57 type: Object as PropType<Recordable>, 57 type: Object as PropType<Recordable>,
58 - default: () => {}, 58 + default: () => ({}),
59 }, 59 },
60 // support xxx.xxx.xx 60 // support xxx.xxx.xx
61 resultField: propTypes.string.def(''), 61 resultField: propTypes.string.def(''),
src/components/Form/src/components/FormAction.vue
@@ -67,15 +67,15 @@ @@ -67,15 +67,15 @@
67 showAdvancedButton: propTypes.bool.def(true), 67 showAdvancedButton: propTypes.bool.def(true),
68 resetButtonOptions: { 68 resetButtonOptions: {
69 type: Object as PropType<ButtonOptions>, 69 type: Object as PropType<ButtonOptions>,
70 - default: () => {}, 70 + default: () => ({}),
71 }, 71 },
72 submitButtonOptions: { 72 submitButtonOptions: {
73 type: Object as PropType<ButtonOptions>, 73 type: Object as PropType<ButtonOptions>,
74 - default: () => {}, 74 + default: () => ({}),
75 }, 75 },
76 actionColOptions: { 76 actionColOptions: {
77 type: Object as PropType<Partial<ColEx>>, 77 type: Object as PropType<Partial<ColEx>>,
78 - default: () => {}, 78 + default: () => ({}),
79 }, 79 },
80 actionSpan: propTypes.number.def(6), 80 actionSpan: propTypes.number.def(6),
81 isAdvanced: propTypes.bool, 81 isAdvanced: propTypes.bool,
src/components/Form/src/components/FormItem.vue
@@ -24,19 +24,19 @@ @@ -24,19 +24,19 @@
24 props: { 24 props: {
25 schema: { 25 schema: {
26 type: Object as PropType<FormSchema>, 26 type: Object as PropType<FormSchema>,
27 - default: () => {}, 27 + default: () => ({}),
28 }, 28 },
29 formProps: { 29 formProps: {
30 type: Object as PropType<FormProps>, 30 type: Object as PropType<FormProps>,
31 - default: () => {}, 31 + default: () => ({}),
32 }, 32 },
33 allDefaultValues: { 33 allDefaultValues: {
34 type: Object as PropType<Recordable>, 34 type: Object as PropType<Recordable>,
35 - default: () => {}, 35 + default: () => ({}),
36 }, 36 },
37 formModel: { 37 formModel: {
38 type: Object as PropType<Recordable>, 38 type: Object as PropType<Recordable>,
39 - default: () => {}, 39 + default: () => ({}),
40 }, 40 },
41 setFormModel: { 41 setFormModel: {
42 type: Function as PropType<(key: string, value: any) => void>, 42 type: Function as PropType<(key: string, value: any) => void>,
src/components/SimpleMenu/src/SimpleMenuTag.vue
@@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
14 props: { 14 props: {
15 item: { 15 item: {
16 type: Object as PropType<Menu>, 16 type: Object as PropType<Menu>,
17 - default: () => {}, 17 + default: () => ({}),
18 }, 18 },
19 dot: propTypes.bool, 19 dot: propTypes.bool,
20 collapseParent: propTypes.bool, 20 collapseParent: propTypes.bool,
src/components/SimpleMenu/src/SimpleSubMenu.vue
@@ -64,7 +64,7 @@ @@ -64,7 +64,7 @@
64 props: { 64 props: {
65 item: { 65 item: {
66 type: Object as PropType<Menu>, 66 type: Object as PropType<Menu>,
67 - default: () => {}, 67 + default: () => ({}),
68 }, 68 },
69 parent: propTypes.bool, 69 parent: propTypes.bool,
70 collapsedShowTitle: propTypes.bool, 70 collapsedShowTitle: propTypes.bool,
src/components/Table/src/components/HeaderCell.vue
@@ -23,7 +23,7 @@ @@ -23,7 +23,7 @@
23 props: { 23 props: {
24 column: { 24 column: {
25 type: Object as PropType<BasicColumn>, 25 type: Object as PropType<BasicColumn>,
26 - default: () => {}, 26 + default: () => ({}),
27 }, 27 },
28 }, 28 },
29 setup(props) { 29 setup(props) {
src/components/Table/src/components/editable/EditableCell.vue
@@ -60,7 +60,7 @@ @@ -60,7 +60,7 @@
60 }, 60 },
61 column: { 61 column: {
62 type: Object as PropType<BasicColumn>, 62 type: Object as PropType<BasicColumn>,
63 - default: () => {}, 63 + default: () => ({}),
64 }, 64 },
65 index: propTypes.number, 65 index: propTypes.number,
66 }, 66 },
src/components/Table/src/components/settings/index.vue
@@ -30,7 +30,7 @@ @@ -30,7 +30,7 @@
30 props: { 30 props: {
31 setting: { 31 setting: {
32 type: Object as PropType<TableSetting>, 32 type: Object as PropType<TableSetting>,
33 - default: () => {}, 33 + default: () => ({}),
34 }, 34 },
35 }, 35 },
36 setup(props) { 36 setup(props) {
src/layouts/default/header/components/user-dropdown/index.vue
@@ -156,7 +156,7 @@ @@ -156,7 +156,7 @@
156 &:hover { 156 &:hover {
157 background-color: @header-light-bg-hover-color; 157 background-color: @header-light-bg-hover-color;
158 } 158 }
159 - 159 +
160 .@{prefix-cls}__name { 160 .@{prefix-cls}__name {
161 color: @text-color-base; 161 color: @text-color-base;
162 } 162 }
src/layouts/default/setting/components/InputNumberItem.vue
@@ -23,7 +23,6 @@ @@ -23,7 +23,6 @@
23 props: { 23 props: {
24 event: { 24 event: {
25 type: Number as PropType<HandlerEnum>, 25 type: Number as PropType<HandlerEnum>,
26 - default: () => {},  
27 }, 26 },
28 title: { 27 title: {
29 type: String, 28 type: String,
src/layouts/default/setting/components/SelectItem.vue
@@ -25,7 +25,6 @@ @@ -25,7 +25,6 @@
25 props: { 25 props: {
26 event: { 26 event: {
27 type: Number as PropType<HandlerEnum>, 27 type: Number as PropType<HandlerEnum>,
28 - default: () => {},  
29 }, 28 },
30 disabled: { 29 disabled: {
31 type: Boolean, 30 type: Boolean,
src/layouts/default/setting/components/SwitchItem.vue
@@ -25,7 +25,6 @@ @@ -25,7 +25,6 @@
25 props: { 25 props: {
26 event: { 26 event: {
27 type: Number as PropType<HandlerEnum>, 27 type: Number as PropType<HandlerEnum>,
28 - default: () => {},  
29 }, 28 },
30 disabled: { 29 disabled: {
31 type: Boolean, 30 type: Boolean,
src/layouts/default/setting/components/ThemeColorPicker.vue
@@ -35,7 +35,6 @@ @@ -35,7 +35,6 @@
35 }, 35 },
36 event: { 36 event: {
37 type: Number as PropType<HandlerEnum>, 37 type: Number as PropType<HandlerEnum>,
38 - default: () => {},  
39 }, 38 },
40 def: { 39 def: {
41 type: String, 40 type: String,
src/layouts/default/setting/components/TypePicker.vue
@@ -35,7 +35,7 @@ @@ -35,7 +35,7 @@
35 }, 35 },
36 handler: { 36 handler: {
37 type: Function as PropType<Fn>, 37 type: Function as PropType<Fn>,
38 - default: () => {}, 38 + default: () => ({}),
39 }, 39 },
40 def: { 40 def: {
41 type: String, 41 type: String,
src/views/sys/login/Login.vue
@@ -210,7 +210,7 @@ @@ -210,7 +210,7 @@
210 min-width: 160px; 210 min-width: 160px;
211 } 211 }
212 } 212 }
213 - 213 +
214 .@{countdown-prefix-cls} input { 214 .@{countdown-prefix-cls} input {
215 min-width: unset; 215 min-width: unset;
216 } 216 }
yarn.lock
@@ -1614,10 +1614,10 @@ @@ -1614,10 +1614,10 @@
1614 "@vue/babel-plugin-jsx" "^1.0.3" 1614 "@vue/babel-plugin-jsx" "^1.0.3"
1615 hash-sum "^2.0.0" 1615 hash-sum "^2.0.0"
1616 1616
1617 -"@vitejs/plugin-vue@^1.2.1":  
1618 - version "1.2.1"  
1619 - resolved "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-1.2.1.tgz#6de49436fc346f829a56676066428e3f011522ac"  
1620 - integrity sha512-TG+LbEUNwfFrx1VyN+iq+PsiGd9MT16hUdJY+BnMXj3MrLAF8m3VYUspTDM3aXoh48YDmAkMjG4gWFRg3lbG5A== 1617 +"@vitejs/plugin-vue@^1.2.2":
  1618 + version "1.2.2"
  1619 + resolved "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-1.2.2.tgz#b0038fc11b9099f4cd01fcbf0ee419adda417b52"
  1620 + integrity sha512-5BI2WFfs/Z0pAV4S/IQf1oH3bmFYlL5ATMBHgTt1Lf7hAnfpNd5oUAAs6hZPfk3QhvyUQgtk0rJBlabwNFcBJQ==
1621 1621
1622 "@vue/babel-helper-vue-transform-on@^1.0.2": 1622 "@vue/babel-helper-vue-transform-on@^1.0.2":
1623 version "1.0.2" 1623 version "1.0.2"
@@ -1870,10 +1870,10 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: @@ -1870,10 +1870,10 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0:
1870 dependencies: 1870 dependencies:
1871 color-convert "^2.0.1" 1871 color-convert "^2.0.1"
1872 1872
1873 -ant-design-vue@^2.1.2:  
1874 - version "2.1.2"  
1875 - resolved "https://registry.npmjs.org/ant-design-vue/-/ant-design-vue-2.1.2.tgz#2065d7e63199c0c584919458af57b6a0b597f677"  
1876 - integrity sha512-gDG0wauGVt4LE63behrJaIcq4BB+dgs+dpj9jz17IgKr2MPYSEeKetU/x9Kk8d58cGonz4Ulncg7fBZJ7EljsQ== 1873 +ant-design-vue@^2.1.3:
  1874 + version "2.1.3"
  1875 + resolved "https://registry.npmjs.org/ant-design-vue/-/ant-design-vue-2.1.3.tgz#d535f4f88f7405c1c2dfdf27d0d1b39438b28a21"
  1876 + integrity sha512-pJy8fiMXXkqrFaarTWdi3gkJWfkmR9xomdTj2/YCoU9lIXT7O++JHhamDQkUyHQXCj1OHaLwWp2POeNWS1gaUQ==
1877 dependencies: 1877 dependencies:
1878 "@ant-design-vue/use" "^0.0.1-0" 1878 "@ant-design-vue/use" "^0.0.1-0"
1879 "@ant-design/icons-vue" "^6.0.0" 1879 "@ant-design/icons-vue" "^6.0.0"
@@ -1883,7 +1883,6 @@ ant-design-vue@^2.1.2: @@ -1883,7 +1883,6 @@ ant-design-vue@^2.1.2:
1883 async-validator "^3.3.0" 1883 async-validator "^3.3.0"
1884 dom-align "^1.10.4" 1884 dom-align "^1.10.4"
1885 dom-scroll-into-view "^2.0.0" 1885 dom-scroll-into-view "^2.0.0"
1886 - is-mobile "^2.2.1"  
1887 lodash-es "^4.17.15" 1886 lodash-es "^4.17.15"
1888 moment "^2.27.0" 1887 moment "^2.27.0"
1889 omit.js "^2.0.0" 1888 omit.js "^2.0.0"
@@ -2095,6 +2094,11 @@ balanced-match@^1.0.0: @@ -2095,6 +2094,11 @@ balanced-match@^1.0.0:
2095 resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 2094 resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
2096 integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 2095 integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
2097 2096
  2097 +balanced-match@^2.0.0:
  2098 + version "2.0.0"
  2099 + resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz#dc70f920d78db8b858535795867bf48f820633d9"
  2100 + integrity sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==
  2101 +
2098 base64-js@^1.3.1: 2102 base64-js@^1.3.1:
2099 version "1.5.1" 2103 version "1.5.1"
2100 resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" 2104 resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
@@ -3709,10 +3713,10 @@ escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1 @@ -3709,10 +3713,10 @@ escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1
3709 resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 3713 resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
3710 integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 3714 integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
3711 3715
3712 -eslint-config-prettier@^8.2.0:  
3713 - version "8.2.0"  
3714 - resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.2.0.tgz#78de77d63bca8e9e59dae75a614b5299925bb7b3"  
3715 - integrity sha512-dWV9EVeSo2qodOPi1iBYU/x6F6diHv8uujxbxr77xExs3zTAlNXvVZKiyLsQGNz7yPV2K49JY5WjPzNIuDc2Bw== 3716 +eslint-config-prettier@^8.3.0:
  3717 + version "8.3.0"
  3718 + resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz#f7471b20b6fe8a9a9254cc684454202886a2dd7a"
  3719 + integrity sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==
3716 3720
3717 eslint-define-config@^1.0.8: 3721 eslint-define-config@^1.0.8:
3718 version "1.0.8" 3722 version "1.0.8"
@@ -4641,7 +4645,7 @@ globby@^10.0.0: @@ -4641,7 +4645,7 @@ globby@^10.0.0:
4641 merge2 "^1.2.3" 4645 merge2 "^1.2.3"
4642 slash "^3.0.0" 4646 slash "^3.0.0"
4643 4647
4644 -globby@^11.0.1, globby@^11.0.2: 4648 +globby@^11.0.1, globby@^11.0.3:
4645 version "11.0.3" 4649 version "11.0.3"
4646 resolved "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz#9b1f0cb523e171dd1ad8c7b2a9fb4b644b9593cb" 4650 resolved "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz#9b1f0cb523e171dd1ad8c7b2a9fb4b644b9593cb"
4647 integrity sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg== 4651 integrity sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg==
@@ -5328,11 +5332,6 @@ is-jpg@^2.0.0: @@ -5328,11 +5332,6 @@ is-jpg@^2.0.0:
5328 resolved "https://registry.npmjs.org/is-jpg/-/is-jpg-2.0.0.tgz#2e1997fa6e9166eaac0242daae443403e4ef1d97" 5332 resolved "https://registry.npmjs.org/is-jpg/-/is-jpg-2.0.0.tgz#2e1997fa6e9166eaac0242daae443403e4ef1d97"
5329 integrity sha1-LhmX+m6RZuqsAkLarkQ0A+TvHZc= 5333 integrity sha1-LhmX+m6RZuqsAkLarkQ0A+TvHZc=
5330 5334
5331 -is-mobile@^2.2.1:  
5332 - version "2.2.2"  
5333 - resolved "https://registry.npmjs.org/is-mobile/-/is-mobile-2.2.2.tgz#f6c9c5d50ee01254ce05e739bdd835f1ed4e9954"  
5334 - integrity sha512-wW/SXnYJkTjs++tVK5b6kVITZpAZPtUrt9SF80vvxGiF/Oywal+COk1jlRkiVq15RFNEQKQY31TkV24/1T5cVg==  
5335 -  
5336 is-module@^1.0.0: 5335 is-module@^1.0.0:
5337 version "1.0.0" 5336 version "1.0.0"
5338 resolved "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" 5337 resolved "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591"
@@ -5877,7 +5876,7 @@ lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17 @@ -5877,7 +5876,7 @@ lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17
5877 resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 5876 resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
5878 integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 5877 integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
5879 5878
5880 -log-symbols@^4.0.0: 5879 +log-symbols@^4.0.0, log-symbols@^4.1.0:
5881 version "4.1.0" 5880 version "4.1.0"
5882 resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" 5881 resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503"
5883 integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== 5882 integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==
@@ -7169,6 +7168,14 @@ postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4: @@ -7169,6 +7168,14 @@ postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4:
7169 uniq "^1.0.1" 7168 uniq "^1.0.1"
7170 util-deprecate "^1.0.2" 7169 util-deprecate "^1.0.2"
7171 7170
  7171 +postcss-selector-parser@^6.0.5:
  7172 + version "6.0.5"
  7173 + resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.5.tgz#042d74e137db83e6f294712096cb413f5aa612c4"
  7174 + integrity sha512-aFYPoYmXbZ1V6HZaSvat08M97A8HqO6Pjz+PiNpw/DhuRrC72XWAdp3hL6wusDCN31sSmcZyMGa2hZEuX+Xfhg==
  7175 + dependencies:
  7176 + cssesc "^3.0.0"
  7177 + util-deprecate "^1.0.2"
  7178 +
7172 postcss-sorting@^5.0.1: 7179 postcss-sorting@^5.0.1:
7173 version "5.0.1" 7180 version "5.0.1"
7174 resolved "https://registry.npmjs.org/postcss-sorting/-/postcss-sorting-5.0.1.tgz#10d5d0059eea8334dacc820c0121864035bc3f11" 7181 resolved "https://registry.npmjs.org/postcss-sorting/-/postcss-sorting-5.0.1.tgz#10d5d0059eea8334dacc820c0121864035bc3f11"
@@ -8397,17 +8404,17 @@ stylelint-config-prettier@^8.0.2: @@ -8397,17 +8404,17 @@ stylelint-config-prettier@^8.0.2:
8397 resolved "https://registry.npmjs.org/stylelint-config-prettier/-/stylelint-config-prettier-8.0.2.tgz#da9de33da4c56893cbe7e26df239a7374045e14e" 8404 resolved "https://registry.npmjs.org/stylelint-config-prettier/-/stylelint-config-prettier-8.0.2.tgz#da9de33da4c56893cbe7e26df239a7374045e14e"
8398 integrity sha512-TN1l93iVTXpF9NJstlvP7nOu9zY2k+mN0NSFQ/VEGz15ZIP9ohdDZTtCWHs5LjctAhSAzaILULGbgiM0ItId3A== 8405 integrity sha512-TN1l93iVTXpF9NJstlvP7nOu9zY2k+mN0NSFQ/VEGz15ZIP9ohdDZTtCWHs5LjctAhSAzaILULGbgiM0ItId3A==
8399 8406
8400 -stylelint-config-recommended@^4.0.0:  
8401 - version "4.0.0"  
8402 - resolved "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-4.0.0.tgz#665a0034065e6704d5032ba51bf4efa37d328ef9"  
8403 - integrity sha512-sgna89Ng+25Hr9kmmaIxpGWt2LStVm1xf1807PdcWasiPDaOTkOHRL61sINw0twky7QMzafCGToGDnHT/kTHtQ== 8407 +stylelint-config-recommended@^5.0.0:
  8408 + version "5.0.0"
  8409 + resolved "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-5.0.0.tgz#fb5653f495a60b4938f2ad3e77712d9e1039ae78"
  8410 + integrity sha512-c8aubuARSu5A3vEHLBeOSJt1udOdS+1iue7BmJDTSXoCBmfEQmmWX+59vYIj3NQdJBY6a/QRv1ozVFpaB9jaqA==
8404 8411
8405 -stylelint-config-standard@^21.0.0:  
8406 - version "21.0.0"  
8407 - resolved "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-21.0.0.tgz#4942cfa27301eb6702fa8fc46a44da35d1a5cfd7"  
8408 - integrity sha512-Yf6mx5oYEbQQJxWuW7X3t1gcxqbUx52qC9SMS3saC2ruOVYEyqmr5zSW6k3wXflDjjFrPhar3kp68ugRopmlzg== 8412 +stylelint-config-standard@^22.0.0:
  8413 + version "22.0.0"
  8414 + resolved "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-22.0.0.tgz#c860be9a13ebbc1b084456fa10527bf13a44addf"
  8415 + integrity sha512-uQVNi87SHjqTm8+4NIP5NMAyY/arXrBgimaaT7skvRfE9u3JKXRK9KBkbr4pVmeciuCcs64kAdjlxfq6Rur7Hw==
8409 dependencies: 8416 dependencies:
8410 - stylelint-config-recommended "^4.0.0" 8417 + stylelint-config-recommended "^5.0.0"
8411 8418
8412 stylelint-order@^4.1.0: 8419 stylelint-order@^4.1.0:
8413 version "4.1.0" 8420 version "4.1.0"
@@ -8418,15 +8425,15 @@ stylelint-order@^4.1.0: @@ -8418,15 +8425,15 @@ stylelint-order@^4.1.0:
8418 postcss "^7.0.31" 8425 postcss "^7.0.31"
8419 postcss-sorting "^5.0.1" 8426 postcss-sorting "^5.0.1"
8420 8427
8421 -stylelint@^13.12.0:  
8422 - version "13.12.0"  
8423 - resolved "https://registry.npmjs.org/stylelint/-/stylelint-13.12.0.tgz#cceb922be0d0c7b7b6926271eea2b90cb924733e"  
8424 - integrity sha512-P8O1xDy41B7O7iXaSlW+UuFbE5+ZWQDb61ndGDxKIt36fMH50DtlQTbwLpFLf8DikceTAb3r6nPrRv30wBlzXw== 8428 +stylelint@^13.13.0:
  8429 + version "13.13.0"
  8430 + resolved "https://registry.npmjs.org/stylelint/-/stylelint-13.13.0.tgz#1a33bffde765920ac985f16ae6250ff914b27804"
  8431 + integrity sha512-jvkM1iuH88vAvjdKPwPm6abiMP2/D/1chbfb+4GVONddOOskHuCXc0loyrLdxO1AwwH6jdnjYskkTKHQD7cXwQ==
8425 dependencies: 8432 dependencies:
8426 "@stylelint/postcss-css-in-js" "^0.37.2" 8433 "@stylelint/postcss-css-in-js" "^0.37.2"
8427 "@stylelint/postcss-markdown" "^0.36.2" 8434 "@stylelint/postcss-markdown" "^0.36.2"
8428 autoprefixer "^9.8.6" 8435 autoprefixer "^9.8.6"
8429 - balanced-match "^1.0.0" 8436 + balanced-match "^2.0.0"
8430 chalk "^4.1.0" 8437 chalk "^4.1.0"
8431 cosmiconfig "^7.0.0" 8438 cosmiconfig "^7.0.0"
8432 debug "^4.3.1" 8439 debug "^4.3.1"
@@ -8436,7 +8443,7 @@ stylelint@^13.12.0: @@ -8436,7 +8443,7 @@ stylelint@^13.12.0:
8436 file-entry-cache "^6.0.1" 8443 file-entry-cache "^6.0.1"
8437 get-stdin "^8.0.0" 8444 get-stdin "^8.0.0"
8438 global-modules "^2.0.0" 8445 global-modules "^2.0.0"
8439 - globby "^11.0.2" 8446 + globby "^11.0.3"
8440 globjoin "^0.1.4" 8447 globjoin "^0.1.4"
8441 html-tags "^3.1.0" 8448 html-tags "^3.1.0"
8442 ignore "^5.1.8" 8449 ignore "^5.1.8"
@@ -8444,10 +8451,10 @@ stylelint@^13.12.0: @@ -8444,10 +8451,10 @@ stylelint@^13.12.0:
8444 imurmurhash "^0.1.4" 8451 imurmurhash "^0.1.4"
8445 known-css-properties "^0.21.0" 8452 known-css-properties "^0.21.0"
8446 lodash "^4.17.21" 8453 lodash "^4.17.21"
8447 - log-symbols "^4.0.0" 8454 + log-symbols "^4.1.0"
8448 mathml-tag-names "^2.1.3" 8455 mathml-tag-names "^2.1.3"
8449 meow "^9.0.0" 8456 meow "^9.0.0"
8450 - micromatch "^4.0.2" 8457 + micromatch "^4.0.4"
8451 normalize-selector "^0.2.0" 8458 normalize-selector "^0.2.0"
8452 postcss "^7.0.35" 8459 postcss "^7.0.35"
8453 postcss-html "^0.36.0" 8460 postcss-html "^0.36.0"
@@ -8457,7 +8464,7 @@ stylelint@^13.12.0: @@ -8457,7 +8464,7 @@ stylelint@^13.12.0:
8457 postcss-safe-parser "^4.0.2" 8464 postcss-safe-parser "^4.0.2"
8458 postcss-sass "^0.4.4" 8465 postcss-sass "^0.4.4"
8459 postcss-scss "^2.1.1" 8466 postcss-scss "^2.1.1"
8460 - postcss-selector-parser "^6.0.4" 8467 + postcss-selector-parser "^6.0.5"
8461 postcss-syntax "^0.36.2" 8468 postcss-syntax "^0.36.2"
8462 postcss-value-parser "^4.1.0" 8469 postcss-value-parser "^4.1.0"
8463 resolve-from "^5.0.0" 8470 resolve-from "^5.0.0"
@@ -8468,8 +8475,8 @@ stylelint@^13.12.0: @@ -8468,8 +8475,8 @@ stylelint@^13.12.0:
8468 style-search "^0.1.0" 8475 style-search "^0.1.0"
8469 sugarss "^2.0.0" 8476 sugarss "^2.0.0"
8470 svg-tags "^1.0.0" 8477 svg-tags "^1.0.0"
8471 - table "^6.0.7"  
8472 - v8-compile-cache "^2.2.0" 8478 + table "^6.5.1"
  8479 + v8-compile-cache "^2.3.0"
8473 write-file-atomic "^3.0.3" 8480 write-file-atomic "^3.0.3"
8474 8481
8475 sucrase@^3.17.1: 8482 sucrase@^3.17.1:
@@ -8585,7 +8592,7 @@ systemjs@^6.8.3: @@ -8585,7 +8592,7 @@ systemjs@^6.8.3:
8585 resolved "https://registry.npmjs.org/systemjs/-/systemjs-6.8.3.tgz#67e27f49242e9d81c2b652b204ae54e8bfcc75a3" 8592 resolved "https://registry.npmjs.org/systemjs/-/systemjs-6.8.3.tgz#67e27f49242e9d81c2b652b204ae54e8bfcc75a3"
8586 integrity sha512-UcTY+FEA1B7e+bpJk1TI+a9Na6LG7wFEqW7ED16cLqLuQfI/9Ri0rsXm3tKlIgNoHyLHZycjdAOijzNbzelgwA== 8593 integrity sha512-UcTY+FEA1B7e+bpJk1TI+a9Na6LG7wFEqW7ED16cLqLuQfI/9Ri0rsXm3tKlIgNoHyLHZycjdAOijzNbzelgwA==
8587 8594
8588 -table@^6.0.4, table@^6.0.7: 8595 +table@^6.0.4:
8589 version "6.0.9" 8596 version "6.0.9"
8590 resolved "https://registry.npmjs.org/table/-/table-6.0.9.tgz#790a12bf1e09b87b30e60419bafd6a1fd85536fb" 8597 resolved "https://registry.npmjs.org/table/-/table-6.0.9.tgz#790a12bf1e09b87b30e60419bafd6a1fd85536fb"
8591 integrity sha512-F3cLs9a3hL1Z7N4+EkSscsel3z55XT950AvB05bwayrNg5T1/gykXtigioTAjbltvbMSJvvhFCbnf6mX+ntnJQ== 8598 integrity sha512-F3cLs9a3hL1Z7N4+EkSscsel3z55XT950AvB05bwayrNg5T1/gykXtigioTAjbltvbMSJvvhFCbnf6mX+ntnJQ==
@@ -8600,6 +8607,19 @@ table@^6.0.4, table@^6.0.7: @@ -8600,6 +8607,19 @@ table@^6.0.4, table@^6.0.7:
8600 slice-ansi "^4.0.0" 8607 slice-ansi "^4.0.0"
8601 string-width "^4.2.0" 8608 string-width "^4.2.0"
8602 8609
  8610 +table@^6.5.1:
  8611 + version "6.5.1"
  8612 + resolved "https://registry.npmjs.org/table/-/table-6.5.1.tgz#930885a7430f15f8766b35cd1e36de40793db523"
  8613 + integrity sha512-xGDXWTBJxahkzPQCsn1S9ESHEenU7TbMD5Iv4FeopXv/XwJyWatFjfbor+6ipI10/MNPXBYUamYukOrbPZ9L/w==
  8614 + dependencies:
  8615 + ajv "^8.0.1"
  8616 + lodash.clonedeep "^4.5.0"
  8617 + lodash.flatten "^4.4.0"
  8618 + lodash.truncate "^4.4.2"
  8619 + slice-ansi "^4.0.0"
  8620 + string-width "^4.2.0"
  8621 + strip-ansi "^6.0.0"
  8622 +
8603 tar-stream@^1.5.2: 8623 tar-stream@^1.5.2:
8604 version "1.6.2" 8624 version "1.6.2"
8605 resolved "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555" 8625 resolved "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555"
@@ -9154,7 +9174,7 @@ uuid@^3.0.1, uuid@^3.3.2: @@ -9154,7 +9174,7 @@ uuid@^3.0.1, uuid@^3.3.2:
9154 resolved "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" 9174 resolved "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
9155 integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== 9175 integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
9156 9176
9157 -v8-compile-cache@^2.0.3, v8-compile-cache@^2.2.0: 9177 +v8-compile-cache@^2.0.3, v8-compile-cache@^2.3.0:
9158 version "2.3.0" 9178 version "2.3.0"
9159 resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" 9179 resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
9160 integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== 9180 integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==