cronapp-framework-mobile-js 4.0.0 → 4.0.2

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 (69) hide show
  1. package/css/app_2.9.css +1 -2
  2. package/dist/css/app_2.9.css +1 -1
  3. package/package.json +3 -26
  4. package/postupdate.json +189 -111
  5. package/css/custom-ionic.css +0 -236
  6. package/dist/css/custom-ionic.css +0 -1
  7. package/lib/ionic/css/ionic.css +0 -9802
  8. package/lib/ionic/css/ionic.min.css +0 -23
  9. package/lib/ionic/fonts/ionicons.eot +0 -0
  10. package/lib/ionic/fonts/ionicons.svg +0 -2230
  11. package/lib/ionic/fonts/ionicons.ttf +0 -0
  12. package/lib/ionic/fonts/ionicons.woff +0 -0
  13. package/lib/ionic/js/angular/angular-animate.js +0 -4115
  14. package/lib/ionic/js/angular/angular-animate.min.js +0 -56
  15. package/lib/ionic/js/angular/angular-resource.js +0 -768
  16. package/lib/ionic/js/angular/angular-resource.min.js +0 -15
  17. package/lib/ionic/js/angular/angular-sanitize.js +0 -717
  18. package/lib/ionic/js/angular/angular-sanitize.min.js +0 -15
  19. package/lib/ionic/js/angular/angular.js +0 -30714
  20. package/lib/ionic/js/angular/angular.min.js +0 -311
  21. package/lib/ionic/js/angular-ui/angular-ui-router.js +0 -4232
  22. package/lib/ionic/js/angular-ui/angular-ui-router.min.js +0 -7
  23. package/lib/ionic/js/ionic-angular.js +0 -14391
  24. package/lib/ionic/js/ionic-angular.min.js +0 -18
  25. package/lib/ionic/js/ionic.bundle.js +0 -67623
  26. package/lib/ionic/js/ionic.bundle.min.js +0 -472
  27. package/lib/ionic/js/ionic.js +0 -13356
  28. package/lib/ionic/js/ionic.min.js +0 -20
  29. package/lib/ionic/scss/_action-sheet.scss +0 -170
  30. package/lib/ionic/scss/_animations.scss +0 -48
  31. package/lib/ionic/scss/_backdrop.scss +0 -24
  32. package/lib/ionic/scss/_badge.scss +0 -62
  33. package/lib/ionic/scss/_bar.scss +0 -417
  34. package/lib/ionic/scss/_button-bar.scss +0 -92
  35. package/lib/ionic/scss/_button.scss +0 -252
  36. package/lib/ionic/scss/_checkbox.scss +0 -180
  37. package/lib/ionic/scss/_form.scss +0 -327
  38. package/lib/ionic/scss/_grid.scss +0 -159
  39. package/lib/ionic/scss/_items.scss +0 -825
  40. package/lib/ionic/scss/_list.scss +0 -125
  41. package/lib/ionic/scss/_loading.scss +0 -51
  42. package/lib/ionic/scss/_menu.scss +0 -70
  43. package/lib/ionic/scss/_mixins.scss +0 -642
  44. package/lib/ionic/scss/_modal.scss +0 -102
  45. package/lib/ionic/scss/_platform.scss +0 -77
  46. package/lib/ionic/scss/_popover.scss +0 -168
  47. package/lib/ionic/scss/_popup.scss +0 -110
  48. package/lib/ionic/scss/_progress.scss +0 -11
  49. package/lib/ionic/scss/_radio.scss +0 -47
  50. package/lib/ionic/scss/_range.scss +0 -160
  51. package/lib/ionic/scss/_refresher.scss +0 -113
  52. package/lib/ionic/scss/_reset.scss +0 -365
  53. package/lib/ionic/scss/_scaffolding.scss +0 -291
  54. package/lib/ionic/scss/_select.scss +0 -142
  55. package/lib/ionic/scss/_slide-box.scss +0 -71
  56. package/lib/ionic/scss/_slides.scss +0 -529
  57. package/lib/ionic/scss/_spinner.scss +0 -100
  58. package/lib/ionic/scss/_tabs.scss +0 -542
  59. package/lib/ionic/scss/_toggle.scss +0 -198
  60. package/lib/ionic/scss/_transitions.scss +0 -188
  61. package/lib/ionic/scss/_type.scss +0 -166
  62. package/lib/ionic/scss/_util.scss +0 -296
  63. package/lib/ionic/scss/_variables.scss +0 -764
  64. package/lib/ionic/scss/ionic.scss +0 -54
  65. package/lib/ionic/scss/ionicons/_ionicons-font.scss +0 -28
  66. package/lib/ionic/scss/ionicons/_ionicons-icons.scss +0 -1473
  67. package/lib/ionic/scss/ionicons/_ionicons-variables.scss +0 -741
  68. package/lib/ionic/scss/ionicons/ionicons.scss +0 -16
  69. package/lib/ionic/version.json +0 -6
