isite 1.14.98 → 2021.11.24
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 +486 -475
- package/apps/client-side/app.js +28 -1
- package/apps/client-side/site_files/css/btn.css +98 -0
- package/apps/client-side/site_files/css/checkbox.css +12 -7
- package/apps/client-side/site_files/css/dropdown.css +61 -0
- package/apps/client-side/site_files/css/effect.css +283 -280
- package/apps/client-side/site_files/css/font-awesome.css +4615 -3
- package/apps/client-side/site_files/css/font-awesome.min.css +5 -0
- package/apps/client-side/site_files/css/font-cairo.css +14 -0
- package/apps/client-side/site_files/css/font-droid.css +19 -0
- package/apps/client-side/site_files/css/fonts.css +6 -34
- package/apps/client-side/site_files/css/form.css +5 -100
- package/apps/client-side/site_files/css/layout.css +27 -13
- package/apps/client-side/site_files/css/modal.css +184 -164
- package/apps/client-side/site_files/css/tabs.css +3 -3
- package/apps/client-side/site_files/css/theme.css +1 -1
- package/apps/client-side/site_files/css/theme_dark.css +1 -1
- package/apps/client-side/site_files/css/theme_paper.css +175 -151
- package/apps/client-side/site_files/html/sub/i-date2.content.html +64 -0
- package/apps/client-side/site_files/html/sub/i-list.content.html +31 -0
- package/apps/client-side/site_files/html/sub/i-list2.content.html +22 -0
- package/apps/client-side/site_files/js/directive.js +1570 -1650
- package/apps/client-side/site_files/js/directive.min.js +2 -2
- package/apps/client-side/site_files/js/site.js +6 -0
- package/apps/client-side/site_files/js/site.min.js +1 -1
- package/apps/client-side/site_files/webfonts/fa-brands-400.eot +0 -0
- package/apps/client-side/site_files/webfonts/fa-brands-400.svg +3717 -0
- package/apps/client-side/site_files/webfonts/fa-brands-400.ttf +0 -0
- package/apps/client-side/site_files/webfonts/fa-brands-400.woff +0 -0
- package/apps/client-side/site_files/webfonts/fa-brands-400.woff2 +0 -0
- package/apps/client-side/site_files/webfonts/fa-regular-400.eot +0 -0
- package/apps/client-side/site_files/webfonts/fa-regular-400.svg +801 -0
- package/apps/client-side/site_files/webfonts/fa-regular-400.ttf +0 -0
- package/apps/client-side/site_files/webfonts/fa-regular-400.woff +0 -0
- package/apps/client-side/site_files/webfonts/fa-regular-400.woff2 +0 -0
- package/apps/client-side/site_files/webfonts/fa-solid-900.eot +0 -0
- package/apps/client-side/site_files/webfonts/fa-solid-900.svg +5034 -0
- package/apps/client-side/site_files/webfonts/fa-solid-900.ttf +0 -0
- package/apps/client-side/site_files/webfonts/fa-solid-900.woff +0 -0
- package/apps/client-side/site_files/webfonts/fa-solid-900.woff2 +0 -0
- package/apps/ui-print/site_files/js/index.js +1 -1
- package/index.js +2 -2
- package/isite_files/html/browser.html +1 -1
- package/lib/fsm.js +389 -346
- package/lib/mongodb.js +3 -4
- package/lib/parser.js +33 -9
- package/lib/routing.js +26 -7
- package/lib/security.js +2 -2
- package/lib/session.js +2 -8
- package/lib/sessions.js +4 -4
- package/lib/ws.js +3 -0
- package/object-options/index.js +3 -3
- package/object-options/lib/fn.js +1 -1
- package/package.json +1 -1
|
@@ -1,282 +1,285 @@
|
|
|
1
1
|
@media all {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
appearance
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
2
|
+
.pointer {
|
|
3
|
+
cursor: pointer;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.bold {
|
|
7
|
+
font-weight: bold;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.italic {
|
|
11
|
+
font-style: italic;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.center,
|
|
15
|
+
.center p,
|
|
16
|
+
.center span,
|
|
17
|
+
.center label,
|
|
18
|
+
.center b,
|
|
19
|
+
.center i,
|
|
20
|
+
.center img {
|
|
21
|
+
margin: 0 auto !important;
|
|
22
|
+
text-align: center !important;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.float-none{
|
|
26
|
+
float: none !important;
|
|
27
|
+
}
|
|
28
|
+
.center i.center {
|
|
29
|
+
vertical-align: text-bottom;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.left {
|
|
33
|
+
float: left !important;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.right {
|
|
37
|
+
float: right !important;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.text-center {
|
|
41
|
+
text-align: center !important;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.text-left {
|
|
45
|
+
text-align: left !important;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.text-right {
|
|
49
|
+
text-align: right !important;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.border {
|
|
53
|
+
border: 1px solid #bbb;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.dashed {
|
|
57
|
+
border: 2px dashed #030303;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.margin {
|
|
61
|
+
margin: 3px;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.padding {
|
|
65
|
+
padding: 3px;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.text-shadow {
|
|
69
|
+
text-shadow: 1px 1px 1px #000;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.box-shadow {
|
|
73
|
+
box-shadow: 1px 1px 8px 2px #000;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.block {
|
|
77
|
+
display: block;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.none {
|
|
81
|
+
display: none;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.inline {
|
|
85
|
+
display: inline-block;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.inline-grid {
|
|
89
|
+
display: inline-grid;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.small {
|
|
93
|
+
font-size: small;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.smaller {
|
|
97
|
+
font-size: smaller;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.x-small {
|
|
101
|
+
font-size: x-small;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.xx-small {
|
|
105
|
+
font-size: xx-small;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.medium {
|
|
109
|
+
font-size: medium;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.large {
|
|
113
|
+
font-size: large;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.larger {
|
|
117
|
+
font-size: larger;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.v {
|
|
121
|
+
font-size: x-large;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.error {
|
|
125
|
+
text-align: center;
|
|
126
|
+
color: red;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.xx-large {
|
|
130
|
+
font-size: xx-large;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.appearance-none {
|
|
134
|
+
-moz-appearance: none;
|
|
135
|
+
-webkit-appearance: none;
|
|
136
|
+
appearance: none;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.no-border {
|
|
140
|
+
border: none !important;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.no-border-left {
|
|
144
|
+
border-left: none !important;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.no-border-right {
|
|
148
|
+
border-right: none !important;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.no-border-top {
|
|
152
|
+
border-top: none !important;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.no-border-bottom {
|
|
156
|
+
border-bottom: none !important;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.no-border-radius {
|
|
160
|
+
border-radius: 0px !important;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.paper {
|
|
164
|
+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 10px 0 -5px #eee, 0 10px 1px -4px rgba(0, 0, 0, 0.15), 0 20px 0 -10px #eee, 0 20px 1px -9px rgba(0, 0, 0, 0.15);
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.full-width {
|
|
168
|
+
width: 100%;
|
|
169
|
+
margin: 0px;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.hover-scale:hover {
|
|
173
|
+
transform: scale(1.1);
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.multi-lines {
|
|
177
|
+
white-space: pre-wrap;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.ww {
|
|
181
|
+
width: 250px !important;
|
|
182
|
+
white-space: pre-line !important;
|
|
183
|
+
}
|
|
184
|
+
.w0 {
|
|
185
|
+
width: 1px !important;
|
|
186
|
+
white-space: nowrap !important;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.w50,
|
|
190
|
+
.w50 input {
|
|
191
|
+
min-width: 50px !important;
|
|
192
|
+
width: 50px !important;
|
|
193
|
+
white-space: pre-line !important;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.w100,
|
|
197
|
+
.w100 input {
|
|
198
|
+
width: 100px !important;
|
|
199
|
+
min-width: 100px !important;
|
|
200
|
+
white-space: pre-line !important;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.w125,
|
|
204
|
+
.w125 input {
|
|
205
|
+
width: 125px !important;
|
|
206
|
+
min-width: 125px !important;
|
|
207
|
+
white-space: pre-line !important;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.w150,
|
|
211
|
+
.w150 input {
|
|
212
|
+
width: 150px !important;
|
|
213
|
+
min-width: 150px !important;
|
|
214
|
+
white-space: pre-line !important;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.w175,
|
|
218
|
+
.w175 input {
|
|
219
|
+
width: 175px !important;
|
|
220
|
+
min-width: 175px !important;
|
|
221
|
+
white-space: pre-line !important;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.w200,
|
|
225
|
+
.w200 input {
|
|
226
|
+
width: 200px !important;
|
|
227
|
+
min-width: 200px !important;
|
|
228
|
+
white-space: pre-line !important;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.w225,
|
|
232
|
+
.w225 input {
|
|
233
|
+
width: 225px !important;
|
|
234
|
+
min-width: 225px !important;
|
|
235
|
+
white-space: pre-line !important;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.w250,
|
|
239
|
+
.w250 input {
|
|
240
|
+
width: 250px !important;
|
|
241
|
+
min-width: 250px !important;
|
|
242
|
+
white-space: pre-line !important;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.w275,
|
|
246
|
+
.w275 input {
|
|
247
|
+
width: 275px !important;
|
|
248
|
+
min-width: 275px !important;
|
|
249
|
+
white-space: pre-line !important;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.w300,
|
|
253
|
+
.w300 input {
|
|
254
|
+
width: 300px !important;
|
|
255
|
+
min-width: 300px !important;
|
|
256
|
+
white-space: pre-line !important;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.w350,
|
|
260
|
+
.w350 input {
|
|
261
|
+
width: 350px !important;
|
|
262
|
+
min-width: 350px !important;
|
|
263
|
+
white-space: pre-line !important;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.w400,
|
|
267
|
+
.w400 input {
|
|
268
|
+
width: 400px !important;
|
|
269
|
+
min-width: 400px !important;
|
|
270
|
+
white-space: pre-line !important;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.w450,
|
|
274
|
+
.w450 input {
|
|
275
|
+
width: 450px !important;
|
|
276
|
+
min-width: 450px !important;
|
|
277
|
+
white-space: pre-line !important;
|
|
278
|
+
}
|
|
279
|
+
.w500,
|
|
280
|
+
.w500 input {
|
|
281
|
+
width: 500px !important;
|
|
282
|
+
min-width: 500px !important;
|
|
283
|
+
white-space: pre-line !important;
|
|
284
|
+
}
|
|
282
285
|
}
|