diff --git a/packages/ui-icons/icons-builder/build/generate.js b/packages/ui-icons/icons-builder/build/generate.js
index c50c21eaafd0e77f66e79c25bd65ddb1fb6450d2..e0bbc3dad69f49dc69deeaa1e711bc2716cc7b84 100644
--- a/packages/ui-icons/icons-builder/build/generate.js
+++ b/packages/ui-icons/icons-builder/build/generate.js
@@ -15,10 +15,11 @@ const svgo = new Svgo({
});
const ENDPOINT = process.env.DLS_ICONS_API;
-// 硬编码与osui-icons绑在了一起
-const RAW_DIR = path.resolve(__dirname, '../../osui-icons', 'raw');
-const RAW_COLORFUL_DIR = path.resolve(__dirname, '../../osui-icons', 'colorfulRaw');
-const SVG_DIR = path.resolve(__dirname, '../../osui-icons', 'svg');
+const TARGET = process.argv[2] === 'osui' ? 'osui-icons' : 'osui-icons-icloud';
+
+const RAW_DIR = path.resolve(__dirname, `../../${TARGET}`, 'raw');
+// const RAW_COLORFUL_DIR = path.resolve(__dirname, `../../${TARGET}`, 'colorfulRaw');
+const SVG_DIR = path.resolve(__dirname, `../../${TARGET}`, 'svg');
const ICON_PATTERN = /^(.+)\.svg$/;
const MODULE_TPL = fs.readFileSync(
path.resolve(__dirname, 'component.tpl'),
@@ -35,7 +36,7 @@ const DECLARE_TPL = fs.readFileSync(
'utf8'
);
-const ICON_PACKS = ['osui-icons'];
+const ICON_PACKS = ['osui-icons', 'osui-icons-icloud'];
function getPackDir(name) {
return path.resolve(__dirname, `../../${name}`);
@@ -58,7 +59,6 @@ function walkElement(el, { enter, leave }) {
}
async function getSVGFiles(DIR, { keepSvgFill = false }) {
- // ENDPOINT 如果有COLORFUL的怎么办
if (ENDPOINT) {
const { data } = JSON.parse(await fetch(ENDPOINT).then(res => res.text()));
@@ -198,7 +198,7 @@ async function generate() {
Promise.all([
await getSVGFiles(RAW_DIR, { keepSvgFill: false }),
- await getSVGFiles(RAW_COLORFUL_DIR, { keepSvgFill: true }),
+ // await getSVGFiles(RAW_COLORFUL_DIR, { keepSvgFill: true }),
])
.then(svgs => flatten(svgs).map(
async ({ slug, content, keepSvgFill }) => {
diff --git a/packages/ui-icons/osui-icons-icloud/.gitignore b/packages/ui-icons/osui-icons-icloud/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..4254d5e64691af7d5ce818d7cd9cb2b71069fe89
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/.gitignore
@@ -0,0 +1,3 @@
+dist
+src/index.js
+src/icons
diff --git a/packages/ui-icons/osui-icons-icloud/CHANGELOG.md b/packages/ui-icons/osui-icons-icloud/CHANGELOG.md
new file mode 100644
index 0000000000000000000000000000000000000000..eb5d788ed7cb6e0c232ebad07d745f3e78eeb554
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/CHANGELOG.md
@@ -0,0 +1,290 @@
+# Change Log
+
+All notable changes to this project will be documented in this file.
+See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+## [0.10.1](https://gitee.com/gitee-fe/osui/compare/@osui/icons-icloud@0.8.7...@osui/icons-icloud@0.10.1) (2021-01-12)
+
+
+### Bug Fixes
+
+* @osui/icons-icloud调整icon名称,如下: ([8b9033a](https://gitee.com/gitee-fe/osui/commits/8b9033af14f14ebae853692523739ca22c64123a))
+* table page-header typography ([7630db0](https://gitee.com/gitee-fe/osui/commits/7630db06b79589004950e7527cf63f020d0677a7))
+
+
+
+
+
+## 0.8.7 (2020-12-24)
+
+
+### Bug Fixes
+
+* 修复message和alert代码调整 ([f0fbac7](https://gitee.com/gitee-fe/osui/commits/f0fbac740c0a124b7b2801cfffb70847f28fa74a))
+* **icons:** 修复icons build时的问题 ([b725356](https://gitee.com/gitee-fe/osui/commits/b725356c2d43d9d2e88b9fbb7b1208a51474a966))
+* avatar调整 ([dfde4ba](https://gitee.com/gitee-fe/osui/commits/dfde4baa8f27f89c3246f7ea735cd05e2609c8a1))
+* icon优化 ([cf45fe0](https://gitee.com/gitee-fe/osui/commits/cf45fe018084ecbdebc63cacb1cc8f6880220730))
+* icon优化调整 ([5d2bc5f](https://gitee.com/gitee-fe/osui/commits/5d2bc5f00f0f2b7930c4196b8352e57b961ad051))
+* toggle button 添加action toggle button 组件 ([c50cd75](https://gitee.com/gitee-fe/osui/commits/c50cd751c53711c4d8f201387892459da91858a1))
+* 修复alert样式 ([3db38e0](https://gitee.com/gitee-fe/osui/commits/3db38e065d2f67673b98b6823bd6e93638096e36))
+* 修复collapse样式 ([f76ea21](https://gitee.com/gitee-fe/osui/commits/f76ea21bc8046c3265d2554bc1aed20698041219))
+* 修复table switch ([29c9ba8](https://gitee.com/gitee-fe/osui/commits/29c9ba8b79904566ea84e010dd5ffa62c8e75ab4))
+* 删除冲突代码 ([40908ac](https://gitee.com/gitee-fe/osui/commits/40908ac946afbe027927255f987f6be5c36d7b1b))
+* 样式修复 ([896665a](https://gitee.com/gitee-fe/osui/commits/896665a45f52be9a2896157f20125f8a77809e34))
+* 解决icon冲突 ([297269b](https://gitee.com/gitee-fe/osui/commits/297269bc9b980efba87e5759b82a4f5fbea04052))
+* 解决冲突 ([d602c0e](https://gitee.com/gitee-fe/osui/commits/d602c0ecaae95988d4c7d4b0c04e4dada9eb6e8f))
+* 调整menu-dropdpwn; 添加文档 ([43014b7](https://gitee.com/gitee-fe/osui/commits/43014b7b6e860729398cd8ead30cd47953b76af7))
+* 调整radio和input的search icon ([b1eaed5](https://gitee.com/gitee-fe/osui/commits/b1eaed535b9704b14d463948f553940e78e48daa))
+
+
+### Features
+
+* 新增avatar,badge组件 ([f6db4a8](https://gitee.com/gitee-fe/osui/commits/f6db4a8575c347ffe1aa3b1c575590ae8a844567))
+* 新增branchDropdown组件 ([d1c904f](https://gitee.com/gitee-fe/osui/commits/d1c904fb8446093884cca573b88d5fed1290917f))
+* 新增button-filter组件 ([59d8a33](https://gitee.com/gitee-fe/osui/commits/59d8a33c5febd1b2a835ab038c9eeb0948b24db8))
+* 新增分页组件 ([c24133f](https://gitee.com/gitee-fe/osui/commits/c24133f72fc5b3f00584e26f62daaa1a23083eac))
+* 添加@osui/icons-icloud, 并在back-top组件中使用 ([28092fa](https://gitee.com/gitee-fe/osui/commits/28092fa3d54a91b116ffe5fc05f43a628fc376c0))
+* 添加form的调整 ([3a8cc63](https://gitee.com/gitee-fe/osui/commits/3a8cc63d9e06fde110cf641346064e81c572c67f))
+* 添加select组件 ([d3ae6c4](https://gitee.com/gitee-fe/osui/commits/d3ae6c4da767a52f476b223f731fdcde20a4ebaf))
+* 添加对twotones icon的支持 ([d6f1523](https://gitee.com/gitee-fe/osui/commits/d6f15230d7865e3017bfc6cf15c87367e3bb187e))
+
+
+
+
+
+## [0.8.6](https://gitee.com/gitee-fe/osui/compare/@osui/icons-icloud@0.8.5...@osui/icons-icloud@0.8.6) (2020-12-09)
+
+
+### Bug Fixes
+
+* toggle button 添加action toggle button 组件 ([c50cd75](https://gitee.com/gitee-fe/osui/commits/c50cd751c53711c4d8f201387892459da91858a1))
+
+
+
+
+
+## [0.8.5](https://gitee.com/gitee-fe/osui/compare/@osui/icons-icloud@0.8.4...@osui/icons-icloud@0.8.5) (2020-12-08)
+
+
+### Bug Fixes
+
+* icon优化调整 ([5d2bc5f](https://gitee.com/gitee-fe/osui/commits/5d2bc5f00f0f2b7930c4196b8352e57b961ad051))
+
+
+
+
+
+## [0.8.4](https://gitee.com/gitee-fe/osui/compare/@osui/icons-icloud@0.8.3...@osui/icons-icloud@0.8.4) (2020-12-08)
+
+
+### Bug Fixes
+
+* icon优化 ([cf45fe0](https://gitee.com/gitee-fe/osui/commits/cf45fe018084ecbdebc63cacb1cc8f6880220730))
+
+
+
+
+
+## [0.8.3](https://gitee.com/gitee-fe/osui/compare/@osui/icons-icloud@0.8.2...@osui/icons-icloud@0.8.3) (2020-11-20)
+
+**Note:** Version bump only for package @osui/icons-icloud
+
+
+
+
+
+## [0.8.2](https://gitee.com/gitee-fe/osui/compare/@osui/icons-icloud@0.8.1...@osui/icons-icloud@0.8.2) (2020-11-16)
+
+**Note:** Version bump only for package @osui/icons-icloud
+
+
+
+
+
+## [0.8.1](https://gitee.com/gitee-fe/osui/compare/@osui/icons-icloud@0.6.2...@osui/icons-icloud@0.8.1) (2020-11-10)
+
+**Note:** Version bump only for package @osui/icons-icloud
+
+
+
+
+
+# 0.8.0 (2020-11-06)
+
+
+### Bug Fixes
+
+* 修复alert样式 ([3db38e0](https://gitee.com/gitee-fe/osui/commits/3db38e065d2f67673b98b6823bd6e93638096e36))
+* **icons:** 修复icons build时的问题 ([b725356](https://gitee.com/gitee-fe/osui/commits/b725356c2d43d9d2e88b9fbb7b1208a51474a966))
+* avatar调整 ([dfde4ba](https://gitee.com/gitee-fe/osui/commits/dfde4baa8f27f89c3246f7ea735cd05e2609c8a1))
+* 修复collapse样式 ([f76ea21](https://gitee.com/gitee-fe/osui/commits/f76ea21bc8046c3265d2554bc1aed20698041219))
+* 修复message和alert代码调整 ([f0fbac7](https://gitee.com/gitee-fe/osui/commits/f0fbac740c0a124b7b2801cfffb70847f28fa74a))
+* 修复table switch ([29c9ba8](https://gitee.com/gitee-fe/osui/commits/29c9ba8b79904566ea84e010dd5ffa62c8e75ab4))
+* 删除冲突代码 ([40908ac](https://gitee.com/gitee-fe/osui/commits/40908ac946afbe027927255f987f6be5c36d7b1b))
+* 样式修复 ([896665a](https://gitee.com/gitee-fe/osui/commits/896665a45f52be9a2896157f20125f8a77809e34))
+* 解决icon冲突 ([297269b](https://gitee.com/gitee-fe/osui/commits/297269bc9b980efba87e5759b82a4f5fbea04052))
+* 解决冲突 ([d602c0e](https://gitee.com/gitee-fe/osui/commits/d602c0ecaae95988d4c7d4b0c04e4dada9eb6e8f))
+* 调整menu-dropdpwn; 添加文档 ([43014b7](https://gitee.com/gitee-fe/osui/commits/43014b7b6e860729398cd8ead30cd47953b76af7))
+* 调整radio和input的search icon ([b1eaed5](https://gitee.com/gitee-fe/osui/commits/b1eaed535b9704b14d463948f553940e78e48daa))
+
+
+### Features
+
+* 新增avatar,badge组件 ([f6db4a8](https://gitee.com/gitee-fe/osui/commits/f6db4a8575c347ffe1aa3b1c575590ae8a844567))
+* 新增branchDropdown组件 ([d1c904f](https://gitee.com/gitee-fe/osui/commits/d1c904fb8446093884cca573b88d5fed1290917f))
+* 新增button-filter组件 ([59d8a33](https://gitee.com/gitee-fe/osui/commits/59d8a33c5febd1b2a835ab038c9eeb0948b24db8))
+* 新增分页组件 ([c24133f](https://gitee.com/gitee-fe/osui/commits/c24133f72fc5b3f00584e26f62daaa1a23083eac))
+* 添加@osui/icons-icloud, 并在back-top组件中使用 ([28092fa](https://gitee.com/gitee-fe/osui/commits/28092fa3d54a91b116ffe5fc05f43a628fc376c0))
+* 添加form的调整 ([3a8cc63](https://gitee.com/gitee-fe/osui/commits/3a8cc63d9e06fde110cf641346064e81c572c67f))
+* 添加select组件 ([d3ae6c4](https://gitee.com/gitee-fe/osui/commits/d3ae6c4da767a52f476b223f731fdcde20a4ebaf))
+* 添加对twotones icon的支持 ([d6f1523](https://gitee.com/gitee-fe/osui/commits/d6f15230d7865e3017bfc6cf15c87367e3bb187e))
+
+
+
+
+
+# [0.7.0](https://gitee.com/gitee-fe/osui/compare/@osui/icons-icloud@0.6.2...@osui/icons-icloud@0.7.0) (2020-10-25)
+
+**Note:** Version bump only for package @osui/icons-icloud
+
+
+
+
+
+## [0.6.2](https://gitee.com/gitee-fe/osui/compare/@osui/icons-icloud@0.6.1...@osui/icons-icloud@0.6.2) (2020-10-23)
+
+**Note:** Version bump only for package @osui/icons-icloud
+
+
+
+
+
+## [0.6.1](https://gitee.com/gitee-fe/osui/compare/@osui/icons-icloud@0.5.0...@osui/icons-icloud@0.6.1) (2020-10-19)
+
+**Note:** Version bump only for package @osui/icons-icloud
+
+
+
+
+
+# [0.6.0](https://gitee.com/gitee-fe/osui/compare/@osui/icons-icloud@0.5.0...@osui/icons-icloud@0.6.0) (2020-10-13)
+
+**Note:** Version bump only for package @osui/icons-icloud
+
+
+
+
+
+# [0.5.0](https://gitee.com/gitee-fe/osui/compare/@osui/icons-icloud@0.4.3...@osui/icons-icloud@0.5.0) (2020-09-14)
+
+**Note:** Version bump only for package @osui/icons-icloud
+
+
+
+
+
+## [0.4.3](https://gitee.com/gitee-fe/osui/compare/@osui/icons-icloud@0.4.2...@osui/icons-icloud@0.4.3) (2020-09-08)
+
+**Note:** Version bump only for package @osui/icons-icloud
+
+
+
+
+
+## [0.4.2](https://gitee.com/gitee-fe/osui/compare/@osui/icons-icloud@0.3.1...@osui/icons-icloud@0.4.2) (2020-09-07)
+
+
+### Bug Fixes
+
+* avatar调整 ([dfde4ba](https://gitee.com/gitee-fe/osui/commits/dfde4baa8f27f89c3246f7ea735cd05e2609c8a1))
+* 修复alert样式 ([3db38e0](https://gitee.com/gitee-fe/osui/commits/3db38e065d2f67673b98b6823bd6e93638096e36))
+* 修复collapse样式 ([f76ea21](https://gitee.com/gitee-fe/osui/commits/f76ea21bc8046c3265d2554bc1aed20698041219))
+* 修复message和alert代码调整 ([f0fbac7](https://gitee.com/gitee-fe/osui/commits/f0fbac740c0a124b7b2801cfffb70847f28fa74a))
+* 修复table switch ([29c9ba8](https://gitee.com/gitee-fe/osui/commits/29c9ba8b79904566ea84e010dd5ffa62c8e75ab4))
+* 删除冲突代码 ([40908ac](https://gitee.com/gitee-fe/osui/commits/40908ac946afbe027927255f987f6be5c36d7b1b))
+* 样式修复 ([896665a](https://gitee.com/gitee-fe/osui/commits/896665a45f52be9a2896157f20125f8a77809e34))
+* 解决icon冲突 ([297269b](https://gitee.com/gitee-fe/osui/commits/297269bc9b980efba87e5759b82a4f5fbea04052))
+* 解决冲突 ([d602c0e](https://gitee.com/gitee-fe/osui/commits/d602c0ecaae95988d4c7d4b0c04e4dada9eb6e8f))
+* 调整menu-dropdpwn; 添加文档 ([43014b7](https://gitee.com/gitee-fe/osui/commits/43014b7b6e860729398cd8ead30cd47953b76af7))
+* 调整radio和input的search icon ([b1eaed5](https://gitee.com/gitee-fe/osui/commits/b1eaed535b9704b14d463948f553940e78e48daa))
+
+
+### Features
+
+* 新增branchDropdown组件 ([d1c904f](https://gitee.com/gitee-fe/osui/commits/d1c904fb8446093884cca573b88d5fed1290917f))
+* 新增button-filter组件 ([59d8a33](https://gitee.com/gitee-fe/osui/commits/59d8a33c5febd1b2a835ab038c9eeb0948b24db8))
+* 新增分页组件 ([c24133f](https://gitee.com/gitee-fe/osui/commits/c24133f72fc5b3f00584e26f62daaa1a23083eac))
+* 添加form的调整 ([3a8cc63](https://gitee.com/gitee-fe/osui/commits/3a8cc63d9e06fde110cf641346064e81c572c67f))
+* 添加select组件 ([d3ae6c4](https://gitee.com/gitee-fe/osui/commits/d3ae6c4da767a52f476b223f731fdcde20a4ebaf))
+
+
+
+
+
+# [0.4.0](https://gitee.com/gitee-fe/osui/compare/@osui/icons-icloud@0.3.1...@osui/icons-icloud@0.4.0) (2020-09-01)
+
+
+### Bug Fixes
+
+* 修复alert样式 ([3db38e0](https://gitee.com/gitee-fe/osui/commits/3db38e065d2f67673b98b6823bd6e93638096e36))
+* 修复collapse样式 ([f76ea21](https://gitee.com/gitee-fe/osui/commits/f76ea21bc8046c3265d2554bc1aed20698041219))
+* 修复message和alert代码调整 ([f0fbac7](https://gitee.com/gitee-fe/osui/commits/f0fbac740c0a124b7b2801cfffb70847f28fa74a))
+* 修复table switch ([29c9ba8](https://gitee.com/gitee-fe/osui/commits/29c9ba8b79904566ea84e010dd5ffa62c8e75ab4))
+* 删除冲突代码 ([40908ac](https://gitee.com/gitee-fe/osui/commits/40908ac946afbe027927255f987f6be5c36d7b1b))
+* 样式修复 ([896665a](https://gitee.com/gitee-fe/osui/commits/896665a45f52be9a2896157f20125f8a77809e34))
+* 解决icon冲突 ([297269b](https://gitee.com/gitee-fe/osui/commits/297269bc9b980efba87e5759b82a4f5fbea04052))
+* 解决冲突 ([d602c0e](https://gitee.com/gitee-fe/osui/commits/d602c0ecaae95988d4c7d4b0c04e4dada9eb6e8f))
+* 调整menu-dropdpwn; 添加文档 ([43014b7](https://gitee.com/gitee-fe/osui/commits/43014b7b6e860729398cd8ead30cd47953b76af7))
+* 调整radio和input的search icon ([b1eaed5](https://gitee.com/gitee-fe/osui/commits/b1eaed535b9704b14d463948f553940e78e48daa))
+
+
+### Features
+
+* 新增branchDropdown组件 ([d1c904f](https://gitee.com/gitee-fe/osui/commits/d1c904fb8446093884cca573b88d5fed1290917f))
+* 新增button-filter组件 ([59d8a33](https://gitee.com/gitee-fe/osui/commits/59d8a33c5febd1b2a835ab038c9eeb0948b24db8))
+* 新增分页组件 ([c24133f](https://gitee.com/gitee-fe/osui/commits/c24133f72fc5b3f00584e26f62daaa1a23083eac))
+* 添加form的调整 ([3a8cc63](https://gitee.com/gitee-fe/osui/commits/3a8cc63d9e06fde110cf641346064e81c572c67f))
+* 添加select组件 ([d3ae6c4](https://gitee.com/gitee-fe/osui/commits/d3ae6c4da767a52f476b223f731fdcde20a4ebaf))
+
+
+
+
+
+## [0.3.1](https://gitee.com/gitee-fe/osui/compare/@osui/icons-icloud@0.3.0...@osui/icons-icloud@0.3.1) (2020-08-17)
+
+**Note:** Version bump only for package @osui/icons-icloud
+
+
+
+
+
+# 0.3.0 (2020-08-17)
+
+
+### Bug Fixes
+
+* **icons:** 修复icons build时的问题 ([b725356](https://gitee.com/gitee-fe/osui/commits/b725356c2d43d9d2e88b9fbb7b1208a51474a966))
+
+
+### Features
+
+* 新增avatar,badge组件 ([f6db4a8](https://gitee.com/gitee-fe/osui/commits/f6db4a8575c347ffe1aa3b1c575590ae8a844567))
+* 添加@osui/icons-icloud, 并在back-top组件中使用 ([28092fa](https://gitee.com/gitee-fe/osui/commits/28092fa3d54a91b116ffe5fc05f43a628fc376c0))
+* 添加对colorful icon的支持 ([d6f1523](https://gitee.com/gitee-fe/osui/commits/d6f15230d7865e3017bfc6cf15c87367e3bb187e))
+
+
+
+
+
+# 0.2.0 (2020-08-17)
+
+
+### Bug Fixes
+
+* **icons:** 修复icons build时的问题 ([b725356](https://gitee.com/gitee-fe/osui/commits/b725356c2d43d9d2e88b9fbb7b1208a51474a966))
+
+
+### Features
+
+* 添加@osui/icons-icloud, 并在back-top组件中使用 ([28092fa](https://gitee.com/gitee-fe/osui/commits/28092fa3d54a91b116ffe5fc05f43a628fc376c0))
+* 添加对colorful icon的支持 ([d6f1523](https://gitee.com/gitee-fe/osui/commits/d6f15230d7865e3017bfc6cf15c87367e3bb187e))
diff --git a/packages/ui-icons/osui-icons-icloud/README.html b/packages/ui-icons/osui-icons-icloud/README.html
new file mode 100644
index 0000000000000000000000000000000000000000..4d40805de5777d2a776d50bd4360899ca282759e
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/README.html
@@ -0,0 +1,95 @@
+
+
+
+ IconArrowDownOutlined
+ |
+
+ IconArrowLeftOutlined
+ |
+
+ IconArrowUpOutlined
+ |
+
+ IconBranchDropdown
+ |
+
+ IconBranchFilter
+ |
+
+ IconCaretDownOutlined
+ |
+
+ IconCaretRightOutlined
+ |
+
+ IconCheckCircleFilled
+ |
+
+ IconCheckCircleOutlined
+ |
+
+ IconCheckOutlined
+ |
+
+ IconCheckSquareFilled
+ |
+
+ IconCloseCircleFilled
+ |
+
+ IconCloseCircleOutlined
+ |
+
+ IconCloseOutlined
+ |
+
+ IconDownOutlined
+ |
+
+ IconExclamationCircleFilled
+ |
+
+ IconFilterOutlined
+ |
+
+ IconGitFilter
+ |
+
+ IconHomeOutlined
+ |
+
+ IconInfoCircleFilled
+ |
+
+ IconLeftOutlined
+ |
+
+ IconLoading3QuartersOutlined
+ |
+
+ IconMoreOutlined
+ |
+
+ IconPlusOutlined
+ |
+
+ IconRightOutlined
+ |
+
+ IconSearchOutlined
+ |
+
+ IconSwitchCross
+ |
+
+ IconSwitchTick
+ |
+
+ IconTableSortOutlined
+ |
+
+ IconUpOutlined
+ |
+
+ IconVerticalAlignTopOutlined
+ | | |
diff --git a/packages/ui-icons/osui-icons-icloud/README.md b/packages/ui-icons/osui-icons-icloud/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..369f0bd4cee06ec0e14c573758f9921425f66ad3
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/README.md
@@ -0,0 +1,125 @@
+# icloud-icons
+
+## Installation
+
+```shell
+npm i @osui/icons-icloud
+```
+
+```shell
+yarn add @osui/icons-icloud
+```
+
+## Usage
+
+```jsx
+import { IconVerticalAlignTopOutlined } from '@osui/icons-icloud'
+
+export default function Title() {
+ return (
+
+
+ Hello Icons
+
+
+
+ )
+}
+```
+
+## Available Icons
+
+
+
+ IconArrowDownOutlined
+ |
+
+ IconArrowLeftOutlined
+ |
+
+ IconArrowUpOutlined
+ |
+
+ IconBranchDropdown
+ |
+
+ IconBranchFilter
+ |
+
+ IconCaretDownOutlined
+ |
+
+ IconCaretRightOutlined
+ |
+
+ IconCheckCircleFilled
+ |
+
+ IconCheckCircleOutlined
+ |
+
+ IconCheckOutlined
+ |
+
+ IconCheckSquareFilled
+ |
+
+ IconCloseCircleFilled
+ |
+
+ IconCloseCircleOutlined
+ |
+
+ IconCloseOutlined
+ |
+
+ IconDownOutlined
+ |
+
+ IconExclamationCircleFilled
+ |
+
+ IconFilterOutlined
+ |
+
+ IconGitFilter
+ |
+
+ IconHomeOutlined
+ |
+
+ IconInfoCircleFilled
+ |
+
+ IconLeftOutlined
+ |
+
+ IconLoading3QuartersOutlined
+ |
+
+ IconMoreOutlined
+ |
+
+ IconPlusOutlined
+ |
+
+ IconRightOutlined
+ |
+
+ IconSearchOutlined
+ |
+
+ IconSwitchCross
+ |
+
+ IconSwitchTick
+ |
+
+ IconTableSortOutlined
+ |
+
+ IconUpOutlined
+ |
+
+ IconVerticalAlignTopOutlined
+ | | |
diff --git a/packages/ui-icons/osui-icons-icloud/build/readme.tpl b/packages/ui-icons/osui-icons-icloud/build/readme.tpl
new file mode 100644
index 0000000000000000000000000000000000000000..b16335db298c07a700e76794344f16b6c8e302a2
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/build/readme.tpl
@@ -0,0 +1,32 @@
+# icloud-icons
+
+## Installation
+
+```shell
+npm i @osui/icons-icloud
+```
+
+```shell
+yarn add @osui/icons-icloud
+```
+
+## Usage
+
+```jsx
+import { IconVerticalAlignTopOutlined } from '@osui/icons-icloud'
+
+export default function Title() {
+ return (
+
+
+ Hello Icons
+
+
+
+ )
+}
+```
+
+## Available Icons
+
+{iconTable}
diff --git a/packages/ui-icons/osui-icons-icloud/package-lock.json b/packages/ui-icons/osui-icons-icloud/package-lock.json
new file mode 100644
index 0000000000000000000000000000000000000000..69dfa15be76f3cad0239d1dbd11eaa61244a7a2a
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/package-lock.json
@@ -0,0 +1,4338 @@
+{
+ "name": "@osui/icons-icloud",
+ "version": "0.10.1",
+ "lockfileVersion": 1,
+ "requires": true,
+ "dependencies": {
+ "@babel/code-frame": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
+ "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
+ "dev": true,
+ "requires": {
+ "@babel/highlight": "^7.10.4"
+ }
+ },
+ "@babel/compat-data": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.10.5.tgz",
+ "integrity": "sha512-mPVoWNzIpYJHbWje0if7Ck36bpbtTvIxOi9+6WSK9wjGEXearAqlwBoTQvVjsAY2VIwgcs8V940geY3okzRCEw==",
+ "dev": true,
+ "requires": {
+ "browserslist": "^4.12.0",
+ "invariant": "^2.2.4",
+ "semver": "^5.5.0"
+ }
+ },
+ "@babel/core": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.10.5.tgz",
+ "integrity": "sha512-O34LQooYVDXPl7QWCdW9p4NR+QlzOr7xShPPJz8GsuCU3/8ua/wqTr7gmnxXv+WBESiGU/G5s16i6tUvHkNb+w==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.10.4",
+ "@babel/generator": "^7.10.5",
+ "@babel/helper-module-transforms": "^7.10.5",
+ "@babel/helpers": "^7.10.4",
+ "@babel/parser": "^7.10.5",
+ "@babel/template": "^7.10.4",
+ "@babel/traverse": "^7.10.5",
+ "@babel/types": "^7.10.5",
+ "convert-source-map": "^1.7.0",
+ "debug": "^4.1.0",
+ "gensync": "^1.0.0-beta.1",
+ "json5": "^2.1.2",
+ "lodash": "^4.17.19",
+ "resolve": "^1.3.2",
+ "semver": "^5.4.1",
+ "source-map": "^0.5.0"
+ },
+ "dependencies": {
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/generator": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.10.5.tgz",
+ "integrity": "sha512-3vXxr3FEW7E7lJZiWQ3bM4+v/Vyr9C+hpolQ8BGFr9Y8Ri2tFLWTixmwKBafDujO1WVah4fhZBeU1bieKdghig==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.10.5",
+ "jsesc": "^2.5.1",
+ "source-map": "^0.5.0"
+ },
+ "dependencies": {
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/helper-annotate-as-pure": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz",
+ "integrity": "sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.10.4"
+ },
+ "dependencies": {
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/helper-builder-binary-assignment-operator-visitor": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz",
+ "integrity": "sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-explode-assignable-expression": "^7.10.4",
+ "@babel/types": "^7.10.4"
+ },
+ "dependencies": {
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/helper-builder-react-jsx": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.4.tgz",
+ "integrity": "sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.10.4",
+ "@babel/types": "^7.10.4"
+ },
+ "dependencies": {
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/helper-builder-react-jsx-experimental": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.10.5.tgz",
+ "integrity": "sha512-Buewnx6M4ttG+NLkKyt7baQn7ScC/Td+e99G914fRU8fGIUivDDgVIQeDHFa5e4CRSJQt58WpNHhsAZgtzVhsg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.10.4",
+ "@babel/helper-module-imports": "^7.10.4",
+ "@babel/types": "^7.10.5"
+ },
+ "dependencies": {
+ "@babel/helper-module-imports": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz",
+ "integrity": "sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.10.4"
+ }
+ },
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/helper-compilation-targets": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.4.tgz",
+ "integrity": "sha512-a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ==",
+ "dev": true,
+ "requires": {
+ "@babel/compat-data": "^7.10.4",
+ "browserslist": "^4.12.0",
+ "invariant": "^2.2.4",
+ "levenary": "^1.1.1",
+ "semver": "^5.5.0"
+ }
+ },
+ "@babel/helper-create-class-features-plugin": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz",
+ "integrity": "sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-function-name": "^7.10.4",
+ "@babel/helper-member-expression-to-functions": "^7.10.5",
+ "@babel/helper-optimise-call-expression": "^7.10.4",
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/helper-replace-supers": "^7.10.4",
+ "@babel/helper-split-export-declaration": "^7.10.4"
+ }
+ },
+ "@babel/helper-create-regexp-features-plugin": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.4.tgz",
+ "integrity": "sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.10.4",
+ "@babel/helper-regex": "^7.10.4",
+ "regexpu-core": "^4.7.0"
+ }
+ },
+ "@babel/helper-define-map": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz",
+ "integrity": "sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-function-name": "^7.10.4",
+ "@babel/types": "^7.10.5",
+ "lodash": "^4.17.19"
+ },
+ "dependencies": {
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/helper-explode-assignable-expression": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.4.tgz",
+ "integrity": "sha512-4K71RyRQNPRrR85sr5QY4X3VwG4wtVoXZB9+L3r1Gp38DhELyHCtovqydRi7c1Ovb17eRGiQ/FD5s8JdU0Uy5A==",
+ "dev": true,
+ "requires": {
+ "@babel/traverse": "^7.10.4",
+ "@babel/types": "^7.10.4"
+ },
+ "dependencies": {
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/helper-function-name": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz",
+ "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-get-function-arity": "^7.10.4",
+ "@babel/template": "^7.10.4",
+ "@babel/types": "^7.10.4"
+ },
+ "dependencies": {
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/helper-get-function-arity": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz",
+ "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.10.4"
+ },
+ "dependencies": {
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/helper-hoist-variables": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz",
+ "integrity": "sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.10.4"
+ },
+ "dependencies": {
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/helper-member-expression-to-functions": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.5.tgz",
+ "integrity": "sha512-HiqJpYD5+WopCXIAbQDG0zye5XYVvcO9w/DHp5GsaGkRUaamLj2bEtu6i8rnGGprAhHM3qidCMgp71HF4endhA==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.10.5"
+ },
+ "dependencies": {
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/helper-module-imports": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz",
+ "integrity": "sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.8.3"
+ }
+ },
+ "@babel/helper-module-transforms": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.10.5.tgz",
+ "integrity": "sha512-4P+CWMJ6/j1W915ITJaUkadLObmCRRSC234uctJfn/vHrsLNxsR8dwlcXv9ZhJWzl77awf+mWXSZEKt5t0OnlA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-imports": "^7.10.4",
+ "@babel/helper-replace-supers": "^7.10.4",
+ "@babel/helper-simple-access": "^7.10.4",
+ "@babel/helper-split-export-declaration": "^7.10.4",
+ "@babel/template": "^7.10.4",
+ "@babel/types": "^7.10.5",
+ "lodash": "^4.17.19"
+ },
+ "dependencies": {
+ "@babel/helper-module-imports": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz",
+ "integrity": "sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.10.4"
+ }
+ },
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/helper-optimise-call-expression": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz",
+ "integrity": "sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.10.4"
+ },
+ "dependencies": {
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/helper-plugin-utils": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
+ "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==",
+ "dev": true
+ },
+ "@babel/helper-regex": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.10.5.tgz",
+ "integrity": "sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg==",
+ "dev": true,
+ "requires": {
+ "lodash": "^4.17.19"
+ },
+ "dependencies": {
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/helper-remap-async-to-generator": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.10.4.tgz",
+ "integrity": "sha512-86Lsr6NNw3qTNl+TBcF1oRZMaVzJtbWTyTko+CQL/tvNvcGYEFKbLXDPxtW0HKk3McNOk4KzY55itGWCAGK5tg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.10.4",
+ "@babel/helper-wrap-function": "^7.10.4",
+ "@babel/template": "^7.10.4",
+ "@babel/traverse": "^7.10.4",
+ "@babel/types": "^7.10.4"
+ },
+ "dependencies": {
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/helper-replace-supers": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz",
+ "integrity": "sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-member-expression-to-functions": "^7.10.4",
+ "@babel/helper-optimise-call-expression": "^7.10.4",
+ "@babel/traverse": "^7.10.4",
+ "@babel/types": "^7.10.4"
+ },
+ "dependencies": {
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/helper-simple-access": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz",
+ "integrity": "sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw==",
+ "dev": true,
+ "requires": {
+ "@babel/template": "^7.10.4",
+ "@babel/types": "^7.10.4"
+ },
+ "dependencies": {
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/helper-split-export-declaration": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.4.tgz",
+ "integrity": "sha512-pySBTeoUff56fL5CBU2hWm9TesA4r/rOkI9DyJLvvgz09MB9YtfIYe3iBriVaYNaPe+Alua0vBIOVOLs2buWhg==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.10.4"
+ },
+ "dependencies": {
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/helper-validator-identifier": {
+ "version": "7.9.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz",
+ "integrity": "sha512-/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g==",
+ "dev": true
+ },
+ "@babel/helper-wrap-function": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.10.4.tgz",
+ "integrity": "sha512-6py45WvEF0MhiLrdxtRjKjufwLL1/ob2qDJgg5JgNdojBAZSAKnAjkyOCNug6n+OBl4VW76XjvgSFTdaMcW0Ug==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-function-name": "^7.10.4",
+ "@babel/template": "^7.10.4",
+ "@babel/traverse": "^7.10.4",
+ "@babel/types": "^7.10.4"
+ },
+ "dependencies": {
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/helpers": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.10.4.tgz",
+ "integrity": "sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA==",
+ "dev": true,
+ "requires": {
+ "@babel/template": "^7.10.4",
+ "@babel/traverse": "^7.10.4",
+ "@babel/types": "^7.10.4"
+ },
+ "dependencies": {
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/highlight": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
+ "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "chalk": "^2.0.0",
+ "js-tokens": "^4.0.0"
+ },
+ "dependencies": {
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/parser": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.10.5.tgz",
+ "integrity": "sha512-wfryxy4bE1UivvQKSQDU4/X6dr+i8bctjUjj8Zyt3DQy7NtPizJXT8M52nqpNKL+nq2PW8lxk4ZqLj0fD4B4hQ==",
+ "dev": true
+ },
+ "@babel/plugin-proposal-async-generator-functions": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.5.tgz",
+ "integrity": "sha512-cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/helper-remap-async-to-generator": "^7.10.4",
+ "@babel/plugin-syntax-async-generators": "^7.8.0"
+ }
+ },
+ "@babel/plugin-proposal-class-properties": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz",
+ "integrity": "sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-class-features-plugin": "^7.10.4",
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-proposal-dynamic-import": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.4.tgz",
+ "integrity": "sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-syntax-dynamic-import": "^7.8.0"
+ }
+ },
+ "@babel/plugin-proposal-export-default-from": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.10.4.tgz",
+ "integrity": "sha512-G1l00VvDZ7Yk2yRlC5D8Ybvu3gmeHS3rCHoUYdjrqGYUtdeOBoRypnvDZ5KQqxyaiiGHWnVDeSEzA5F9ozItig==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-syntax-export-default-from": "^7.10.4"
+ }
+ },
+ "@babel/plugin-proposal-json-strings": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.4.tgz",
+ "integrity": "sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-syntax-json-strings": "^7.8.0"
+ }
+ },
+ "@babel/plugin-proposal-nullish-coalescing-operator": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz",
+ "integrity": "sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0"
+ }
+ },
+ "@babel/plugin-proposal-numeric-separator": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.4.tgz",
+ "integrity": "sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-syntax-numeric-separator": "^7.10.4"
+ }
+ },
+ "@babel/plugin-proposal-object-rest-spread": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.10.4.tgz",
+ "integrity": "sha512-6vh4SqRuLLarjgeOf4EaROJAHjvu9Gl+/346PbDH9yWbJyfnJ/ah3jmYKYtswEyCoWZiidvVHjHshd4WgjB9BA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
+ "@babel/plugin-transform-parameters": "^7.10.4"
+ }
+ },
+ "@babel/plugin-proposal-optional-catch-binding": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.4.tgz",
+ "integrity": "sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.0"
+ }
+ },
+ "@babel/plugin-proposal-optional-chaining": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.10.4.tgz",
+ "integrity": "sha512-ZIhQIEeavTgouyMSdZRap4VPPHqJJ3NEs2cuHs5p0erH+iz6khB0qfgU8g7UuJkG88+fBMy23ZiU+nuHvekJeQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-syntax-optional-chaining": "^7.8.0"
+ }
+ },
+ "@babel/plugin-proposal-private-methods": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.4.tgz",
+ "integrity": "sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-class-features-plugin": "^7.10.4",
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-proposal-unicode-property-regex": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.4.tgz",
+ "integrity": "sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-regexp-features-plugin": "^7.10.4",
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-syntax-async-generators": {
+ "version": "7.8.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
+ "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-class-properties": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.4.tgz",
+ "integrity": "sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-syntax-dynamic-import": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
+ "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-export-default-from": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.10.4.tgz",
+ "integrity": "sha512-79V6r6Pgudz0RnuMGp5xidu6Z+bPFugh8/Q9eDHonmLp4wKFAZDwygJwYgCzuDu8lFA/sYyT+mc5y2wkd7bTXA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-syntax-json-strings": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
+ "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-jsx": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz",
+ "integrity": "sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-syntax-nullish-coalescing-operator": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
+ "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-numeric-separator": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
+ "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-syntax-object-rest-spread": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
+ "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-optional-catch-binding": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
+ "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-optional-chaining": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
+ "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-top-level-await": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.4.tgz",
+ "integrity": "sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-arrow-functions": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.4.tgz",
+ "integrity": "sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-async-to-generator": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.4.tgz",
+ "integrity": "sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-imports": "^7.10.4",
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/helper-remap-async-to-generator": "^7.10.4"
+ },
+ "dependencies": {
+ "@babel/helper-module-imports": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz",
+ "integrity": "sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.10.4"
+ }
+ },
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/plugin-transform-block-scoped-functions": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.4.tgz",
+ "integrity": "sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-block-scoping": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.10.5.tgz",
+ "integrity": "sha512-6Ycw3hjpQti0qssQcA6AMSFDHeNJ++R6dIMnpRqUjFeBBTmTDPa8zgF90OVfTvAo11mXZTlVUViY1g8ffrURLg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-classes": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.4.tgz",
+ "integrity": "sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.10.4",
+ "@babel/helper-define-map": "^7.10.4",
+ "@babel/helper-function-name": "^7.10.4",
+ "@babel/helper-optimise-call-expression": "^7.10.4",
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/helper-replace-supers": "^7.10.4",
+ "@babel/helper-split-export-declaration": "^7.10.4",
+ "globals": "^11.1.0"
+ }
+ },
+ "@babel/plugin-transform-computed-properties": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.4.tgz",
+ "integrity": "sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-destructuring": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.4.tgz",
+ "integrity": "sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-dotall-regex": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.4.tgz",
+ "integrity": "sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-regexp-features-plugin": "^7.10.4",
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-duplicate-keys": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.4.tgz",
+ "integrity": "sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-exponentiation-operator": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.4.tgz",
+ "integrity": "sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-builder-binary-assignment-operator-visitor": "^7.10.4",
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-for-of": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.4.tgz",
+ "integrity": "sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-function-name": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.4.tgz",
+ "integrity": "sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-function-name": "^7.10.4",
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-literals": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.4.tgz",
+ "integrity": "sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-member-expression-literals": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.4.tgz",
+ "integrity": "sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-modules-amd": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.5.tgz",
+ "integrity": "sha512-elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-transforms": "^7.10.5",
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "babel-plugin-dynamic-import-node": "^2.3.3"
+ }
+ },
+ "@babel/plugin-transform-modules-commonjs": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.4.tgz",
+ "integrity": "sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-transforms": "^7.10.4",
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/helper-simple-access": "^7.10.4",
+ "babel-plugin-dynamic-import-node": "^2.3.3"
+ }
+ },
+ "@babel/plugin-transform-modules-systemjs": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.5.tgz",
+ "integrity": "sha512-f4RLO/OL14/FP1AEbcsWMzpbUz6tssRaeQg11RH1BP/XnPpRoVwgeYViMFacnkaw4k4wjRSjn3ip1Uw9TaXuMw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-hoist-variables": "^7.10.4",
+ "@babel/helper-module-transforms": "^7.10.5",
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "babel-plugin-dynamic-import-node": "^2.3.3"
+ }
+ },
+ "@babel/plugin-transform-modules-umd": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.4.tgz",
+ "integrity": "sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-transforms": "^7.10.4",
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-named-capturing-groups-regex": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.10.4.tgz",
+ "integrity": "sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-regexp-features-plugin": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-new-target": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.4.tgz",
+ "integrity": "sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-object-super": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.4.tgz",
+ "integrity": "sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/helper-replace-supers": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-parameters": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz",
+ "integrity": "sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-get-function-arity": "^7.10.4",
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-property-literals": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.4.tgz",
+ "integrity": "sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-react-display-name": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.10.4.tgz",
+ "integrity": "sha512-Zd4X54Mu9SBfPGnEcaGcOrVAYOtjT2on8QZkLKEq1S/tHexG39d9XXGZv19VfRrDjPJzFmPfTAqOQS1pfFOujw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-react-jsx": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.10.4.tgz",
+ "integrity": "sha512-L+MfRhWjX0eI7Js093MM6MacKU4M6dnCRa/QPDwYMxjljzSCzzlzKzj9Pk4P3OtrPcxr2N3znR419nr3Xw+65A==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-builder-react-jsx": "^7.10.4",
+ "@babel/helper-builder-react-jsx-experimental": "^7.10.4",
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-syntax-jsx": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-react-jsx-development": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.10.4.tgz",
+ "integrity": "sha512-RM3ZAd1sU1iQ7rI2dhrZRZGv0aqzNQMbkIUCS1txYpi9wHQ2ZHNjo5TwX+UD6pvFW4AbWqLVYvKy5qJSAyRGjQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-builder-react-jsx-experimental": "^7.10.4",
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-syntax-jsx": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-react-jsx-self": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.10.4.tgz",
+ "integrity": "sha512-yOvxY2pDiVJi0axdTWHSMi5T0DILN+H+SaeJeACHKjQLezEzhLx9nEF9xgpBLPtkZsks9cnb5P9iBEi21En3gg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-syntax-jsx": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-react-jsx-source": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.10.5.tgz",
+ "integrity": "sha512-wTeqHVkN1lfPLubRiZH3o73f4rfon42HpgxUSs86Nc+8QIcm/B9s8NNVXu/gwGcOyd7yDib9ikxoDLxJP0UiDA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-syntax-jsx": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-react-pure-annotations": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.10.4.tgz",
+ "integrity": "sha512-+njZkqcOuS8RaPakrnR9KvxjoG1ASJWpoIv/doyWngId88JoFlPlISenGXjrVacZUIALGUr6eodRs1vmPnF23A==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.10.4",
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-regenerator": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.4.tgz",
+ "integrity": "sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw==",
+ "dev": true,
+ "requires": {
+ "regenerator-transform": "^0.14.2"
+ }
+ },
+ "@babel/plugin-transform-reserved-words": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.4.tgz",
+ "integrity": "sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-shorthand-properties": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.4.tgz",
+ "integrity": "sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-spread": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.10.4.tgz",
+ "integrity": "sha512-1e/51G/Ni+7uH5gktbWv+eCED9pP8ZpRhZB3jOaI3mmzfvJTWHkuyYTv0Z5PYtyM+Tr2Ccr9kUdQxn60fI5WuQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-sticky-regex": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.4.tgz",
+ "integrity": "sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/helper-regex": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-template-literals": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.5.tgz",
+ "integrity": "sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.10.4",
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-typeof-symbol": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.4.tgz",
+ "integrity": "sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-unicode-escapes": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.10.4.tgz",
+ "integrity": "sha512-y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-transform-unicode-regex": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.4.tgz",
+ "integrity": "sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-create-regexp-features-plugin": "^7.10.4",
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/preset-env": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.10.4.tgz",
+ "integrity": "sha512-tcmuQ6vupfMZPrLrc38d0sF2OjLT3/bZ0dry5HchNCQbrokoQi4reXqclvkkAT5b+gWc23meVWpve5P/7+w/zw==",
+ "dev": true,
+ "requires": {
+ "@babel/compat-data": "^7.10.4",
+ "@babel/helper-compilation-targets": "^7.10.4",
+ "@babel/helper-module-imports": "^7.10.4",
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-proposal-async-generator-functions": "^7.10.4",
+ "@babel/plugin-proposal-class-properties": "^7.10.4",
+ "@babel/plugin-proposal-dynamic-import": "^7.10.4",
+ "@babel/plugin-proposal-json-strings": "^7.10.4",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
+ "@babel/plugin-proposal-numeric-separator": "^7.10.4",
+ "@babel/plugin-proposal-object-rest-spread": "^7.10.4",
+ "@babel/plugin-proposal-optional-catch-binding": "^7.10.4",
+ "@babel/plugin-proposal-optional-chaining": "^7.10.4",
+ "@babel/plugin-proposal-private-methods": "^7.10.4",
+ "@babel/plugin-proposal-unicode-property-regex": "^7.10.4",
+ "@babel/plugin-syntax-async-generators": "^7.8.0",
+ "@babel/plugin-syntax-class-properties": "^7.10.4",
+ "@babel/plugin-syntax-dynamic-import": "^7.8.0",
+ "@babel/plugin-syntax-json-strings": "^7.8.0",
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0",
+ "@babel/plugin-syntax-numeric-separator": "^7.10.4",
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.0",
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.0",
+ "@babel/plugin-syntax-optional-chaining": "^7.8.0",
+ "@babel/plugin-syntax-top-level-await": "^7.10.4",
+ "@babel/plugin-transform-arrow-functions": "^7.10.4",
+ "@babel/plugin-transform-async-to-generator": "^7.10.4",
+ "@babel/plugin-transform-block-scoped-functions": "^7.10.4",
+ "@babel/plugin-transform-block-scoping": "^7.10.4",
+ "@babel/plugin-transform-classes": "^7.10.4",
+ "@babel/plugin-transform-computed-properties": "^7.10.4",
+ "@babel/plugin-transform-destructuring": "^7.10.4",
+ "@babel/plugin-transform-dotall-regex": "^7.10.4",
+ "@babel/plugin-transform-duplicate-keys": "^7.10.4",
+ "@babel/plugin-transform-exponentiation-operator": "^7.10.4",
+ "@babel/plugin-transform-for-of": "^7.10.4",
+ "@babel/plugin-transform-function-name": "^7.10.4",
+ "@babel/plugin-transform-literals": "^7.10.4",
+ "@babel/plugin-transform-member-expression-literals": "^7.10.4",
+ "@babel/plugin-transform-modules-amd": "^7.10.4",
+ "@babel/plugin-transform-modules-commonjs": "^7.10.4",
+ "@babel/plugin-transform-modules-systemjs": "^7.10.4",
+ "@babel/plugin-transform-modules-umd": "^7.10.4",
+ "@babel/plugin-transform-named-capturing-groups-regex": "^7.10.4",
+ "@babel/plugin-transform-new-target": "^7.10.4",
+ "@babel/plugin-transform-object-super": "^7.10.4",
+ "@babel/plugin-transform-parameters": "^7.10.4",
+ "@babel/plugin-transform-property-literals": "^7.10.4",
+ "@babel/plugin-transform-regenerator": "^7.10.4",
+ "@babel/plugin-transform-reserved-words": "^7.10.4",
+ "@babel/plugin-transform-shorthand-properties": "^7.10.4",
+ "@babel/plugin-transform-spread": "^7.10.4",
+ "@babel/plugin-transform-sticky-regex": "^7.10.4",
+ "@babel/plugin-transform-template-literals": "^7.10.4",
+ "@babel/plugin-transform-typeof-symbol": "^7.10.4",
+ "@babel/plugin-transform-unicode-escapes": "^7.10.4",
+ "@babel/plugin-transform-unicode-regex": "^7.10.4",
+ "@babel/preset-modules": "^0.1.3",
+ "@babel/types": "^7.10.4",
+ "browserslist": "^4.12.0",
+ "core-js-compat": "^3.6.2",
+ "invariant": "^2.2.2",
+ "levenary": "^1.1.1",
+ "semver": "^5.5.0"
+ },
+ "dependencies": {
+ "@babel/helper-module-imports": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz",
+ "integrity": "sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.10.4"
+ }
+ },
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/preset-modules": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.3.tgz",
+ "integrity": "sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.0.0",
+ "@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
+ "@babel/plugin-transform-dotall-regex": "^7.4.4",
+ "@babel/types": "^7.4.4",
+ "esutils": "^2.0.2"
+ }
+ },
+ "@babel/preset-react": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.10.4.tgz",
+ "integrity": "sha512-BrHp4TgOIy4M19JAfO1LhycVXOPWdDbTRep7eVyatf174Hff+6Uk53sDyajqZPu8W1qXRBiYOfIamek6jA7YVw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4",
+ "@babel/plugin-transform-react-display-name": "^7.10.4",
+ "@babel/plugin-transform-react-jsx": "^7.10.4",
+ "@babel/plugin-transform-react-jsx-development": "^7.10.4",
+ "@babel/plugin-transform-react-jsx-self": "^7.10.4",
+ "@babel/plugin-transform-react-jsx-source": "^7.10.4",
+ "@babel/plugin-transform-react-pure-annotations": "^7.10.4"
+ }
+ },
+ "@babel/runtime": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.10.5.tgz",
+ "integrity": "sha512-otddXKhdNn7d0ptoFRHtMLa8LqDxLYwTjB4nYgM1yy5N6gU/MUf8zqyyLltCH3yAVitBzmwK4us+DD0l/MauAg==",
+ "dev": true,
+ "requires": {
+ "regenerator-runtime": "^0.13.4"
+ }
+ },
+ "@babel/template": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz",
+ "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.10.4",
+ "@babel/parser": "^7.10.4",
+ "@babel/types": "^7.10.4"
+ },
+ "dependencies": {
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/traverse": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.10.5.tgz",
+ "integrity": "sha512-yc/fyv2gUjPqzTz0WHeRJH2pv7jA9kA7mBX2tXl/x5iOE81uaVPuGPtaYk7wmkx4b67mQ7NqI8rmT2pF47KYKQ==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.10.4",
+ "@babel/generator": "^7.10.5",
+ "@babel/helper-function-name": "^7.10.4",
+ "@babel/helper-split-export-declaration": "^7.10.4",
+ "@babel/parser": "^7.10.5",
+ "@babel/types": "^7.10.5",
+ "debug": "^4.1.0",
+ "globals": "^11.1.0",
+ "lodash": "^4.17.19"
+ },
+ "dependencies": {
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
+ "dev": true
+ },
+ "@babel/types": {
+ "version": "7.10.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.10.5.tgz",
+ "integrity": "sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "lodash": "^4.17.19",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/types": {
+ "version": "7.9.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.9.6.tgz",
+ "integrity": "sha512-qxXzvBO//jO9ZnoasKF1uJzHd2+M6Q2ZPIVfnFps8JJvXy0ZBbwbNOmE6SGIY5XOY6d1Bo5lb9d9RJ8nv3WSeA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.9.5",
+ "lodash": "^4.17.13",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "@rollup/plugin-alias": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/@rollup/plugin-alias/-/plugin-alias-3.1.1.tgz",
+ "integrity": "sha512-hNcQY4bpBUIvxekd26DBPgF7BT4mKVNDF5tBG4Zi+3IgwLxGYRY0itHs9D0oLVwXM5pvJDWJlBQro+au8WaUWw==",
+ "dev": true,
+ "requires": {
+ "slash": "^3.0.0"
+ }
+ },
+ "@rollup/plugin-json": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-4.1.0.tgz",
+ "integrity": "sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==",
+ "dev": true,
+ "requires": {
+ "@rollup/pluginutils": "^3.0.8"
+ }
+ },
+ "@rollup/pluginutils": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz",
+ "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==",
+ "dev": true,
+ "requires": {
+ "@types/estree": "0.0.39",
+ "estree-walker": "^1.0.1",
+ "picomatch": "^2.2.2"
+ },
+ "dependencies": {
+ "@types/estree": {
+ "version": "0.0.39",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz",
+ "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==",
+ "dev": true
+ },
+ "estree-walker": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz",
+ "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==",
+ "dev": true
+ }
+ }
+ },
+ "@types/color-name": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz",
+ "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==",
+ "dev": true
+ },
+ "@types/estree": {
+ "version": "0.0.44",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.44.tgz",
+ "integrity": "sha512-iaIVzr+w2ZJ5HkidlZ3EJM8VTZb2MJLCjw3V+505yVts0gRC4UMvjw0d1HPtGqI/HQC/KdsYtayfzl+AXY2R8g==",
+ "dev": true
+ },
+ "@types/node": {
+ "version": "14.0.1",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-14.0.1.tgz",
+ "integrity": "sha512-FAYBGwC+W6F9+huFIDtn43cpy7+SzG+atzRiTfdp3inUKL2hXnd4rG8hylJLIh4+hqrQy1P17kvJByE/z825hA==",
+ "dev": true
+ },
+ "@types/q": {
+ "version": "1.5.4",
+ "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz",
+ "integrity": "sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==",
+ "dev": true
+ },
+ "@types/resolve": {
+ "version": "0.0.8",
+ "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz",
+ "integrity": "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*"
+ }
+ },
+ "acorn": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.2.0.tgz",
+ "integrity": "sha512-apwXVmYVpQ34m/i71vrApRrRKCWQnZZF1+npOD0WV5xZFfwWOmKGQ2RWlfdy9vWITsenisM8M0Qeq8agcFHNiQ==",
+ "dev": true
+ },
+ "alphanum-sort": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz",
+ "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=",
+ "dev": true
+ },
+ "ansi-regex": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+ "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
+ "dev": true
+ },
+ "ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^1.9.0"
+ }
+ },
+ "argparse": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
+ "dev": true,
+ "requires": {
+ "sprintf-js": "~1.0.2"
+ }
+ },
+ "babel-plugin-dynamic-import-node": {
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz",
+ "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==",
+ "dev": true,
+ "requires": {
+ "object.assign": "^4.1.0"
+ }
+ },
+ "babel-plugin-react-require": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/babel-plugin-react-require/-/babel-plugin-react-require-3.1.3.tgz",
+ "integrity": "sha512-kDXhW2iPTL81x4Ye2aUMdEXQ56JP0sBJmRQRXJPH5FsNB7fOc/YCsHTqHv8IovPyw9Rk07gdd7MVUz8tUmRBCA==",
+ "dev": true
+ },
+ "big.js": {
+ "version": "5.2.2",
+ "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
+ "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
+ "dev": true
+ },
+ "boolbase": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
+ "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=",
+ "dev": true
+ },
+ "browserslist": {
+ "version": "4.12.0",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.12.0.tgz",
+ "integrity": "sha512-UH2GkcEDSI0k/lRkuDSzFl9ZZ87skSy9w2XAn1MsZnL+4c4rqbBd3e82UWHbYDpztABrPBhZsTEeuxVfHppqDg==",
+ "dev": true,
+ "requires": {
+ "caniuse-lite": "^1.0.30001043",
+ "electron-to-chromium": "^1.3.413",
+ "node-releases": "^1.1.53",
+ "pkg-up": "^2.0.0"
+ }
+ },
+ "builtin-modules": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.1.0.tgz",
+ "integrity": "sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==",
+ "dev": true
+ },
+ "builtins": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/builtins/-/builtins-2.0.1.tgz",
+ "integrity": "sha512-XkkVe5QAb6guWPXTzpSrYpSlN3nqEmrrE2TkAr/tp7idSF6+MONh9WvKrAuR3HiKLvoSgmbs8l1U9IPmMrIoLw==",
+ "dev": true,
+ "requires": {
+ "semver": "^6.0.0"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "dev": true
+ }
+ }
+ },
+ "caller-callsite": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz",
+ "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=",
+ "dev": true,
+ "requires": {
+ "callsites": "^2.0.0"
+ }
+ },
+ "caller-path": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz",
+ "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=",
+ "dev": true,
+ "requires": {
+ "caller-callsite": "^2.0.0"
+ }
+ },
+ "callsites": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz",
+ "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=",
+ "dev": true
+ },
+ "caniuse-api": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz",
+ "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==",
+ "dev": true,
+ "requires": {
+ "browserslist": "^4.0.0",
+ "caniuse-lite": "^1.0.0",
+ "lodash.memoize": "^4.1.2",
+ "lodash.uniq": "^4.5.0"
+ }
+ },
+ "caniuse-lite": {
+ "version": "1.0.30001061",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001061.tgz",
+ "integrity": "sha512-SMICCeiNvMZnyXpuoO+ot7FHpMVPlrsR+HmfByj6nY4xYDHXLqMTbgH7ecEkDNXWkH1vaip+ZS0D7VTXwM1KYQ==",
+ "dev": true
+ },
+ "chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ }
+ },
+ "coa": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz",
+ "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==",
+ "dev": true,
+ "requires": {
+ "@types/q": "^1.5.1",
+ "chalk": "^2.4.1",
+ "q": "^1.1.2"
+ }
+ },
+ "color": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/color/-/color-3.1.2.tgz",
+ "integrity": "sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^1.9.1",
+ "color-string": "^1.5.2"
+ }
+ },
+ "color-convert": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "dev": true,
+ "requires": {
+ "color-name": "1.1.3"
+ }
+ },
+ "color-name": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
+ "dev": true
+ },
+ "color-string": {
+ "version": "1.5.3",
+ "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz",
+ "integrity": "sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==",
+ "dev": true,
+ "requires": {
+ "color-name": "^1.0.0",
+ "simple-swizzle": "^0.2.2"
+ }
+ },
+ "concat-with-sourcemaps": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz",
+ "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==",
+ "dev": true,
+ "requires": {
+ "source-map": "^0.6.1"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "convert-source-map": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz",
+ "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==",
+ "dev": true,
+ "requires": {
+ "safe-buffer": "~5.1.1"
+ }
+ },
+ "core-js-compat": {
+ "version": "3.6.5",
+ "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.6.5.tgz",
+ "integrity": "sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng==",
+ "dev": true,
+ "requires": {
+ "browserslist": "^4.8.5",
+ "semver": "7.0.0"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz",
+ "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==",
+ "dev": true
+ }
+ }
+ },
+ "cosmiconfig": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz",
+ "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==",
+ "dev": true,
+ "requires": {
+ "import-fresh": "^2.0.0",
+ "is-directory": "^0.3.1",
+ "js-yaml": "^3.13.1",
+ "parse-json": "^4.0.0"
+ }
+ },
+ "css-color-names": {
+ "version": "0.0.4",
+ "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz",
+ "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=",
+ "dev": true
+ },
+ "css-declaration-sorter": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz",
+ "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.1",
+ "timsort": "^0.3.0"
+ }
+ },
+ "css-modules-loader-core": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/css-modules-loader-core/-/css-modules-loader-core-1.1.0.tgz",
+ "integrity": "sha1-WQhmgpShvs0mGuCkziGwtVHyHRY=",
+ "dev": true,
+ "requires": {
+ "icss-replace-symbols": "1.1.0",
+ "postcss": "6.0.1",
+ "postcss-modules-extract-imports": "1.1.0",
+ "postcss-modules-local-by-default": "1.2.0",
+ "postcss-modules-scope": "1.1.0",
+ "postcss-modules-values": "1.3.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+ "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
+ "dev": true
+ },
+ "chalk": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
+ "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^2.2.1",
+ "escape-string-regexp": "^1.0.2",
+ "has-ansi": "^2.0.0",
+ "strip-ansi": "^3.0.0",
+ "supports-color": "^2.0.0"
+ },
+ "dependencies": {
+ "supports-color": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
+ "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
+ "dev": true
+ }
+ }
+ },
+ "has-flag": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
+ "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
+ "dev": true
+ },
+ "postcss": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.1.tgz",
+ "integrity": "sha1-AA29H47vIXqjaLmiEsX8QLKo8/I=",
+ "dev": true,
+ "requires": {
+ "chalk": "^1.1.3",
+ "source-map": "^0.5.6",
+ "supports-color": "^3.2.3"
+ }
+ },
+ "supports-color": {
+ "version": "3.2.3",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
+ "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
+ "dev": true,
+ "requires": {
+ "has-flag": "^1.0.0"
+ }
+ }
+ }
+ },
+ "css-select": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz",
+ "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==",
+ "dev": true,
+ "requires": {
+ "boolbase": "^1.0.0",
+ "css-what": "^3.2.1",
+ "domutils": "^1.7.0",
+ "nth-check": "^1.0.2"
+ }
+ },
+ "css-select-base-adapter": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz",
+ "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==",
+ "dev": true
+ },
+ "css-selector-tokenizer": {
+ "version": "0.7.2",
+ "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.2.tgz",
+ "integrity": "sha512-yj856NGuAymN6r8bn8/Jl46pR+OC3eEvAhfGYDUe7YPtTPAYrSSw4oAniZ9Y8T5B92hjhwTBLUen0/vKPxf6pw==",
+ "dev": true,
+ "requires": {
+ "cssesc": "^3.0.0",
+ "fastparse": "^1.1.2",
+ "regexpu-core": "^4.6.0"
+ }
+ },
+ "css-tree": {
+ "version": "1.0.0-alpha.37",
+ "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz",
+ "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==",
+ "dev": true,
+ "requires": {
+ "mdn-data": "2.0.4",
+ "source-map": "^0.6.1"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "css-what": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.2.1.tgz",
+ "integrity": "sha512-WwOrosiQTvyms+Ti5ZC5vGEK0Vod3FTt1ca+payZqvKuGJF+dq7bG63DstxtN0dpm6FxY27a/zS3Wten+gEtGw==",
+ "dev": true
+ },
+ "cssesc": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
+ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
+ "dev": true
+ },
+ "cssnano": {
+ "version": "4.1.10",
+ "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz",
+ "integrity": "sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==",
+ "dev": true,
+ "requires": {
+ "cosmiconfig": "^5.0.0",
+ "cssnano-preset-default": "^4.0.7",
+ "is-resolvable": "^1.0.0",
+ "postcss": "^7.0.0"
+ }
+ },
+ "cssnano-preset-default": {
+ "version": "4.0.7",
+ "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz",
+ "integrity": "sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA==",
+ "dev": true,
+ "requires": {
+ "css-declaration-sorter": "^4.0.1",
+ "cssnano-util-raw-cache": "^4.0.1",
+ "postcss": "^7.0.0",
+ "postcss-calc": "^7.0.1",
+ "postcss-colormin": "^4.0.3",
+ "postcss-convert-values": "^4.0.1",
+ "postcss-discard-comments": "^4.0.2",
+ "postcss-discard-duplicates": "^4.0.2",
+ "postcss-discard-empty": "^4.0.1",
+ "postcss-discard-overridden": "^4.0.1",
+ "postcss-merge-longhand": "^4.0.11",
+ "postcss-merge-rules": "^4.0.3",
+ "postcss-minify-font-values": "^4.0.2",
+ "postcss-minify-gradients": "^4.0.2",
+ "postcss-minify-params": "^4.0.2",
+ "postcss-minify-selectors": "^4.0.2",
+ "postcss-normalize-charset": "^4.0.1",
+ "postcss-normalize-display-values": "^4.0.2",
+ "postcss-normalize-positions": "^4.0.2",
+ "postcss-normalize-repeat-style": "^4.0.2",
+ "postcss-normalize-string": "^4.0.2",
+ "postcss-normalize-timing-functions": "^4.0.2",
+ "postcss-normalize-unicode": "^4.0.1",
+ "postcss-normalize-url": "^4.0.1",
+ "postcss-normalize-whitespace": "^4.0.2",
+ "postcss-ordered-values": "^4.1.2",
+ "postcss-reduce-initial": "^4.0.3",
+ "postcss-reduce-transforms": "^4.0.2",
+ "postcss-svgo": "^4.0.2",
+ "postcss-unique-selectors": "^4.0.1"
+ }
+ },
+ "cssnano-util-get-arguments": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz",
+ "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=",
+ "dev": true
+ },
+ "cssnano-util-get-match": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz",
+ "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=",
+ "dev": true
+ },
+ "cssnano-util-raw-cache": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz",
+ "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.0"
+ }
+ },
+ "cssnano-util-same-parent": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz",
+ "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==",
+ "dev": true
+ },
+ "csso": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/csso/-/csso-4.0.3.tgz",
+ "integrity": "sha512-NL3spysxUkcrOgnpsT4Xdl2aiEiBG6bXswAABQVHcMrfjjBisFOKwLDOmf4wf32aPdcJws1zds2B0Rg+jqMyHQ==",
+ "dev": true,
+ "requires": {
+ "css-tree": "1.0.0-alpha.39"
+ },
+ "dependencies": {
+ "css-tree": {
+ "version": "1.0.0-alpha.39",
+ "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.39.tgz",
+ "integrity": "sha512-7UvkEYgBAHRG9Nt980lYxjsTrCyHFN53ky3wVsDkiMdVqylqRt+Zc+jm5qw7/qyOvN2dHSYtX0e4MbCCExSvnA==",
+ "dev": true,
+ "requires": {
+ "mdn-data": "2.0.6",
+ "source-map": "^0.6.1"
+ }
+ },
+ "mdn-data": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.6.tgz",
+ "integrity": "sha512-rQvjv71olwNHgiTbfPZFkJtjNMciWgswYeciZhtvWLO8bmX3TnhyA62I6sTWOyZssWHJJjY6/KiWwqQsWWsqOA==",
+ "dev": true
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "debug": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
+ "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
+ "dev": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ },
+ "define-properties": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
+ "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
+ "dev": true,
+ "requires": {
+ "object-keys": "^1.0.12"
+ }
+ },
+ "dom-serializer": {
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz",
+ "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==",
+ "dev": true,
+ "requires": {
+ "domelementtype": "^2.0.1",
+ "entities": "^2.0.0"
+ },
+ "dependencies": {
+ "domelementtype": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.1.tgz",
+ "integrity": "sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ==",
+ "dev": true
+ }
+ }
+ },
+ "domelementtype": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz",
+ "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==",
+ "dev": true
+ },
+ "domutils": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz",
+ "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==",
+ "dev": true,
+ "requires": {
+ "dom-serializer": "0",
+ "domelementtype": "1"
+ }
+ },
+ "dot-prop": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.2.0.tgz",
+ "integrity": "sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A==",
+ "dev": true,
+ "requires": {
+ "is-obj": "^2.0.0"
+ }
+ },
+ "electron-to-chromium": {
+ "version": "1.3.441",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.441.tgz",
+ "integrity": "sha512-leBfJwLuyGs1jEei2QioI+PjVMavmUIvPYidE8dCCYWLAq0uefhN3NYgDNb8WxD3uiUNnJ3ScMXg0upSlwySzQ==",
+ "dev": true
+ },
+ "emojis-list": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
+ "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
+ "dev": true
+ },
+ "entities": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.2.tgz",
+ "integrity": "sha512-dmD3AvJQBUjKpcNkoqr+x+IF0SdRtPz9Vk0uTy4yWqga9ibB6s4v++QFWNohjiUGoMlF552ZvNyXDxz5iW0qmw==",
+ "dev": true
+ },
+ "error-ex": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
+ "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
+ "dev": true,
+ "requires": {
+ "is-arrayish": "^0.2.1"
+ }
+ },
+ "es-abstract": {
+ "version": "1.17.5",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.5.tgz",
+ "integrity": "sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg==",
+ "dev": true,
+ "requires": {
+ "es-to-primitive": "^1.2.1",
+ "function-bind": "^1.1.1",
+ "has": "^1.0.3",
+ "has-symbols": "^1.0.1",
+ "is-callable": "^1.1.5",
+ "is-regex": "^1.0.5",
+ "object-inspect": "^1.7.0",
+ "object-keys": "^1.1.1",
+ "object.assign": "^4.1.0",
+ "string.prototype.trimleft": "^2.1.1",
+ "string.prototype.trimright": "^2.1.1"
+ }
+ },
+ "es-to-primitive": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
+ "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
+ "dev": true,
+ "requires": {
+ "is-callable": "^1.1.4",
+ "is-date-object": "^1.0.1",
+ "is-symbol": "^1.0.2"
+ }
+ },
+ "escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
+ "dev": true
+ },
+ "esprima": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
+ "dev": true
+ },
+ "estree-walker": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz",
+ "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==",
+ "dev": true
+ },
+ "esutils": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
+ "dev": true
+ },
+ "eventemitter3": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.4.tgz",
+ "integrity": "sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==",
+ "dev": true
+ },
+ "fastparse": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz",
+ "integrity": "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==",
+ "dev": true
+ },
+ "find-up": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
+ "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
+ "dev": true,
+ "requires": {
+ "locate-path": "^2.0.0"
+ }
+ },
+ "function-bind": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
+ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
+ "dev": true
+ },
+ "generic-names": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/generic-names/-/generic-names-2.0.1.tgz",
+ "integrity": "sha512-kPCHWa1m9wGG/OwQpeweTwM/PYiQLrUIxXbt/P4Nic3LbGjCP0YwrALHW1uNLKZ0LIMg+RF+XRlj2ekT9ZlZAQ==",
+ "dev": true,
+ "requires": {
+ "loader-utils": "^1.1.0"
+ }
+ },
+ "gensync": {
+ "version": "1.0.0-beta.1",
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.1.tgz",
+ "integrity": "sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==",
+ "dev": true
+ },
+ "globals": {
+ "version": "11.12.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
+ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
+ "dev": true
+ },
+ "graceful-fs": {
+ "version": "4.2.4",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
+ "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
+ "dev": true
+ },
+ "has": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
+ "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
+ "dev": true,
+ "requires": {
+ "function-bind": "^1.1.1"
+ }
+ },
+ "has-ansi": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
+ "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^2.0.0"
+ }
+ },
+ "has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
+ "dev": true
+ },
+ "has-symbols": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
+ "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
+ "dev": true
+ },
+ "hex-color-regex": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz",
+ "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==",
+ "dev": true
+ },
+ "hosted-git-info": {
+ "version": "2.8.8",
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz",
+ "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==",
+ "dev": true
+ },
+ "hsl-regex": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz",
+ "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=",
+ "dev": true
+ },
+ "hsla-regex": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz",
+ "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=",
+ "dev": true
+ },
+ "html-comment-regex": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz",
+ "integrity": "sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==",
+ "dev": true
+ },
+ "icss-replace-symbols": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz",
+ "integrity": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=",
+ "dev": true
+ },
+ "import-cwd": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-3.0.0.tgz",
+ "integrity": "sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==",
+ "dev": true,
+ "requires": {
+ "import-from": "^3.0.0"
+ }
+ },
+ "import-fresh": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz",
+ "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=",
+ "dev": true,
+ "requires": {
+ "caller-path": "^2.0.0",
+ "resolve-from": "^3.0.0"
+ }
+ },
+ "import-from": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/import-from/-/import-from-3.0.0.tgz",
+ "integrity": "sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==",
+ "dev": true,
+ "requires": {
+ "resolve-from": "^5.0.0"
+ },
+ "dependencies": {
+ "resolve-from": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
+ "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
+ "dev": true
+ }
+ }
+ },
+ "indexes-of": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz",
+ "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=",
+ "dev": true
+ },
+ "invariant": {
+ "version": "2.2.4",
+ "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz",
+ "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==",
+ "dev": true,
+ "requires": {
+ "loose-envify": "^1.0.0"
+ }
+ },
+ "is-absolute-url": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz",
+ "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=",
+ "dev": true
+ },
+ "is-arrayish": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
+ "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=",
+ "dev": true
+ },
+ "is-callable": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.5.tgz",
+ "integrity": "sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==",
+ "dev": true
+ },
+ "is-color-stop": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz",
+ "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=",
+ "dev": true,
+ "requires": {
+ "css-color-names": "^0.0.4",
+ "hex-color-regex": "^1.1.0",
+ "hsl-regex": "^1.0.0",
+ "hsla-regex": "^1.0.0",
+ "rgb-regex": "^1.0.1",
+ "rgba-regex": "^1.0.0"
+ }
+ },
+ "is-date-object": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz",
+ "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==",
+ "dev": true
+ },
+ "is-directory": {
+ "version": "0.3.1",
+ "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz",
+ "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=",
+ "dev": true
+ },
+ "is-module": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz",
+ "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=",
+ "dev": true
+ },
+ "is-obj": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
+ "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==",
+ "dev": true
+ },
+ "is-regex": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.5.tgz",
+ "integrity": "sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==",
+ "dev": true,
+ "requires": {
+ "has": "^1.0.3"
+ }
+ },
+ "is-resolvable": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz",
+ "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==",
+ "dev": true
+ },
+ "is-svg": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz",
+ "integrity": "sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==",
+ "dev": true,
+ "requires": {
+ "html-comment-regex": "^1.1.0"
+ }
+ },
+ "is-symbol": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
+ "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
+ "dev": true,
+ "requires": {
+ "has-symbols": "^1.0.1"
+ }
+ },
+ "js-tokens": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
+ "dev": true
+ },
+ "js-yaml": {
+ "version": "3.13.1",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz",
+ "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==",
+ "dev": true,
+ "requires": {
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
+ }
+ },
+ "jsesc": {
+ "version": "2.5.2",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
+ "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
+ "dev": true
+ },
+ "json-parse-better-errors": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
+ "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==",
+ "dev": true
+ },
+ "json5": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz",
+ "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.5"
+ }
+ },
+ "leven": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz",
+ "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==",
+ "dev": true
+ },
+ "levenary": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/levenary/-/levenary-1.1.1.tgz",
+ "integrity": "sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ==",
+ "dev": true,
+ "requires": {
+ "leven": "^3.1.0"
+ }
+ },
+ "load-json-file": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz",
+ "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=",
+ "dev": true,
+ "requires": {
+ "graceful-fs": "^4.1.2",
+ "parse-json": "^4.0.0",
+ "pify": "^3.0.0",
+ "strip-bom": "^3.0.0"
+ }
+ },
+ "loader-utils": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz",
+ "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==",
+ "dev": true,
+ "requires": {
+ "big.js": "^5.2.2",
+ "emojis-list": "^3.0.0",
+ "json5": "^1.0.1"
+ },
+ "dependencies": {
+ "json5": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
+ "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.0"
+ }
+ }
+ }
+ },
+ "locate-path": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
+ "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
+ "dev": true,
+ "requires": {
+ "p-locate": "^2.0.0",
+ "path-exists": "^3.0.0"
+ }
+ },
+ "lodash": {
+ "version": "4.17.19",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
+ "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
+ "dev": true
+ },
+ "lodash.camelcase": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz",
+ "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=",
+ "dev": true
+ },
+ "lodash.memoize": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
+ "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=",
+ "dev": true
+ },
+ "lodash.uniq": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
+ "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=",
+ "dev": true
+ },
+ "loose-envify": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
+ "dev": true,
+ "requires": {
+ "js-tokens": "^3.0.0 || ^4.0.0"
+ }
+ },
+ "mdn-data": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz",
+ "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==",
+ "dev": true
+ },
+ "minimist": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
+ "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
+ "dev": true
+ },
+ "mkdirp": {
+ "version": "0.5.5",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
+ "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.5"
+ }
+ },
+ "ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
+ "dev": true
+ },
+ "node-releases": {
+ "version": "1.1.55",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.55.tgz",
+ "integrity": "sha512-H3R3YR/8TjT5WPin/wOoHOUPHgvj8leuU/Keta/rwelEQN9pA/S2Dx8/se4pZ2LBxSd0nAGzsNzhqwa77v7F1w==",
+ "dev": true
+ },
+ "normalize-package-data": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
+ "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==",
+ "dev": true,
+ "requires": {
+ "hosted-git-info": "^2.1.4",
+ "resolve": "^1.10.0",
+ "semver": "2 || 3 || 4 || 5",
+ "validate-npm-package-license": "^3.0.1"
+ }
+ },
+ "normalize-url": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz",
+ "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==",
+ "dev": true
+ },
+ "nth-check": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz",
+ "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==",
+ "dev": true,
+ "requires": {
+ "boolbase": "~1.0.0"
+ }
+ },
+ "object-assign": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
+ "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=",
+ "dev": true
+ },
+ "object-inspect": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.7.0.tgz",
+ "integrity": "sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==",
+ "dev": true
+ },
+ "object-keys": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
+ "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
+ "dev": true
+ },
+ "object.assign": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz",
+ "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.2",
+ "function-bind": "^1.1.1",
+ "has-symbols": "^1.0.0",
+ "object-keys": "^1.0.11"
+ }
+ },
+ "object.getownpropertydescriptors": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz",
+ "integrity": "sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.17.0-next.1"
+ }
+ },
+ "object.values": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.1.tgz",
+ "integrity": "sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.17.0-next.1",
+ "function-bind": "^1.1.1",
+ "has": "^1.0.3"
+ }
+ },
+ "p-finally": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
+ "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
+ "dev": true
+ },
+ "p-limit": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
+ "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
+ "dev": true,
+ "requires": {
+ "p-try": "^1.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
+ "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
+ "dev": true,
+ "requires": {
+ "p-limit": "^1.1.0"
+ }
+ },
+ "p-queue": {
+ "version": "6.4.0",
+ "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.4.0.tgz",
+ "integrity": "sha512-X7ddxxiQ+bLR/CUt3/BVKrGcJDNxBr0pEEFKHHB6vTPWNUhgDv36GpIH18RmGM3YGPpBT+JWGjDDqsVGuF0ERw==",
+ "dev": true,
+ "requires": {
+ "eventemitter3": "^4.0.0",
+ "p-timeout": "^3.1.0"
+ }
+ },
+ "p-timeout": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz",
+ "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==",
+ "dev": true,
+ "requires": {
+ "p-finally": "^1.0.0"
+ }
+ },
+ "p-try": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
+ "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=",
+ "dev": true
+ },
+ "parse-json": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz",
+ "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=",
+ "dev": true,
+ "requires": {
+ "error-ex": "^1.3.1",
+ "json-parse-better-errors": "^1.0.1"
+ }
+ },
+ "path-exists": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
+ "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=",
+ "dev": true
+ },
+ "path-parse": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz",
+ "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==",
+ "dev": true
+ },
+ "path-type": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz",
+ "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==",
+ "dev": true,
+ "requires": {
+ "pify": "^3.0.0"
+ }
+ },
+ "picomatch": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz",
+ "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==",
+ "dev": true
+ },
+ "pify": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
+ "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
+ "dev": true
+ },
+ "pkg-up": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz",
+ "integrity": "sha1-yBmscoBZpGHKscOImivjxJoATX8=",
+ "dev": true,
+ "requires": {
+ "find-up": "^2.1.0"
+ }
+ },
+ "postcss": {
+ "version": "7.0.30",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.30.tgz",
+ "integrity": "sha512-nu/0m+NtIzoubO+xdAlwZl/u5S5vi/y6BCsoL8D+8IxsD3XvBS8X4YEADNIVXKVuQvduiucnRv+vPIqj56EGMQ==",
+ "dev": true,
+ "requires": {
+ "chalk": "^2.4.2",
+ "source-map": "^0.6.1",
+ "supports-color": "^6.1.0"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
+ "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ }
+ }
+ },
+ "postcss-calc": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.2.tgz",
+ "integrity": "sha512-rofZFHUg6ZIrvRwPeFktv06GdbDYLcGqh9EwiMutZg+a0oePCCw1zHOEiji6LCpyRcjTREtPASuUqeAvYlEVvQ==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.27",
+ "postcss-selector-parser": "^6.0.2",
+ "postcss-value-parser": "^4.0.2"
+ }
+ },
+ "postcss-colormin": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz",
+ "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==",
+ "dev": true,
+ "requires": {
+ "browserslist": "^4.0.0",
+ "color": "^3.0.0",
+ "has": "^1.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ },
+ "dependencies": {
+ "postcss-value-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-convert-values": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz",
+ "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ },
+ "dependencies": {
+ "postcss-value-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-discard-comments": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz",
+ "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.0"
+ }
+ },
+ "postcss-discard-duplicates": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz",
+ "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.0"
+ }
+ },
+ "postcss-discard-empty": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz",
+ "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.0"
+ }
+ },
+ "postcss-discard-overridden": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz",
+ "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.0"
+ }
+ },
+ "postcss-load-config": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.0.tgz",
+ "integrity": "sha512-4pV3JJVPLd5+RueiVVB+gFOAa7GWc25XQcMp86Zexzke69mKf6Nx9LRcQywdz7yZI9n1udOxmLuAwTBypypF8Q==",
+ "dev": true,
+ "requires": {
+ "cosmiconfig": "^5.0.0",
+ "import-cwd": "^2.0.0"
+ },
+ "dependencies": {
+ "import-cwd": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz",
+ "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=",
+ "dev": true,
+ "requires": {
+ "import-from": "^2.1.0"
+ }
+ },
+ "import-from": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz",
+ "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=",
+ "dev": true,
+ "requires": {
+ "resolve-from": "^3.0.0"
+ }
+ }
+ }
+ },
+ "postcss-merge-longhand": {
+ "version": "4.0.11",
+ "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz",
+ "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==",
+ "dev": true,
+ "requires": {
+ "css-color-names": "0.0.4",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0",
+ "stylehacks": "^4.0.0"
+ },
+ "dependencies": {
+ "postcss-value-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-merge-rules": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz",
+ "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==",
+ "dev": true,
+ "requires": {
+ "browserslist": "^4.0.0",
+ "caniuse-api": "^3.0.0",
+ "cssnano-util-same-parent": "^4.0.0",
+ "postcss": "^7.0.0",
+ "postcss-selector-parser": "^3.0.0",
+ "vendors": "^1.0.0"
+ },
+ "dependencies": {
+ "postcss-selector-parser": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz",
+ "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==",
+ "dev": true,
+ "requires": {
+ "dot-prop": "^5.2.0",
+ "indexes-of": "^1.0.1",
+ "uniq": "^1.0.1"
+ }
+ }
+ }
+ },
+ "postcss-minify-font-values": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz",
+ "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ },
+ "dependencies": {
+ "postcss-value-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-minify-gradients": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz",
+ "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==",
+ "dev": true,
+ "requires": {
+ "cssnano-util-get-arguments": "^4.0.0",
+ "is-color-stop": "^1.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ },
+ "dependencies": {
+ "postcss-value-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-minify-params": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz",
+ "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==",
+ "dev": true,
+ "requires": {
+ "alphanum-sort": "^1.0.0",
+ "browserslist": "^4.0.0",
+ "cssnano-util-get-arguments": "^4.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0",
+ "uniqs": "^2.0.0"
+ },
+ "dependencies": {
+ "postcss-value-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-minify-selectors": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz",
+ "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==",
+ "dev": true,
+ "requires": {
+ "alphanum-sort": "^1.0.0",
+ "has": "^1.0.0",
+ "postcss": "^7.0.0",
+ "postcss-selector-parser": "^3.0.0"
+ },
+ "dependencies": {
+ "postcss-selector-parser": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz",
+ "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==",
+ "dev": true,
+ "requires": {
+ "dot-prop": "^5.2.0",
+ "indexes-of": "^1.0.1",
+ "uniq": "^1.0.1"
+ }
+ }
+ }
+ },
+ "postcss-modules": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/postcss-modules/-/postcss-modules-2.0.0.tgz",
+ "integrity": "sha512-eqp+Bva+U2cwQO7dECJ8/V+X+uH1HduNeITB0CPPFAu6d/8LKQ32/j+p9rQ2YL1QytVcrNU0X+fBqgGmQIA1Rw==",
+ "dev": true,
+ "requires": {
+ "css-modules-loader-core": "^1.1.0",
+ "generic-names": "^2.0.1",
+ "lodash.camelcase": "^4.3.0",
+ "postcss": "^7.0.1",
+ "string-hash": "^1.1.1"
+ }
+ },
+ "postcss-modules-extract-imports": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.1.0.tgz",
+ "integrity": "sha1-thTJcgvmgW6u41+zpfqh26agXds=",
+ "dev": true,
+ "requires": {
+ "postcss": "^6.0.1"
+ },
+ "dependencies": {
+ "postcss": {
+ "version": "6.0.23",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
+ "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
+ "dev": true,
+ "requires": {
+ "chalk": "^2.4.1",
+ "source-map": "^0.6.1",
+ "supports-color": "^5.4.0"
+ }
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-modules-local-by-default": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz",
+ "integrity": "sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk=",
+ "dev": true,
+ "requires": {
+ "css-selector-tokenizer": "^0.7.0",
+ "postcss": "^6.0.1"
+ },
+ "dependencies": {
+ "postcss": {
+ "version": "6.0.23",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
+ "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
+ "dev": true,
+ "requires": {
+ "chalk": "^2.4.1",
+ "source-map": "^0.6.1",
+ "supports-color": "^5.4.0"
+ }
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-modules-scope": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz",
+ "integrity": "sha1-1upkmUx5+XtipytCb75gVqGUu5A=",
+ "dev": true,
+ "requires": {
+ "css-selector-tokenizer": "^0.7.0",
+ "postcss": "^6.0.1"
+ },
+ "dependencies": {
+ "postcss": {
+ "version": "6.0.23",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
+ "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
+ "dev": true,
+ "requires": {
+ "chalk": "^2.4.1",
+ "source-map": "^0.6.1",
+ "supports-color": "^5.4.0"
+ }
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-modules-values": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz",
+ "integrity": "sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA=",
+ "dev": true,
+ "requires": {
+ "icss-replace-symbols": "^1.1.0",
+ "postcss": "^6.0.1"
+ },
+ "dependencies": {
+ "postcss": {
+ "version": "6.0.23",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
+ "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
+ "dev": true,
+ "requires": {
+ "chalk": "^2.4.1",
+ "source-map": "^0.6.1",
+ "supports-color": "^5.4.0"
+ }
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-normalize-charset": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz",
+ "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.0"
+ }
+ },
+ "postcss-normalize-display-values": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz",
+ "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==",
+ "dev": true,
+ "requires": {
+ "cssnano-util-get-match": "^4.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ },
+ "dependencies": {
+ "postcss-value-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-normalize-positions": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz",
+ "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==",
+ "dev": true,
+ "requires": {
+ "cssnano-util-get-arguments": "^4.0.0",
+ "has": "^1.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ },
+ "dependencies": {
+ "postcss-value-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-normalize-repeat-style": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz",
+ "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==",
+ "dev": true,
+ "requires": {
+ "cssnano-util-get-arguments": "^4.0.0",
+ "cssnano-util-get-match": "^4.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ },
+ "dependencies": {
+ "postcss-value-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-normalize-string": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz",
+ "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==",
+ "dev": true,
+ "requires": {
+ "has": "^1.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ },
+ "dependencies": {
+ "postcss-value-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-normalize-timing-functions": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz",
+ "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==",
+ "dev": true,
+ "requires": {
+ "cssnano-util-get-match": "^4.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ },
+ "dependencies": {
+ "postcss-value-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-normalize-unicode": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz",
+ "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==",
+ "dev": true,
+ "requires": {
+ "browserslist": "^4.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ },
+ "dependencies": {
+ "postcss-value-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-normalize-url": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz",
+ "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==",
+ "dev": true,
+ "requires": {
+ "is-absolute-url": "^2.0.0",
+ "normalize-url": "^3.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ },
+ "dependencies": {
+ "postcss-value-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-normalize-whitespace": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz",
+ "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==",
+ "dev": true,
+ "requires": {
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ },
+ "dependencies": {
+ "postcss-value-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-ordered-values": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz",
+ "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==",
+ "dev": true,
+ "requires": {
+ "cssnano-util-get-arguments": "^4.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ },
+ "dependencies": {
+ "postcss-value-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-reduce-initial": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz",
+ "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==",
+ "dev": true,
+ "requires": {
+ "browserslist": "^4.0.0",
+ "caniuse-api": "^3.0.0",
+ "has": "^1.0.0",
+ "postcss": "^7.0.0"
+ }
+ },
+ "postcss-reduce-transforms": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz",
+ "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==",
+ "dev": true,
+ "requires": {
+ "cssnano-util-get-match": "^4.0.0",
+ "has": "^1.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0"
+ },
+ "dependencies": {
+ "postcss-value-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-selector-parser": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz",
+ "integrity": "sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==",
+ "dev": true,
+ "requires": {
+ "cssesc": "^3.0.0",
+ "indexes-of": "^1.0.1",
+ "uniq": "^1.0.1"
+ }
+ },
+ "postcss-svgo": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.2.tgz",
+ "integrity": "sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw==",
+ "dev": true,
+ "requires": {
+ "is-svg": "^3.0.0",
+ "postcss": "^7.0.0",
+ "postcss-value-parser": "^3.0.0",
+ "svgo": "^1.0.0"
+ },
+ "dependencies": {
+ "postcss-value-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
+ "dev": true
+ }
+ }
+ },
+ "postcss-unique-selectors": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz",
+ "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==",
+ "dev": true,
+ "requires": {
+ "alphanum-sort": "^1.0.0",
+ "postcss": "^7.0.0",
+ "uniqs": "^2.0.0"
+ }
+ },
+ "postcss-value-parser": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz",
+ "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==",
+ "dev": true
+ },
+ "promise.series": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/promise.series/-/promise.series-0.2.0.tgz",
+ "integrity": "sha1-LMfr6Vn8OmYZwEq029yeRS2GS70=",
+ "dev": true
+ },
+ "prop-types": {
+ "version": "15.7.2",
+ "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz",
+ "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==",
+ "dev": true,
+ "requires": {
+ "loose-envify": "^1.4.0",
+ "object-assign": "^4.1.1",
+ "react-is": "^16.8.1"
+ }
+ },
+ "q": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz",
+ "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=",
+ "dev": true
+ },
+ "react": {
+ "version": "16.13.1",
+ "resolved": "https://registry.npmjs.org/react/-/react-16.13.1.tgz",
+ "integrity": "sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w==",
+ "dev": true,
+ "requires": {
+ "loose-envify": "^1.1.0",
+ "object-assign": "^4.1.1",
+ "prop-types": "^15.6.2"
+ }
+ },
+ "react-is": {
+ "version": "16.13.1",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
+ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
+ "dev": true
+ },
+ "read-pkg": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz",
+ "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=",
+ "dev": true,
+ "requires": {
+ "load-json-file": "^4.0.0",
+ "normalize-package-data": "^2.3.2",
+ "path-type": "^3.0.0"
+ }
+ },
+ "regenerate": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz",
+ "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==",
+ "dev": true
+ },
+ "regenerate-unicode-properties": {
+ "version": "8.2.0",
+ "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz",
+ "integrity": "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==",
+ "dev": true,
+ "requires": {
+ "regenerate": "^1.4.0"
+ }
+ },
+ "regenerator-runtime": {
+ "version": "0.13.5",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz",
+ "integrity": "sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==",
+ "dev": true
+ },
+ "regenerator-transform": {
+ "version": "0.14.5",
+ "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz",
+ "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.8.4"
+ }
+ },
+ "regexpu-core": {
+ "version": "4.7.0",
+ "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.0.tgz",
+ "integrity": "sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ==",
+ "dev": true,
+ "requires": {
+ "regenerate": "^1.4.0",
+ "regenerate-unicode-properties": "^8.2.0",
+ "regjsgen": "^0.5.1",
+ "regjsparser": "^0.6.4",
+ "unicode-match-property-ecmascript": "^1.0.4",
+ "unicode-match-property-value-ecmascript": "^1.2.0"
+ }
+ },
+ "regjsgen": {
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.1.tgz",
+ "integrity": "sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg==",
+ "dev": true
+ },
+ "regjsparser": {
+ "version": "0.6.4",
+ "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz",
+ "integrity": "sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==",
+ "dev": true,
+ "requires": {
+ "jsesc": "~0.5.0"
+ },
+ "dependencies": {
+ "jsesc": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
+ "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
+ "dev": true
+ }
+ }
+ },
+ "resolve": {
+ "version": "1.17.0",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz",
+ "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==",
+ "dev": true,
+ "requires": {
+ "path-parse": "^1.0.6"
+ }
+ },
+ "resolve-from": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz",
+ "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=",
+ "dev": true
+ },
+ "rgb-regex": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz",
+ "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=",
+ "dev": true
+ },
+ "rgba-regex": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz",
+ "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=",
+ "dev": true
+ },
+ "rollup": {
+ "version": "1.32.1",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-1.32.1.tgz",
+ "integrity": "sha512-/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==",
+ "dev": true,
+ "requires": {
+ "@types/estree": "*",
+ "@types/node": "*",
+ "acorn": "^7.1.0"
+ }
+ },
+ "rollup-plugin-auto-external": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/rollup-plugin-auto-external/-/rollup-plugin-auto-external-2.0.0.tgz",
+ "integrity": "sha512-HQM3ZkZYfSam1uoZtAB9sK26EiAsfs1phrkf91c/YX+S07wugyRXSigBxrIwiLr5EPPilKYmoMxsrnlGBsXnuQ==",
+ "dev": true,
+ "requires": {
+ "builtins": "^2.0.0",
+ "read-pkg": "^3.0.0",
+ "safe-resolve": "^1.0.0",
+ "semver": "^5.5.0"
+ }
+ },
+ "rollup-plugin-babel": {
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/rollup-plugin-babel/-/rollup-plugin-babel-4.4.0.tgz",
+ "integrity": "sha512-Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-module-imports": "^7.0.0",
+ "rollup-pluginutils": "^2.8.1"
+ }
+ },
+ "rollup-plugin-node-resolve": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-5.2.0.tgz",
+ "integrity": "sha512-jUlyaDXts7TW2CqQ4GaO5VJ4PwwaV8VUGA7+km3n6k6xtOEacf61u0VXwN80phY/evMcaS+9eIeJ9MOyDxt5Zw==",
+ "dev": true,
+ "requires": {
+ "@types/resolve": "0.0.8",
+ "builtin-modules": "^3.1.0",
+ "is-module": "^1.0.0",
+ "resolve": "^1.11.1",
+ "rollup-pluginutils": "^2.8.1"
+ }
+ },
+ "rollup-plugin-postcss": {
+ "version": "2.9.0",
+ "resolved": "https://registry.npmjs.org/rollup-plugin-postcss/-/rollup-plugin-postcss-2.9.0.tgz",
+ "integrity": "sha512-Y7qDwlqjZMBexbB1kRJf+jKIQL8HR6C+ay53YzN+nNJ64hn1PNZfBE3c61hFUhD//zrMwmm7uBW30RuTi+CD0w==",
+ "dev": true,
+ "requires": {
+ "chalk": "^4.0.0",
+ "concat-with-sourcemaps": "^1.1.0",
+ "cssnano": "^4.1.10",
+ "import-cwd": "^3.0.0",
+ "p-queue": "^6.3.0",
+ "pify": "^5.0.0",
+ "postcss": "^7.0.27",
+ "postcss-load-config": "^2.1.0",
+ "postcss-modules": "^2.0.0",
+ "promise.series": "^0.2.0",
+ "resolve": "^1.16.0",
+ "rollup-pluginutils": "^2.8.2",
+ "safe-identifier": "^0.4.1",
+ "style-inject": "^0.3.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "dev": true,
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.0.0.tgz",
+ "integrity": "sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "pify": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-5.0.0.tgz",
+ "integrity": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "rollup-plugin-string": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/rollup-plugin-string/-/rollup-plugin-string-3.0.0.tgz",
+ "integrity": "sha512-vqyzgn9QefAgeKi+Y4A7jETeIAU1zQmS6VotH6bzm/zmUQEnYkpIGRaOBPY41oiWYV4JyBoGAaBjYMYuv+6wVw==",
+ "dev": true,
+ "requires": {
+ "rollup-pluginutils": "^2.4.1"
+ }
+ },
+ "rollup-pluginutils": {
+ "version": "2.8.2",
+ "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz",
+ "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==",
+ "dev": true,
+ "requires": {
+ "estree-walker": "^0.6.1"
+ }
+ },
+ "safe-buffer": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
+ "dev": true
+ },
+ "safe-identifier": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/safe-identifier/-/safe-identifier-0.4.1.tgz",
+ "integrity": "sha512-73tOz5TXsq3apuCc3vC8c9QRhhdNZGiBhHmPPjqpH4TO5oCDqk8UIsDcSs/RG6dYcFAkOOva0pqHS3u7hh7XXA==",
+ "dev": true
+ },
+ "safe-resolve": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/safe-resolve/-/safe-resolve-1.0.0.tgz",
+ "integrity": "sha1-/jT40p16O+z9JJ0KqKeZtcPPZVk=",
+ "dev": true
+ },
+ "sax": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
+ "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==",
+ "dev": true
+ },
+ "semver": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+ "dev": true
+ },
+ "simple-swizzle": {
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
+ "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=",
+ "dev": true,
+ "requires": {
+ "is-arrayish": "^0.3.1"
+ },
+ "dependencies": {
+ "is-arrayish": {
+ "version": "0.3.2",
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
+ "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==",
+ "dev": true
+ }
+ }
+ },
+ "slash": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
+ "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
+ "dev": true
+ },
+ "source-map": {
+ "version": "0.5.7",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+ "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
+ "dev": true
+ },
+ "spdx-correct": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz",
+ "integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==",
+ "dev": true,
+ "requires": {
+ "spdx-expression-parse": "^3.0.0",
+ "spdx-license-ids": "^3.0.0"
+ }
+ },
+ "spdx-exceptions": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz",
+ "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==",
+ "dev": true
+ },
+ "spdx-expression-parse": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
+ "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
+ "dev": true,
+ "requires": {
+ "spdx-exceptions": "^2.1.0",
+ "spdx-license-ids": "^3.0.0"
+ }
+ },
+ "spdx-license-ids": {
+ "version": "3.0.5",
+ "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz",
+ "integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==",
+ "dev": true
+ },
+ "sprintf-js": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
+ "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=",
+ "dev": true
+ },
+ "stable": {
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz",
+ "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==",
+ "dev": true
+ },
+ "string-hash": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz",
+ "integrity": "sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=",
+ "dev": true
+ },
+ "string.prototype.trimend": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz",
+ "integrity": "sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.17.5"
+ }
+ },
+ "string.prototype.trimleft": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz",
+ "integrity": "sha512-gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.17.5",
+ "string.prototype.trimstart": "^1.0.0"
+ }
+ },
+ "string.prototype.trimright": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz",
+ "integrity": "sha512-ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.17.5",
+ "string.prototype.trimend": "^1.0.0"
+ }
+ },
+ "string.prototype.trimstart": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz",
+ "integrity": "sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.17.5"
+ }
+ },
+ "strip-ansi": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
+ "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^2.0.0"
+ }
+ },
+ "strip-bom": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
+ "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=",
+ "dev": true
+ },
+ "style-inject": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/style-inject/-/style-inject-0.3.0.tgz",
+ "integrity": "sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==",
+ "dev": true
+ },
+ "stylehacks": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz",
+ "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==",
+ "dev": true,
+ "requires": {
+ "browserslist": "^4.0.0",
+ "postcss": "^7.0.0",
+ "postcss-selector-parser": "^3.0.0"
+ },
+ "dependencies": {
+ "postcss-selector-parser": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz",
+ "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==",
+ "dev": true,
+ "requires": {
+ "dot-prop": "^5.2.0",
+ "indexes-of": "^1.0.1",
+ "uniq": "^1.0.1"
+ }
+ }
+ }
+ },
+ "supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ },
+ "svgo": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz",
+ "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==",
+ "dev": true,
+ "requires": {
+ "chalk": "^2.4.1",
+ "coa": "^2.0.2",
+ "css-select": "^2.0.0",
+ "css-select-base-adapter": "^0.1.1",
+ "css-tree": "1.0.0-alpha.37",
+ "csso": "^4.0.2",
+ "js-yaml": "^3.13.1",
+ "mkdirp": "~0.5.1",
+ "object.values": "^1.1.0",
+ "sax": "~1.2.4",
+ "stable": "^0.1.8",
+ "unquote": "~1.1.1",
+ "util.promisify": "~1.0.0"
+ }
+ },
+ "timsort": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz",
+ "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=",
+ "dev": true
+ },
+ "to-fast-properties": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
+ "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=",
+ "dev": true
+ },
+ "unicode-canonical-property-names-ecmascript": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz",
+ "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==",
+ "dev": true
+ },
+ "unicode-match-property-ecmascript": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz",
+ "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==",
+ "dev": true,
+ "requires": {
+ "unicode-canonical-property-names-ecmascript": "^1.0.4",
+ "unicode-property-aliases-ecmascript": "^1.0.4"
+ }
+ },
+ "unicode-match-property-value-ecmascript": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz",
+ "integrity": "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==",
+ "dev": true
+ },
+ "unicode-property-aliases-ecmascript": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz",
+ "integrity": "sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==",
+ "dev": true
+ },
+ "uniq": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz",
+ "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=",
+ "dev": true
+ },
+ "uniqs": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz",
+ "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=",
+ "dev": true
+ },
+ "unquote": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz",
+ "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=",
+ "dev": true
+ },
+ "util.promisify": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz",
+ "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.17.2",
+ "has-symbols": "^1.0.1",
+ "object.getownpropertydescriptors": "^2.1.0"
+ }
+ },
+ "validate-npm-package-license": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
+ "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
+ "dev": true,
+ "requires": {
+ "spdx-correct": "^3.0.0",
+ "spdx-expression-parse": "^3.0.0"
+ }
+ },
+ "vendors": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz",
+ "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==",
+ "dev": true
+ }
+ }
+}
diff --git a/packages/ui-icons/osui-icons-icloud/package.json b/packages/ui-icons/osui-icons-icloud/package.json
new file mode 100644
index 0000000000000000000000000000000000000000..7523928993aa030a2378fd4ff73065adc9c6fa4d
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/package.json
@@ -0,0 +1,56 @@
+{
+ "name": "@osui/icons-icloud",
+ "version": "0.10.1",
+ "description": "OSUI icons icloud-theme",
+ "author": {
+ "name": "zhanglili01,huoyuxuan,lisiqi06,guyiling"
+ },
+ "scripts": {
+ "build": "yarn workspace @osui/icons-builder generate icloud && sh scripts/build.sh",
+ "build-icons-only": "sh scripts/build.sh",
+ "prepublishOnly": "npm run build",
+ "clean": "rm -rf dist && rm -rf node_modules"
+ },
+ "main": "dist/cjs/index.js",
+ "module": "dist/es/index.js",
+ "types": "dist/index.d.ts",
+ "devDependencies": {
+ "@babel/core": "^7.10.5",
+ "@babel/plugin-proposal-export-default-from": "^7.10.4",
+ "@babel/preset-env": "^7.10.4",
+ "@babel/preset-react": "^7.10.4",
+ "@rollup/plugin-alias": "^3.1.1",
+ "@rollup/plugin-json": "^4.1.0",
+ "babel-plugin-react-require": "^3.0.0",
+ "react": "^16.4.1",
+ "rollup": "^1.12.3",
+ "rollup-plugin-auto-external": "^2.0.0",
+ "rollup-plugin-babel": "^4.3.2",
+ "rollup-plugin-node-resolve": "^5.0.0",
+ "rollup-plugin-postcss": "^2.0.3",
+ "rollup-plugin-string": "^3.0.0"
+ },
+ "files": [
+ "dist",
+ "README.md"
+ ],
+ "keywords": [
+ "icon",
+ "svg",
+ "ui",
+ "dls",
+ "react"
+ ],
+ "license": "MIT",
+ "peerDependencies": {
+ "react": ">=16"
+ },
+ "dependencies": {
+ "classnames": "^2.2.6"
+ },
+ "publishConfig": {
+ "access": "public",
+ "registry": "https://registry.npmjs.com"
+ },
+ "gitHead": "904178b6c0bb86963017122daa529580decb66e8"
+}
diff --git a/packages/ui-icons/osui-icons-icloud/raw/arrow-down-outlined.svg b/packages/ui-icons/osui-icons-icloud/raw/arrow-down-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..e8cdb8c412f9378c26d4887b982fa82492ac401a
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/arrow-down-outlined.svg
@@ -0,0 +1,10 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/raw/arrow-left-outlined.svg b/packages/ui-icons/osui-icons-icloud/raw/arrow-left-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..e07cc4c7040ca7330de2f1cacf6b04ee6e276ef3
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/arrow-left-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/raw/arrow-up-outlined.svg b/packages/ui-icons/osui-icons-icloud/raw/arrow-up-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..b47cf06600e77b142bd174e849b18f2abfc18ef8
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/arrow-up-outlined.svg
@@ -0,0 +1,10 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/raw/branch-dropdown.svg b/packages/ui-icons/osui-icons-icloud/raw/branch-dropdown.svg
new file mode 100644
index 0000000000000000000000000000000000000000..d990d4d72828d604b390a9fd1acf2fadcdc35e8c
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/branch-dropdown.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/raw/branch-filter.svg b/packages/ui-icons/osui-icons-icloud/raw/branch-filter.svg
new file mode 100644
index 0000000000000000000000000000000000000000..8c39e313b5937f121b602e794d70ab12ebfd2fe1
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/branch-filter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/raw/caret-down-outlined.svg b/packages/ui-icons/osui-icons-icloud/raw/caret-down-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..c6bb19a34aaacad660b34d244777a805df686655
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/caret-down-outlined.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/raw/caret-right-outlined.svg b/packages/ui-icons/osui-icons-icloud/raw/caret-right-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..632199d157c16a5f5e9c32a30363ce64cd9d29b7
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/caret-right-outlined.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/raw/check-circle-filled.svg b/packages/ui-icons/osui-icons-icloud/raw/check-circle-filled.svg
new file mode 100644
index 0000000000000000000000000000000000000000..9c302294bf656393c6c370b92f013a4d82aebef1
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/check-circle-filled.svg
@@ -0,0 +1,20 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/raw/check-circle-outlined.svg b/packages/ui-icons/osui-icons-icloud/raw/check-circle-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..48d80c76f1febea65008e8d91aedc3e96f1fe1d2
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/check-circle-outlined.svg
@@ -0,0 +1,8 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/raw/check-outlined.svg b/packages/ui-icons/osui-icons-icloud/raw/check-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..f8124d30b4101ece41938ceb172644892bc56301
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/check-outlined.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/raw/check-square-filled.svg b/packages/ui-icons/osui-icons-icloud/raw/check-square-filled.svg
new file mode 100644
index 0000000000000000000000000000000000000000..d896e0c2f073241cec9021f78b3170297cfda12a
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/check-square-filled.svg
@@ -0,0 +1,3 @@
+
diff --git a/packages/ui-icons/osui-icons-icloud/raw/close-circle-filled.svg b/packages/ui-icons/osui-icons-icloud/raw/close-circle-filled.svg
new file mode 100644
index 0000000000000000000000000000000000000000..f5b7441eb4616565bc097874a8c33251979285e7
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/close-circle-filled.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/raw/close-circle-outlined.svg b/packages/ui-icons/osui-icons-icloud/raw/close-circle-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..b1f9d89de52b18f18d464407313bbbee3a808a95
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/close-circle-outlined.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/raw/close-outlined.svg b/packages/ui-icons/osui-icons-icloud/raw/close-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..fe6bc07b3773ef25c15bdabce23acc05b2bb4166
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/close-outlined.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/raw/down-outlined.svg b/packages/ui-icons/osui-icons-icloud/raw/down-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..e5efae687890dbc61967cc5dafd0469b715d41c9
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/down-outlined.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/raw/exclamation-circle-filled.svg b/packages/ui-icons/osui-icons-icloud/raw/exclamation-circle-filled.svg
new file mode 100644
index 0000000000000000000000000000000000000000..5ac003fcf4b252cd3e7c5eac3f38e525cc080b30
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/exclamation-circle-filled.svg
@@ -0,0 +1,11 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/raw/filter-outlined.svg b/packages/ui-icons/osui-icons-icloud/raw/filter-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..3dcf2285bc931e5a3a25ffe364a64d5d626b1244
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/filter-outlined.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/raw/git-filter.svg b/packages/ui-icons/osui-icons-icloud/raw/git-filter.svg
new file mode 100644
index 0000000000000000000000000000000000000000..021512d29e235b69f55e04af20db20263bf37bb2
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/git-filter.svg
@@ -0,0 +1,3 @@
+
diff --git a/packages/ui-icons/osui-icons-icloud/raw/home-outlined.svg b/packages/ui-icons/osui-icons-icloud/raw/home-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..4048f8a17566e9afdf259e0a7e862bda96292a06
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/home-outlined.svg
@@ -0,0 +1,3 @@
+
diff --git a/packages/ui-icons/osui-icons-icloud/raw/info-circle-filled.svg b/packages/ui-icons/osui-icons-icloud/raw/info-circle-filled.svg
new file mode 100644
index 0000000000000000000000000000000000000000..5ac003fcf4b252cd3e7c5eac3f38e525cc080b30
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/info-circle-filled.svg
@@ -0,0 +1,11 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/raw/left-outlined.svg b/packages/ui-icons/osui-icons-icloud/raw/left-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..632a52bb9e027220adeeedfcbf10a18948a25d05
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/left-outlined.svg
@@ -0,0 +1,3 @@
+
diff --git a/packages/ui-icons/osui-icons-icloud/raw/loading-3-quarters-outlined.svg b/packages/ui-icons/osui-icons-icloud/raw/loading-3-quarters-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..e8b09fec921cecafc05694869e68a360b2fb2646
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/loading-3-quarters-outlined.svg
@@ -0,0 +1,3 @@
+
diff --git a/packages/ui-icons/osui-icons-icloud/raw/more-outlined.svg b/packages/ui-icons/osui-icons-icloud/raw/more-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..60c99b2ae9e338617458094a43550b7a24837052
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/more-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/raw/plus-outlined.svg b/packages/ui-icons/osui-icons-icloud/raw/plus-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..1c1702c245c49251efa0826c69c91fde00943f6f
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/plus-outlined.svg
@@ -0,0 +1,3 @@
+
diff --git a/packages/ui-icons/osui-icons-icloud/raw/right-outlined.svg b/packages/ui-icons/osui-icons-icloud/raw/right-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..16dbfc8a67a591bdef5b28e314c0f3d861c6bdb9
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/right-outlined.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/raw/search-outlined.svg b/packages/ui-icons/osui-icons-icloud/raw/search-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..7934369683501bd0c53ad07d3b19d6ba4aacb984
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/search-outlined.svg
@@ -0,0 +1,3 @@
+
diff --git a/packages/ui-icons/osui-icons-icloud/raw/switch-cross.svg b/packages/ui-icons/osui-icons-icloud/raw/switch-cross.svg
new file mode 100644
index 0000000000000000000000000000000000000000..dca70b0f32595f64b77444216737bb97b6074d4d
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/switch-cross.svg
@@ -0,0 +1,3 @@
+
diff --git a/packages/ui-icons/osui-icons-icloud/raw/switch-tick.svg b/packages/ui-icons/osui-icons-icloud/raw/switch-tick.svg
new file mode 100644
index 0000000000000000000000000000000000000000..9fd877748eb91ff13eb88f63a5efda3b2a44917e
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/switch-tick.svg
@@ -0,0 +1,3 @@
+
diff --git a/packages/ui-icons/osui-icons-icloud/raw/table-sort-outlined.svg b/packages/ui-icons/osui-icons-icloud/raw/table-sort-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..0097dc2272bb90bbc5d6bce14570e8e5d99253ea
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/table-sort-outlined.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/raw/up-outlined.svg b/packages/ui-icons/osui-icons-icloud/raw/up-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..1e026f8300992d1fc62206177293e4c937c8b678
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/up-outlined.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/raw/vertical-align-top-outlined.svg b/packages/ui-icons/osui-icons-icloud/raw/vertical-align-top-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..a4ea122a8477df7e64abfbdc99e9047ab588d7ee
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/raw/vertical-align-top-outlined.svg
@@ -0,0 +1,9 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/rollup.js b/packages/ui-icons/osui-icons-icloud/rollup.js
new file mode 100644
index 0000000000000000000000000000000000000000..cedaf7365c7e7c79a8409ab865e788870c752d04
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/rollup.js
@@ -0,0 +1,70 @@
+import path from 'path';
+import { rollup } from 'rollup';
+import json from '@rollup/plugin-json';
+import alias from '@rollup/plugin-alias';
+import babel from 'rollup-plugin-babel';
+import { string } from 'rollup-plugin-string';
+import autoExternal from 'rollup-plugin-auto-external';
+import resolve from 'rollup-plugin-node-resolve';
+import css from 'rollup-plugin-postcss';
+
+const babelConfig = {
+ presets: [
+ [
+ '@babel/preset-env',
+ {
+ modules: false,
+ },
+ ],
+ '@babel/preset-react',
+ ],
+ plugins: [
+ '@babel/plugin-proposal-export-default-from',
+ 'babel-plugin-react-require',
+ ],
+ exclude: 'node_modules/**',
+ extensions: ['.js'],
+};
+
+const main = async () => {
+ const plugins = [
+ resolve(),
+ alias({
+ entries: [
+ {
+ find: '@',
+ replacement: path.resolve(__dirname, './src'),
+ },
+ ],
+ }),
+ json(),
+ css(),
+ string({
+ include: './svg/*.svg',
+ }),
+ babel(babelConfig),
+ autoExternal({ dependencies: false }),
+ ];
+
+ const inputOptions = {
+ context: __dirname,
+ input: 'src/index.js',
+ plugins: plugins,
+ };
+
+ const bundle = await rollup(inputOptions);
+ bundle.write({
+ format: 'cjs',
+ file: 'dist/cjs/index.js',
+ sourcemap: true,
+ banner: '/* eslint-disable */',
+ });
+ bundle.write({
+ format: 'es',
+ file: 'dist/es/index.js',
+ sourcemap: true,
+ banner: '/* eslint-disable */',
+ });
+};
+
+main();
diff --git a/packages/ui-icons/osui-icons-icloud/scripts/build.sh b/packages/ui-icons/osui-icons-icloud/scripts/build.sh
new file mode 100644
index 0000000000000000000000000000000000000000..fde6cc46c455b5925e5786ab1827dd4013ce6508
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/scripts/build.sh
@@ -0,0 +1,10 @@
+echo "node $(node -v)"
+echo "npm $(npm -v)"
+echo "yarn $(yarn -v)"
+
+rm -rf dist
+node -r esm rollup.js
+cp -R svg dist/svg
+cp -R raw dist/raw
+
+cp src/index.d.ts dist/
diff --git a/packages/ui-icons/osui-icons-icloud/src/createIcon.js b/packages/ui-icons/osui-icons-icloud/src/createIcon.js
new file mode 100644
index 0000000000000000000000000000000000000000..a038afe95b538a4370503631ffdc23a90bd74e4d
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/src/createIcon.js
@@ -0,0 +1,38 @@
+/**
+ * @file SVG icon factory
+ * @author zhanglili, guyiling
+ */
+import './icon.css';
+import {escapeHTML} from './util';
+
+const baseClassName = 'osui-icon';
+
+export default function createIcon({content, width, height}) {
+ return ({ className, title, spin, ...props }) => {
+ const iconClasses = [baseClassName, className];
+
+ if (spin) {
+ iconClasses.push(`${baseClassName}-spin`);
+ }
+
+ const iconClassName = iconClasses.join(' ');
+ const { tabIndex } = props;
+ const markup = {
+ __html: (title ? `${escapeHTML(title)}` : '') + content,
+ };
+
+ return (
+
+ );
+ };
+}
diff --git a/packages/ui-icons/osui-icons-icloud/src/icon.css b/packages/ui-icons/osui-icons-icloud/src/icon.css
new file mode 100644
index 0000000000000000000000000000000000000000..c85d891417da7b55057364c7546f6ebbe6118dfb
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/src/icon.css
@@ -0,0 +1,21 @@
+.osui-icon {
+ display: inline-block;
+ width: auto;
+ height: var(--osui-icon-size, 16px); /* osui规范16px */
+ vertical-align: -.125em;
+ fill: currentColor;
+}
+
+.osui-icon-spin {
+ animation: osui-icon-spin 1s infinite linear;
+}
+
+@keyframes osui-icon-spin {
+ 0% {
+ transform: rotate(0deg);
+ }
+
+ 100% {
+ transform: rotate(360deg);
+ }
+}
diff --git a/packages/ui-icons/osui-icons-icloud/src/index.d.ts b/packages/ui-icons/osui-icons-icloud/src/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..08549b1dac1989ca31d7deee514dfe6b4083793d
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/src/index.d.ts
@@ -0,0 +1,35 @@
+
+interface IconProps extends React.SVGProps {
+ scale?: number;
+}
+export const IconArrowDownOutlined: IconComponent;
+export const IconArrowLeftOutlined: IconComponent;
+export const IconArrowUpOutlined: IconComponent;
+export const IconBranchDropdown: IconComponent;
+export const IconBranchFilter: IconComponent;
+export const IconCaretDownOutlined: IconComponent;
+export const IconCaretRightOutlined: IconComponent;
+export const IconCheckCircleFilled: IconComponent;
+export const IconCheckCircleOutlined: IconComponent;
+export const IconCheckOutlined: IconComponent;
+export const IconCheckSquareFilled: IconComponent;
+export const IconCloseCircleFilled: IconComponent;
+export const IconCloseCircleOutlined: IconComponent;
+export const IconCloseOutlined: IconComponent;
+export const IconDownOutlined: IconComponent;
+export const IconExclamationCircleFilled: IconComponent;
+export const IconFilterOutlined: IconComponent;
+export const IconGitFilter: IconComponent;
+export const IconHomeOutlined: IconComponent;
+export const IconInfoCircleFilled: IconComponent;
+export const IconLeftOutlined: IconComponent;
+export const IconLoading3QuartersOutlined: IconComponent;
+export const IconMoreOutlined: IconComponent;
+export const IconPlusOutlined: IconComponent;
+export const IconRightOutlined: IconComponent;
+export const IconSearchOutlined: IconComponent;
+export const IconSwitchCross: IconComponent;
+export const IconSwitchTick: IconComponent;
+export const IconTableSortOutlined: IconComponent;
+export const IconUpOutlined: IconComponent;
+export const IconVerticalAlignTopOutlined: IconComponent;
diff --git a/packages/ui-icons/osui-icons-icloud/src/util.js b/packages/ui-icons/osui-icons-icloud/src/util.js
new file mode 100644
index 0000000000000000000000000000000000000000..8080405b6b81312206ce6bf3d6073126243ad964
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/src/util.js
@@ -0,0 +1,10 @@
+const ESCAPE_MAP = {
+ '<': '<',
+ '>': '>',
+ '"': '"',
+ '&': '&',
+};
+
+export function escapeHTML(html) {
+ return html.replace(/[<>"&]/g, c => ESCAPE_MAP[c] || c);
+}
diff --git a/packages/ui-icons/osui-icons-icloud/svg/arrow-down-outlined.svg b/packages/ui-icons/osui-icons-icloud/svg/arrow-down-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..ef22f9ec232175c6b739a7fddd67431161fba465
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/arrow-down-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/arrow-left-outlined.svg b/packages/ui-icons/osui-icons-icloud/svg/arrow-left-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..fa0fdcb132af6fe640376dfb37a42ef5650dbab6
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/arrow-left-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/arrow-up-outlined.svg b/packages/ui-icons/osui-icons-icloud/svg/arrow-up-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..52ecedcf9b7ded78b2a2db9405cbfcd990171ae2
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/arrow-up-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/branch-dropdown.svg b/packages/ui-icons/osui-icons-icloud/svg/branch-dropdown.svg
new file mode 100644
index 0000000000000000000000000000000000000000..d990d4d72828d604b390a9fd1acf2fadcdc35e8c
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/branch-dropdown.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/branch-filter.svg b/packages/ui-icons/osui-icons-icloud/svg/branch-filter.svg
new file mode 100644
index 0000000000000000000000000000000000000000..8c39e313b5937f121b602e794d70ab12ebfd2fe1
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/branch-filter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/caret-down-outlined.svg b/packages/ui-icons/osui-icons-icloud/svg/caret-down-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..a781dba9b333c83d690d23f10b8013fdb83dcdde
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/caret-down-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/caret-right-outlined.svg b/packages/ui-icons/osui-icons-icloud/svg/caret-right-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..da488d7156de811374821f8c76c159dfd1d9684a
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/caret-right-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/check-circle-filled.svg b/packages/ui-icons/osui-icons-icloud/svg/check-circle-filled.svg
new file mode 100644
index 0000000000000000000000000000000000000000..fa63af20eb27e71f10a1ab34c5f6a1e55de91c02
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/check-circle-filled.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/check-circle-outlined.svg b/packages/ui-icons/osui-icons-icloud/svg/check-circle-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..923cf5b1168d3e769ba7abeb5bdd49d63cbe5941
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/check-circle-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/check-outlined.svg b/packages/ui-icons/osui-icons-icloud/svg/check-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..dc9d947f62e1dcd6a9c0988629f9aa59e406a262
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/check-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/check-square-filled.svg b/packages/ui-icons/osui-icons-icloud/svg/check-square-filled.svg
new file mode 100644
index 0000000000000000000000000000000000000000..ef34e4ff7654366f7990e9b766dee3cfcf4b9d00
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/check-square-filled.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/close-circle-filled.svg b/packages/ui-icons/osui-icons-icloud/svg/close-circle-filled.svg
new file mode 100644
index 0000000000000000000000000000000000000000..f5b7441eb4616565bc097874a8c33251979285e7
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/close-circle-filled.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/close-circle-outlined.svg b/packages/ui-icons/osui-icons-icloud/svg/close-circle-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..9e534eb41cbe4f4a6fd24ec3bf139c17a156534f
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/close-circle-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/close-outlined.svg b/packages/ui-icons/osui-icons-icloud/svg/close-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..2009e7bd16e6b4ab14daa39270ed149d781ea73a
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/close-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/down-outlined.svg b/packages/ui-icons/osui-icons-icloud/svg/down-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..79afbe4662d4e23ad2c35ed226d150c7b1f676f5
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/down-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/exclamation-circle-filled.svg b/packages/ui-icons/osui-icons-icloud/svg/exclamation-circle-filled.svg
new file mode 100644
index 0000000000000000000000000000000000000000..110903865da5682bc9a7e0828762042f794906fe
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/exclamation-circle-filled.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/filter-outlined.svg b/packages/ui-icons/osui-icons-icloud/svg/filter-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..c579edccd0e5b20a6a5a8b176894162eea081e3a
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/filter-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/git-filter.svg b/packages/ui-icons/osui-icons-icloud/svg/git-filter.svg
new file mode 100644
index 0000000000000000000000000000000000000000..e176fa7fbd99762bf8f6464a303dbe396b5d42e3
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/git-filter.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/home-outlined.svg b/packages/ui-icons/osui-icons-icloud/svg/home-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..fac2f3ae7e8ced77746440081d735449a2029162
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/home-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/info-circle-filled.svg b/packages/ui-icons/osui-icons-icloud/svg/info-circle-filled.svg
new file mode 100644
index 0000000000000000000000000000000000000000..110903865da5682bc9a7e0828762042f794906fe
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/info-circle-filled.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/left-outlined.svg b/packages/ui-icons/osui-icons-icloud/svg/left-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..6fe3406d38304ccf33b6d973ad5b186d52a55055
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/left-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/loading-3-quarters-outlined.svg b/packages/ui-icons/osui-icons-icloud/svg/loading-3-quarters-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..c767b35eef92d58c5ffe736981f2a3e42031893c
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/loading-3-quarters-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/more-outlined.svg b/packages/ui-icons/osui-icons-icloud/svg/more-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..60c99b2ae9e338617458094a43550b7a24837052
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/more-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/plus-outlined.svg b/packages/ui-icons/osui-icons-icloud/svg/plus-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..1c686e4f1339a93a3fa9afc9c8f94a4fe81baf40
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/plus-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/right-outlined.svg b/packages/ui-icons/osui-icons-icloud/svg/right-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..c5e9ad39ac044252f41c571ddd39d2a20c7c1349
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/right-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/search-outlined.svg b/packages/ui-icons/osui-icons-icloud/svg/search-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..8cc9941e11dde05e6536e0768b5af897c6ebde5e
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/search-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/switch-cross.svg b/packages/ui-icons/osui-icons-icloud/svg/switch-cross.svg
new file mode 100644
index 0000000000000000000000000000000000000000..ecb16db4f50dddb947f77608bb329223187a1f24
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/switch-cross.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/switch-tick.svg b/packages/ui-icons/osui-icons-icloud/svg/switch-tick.svg
new file mode 100644
index 0000000000000000000000000000000000000000..a152b41c9559b5aefdad7da9867a8c21a06a6bcb
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/switch-tick.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/table-sort-outlined.svg b/packages/ui-icons/osui-icons-icloud/svg/table-sort-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..f74318e418df1848e078c94f1673ed8962a55eee
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/table-sort-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/up-outlined.svg b/packages/ui-icons/osui-icons-icloud/svg/up-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..880df38bb6d4971cebbbe376b47ac84b89d8bfc8
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/up-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons-icloud/svg/vertical-align-top-outlined.svg b/packages/ui-icons/osui-icons-icloud/svg/vertical-align-top-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..6440025bc7fd0cc73890074903420d2f08506d79
--- /dev/null
+++ b/packages/ui-icons/osui-icons-icloud/svg/vertical-align-top-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons/README.html b/packages/ui-icons/osui-icons/README.html
new file mode 100644
index 0000000000000000000000000000000000000000..4d40805de5777d2a776d50bd4360899ca282759e
--- /dev/null
+++ b/packages/ui-icons/osui-icons/README.html
@@ -0,0 +1,95 @@
+
+
+
+ IconArrowDownOutlined
+ |
+
+ IconArrowLeftOutlined
+ |
+
+ IconArrowUpOutlined
+ |
+
+ IconBranchDropdown
+ |
+
+ IconBranchFilter
+ |
+
+ IconCaretDownOutlined
+ |
+
+ IconCaretRightOutlined
+ |
+
+ IconCheckCircleFilled
+ |
+
+ IconCheckCircleOutlined
+ |
+
+ IconCheckOutlined
+ |
+
+ IconCheckSquareFilled
+ |
+
+ IconCloseCircleFilled
+ |
+
+ IconCloseCircleOutlined
+ |
+
+ IconCloseOutlined
+ |
+
+ IconDownOutlined
+ |
+
+ IconExclamationCircleFilled
+ |
+
+ IconFilterOutlined
+ |
+
+ IconGitFilter
+ |
+
+ IconHomeOutlined
+ |
+
+ IconInfoCircleFilled
+ |
+
+ IconLeftOutlined
+ |
+
+ IconLoading3QuartersOutlined
+ |
+
+ IconMoreOutlined
+ |
+
+ IconPlusOutlined
+ |
+
+ IconRightOutlined
+ |
+
+ IconSearchOutlined
+ |
+
+ IconSwitchCross
+ |
+
+ IconSwitchTick
+ |
+
+ IconTableSortOutlined
+ |
+
+ IconUpOutlined
+ |
+
+ IconVerticalAlignTopOutlined
+ | | |
diff --git a/packages/ui-icons/osui-icons/README.md b/packages/ui-icons/osui-icons/README.md
index 7d75f4411fa5e1080f64529a5f91003ca308a9d5..0bd45951aeb8816dd52cea507fdb074dd50c8c8b 100644
--- a/packages/ui-icons/osui-icons/README.md
+++ b/packages/ui-icons/osui-icons/README.md
@@ -30,69 +30,96 @@ export default function Title() {
## Available Icons
+
+ IconArrowDownOutlined
+ |
IconArrowLeftOutlined
|
+
+ IconArrowUpOutlined
+ |
IconBranchDropdown
|
IconBranchFilter
+ |
+
+ IconCaretDownOutlined
|
+
+ IconCaretRightOutlined
+ |
IconCheckCircleFilled
|
+
+ IconCheckCircleOutlined
+ |
+
+ IconCheckOutlined
+ |
IconCheckSquareFilled
|
IconCloseCircleFilled
|
+
+ IconCloseCircleOutlined
+ |
IconCloseOutlined
|
IconDownOutlined
- |
+ |
IconExclamationCircleFilled
- |
+ |
+
+ IconFilterOutlined
+ |
IconGitFilter
- |
+ |
IconHomeOutlined
|
IconInfoCircleFilled
- |
+ |
IconLeftOutlined
- |
+ |
IconLoading3QuartersOutlined
|
IconMoreOutlined
- |
+ |
IconPlusOutlined
- |
+ |
IconRightOutlined
|
IconSearchOutlined
- |
+ |
IconSwitchCross
- |
+ |
IconSwitchTick
|
+
+ IconTableSortOutlined
+ |
+
+ IconUpOutlined
+ |
IconVerticalAlignTopOutlined
- |
-
- IconNaviDoc
| | |
diff --git a/packages/ui-icons/osui-icons/colorfulRaw/navi-doc.svg b/packages/ui-icons/osui-icons/colorfulRaw/navi-doc.svg
deleted file mode 100644
index e9385cc9b74a06d6198d7947d2213e0607a91264..0000000000000000000000000000000000000000
--- a/packages/ui-icons/osui-icons/colorfulRaw/navi-doc.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons/package.json b/packages/ui-icons/osui-icons/package.json
index d1d87536c0effeed92bd40bfa640ba3f1c813eaa..3ae84079738b44f2adcc9ffd8dd14e3fd64d105a 100644
--- a/packages/ui-icons/osui-icons/package.json
+++ b/packages/ui-icons/osui-icons/package.json
@@ -6,7 +6,7 @@
"name": "zhanglili01,huoyuxuan,lisiqi06,guyiling"
},
"scripts": {
- "build": "yarn workspace @osui/icons-builder generate && sh scripts/build.sh",
+ "build": "yarn workspace @osui/icons-builder generate osui && sh scripts/build.sh",
"build-icons-only": "sh scripts/build.sh",
"prepublishOnly": "npm run build",
"clean": "rm -rf dist && rm -rf node_modules"
diff --git a/packages/ui-icons/osui-icons/raw/arrow-down-outlined.svg b/packages/ui-icons/osui-icons/raw/arrow-down-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..e8cdb8c412f9378c26d4887b982fa82492ac401a
--- /dev/null
+++ b/packages/ui-icons/osui-icons/raw/arrow-down-outlined.svg
@@ -0,0 +1,10 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons/raw/arrow-up-outlined.svg b/packages/ui-icons/osui-icons/raw/arrow-up-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..b47cf06600e77b142bd174e849b18f2abfc18ef8
--- /dev/null
+++ b/packages/ui-icons/osui-icons/raw/arrow-up-outlined.svg
@@ -0,0 +1,10 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons/raw/caret-down-outlined.svg b/packages/ui-icons/osui-icons/raw/caret-down-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..c6bb19a34aaacad660b34d244777a805df686655
--- /dev/null
+++ b/packages/ui-icons/osui-icons/raw/caret-down-outlined.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons/raw/caret-right-outlined.svg b/packages/ui-icons/osui-icons/raw/caret-right-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..632199d157c16a5f5e9c32a30363ce64cd9d29b7
--- /dev/null
+++ b/packages/ui-icons/osui-icons/raw/caret-right-outlined.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons/raw/check-circle-outlined.svg b/packages/ui-icons/osui-icons/raw/check-circle-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..48d80c76f1febea65008e8d91aedc3e96f1fe1d2
--- /dev/null
+++ b/packages/ui-icons/osui-icons/raw/check-circle-outlined.svg
@@ -0,0 +1,8 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons/raw/check-outlined.svg b/packages/ui-icons/osui-icons/raw/check-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..f8124d30b4101ece41938ceb172644892bc56301
--- /dev/null
+++ b/packages/ui-icons/osui-icons/raw/check-outlined.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons/raw/close-circle-outlined.svg b/packages/ui-icons/osui-icons/raw/close-circle-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..b1f9d89de52b18f18d464407313bbbee3a808a95
--- /dev/null
+++ b/packages/ui-icons/osui-icons/raw/close-circle-outlined.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons/raw/filter-outlined.svg b/packages/ui-icons/osui-icons/raw/filter-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..3dcf2285bc931e5a3a25ffe364a64d5d626b1244
--- /dev/null
+++ b/packages/ui-icons/osui-icons/raw/filter-outlined.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons/raw/table-sort-outlined.svg b/packages/ui-icons/osui-icons/raw/table-sort-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..0097dc2272bb90bbc5d6bce14570e8e5d99253ea
--- /dev/null
+++ b/packages/ui-icons/osui-icons/raw/table-sort-outlined.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons/raw/up-outlined.svg b/packages/ui-icons/osui-icons/raw/up-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..1e026f8300992d1fc62206177293e4c937c8b678
--- /dev/null
+++ b/packages/ui-icons/osui-icons/raw/up-outlined.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons/src/icon.css b/packages/ui-icons/osui-icons/src/icon.css
index 5159012922166adb8332cff8ac0dc84f20a5f76e..c85d891417da7b55057364c7546f6ebbe6118dfb 100644
--- a/packages/ui-icons/osui-icons/src/icon.css
+++ b/packages/ui-icons/osui-icons/src/icon.css
@@ -1,9 +1,9 @@
.osui-icon {
display: inline-block;
width: auto;
- height: 16px; /* osui规范16px */
- fill: currentColor;
+ height: var(--osui-icon-size, 16px); /* osui规范16px */
vertical-align: -.125em;
+ fill: currentColor;
}
.osui-icon-spin {
diff --git a/packages/ui-icons/osui-icons/src/index.d.ts b/packages/ui-icons/osui-icons/src/index.d.ts
index ba6e2da1ea66133e395f99398414cc47d0e5bdc3..08549b1dac1989ca31d7deee514dfe6b4083793d 100644
--- a/packages/ui-icons/osui-icons/src/index.d.ts
+++ b/packages/ui-icons/osui-icons/src/index.d.ts
@@ -2,15 +2,23 @@
interface IconProps extends React.SVGProps {
scale?: number;
}
+export const IconArrowDownOutlined: IconComponent;
export const IconArrowLeftOutlined: IconComponent;
+export const IconArrowUpOutlined: IconComponent;
export const IconBranchDropdown: IconComponent;
export const IconBranchFilter: IconComponent;
+export const IconCaretDownOutlined: IconComponent;
+export const IconCaretRightOutlined: IconComponent;
export const IconCheckCircleFilled: IconComponent;
+export const IconCheckCircleOutlined: IconComponent;
+export const IconCheckOutlined: IconComponent;
export const IconCheckSquareFilled: IconComponent;
export const IconCloseCircleFilled: IconComponent;
+export const IconCloseCircleOutlined: IconComponent;
export const IconCloseOutlined: IconComponent;
export const IconDownOutlined: IconComponent;
export const IconExclamationCircleFilled: IconComponent;
+export const IconFilterOutlined: IconComponent;
export const IconGitFilter: IconComponent;
export const IconHomeOutlined: IconComponent;
export const IconInfoCircleFilled: IconComponent;
@@ -22,5 +30,6 @@ export const IconRightOutlined: IconComponent;
export const IconSearchOutlined: IconComponent;
export const IconSwitchCross: IconComponent;
export const IconSwitchTick: IconComponent;
+export const IconTableSortOutlined: IconComponent;
+export const IconUpOutlined: IconComponent;
export const IconVerticalAlignTopOutlined: IconComponent;
-export const IconNaviDoc: IconComponent;
diff --git a/packages/ui-icons/osui-icons/svg/arrow-down-outlined.svg b/packages/ui-icons/osui-icons/svg/arrow-down-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..ef22f9ec232175c6b739a7fddd67431161fba465
--- /dev/null
+++ b/packages/ui-icons/osui-icons/svg/arrow-down-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons/svg/arrow-up-outlined.svg b/packages/ui-icons/osui-icons/svg/arrow-up-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..52ecedcf9b7ded78b2a2db9405cbfcd990171ae2
--- /dev/null
+++ b/packages/ui-icons/osui-icons/svg/arrow-up-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons/svg/caret-down-outlined.svg b/packages/ui-icons/osui-icons/svg/caret-down-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..a781dba9b333c83d690d23f10b8013fdb83dcdde
--- /dev/null
+++ b/packages/ui-icons/osui-icons/svg/caret-down-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons/svg/caret-right-outlined.svg b/packages/ui-icons/osui-icons/svg/caret-right-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..da488d7156de811374821f8c76c159dfd1d9684a
--- /dev/null
+++ b/packages/ui-icons/osui-icons/svg/caret-right-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons/svg/check-circle-outlined.svg b/packages/ui-icons/osui-icons/svg/check-circle-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..923cf5b1168d3e769ba7abeb5bdd49d63cbe5941
--- /dev/null
+++ b/packages/ui-icons/osui-icons/svg/check-circle-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons/svg/check-outlined.svg b/packages/ui-icons/osui-icons/svg/check-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..dc9d947f62e1dcd6a9c0988629f9aa59e406a262
--- /dev/null
+++ b/packages/ui-icons/osui-icons/svg/check-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons/svg/close-circle-outlined.svg b/packages/ui-icons/osui-icons/svg/close-circle-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..9e534eb41cbe4f4a6fd24ec3bf139c17a156534f
--- /dev/null
+++ b/packages/ui-icons/osui-icons/svg/close-circle-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons/svg/filter-outlined.svg b/packages/ui-icons/osui-icons/svg/filter-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..c579edccd0e5b20a6a5a8b176894162eea081e3a
--- /dev/null
+++ b/packages/ui-icons/osui-icons/svg/filter-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons/svg/navi-doc.svg b/packages/ui-icons/osui-icons/svg/navi-doc.svg
deleted file mode 100644
index 87f10dbbe934832c7f07ea04f55fa948e5838797..0000000000000000000000000000000000000000
--- a/packages/ui-icons/osui-icons/svg/navi-doc.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons/svg/table-sort-outlined.svg b/packages/ui-icons/osui-icons/svg/table-sort-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..f74318e418df1848e078c94f1673ed8962a55eee
--- /dev/null
+++ b/packages/ui-icons/osui-icons/svg/table-sort-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-icons/osui-icons/svg/up-outlined.svg b/packages/ui-icons/osui-icons/svg/up-outlined.svg
new file mode 100644
index 0000000000000000000000000000000000000000..880df38bb6d4971cebbbe376b47ac84b89d8bfc8
--- /dev/null
+++ b/packages/ui-icons/osui-icons/svg/up-outlined.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/packages/ui-theme/icloud-theme/package.json b/packages/ui-theme/icloud-theme/package.json
index e7fe5a520858974f32cc54ef83eecae5a22f6ff6..3eb7e1b4b90a157c2e8f9aa138565637cfb45459 100644
--- a/packages/ui-theme/icloud-theme/package.json
+++ b/packages/ui-theme/icloud-theme/package.json
@@ -50,5 +50,8 @@
"access": "public",
"registry": "https://registry.npmjs.com"
},
- "gitHead": "904178b6c0bb86963017122daa529580decb66e8"
+ "gitHead": "904178b6c0bb86963017122daa529580decb66e8",
+ "dependencies": {
+ "@osui/icons-icloud": "0.10.1"
+ }
}
diff --git a/packages/ui-theme/icloud-theme/src/antd-vars-patch.less b/packages/ui-theme/icloud-theme/src/antd-vars-patch.less
index bb7d0cda63fd60bad369f88d0d7bed9c190bc800..7e428e773c4e1799ac06e19da5e99d3a2fb5a24d 100644
--- a/packages/ui-theme/icloud-theme/src/antd-vars-patch.less
+++ b/packages/ui-theme/icloud-theme/src/antd-vars-patch.less
@@ -28,12 +28,13 @@
@text-color: var(--theme-text-color);
@text-color-secondary: var(--theme-text-color-secondary);
@font-variant-base: normal; // https://github.com/ant-design/ant-design/issues/12690
+@font-size-sm: 12px;
@font-size-base: 12px;
@font-size-lg: 14px;
-@font-size-sm: 12px;
+@font-size-xl: 16px;
@line-height-base: 1.5;
-@border-radius-base: 0px;
-@border-radius-sm: 0px;
+@border-radius-base: 0;
+@border-radius-sm: 0;
@height-base: 30px;
@height-lg: 40px;
@height-sm: 24px;
@@ -79,10 +80,13 @@
@table-row-hover-bg: var(--table-row-hover-bg);
@table-header-bg: var(--table-header-bg);
@table-header-color: var(--table-header-color);
-@table-padding-vertical: 9.5px; // UE要求行号40,行高= {padding-vertical} * 2 + {font-size} * 1.5
@table-font-size: @font-size-sm;
@table-font-size-sm: @font-size-sm;
@table-font-size-md: @font-size-sm;
+@table-padding-horizontal: 10px;
+@table-padding-vertical: ((40px - @font-size-base * 1.5) / 2); // UE要求行号40,行高= {padding-vertical} * 2 + {font-size} * 1.5
+@table-selected-row-bg: var(--color-brand-1);
+@table-selected-row-hover-bg: var(--color-brand-1);
// Menu
// ---
@@ -163,13 +167,13 @@
// Outline
// ---
-@outline-width: 0px;
-@outline-blur-size: 0px;
+@outline-width: 0;
+@outline-blur-size: 0;
@outline-color: var(--theme-border-focus-color);
// Form
// ---
-@label-color: var(--color-gray-8);
+@label-color: var(--color-gray-9);
@form-item-margin-bottom: 20px;
// Tabs
@@ -211,6 +215,7 @@
@radio-focus-shadow: 0 0 0 0 var(--theme-border-focus-color);
@radio-duration: 0;
@radio-button-hover-color: var(--radio-button-hover-color);
+@radio-dot-size: 10px;
// Modal
// ---
@@ -256,7 +261,7 @@
// Cascader
// ---
-@cascader-item-selected-bg: var(--color-brand-1);
+@cascader-item-selected-bg: var(--theme-secondary-color);
// Steps
// ---
@@ -276,6 +281,7 @@
// Breadcrumb
// ---
+@breadcrumb-link-color: var(--theme-text-color);
@breadcrumb-link-color-hover: var(--theme-primary-color);
// Steps
diff --git a/packages/ui-theme/icloud-theme/src/colors.js b/packages/ui-theme/icloud-theme/src/colors.js
index 10558ab63c529466b7c92fc135df745a1304807f..d85d38a39cf3f49659b362ca975a9ea88ab43deb 100644
--- a/packages/ui-theme/icloud-theme/src/colors.js
+++ b/packages/ui-theme/icloud-theme/src/colors.js
@@ -280,7 +280,7 @@ exports.presetColors = {
'--theme-bg-color-base': 'var(--color-gray-4)',
'--theme-bg-color-light': 'var(--color-brand-1)',
'--theme-body-bg': 'var(--color-gray-1)',
- '--theme-border-color-base': 'var(--color-gray-5)',
+ '--theme-border-color-base': 'var(--color-gray-6)',
'--theme-border-color-inverse': '#fff',
'--theme-border-color-split': 'var(--color-gray-4)',
'--theme-border-color-disabled': 'var(--theme-border-color-base)',
@@ -334,6 +334,7 @@ exports.presetColors = {
'--alert-padding': '8px 10px 8px 40px',
'--alert-no-icon-padding': '8px 20px',
'--alert-icon-padding-right': '10px',
+ '--alert-close-icon-margin-left': '10px',
'--message-alert-success-bg-color': 'var(--alert-success-bg-color)',
'--message-alert-warning-bg-color': 'var(--alert-warning-bg-color)',
'--message-alert-error-bg-color': 'var(--alert-error-bg-color)',
@@ -351,6 +352,7 @@ exports.presetColors = {
'--collapse-expand-icon-bg': 'transparent',
'--collapse-header-bg': 'var(--theme-component-bg)',
'--collapse-header-font-weight': '400',
+ '--collapse-header-font-size': '12px',
'--collapse-header-height': '40px',
'--collapse-content-box-padding-top': '10px',
'--collapse-content-box-padding-bottom': '10px',
@@ -361,8 +363,8 @@ exports.presetColors = {
'--input-focus-background-color': 'var(--color-brand-1)',
'--input-warning-focus-background-color': 'var(--color-warning-1)',
'--link-active-color': 'var(--color-brand-7)',
- '--link-color': 'var(--color-brand-7)',
- '--link-hover-color': 'var(--color-brand-7)',
+ '--link-color': 'var(--color-brand-6)',
+ '--link-hover-color': 'var(--color-brand-5)',
'--menu-bg': 'none',
'--menu-highlight-color': 'var(--theme-primary-color)',
'--menu-item-active-bg': 'var(--theme-secondary-color-hover)',
@@ -372,6 +374,7 @@ exports.presetColors = {
'--progress-text-color': 'var(--color-gray-9)',
'--progress-radius': 0,
'--progress-circle-text-font-size': '16px',
+ '--progress-text-font-size': '14px',
'--select-arrow-open-transform-rotate': 'rotate(180deg)',
'--select-arrow-transition': 'transform .3s, -webkit-transform .3s',
'--select-item-active-bg': 'var(--theme-secondary-color-hover)',
@@ -381,9 +384,11 @@ exports.presetColors = {
'--space-small': '10px',
'--table-header-bg': 'var(--color-gray-3)',
'--table-header-color': 'var(--color-gray-8)',
+ '--table-header-font-weight': '400', // normal
'--table-row-hover-bg': 'var(--color-brand-1)',
'--table-header-cell-border-right': '1px solid var(--color-gray-1)',
- '--table-header-border-bottom-color': 'var(--color-gray-4)',
+ '--table-header-border-bottom-color': 'transparent',
+ '--table-pagination-margin': '10px 0',
'--tabs-highlight-color': 'var(--color-gray-9)',
'--tabs-hover-color': 'var(--color-gray-9)',
'--tabs-ink-bar-color': 'var(--color-gray-9)',
@@ -489,5 +494,8 @@ exports.presetColors = {
'--steps-item-icon-color': 'var(--color-gray-6)',
'--steps-item-active-icon-bg-color': 'var(--color-gray-9)',
'--steps-item-active-icon-color': 'var(--theme-component-bg)',
+ '--drawer-title-font-size': '16px',
+ '--drawer-footer-border-top-color': 'var(--color-gray-5)',
...buttonColors,
+ '--osui-icon-size': '14px',
};
diff --git a/packages/ui-theme/osui-theme/package.json b/packages/ui-theme/osui-theme/package.json
index 419fe2de915934a14d02fed2e79c73d70377fcee..d5e25f08b5084559c9d6a40ddc4b04f0cd31044f 100644
--- a/packages/ui-theme/osui-theme/package.json
+++ b/packages/ui-theme/osui-theme/package.json
@@ -50,5 +50,8 @@
"access": "public",
"registry": "https://registry.npmjs.com"
},
- "gitHead": "904178b6c0bb86963017122daa529580decb66e8"
+ "gitHead": "904178b6c0bb86963017122daa529580decb66e8",
+ "dependencies": {
+ "@osui/icons": "^0.10.1"
+ }
}
diff --git a/packages/ui-theme/osui-theme/src/colors.js b/packages/ui-theme/osui-theme/src/colors.js
index 652aefdf1a17159a149fa76d8a3fe1ba6e36f9f9..0caf7dd7497fdc5a47e5f720f847129ba864d709 100644
--- a/packages/ui-theme/osui-theme/src/colors.js
+++ b/packages/ui-theme/osui-theme/src/colors.js
@@ -357,6 +357,7 @@ exports.presetColors = {
'--alert-padding': '8px 20px 8px 37px', // antd 默认值
'--alert-no-icon-padding': '8px 15px',
'--alert-icon-padding-right': '8px',
+ '--alert-close-icon-margin-left': '8px',
'--message-alert-success-bg-color': 'var(--theme-component-bg)',
'--message-alert-warning-bg-color': 'var(--theme-component-bg)',
'--message-alert-error-bg-color': 'var(--theme-component-bg)',
@@ -374,6 +375,7 @@ exports.presetColors = {
'--collapse-expand-icon-bg': 'var(--color-gray-3)',
'--collapse-header-bg': 'var(--color-gray-2)',
'--collapse-header-font-weight': '600',
+ '--collapse-header-font-size': '14px',
'--collapse-content-box-padding-top': '8px',
'--collapse-content-box-padding-bottom': '8px',
'--collapse-header-height': '32px',
@@ -396,6 +398,7 @@ exports.presetColors = {
'--progress-text-color': 'var(--color-gray-7)',
'--progress-radius': '100px',
'--progress-circle-text-font-size': '24px',
+ '--progress-text-font-size': '1em',
'--select-arrow-open-transform': 'none',
'--select-arrow-transition': 'none',
'--select-item-active-bg': 'var(--theme-secondary-color-hover)',
@@ -407,9 +410,11 @@ exports.presetColors = {
'--space-small': '8px',
'--table-header-bg': 'var(--theme-component-bg)',
'--table-header-color': 'var(--color-gray-7)',
+ '--table-header-font-weight': '600', // bold
'--table-row-hover-bg': 'var(--color-gray-3)',
'--table-header-cell-border-right': 'none',
'--table-header-border-bottom-color': 'var(--color-gray-4)',
+ '--table-pagination-margin': '16px 0',
'--tabs-highlight-color': 'var(--color-gray-9)',
'--tabs-hover-color': 'var(--color-gray-9)',
'--tabs-ink-bar-color': 'var(--color-gray-9)',
@@ -515,5 +520,8 @@ exports.presetColors = {
'--steps-item-icon-color': 'var(--color-gray-6)',
'--steps-item-active-icon-bg-color': 'var(--color-gray-9)',
'--steps-item-active-icon-color': 'var(--theme-component-bg)',
+ '--drawer-title-font-size': '14px',
+ '--drawer-footer-border-top-color': 'var(--theme-border-color-split)',
...buttonColors,
+ '--osui-icon-size': '16px',
};
diff --git a/packages/ui/alert/.storybook/main.js b/packages/ui/alert/.storybook/main.js
index 95016d60231d3b90725c990a42f81f84690ba492..ee81c7a6ea31a4761a3295528b37e7920cbc736f 100644
--- a/packages/ui/alert/.storybook/main.js
+++ b/packages/ui/alert/.storybook/main.js
@@ -73,6 +73,9 @@ module.exports = {
config.resolve.extensions.push('.ts', '.tsx');
config.resolve.alias['@'] = path.resolve(__dirname, '../src');
+ // if (!isOsuiTheme) {
+ // config.resolve.alias['@osui/icons'] = require.resolve('@osui/icons-icloud');
+ // }
return config;
},
};
diff --git a/packages/ui/alert/src/index.less b/packages/ui/alert/src/index.less
index cb8e5960cd994e7273ae05ac3f7096b916d0bff6..bb42586591264b323f3b8c7a01278e8b9cb3140b 100644
--- a/packages/ui/alert/src/index.less
+++ b/packages/ui/alert/src/index.less
@@ -5,8 +5,9 @@
align-items: center;
.@{ant-prefix}-alert-close-icon {
- font-size: 14px;
height: 14px;
+ margin-left: var(--alert-close-icon-margin-left);
+ font-size: 14px;
}
.@{ant-prefix}-alert-close-text {
@@ -31,8 +32,8 @@
}
.@{ant-prefix}-alert-message {
- font-size: 14px;
font-weight: bold;
+ font-size: 14px;
}
.@{ant-prefix}-alert-close-icon {
@@ -87,6 +88,5 @@
&-count-down-close {
color: var(--theme-placeholder-color);
- margin-right: 20px;
}
}
diff --git a/packages/ui/alert/stories/icloud.stories.tsx b/packages/ui/alert/stories/icloud.stories.tsx
index 847af9a447bd0dc01683b8d5a1c4aaf198c7c806..9a08d9a58c11d0b543f8d1d1ed2af071b7b9e28f 100644
--- a/packages/ui/alert/stories/icloud.stories.tsx
+++ b/packages/ui/alert/stories/icloud.stories.tsx
@@ -56,7 +56,7 @@ export const CountDownDemo = () => {
{console.log('closed');}}
- countDown={5}
+ countDown={50}
/>
);
};
diff --git a/packages/ui/button/src/index.less b/packages/ui/button/src/index.less
index dd56224903280d5247d9491eb29e489e8750df79..5de16ae73e2e0b0153aa45fe306d5de546e9228e 100644
--- a/packages/ui/button/src/index.less
+++ b/packages/ui/button/src/index.less
@@ -165,7 +165,7 @@
}
// 去掉primary的box-shadow
- &.ant-btn-primary {
+ &.@{ant-prefix}-btn-primary {
box-shadow: none;
}
}
diff --git a/packages/ui/button/src/index.tsx b/packages/ui/button/src/index.tsx
index 06bb28627754493a1d6c5d68986a459f53424abb..5849368af4b52c3023fbfb2dbee79c7226a09922 100644
--- a/packages/ui/button/src/index.tsx
+++ b/packages/ui/button/src/index.tsx
@@ -33,7 +33,6 @@ export interface ButtonInterface extends React.ForwardRefExoticComponent = (
{type = 'default', loading, icon, disabled, flexCenter, ...props}, ref
) => {
@@ -42,12 +41,17 @@ const InternalButton: React.ForwardRefRenderFunction = (
// 当loading且有icon的button时,icon替换成spinner,不论什么情况都要保持后面的chidlren
if (loading && icon) {
- innerIcon = ;
+ innerIcon = (
+
+ );
}
// 当loading但没有icon时,children替换成spinner,根据主题保留或者隐藏children。
// osc的文字按钮loading时,文字替换成loading icon;而icloud主题则是保留icon和文字
if (loading && !icon) {
- innerIcon = ;
+ innerIcon = ;
}
// 当类型为icon或者button仅有icon属性时,不保留最小宽度
if (type === 'icon' || icon) {
diff --git a/packages/ui/button/stories/icloud.stories.tsx b/packages/ui/button/stories/icloud.stories.tsx
index 7f00325dc3e98617e448b201d00ee7af7531caa5..e88fe5e640d209d76ebe7536f607716e84c57697 100644
--- a/packages/ui/button/stories/icloud.stories.tsx
+++ b/packages/ui/button/stories/icloud.stories.tsx
@@ -1,5 +1,5 @@
import React from 'react';
-import { IconSearchOutlined, IconHomeOutlined } from '@osui/icons';
+import { IconSearchOutlined, IconHomeOutlined, IconPlusOutlined } from '@osui/icons';
import Space from '@osui/space';
import Button from '../src';
@@ -57,6 +57,30 @@ export const Demo = () => {
);
};
+export const Size = () => {
+ return (
+ <>
+ 未在规范内,但是产品有用到,希望ue检查
+
+
+ }>确定
+
+
+
+
+
+ }>确定
+
+
+
+
+
+ }>确定
+
+ >
+ );
+};
+
export const Group = () => {
return (
<>
diff --git a/packages/ui/cascader/src/index.less b/packages/ui/cascader/src/index.less
index f684935ce6a39b44c0805f506f805a63b52f466c..913af35525928a54e34de0f2ad052c8c3113241b 100644
--- a/packages/ui/cascader/src/index.less
+++ b/packages/ui/cascader/src/index.less
@@ -1 +1,32 @@
@osui-cascader-class-prefix: osui-cascader;
+
+.@{osui-cascader-class-prefix} {
+ min-width: 240px;
+
+ &-label-divider-icon {
+ margin: 0 5px;
+ color: var(--color-gray-6);
+ }
+
+ .@{ant-prefix}-cascader-picker-label {
+ padding: 0 30px 0 10px;
+ }
+
+ // ==================== Menu ====================
+ &-menu {
+ &.ant-cascader-menu,
+ &.ant-cascader-menus .ant-cascader-menu {
+ min-width: 100px;
+ }
+
+ .@{ant-prefix}-cascader-menu-item-active:not(.@{ant-prefix}-cascader-menu-item-disabled),
+ .@{ant-prefix}-cascader-menu-item-active:not(.@{ant-prefix}-cascader-menu-item-disabled):hover {
+ color: var(--theme-primary-color);
+ background-color: var(--theme-component-bg);
+
+ .@{ant-prefix}-cascader-menu-item-expand-icon {
+ color: var(--theme-primary-color);
+ }
+ }
+ }
+}
diff --git a/packages/ui/cascader/src/index.tsx b/packages/ui/cascader/src/index.tsx
index 8b67e3774370185220d57e50d904c28d44ab3832..a24adcfb3d678098bb19768f8aed744af101e1be 100644
--- a/packages/ui/cascader/src/index.tsx
+++ b/packages/ui/cascader/src/index.tsx
@@ -1,15 +1,47 @@
import React from 'react';
-import {Cascader as AntdCascader} from 'antd';
-import {CascaderProps as AntdCascaderProps} from 'antd/es/cascader';
+import { Cascader as AntdCascader } from 'antd';
+import { CascaderProps as AntdCascaderProps } from 'antd/es/cascader';
import classNames from 'classnames';
+import { IconDownOutlined, IconRightOutlined } from '@osui/icons';
import './index.less';
const clsPrefix = 'osui-cascader';
-const Cascader: React.FC = ({className, displayRender, ...props}) => {
+const Cascader: React.FC = ({
+ className,
+ popupClassName,
+ expandIcon,
+ suffixIcon,
+ displayRender,
+ ...props
+}) => {
const innerClassName = classNames(className, clsPrefix);
- const innerDisplayRender = displayRender ?? ((label: string[]) => label.join(' > '));
- return ;
+ const innerPopupClassName = classNames(popupClassName, `${clsPrefix}-menu`);
+ const innerDisplayRender = displayRender ?? (
+ (label: string[]) => label.map(
+ (item, index) => (
+ index === label.length - 1 // 最后一个后面不加icon
+ ? ({item})
+ : (
+ <>
+ {item}
+ >
+ )
+ )
+ )
+ );
+ const innerExpandIcon = expandIcon ?? ;
+ const innerSuffixIcon = suffixIcon ?? ;
+ return (
+
+ );
};
export default Cascader;
diff --git a/packages/ui/collapse/src/index.less b/packages/ui/collapse/src/index.less
index 614385815ec97a6cf4497044e6941697c83ecbed..f63d5b61af4b3aa835b7add015d26cd419c1ea6d 100644
--- a/packages/ui/collapse/src/index.less
+++ b/packages/ui/collapse/src/index.less
@@ -25,7 +25,7 @@
padding-bottom: 0;
color: var(--theme-text-color);
font-weight: var(--collapse-header-font-weight);
- font-size: 14px;
+ font-size: var(--collapse-header-font-size);
line-height: var(--collapse-header-height);
.icon-wrapper {
@@ -46,6 +46,10 @@
}
.@{ant-prefix}-collapse-item.@{ant-prefix}-collapse-item-disabled {
+ .@{ant-prefix}-collapse-header {
+ background-color: var(--collapse-content-bg);
+ }
+
.@{ant-prefix}-collapse-header,
.@{ant-prefix}-collapse-arrow {
color: var(--collapse-disabled-color);
@@ -66,7 +70,7 @@
// 对层级的控制
.nest(@level, @content-padding, @icon-padding) {
.@{osui-collapse-class-prefix}-level-@{level} {
- .@{ant-prefix}-collapse:not(.ant-collapse-ghost) {
+ .@{ant-prefix}-collapse:not(.@{ant-prefix}-collapse-ghost) {
border-top: 0;
border-right: 0;
border-left: 0;
diff --git a/packages/ui/docs/icloud/stories/alert/index.stories.tsx b/packages/ui/docs/icloud/stories/alert/index.stories.tsx
index 1ce60ac9917f993ba70c161ae71a9ce8fea1e3ac..6150ffe13f99e9939316675da2aa0e94ce97a380 100644
--- a/packages/ui/docs/icloud/stories/alert/index.stories.tsx
+++ b/packages/ui/docs/icloud/stories/alert/index.stories.tsx
@@ -56,7 +56,7 @@ export const CountDownDemo = () => {
{console.log('closed');}}
- countDown={5}
+ countDown={50}
/>
);
};
diff --git a/packages/ui/docs/icloud/stories/button/index.stories.tsx b/packages/ui/docs/icloud/stories/button/index.stories.tsx
index 4be28bf99d19d2e97a7304c6066665b34ae23422..ae4c47653385bf16d69032c36f89d9bbe8dda7a6 100644
--- a/packages/ui/docs/icloud/stories/button/index.stories.tsx
+++ b/packages/ui/docs/icloud/stories/button/index.stories.tsx
@@ -1,5 +1,5 @@
import React from 'react';
-import { IconSearchOutlined, IconHomeOutlined } from '@osui/icons';
+import { IconSearchOutlined, IconHomeOutlined, IconPlusOutlined } from '@osui/icons';
import Space from '@osui/space';
import Button from '@osui/button';
@@ -57,6 +57,30 @@ export const Demo = () => {
);
};
+export const Size = () => {
+ return (
+ <>
+ 未在规范内,但是产品有用到,希望ue检查
+
+
+ }>确定
+
+
+
+
+
+ }>确定
+
+
+
+
+
+ }>确定
+
+ >
+ );
+};
+
export const Group = () => {
return (
<>
diff --git a/packages/ui/docs/icloud/stories/form/index.stories.tsx b/packages/ui/docs/icloud/stories/form/index.stories.tsx
index c9de435e9166631a281256aec2368643de7e7916..653fe25c8b9ee1433dcfed2c78f5cd45a4a7b771 100644
--- a/packages/ui/docs/icloud/stories/form/index.stories.tsx
+++ b/packages/ui/docs/icloud/stories/form/index.stories.tsx
@@ -1,7 +1,6 @@
import React from 'react';
import Input from '@osui/input';
import Button from '@osui/button';
-import Checkbox from '@osui/checkbox';
import Radio from '@osui/radio';
import InputNumber from '@osui/input-number';
import BrandProvider from '@osui/brand-provider';
@@ -14,7 +13,7 @@ export default {
export const Demo = () => {
const layout = {
labelCol: {
- span: 6,
+ span: 4,
},
wrapperCol: {
span: 18,
@@ -23,7 +22,7 @@ export const Demo = () => {
const tailLayout = {
wrapperCol: {
- offset: 6,
+ offset: 4,
span: 18,
},
};
@@ -39,6 +38,8 @@ export const Demo = () => {
return (
<>
注意: BrandProvider应该是App级别的,不是组件级别的
+
+
- Remember me
-
-
+
+
+
>
);
}
diff --git a/packages/ui/docs/icloud/stories/tree/index.stories.tsx b/packages/ui/docs/icloud/stories/tree/index.stories.tsx
index 5e6e4edcbf4e20ba5ec3eae3bb1bb9b0e748f571..8a58ff3b18407c0be0787623f1e50d9b30699948 100644
--- a/packages/ui/docs/icloud/stories/tree/index.stories.tsx
+++ b/packages/ui/docs/icloud/stories/tree/index.stories.tsx
@@ -3,6 +3,7 @@
/* eslint-disable react/no-multi-comp, @typescript-eslint/prefer-for-of */
import React from 'react';
import Input from '@osui/input';
+import {IconSearchOutlined} from '@osui/icons';
import Tree from '@osui/tree';
export default {
@@ -389,7 +390,13 @@ export const SearchDemo = () => {
});
return (
-
+
带搜索的树,使用Input和Tree拼出来的
+
}
+ style={{marginBottom: '20px'}}
+ placeholder="Search"
+ onChange={this.onChange}
+ />
{
const layout = {
labelCol: {
- span: 6,
+ span: 4,
},
wrapperCol: {
span: 18,
@@ -23,9 +22,9 @@ export const Demo = () => {
const tailLayout = {
wrapperCol: {
- offset: 6,
- span: 18,
- },
+ offset: 4,
+ span: 18
+ }
};
const onFinish = values => {
@@ -39,6 +38,8 @@ export const Demo = () => {
return (
<>
注意: BrandProvider应该是App级别的,不是组件级别的
+
+
- Remember me
-
);
};
+export const ExpandableDemo = () => {
+ const columns = [
+ {
+ title: 'Name',
+ dataIndex: 'name',
+ },
+ {
+ title: 'Age',
+ dataIndex: 'age',
+ sorter: (a, b) => a.age - b.age,
+ },
+ {
+ title: 'Address',
+ dataIndex: 'address',
+ filters: [
+ {
+ text: 'London',
+ value: 'London',
+ },
+ {
+ text: 'New York',
+ value: 'New York',
+ },
+ ],
+ onFilter: (value, record) => record.address.indexOf(value) === 0,
+ },
+ {
+ title: 'Action',
+ key: 'action',
+ sorter: true,
+ render: () => (
+
+ Delete
+
+ ),
+ },
+ ];
+
+ const data = [];
+ for (let i = 1; i <= 100; i++) {
+ data.push({
+ key: i,
+ name: 'John Brown',
+ age: `${i}2`,
+ address: `New York No. ${i} Lake Park`,
+ description: `My name is John Brown, I am ${i}2 years old, living in New York No. ${i} Lake Park.`,
+ });
+ }
+
+ const expandable = {
+ expandedRowRender: record => {record.description}
,
+ };
+
+ return (
+ <>
+
+
+
+ >
+ );
+};
+
+export const CheckboxDemo = () => {
+ const columns = [
+ {
+ title: 'Name',
+ dataIndex: 'name',
+ },
+ {
+ title: 'Age',
+ dataIndex: 'age',
+ sorter: (a, b) => a.age - b.age,
+ },
+ {
+ title: 'Address',
+ dataIndex: 'address',
+ filters: [
+ {
+ text: 'London',
+ value: 'London',
+ },
+ {
+ text: 'New York',
+ value: 'New York',
+ },
+ ],
+ onFilter: (value, record) => record.address.indexOf(value) === 0,
+ },
+ {
+ title: 'Action',
+ key: 'action',
+ sorter: true,
+ render: () => (
+
+ Delete
+
+ ),
+ },
+ ];
+
+ const data = [];
+ for (let i = 1; i <= 100; i++) {
+ data.push({
+ key: i,
+ name: 'John Brown',
+ age: `${i}2`,
+ address: `New York No. ${i} Lake Park`,
+ description: `My name is John Brown, I am ${i}2 years old, living in New York No. ${i} Lake Park.`,
+ });
+ }
+
+ return (
+ <>
+
+
+
+ >
+ );
+};
+
+
export const CompleteDemo = () => {
const columns = [
{
@@ -144,10 +274,10 @@ export const CompleteDemo = () => {
key: 'action',
sorter: true,
render: () => (
-
+
Delete
- More actions
+ More actions
),
@@ -165,7 +295,9 @@ export const CompleteDemo = () => {
});
}
- const expandable = { expandedRowRender: record => {record.description}
};
+ const expandable = {
+ expandedRowRender: record => {record.description}
,
+ };
const title = () => 'Here is title';
const showHeader = true;
const footer = () => 'Here is footer';
@@ -338,13 +470,15 @@ export const CompleteDemo = () => {
-
+
+
+
>
);
}
diff --git a/packages/ui/timeline/src/index.less b/packages/ui/timeline/src/index.less
index bf76c7d3b2773b19e9812d668eda66db8024aa77..cab9b1e3e85656518983a48ec8fb19723414b4a2 100644
--- a/packages/ui/timeline/src/index.less
+++ b/packages/ui/timeline/src/index.less
@@ -1,12 +1,12 @@
@osui-timeline-class-prefix: osui-timeline;
.@{osui-timeline-class-prefix} {
- .ant-timeline-item-head {
+ .@{ant-prefix}-timeline-item-head {
width: var(--timeline-dot-size);
height: var(--timeline-dot-size);
}
- .ant-timeline-item-content {
+ .@{ant-prefix}-timeline-item-content {
margin-left: var(--timeline-item-content-margin-left);
}
}
diff --git a/packages/ui/tree/src/index.less b/packages/ui/tree/src/index.less
index 3f74242c9a43c90b27682489342e33e7ea41068e..143f8df51fb85b82867516d8cd61eea429d39302 100644
--- a/packages/ui/tree/src/index.less
+++ b/packages/ui/tree/src/index.less
@@ -1,8 +1,8 @@
@osui-tree-class-prefix: osui-tree;
.@{osui-tree-class-prefix} {
- .ant-tree-node-selected {
- .ant-tree-title {
+ .@{ant-prefix}-tree-node-selected {
+ .@{ant-prefix}-tree-title {
color: var(--theme-primary-color);
}
}
@@ -11,8 +11,8 @@
font-size: 12px;
line-height: 24px;
- .ant-tree-switcher,
- .ant-tree-node-content-wrapper {
+ .@{ant-prefix}-tree-switcher,
+ .@{ant-prefix}-tree-node-content-wrapper {
line-height: 24px;
}
}
@@ -21,8 +21,8 @@
font-size: 14px;
line-height: 30px;
- .ant-tree-switcher,
- .ant-tree-node-content-wrapper {
+ .@{ant-prefix}-tree-switcher,
+ .@{ant-prefix}-tree-node-content-wrapper {
line-height: 30px;
}
}
@@ -31,9 +31,28 @@
font-size: 14px;
line-height: 40px;
- .ant-tree-switcher,
- .ant-tree-node-content-wrapper {
+ .@{ant-prefix}-tree-switcher,
+ .@{ant-prefix}-tree-node-content-wrapper {
line-height: 40px;
}
}
+
+ .@{ant-prefix}-tree-switcher {
+ width: 18px;
+ }
+
+ .@{ant-prefix}-tree-switcher .@{ant-prefix}-tree-switcher-icon,
+ .@{ant-prefix}-tree-switcher .@{ant-prefix}-select-tree-switcher-icon {
+ display: inline-block;
+ font-size: 12px;
+ vertical-align: -.125em;
+ }
+
+ &.@{ant-prefix}-tree .@{ant-prefix}-tree-node-content-wrapper {
+ padding: 0 10px;
+ }
+
+ &.@{ant-prefix}-tree .@{ant-prefix}-tree-treenode {
+ padding-bottom: 0;
+ }
}
diff --git a/packages/ui/tree/stories/icloud.stories.tsx b/packages/ui/tree/stories/icloud.stories.tsx
index d48c9b5cefca9a27e6292501a354ada7eb1882c7..4ddb79ecec22ee273532ba3db5d483cd47c3ec54 100644
--- a/packages/ui/tree/stories/icloud.stories.tsx
+++ b/packages/ui/tree/stories/icloud.stories.tsx
@@ -3,6 +3,7 @@
/* eslint-disable react/no-multi-comp, @typescript-eslint/prefer-for-of */
import React from 'react';
import Input from '@osui/input';
+import {IconSearchOutlined} from '@osui/icons';
import Tree from '../src';
export default {
@@ -389,7 +390,13 @@ export const SearchDemo = () => {
});
return (
-
+
带搜索的树,使用Input和Tree拼出来的
+
}
+ style={{marginBottom: '20px'}}
+ placeholder="Search"
+ onChange={this.onChange}
+ />
= 8"
-"@osui/alert@^0.8.9":
- version "0.8.9"
- resolved "https://registry.npm.taobao.org/@osui/alert/download/@osui/alert-0.8.9.tgz#2f82bc52f043806262a95d1d6ad4bb4c082beb2f"
- integrity sha1-L4K8UvBDgGJiqV0datS7TAgr6y8=
- dependencies:
- "@huse/boolean" "^1.0.3"
- "@huse/timeout" "^1.0.2"
- "@osui/icons" "^0.8.7"
- classnames "^2.2.6"
-
-"@osui/icons@^0.8.7":
- version "0.8.7"
- resolved "https://registry.yarnpkg.com/@osui/icons/-/icons-0.8.7.tgz#a87561d0b9e4b99fbf138cc1594607081b598109"
- integrity sha512-NK+W2V9ICGwlHKS/jKfD5Q2PiqcbBX74N0OydcxxoJoG4wR8yYrAQUlbzdWaOhsZldjT5N7LxQzGUTV0zW7hQg==
- dependencies:
- classnames "^2.2.6"
-
"@reach/router@^1.3.3":
version "1.3.4"
resolved "https://registry.npm.taobao.org/@reach/router/download/@reach/router-1.3.4.tgz#d2574b19370a70c80480ed91f3da840136d10f8c"