@form-create/iview 2.5.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/LICENSE +21 -0
- package/README.md +29 -0
- package/dist/form-create.js +5930 -0
- package/dist/form-create.min.js +8 -0
- package/dist/form-create.min.js.map +1 -0
- package/package.json +69 -0
- package/src/components/index.js +19 -0
- package/src/core/alias.js +27 -0
- package/src/core/api.js +159 -0
- package/src/core/config.js +48 -0
- package/src/core/index.js +39 -0
- package/src/core/maker.js +93 -0
- package/src/core/manager.js +241 -0
- package/src/index.js +16 -0
- package/src/parsers/datePicker.js +78 -0
- package/src/parsers/hidden.js +12 -0
- package/src/parsers/index.js +10 -0
- package/src/parsers/input.js +21 -0
- package/src/parsers/row.js +8 -0
- package/src/parsers/slider.js +20 -0
- package/src/parsers/switch.js +10 -0
- package/src/style/index.css +7 -0
- package/types/config.d.ts +111 -0
- package/types/index.d.ts +31 -0
- package/types/maker.d.ts +14 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2018 xaboy
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# @form-create/iview
|
|
2
|
+
**form-create 是一个可以通过 JSON 生成具有动态渲染、数据收集、验证和提交功能的表单生成组件。支持3个UI框架,并且支持生成任何 Vue 组件。内置20种常用表单组件和自定义组件,再复杂的表单都可以轻松搞定。**
|
|
3
|
+
|
|
4
|
+
form-create is a form generation component that can generate dynamic rendering, data collection, verification and submission functions through JSON. Supports 3 UI frameworks, and supports the generation of any Vue components. Built-in 20 kinds of commonly used form components and custom components, no matter how complex forms can be easily handled.
|
|
5
|
+
|
|
6
|
+
> form-create iview 动态表单组件
|
|
7
|
+
>
|
|
8
|
+
> form-create iview Dynamic form component
|
|
9
|
+
|
|
10
|
+
[GitHub](https://github.com/xaboy/form-create) | [文档](http://form-create.com/v2/iview/) | [Document](http://form-create.com/en/v2/iview/)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
- **预览**
|
|
14
|
+
|
|
15
|
+

|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
- **操作表单**
|
|
19
|
+
|
|
20
|
+

|
|
21
|
+
|
|
22
|
+
- **`group` 组件**
|
|
23
|
+
|
|
24
|
+

|
|
25
|
+
|
|
26
|
+
- **`control` 配置项**
|
|
27
|
+
|
|
28
|
+

|
|
29
|
+
|