phcthemes_admin_panel_pack 0.11.0 → 0.12.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8947a9ab3949fd8e72a1260199f659e63ee08c8dc8fea0184daf3c2d2ec385bf
4
- data.tar.gz: 4462cfb0a5bc518dd9dbba10ce51e403a08f34b25447063c6e6e6e69af471e33
3
+ metadata.gz: cbd1c933d95b5539dbee6581e3a2313871027fcf0d52d672fe5a59ff703424ff
4
+ data.tar.gz: 8e3e2c26880085a8277599fab36478f19b2bf53f60f91a991bc85fcfee0d4c2b
5
5
  SHA512:
6
- metadata.gz: b84745ae0829639c47bd0bc30c618b3d873e06bb4a9edbb3bdb62345d752dd020568aad9265e34cf78936dfa06baf9777633a12acfadbba5dd3648d311128d81
7
- data.tar.gz: 6def0214be376a10897f06211523e23afef3d77ba29e234c2a1a62862a3fb9a1da0aaa9e48bd59ef79439a71d5092824e769e7056823d40e0745af86af807348
6
+ metadata.gz: 40c637dda96ba7483617f9711a7a75fc515f78df370b48d32739f489eb13639ee1f11e05164553b10086d262a04fb5523a033bf105844662304d3e56d076c38a
7
+ data.tar.gz: b02a7258b4db8ad49f43b28a69700213d948e588b60687f1c800b9893441e2a5001187665173b9503498aac654c637238c60dca07f1af1b6615344e79b420306
@@ -1,6 +1,5 @@
1
1
  //= require rails-ujs
2
2
  //= require activestorage
3
- //= require common/pace/pace.js
4
3
  //= require common/jquery/jquery-3.4.1.js
5
4
  //= require common/jquery-ui/jquery-ui.js
6
5
  //= require common/bootstrap/bootstrap.bundle.js
@@ -1,4 +1,3 @@
1
1
  //= require rails-ujs
2
2
  //= require activestorage
3
3
  //= require themes/metronic/theme/vendors.bundle.js
4
- //= require themes/metronic/theme/bootstrap-datepicker.js
@@ -1,3 +1,3 @@
1
1
  module PhcthemesAdminPanelPack
2
- VERSION = '0.11.0'
2
+ VERSION = '0.12.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phcthemes_admin_panel_pack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - PHCDevworks
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-08 00:00:00.000000000 Z
11
+ date: 2019-07-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -353,7 +353,6 @@ files:
353
353
  - app/assets/javascripts/themes/coloradmin/theme/default.js
354
354
  - app/assets/javascripts/themes/inspinia/custom/custom.js
355
355
  - app/assets/javascripts/themes/inspinia/theme/inspinia.js
356
- - app/assets/javascripts/themes/metronic/theme/bootstrap-datepicker.js
357
356
  - app/assets/javascripts/themes/metronic/theme/scripts.bundle.js
358
357
  - app/assets/javascripts/themes/metronic/theme/vendors.bundle.js
359
358
  - app/assets/stylesheets/common/custom/custom.scss
@@ -1,124 +0,0 @@
1
- // Class definition
2
-
3
- var KTBootstrapDatepicker = function () {
4
-
5
- var arrows;
6
- if (KTUtil.isRTL()) {
7
- arrows = {
8
- leftArrow: '<i class="la la-angle-right"></i>',
9
- rightArrow: '<i class="la la-angle-left"></i>'
10
- }
11
- } else {
12
- arrows = {
13
- leftArrow: '<i class="la la-angle-left"></i>',
14
- rightArrow: '<i class="la la-angle-right"></i>'
15
- }
16
- }
17
-
18
- // Private functions
19
- var demos = function () {
20
- // minimum setup
21
- $('#kt_datepicker_1, #kt_datepicker_1_validate').datepicker({
22
- rtl: KTUtil.isRTL(),
23
- todayHighlight: true,
24
- orientation: "bottom left",
25
- templates: arrows
26
- });
27
-
28
- // minimum setup for modal demo
29
- $('#kt_datepicker_1_modal').datepicker({
30
- rtl: KTUtil.isRTL(),
31
- todayHighlight: true,
32
- orientation: "bottom left",
33
- templates: arrows
34
- });
35
-
36
- // input group layout
37
- $('#kt_datepicker_2, #kt_datepicker_2_validate').datepicker({
38
- rtl: KTUtil.isRTL(),
39
- todayHighlight: true,
40
- orientation: "bottom left",
41
- templates: arrows
42
- });
43
-
44
- // input group layout for modal demo
45
- $('#kt_datepicker_2_modal').datepicker({
46
- rtl: KTUtil.isRTL(),
47
- todayHighlight: true,
48
- orientation: "bottom left",
49
- templates: arrows
50
- });
51
-
52
- // enable clear button
53
- $('#kt_datepicker_3, #kt_datepicker_3_validate').datepicker({
54
- rtl: KTUtil.isRTL(),
55
- todayBtn: "linked",
56
- clearBtn: true,
57
- todayHighlight: true,
58
- templates: arrows
59
- });
60
-
61
- // enable clear button for modal demo
62
- $('#kt_datepicker_3_modal').datepicker({
63
- rtl: KTUtil.isRTL(),
64
- todayBtn: "linked",
65
- clearBtn: true,
66
- todayHighlight: true,
67
- templates: arrows
68
- });
69
-
70
- // orientation
71
- $('#kt_datepicker_4_1').datepicker({
72
- rtl: KTUtil.isRTL(),
73
- orientation: "top left",
74
- todayHighlight: true,
75
- templates: arrows
76
- });
77
-
78
- $('#kt_datepicker_4_2').datepicker({
79
- rtl: KTUtil.isRTL(),
80
- orientation: "top right",
81
- todayHighlight: true,
82
- templates: arrows
83
- });
84
-
85
- $('#kt_datepicker_4_3').datepicker({
86
- rtl: KTUtil.isRTL(),
87
- orientation: "bottom left",
88
- todayHighlight: true,
89
- templates: arrows
90
- });
91
-
92
- $('#kt_datepicker_4_4').datepicker({
93
- rtl: KTUtil.isRTL(),
94
- orientation: "bottom right",
95
- todayHighlight: true,
96
- templates: arrows
97
- });
98
-
99
- // range picker
100
- $('#kt_datepicker_5').datepicker({
101
- rtl: KTUtil.isRTL(),
102
- todayHighlight: true,
103
- templates: arrows
104
- });
105
-
106
- // inline picker
107
- $('#kt_datepicker_6').datepicker({
108
- rtl: KTUtil.isRTL(),
109
- todayHighlight: true,
110
- templates: arrows
111
- });
112
- }
113
-
114
- return {
115
- // public functions
116
- init: function() {
117
- demos();
118
- }
119
- };
120
- }();
121
-
122
- jQuery(document).ready(function() {
123
- KTBootstrapDatepicker.init();
124
- });