@vortex-ui/env-puzzle 2.0.0-beta.8 → 2.0.0-beta.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +46 -46
- package/lib/b-map/js/marker-clusterer.js +181 -181
- package/lib/b-map/js/marker-clusterer.js.map +1 -1
- package/lib/b-map/style/index.less +10 -10
- package/lib/create-modal/create-modal.js +1 -1
- package/lib/create-modal/create-modal.js.map +1 -1
- package/lib/create-modal/style/index.less +119 -122
- package/lib/global.less +6 -11
- package/lib/import-modal/style/index.less +15 -15
- package/lib/percent/style/index.less +41 -41
- package/lib/scroll/style/index.less +3 -3
- package/lib/scroll-select/style/index.less +7 -7
- package/lib/style/color.less +1 -1
- package/lib/style/darkGreen.css +88 -0
- package/lib/style/darkGreen.less +482 -370
- package/lib/template/action.js.map +1 -1
- package/lib/template/filter.d.ts +1 -0
- package/lib/template/filter.js +10 -7
- package/lib/template/filter.js.map +1 -1
- package/lib/template/renderColumnButtons.js +2 -2
- package/lib/template/renderColumnButtons.js.map +1 -1
- package/lib/template/style/action.less +71 -71
- package/lib/template/style/card.less +88 -88
- package/lib/template/style/check-row.less +27 -27
- package/lib/template/style/field.less +11 -11
- package/lib/template/style/filter.css +29 -0
- package/lib/template/style/filter.less +72 -46
- package/lib/template/style/icon.less +7 -7
- package/lib/template/style/index.css +31 -2
- package/lib/template/style/index.less +49 -49
- package/lib/template/style/table.css +2 -2
- package/lib/template/style/table.less +91 -84
- package/lib/template/table.js +6 -2
- package/lib/template/table.js.map +1 -1
- package/lib/template/template.d.ts +1 -1
- package/lib/template/template.js +73 -27
- package/lib/template/template.js.map +1 -1
- package/lib/template/vtx-search/index.d.ts +2 -0
- package/lib/template/vtx-search/index.js +126 -0
- package/lib/template/vtx-search/index.js.map +1 -0
- package/lib/template/vtx-search/style/index.css +92 -0
- package/lib/template/vtx-search/style/index.less +92 -0
- package/lib/to-map/style/index.less +86 -86
- package/lib/view-modal/style/index.less +57 -57
- package/package.json +143 -143
package/README.md
CHANGED
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
<h1 align="center">Env Puzzle</h1>
|
|
2
|
-
|
|
3
|
-
<div align="center">
|
|
4
|
-
环境云前端团队组件沉淀
|
|
5
|
-
</div>
|
|
6
|
-
|
|
7
|
-
[](https://codecov.io/gh/FireBushtree/env-puzzle)
|
|
8
|
-
[](https://npmcharts.com/compare/env-puzzle?minimal=true)
|
|
9
|
-
[](https://www.npmjs.com/package/env-puzzle)
|
|
10
|
-
|
|
11
|
-
## 📦 安装
|
|
12
|
-
|
|
13
|
-
```
|
|
14
|
-
yarn add env-puzzle
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
or
|
|
18
|
-
|
|
19
|
-
```
|
|
20
|
-
npm i env-puzzle
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
## 🔨 示例
|
|
24
|
-
|
|
25
|
-
```typescript
|
|
26
|
-
import {Template, CreateModal, ViewModal} from 'env-puzzle';
|
|
27
|
-
|
|
28
|
-
const App = () => (
|
|
29
|
-
<>
|
|
30
|
-
<Template></Template>
|
|
31
|
-
<CreateModal />
|
|
32
|
-
<ViewModal />
|
|
33
|
-
</>
|
|
34
|
-
)
|
|
35
|
-
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
## ⌨️ 本地开发
|
|
39
|
-
|
|
40
|
-
克隆到本地开发:
|
|
41
|
-
```bash
|
|
42
|
-
$ git clone git@github.com:FireBushtree/env-puzzle.git
|
|
43
|
-
$ cd env-puzzle
|
|
44
|
-
$ npm install
|
|
45
|
-
$ npm start
|
|
46
|
-
```
|
|
1
|
+
<h1 align="center">Env Puzzle</h1>
|
|
2
|
+
|
|
3
|
+
<div align="center">
|
|
4
|
+
环境云前端团队组件沉淀
|
|
5
|
+
</div>
|
|
6
|
+
|
|
7
|
+
[](https://codecov.io/gh/FireBushtree/env-puzzle)
|
|
8
|
+
[](https://npmcharts.com/compare/env-puzzle?minimal=true)
|
|
9
|
+
[](https://www.npmjs.com/package/env-puzzle)
|
|
10
|
+
|
|
11
|
+
## 📦 安装
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
yarn add env-puzzle
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
or
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
npm i env-puzzle
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## 🔨 示例
|
|
24
|
+
|
|
25
|
+
```typescript
|
|
26
|
+
import {Template, CreateModal, ViewModal} from 'env-puzzle';
|
|
27
|
+
|
|
28
|
+
const App = () => (
|
|
29
|
+
<>
|
|
30
|
+
<Template></Template>
|
|
31
|
+
<CreateModal />
|
|
32
|
+
<ViewModal />
|
|
33
|
+
</>
|
|
34
|
+
)
|
|
35
|
+
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## ⌨️ 本地开发
|
|
39
|
+
|
|
40
|
+
克隆到本地开发:
|
|
41
|
+
```bash
|
|
42
|
+
$ git clone git@github.com:FireBushtree/env-puzzle.git
|
|
43
|
+
$ cd env-puzzle
|
|
44
|
+
$ npm install
|
|
45
|
+
$ npm start
|
|
46
|
+
```
|