isite 2021.11.17 → 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.
- package/README.md +486 -475
- package/apps/client-side/app.js +27 -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/form.css +5 -100
- 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/lib/parser.js +24 -12
- package/lib/routing.js +21 -2
- package/object-options/index.js +1 -1
- package/object-options/lib/fn.js +1 -1
- package/package.json +1 -1
|
@@ -1,153 +1,177 @@
|
|
|
1
1
|
:root {
|
|
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
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
2
|
+
|
|
3
|
+
--theme-color: #317cb9;
|
|
4
|
+
--theme-color2: #2f8033;
|
|
5
|
+
--theme-color3: #3f51b5;
|
|
6
|
+
--font-family: Droid, Cairo, sans-serif, Tahoma, serif;
|
|
7
|
+
--font-weight: normal;
|
|
8
|
+
--font-size: 14px;
|
|
9
|
+
--line-height: 1.5;
|
|
10
|
+
--float: left;
|
|
11
|
+
--direction: ltr;
|
|
12
|
+
--text-align: left;
|
|
13
|
+
--color: #030303;
|
|
14
|
+
--background-color: #ffffff;
|
|
15
|
+
--box-shadow-color: #272727;
|
|
16
|
+
--border: 1px solid #353535;
|
|
17
|
+
--zoom: 90%;
|
|
18
|
+
--user-select: none;
|
|
19
|
+
|
|
20
|
+
--body-background: #ffffff;
|
|
21
|
+
--body-margin-top: 70px;
|
|
22
|
+
--body-margin-bottom: 300px;
|
|
23
|
+
|
|
24
|
+
--h-font-weight: normal;
|
|
25
|
+
|
|
26
|
+
--navbar-color: #fff;
|
|
27
|
+
--navbar-span-color: #fff;
|
|
28
|
+
--navbar-background-color: var(--theme-color);
|
|
29
|
+
--navbar-box-shadow-color: #272727;
|
|
30
|
+
--navbar-li-border-radius: 15px;
|
|
31
|
+
--navbar-li-border: none;
|
|
32
|
+
|
|
33
|
+
--tabs-color: #fff;
|
|
34
|
+
--tabs-background-color: var(--theme-color);
|
|
35
|
+
--tabs-background-color2: var(--theme-color);
|
|
36
|
+
--tabs-header-width: 20%;
|
|
37
|
+
--tabs-content-width: 80%;
|
|
38
|
+
|
|
39
|
+
--tabs-header-link-font-size: 18px;
|
|
40
|
+
--tabs-header-link-font-weight: 700;
|
|
41
|
+
--tabs-header-link-color: #272727;
|
|
42
|
+
--tabs-header-link-color2: #ffffff;
|
|
43
|
+
--tabs-header-link-background: none;
|
|
44
|
+
--tabs-header-link-border: none;
|
|
45
|
+
--tabs-header-link-border-bottom: 1px solid var(--theme-color);
|
|
46
|
+
--tabs-header-link-radius: 0px;
|
|
47
|
+
|
|
48
|
+
--tab-animation-name: animateleft;
|
|
49
|
+
--tab-animation-duration: 1s;
|
|
50
|
+
|
|
51
|
+
--treeview-color: #000000;
|
|
52
|
+
--treeview-color2: #ffffff;
|
|
53
|
+
--treeview-background-color: none;
|
|
54
|
+
--treeview-border-color: #000000;
|
|
55
|
+
--treeview-background-color2: #404040;
|
|
56
|
+
--treeview-display-color: #0000ff;
|
|
57
|
+
|
|
58
|
+
--form-color: #000000;
|
|
59
|
+
--form-background-color: none;
|
|
60
|
+
--label-color : #000;
|
|
61
|
+
--label-font-size: 16px;
|
|
62
|
+
--label-font-weight: normal;
|
|
63
|
+
--label-text-align: var(--text-align);
|
|
64
|
+
|
|
65
|
+
--input-color: #0000ff;
|
|
66
|
+
--input-background-color: #ffffff;
|
|
67
|
+
--input-height: 35px;
|
|
68
|
+
--input-padding: 6px 12px;
|
|
69
|
+
--input-font-size: 14px;
|
|
70
|
+
--input-font-wight: normal;
|
|
71
|
+
--input-border-radius: 0px;
|
|
72
|
+
--input-border-width: 0 0 1px;
|
|
73
|
+
--input-border-color: rgba(211, 211, 211, 0.91);
|
|
74
|
+
--input-focus-border-width: 0 0 2px;
|
|
75
|
+
--input-focus-border-color: var(--theme-color);
|
|
76
|
+
|
|
77
|
+
--dropdown-color : green;
|
|
78
|
+
--dropdown-background : #fff;
|
|
79
|
+
--dropdown-font-size : 14px;
|
|
80
|
+
--dropdown-color2 : #000;
|
|
81
|
+
--dropdown-font-size2 : 12px;
|
|
82
|
+
|
|
83
|
+
--textarea-border-width: 1px;
|
|
84
|
+
--select-appearance: none;
|
|
85
|
+
--select-font-size: var(--input-font-size);
|
|
86
|
+
--select-color: #ffffff;
|
|
87
|
+
--select-height: 35px;
|
|
88
|
+
|
|
89
|
+
--btn-color: #000;
|
|
90
|
+
--btn-background: #ffffff;
|
|
91
|
+
--btn-box-shadow: none;
|
|
92
|
+
--btn-box-shadow-color: #272727;
|
|
93
|
+
--btn-border-radius: 5px;
|
|
94
|
+
--btn-border: 1px solid #ddd;
|
|
95
|
+
|
|
96
|
+
--btn-display: inline-block;
|
|
97
|
+
--btn-cursor: pointer;
|
|
98
|
+
--btn-min-width: 90px;
|
|
99
|
+
--btn-min-height: 36px;
|
|
100
|
+
--btn-font-weight: 400;
|
|
101
|
+
|
|
102
|
+
--btn-text-decoration: none;
|
|
103
|
+
--btn-text-align: center;
|
|
104
|
+
--btn-vertical-align: middle;
|
|
105
|
+
--btn-margin: 10px;
|
|
106
|
+
--btn-padding: 7px 9px;
|
|
107
|
+
--btn-font-size: 14px;
|
|
108
|
+
--btn-user-select: none;
|
|
109
|
+
|
|
110
|
+
--btn-add-color: #000;
|
|
111
|
+
--btn-add-background-color: #ffffff;
|
|
112
|
+
--btn-update-color: #000;
|
|
113
|
+
--btn-update-background-color: #ffffff;
|
|
114
|
+
--btn-save-color: #000;
|
|
115
|
+
--btn-save-background-color: #ffffff;
|
|
116
|
+
--btn-delete-color: #000;
|
|
117
|
+
--btn-delete-background-color: #ffffff;
|
|
118
|
+
--btn-view-color: #000;
|
|
119
|
+
--btn-view-background-color: #ffffff;
|
|
120
|
+
--btn-exit-color: #000;
|
|
121
|
+
--btn-exit-background-color: #ffffff;
|
|
122
|
+
--btn-search-color: #000;
|
|
123
|
+
--btn-search-background-color: #ffffff;
|
|
124
|
+
--btn-print-color: #000;
|
|
125
|
+
--btn-print-background-color: #ffffff;
|
|
126
|
+
--btn-export-color: #000000;
|
|
127
|
+
--btn-export-background-color: #ffffff;
|
|
128
|
+
--btn-sgin-color: #000000;
|
|
129
|
+
--btn-sgin-background-color: #ffffff;
|
|
130
|
+
|
|
131
|
+
--i-image-border: 2px dashed var(--theme-color);
|
|
132
|
+
--i-image-view-border: 2px solid var(--theme-color);
|
|
133
|
+
|
|
134
|
+
--fieldset-border: 1px solid var(--theme-color);
|
|
135
|
+
--fieldset-background: none;
|
|
136
|
+
--legend-color: var(--theme-color);
|
|
137
|
+
--legend-text-shadow: none;
|
|
138
|
+
--legend-font-size: 18px;
|
|
139
|
+
--legend-font-weight: bold;
|
|
140
|
+
--legend-border: none;
|
|
141
|
+
|
|
142
|
+
--modal-background: var(--theme-color);
|
|
143
|
+
--modal-content-background: #ffffff;
|
|
144
|
+
--modal-content-border: 3px solid var(--theme-color);
|
|
145
|
+
--modal-color: #fff;
|
|
146
|
+
--modal-animation-name: animateleft;
|
|
147
|
+
--modal-animation-duration: 0.4s;
|
|
148
|
+
--modal-header-color: #fff;
|
|
149
|
+
--modal-footer-color: #fff;
|
|
150
|
+
--modal-header-background-color: var(--theme-color);
|
|
151
|
+
--modal-footer-background-color: #ffffff;
|
|
152
|
+
--modal-box-shadow-color: #272727;
|
|
153
|
+
|
|
154
|
+
--table-color: #030303;
|
|
155
|
+
--table-background-color: #ffffff;
|
|
156
|
+
--table-border: 1px solid #bbb;
|
|
157
|
+
--table-hover-background-color: #eee;
|
|
158
|
+
--table-th-color: #fff;
|
|
159
|
+
|
|
160
|
+
--help-height: 110px;
|
|
161
|
+
--help-border: 1px solid #272727;
|
|
162
|
+
--help-border-radius: 0px;
|
|
163
|
+
--help-background-color: #3f51b5;
|
|
164
|
+
--help-opacity: 1;
|
|
165
|
+
--help-content-color: #ffffff;
|
|
166
|
+
|
|
167
|
+
--main-menu-item-padding: 5px;
|
|
168
|
+
--main-menu-item-border: 3px solid var(--theme-color);
|
|
169
|
+
--main-menu-item-border-radius: 15px;
|
|
170
|
+
--main-menu-item-background-color: #fff;
|
|
171
|
+
--main-menu-h2-color: #000;
|
|
172
|
+
--main-menu-p-color: #000;
|
|
173
|
+
|
|
174
|
+
--scrollbar-background-color: var(--theme-color);
|
|
175
|
+
--scrollbar-color: #fff;
|
|
176
|
+
--scrollbar-box-shadow-color: #fff;
|
|
153
177
|
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
<div class="row i-date2">
|
|
2
|
+
<div class="control">
|
|
3
|
+
<label> {{label}} </label>
|
|
4
|
+
<div class="row">
|
|
5
|
+
<div class="col1 center" ng-click="setDay()">
|
|
6
|
+
<i class="fa fa-calendar-day"></i>
|
|
7
|
+
</div>
|
|
8
|
+
<div class="col2 day">
|
|
9
|
+
<div class="dropdown">
|
|
10
|
+
<div class="control">
|
|
11
|
+
<input class="full-width text dropdown-text {{css}}" ng-disabled="disabled" v="{{v}}" readonly ng-model="model.day_name" />
|
|
12
|
+
</div>
|
|
13
|
+
|
|
14
|
+
<div class="dropdown-content">
|
|
15
|
+
<div class="row padding" >
|
|
16
|
+
<input class="full-width search" ng-model="d_search" />
|
|
17
|
+
<br />
|
|
18
|
+
</div>
|
|
19
|
+
|
|
20
|
+
<div class="row padding dropdown-item" ng-repeat="d in days1| filter : d_search">
|
|
21
|
+
<p class="center" ng-click="updateDate({day : d})">{{d.name}}</p>
|
|
22
|
+
</div>
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
<div class="col5 month">
|
|
27
|
+
<div class="dropdown">
|
|
28
|
+
<div class="control">
|
|
29
|
+
<input class="full-width text dropdown-text {{css}}" ng-disabled="disabled" v="{{v}}" readonly ng-model="model.month_name" />
|
|
30
|
+
</div>
|
|
31
|
+
|
|
32
|
+
<div class="dropdown-content">
|
|
33
|
+
<div class="row padding" >
|
|
34
|
+
<input class="full-width search" ng-model="m_search" />
|
|
35
|
+
<br />
|
|
36
|
+
</div>
|
|
37
|
+
|
|
38
|
+
<div class="row padding dropdown-item" ng-repeat="m in monthes1 | filter : m_search">
|
|
39
|
+
<p class="center" ng-click="updateDate({month : m})">{{m.name}}</p>
|
|
40
|
+
</div>
|
|
41
|
+
</div>
|
|
42
|
+
</div>
|
|
43
|
+
</div>
|
|
44
|
+
<div class="col4 year">
|
|
45
|
+
<div class="dropdown">
|
|
46
|
+
<div class="control">
|
|
47
|
+
<input class="full-width text dropdown-text {{css}}" ng-disabled="disabled" v="{{v}}" readonly ng-model="model.year_name" />
|
|
48
|
+
</div>
|
|
49
|
+
|
|
50
|
+
<div class="dropdown-content">
|
|
51
|
+
<div class="row padding">
|
|
52
|
+
<input class="full-width search" ng-model="y_search" />
|
|
53
|
+
<br />
|
|
54
|
+
</div>
|
|
55
|
+
|
|
56
|
+
<div class="row padding dropdown-item" ng-repeat="y in years1 | filter : y_search">
|
|
57
|
+
<p class="center" ng-click="updateDate({year : y})">{{y.name}}</p>
|
|
58
|
+
</div>
|
|
59
|
+
</div>
|
|
60
|
+
</div>
|
|
61
|
+
</div>
|
|
62
|
+
</div>
|
|
63
|
+
</div>
|
|
64
|
+
</div>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<div class="control">
|
|
2
|
+
<label> {{label}} </label>
|
|
3
|
+
<input class="full-width text {{css}}" ng-disabled="disabled" v="{{v}}" readonly />
|
|
4
|
+
<input type="hidden" ng-model="ngModel.$display" />
|
|
5
|
+
<div class="popup">
|
|
6
|
+
<div ng-show="showSearch" class="row search-box">
|
|
7
|
+
<div class="col1">
|
|
8
|
+
<div class="pointer icon-close" ng-click="hide()">
|
|
9
|
+
<i class="fa fa-times center"></i>
|
|
10
|
+
</div>
|
|
11
|
+
</div>
|
|
12
|
+
<div class="col10">
|
|
13
|
+
<input ng-disabled="disabled" class="full-width search" ng-model="ngSearch" />
|
|
14
|
+
</div>
|
|
15
|
+
<div class="col1">
|
|
16
|
+
<div class="center pointer icon-search" ng-click="ngAdd()">
|
|
17
|
+
<i class="fa {{fa_add}} center"></i>
|
|
18
|
+
</div>
|
|
19
|
+
</div>
|
|
20
|
+
</div>
|
|
21
|
+
<item ng-repeat="item in items | filter:{ $display : ngSearch}" ng-click="updateModel(item)"> {{getValue(item)}} <small class="left"> {{getValue2(item)}} </small> </item>
|
|
22
|
+
<br />
|
|
23
|
+
<div class="row">
|
|
24
|
+
<div class="col4"></div>
|
|
25
|
+
<div class="col4 center bg-red padding pointer" ng-click="updateModel({})">
|
|
26
|
+
<i class="fa fa-trash white" aria-hidden="true"></i>
|
|
27
|
+
</div>
|
|
28
|
+
<div class="col4"></div>
|
|
29
|
+
</div>
|
|
30
|
+
</div>
|
|
31
|
+
</div>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<div class="dropdown i-list" >
|
|
2
|
+
<div class="control">
|
|
3
|
+
<label> {{label}} </label>
|
|
4
|
+
<input ng-focus="focus()" class="full-width text dropdown-text {{css}}" ng-disabled="disabled" v="{{v}}" readonly ng-model="ngModel.$display" />
|
|
5
|
+
</div>
|
|
6
|
+
|
|
7
|
+
<div class="dropdown-content">
|
|
8
|
+
<div class="row padding" ng-show="showSearch">
|
|
9
|
+
<input class="full-width search" ng-model="ngSearch" />
|
|
10
|
+
<br />
|
|
11
|
+
</div>
|
|
12
|
+
|
|
13
|
+
<div class="row padding dropdown-item center" ng-repeat="item in items | filter:{ $display : ngSearch}" ng-click="updateModel(item)">
|
|
14
|
+
<p>{{getValue(item)}}</p>
|
|
15
|
+
<small> {{getValue2(item)}} </small>
|
|
16
|
+
</div>
|
|
17
|
+
|
|
18
|
+
<div class="row center padding pointer">
|
|
19
|
+
<a class="btn red" ng-click="updateModel({})"> <i class="fa fa-trash"></i> Clear </a>
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|