isite 1.14.97 → 2021.11.23

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