@@ -1,102 +0,0 @@
1
-
2
- /**
3
- * Modals
4
- * --------------------------------------------------
5
- * Modals are independent windows that slide in from off-screen.
6
- */
7
-
8
- .modal-backdrop,
9
- .modal-backdrop-bg {
10
- position: fixed;
11
- top: 0;
12
- left: 0;
13
- z-index: $z-index-modal;
14
- width: 100%;
15
- height: 100%;
16
- }
17
-
18
- .modal-backdrop-bg {
19
- pointer-events: none;
20
- }
21
-
22
- .modal {
23
- display: block;
24
- position: absolute;
25
- top: 0;
26
- z-index: $z-index-modal;
27
- overflow: hidden;
28
- min-height: 100%;
29
- width: 100%;
30
- background-color: $modal-bg-color;
31
- }
32
-
33
- @media (min-width: $modal-inset-mode-break-point) {
34
- // inset mode is when the modal doesn't fill the entire
35
- // display but instead is centered within a large display
36
- .modal {
37
- top: $modal-inset-mode-top;
38
- right: $modal-inset-mode-right;
39
- bottom: $modal-inset-mode-bottom;
40
- left: $modal-inset-mode-left;
41
- min-height: $modal-inset-mode-min-height;
42
- width: (100% - $modal-inset-mode-left - $modal-inset-mode-right);
43
- }
44
-
45
- .modal.ng-leave-active {
46
- bottom: 0;
47
- }
48
-
49
- // remove ios header padding from inset header
50
- .platform-ios.platform-cordova .modal-wrapper .modal {
51
- .bar-header:not(.bar-subheader) {
52
- height: $bar-height;
53
- > * {
54
- margin-top: 0;
55
- }
56
- }
57
- .tabs-top > .tabs,
58
- .tabs.tabs-top {
59
- top: $bar-height;
60
- }
61
- .has-header,
62
- .bar-subheader {
63
- top: $bar-height;
64
- }
65
- .has-subheader {
66
- top: $bar-height + $bar-subheader-height;
67
- }
68
- .has-header.has-tabs-top {
69
- top: $bar-height + $tabs-height;
70
- }
71
- .has-header.has-subheader.has-tabs-top {
72
- top: $bar-height + $bar-subheader-height + $tabs-height;
73
- }
74
- }
75
-
76
- .modal-backdrop-bg {
77
- @include transition(opacity 300ms ease-in-out);
78
- background-color: $modal-backdrop-bg-active;
79
- opacity: 0;
80
- }
81
-
82
- .active .modal-backdrop-bg {
83
- opacity: 0.5;
84
- }
85
- }
86
-
87
- // disable clicks on all but the modal
88
- .modal-open {
89
- pointer-events: none;
90
-
91
- .modal,
92
- .modal-backdrop {
93
- pointer-events: auto;
94
- }
95
- // prevent clicks on modal when loading overlay is active though
96
- &.loading-active {
97
- .modal,
98
- .modal-backdrop {
99
- pointer-events: none;
100
- }
101
- }
102
- }
@@ -1,77 +0,0 @@
1
-
2
- /**
3
- * Platform
4
- * --------------------------------------------------
5
- * Platform specific tweaks
6
- */
7
-
8
- .platform-ios.platform-cordova {
9
- // iOS has a status bar which sits on top of the header.
10
- // Bump down everything to make room for it. However, if
11
- // if its in Cordova, and set to fullscreen, then disregard the bump.
12
- &:not(.fullscreen) {
13
- .bar-header:not(.bar-subheader) {
14
- height: $bar-height + $ios-statusbar-height;
15
-
16
- &.item-input-inset .item-input-wrapper {
17
- margin-top: 19px !important;
18
- }
19
-
20
- > * {
21
- margin-top: $ios-statusbar-height;
22
- }
23
- }
24
- .tabs-top > .tabs,
25
- .tabs.tabs-top {
26
- top: $bar-height + $ios-statusbar-height;
27
- }
28
-
29
- .has-header,
30
- .bar-subheader {
31
- top: $bar-height + $ios-statusbar-height;
32
- }
33
- .has-subheader {
34
- top: $bar-height + $bar-subheader-height + $ios-statusbar-height;
35
- }
36
- .has-header.has-tabs-top {
37
- top: $bar-height + $tabs-height + $ios-statusbar-height;
38
- }
39
- .has-header.has-subheader.has-tabs-top {
40
- top: $bar-height + $bar-subheader-height + $tabs-height + $ios-statusbar-height;
41
- }
42
- }
43
- .popover{
44
- .bar-header:not(.bar-subheader) {
45
- height: $bar-height;
46
- &.item-input-inset .item-input-wrapper {
47
- margin-top: -1px;
48
- }
49
- > * {
50
- margin-top: 0;
51
- }
52
- }
53
- .has-header,
54
- .bar-subheader {
55
- top: $bar-height;
56
- }
57
- .has-subheader {
58
- top: $bar-height + $bar-subheader-height;
59
- }
60
- }
61
- &.status-bar-hide {
62
- // Cordova doesn't adjust the body height correctly, this makes up for it
63
- margin-bottom: 20px;
64
- }
65
- }
66
-
67
- @media (orientation:landscape) {
68
- .platform-ios.platform-browser.platform-ipad {
69
- position: fixed; // required for iPad 7 Safari
70
- }
71
- }
72
-
73
- .platform-c:not(.enable-transitions) * {
74
- // disable transitions on grade-c devices (Android 2)
75
- -webkit-transition: none !important;
76
- transition: none !important;
77
- }
@@ -1,168 +0,0 @@
1
-
2
- /**
3
- * Popovers
4
- * --------------------------------------------------
5
- * Popovers are independent views which float over content
6
- */
7
-
8
- .popover-backdrop {
9
- position: fixed;
10
- top: 0;
11
- left: 0;
12
- z-index: $z-index-popover;
13
- width: 100%;
14
- height: 100%;
15
- background-color: $popover-backdrop-bg-inactive;
16
-
17
- &.active {
18
- background-color: $popover-backdrop-bg-active;
19
- }
20
- }
21
-
22
- .popover {
23
- position: absolute;
24
- top: 25%;
25
- left: 50%;
26
- z-index: $z-index-popover;
27
- display: block;
28
- margin-top: 12px;
29
- margin-left: -$popover-width / 2;
30
- height: $popover-height;
31
- width: $popover-width;
32
- background-color: $popover-bg-color;
33
- box-shadow: $popover-box-shadow;
34
- opacity: 0;
35
-
36
- .item:first-child {
37
- border-top: 0;
38
- }
39
-
40
- .item:last-child {
41
- border-bottom: 0;
42
- }
43
-
44
- &.popover-bottom {
45
- margin-top: -12px;
46
- }
47
- }
48
-
49
-
50
- // Set popover border-radius
51
- .popover,
52
- .popover .bar-header {
53
- border-radius: $popover-border-radius;
54
- }
55
- .popover .scroll-content {
56
- z-index: 1;
57
- margin: 2px 0;
58
- }
59
- .popover .bar-header {
60
- border-bottom-right-radius: 0;
61
- border-bottom-left-radius: 0;
62
- }
63
- .popover .has-header {
64
- border-top-right-radius: 0;
65
- border-top-left-radius: 0;
66
- }
67
- .popover-arrow {
68
- display: none;
69
- }
70
-
71
-
72
- // iOS Popover
73
- .platform-ios {
74
-
75
- .popover {
76
- box-shadow: $popover-box-shadow-ios;
77
- border-radius: $popover-border-radius-ios;
78
- }
79
- .popover .bar-header {
80
- @include border-top-radius($popover-border-radius-ios);
81
- }
82
- .popover .scroll-content {
83
- margin: 8px 0;
84
- border-radius: $popover-border-radius-ios;
85
- }
86
- .popover .scroll-content.has-header {
87
- margin-top: 0;
88
- }
89
- .popover-arrow {
90
- position: absolute;
91
- display: block;
92
- top: -17px;
93
- width: 30px;
94
- height: 19px;
95
- overflow: hidden;
96
-
97
- &:after {
98
- position: absolute;
99
- top: 12px;
100
- left: 5px;
101
- width: 20px;
102
- height: 20px;
103
- background-color: $popover-bg-color;
104
- border-radius: 3px;
105
- content: '';
106
- @include rotate(-45deg);
107
- }
108
- }
109
- .popover-bottom .popover-arrow {
110
- top: auto;
111
- bottom: -10px;
112
- &:after {
113
- top: -6px;
114
- }
115
- }
116
- }
117
-
118
-
119
- // Android Popover
120
- .platform-android {
121
-
122
- .popover {
123
- margin-top: -32px;
124
- background-color: $popover-bg-color-android;
125
- box-shadow: $popover-box-shadow-android;
126
-
127
- .item {
128
- border-color: $popover-bg-color-android;
129
- background-color: $popover-bg-color-android;
130
- color: #4d4d4d;
131
- }
132
- &.popover-bottom {
133
- margin-top: 32px;
134
- }
135
- }
136
-
137
- .popover-backdrop,
138
- .popover-backdrop.active {
139
- background-color: transparent;
140
- }
141
- }
142
-
143
-
144
- // disable clicks on all but the popover
145
- .popover-open {
146
- pointer-events: none;
147
-
148
- .popover,
149
- .popover-backdrop {
150
- pointer-events: auto;
151
- }
152
- // prevent clicks on popover when loading overlay is active though
153
- &.loading-active {
154
- .popover,
155
- .popover-backdrop {
156
- pointer-events: none;
157
- }
158
- }
159
- }
160
-
161
-
162
- // wider popover on larger viewports
163
- @media (min-width: $popover-large-break-point) {
164
- .popover {
165
- width: $popover-large-width;
166
- margin-left: -$popover-large-width / 2;
167
- }
168
- }
@@ -1,110 +0,0 @@
1
-
2
- /**
3
- * Popups
4
- * --------------------------------------------------
5
- */
6
-
7
- .popup-container {
8
- position: absolute;
9
- top: 0;
10
- left: 0;
11
- bottom: 0;
12
- right: 0;
13
- background: rgba(0,0,0,0);
14
-
15
- @include display-flex();
16
- @include justify-content(center);
17
- @include align-items(center);
18
-
19
- z-index: $z-index-popup;
20
-
21
- // Start hidden
22
- visibility: hidden;
23
- &.popup-showing {
24
- visibility: visible;
25
- }
26
-
27
- &.popup-hidden .popup {
28
- @include animation-name(scaleOut);
29
- @include animation-duration($popup-leave-animation-duration);
30
- @include animation-timing-function(ease-in-out);
31
- @include animation-fill-mode(both);
32
- }
33
-
34
- &.active .popup {
35
- @include animation-name(superScaleIn);
36
- @include animation-duration($popup-enter-animation-duration);
37
- @include animation-timing-function(ease-in-out);
38
- @include animation-fill-mode(both);
39
- }
40
-
41
- .popup {
42
- width: $popup-width;
43
- max-width: 100%;
44
- max-height: 90%;
45
-
46
- border-radius: $popup-border-radius;
47
- background-color: $popup-background-color;
48
-
49
- @include display-flex();
50
- @include flex-direction(column);
51
- }
52
-
53
- input,
54
- textarea {
55
- width: 100%;
56
- }
57
- }
58
-
59
- .popup-head {
60
- padding: 15px 10px;
61
- border-bottom: 1px solid #eee;
62
- text-align: center;
63
- }
64
- .popup-title {
65
- margin: 0;
66
- padding: 0;
67
- font-size: 15px;
68
- }
69
- .popup-sub-title {
70
- margin: 5px 0 0 0;
71
- padding: 0;
72
- font-weight: normal;
73
- font-size: 11px;
74
- }
75
- .popup-body {
76
- padding: 10px;
77
- overflow: auto;
78
- }
79
-
80
- .popup-buttons {
81
- @include display-flex();
82
- @include flex-direction(row);
83
- padding: 10px;
84
- min-height: $popup-button-min-height + 20;
85
-
86
- .button {
87
- @include flex(1);
88
- display: block;
89
- min-height: $popup-button-min-height;
90
- border-radius: $popup-button-border-radius;
91
- line-height: $popup-button-line-height;
92
-
93
- margin-right: 5px;
94
- &:last-child {
95
- margin-right: 0px;
96
- }
97
- }
98
- }
99
-
100
- .popup-open {
101
- pointer-events: none;
102
-
103
- &.modal-open .modal {
104
- pointer-events: none;
105
- }
106
-
107
- .popup-backdrop, .popup {
108
- pointer-events: auto;
109
- }
110
- }
@@ -1,11 +0,0 @@
1
-
2
- /**
3
- * Progress
4
- * --------------------------------------------------
5
- */
6
-
7
- progress {
8
- display: block;
9
- margin: $progress-margin;
10
- width: $progress-width;
11
- }
@@ -1,47 +0,0 @@
1
-
2
- /**
3
- * Radio Button Inputs
4
- * --------------------------------------------------
5
- */
6
-
7
- .item-radio {
8
- padding: 0;
9
-
10
- &:hover {
11
- cursor: pointer;
12
- }
13
- }
14
-
15
- .item-radio .item-content {
16
- /* give some room to the right for the checkmark icon */
17
- padding-right: $item-padding * 4;
18
- }
19
-
20
- .item-radio .radio-icon {
21
- /* checkmark icon will be hidden by default */
22
- position: absolute;
23
- top: 0;
24
- right: 0;
25
- z-index: $z-index-item-radio;
26
- visibility: hidden;
27
- padding: $item-padding - 2;
28
- height: 100%;
29
- font-size: 24px;
30
- }
31
-
32
- .item-radio input {
33
- /* hide any radio button inputs elements (the ugly circles) */
34
- position: absolute;
35
- left: -9999px;
36
-
37
- &:checked + .radio-content .item-content {
38
- /* style the item content when its checked */
39
- background: #f7f7f7;
40
- }
41
-
42
- &:checked + .radio-content .radio-icon {
43
- /* show the checkmark icon when its checked */
44
- visibility: visible;
45
- }
46
- }
47
-
@@ -1,160 +0,0 @@
1
-
2
- /**
3
- * Range
4
- * --------------------------------------------------
5
- */
6
-
7
- .range input{
8
- display: inline-block;
9
- overflow: hidden;
10
- margin-top: 5px;
11
- margin-bottom: 5px;
12
- padding-right: 2px;
13
- padding-left: 1px;
14
- width: auto;
15
- height: $range-slider-height + 15;
16
- outline: none;
17
- background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, $range-default-track-bg), color-stop(100%, $range-default-track-bg));
18
- background: linear-gradient(to right, $range-default-track-bg 0%, $range-default-track-bg 100%);
19
- background-position: center;
20
- background-size: 99% $range-track-height;
21
- background-repeat: no-repeat;
22
- -webkit-appearance: none;
23
-
24
- &::-moz-focus-outer {
25
- /* hide the focus outline in Firefox */
26
- border: 0;
27
- }
28
-
29
- &::-webkit-slider-thumb {
30
- position: relative;
31
- width: $range-slider-width;
32
- height: $range-slider-height;
33
- border-radius: $range-slider-border-radius;
34
- background-color: $toggle-handle-off-bg-color;
35
- box-shadow: $range-slider-box-shadow;
36
- cursor: pointer;
37
- -webkit-appearance: none;
38
- border: 0;
39
- }
40
-
41
- &::-webkit-slider-thumb:before{
42
- /* what creates the colorful line on the left side of the slider */
43
- position: absolute;
44
- top: ($range-slider-height / 2) - ($range-track-height / 2);
45
- left: -2001px;
46
- width: 2000px;
47
- height: $range-track-height;
48
- background: $dark;
49
- content: ' ';
50
- }
51
-
52
- &::-webkit-slider-thumb:after {
53
- /* create a larger (but hidden) hit area */
54
- position: absolute;
55
- top: -15px;
56
- left: -15px;
57
- padding: 30px;
58
- content: ' ';
59
- //background: red;
60
- //opacity: .5;
61
- }
62
- &::-ms-fill-lower{
63
- height: $range-track-height;
64
- background:$dark;
65
- }
66
- /*
67
- &::-ms-track{
68
- background: transparent;
69
- border-color: transparent;
70
- border-width: 11px 0 16px;
71
- color:transparent;
72
- margin-top:20px;
73
- }
74
- &::-ms-thumb {
75
- width: $range-slider-width;
76
- height: $range-slider-height;
77
- border-radius: $range-slider-border-radius;
78
- background-color: $toggle-handle-off-bg-color;
79
- border-color:$toggle-handle-off-bg-color;
80
- box-shadow: $range-slider-box-shadow;
81
- margin-left:1px;
82
- margin-right:1px;
83
- outline:none;
84
- }
85
- &::-ms-fill-upper {
86
- height: $range-track-height;
87
- background:$range-default-track-bg;
88
- }
89
- */
90
- }
91
-
92
- .range {
93
- @include display-flex();
94
- @include align-items(center);
95
- padding: 2px 11px;
96
-
97
- &.range-light {
98
- input { @include range-style($range-light-track-bg); }
99
- }
100
- &.range-stable {
101
- input { @include range-style($range-stable-track-bg); }
102
- }
103
- &.range-positive {
104
- input { @include range-style($range-positive-track-bg); }
105
- }
106
- &.range-calm {
107
- input { @include range-style($range-calm-track-bg); }
108
- }
109
- &.range-balanced {
110
- input { @include range-style($range-balanced-track-bg); }
111
- }
112
- &.range-assertive {
113
- input { @include range-style($range-assertive-track-bg); }
114
- }
115
- &.range-energized {
116
- input { @include range-style($range-energized-track-bg); }
117
- }
118
- &.range-royal {
119
- input { @include range-style($range-royal-track-bg); }
120
- }
121
- &.range-dark {
122
- input { @include range-style($range-dark-track-bg); }
123
- }
124
- }
125
-
126
- .range .icon {
127
- @include flex(0);
128
- display: block;
129
- min-width: $range-icon-size;
130
- text-align: center;
131
- font-size: $range-icon-size;
132
- }
133
-
134
- .range input {
135
- @include flex(1);
136
- display: block;
137
- margin-right: 10px;
138
- margin-left: 10px;
139
- }
140
-
141
- .range-label {
142
- @include flex(0, 0, auto);
143
- display: block;
144
- white-space: nowrap;
145
- }
146
-
147
- .range-label:first-child {
148
- padding-left: 5px;
149
- }
150
- .range input + .range-label {
151
- padding-right: 5px;
152
- padding-left: 0;
153
- }
154
-
155
- // WP range height must be auto
156
- .platform-windowsphone{
157
- .range input{
158
- height:auto;
159
- }
160
- }