isite 2022.8.3 → 2022.8.6

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.
Files changed (53) hide show
  1. package/README.md +7 -7
  2. package/apps/client-side/app.js +255 -182
  3. package/apps/client-side/site_files/css/bootstrap5-addon.css +87 -4
  4. package/apps/client-side/site_files/css/bootstrap5.css +1 -1
  5. package/apps/client-side/site_files/css/bootstrap5.css.map +1 -0
  6. package/apps/client-side/site_files/css/dropdown.css +22 -4
  7. package/apps/client-side/site_files/css/effect.css +342 -283
  8. package/apps/client-side/site_files/css/images.css +10 -7
  9. package/apps/client-side/site_files/css/layout.css +37 -44
  10. package/apps/client-side/site_files/css/modal.css +1 -1
  11. package/apps/client-side/site_files/css/normalize.css +146 -0
  12. package/apps/client-side/site_files/css/scrollbar.css +9 -5
  13. package/apps/client-side/site_files/css/table.css +3 -3
  14. package/apps/client-side/site_files/html/directive/i-button.html +5 -0
  15. package/apps/client-side/site_files/html/directive/i-checkbox.html +4 -0
  16. package/apps/client-side/site_files/html/directive/i-checklist.html +6 -0
  17. package/apps/client-side/site_files/html/directive/i-control.html +5 -0
  18. package/apps/client-side/site_files/html/directive/i-date.html +24 -0
  19. package/apps/client-side/site_files/html/directive/i-datetime.html +31 -0
  20. package/apps/client-side/site_files/html/{sub/i-file.content.html → directive/i-file.html} +3 -5
  21. package/apps/client-side/site_files/html/directive/i-image.html +7 -0
  22. package/apps/client-side/site_files/html/directive/i-list.html +20 -0
  23. package/apps/client-side/site_files/html/directive/i-radio.html +4 -0
  24. package/apps/client-side/site_files/html/directive/i-textarea.html +4 -0
  25. package/apps/client-side/site_files/html/directive/i-treenode.html +20 -0
  26. package/apps/client-side/site_files/html/directive/i-treeview.html +13 -0
  27. package/apps/client-side/site_files/html/directive/i-upload.html +5 -0
  28. package/apps/client-side/site_files/html/directive-core/i-date.html +64 -0
  29. package/apps/client-side/site_files/html/directive-core/i-list.html +22 -0
  30. package/apps/client-side/site_files/images/no.jpg +0 -0
  31. package/apps/client-side/site_files/js/bootstrap-5-directive.js +278 -998
  32. package/apps/client-side/site_files/js/bootstrap.js.map +1 -0
  33. package/apps/client-side/site_files/js/directive.js +1865 -2044
  34. package/apps/client-side/site_files/js/directive.min.js +2 -2
  35. package/apps/client-side/site_files/js/site.js +19 -3
  36. package/apps/security/site_files/html/login_modal.html +18 -26
  37. package/index.js +277 -278
  38. package/isite_files/images/no.jpg +0 -0
  39. package/lib/cookie.js +3 -5
  40. package/lib/email.js +108 -0
  41. package/lib/integrated.js +10 -26
  42. package/lib/parser.js +519 -509
  43. package/lib/routing.js +23 -15
  44. package/lib/security.js +1109 -1081
  45. package/lib/sessions.js +182 -247
  46. package/object-options/index.js +24 -4
  47. package/object-options/lib/fn.js +6 -3
  48. package/package.json +5 -3
  49. package/pull.bat +3 -0
  50. package/push.bat +2 -5
  51. package/apps/client-side/site_files/html/sub/i-date2.content.html +0 -64
  52. package/apps/client-side/site_files/html/sub/i-list.content.html +0 -31
  53. package/apps/client-side/site_files/html/sub/i-list2.content.html +0 -22
@@ -49,15 +49,33 @@
49
49
  }
50
50
 
51
51
  .dropdown-item {
52
+ display: inline-block;
52
53
  cursor: pointer;
53
54
  background: var(--dropdown-background);
55
+ padding: 0px;
56
+ margin: 0px;
57
+ transition: all .1s ease;
54
58
  }
55
59
  .dropdown-item p {
56
- color: var(--dropdown-color);
57
- font-size: var(--dropdown-font-size);
60
+ color: #055160;
61
+ font-size: 14px;
62
+ font-weight: bold;
58
63
  background: transparent;
64
+ text-align: left;
65
+ }
66
+ .ar .dropdown-item p{
67
+ text-align: right;
59
68
  }
