cronapp-framework-mobile-js 2.8.8 → 2.9.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.
- package/components/crn-button-bar.components.json +1 -1
- package/components/crn-button.components.json +1 -1
- package/components/crn-chart.components.json +1 -0
- package/components/crn-checkbox.components.json +2 -1
- package/components/crn-dynamic-image.components.json +9 -0
- package/components/crn-header-button.components.json +1 -1
- package/components/crn-input-floating.components.json +4 -4
- package/components/crn-ion-footer-bar.components.json +3 -3
- package/components/crn-ion-header-bar.components.json +1 -1
- package/components/crn-ion-list.components.json +0 -31
- package/components/crn-ion-segment-item.components.json +68 -0
- package/components/crn-ion-segment.components.json +974 -0
- package/components/crn-ion-tab.components.json +1 -0
- package/components/crn-item-swipe.components.json +3 -3
- package/components/crn-list-item-icon.components.json +7 -20
- package/components/crn-list-swipe.components.json +2 -2
- package/components/crn-list.components.json +1 -1
- package/components/crn-multiselect.components.json +1 -1
- package/components/crn-navbar.components.json +1 -0
- package/components/crn-range.components.json +1 -1
- package/components/crn-signature-pad.components.json +36 -0
- package/components/crn-slider-item.components.json +104 -5
- package/components/crn-slider.components.json +6 -6
- package/components/crn-textarea.components.json +1 -1
- package/components/css/app.css +78 -0
- package/components/css/background-color.css +39 -1
- package/components/css/color-default.css +0 -28
- package/components/css/crn-ion-segment.css +786 -0
- package/components/css/icon-size.css +4 -4
- package/components/templates/advanced.list.designtime.html +0 -24
- package/components/templates/checkbox.template.html +6 -7
- package/components/templates/crn-ion-segment-item.template.html +6 -0
- package/components/templates/crn-ion-segment.template.html +27 -0
- package/components/templates/crn-signature-pad.designtime.html +31 -0
- package/components/templates/crn-signature-pad.template.html +1 -0
- package/components/templates/ion-footer-bar.template.html +11 -5
- package/components/templates/ion-header-bar.template.html +2 -2
- package/components/templates/item.slider.template.html +3 -3
- package/components/templates/item.swipe.template.html +2 -2
- package/components/templates/slider.template.html +14 -18
- package/css/app.css +124 -34
- package/css/signup.css +13 -0
- package/dist/components/css/app.css +1 -0
- package/dist/components/css/background-color.css +1 -1
- package/dist/components/css/color-default.css +1 -1
- package/dist/components/css/crn-ion-segment.css +1 -0
- package/dist/components/templates/advanced.list.designtime.html +1 -1
- package/dist/components/templates/checkbox.template.html +1 -1
- package/dist/components/templates/crn-ion-segment-item.template.html +1 -0
- package/dist/components/templates/crn-ion-segment.template.html +1 -0
- package/dist/components/templates/crn-signature-pad.designtime.html +22 -0
- package/dist/components/templates/crn-signature-pad.template.html +1 -0
- package/dist/components/templates/ion-footer-bar.template.html +1 -1
- package/dist/components/templates/ion-header-bar.template.html +1 -1
- package/dist/components/templates/item.slider.template.html +1 -1
- package/dist/components/templates/item.swipe.template.html +1 -1
- package/dist/components/templates/slider.template.html +1 -1
- package/dist/css/app.css +1 -1
- package/dist/css/signup.css +1 -0
- package/dist/i18n/locale_en_us.json +3 -1
- package/dist/i18n/locale_pt_br.json +4 -1
- package/dist/img/cron-icon/crn-signature-pad.svg +1 -0
- package/dist/img/cron-icon/crn-tabs.svg +1 -1
- package/dist/img/placehold-300x200.png +0 -0
- package/dist/js/app.authentication.js +1 -1
- package/dist/js/controllers.authentication.js +1 -1
- package/dist/js/directives.js +17 -1
- package/dist/js/reports/reports.service.js +1 -1
- package/i18n/locale_en_us.json +3 -1
- package/i18n/locale_pt_br.json +4 -1
- package/img/cron-icon/crn-signature-pad.svg +27 -0
- package/img/cron-icon/crn-tabs.svg +17 -18
- package/img/placehold-300x200.png +0 -0
- package/js/app.authentication.js +8 -1
- package/js/controllers.authentication.js +87 -4
- package/js/directives.js +216 -122
- package/js/reports/reports.service.js +6 -26
- package/lib/ionic/js/ionic.bundle.js +4 -2
- package/package.json +4 -2
- package/postupdate.json +11 -0
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"LAYOUTS"
|
|
10
10
|
],
|
|
11
11
|
"wrapper": false,
|
|
12
|
+
"forcedGroup": true,
|
|
12
13
|
"template": "<div class=\"col-xs-12\"> <canvas id=\"chart${RANDOM}\" data-component=\"crn-chart\" class=\"col-xs-12\"></canvas></div>",
|
|
13
14
|
"designTimeHTML": "<img alt=\"qr-code\" style=\"height: 100%;width:100%;min-height:100%; min-width:100%;\" src=\"node_modules/cronapp-framework-mobile-js/img/svg-charts.svg\"/>",
|
|
14
15
|
"designTimeSelector": "canvas",
|
|
@@ -66,6 +66,15 @@
|
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
68
|
"childrenProperties": [
|
|
69
|
+
{
|
|
70
|
+
"name": "ng-model",
|
|
71
|
+
"selector": "div[dynamic-image]",
|
|
72
|
+
"onSave": "javascript:function() { var result = arguments[0]; if (result.indexOf('.') == -1 && result.trim().length > 0 ) { result = 'vars.'+result; } return result; }",
|
|
73
|
+
"onDisplay": "javascript:function() { return arguments[0].replace('vars.',''); }",
|
|
74
|
+
"type": "text",
|
|
75
|
+
"order": 2,
|
|
76
|
+
"mandatory": true
|
|
77
|
+
},
|
|
69
78
|
{
|
|
70
79
|
"name": "content",
|
|
71
80
|
"displayName_pt_BR": "Título",
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
"category": [
|
|
9
9
|
"INPUTS", "FORMS"
|
|
10
10
|
],
|
|
11
|
-
"wrapper":
|
|
11
|
+
"wrapper": true,
|
|
12
12
|
"templateURL": "src/main/mobileapp/www/node_modules/cronapp-framework-mobile-js/dist/components/templates/floattextinput.template.html",
|
|
13
13
|
"designTimeHTMLURL": "src/main/mobileapp/www/node_modules/cronapp-framework-mobile-js/dist/components/templates/floattextinput.designtime.html",
|
|
14
|
-
"designTimeSelector": "
|
|
14
|
+
"designTimeSelector": "label",
|
|
15
15
|
"designTimeDynamic": true,
|
|
16
16
|
"properties": {
|
|
17
17
|
"id": {
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"selector": "input",
|
|
115
115
|
"type": "event"
|
|
116
116
|
}
|
|
117
|
-
],
|
|
117
|
+
],
|
|
118
118
|
"attributesForPreview": [
|
|
119
119
|
{
|
|
120
120
|
"name": "keyboard",
|
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
],
|
|
162
162
|
"styles": [
|
|
163
163
|
{
|
|
164
|
-
"selector": "#{id}
|
|
164
|
+
"selector": "#{id} span",
|
|
165
165
|
"text_pt_BR": "Título",
|
|
166
166
|
"text_en_US": "Title"
|
|
167
167
|
},
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"description": "Estrutura de rodapé com botões",
|
|
7
7
|
"description_en_US": "Footer structure with buttons",
|
|
8
8
|
"category": [
|
|
9
|
-
|
|
9
|
+
"LAYOUTS"
|
|
10
10
|
],
|
|
11
11
|
"wrapper": false,
|
|
12
12
|
"templateURL": "src/main/mobileapp/www/node_modules/cronapp-framework-mobile-js/dist/components/templates/ion-footer-bar.template.html",
|
|
@@ -260,7 +260,7 @@
|
|
|
260
260
|
{
|
|
261
261
|
"key": "text-align: right;",
|
|
262
262
|
"value_pt_BR": "Direita",
|
|
263
|
-
"value_en_US": "Right"
|
|
263
|
+
"value_en_US": "Right"
|
|
264
264
|
}
|
|
265
265
|
]
|
|
266
266
|
}
|
|
@@ -278,7 +278,7 @@
|
|
|
278
278
|
"name": "xattr-position",
|
|
279
279
|
"displayName_pt_BR": "Posição do título",
|
|
280
280
|
"displayName_en_US": "Title position",
|
|
281
|
-
"selector": "h1
|
|
281
|
+
"selector": "h1",
|
|
282
282
|
"order": 2
|
|
283
283
|
},
|
|
284
284
|
{
|
|
@@ -2,14 +2,6 @@
|
|
|
2
2
|
"name": "crn-ion-list",
|
|
3
3
|
"text_pt_BR": "Lista Avançada",
|
|
4
4
|
"text_en_US": "Advanced List",
|
|
5
|
-
"image": "/node_modules/cronapp-framework-mobile-js/img/cron-icon/crn-ion-list.svg",
|
|
6
|
-
"description": "Lista de dados com barra de pesquisa",
|
|
7
|
-
"description_en_US": "Data list with search bar",
|
|
8
|
-
"category": [
|
|
9
|
-
"LISTS"
|
|
10
|
-
],
|
|
11
|
-
"onDrop": "openEditor",
|
|
12
|
-
"wrapper": true,
|
|
13
5
|
"onDoubleClick": "openEditor",
|
|
14
6
|
"onDrop": "openEditor",
|
|
15
7
|
"image": "/node_modules/cronapp-framework-mobile-js/img/cron-icon/crn-ion-list.svg",
|
|
@@ -41,29 +33,6 @@
|
|
|
41
33
|
"class": {
|
|
42
34
|
"order": 9999
|
|
43
35
|
},
|
|
44
|
-
"onclick": {
|
|
45
|
-
"type": "event"
|
|
46
|
-
},
|
|
47
|
-
"on-tap": {
|
|
48
|
-
"removable": true,
|
|
49
|
-
"type": "event"
|
|
50
|
-
},
|
|
51
|
-
"on-double-tap": {
|
|
52
|
-
"removable": true,
|
|
53
|
-
"type": "event"
|
|
54
|
-
},
|
|
55
|
-
"on-hold": {
|
|
56
|
-
"removable": false,
|
|
57
|
-
"type": "event"
|
|
58
|
-
},
|
|
59
|
-
"on-drag": {
|
|
60
|
-
"removable": false,
|
|
61
|
-
"type": "event"
|
|
62
|
-
},
|
|
63
|
-
"on-swipe": {
|
|
64
|
-
"removable": false,
|
|
65
|
-
"type": "event"
|
|
66
|
-
},
|
|
67
36
|
"options": {
|
|
68
37
|
"displayName_pt_BR": "Configuração",
|
|
69
38
|
"displayName_en_US": "Configuration",
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "crn-ion-segment-item",
|
|
3
|
+
"text_pt_BR": "Item da abas",
|
|
4
|
+
"text_en_US": "Tabs item",
|
|
5
|
+
"image": "/node_modules/cronapp-framework-mobile-js/img/cron-icon/crn-tabs.svg",
|
|
6
|
+
"pallete": false,
|
|
7
|
+
"templateURL": "src/main/mobileapp/www/node_modules/cronapp-framework-mobile-js/components/templates/crn-ion-segment-item.template.html",
|
|
8
|
+
"wrapper": false,
|
|
9
|
+
"forcedGroup": true,
|
|
10
|
+
"properties": {
|
|
11
|
+
"class": {
|
|
12
|
+
"order": 9999
|
|
13
|
+
},
|
|
14
|
+
"id": {
|
|
15
|
+
"order": 1
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"handleRules": {
|
|
19
|
+
"useParentDataComponentRulesOnActive": "crn-ion-segment"
|
|
20
|
+
},
|
|
21
|
+
"childrenProperties": [
|
|
22
|
+
{
|
|
23
|
+
"name": "class",
|
|
24
|
+
"selector": "i",
|
|
25
|
+
"displayName_pt_BR": "Ícone",
|
|
26
|
+
"displayName_en_US": "Icon",
|
|
27
|
+
"type": "icon",
|
|
28
|
+
"order": 1
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "content",
|
|
32
|
+
"displayName_pt_BR": "Título",
|
|
33
|
+
"displayName_en_US": "Title",
|
|
34
|
+
"order": 4,
|
|
35
|
+
"selector": "span"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "ng-init",
|
|
39
|
+
"selector": "button",
|
|
40
|
+
"type": "event"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "ng-click",
|
|
44
|
+
"selector": "button",
|
|
45
|
+
"type": "event"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "ng-dblclick",
|
|
49
|
+
"selector": "button",
|
|
50
|
+
"type": "event"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "ng-mouseenter",
|
|
54
|
+
"selector": "button",
|
|
55
|
+
"type": "event"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "ng-mouseleave",
|
|
59
|
+
"selector": "button",
|
|
60
|
+
"type": "event"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"name": "ng-mousemove",
|
|
64
|
+
"selector": "button",
|
|
65
|
+
"type": "event"
|
|
66
|
+
}
|
|
67
|
+
]
|
|
68
|
+
}
|