@lemon-fe/components 1.3.0-alpha.0 → 1.3.0-alpha.1
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/LICENSE +9 -0
- package/README.md +17 -0
- package/package.json +6 -6
package/LICENSE
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 [lemon]
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# @lemon-fe/components
|
|
2
|
+
|
|
3
|
+
本项目封装了一些面向使用场景的组件
|
|
4
|
+
|
|
5
|
+
## 使用 ag-Grid Enterprise 的注意事项
|
|
6
|
+
|
|
7
|
+
本项目集成了 **ag-Grid Enterprise**,此库的企业功能受许可证限制。
|
|
8
|
+
|
|
9
|
+
### 许可证声明:
|
|
10
|
+
|
|
11
|
+
- 本代码库不附带 ag-Grid Enterprise 的许可证。
|
|
12
|
+
- 使用方需要自行从 [ag-Grid 官方](https://www.ag-grid.com/)购买合法的许可证。
|
|
13
|
+
- 未经授权使用 ag-Grid Enterprise 可能会违反其许可条款,并承担相应的法律责任。
|
|
14
|
+
|
|
15
|
+
### 配置指南:
|
|
16
|
+
|
|
17
|
+
1. 购买许可证后,请使用 ag-grid-enterprise 自行设置许可证
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lemon-fe/components",
|
|
3
|
-
"version": "1.3.0-alpha.
|
|
3
|
+
"version": "1.3.0-alpha.1",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"homepage": "",
|
|
6
|
-
"license": "
|
|
7
|
-
"author": "
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "lusj",
|
|
8
8
|
"sideEffects": [
|
|
9
9
|
"es/index.less",
|
|
10
10
|
"es/others.js",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@dnd-kit/core": ">=6.0.0",
|
|
24
|
-
"@lemon-fe/hooks": "^1.
|
|
25
|
-
"@lemon-fe/utils": "^1.
|
|
24
|
+
"@lemon-fe/hooks": "^1.3.0-alpha.1",
|
|
25
|
+
"@lemon-fe/utils": "^1.3.0-alpha.1",
|
|
26
26
|
"ag-grid-community": "29.2.0",
|
|
27
27
|
"ag-grid-enterprise": "29.2.0",
|
|
28
28
|
"ag-grid-react": "29.2.0",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"publishConfig": {
|
|
59
59
|
"registry": "https://registry.npmjs.org"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "52760c0efff162a4398a447c2f8c942618e100ed"
|
|
62
62
|
}
|