@vunk/form 0.0.0-alpha.1 → 0.0.0-alpha.2

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.
@@ -16,29 +16,6 @@
16
16
  flex: 1;
17
17
  }
18
18
 
19
- .vkf-ground-main {
20
- min-height: 100%;
21
- padding: .5em;
22
- }
23
- .vkf-ground-end.is-dragover-prev {
24
- border-top: 2px var(--el-color-primary) solid;
25
- }
26
- .vkf-gm-form-item-x.vk-tab-item{
27
- cursor: initial;
28
- }
29
- .vkf-gm-form-item-x.is-active{
30
- border: 2px var(--el-color-primary) dashed;
31
- /* margin-bottom: .5em; */
32
- }
33
- .vkf-gm-form-item-x .el-form-item {
34
- transition: all .3s ease;
35
- }
36
- .vkf-gm-form-item-x.is-active .el-form-item{
37
- padding: 1em .5em 0;
38
- }
39
-
40
-
41
-
42
19
  .vkf-widget-tab{
43
20
  position: relative;
44
21
  width: 100%;
@@ -66,6 +43,29 @@
66
43
  border-radius: 4px;
67
44
  }
68
45
 
46
+ .vkf-ground-main {
47
+ min-height: 100%;
48
+ padding: .5em;
49
+ }
50
+ .vkf-ground-end.is-dragover-prev {
51
+ border-top: 2px var(--el-color-primary) solid;
52
+ }
53
+ .vkf-gm-form-item-x.vk-tab-item{
54
+ cursor: initial;
55
+ }
56
+ .vkf-gm-form-item-x.is-active{
57
+ border: 2px var(--el-color-primary) dashed;
58
+ /* margin-bottom: .5em; */
59
+ }
60
+ .vkf-gm-form-item-x .el-form-item {
61
+ transition: all .3s ease;
62
+ }
63
+ .vkf-gm-form-item-x.is-active .el-form-item{
64
+ padding: 1em .5em 0;
65
+ }
66
+
67
+
68
+
69
69
  .vkf-gmew-drag-wrapper{
70
70
  cursor: move;
71
71
  background: var(--el-color-primary);
@@ -9,3 +9,4 @@ export * from '@vunk-form/components/config-renderer';
9
9
  export * from '@vunk-form/components/config-renderer-template';
10
10
  export * from '@vunk-form/components/config';
11
11
  export * from '@vunk-form/components/confirm-input';
12
+ export * from '@vunk-form/components/form';
package/index.css CHANGED
@@ -26,29 +26,6 @@
26
26
  flex: 1;
27
27
  }
28
28
 
29
- .vkf-ground-main {
30
- min-height: 100%;
31
- padding: .5em;
32
- }
33
- .vkf-ground-end.is-dragover-prev {
34
- border-top: 2px var(--el-color-primary) solid;
35
- }
36
- .vkf-gm-form-item-x.vk-tab-item{
37
- cursor: initial;
38
- }
39
- .vkf-gm-form-item-x.is-active{
40
- border: 2px var(--el-color-primary) dashed;
41
- /* margin-bottom: .5em; */
42
- }
43
- .vkf-gm-form-item-x .el-form-item {
44
- transition: all .3s ease;
45
- }
46
- .vkf-gm-form-item-x.is-active .el-form-item{
47
- padding: 1em .5em 0;
48
- }
49
-
50
-
51
-
52
29
  .vkf-widget-tab{
53
30
  position: relative;
54
31
  width: 100%;
@@ -76,6 +53,29 @@
76
53
  border-radius: 4px;
77
54
  }
78
55
 
56
+ .vkf-ground-main {
57
+ min-height: 100%;
58
+ padding: .5em;
59
+ }
60
+ .vkf-ground-end.is-dragover-prev {
61
+ border-top: 2px var(--el-color-primary) solid;
62
+ }
63
+ .vkf-gm-form-item-x.vk-tab-item{
64
+ cursor: initial;
65
+ }
66
+ .vkf-gm-form-item-x.is-active{
67
+ border: 2px var(--el-color-primary) dashed;
68
+ /* margin-bottom: .5em; */
69
+ }
70
+ .vkf-gm-form-item-x .el-form-item {
71
+ transition: all .3s ease;
72
+ }
73
+ .vkf-gm-form-item-x.is-active .el-form-item{
74
+ padding: 1em .5em 0;
75
+ }
76
+
77
+
78
+
79
79
  .vkf-gmew-drag-wrapper{
80
80
  cursor: move;
81
81
  background: var(--el-color-primary);
package/index.d.ts CHANGED
@@ -21,3 +21,4 @@ export * from '@vunk/form/components/config'
21
21
 
22
22
  export * from '@vunk/form/components/confirm-input'
23
23
 
24
+ export * from '@vunk/form/components/form'
package/index.esm.js CHANGED
@@ -9,3 +9,4 @@ export * from '@vunk/form/components/config-renderer';
9
9
  export * from '@vunk/form/components/config-renderer-template';
10
10
  export * from '@vunk/form/components/config';
11
11
  export * from '@vunk/form/components/confirm-input';
12
+ export * from '@vunk/form/components/form';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vunk/form",
3
- "version": "0.0.0-alpha.1",
3
+ "version": "0.0.0-alpha.2",
4
4
  "description": "",
5
5
  "module": "index.esm.js",
6
6
  "scripts": {
@@ -9,3 +9,4 @@ export * from '@vunk-form/components/config-renderer';
9
9
  export * from '@vunk-form/components/config-renderer-template';
10
10
  export * from '@vunk-form/components/config';
11
11
  export * from '@vunk-form/components/confirm-input';
12
+ export * from '@vunk-form/components/form';