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,296 +0,0 @@
1
-
2
- /**
3
- * Utility Classes
4
- * --------------------------------------------------
5
- */
6
-
7
- .hide {
8
- display: none;
9
- }
10
- .opacity-hide {
11
- opacity: 0;
12
- }
13
- .grade-b .opacity-hide,
14
- .grade-c .opacity-hide {
15
- opacity: 1;
16
- display: none;
17
- }
18
- .show {
19
- display: block;
20
- }
21
- .opacity-show {
22
- opacity: 1;
23
- }
24
- .invisible {
25
- visibility: hidden;
26
- }
27
-
28
- .keyboard-open .hide-on-keyboard-open {
29
- display: none;
30
- }
31
-
32
- .keyboard-open .tabs.hide-on-keyboard-open + .pane .has-tabs,
33
- .keyboard-open .bar-footer.hide-on-keyboard-open + .pane .has-footer {
34
- bottom: 0;
35
- }
36
-
37
- .inline {
38
- display: inline-block;
39
- }
40
-
41
- .disable-pointer-events {
42
- pointer-events: none;
43
- }
44
-
45
- .enable-pointer-events {
46
- pointer-events: auto;
47
- }
48
-
49
- .disable-user-behavior {
50
- // used to prevent the browser from doing its native behavior. this doesnt
51
- // prevent the scrolling, but cancels the contextmenu, tap highlighting, etc
52
-
53
- @include user-select(none);
54
- @include touch-callout(none);
55
- @include tap-highlight-transparent();
56
-
57
- -webkit-user-drag: none;
58
-
59
- -ms-touch-action: none;
60
- -ms-content-zooming: none;
61
- }
62
-
63
- // Fill the screen to block clicks (a better pointer-events: none) for the body
64
- // to avoid full-page reflows and paints which can cause flickers
65
- .click-block {
66
- position: absolute;
67
- top: 0;
68
- right: 0;
69
- bottom: 0;
70
- left: 0;
71
- opacity: 0;
72
- z-index: $z-index-click-block;
73
- @include translate3d(0, 0, 0);
74
- overflow: hidden;
75
- }
76
- .click-block-hide {
77
- @include translate3d(-9999px, 0, 0);
78
- }
79
-
80
- .no-resize {
81
- resize: none;
82
- }
83
-
84
- .block {
85
- display: block;
86
- clear: both;
87
- &:after {
88
- display: block;
89
- visibility: hidden;
90
- clear: both;
91
- height: 0;
92
- content: ".";
93
- }
94
- }
95
-
96
- .full-image {
97
- width: 100%;
98
- }
99
-
100
- .clearfix {
101
- *zoom: 1;
102
- &:before,
103
- &:after {
104
- display: table;
105
- content: "";
106
- // Fixes Opera/contenteditable bug:
107
- // http://nicolasgallagher.com/micro-clearfix-hack/#comment-36952
108
- line-height: 0;
109
- }
110
- &:after {
111
- clear: both;
112
- }
113
- }
114
-
115
- /**
116
- * Content Padding
117
- * --------------------------------------------------
118
- */
119
-
120
- .padding {
121
- padding: $content-padding;
122
- }
123
-
124
- .padding-top,
125
- .padding-vertical {
126
- padding-top: $content-padding;
127
- }
128
-
129
- .padding-right,
130
- .padding-horizontal {
131
- padding-right: $content-padding;
132
- }
133
-
134
- .padding-bottom,
135
- .padding-vertical {
136
- padding-bottom: $content-padding;
137
- }
138
-
139
- .padding-left,
140
- .padding-horizontal {
141
- padding-left: $content-padding;
142
- }
143
-
144
-
145
- /**
146
- * Scrollable iFrames
147
- * --------------------------------------------------
148
- */
149
-
150
- .iframe-wrapper {
151
- position: fixed;
152
- -webkit-overflow-scrolling: touch;
153
- overflow: scroll;
154
-
155
- iframe {
156
- height: 100%;
157
- width: 100%;
158
- }
159
- }
160
-
161
-
162
- /**
163
- * Rounded
164
- * --------------------------------------------------
165
- */
166
-
167
- .rounded {
168
- border-radius: $border-radius-base;
169
- }
170
-
171
-
172
- /**
173
- * Utility Colors
174
- * --------------------------------------------------
175
- * Utility colors are added to help set a naming convention. You'll
176
- * notice we purposely do not use words like "red" or "blue", but
177
- * instead have colors which represent an emotion or generic theme.
178
- */
179
-
180
- .light, a.light {
181
- color: $light;
182
- }
183
- .light-bg {
184
- background-color: $light;
185
- }
186
- .light-border {
187
- border-color: $button-light-border;
188
- }
189
-
190
- .stable, a.stable {
191
- color: $stable;
192
- }
193
- .stable-bg {
194
- background-color: $stable;
195
- }
196
- .stable-border {
197
- border-color: $button-stable-border;
198
- }
199
-
200
- .positive, a.positive {
201
- color: $positive;
202
- }
203
- .positive-bg {
204
- background-color: $positive;
205
- }
206
- .positive-border {
207
- border-color: $button-positive-border;
208
- }
209
-
210
- .calm, a.calm {
211
- color: $calm;
212
- }
213
- .calm-bg {
214
- background-color: $calm;
215
- }
216
- .calm-border {
217
- border-color: $button-calm-border;
218
- }
219
-
220
- .assertive, a.assertive {
221
- color: $assertive;
222
- }
223
- .assertive-bg {
224
- background-color: $assertive;
225
- }
226
- .assertive-border {
227
- border-color: $button-assertive-border;
228
- }
229
-
230
- .balanced, a.balanced {
231
- color: $balanced;
232
- }
233
- .balanced-bg {
234
- background-color: $balanced;
235
- }
236
- .balanced-border {
237
- border-color: $button-balanced-border;
238
- }
239
-
240
- .energized, a.energized {
241
- color: $energized;
242
- }
243
- .energized-bg {
244
- background-color: $energized;
245
- }
246
- .energized-border {
247
- border-color: $button-energized-border;
248
- }
249
-
250
- .royal, a.royal {
251
- color: $royal;
252
- }
253
- .royal-bg {
254
- background-color: $royal;
255
- }
256
- .royal-border {
257
- border-color: $button-royal-border;
258
- }
259
-
260
- .dark, a.dark {
261
- color: $dark;
262
- }
263
- .dark-bg {
264
- background-color: $dark;
265
- }
266
- .dark-border {
267
- border-color: $button-dark-border;
268
- }
269
-
270
- [collection-repeat] {
271
- /* Position is set by transforms */
272
- left: 0 !important;
273
- top: 0 !important;
274
- position: absolute !important;
275
- z-index: 1;
276
- }
277
- .collection-repeat-container {
278
- position: relative;
279
- z-index: 1; //make sure it's above the after-container
280
- }
281
- .collection-repeat-after-container {
282
- z-index: 0;
283
- display: block;
284
-
285
- /* when scrolling horizontally, make sure the after container doesn't take up 100% width */
286
- &.horizontal {
287
- display: inline-block;
288
- }
289
- }
290
-
291
- // ng-show fix for windows phone
292
- // https://www.hoessl.eu/2014/12/on-using-the-ionic-framework-for-windows-phone-8-1-apps/
293
- [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak,
294
- .x-ng-cloak, .ng-hide:not(.ng-hide-animate) {
295
- display: none !important;
296
- }