isite 2022.9.19 → 2022.9.22
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 +19 -0
- package/apps/client-side/app.js +2 -0
- package/apps/client-side/site_files/css/bootstrap5-addon.css +14 -1
- package/apps/client-side/site_files/css/checkbox.css +80 -77
- package/apps/client-side/site_files/css/form.css +2 -2
- package/apps/client-side/site_files/css/images.css +32 -15
- package/apps/client-side/site_files/css/modal.css +153 -154
- package/apps/client-side/site_files/css/scrollbar.css +4 -3
- package/apps/client-side/site_files/css/theme.css +4 -2
- package/apps/client-side/site_files/css/theme_paper.css +4 -2
- package/apps/client-side/site_files/css/treeview.css +17 -4
- package/apps/client-side/site_files/html/directive/i-button.html +1 -1
- package/apps/client-side/site_files/html/directive/i-date.html +3 -3
- package/apps/client-side/site_files/html/directive/i-datetime.html +5 -5
- package/apps/client-side/site_files/html/directive/i-treenode.html +3 -3
- package/apps/client-side/site_files/html/directive/i-treeview.html +6 -11
- package/apps/client-side/site_files/js/bootstrap-5-directive.js +32 -10
- package/apps/client-side/site_files/js/last.js +5 -3
- package/apps/client-side/site_files/js/site.js +5 -3
- package/index.js +2 -0
- package/lib/helper.js +43 -0
- package/lib/session.js +5 -2
- package/object-options/index.js +238 -234
- package/package.json +1 -1
|
@@ -1,199 +1,199 @@
|
|
|
1
1
|
.modal {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
2
|
+
display: none;
|
|
3
|
+
position: fixed;
|
|
4
|
+
z-index: 999999;
|
|
5
|
+
padding-top: 20px;
|
|
6
|
+
padding-bottom: 20px;
|
|
7
|
+
left: 0;
|
|
8
|
+
top: 0;
|
|
9
|
+
right: 0;
|
|
10
|
+
width: 100% !important;
|
|
11
|
+
height: 100% !important;
|
|
12
|
+
max-width: 100% !important;
|
|
13
|
+
background-color: var(--modal-background) !important;
|
|
14
|
+
overflow: auto;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
.modal-content {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
18
|
+
border: var(---modal-content-border);
|
|
19
|
+
position: relative;
|
|
20
|
+
color: var(--modal-color);
|
|
21
|
+
background-color: var(--modal-content-background);
|
|
22
|
+
margin: auto;
|
|
23
|
+
padding: 0;
|
|
24
|
+
width: 90vw;
|
|
25
|
+
height: auto !important;
|
|
26
|
+
box-shadow: 0 4px 8px 0 var(--modal-box-shadow-color), 0 6px 20px 0 var(--modal-box-shadow-color);
|
|
27
|
+
-webkit-animation-name: var(--modal-animation-name);
|
|
28
|
+
-webkit-animation-duration: var(--modal-animation-duration);
|
|
29
|
+
animation-name: var(--modal-animation-name);
|
|
30
|
+
animation-duration: var(--modal-animation-duration);
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
.modal.small .modal-content,
|
|
34
34
|
.modal-content.small {
|
|
35
|
-
|
|
35
|
+
width: 50%;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
.modal-header {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
39
|
+
padding: 8px 16px;
|
|
40
|
+
background-color: var(--modal-header-background-color);
|
|
41
|
+
color: var(--modal-header-color);
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
.modal-body {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
45
|
+
display: contents;
|
|
46
|
+
color: var(--modal-color);
|
|
47
|
+
overflow: visible;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
.modal-footer {
|
|
51
|
-
|
|
52
|
-
|
|
51
|
+
padding: 2px 16px;
|
|
52
|
+
color: var(--modal-footer-color);
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
@-webkit-keyframes animatetop {
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
56
|
+
from {
|
|
57
|
+
top: -300px;
|
|
58
|
+
opacity: 0;
|
|
59
|
+
}
|
|
60
|
+
to {
|
|
61
|
+
top: 0;
|
|
62
|
+
opacity: 1;
|
|
63
|
+
}
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
@keyframes animatetop {
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
67
|
+
from {
|
|
68
|
+
top: -300px;
|
|
69
|
+
opacity: 0;
|
|
70
|
+
}
|
|
71
|
+
to {
|
|
72
|
+
top: 0;
|
|
73
|
+
opacity: 1;
|
|
74
|
+
}
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
@-webkit-keyframes animatebottom {
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
78
|
+
from {
|
|
79
|
+
top: 1000px;
|
|
80
|
+
opacity: 0;
|
|
81
|
+
}
|
|
82
|
+
to {
|
|
83
|
+
top: 0;
|
|
84
|
+
opacity: 1;
|
|
85
|
+
}
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
@keyframes animatebottom {
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
89
|
+
from {
|
|
90
|
+
top: 1000px;
|
|
91
|
+
opacity: 0;
|
|
92
|
+
}
|
|
93
|
+
to {
|
|
94
|
+
top: 0;
|
|
95
|
+
opacity: 1;
|
|
96
|
+
}
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
@-webkit-keyframes animateleft {
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
100
|
+
from {
|
|
101
|
+
left: -300px;
|
|
102
|
+
opacity: 0;
|
|
103
|
+
}
|
|
104
|
+
to {
|
|
105
|
+
left: 0;
|
|
106
|
+
opacity: 1;
|
|
107
|
+
}
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
@keyframes animateleft {
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
111
|
+
from {
|
|
112
|
+
left: -300px;
|
|
113
|
+
opacity: 0;
|
|
114
|
+
}
|
|
115
|
+
to {
|
|
116
|
+
left: 0;
|
|
117
|
+
opacity: 1;
|
|
118
|
+
}
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
@-webkit-keyframes animateopacity {
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
122
|
+
from {
|
|
123
|
+
opacity: 0;
|
|
124
|
+
}
|
|
125
|
+
to {
|
|
126
|
+
opacity: 1;
|
|
127
|
+
}
|
|
128
128
|
}
|
|
129
129
|
|
|
130
130
|
@keyframes animateopacity {
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
131
|
+
from {
|
|
132
|
+
opacity: 0;
|
|
133
|
+
}
|
|
134
|
+
to {
|
|
135
|
+
opacity: 1;
|
|
136
|
+
}
|
|
137
137
|
}
|
|
138
138
|
|
|
139
139
|
.modal-header .close {
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
140
|
+
color: var(--modal-color);
|
|
141
|
+
float: right;
|
|
142
|
+
font-size: 26px;
|
|
143
|
+
margin-top: -10px;
|
|
144
|
+
font-weight: bold;
|
|
145
145
|
}
|
|
146
146
|
|
|
147
147
|
.modal-header .close:hover,
|
|
148
148
|
.modal-header .close:focus {
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
149
|
+
color: rgb(221, 17, 17);
|
|
150
|
+
text-decoration: none;
|
|
151
|
+
cursor: pointer;
|
|
152
152
|
}
|
|
153
153
|
.modal-header h2 {
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
154
|
+
font-size: 16px;
|
|
155
|
+
text-align: center;
|
|
156
|
+
padding: 0px;
|
|
157
|
+
margin: 0 auto;
|
|
158
|
+
color: #ffffff;
|
|
159
|
+
font-weight: bold;
|
|
160
160
|
}
|
|
161
161
|
|
|
162
162
|
.popup {
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
163
|
+
overflow: auto;
|
|
164
|
+
display: block;
|
|
165
|
+
padding: 5px;
|
|
166
|
+
box-shadow: 1px 1px 10px 1px #000;
|
|
167
|
+
z-index: 4000;
|
|
168
|
+
max-height: 250px;
|
|
169
|
+
position: fixed;
|
|
170
|
+
background: var(--modal-content-background);
|
|
171
|
+
min-width: 250px;
|
|
172
|
+
-webkit-animation-name: animatepopup;
|
|
173
|
+
-webkit-animation-duration: 0.5s;
|
|
174
|
+
animation-name: animatepopup;
|
|
175
|
+
animation-duration: 0.5s;
|
|
176
176
|
}
|
|
177
177
|
|
|
178
178
|
.popup item {
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
179
|
+
display: block;
|
|
180
|
+
padding: 5px;
|
|
181
|
+
color: var(--input-color);
|
|
182
|
+
font-weight: bold;
|
|
183
|
+
cursor: pointer;
|
|
184
184
|
}
|
|
185
185
|
|
|
186
186
|
.popup item:hover {
|
|
187
|
-
|
|
188
|
-
|
|
187
|
+
background: var(--theme-color);
|
|
188
|
+
color: #ffffff;
|
|
189
189
|
}
|
|
190
190
|
|
|
191
191
|
.popup .search-box {
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
192
|
+
background-color: var(--modal-header-background-color);
|
|
193
|
+
border: var(--border);
|
|
194
|
+
overflow: hidden;
|
|
195
|
+
position: relative;
|
|
196
|
+
width: 100%;
|
|
197
197
|
}
|
|
198
198
|
.popup .search-box .icon-close {
|
|
199
199
|
height: 100%;
|
|
@@ -202,7 +202,7 @@
|
|
|
202
202
|
background: red;
|
|
203
203
|
}
|
|
204
204
|
|
|
205
|
-
.popup .search-box .icon-close i{
|
|
205
|
+
.popup .search-box .icon-close i {
|
|
206
206
|
height: 100%;
|
|
207
207
|
position: absolute;
|
|
208
208
|
left: 35%;
|
|
@@ -216,7 +216,7 @@
|
|
|
216
216
|
position: absolute;
|
|
217
217
|
background: red;
|
|
218
218
|
}
|
|
219
|
-
.popup .search-box .icon-search i{
|
|
219
|
+
.popup .search-box .icon-search i {
|
|
220
220
|
height: 100%;
|
|
221
221
|
position: absolute;
|
|
222
222
|
left: 35%;
|
|
@@ -225,30 +225,29 @@
|
|
|
225
225
|
background: green;
|
|
226
226
|
}
|
|
227
227
|
|
|
228
|
-
|
|
229
228
|
@-webkit-keyframes animatepopup {
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
229
|
+
from {
|
|
230
|
+
opacity: 0;
|
|
231
|
+
}
|
|
232
|
+
to {
|
|
233
|
+
opacity: 1;
|
|
234
|
+
}
|
|
236
235
|
}
|
|
237
236
|
|
|
238
237
|
@keyframes animatepopup {
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
238
|
+
from {
|
|
239
|
+
opacity: 0;
|
|
240
|
+
}
|
|
241
|
+
to {
|
|
242
|
+
opacity: 1;
|
|
243
|
+
}
|
|
245
244
|
}
|
|
246
245
|
|
|
247
246
|
/* Mobile */
|
|
248
247
|
@media screen and (max-width: 480px) {
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
248
|
+
.modal.small .modal-content,
|
|
249
|
+
.modal-content.small {
|
|
250
|
+
width: 95vw;
|
|
251
|
+
margin: 2vw !important;
|
|
254
252
|
}
|
|
253
|
+
}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
::-webkit-scrollbar {
|
|
2
|
-
width:
|
|
2
|
+
width: var(--scrollbar-width);
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
::-webkit-scrollbar-track {
|
|
6
|
-
-webkit-box-shadow:
|
|
6
|
+
-webkit-box-shadow: var(--scrollbar-box-shadow);
|
|
7
|
+
box-shadow: var(--scrollbar-box-shadow);
|
|
7
8
|
}
|
|
8
9
|
|
|
9
10
|
::-webkit-scrollbar-thumb {
|
|
10
11
|
background-color: var(--scrollbar-background-color);
|
|
11
|
-
outline:
|
|
12
|
+
outline: var(--scrollbar-outline);
|
|
12
13
|
}
|
|
@@ -143,7 +143,9 @@
|
|
|
143
143
|
--main-menu-h2-color: #ffffff;
|
|
144
144
|
--main-menu-p-color: #ffffff;
|
|
145
145
|
|
|
146
|
-
--scrollbar-
|
|
146
|
+
--scrollbar-width : 10px;
|
|
147
147
|
--scrollbar-color: #ffeb3b;
|
|
148
|
-
--scrollbar-
|
|
148
|
+
--scrollbar-outline:1px solid var(--scrollbar-color);
|
|
149
|
+
--scrollbar-background-color: #272727;
|
|
150
|
+
--scrollbar-box-shadow: inset 0 0 6px #4caf50;
|
|
149
151
|
}
|
|
@@ -173,7 +173,9 @@
|
|
|
173
173
|
--main-menu-h2-color: #000;
|
|
174
174
|
--main-menu-p-color: #000;
|
|
175
175
|
|
|
176
|
-
--scrollbar-
|
|
176
|
+
--scrollbar-width : 10px;
|
|
177
177
|
--scrollbar-color: #ffeb3b;
|
|
178
|
-
--scrollbar-
|
|
178
|
+
--scrollbar-outline:1px solid var(--scrollbar-color);
|
|
179
|
+
--scrollbar-background-color: #272727;
|
|
180
|
+
--scrollbar-box-shadow: inset 0 0 6px #4caf50;
|
|
179
181
|
}
|
|
@@ -6,6 +6,18 @@
|
|
|
6
6
|
-moz-user-select: none;
|
|
7
7
|
-ms-user-select: none;
|
|
8
8
|
}
|
|
9
|
+
.treeview .main-node{
|
|
10
|
+
display: block;
|
|
11
|
+
}
|
|
12
|
+
.treeview .main-node > i{
|
|
13
|
+
display: inline-block;
|
|
14
|
+
}
|
|
15
|
+
.treeview .main-node > h2{
|
|
16
|
+
display: inline-block;
|
|
17
|
+
}
|
|
18
|
+
.treeview .main-node > i-button{
|
|
19
|
+
display: inline-block;
|
|
20
|
+
}
|
|
9
21
|
|
|
10
22
|
.treeview i-treenode ul{
|
|
11
23
|
transition: all linear .3s;
|
|
@@ -18,6 +30,7 @@
|
|
|
18
30
|
|
|
19
31
|
.treeview .actions {
|
|
20
32
|
display: inline-block;
|
|
33
|
+
width: auto;
|
|
21
34
|
}
|
|
22
35
|
|
|
23
36
|
.treeview ul {
|
|
@@ -49,10 +62,12 @@
|
|
|
49
62
|
font-size: 14px;
|
|
50
63
|
font-weight: bold;
|
|
51
64
|
cursor: pointer;
|
|
52
|
-
padding:
|
|
65
|
+
padding: 10px 10px;
|
|
53
66
|
border-radius: 5px;
|
|
54
67
|
transition: all ease-out .2s;
|
|
55
|
-
-webkit-transition:all ease-out .2s;
|
|
68
|
+
-webkit-transition: all ease-out .2s;
|
|
69
|
+
display: inline-block;
|
|
70
|
+
width: auto;
|
|
56
71
|
}
|
|
57
72
|
|
|
58
73
|
.treenode li span.text:hover {
|
|
@@ -63,6 +78,4 @@
|
|
|
63
78
|
.treenode li .selected {
|
|
64
79
|
background: var(--treeview-background-color2);
|
|
65
80
|
color: var(--treeview-color2);
|
|
66
|
-
border-radius: 5px;
|
|
67
|
-
padding: 5px;
|
|
68
81
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<button class="btn {{class}}" type="button" ng-click="click()" ng-disabled="busy">
|
|
1
|
+
<button class="btn {{class}} {{class2}}" type="button" ng-click="click()" ng-disabled="busy">
|
|
2
2
|
<span ng-show="busy" class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span>
|
|
3
3
|
{{label}}
|
|
4
4
|
<i class="{{fa}}"></i>
|
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
</div>
|
|
8
8
|
<div class="row dashed padding margin" ng-show="editOnly">
|
|
9
9
|
<div class="col3">
|
|
10
|
-
<i-list label="
|
|
10
|
+
<i-list label="{{dayTitle}}" v="{{v}}" items="days" ng-model="model.selectedDay"></i-list>
|
|
11
11
|
</div>
|
|
12
12
|
<div class="col4">
|
|
13
|
-
<i-list label="
|
|
13
|
+
<i-list label="{{monthTitle}}" v="{{v}}" items="monthes" ng-model="model.selectedMonth"></i-list>
|
|
14
14
|
</div>
|
|
15
15
|
<div class="col4">
|
|
16
|
-
<i-list label="
|
|
16
|
+
<i-list label="{{yearTitle}}" v="{{v}}" items="years" ng-search="searchYear" ng-model="model.selectedYear"></i-list>
|
|
17
17
|
</div>
|
|
18
18
|
|
|
19
19
|
<div class="col2">
|
|
@@ -8,20 +8,20 @@
|
|
|
8
8
|
</div>
|
|
9
9
|
<div class="row dashed padding margin" ng-show="editOnly">
|
|
10
10
|
<div class="col2">
|
|
11
|
-
<i-list label="
|
|
11
|
+
<i-list label="{{dayTitle}}" items="days" ng-model="model.selectedDay"></i-list>
|
|
12
12
|
</div>
|
|
13
13
|
<div class="col3">
|
|
14
|
-
<i-list label="
|
|
14
|
+
<i-list label="{{monthTitle}}" items="monthes" ng-model="model.selectedMonth"></i-list>
|
|
15
15
|
</div>
|
|
16
16
|
<div class="col3">
|
|
17
|
-
<i-list label="
|
|
17
|
+
<i-list label="{{yearTitle}}" items="years" ng-search="searchYear" ng-model="model.selectedYear"></i-list>
|
|
18
18
|
</div>
|
|
19
19
|
|
|
20
20
|
<div class="col2">
|
|
21
|
-
<i-list label="
|
|
21
|
+
<i-list label="{{hourTitle}}" items="hours" ng-model="model.selectedHour"></i-list>
|
|
22
22
|
</div>
|
|
23
23
|
<div class="col2">
|
|
24
|
-
<i-list label="
|
|
24
|
+
<i-list label="{{minuteTitle}}" items="minutes" ng-model="model.selectedMinute"></i-list>
|
|
25
25
|
</div>
|
|
26
26
|
<div class="row">
|
|
27
27
|
<br />
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<div class="treenode">
|
|
2
2
|
<ul>
|
|
3
3
|
<li ng-repeat="node in nodes">
|
|
4
|
-
<div class="row" ng-dblclick="$event.preventDefault();$event.stopPropagation();node.$actions = !0;source.$actions = !1"
|
|
4
|
+
<div class="row" ng-dblclick="$event.preventDefault();$event.stopPropagation();node.$actions = !0;source.$actions = !1" >
|
|
5
5
|
<span ng-show="node.nodes.length > 0" ng-click="node.$expand = !node.$expand;"> <i ng-hide="node.$expand" class="fa fa-caret-left"></i> <i ng-show="node.$expand" class="fa fa-caret-down"></i> </span>
|
|
6
|
-
<span ng-
|
|
7
|
-
<i class="
|
|
6
|
+
<span ng-show="node.nodes.length == 0">
|
|
7
|
+
<i class="fas fa-file"></i>
|
|
8
8
|
</span>
|
|
9
9
|
|
|
10
10
|
<span class="text" ng-class="{'selected' : node.$selected == !0}" ng-click="ngClick($event , node);node.$expand = !node.$expand;selected(node);updateModal(node)"> {{node[display]}} </span>
|
|
@@ -1,13 +1,8 @@
|
|
|
1
1
|
<div class="treeview">
|
|
2
|
-
<
|
|
3
|
-
<
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
<i-button type="add default" ng-click="ngClick($event , ngModel);ngNode($event , ngModel)"></i-button>
|
|
9
|
-
</div>
|
|
10
|
-
<i-treenode display="{{display}}" ng-click="ngClick($event)" ng-add="ngAdd()" ng-edit="ngEdit()" ng-delete="ngDelete()" ng-show="openTree" ng-model="ngModel" nodes="v_nodes"></i-treenode>
|
|
11
|
-
</li>
|
|
12
|
-
</ul>
|
|
2
|
+
<div class="main-node">
|
|
3
|
+
<i class="fas fa-sitemap"></i>
|
|
4
|
+
<h2 class="title">{{label}} <small class="display"> [ {{ngModel.v_display}} ] </small></h2>
|
|
5
|
+
<i-button type="add default" ng-click="ngClick($event , ngModel);ngNode($event , ngModel)"></i-button>
|
|
6
|
+
</div>
|
|
7
|
+
<i-treenode display="{{display}}" ng-click="ngClick($event)" ng-add="ngAdd()" ng-edit="ngEdit()" ng-delete="ngDelete()" ng-model="ngModel" nodes="v_nodes"></i-treenode>
|
|
13
8
|
</div>
|