isite 2022.8.4 → 2022.8.5
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/apps/client-side/site_files/css/bootstrap5-addon.css +18 -1
- package/apps/client-side/site_files/css/images.css +0 -3
- package/apps/client-side/site_files/css/table.css +3 -3
- package/apps/client-side/site_files/html/{sub/i-file.content.html → directive/i-file.html} +1 -1
- package/apps/client-side/site_files/html/directive/i-image.html +7 -0
- package/apps/client-side/site_files/html/{sub/i-list2.content.html → directive/i-list.html} +0 -0
- package/apps/client-side/site_files/js/bootstrap-5-directive.js +17 -703
- package/apps/client-side/site_files/js/directive.js +2 -2
- package/apps/client-side/site_files/js/site.js +18 -2
- package/index.js +280 -278
- package/lib/email.js +108 -0
- package/lib/integrated.js +10 -26
- package/lib/security.js +1109 -1081
- package/object-options/index.js +18 -0
- package/object-options/lib/fn.js +6 -3
- package/package.json +3 -2
- package/apps/client-side/site_files/html/sub/i-list.content.html +0 -31
|
@@ -8,14 +8,23 @@
|
|
|
8
8
|
|
|
9
9
|
/* Large devices (desktops, 992px and up) */
|
|
10
10
|
@media (min-width: 992px) {
|
|
11
|
+
.navbar-nav .dropdown-menu.show {
|
|
12
|
+
display: table;
|
|
13
|
+
}
|
|
11
14
|
}
|
|
12
15
|
|
|
13
16
|
/* X-Large devices (large desktops, 1200px and up) */
|
|
14
17
|
@media (min-width: 1200px) {
|
|
18
|
+
.navbar-nav .dropdown-menu.show {
|
|
19
|
+
display: table;
|
|
20
|
+
}
|
|
15
21
|
}
|
|
16
22
|
|
|
17
23
|
/* XX-Large devices (larger desktops, 1400px and up) */
|
|
18
24
|
@media (min-width: 1400px) {
|
|
25
|
+
.navbar-nav .dropdown-menu.show {
|
|
26
|
+
display: table;
|
|
27
|
+
}
|
|
19
28
|
}
|
|
20
29
|
|
|
21
30
|
.ar .form-check .form-check-input {
|
|
@@ -61,6 +70,7 @@ i-button button {
|
|
|
61
70
|
margin: 5px;
|
|
62
71
|
}
|
|
63
72
|
i-file {
|
|
73
|
+
display: block;
|
|
64
74
|
padding: 10px !important;
|
|
65
75
|
border: 1px dashed var(--theme-color);
|
|
66
76
|
margin: 10px;
|
|
@@ -79,11 +89,13 @@ i-date .fa {
|
|
|
79
89
|
margin-top: 5px;
|
|
80
90
|
}
|
|
81
91
|
.modal-content {
|
|
82
|
-
width:
|
|
92
|
+
width: 75vw;
|
|
93
|
+
height: 100vh;
|
|
83
94
|
}
|
|
84
95
|
.modal-body {
|
|
85
96
|
padding: 10px;
|
|
86
97
|
display: block;
|
|
98
|
+
overflow: auto;
|
|
87
99
|
}
|
|
88
100
|
.modal-footer {
|
|
89
101
|
display: block;
|
|
@@ -97,12 +109,17 @@ i-date .fa {
|
|
|
97
109
|
background: #fff;
|
|
98
110
|
position: relative;
|
|
99
111
|
cursor: pointer;
|
|
112
|
+
font-weight: bold;
|
|
113
|
+
width: auto;
|
|
100
114
|
}
|
|
101
115
|
|
|
102
116
|
.v-tabs .nav-link.active {
|
|
103
117
|
color: #45b649;
|
|
104
118
|
background: #fff;
|
|
105
119
|
}
|
|
120
|
+
.nav-link {
|
|
121
|
+
width: max-content;
|
|
122
|
+
}
|
|
106
123
|
|
|
107
124
|
@media (min-width: 992px) {
|
|
108
125
|
.v-tabs .nav-link::before {
|
|
@@ -21,9 +21,6 @@ i-image img {
|
|
|
21
21
|
-moz-transition: all 0.5s ease;
|
|
22
22
|
-webkit-transition: all 0.5s ease;
|
|
23
23
|
-ms-transition: all 0.5s ease;
|
|
24
|
-
background-image: url('/x-images/no.jpg');
|
|
25
|
-
background-size: contain;
|
|
26
|
-
background-repeat: no-repeat;
|
|
27
24
|
border: 1px dashed var(--theme-color);
|
|
28
25
|
}
|
|
29
26
|
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
.table th {
|
|
39
|
-
background-color: var(--navbar-background-color);
|
|
40
|
-
color: var(--table-th-color);
|
|
39
|
+
background-color: var(--navbar-background-color) !important;
|
|
40
|
+
color: var(--table-th-color) !important;
|
|
41
41
|
border: var(--table-border);
|
|
42
|
-
padding: 5px;
|
|
42
|
+
padding: 5px !important;
|
|
43
43
|
text-align: center;
|
|
44
44
|
font-weight: bold;
|
|
45
45
|
white-space: nowrap;
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<i class="fas fa-upload"></i>
|
|
5
5
|
</button>
|
|
6
6
|
<div class="row">
|
|
7
|
-
<input class="hidden" type="file" name="fileToUpload" />
|
|
7
|
+
<input class="hidden" type="file" name="fileToUpload" accept="{{accept}}"/>
|
|
8
8
|
<div class="progress row">
|
|
9
9
|
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="{{value}}" aria-valuemin="0" aria-valuemax="100" style="width: {{value}}%"></div>
|
|
10
10
|
</div>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<div class="text-center pointer">
|
|
2
|
+
<input class="hidden" type="file" name="fileToUpload" accept="{{accept}}" />
|
|
3
|
+
<img class="rounded" ng-src="{{ngModel.url}}" ngClick="ngClick()" onerror="this.src='/images/no.jpg'" />
|
|
4
|
+
<div class="progress row">
|
|
5
|
+
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="{{value}}" aria-valuemin="0" aria-valuemax="100" style="width: {{value}}%"></div>
|
|
6
|
+
</div>
|
|
7
|
+
</div>
|
|
File without changes
|