60
69
  .dropdown-item small {
61
- color: var(--dropdown-color2);
62
- font-size: var(--dropdown-font-size2);
70
+ color: antiquewhite;
71
+ font-size: 9px;
72
+ text-align: left;
73
+ padding: 3px;
74
+ background: #198754;
75
+ font-weight: bold;
76
+ padding-right: 9px;
77
+ padding-left: 9px;
78
+ }
79
+ .ar .dropdown-item small{
80
+ text-align: right;
63
81
  }
@@ -1,285 +1,344 @@
1
1
  @media all {
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
- }
2
+ .flex,
3
+ .display-flex {
4
+ display: flex !important;
5
+ }
6
+ .inline-flex,
7
+ .display-inline-flex {
8
+ display: inline-flex !important;
9
+ }
10
+
11
+ .flexbox,
12
+ .display-flexbox {
13
+ display: flexbox !important;
14
+ }
15
+ .flexbox,
16
+ .display-flexbox {
17
+ display: inline-flexbox !important;
18
+ }
19
+ .block,
20
+ .display-block {
21
+ display: block !important;
22
+ }
23
+
24
+ .none,
25
+ .display-none {
26
+ display: none !important;
27
+ }
28
+
29
+ .inline,
30
+ .display-inline {
31
+ display: inline !important;
32
+ }
33
+ .inline-block,
34
+ .display-inline-block {
35
+ display: inline-block !important;
36
+ }
37
+
38
+ .inline-grid,
39
+ .display-inline-grid {
40
+ display: inline-grid !important;
41
+ }
42
+
43
+ .fixed,
44
+ .position-fixed {
45
+ position: fixed !important;
46
+ }
47
+ .relative,
48
+ .position-relative {
49
+ position: relative !important;
50
+ }
51
+ .static,
52
+ .position-static {
53
+ position: static !important;
54
+ }
55
+ .sticky,
56
+ .position-sticky {
57
+ position: sticky !important;
58
+ }
59
+
60
+ .left,
61
+ .float-left {
62
+ float: left !important;
63
+ }
64
+
65
+ .right,
66
+ .float-right {
67
+ float: right !important;
68
+ }
69
+ .float-none {
70
+ float: none !important;
71
+ }
72
+
73
+ .text-center {
74
+ text-align: center !important;
75
+ }
76
+
77
+ .text-left {
78
+ text-align: left !important;
79
+ }
80
+
81
+ .text-right {
82
+ text-align: right !important;
83
+ }
84
+
85
+ .pointer {
86
+ cursor: pointer !important;
87
+ }
88
+
89
+ .bold {
90
+ font-weight: bold;
91
+ }
92
+
93
+ .italic {
94
+ font-style: italic;
95
+ }
96
+
97
+ .center,
98
+ .center p,
99
+ .center span,
100
+ .center label,
101
+ .center b,
102
+ .center i,
103
+ .center img {
104
+ margin: 0 auto !important;
105
+ text-align: center !important;
106
+ }
107
+
108
+ .center i.center {
109
+ vertical-align: text-bottom;
110
+ }
111
+
112
+ .border {
113
+ border: 1px solid var(--theme-color) !important;
114
+ }
115
+
116
+ .dashed {
117
+ border: 2px dashed var(--theme-color) !important;
118
+ }
119
+
120
+ .no-border {
121
+ border: none !important;
122
+ }
123
+
124
+ .no-border-left {
125
+ border-left: none !important;
126
+ }
127
+
128
+ .no-border-right {
129
+ border-right: none !important;
130
+ }
131
+
132
+ .no-border-top {
133
+ border-top: none !important;
134
+ }
135
+ .no-border-bottom {
136
+ border-bottom: none !important;
137
+ }
138
+
139
+ .no-border-radius {
140
+ border-radius: 0px !important;
141
+ }
142
+
143
+ .border-radius {
144
+ border-radius: 5px !important;
145
+ }
146
+ .margin {
147
+ margin: 5px !important;
148
+ }
149
+
150
+ .padding {
151
+ padding: 5px !important;
152
+ }
153
+
154
+ .text-shadow {
155
+ text-shadow: 1px 1px 1px #000 !important;
156
+ }
157
+
158
+ .box-shadow {
159
+ box-shadow: 1px 1px 8px 2px #000 !important;
160
+ }
161
+
162
+ .font-small {
163
+ font-size: small !important;
164
+ }
165
+
166
+ .font-smaller {
167
+ font-size: smaller !important;
168
+ }
169
+
170
+ .font-x-small {
171
+ font-size: x-small !important;
172
+ }
173
+
174
+ .font-xx-small {
175
+ font-size: xx-small !important;
176
+ }
177
+
178
+ .font-medium {
179
+ font-size: medium !important;
180
+ }
181
+
182
+ .font-large {
183
+ font-size: large !important;
184
+ }
185
+
186
+ .font-larger {
187
+ font-size: larger !important;
188
+ }
189
+
190
+ .font-x-large {
191
+ font-size: x-large !important;
192
+ }
193
+ .font-xx-large {
194
+ font-size: xx-large !important;
195
+ }
196
+
197
+ .rtl {
198
+ direction: rtl;
199
+ }
200
+
201
+ .ltr {
202
+ direction: ltr;
203
+ }
204
+
205
+ .height-auto{
206
+ height: auto !important;
207
+ };
208
+ .width-auto{
209
+ height: auto !important;
210
+ };
211
+ .error {
212
+ text-align: center;
213
+ color: red;
214
+ }
215
+
216
+ .appearance-none {
217
+ -moz-appearance: none;
218
+ -webkit-appearance: none;
219
+ appearance: none;
220
+ }
221
+
222
+ .paper {
223
+ 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);
224
+ }
225
+
226
+ .full-width {
227
+ width: 100%;
228
+ margin: 0px;
229
+ }
230
+
231
+ .hover-scale:hover {
232
+ transform: scale(1.1);
233
+ }
234
+
235
+ .multi-lines {
236
+ white-space: pre-wrap;
237
+ }
238
+
239
+ .ww {
240
+ width: 250px !important;
241
+ white-space: pre-line !important;
242
+ }
243
+ .w0 {
244
+ width: 1px !important;
245
+ white-space: nowrap !important;
246
+ }
247
+
248
+ .w50,
249
+ .w50 input {
250
+ min-width: 50px !important;
251
+ width: 50px !important;
252
+ white-space: pre-line !important;
253
+ }
254
+
255
+ .w100,
256
+ .w100 input {
257
+ width: 100px !important;
258
+ min-width: 100px !important;
259
+ white-space: pre-line !important;
260
+ }
261
+
262
+ .w125,
263
+ .w125 input {
264
+ width: 125px !important;
265
+ min-width: 125px !important;
266
+ white-space: pre-line !important;
267
+ }
268
+
269
+ .w150,
270
+ .w150 input {
271
+ width: 150px !important;
272
+ min-width: 150px !important;
273
+ white-space: pre-line !important;
274
+ }
275
+
276
+ .w175,
277
+ .w175 input {
278
+ width: 175px !important;
279
+ min-width: 175px !important;
280
+ white-space: pre-line !important;
281
+ }
282
+
283
+ .w200,
284
+ .w200 input {
285
+ width: 200px !important;
286
+ min-width: 200px !important;
287
+ white-space: pre-line !important;
288
+ }
289
+
290
+ .w225,
291
+ .w225 input {
292
+ width: 225px !important;
293
+ min-width: 225px !important;
294
+ white-space: pre-line !important;
295
+ }
296
+
297
+ .w250,
298
+ .w250 input {
299
+ width: 250px !important;
300
+ min-width: 250px !important;
301
+ white-space: pre-line !important;
302
+ }
303
+
304
+ .w275,
305
+ .w275 input {
306
+ width: 275px !important;
307
+ min-width: 275px !important;
308
+ white-space: pre-line !important;
309
+ }
310
+
311
+ .w300,
312
+ .w300 input {
313
+ width: 300px !important;
314
+ min-width: 300px !important;
315
+ white-space: pre-line !important;
316
+ }
317
+
318
+ .w350,
319
+ .w350 input {
320
+ width: 350px !important;
321
+ min-width: 350px !important;
322
+ white-space: pre-line !important;
323
+ }
324
+
325
+ .w400,
326
+ .w400 input {
327
+ width: 400px !important;
328
+ min-width: 400px !important;
329
+ white-space: pre-line !important;
330
+ }
331
+
332
+ .w450,
333
+ .w450 input {
334
+ width: 450px !important;
335
+ min-width: 450px !important;
336
+ white-space: pre-line !important;
337
+ }
338
+ .w500,
339
+ .w500 input {
340
+ width: 500px !important;
341
+ min-width: 500px !important;
342
+ white-space: pre-line !important;
343
+ }
285
344
  }