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.
- package/README.md +7 -7
- package/apps/client-side/app.js +255 -182
- package/apps/client-side/site_files/css/bootstrap5-addon.css +87 -4
- package/apps/client-side/site_files/css/bootstrap5.css +1 -1
- package/apps/client-side/site_files/css/bootstrap5.css.map +1 -0
- package/apps/client-side/site_files/css/dropdown.css +22 -4
- package/apps/client-side/site_files/css/effect.css +342 -283
- package/apps/client-side/site_files/css/images.css +10 -7
- package/apps/client-side/site_files/css/layout.css +37 -44
- package/apps/client-side/site_files/css/modal.css +1 -1
- package/apps/client-side/site_files/css/normalize.css +146 -0
- package/apps/client-side/site_files/css/scrollbar.css +9 -5
- package/apps/client-side/site_files/css/table.css +3 -3
- package/apps/client-side/site_files/html/directive/i-button.html +5 -0
- package/apps/client-side/site_files/html/directive/i-checkbox.html +4 -0
- package/apps/client-side/site_files/html/directive/i-checklist.html +6 -0
- package/apps/client-side/site_files/html/directive/i-control.html +5 -0
- package/apps/client-side/site_files/html/directive/i-date.html +24 -0
- package/apps/client-side/site_files/html/directive/i-datetime.html +31 -0
- package/apps/client-side/site_files/html/{sub/i-file.content.html → directive/i-file.html} +3 -5
- package/apps/client-side/site_files/html/directive/i-image.html +7 -0
- package/apps/client-side/site_files/html/directive/i-list.html +20 -0
- package/apps/client-side/site_files/html/directive/i-radio.html +4 -0
- package/apps/client-side/site_files/html/directive/i-textarea.html +4 -0
- package/apps/client-side/site_files/html/directive/i-treenode.html +20 -0
- package/apps/client-side/site_files/html/directive/i-treeview.html +13 -0
- package/apps/client-side/site_files/html/directive/i-upload.html +5 -0
- package/apps/client-side/site_files/html/directive-core/i-date.html +64 -0
- package/apps/client-side/site_files/html/directive-core/i-list.html +22 -0
- package/apps/client-side/site_files/images/no.jpg +0 -0
- package/apps/client-side/site_files/js/bootstrap-5-directive.js +278 -998
- package/apps/client-side/site_files/js/bootstrap.js.map +1 -0
- package/apps/client-side/site_files/js/directive.js +1865 -2044
- package/apps/client-side/site_files/js/directive.min.js +2 -2
- package/apps/client-side/site_files/js/site.js +19 -3
- package/apps/security/site_files/html/login_modal.html +18 -26
- package/index.js +277 -278
- package/isite_files/images/no.jpg +0 -0
- package/lib/cookie.js +3 -5
- package/lib/email.js +108 -0
- package/lib/integrated.js +10 -26
- package/lib/parser.js +519 -509
- package/lib/routing.js +23 -15
- package/lib/security.js +1109 -1081
- package/lib/sessions.js +182 -247
- package/object-options/index.js +24 -4
- package/object-options/lib/fn.js +6 -3
- package/package.json +5 -3
- package/pull.bat +3 -0
- package/push.bat +2 -5
- package/apps/client-side/site_files/html/sub/i-date2.content.html +0 -64
- package/apps/client-side/site_files/html/sub/i-list.content.html +0 -31
- package/apps/client-side/site_files/html/sub/i-list2.content.html +0 -22
|
@@ -1,31 +0,0 @@
|
|
|
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>
|
|
@@ -1,22 +0,0 @@
|
|
|
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 form-control {{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 form-control" 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>
|