Commit 8b2e0f665f15edd211f558bc0526465e07e7bab0
1 parent
6a882059
fix: fix the default value of props
Showing
19 changed files
with
87 additions
and
71 deletions
package.json
... | ... | @@ -37,7 +37,7 @@ |
37 | 37 | "@logicflow/extension": "^0.3.4", |
38 | 38 | "@vueuse/core": "^4.9.0", |
39 | 39 | "@zxcvbn-ts/core": "^0.3.0", |
40 | - "ant-design-vue": "^2.1.2", | |
40 | + "ant-design-vue": "^2.1.3", | |
41 | 41 | "axios": "^0.21.1", |
42 | 42 | "codemirror": "^5.61.0", |
43 | 43 | "cropperjs": "^1.5.11", |
... | ... | @@ -78,7 +78,7 @@ |
78 | 78 | "@typescript-eslint/eslint-plugin": "^4.22.0", |
79 | 79 | "@typescript-eslint/parser": "^4.22.0", |
80 | 80 | "@vitejs/plugin-legacy": "^1.3.2", |
81 | - "@vitejs/plugin-vue": "^1.2.1", | |
81 | + "@vitejs/plugin-vue": "^1.2.2", | |
82 | 82 | "@vitejs/plugin-vue-jsx": "^1.1.3", |
83 | 83 | "@vue/compiler-sfc": "3.0.11", |
84 | 84 | "autoprefixer": "^10.2.5", |
... | ... | @@ -87,7 +87,7 @@ |
87 | 87 | "cross-env": "^7.0.3", |
88 | 88 | "dotenv": "^8.2.0", |
89 | 89 | "eslint": "^7.25.0", |
90 | - "eslint-config-prettier": "^8.2.0", | |
90 | + "eslint-config-prettier": "^8.3.0", | |
91 | 91 | "eslint-define-config": "^1.0.8", |
92 | 92 | "eslint-plugin-prettier": "^3.4.0", |
93 | 93 | "eslint-plugin-vue": "^7.9.0", |
... | ... | @@ -104,9 +104,9 @@ |
104 | 104 | "pretty-quick": "^3.1.0", |
105 | 105 | "rimraf": "^3.0.2", |
106 | 106 | "rollup-plugin-visualizer": "5.3.4", |
107 | - "stylelint": "^13.12.0", | |
107 | + "stylelint": "^13.13.0", | |
108 | 108 | "stylelint-config-prettier": "^8.0.2", |
109 | - "stylelint-config-standard": "^21.0.0", | |
109 | + "stylelint-config-standard": "^22.0.0", | |
110 | 110 | "stylelint-order": "^4.1.0", |
111 | 111 | "ts-node": "^9.1.1", |
112 | 112 | "typescript": "4.2.4", | ... | ... |
src/components/Cropper/src/index.vue
... | ... | @@ -62,11 +62,11 @@ |
62 | 62 | }, |
63 | 63 | imageStyle: { |
64 | 64 | type: Object as PropType<CSSProperties>, |
65 | - default: () => {}, | |
65 | + default: () => ({}), | |
66 | 66 | }, |
67 | 67 | options: { |
68 | 68 | type: Object as PropType<Options>, |
69 | - default: () => {}, | |
69 | + default: () => ({}), | |
70 | 70 | }, |
71 | 71 | }, |
72 | 72 | emits: ['cropperedInfo'], | ... | ... |
src/components/FlowChart/src/index.vue
... | ... | @@ -32,12 +32,12 @@ |
32 | 32 | props: { |
33 | 33 | flowOptions: { |
34 | 34 | type: Object as PropType<Definition>, |
35 | - default: () => {}, | |
35 | + default: () => ({}), | |
36 | 36 | }, |
37 | 37 | |
38 | 38 | data: { |
39 | 39 | type: Object as PropType<any>, |
40 | - default: () => {}, | |
40 | + default: () => ({}), | |
41 | 41 | }, |
42 | 42 | |
43 | 43 | toolbar: { | ... | ... |
src/components/Form/src/components/ApiSelect.vue
src/components/Form/src/components/FormAction.vue
... | ... | @@ -67,15 +67,15 @@ |
67 | 67 | showAdvancedButton: propTypes.bool.def(true), |
68 | 68 | resetButtonOptions: { |
69 | 69 | type: Object as PropType<ButtonOptions>, |
70 | - default: () => {}, | |
70 | + default: () => ({}), | |
71 | 71 | }, |
72 | 72 | submitButtonOptions: { |
73 | 73 | type: Object as PropType<ButtonOptions>, |
74 | - default: () => {}, | |
74 | + default: () => ({}), | |
75 | 75 | }, |
76 | 76 | actionColOptions: { |
77 | 77 | type: Object as PropType<Partial<ColEx>>, |
78 | - default: () => {}, | |
78 | + default: () => ({}), | |
79 | 79 | }, |
80 | 80 | actionSpan: propTypes.number.def(6), |
81 | 81 | isAdvanced: propTypes.bool, | ... | ... |
src/components/Form/src/components/FormItem.vue
... | ... | @@ -24,19 +24,19 @@ |
24 | 24 | props: { |
25 | 25 | schema: { |
26 | 26 | type: Object as PropType<FormSchema>, |
27 | - default: () => {}, | |
27 | + default: () => ({}), | |
28 | 28 | }, |
29 | 29 | formProps: { |
30 | 30 | type: Object as PropType<FormProps>, |
31 | - default: () => {}, | |
31 | + default: () => ({}), | |
32 | 32 | }, |
33 | 33 | allDefaultValues: { |
34 | 34 | type: Object as PropType<Recordable>, |
35 | - default: () => {}, | |
35 | + default: () => ({}), | |
36 | 36 | }, |
37 | 37 | formModel: { |
38 | 38 | type: Object as PropType<Recordable>, |
39 | - default: () => {}, | |
39 | + default: () => ({}), | |
40 | 40 | }, |
41 | 41 | setFormModel: { |
42 | 42 | type: Function as PropType<(key: string, value: any) => void>, | ... | ... |
src/components/SimpleMenu/src/SimpleMenuTag.vue
src/components/SimpleMenu/src/SimpleSubMenu.vue
src/components/Table/src/components/HeaderCell.vue
src/components/Table/src/components/editable/EditableCell.vue
src/components/Table/src/components/settings/index.vue
src/layouts/default/header/components/user-dropdown/index.vue
src/layouts/default/setting/components/InputNumberItem.vue
src/layouts/default/setting/components/SelectItem.vue
src/layouts/default/setting/components/SwitchItem.vue
src/layouts/default/setting/components/ThemeColorPicker.vue
src/layouts/default/setting/components/TypePicker.vue
src/views/sys/login/Login.vue
yarn.lock
... | ... | @@ -1614,10 +1614,10 @@ |
1614 | 1614 | "@vue/babel-plugin-jsx" "^1.0.3" |
1615 | 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 | 1622 | "@vue/babel-helper-vue-transform-on@^1.0.2": |
1623 | 1623 | version "1.0.2" |
... | ... | @@ -1870,10 +1870,10 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: |
1870 | 1870 | dependencies: |
1871 | 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 | 1877 | dependencies: |
1878 | 1878 | "@ant-design-vue/use" "^0.0.1-0" |
1879 | 1879 | "@ant-design/icons-vue" "^6.0.0" |
... | ... | @@ -1883,7 +1883,6 @@ ant-design-vue@^2.1.2: |
1883 | 1883 | async-validator "^3.3.0" |
1884 | 1884 | dom-align "^1.10.4" |
1885 | 1885 | dom-scroll-into-view "^2.0.0" |
1886 | - is-mobile "^2.2.1" | |
1887 | 1886 | lodash-es "^4.17.15" |
1888 | 1887 | moment "^2.27.0" |
1889 | 1888 | omit.js "^2.0.0" |
... | ... | @@ -2095,6 +2094,11 @@ balanced-match@^1.0.0: |
2095 | 2094 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" |
2096 | 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 | 2102 | base64-js@^1.3.1: |
2099 | 2103 | version "1.5.1" |
2100 | 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 | 3713 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" |
3710 | 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 | 3721 | eslint-define-config@^1.0.8: |
3718 | 3722 | version "1.0.8" |
... | ... | @@ -4641,7 +4645,7 @@ globby@^10.0.0: |
4641 | 4645 | merge2 "^1.2.3" |
4642 | 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 | 4649 | version "11.0.3" |
4646 | 4650 | resolved "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz#9b1f0cb523e171dd1ad8c7b2a9fb4b644b9593cb" |
4647 | 4651 | integrity sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg== |
... | ... | @@ -5328,11 +5332,6 @@ is-jpg@^2.0.0: |
5328 | 5332 | resolved "https://registry.npmjs.org/is-jpg/-/is-jpg-2.0.0.tgz#2e1997fa6e9166eaac0242daae443403e4ef1d97" |
5329 | 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 | 5335 | is-module@^1.0.0: |
5337 | 5336 | version "1.0.0" |
5338 | 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 | 5876 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" |
5878 | 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 | 5880 | version "4.1.0" |
5882 | 5881 | resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" |
5883 | 5882 | integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== |
... | ... | @@ -7169,6 +7168,14 @@ postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4: |
7169 | 7168 | uniq "^1.0.1" |
7170 | 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 | 7179 | postcss-sorting@^5.0.1: |
7173 | 7180 | version "5.0.1" |
7174 | 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 | 8404 | resolved "https://registry.npmjs.org/stylelint-config-prettier/-/stylelint-config-prettier-8.0.2.tgz#da9de33da4c56893cbe7e26df239a7374045e14e" |
8398 | 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 | 8416 | dependencies: |
8410 | - stylelint-config-recommended "^4.0.0" | |
8417 | + stylelint-config-recommended "^5.0.0" | |
8411 | 8418 | |
8412 | 8419 | stylelint-order@^4.1.0: |
8413 | 8420 | version "4.1.0" |
... | ... | @@ -8418,15 +8425,15 @@ stylelint-order@^4.1.0: |
8418 | 8425 | postcss "^7.0.31" |
8419 | 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 | 8432 | dependencies: |
8426 | 8433 | "@stylelint/postcss-css-in-js" "^0.37.2" |
8427 | 8434 | "@stylelint/postcss-markdown" "^0.36.2" |
8428 | 8435 | autoprefixer "^9.8.6" |
8429 | - balanced-match "^1.0.0" | |
8436 | + balanced-match "^2.0.0" | |
8430 | 8437 | chalk "^4.1.0" |
8431 | 8438 | cosmiconfig "^7.0.0" |
8432 | 8439 | debug "^4.3.1" |
... | ... | @@ -8436,7 +8443,7 @@ stylelint@^13.12.0: |
8436 | 8443 | file-entry-cache "^6.0.1" |
8437 | 8444 | get-stdin "^8.0.0" |
8438 | 8445 | global-modules "^2.0.0" |
8439 | - globby "^11.0.2" | |
8446 | + globby "^11.0.3" | |
8440 | 8447 | globjoin "^0.1.4" |
8441 | 8448 | html-tags "^3.1.0" |
8442 | 8449 | ignore "^5.1.8" |
... | ... | @@ -8444,10 +8451,10 @@ stylelint@^13.12.0: |
8444 | 8451 | imurmurhash "^0.1.4" |
8445 | 8452 | known-css-properties "^0.21.0" |
8446 | 8453 | lodash "^4.17.21" |
8447 | - log-symbols "^4.0.0" | |
8454 | + log-symbols "^4.1.0" | |
8448 | 8455 | mathml-tag-names "^2.1.3" |
8449 | 8456 | meow "^9.0.0" |
8450 | - micromatch "^4.0.2" | |
8457 | + micromatch "^4.0.4" | |
8451 | 8458 | normalize-selector "^0.2.0" |
8452 | 8459 | postcss "^7.0.35" |
8453 | 8460 | postcss-html "^0.36.0" |
... | ... | @@ -8457,7 +8464,7 @@ stylelint@^13.12.0: |
8457 | 8464 | postcss-safe-parser "^4.0.2" |
8458 | 8465 | postcss-sass "^0.4.4" |
8459 | 8466 | postcss-scss "^2.1.1" |
8460 | - postcss-selector-parser "^6.0.4" | |
8467 | + postcss-selector-parser "^6.0.5" | |
8461 | 8468 | postcss-syntax "^0.36.2" |
8462 | 8469 | postcss-value-parser "^4.1.0" |
8463 | 8470 | resolve-from "^5.0.0" |
... | ... | @@ -8468,8 +8475,8 @@ stylelint@^13.12.0: |
8468 | 8475 | style-search "^0.1.0" |
8469 | 8476 | sugarss "^2.0.0" |
8470 | 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 | 8480 | write-file-atomic "^3.0.3" |
8474 | 8481 | |
8475 | 8482 | sucrase@^3.17.1: |
... | ... | @@ -8585,7 +8592,7 @@ systemjs@^6.8.3: |
8585 | 8592 | resolved "https://registry.npmjs.org/systemjs/-/systemjs-6.8.3.tgz#67e27f49242e9d81c2b652b204ae54e8bfcc75a3" |
8586 | 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 | 8596 | version "6.0.9" |
8590 | 8597 | resolved "https://registry.npmjs.org/table/-/table-6.0.9.tgz#790a12bf1e09b87b30e60419bafd6a1fd85536fb" |
8591 | 8598 | integrity sha512-F3cLs9a3hL1Z7N4+EkSscsel3z55XT950AvB05bwayrNg5T1/gykXtigioTAjbltvbMSJvvhFCbnf6mX+ntnJQ== |
... | ... | @@ -8600,6 +8607,19 @@ table@^6.0.4, table@^6.0.7: |
8600 | 8607 | slice-ansi "^4.0.0" |
8601 | 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 | 8623 | tar-stream@^1.5.2: |
8604 | 8624 | version "1.6.2" |
8605 | 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 | 9174 | resolved "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" |
9155 | 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 | 9178 | version "2.3.0" |
9159 | 9179 | resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" |
9160 | 9180 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== | ... | ... |