@5minds/node-red-dashboard-2-processcube-dynamic-form 1.1.1-feature-0a66ec-m71vdgor → 1.1.1-feature-77a9de-m79111vs
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/nodes/ui-dynamic-form.html +125 -17
- package/package.json +1 -1
- package/resources/ui-dynamic-form.umd.js +2 -2
- package/ui/components/FooterActions.vue +52 -0
- package/ui/components/TitleText.vue +35 -0
- package/ui/components/UIDynamicForm.vue +710 -735
- package/ui/stylesheets/ui-dynamic-form.css +119 -39
|
@@ -43,73 +43,90 @@ code {
|
|
|
43
43
|
color: #ae0000;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
.ui-dynamic-form-
|
|
47
|
-
|
|
48
|
-
margin-left: auto;
|
|
49
|
-
margin-right: auto;
|
|
50
|
-
border-radius: 12px;
|
|
51
|
-
box-shadow: 0 4px 16px -3px rgba(0, 0, 0, 0.5);
|
|
52
|
-
max-height: 90%;
|
|
46
|
+
.ui-dynamic-form-common {
|
|
47
|
+
border-radius: 8px;
|
|
53
48
|
}
|
|
54
49
|
|
|
55
|
-
.
|
|
56
|
-
|
|
57
|
-
color: white !important;
|
|
50
|
+
.ui-dynamic-form-light {
|
|
51
|
+
box-shadow: 0 4px 16px -3px rgba(0, 0, 0, 0.5);
|
|
58
52
|
}
|
|
59
53
|
|
|
60
54
|
.ui-dynamic-form-dark {
|
|
61
|
-
max-width: 500px;
|
|
62
|
-
margin-left: auto;
|
|
63
|
-
margin-right: auto;
|
|
64
|
-
border-radius: 12px;
|
|
65
55
|
box-shadow: 0 4px 16px -3px rgba(255, 255, 255, 0.9);
|
|
66
56
|
background-color: rgba(44, 44, 44, 255);
|
|
67
57
|
color: rgba(165, 165, 165, 255);
|
|
68
|
-
max-height: 90%;
|
|
69
58
|
color-scheme: dark;
|
|
70
59
|
}
|
|
71
60
|
|
|
72
61
|
.ui-dynamic-form-default {
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
margin-right: auto;
|
|
76
|
-
border-radius: 12px;
|
|
77
|
-
box-shadow: 0 4px 16px -3px rgb(var(--v-theme-on-group-background));
|
|
62
|
+
border-bottom: 4px solid rgb(var(--v-theme-primary));
|
|
63
|
+
box-shadow: 0px 0px 32px 0px #BABABA;
|
|
78
64
|
background-color: rgb(var(--v-theme-group-background));
|
|
79
65
|
color: rgb(var(--v-theme-on-group-background));
|
|
80
|
-
max-height: 90%;
|
|
81
66
|
}
|
|
82
67
|
|
|
83
|
-
.ui-dynamic-form-
|
|
68
|
+
.ui-dynamic-form-title-default {
|
|
69
|
+
background: linear-gradient(131deg, #18181A 26.76%, #242326 100.16%);
|
|
70
|
+
padding: 32px;
|
|
71
|
+
color: #ffffff;
|
|
72
|
+
font-size: 36px;
|
|
73
|
+
font-weight: 700;
|
|
74
|
+
border-radius: 8px 8px 0px 0px;
|
|
75
|
+
margin-top: 0px;
|
|
76
|
+
border: 2px solid #F6F5FA;
|
|
77
|
+
border-bottom: none;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.ui-dynamic-form-title-default hr {
|
|
81
|
+
border: 4px solid rgb(var(--v-theme-primary));
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.ui-dynamic-form-title-minimal {
|
|
85
|
+
padding: 16px;
|
|
86
|
+
margin-top: 0px;
|
|
87
|
+
border: 2px solid #F6F5FA;
|
|
88
|
+
border-bottom: none;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.ui-dynamic-form-title-outside {
|
|
92
|
+
padding-bottom: 24px;
|
|
93
|
+
padding-top: 24px;
|
|
94
|
+
font-size: 24px;
|
|
95
|
+
font-weight: 700;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.ui-dynamic-form-footer-common {
|
|
84
99
|
display: flex;
|
|
85
100
|
flex-direction: column;
|
|
86
101
|
gap: 8px;
|
|
87
|
-
padding: 16px;
|
|
88
102
|
margin: 0;
|
|
89
|
-
border-bottom-left-radius:
|
|
90
|
-
border-bottom-right-radius:
|
|
103
|
+
border-bottom-left-radius: 8px;
|
|
104
|
+
border-bottom-right-radius: 8px;
|
|
91
105
|
}
|
|
92
106
|
|
|
107
|
+
.ui-dynamic-form-footer-default {}
|
|
108
|
+
|
|
93
109
|
.ui-dynamic-form-footer-light {
|
|
94
|
-
display: flex;
|
|
95
|
-
flex-direction: column;
|
|
96
|
-
gap: 8px;
|
|
97
|
-
padding: 16px;
|
|
98
110
|
background-color: rgba(249, 250, 251, 1);
|
|
99
|
-
margin: 0;
|
|
100
|
-
border-bottom-left-radius: 12px;
|
|
101
|
-
border-bottom-right-radius: 12px;
|
|
102
111
|
}
|
|
103
112
|
|
|
104
113
|
.ui-dynamic-form-footer-dark {
|
|
105
|
-
display: flex;
|
|
106
|
-
flex-direction: column;
|
|
107
|
-
gap: 8px;
|
|
108
|
-
padding: 16px;
|
|
109
114
|
background-color: rgba(35, 35, 35, 255);
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.ui-dynamic-form-footer-action-primary {
|
|
118
|
+
border-radius: 8px;
|
|
119
|
+
background-color: rgb(var(--v-theme-primary));
|
|
120
|
+
padding: 8px;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.ui-dynamic-form-footer-action-secondary {
|
|
124
|
+
border-radius: 8px;
|
|
125
|
+
background-color: transparent !important;
|
|
126
|
+
border-color: rgb(var(--v-theme-primary));
|
|
127
|
+
border: 2px solid;
|
|
128
|
+
color: rgb(var(--v-theme-primary));
|
|
129
|
+
padding: 8px;
|
|
113
130
|
}
|
|
114
131
|
|
|
115
132
|
.ui-dynamic-form-wrapper {
|
|
@@ -119,7 +136,31 @@ code {
|
|
|
119
136
|
--fk-color-input: rgb(var(--v-theme-on-group-background));
|
|
120
137
|
--fk-color-help: rgb(var(--v-theme-on-group-background));
|
|
121
138
|
--fk-color-border-focus: rgb(var(--v-theme-primary));
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.ui-dynamic-form-external-sizing-wrapper {
|
|
142
|
+
margin-left: 92px;
|
|
143
|
+
margin-right: 92px;
|
|
144
|
+
max-width: none;
|
|
145
|
+
max-height: 90%;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.ui-dynamic-form-formfield-positioner {
|
|
149
|
+
padding: 32px;
|
|
150
|
+
padding-top: 0px;
|
|
151
|
+
max-height: 550px;
|
|
152
|
+
overflow-y: auto;
|
|
153
|
+
display: flex;
|
|
154
|
+
flex-wrap: wrap;
|
|
155
|
+
flex-direction: row;
|
|
156
|
+
column-gap: 20px;
|
|
157
|
+
border-left: 2px solid #F6F5FA;
|
|
158
|
+
border-right: 2px solid #F6F5FA;
|
|
159
|
+
border-radius: 0px 0px 6px 6px;
|
|
160
|
+
}
|
|
122
161
|
|
|
162
|
+
.ui-dynamic-form-formfield-positioner h1, .ui-dynamic-form-formfield-positioner h2, .ui-dynamic-form-formfield-positioner h3 {
|
|
163
|
+
margin: 0px;
|
|
123
164
|
}
|
|
124
165
|
|
|
125
166
|
.reset-background {
|
|
@@ -129,3 +170,42 @@ code {
|
|
|
129
170
|
.custom-fieldset {
|
|
130
171
|
max-width: none !important;
|
|
131
172
|
}
|
|
173
|
+
|
|
174
|
+
.input-dark {
|
|
175
|
+
background-color: rgba(85, 85, 85, 255);
|
|
176
|
+
color: white !important;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.input-light, .input-default, .input-dark {
|
|
180
|
+
border-radius: 0px 0px 0px 8px;
|
|
181
|
+
font-size: 18px;
|
|
182
|
+
font-weight: 400;
|
|
183
|
+
font-style: normal;
|
|
184
|
+
padding: 4px 8px;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.input-light:focus, .input-dark:focus, .input-default:focus {
|
|
188
|
+
background-color: #F6F5FA;
|
|
189
|
+
border-radius: 0 8px 0px 5px;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.ui-dynamic-form-input-outlines {
|
|
193
|
+
box-shadow: none !important;
|
|
194
|
+
border-radius: 0px 0px 0px 8px;
|
|
195
|
+
border-bottom: 2px solid rgb(var(--v-theme-primary));
|
|
196
|
+
border-left: 2px solid rgb(var(--v-theme-primary));
|
|
197
|
+
padding-bottom: 2px;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.ui-dynamic-form-input-outlines:focus-within {
|
|
201
|
+
transition: padding-bottom 0.1s ease-in-out, border-width 0.1s ease-in-out;
|
|
202
|
+
border-width: 4px;
|
|
203
|
+
padding-bottom: 0px;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.ui-dynamic-form-input-label {
|
|
207
|
+
font-size: 18px;
|
|
208
|
+
font-weight: 400;
|
|
209
|
+
font-style: normal;
|
|
210
|
+
padding-bottom: 16px;
|
|
211
|
+
}
|