cronapp-framework-js 2.8.32 → 2.8.36
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-carousel.components.json +1 -1
- package/components/crn-eight-four-container.components.json +2 -2
- package/components/crn-enterprise-autocomplete.components.json +8 -0
- package/components/crn-enterprise-combobox-multiple.components.json +7 -0
- package/components/crn-enterprise-combobox.components.json +7 -0
- package/components/crn-enterprise-dynamic-autocomplete.components.json +35 -27
- package/components/crn-enterprise-dynamic-combobox.components.json +7 -0
- package/components/crn-four-eight-container.components.json +2 -2
- package/components/crn-one-container.components.json +2 -2
- package/components/crn-ordered-list.components.json +1 -0
- package/components/crn-ordered-sub-list.components.json +1 -0
- package/components/crn-radioOption.components.json +8 -0
- package/components/crn-textarea.components.json +8 -0
- package/components/crn-textinput.components.json +8 -0
- package/components/crn-textinputbutton.components.json +8 -0
- package/components/crn-textinputicon.components.json +8 -0
- package/components/crn-three-container.components.json +2 -2
- package/components/crn-trhee-six-three-container.components.json +2 -2
- package/components/crn-two-container.components.json +2 -2
- package/components/crn-unordered-list.components.json +1 -0
- package/components/crn-unordered-sub-list.components.json +1 -0
- package/components/cron-breadcrumbs.components.json +64 -0
- package/components/cron-ordered-list.components.json +152 -0
- package/components/templates/accordion.template.html +6 -6
- package/components/templates/carousel.template.html +3 -3
- package/components/templates/cron-breadcrumbs.designtime.html +11 -0
- package/components/templates/cron-breadcrumbs.template.html +5 -0
- package/components/templates/cron-ordered-list.template.html +7 -0
- package/components/templates/tabs.template.html +4 -4
- package/css/app.css +7 -0
- package/css/themes/custom/material/components_css/crn-scheduler.css +1 -2
- package/dist/components/css/font-size.css +1 -0
- package/dist/components/css/image.css +1 -0
- package/dist/components/js/jquery.inputmask.bundle.js +1 -1
- package/dist/components/js/jquery.mask.min.js +1 -1
- package/dist/components/js/qrcode.js +1 -1
- package/dist/components/templates/accordion.template.html +1 -1
- package/dist/components/templates/carousel.template.html +1 -1
- package/dist/components/templates/cron-breadcrumbs.designtime.html +1 -0
- package/dist/components/templates/cron-breadcrumbs.template.html +1 -0
- package/dist/components/templates/cron-ordered-list.template.html +1 -0
- package/dist/components/templates/evaluation.template.html +1 -0
- package/dist/components/templates/tabs.template.html +1 -1
- package/dist/components/templates/text.template.html +1 -0
- package/dist/components/templates/textinputbutton.html +1 -0
- package/dist/css/app.css +1 -1
- package/dist/css/themes/custom/material/components_css/crn-scheduler.css +1 -1
- package/dist/img/cron-icon/cron-breadrumb.svg +1 -0
- package/dist/js/LanguageSelectDirective.js +1 -1
- package/dist/js/LocaleService.js +1 -1
- package/dist/js/app.authentication.js +1 -0
- package/dist/js/app.js +1 -1
- package/dist/js/controllers.authentication.js +1 -0
- package/dist/js/directives.js +1 -1
- package/dist/js/reports/parameters.controller.js +1 -1
- package/img/cron-icon/cron-breadrumb.svg +638 -0
- package/js/app.js +12 -13
- package/js/directives.js +243 -40
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crn-eight-four-container",
|
|
3
|
-
"text_pt_BR": "8/4
|
|
4
|
-
"text_en_US": "8/4
|
|
3
|
+
"text_pt_BR": "2 Colunas (8/4)",
|
|
4
|
+
"text_en_US": "2 Columns (8/4)",
|
|
5
5
|
"image": "/node_modules/cronapp-framework-js/img/cron-icon/crn-eight-four-container.svg",
|
|
6
6
|
"description": "Três recipiente ao lado para inserir componentes",
|
|
7
7
|
"description_en_US": "Three container on the side for inserting components",
|
|
@@ -67,6 +67,14 @@
|
|
|
67
67
|
"order": 5,
|
|
68
68
|
"mandatory": false
|
|
69
69
|
},
|
|
70
|
+
{
|
|
71
|
+
"name": "cron-disabled",
|
|
72
|
+
"selector": "cron-auto-complete",
|
|
73
|
+
"displayName_en_US": "Disabled",
|
|
74
|
+
"displayName_pt_BR": "Desabilitado",
|
|
75
|
+
"type": "logic",
|
|
76
|
+
"order": 6
|
|
77
|
+
},
|
|
70
78
|
{
|
|
71
79
|
"name": "no-results-message",
|
|
72
80
|
"selector": "cron-auto-complete",
|
|
@@ -161,6 +161,13 @@
|
|
|
161
161
|
"name": "combobox-theme",
|
|
162
162
|
"selector": "div.form-group"
|
|
163
163
|
},
|
|
164
|
+
{
|
|
165
|
+
"name": "cron-disabled",
|
|
166
|
+
"selector": "cron-multi-select",
|
|
167
|
+
"displayName_en_US": "Disabled",
|
|
168
|
+
"displayName_pt_BR": "Desabilitado",
|
|
169
|
+
"type": "logic"
|
|
170
|
+
},
|
|
164
171
|
{
|
|
165
172
|
"name": "ng-change",
|
|
166
173
|
"selector": "cron-multi-select",
|
|
@@ -32,6 +32,13 @@
|
|
|
32
32
|
"displayName_en_US": "On Change",
|
|
33
33
|
"type": "event"
|
|
34
34
|
},
|
|
35
|
+
{
|
|
36
|
+
"name": "cron-disabled",
|
|
37
|
+
"selector": "cron-select",
|
|
38
|
+
"displayName_en_US": "Disabled",
|
|
39
|
+
"displayName_pt_BR": "Desabilitado",
|
|
40
|
+
"type": "logic"
|
|
41
|
+
},
|
|
35
42
|
{
|
|
36
43
|
"name": "ng-select",
|
|
37
44
|
"selector": "cron-select",
|
|
@@ -48,33 +48,41 @@
|
|
|
48
48
|
"displayName_pt_BR": "Título",
|
|
49
49
|
"displayName_en_US": "Title",
|
|
50
50
|
"order": 2
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
},
|
|
70
|
-
{
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "auto-expand",
|
|
54
|
+
"selector": "cron-auto-complete",
|
|
55
|
+
"displayName_pt_BR": "Expandir automaticamente",
|
|
56
|
+
"displayName_en_US": "Auto expand",
|
|
57
|
+
"type": "logic",
|
|
58
|
+
"order": 4,
|
|
59
|
+
"mandatory": false
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "first-option-on-blur",
|
|
63
|
+
"selector": "cron-auto-complete",
|
|
64
|
+
"displayName_pt_BR": "Selecionar primeira opção ao sair",
|
|
65
|
+
"displayName_en_US": "Select first option on blur",
|
|
66
|
+
"type": "logic",
|
|
67
|
+
"order": 5,
|
|
68
|
+
"mandatory": false
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "no-results-message",
|
|
72
|
+
"selector": "cron-auto-complete",
|
|
73
|
+
"displayName_pt_BR": "Texto quando não tem resultados",
|
|
74
|
+
"displayName_en_US": "Text when there are no results",
|
|
75
|
+
"type": "text",
|
|
76
|
+
"order": 6,
|
|
77
|
+
"mandatory": false
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "cron-disabled",
|
|
81
|
+
"selector": "cron-auto-complete",
|
|
82
|
+
"displayName_en_US": "Disabled",
|
|
83
|
+
"displayName_pt_BR": "Desabilitado",
|
|
84
|
+
"type": "logic",
|
|
85
|
+
"order": 7
|
|
78
86
|
},
|
|
79
87
|
{
|
|
80
88
|
"name": "ng-select",
|
|
@@ -32,6 +32,13 @@
|
|
|
32
32
|
"displayName_en_US": "Text when there are no results",
|
|
33
33
|
"type": "text"
|
|
34
34
|
},
|
|
35
|
+
{
|
|
36
|
+
"name": "cron-disabled",
|
|
37
|
+
"selector": "cron-dynamic-select",
|
|
38
|
+
"displayName_en_US": "Disabled",
|
|
39
|
+
"displayName_pt_BR": "Desabilitado",
|
|
40
|
+
"type": "logic"
|
|
41
|
+
},
|
|
35
42
|
{
|
|
36
43
|
"name": "ng-change",
|
|
37
44
|
"selector": "cron-dynamic-select",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crn-four-eight-container",
|
|
3
|
-
"text_pt_BR": "4/8
|
|
4
|
-
"text_en_US": "4/8
|
|
3
|
+
"text_pt_BR": "2 Colunas (4/8)",
|
|
4
|
+
"text_en_US": "2 Columns (4/8)",
|
|
5
5
|
"image": "/node_modules/cronapp-framework-js/img/cron-icon/crn-four-eight-container.svg",
|
|
6
6
|
"description": "Três recipiente ao lado para inserir componentes",
|
|
7
7
|
"description_en_US": "Three container on the side for inserting components",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crn-one-container",
|
|
3
|
-
"text_pt_BR": "1 Coluna",
|
|
4
|
-
"text_en_US": "1 Column",
|
|
3
|
+
"text_pt_BR": "1 Coluna (12)",
|
|
4
|
+
"text_en_US": "1 Column (12)",
|
|
5
5
|
"image": "/node_modules/cronapp-framework-js/img/cron-icon/crn-one-container.svg",
|
|
6
6
|
"description": "Um recipiente para inserir componentes",
|
|
7
7
|
"description_en_US": "A container for inserting components",
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
"image": "/node_modules/cronapp-framework-js/img/cron-icon/crn-ordered-sub-list.svg",
|
|
7
7
|
"description": "Sublista de segundo grau com indicadores numerados",
|
|
8
8
|
"description_en_US": "Second degree sublist with numbered indicators",
|
|
9
|
+
"pallete": false,
|
|
9
10
|
"category": [
|
|
10
11
|
"LISTS"
|
|
11
12
|
],
|
|
@@ -38,6 +38,14 @@
|
|
|
38
38
|
"type": "content",
|
|
39
39
|
"order": 2
|
|
40
40
|
},
|
|
41
|
+
{
|
|
42
|
+
"name": "ng-disabled",
|
|
43
|
+
"selector": "input",
|
|
44
|
+
"displayName_en_US": "Disabled",
|
|
45
|
+
"displayName_pt_BR": "Desabilitado",
|
|
46
|
+
"type": "logic",
|
|
47
|
+
"order": 3
|
|
48
|
+
},
|
|
41
49
|
{
|
|
42
50
|
"name": "ng-click",
|
|
43
51
|
"selector": "label[value]",
|
|
@@ -76,6 +76,14 @@
|
|
|
76
76
|
"type": "text",
|
|
77
77
|
"order": 2
|
|
78
78
|
},
|
|
79
|
+
{
|
|
80
|
+
"name": "ng-disabled",
|
|
81
|
+
"selector": "textarea",
|
|
82
|
+
"displayName_en_US": "Disabled",
|
|
83
|
+
"displayName_pt_BR": "Desabilitado",
|
|
84
|
+
"type": "logic",
|
|
85
|
+
"order": 8
|
|
86
|
+
},
|
|
79
87
|
{
|
|
80
88
|
"name": "ng-init",
|
|
81
89
|
"selector": "textarea",
|
|
@@ -52,6 +52,14 @@
|
|
|
52
52
|
"onDisplay": "javascript:function() { return arguments[0].replace('vars.',''); }",
|
|
53
53
|
"mandatory": true
|
|
54
54
|
},
|
|
55
|
+
{
|
|
56
|
+
"name": "ng-disabled",
|
|
57
|
+
"selector": "input",
|
|
58
|
+
"displayName_en_US": "Disabled",
|
|
59
|
+
"displayName_pt_BR": "Desabilitado",
|
|
60
|
+
"type": "logic",
|
|
61
|
+
"order": 4
|
|
62
|
+
},
|
|
55
63
|
{
|
|
56
64
|
"name": "type",
|
|
57
65
|
"selector": "input",
|
|
@@ -77,6 +77,14 @@
|
|
|
77
77
|
"type": "mask",
|
|
78
78
|
"order": 3
|
|
79
79
|
},
|
|
80
|
+
{
|
|
81
|
+
"name": "ng-disabled",
|
|
82
|
+
"selector": "input",
|
|
83
|
+
"displayName_en_US": "Disabled",
|
|
84
|
+
"displayName_pt_BR": "Desabilitado",
|
|
85
|
+
"type": "logic",
|
|
86
|
+
"order": 4
|
|
87
|
+
},
|
|
80
88
|
{
|
|
81
89
|
"name": "ng-required",
|
|
82
90
|
"selector": "input",
|
|
@@ -76,6 +76,14 @@
|
|
|
76
76
|
"type": "mask",
|
|
77
77
|
"order": 3
|
|
78
78
|
},
|
|
79
|
+
{
|
|
80
|
+
"name": "ng-disabled",
|
|
81
|
+
"selector": "input",
|
|
82
|
+
"displayName_en_US": "Disabled",
|
|
83
|
+
"displayName_pt_BR": "Desabilitado",
|
|
84
|
+
"type": "logic",
|
|
85
|
+
"order": 4
|
|
86
|
+
},
|
|
79
87
|
{
|
|
80
88
|
"name": "ng-required",
|
|
81
89
|
"selector": "input",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crn-three-container",
|
|
3
|
-
"text_pt_BR": "3 Colunas",
|
|
4
|
-
"text_en_US": "3 Columns",
|
|
3
|
+
"text_pt_BR": "3 Colunas (4/4/4)",
|
|
4
|
+
"text_en_US": "3 Columns (4/4/4)",
|
|
5
5
|
"image": "/node_modules/cronapp-framework-js/img/cron-icon/crn-three-container.svg",
|
|
6
6
|
"description": "Três recipiente ao lado para inserir componentes",
|
|
7
7
|
"description_en_US": "Three container on the side for inserting components",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crn-three-six-three-container",
|
|
3
|
-
"text_pt_BR": "3/6/3
|
|
4
|
-
"text_en_US": "3/6/3
|
|
3
|
+
"text_pt_BR": "3 Colunas (3/6/3)",
|
|
4
|
+
"text_en_US": "3 Columns (3/6/3)",
|
|
5
5
|
"image": "/node_modules/cronapp-framework-js/img/cron-icon/crn-three-six-three-container.svg",
|
|
6
6
|
"description": "Três recipiente ao lado para inserir componentes",
|
|
7
7
|
"description_en_US": "Three container on the side for inserting components",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crn-two-container",
|
|
3
|
-
"text_pt_BR": "2 Colunas",
|
|
4
|
-
"text_en_US": "2 Columns",
|
|
3
|
+
"text_pt_BR": "2 Colunas (6/6)",
|
|
4
|
+
"text_en_US": "2 Columns (6/6)",
|
|
5
5
|
"image": "/node_modules/cronapp-framework-js/img/cron-icon/crn-two-container.svg",
|
|
6
6
|
"description": "Dois recipiente ao lado para inserir componentes",
|
|
7
7
|
"description_en_US": "Two container on the side for inserting components",
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
"image": "/node_modules/cronapp-framework-js/img/cron-icon/crn-unordered-sub-list.svg",
|
|
6
6
|
"description": "Sublista de segundo grau com indicadores redondos",
|
|
7
7
|
"description_en_US": "Second degree sublist with round indicators",
|
|
8
|
+
"pallete": false,
|
|
8
9
|
"category": [
|
|
9
10
|
"LISTS"
|
|
10
11
|
],
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cron-breadcrumbs",
|
|
3
|
+
"text_pt_BR": "Breadcrumbs",
|
|
4
|
+
"text_en_US": "Breadcrumbs",
|
|
5
|
+
"image": "/node_modules/cronapp-framework-js/img/cron-icon/cron-breadrumb.svg",
|
|
6
|
+
"description": "Breadcrumb",
|
|
7
|
+
"description_en_US": "Breadcrumb",
|
|
8
|
+
"category": [
|
|
9
|
+
"LAYOUTS", "COMBOS"
|
|
10
|
+
],
|
|
11
|
+
"templateURL": "src/main/webapp/node_modules/cronapp-framework-js/dist/components/templates/cron-breadcrumbs.template.html",
|
|
12
|
+
"designTimeHTMLURL": "src/main/webapp/node_modules/cronapp-framework-js/dist/components/templates/cron-breadcrumbs.designtime.html",
|
|
13
|
+
"designTimeSelector": ":self",
|
|
14
|
+
"designTimeDynamic": true,
|
|
15
|
+
"wrapper": false,
|
|
16
|
+
"forcedGroup": true,
|
|
17
|
+
"properties": {
|
|
18
|
+
"class": {
|
|
19
|
+
"order": 9999
|
|
20
|
+
},
|
|
21
|
+
"id": {
|
|
22
|
+
"order": 1
|
|
23
|
+
},
|
|
24
|
+
"crn-delimiter-icon": {
|
|
25
|
+
"displayName_pt_BR": "Ícone delimitador",
|
|
26
|
+
"displayName_en_US": "Delimiter icon"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"attributesForPreview": [
|
|
30
|
+
{
|
|
31
|
+
"name": "crn-delimiter-icon",
|
|
32
|
+
"type": "options",
|
|
33
|
+
"target": "class",
|
|
34
|
+
"values": [
|
|
35
|
+
{
|
|
36
|
+
"key": "arrow-chevron-right",
|
|
37
|
+
"value_pt_BR": "Seta",
|
|
38
|
+
"value_en_US": "Arrow"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"key": "line",
|
|
42
|
+
"value_pt_BR": "Linha",
|
|
43
|
+
"value_en_US": "Line"
|
|
44
|
+
}
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
"childrenProperties": [
|
|
49
|
+
{
|
|
50
|
+
"name": "id-menu",
|
|
51
|
+
"selector": "cron-breadcrumbs",
|
|
52
|
+
"displayName_pt_BR": "Identificador do menu",
|
|
53
|
+
"displayName_en_US": "Menu id",
|
|
54
|
+
"type": "componentsList",
|
|
55
|
+
"component": "crn-dynamic-menu",
|
|
56
|
+
"mandatory": true
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "crn-delimiter-icon",
|
|
60
|
+
"selector": "cron-breadcrumbs",
|
|
61
|
+
"mandatory": true
|
|
62
|
+
}
|
|
63
|
+
]
|
|
64
|
+
}
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cron-ordered-list",
|
|
3
|
+
"text_pt_BR": "Lista ordenada",
|
|
4
|
+
"text_en_US": "Ordered list",
|
|
5
|
+
"image": "/node_modules/cronapp-framework-js/img/cron-icon/crn-ordered-list.svg",
|
|
6
|
+
"description": "Lista em tópicos com indicadores numerados",
|
|
7
|
+
"description_en_US": "List on topics with numbered indicators",
|
|
8
|
+
"category": [
|
|
9
|
+
"LISTS"
|
|
10
|
+
],
|
|
11
|
+
"templateURL": "src/main/webapp/node_modules/cronapp-framework-js/components/templates/cron-ordered-list.template.html",
|
|
12
|
+
"wrapper": false,
|
|
13
|
+
"forcedGroup": true,
|
|
14
|
+
"properties": {
|
|
15
|
+
"class": {
|
|
16
|
+
"order": 9999
|
|
17
|
+
},
|
|
18
|
+
"id": {
|
|
19
|
+
"order": 1
|
|
20
|
+
},
|
|
21
|
+
"attribute-value": {
|
|
22
|
+
"displayName_pt_BR": "Valor do atributo numerado",
|
|
23
|
+
"displayName_en_US": "Numbered attribute value"
|
|
24
|
+
},
|
|
25
|
+
"list-type": {
|
|
26
|
+
"displayName_pt_BR": "Tipo de lista",
|
|
27
|
+
"displayName_en_US": "List type"
|
|
28
|
+
},
|
|
29
|
+
"ordered-attribute-value": {
|
|
30
|
+
"displayName_pt_BR": "Valor do atributo ordenado",
|
|
31
|
+
"displayName_en_US": "Ordered attribute value"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"handleRules": {
|
|
35
|
+
"canOrder": true,
|
|
36
|
+
"canActivate": true,
|
|
37
|
+
"canIncrement": true,
|
|
38
|
+
"rules": [
|
|
39
|
+
{
|
|
40
|
+
"activeSelector": "cron-ordered-list ul li.active",
|
|
41
|
+
"activeClass": "active",
|
|
42
|
+
"sourceHTML": "<li class=\"item-list\" data-component=\"crn-list-item\" data-replace=\"true\">New item</li>",
|
|
43
|
+
"targetSelector": "ul"
|
|
44
|
+
}
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
"attributesForPreview": [
|
|
48
|
+
{
|
|
49
|
+
"name": "attribute-value",
|
|
50
|
+
"type": "options",
|
|
51
|
+
"target": "attribute-value",
|
|
52
|
+
"values": [
|
|
53
|
+
{
|
|
54
|
+
"key": "decimal",
|
|
55
|
+
"value_pt_BR": "Numeração (1,2,3..)",
|
|
56
|
+
"value_en_US": "Numbering (1,2,3..)"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"key": "lower-alpha",
|
|
60
|
+
"value_pt_BR": "Letra minúscula (a, b, c..)",
|
|
61
|
+
"value_en_US": "Lower case (a, b, c..)"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"key": "upper-alpha",
|
|
65
|
+
"value_pt_BR": "Letra maiúscula (A, B, C..)",
|
|
66
|
+
"value_en_US": "Capital letter (A, B, C..)"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"key": "lower-roman",
|
|
70
|
+
"value_pt_BR": "Números romanos (I, II, III..)",
|
|
71
|
+
"value_en_US": "Roman numbers"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"key": "upper-roman",
|
|
75
|
+
"value_pt_BR": "Números romanos minúsculo (i, ii, iii..)",
|
|
76
|
+
"value_en_US": "Lowercase roman numbers (i, ii, iii..)"
|
|
77
|
+
}
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"name": "ordered-attribute-value",
|
|
82
|
+
"type": "options",
|
|
83
|
+
"target": "ordered-attribute-value",
|
|
84
|
+
"values": [
|
|
85
|
+
{
|
|
86
|
+
"key": "circle",
|
|
87
|
+
"value_pt_BR": "Círculo vazio",
|
|
88
|
+
"value_en_US": "Circle",
|
|
89
|
+
"icon": "mdi mdi-checkbox-blank-circle-outline"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"key": "disc",
|
|
93
|
+
"value_pt_BR": "Círculo preenchido",
|
|
94
|
+
"value_en_US": "Disc",
|
|
95
|
+
"icon": "mdi mdi-checkbox-blank-circle"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"key": "square",
|
|
99
|
+
"value_pt_BR": "Quadrado",
|
|
100
|
+
"value_en_US": "Square",
|
|
101
|
+
"icon": "mdi mdi-checkbox-blank"
|
|
102
|
+
}
|
|
103
|
+
]
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "list-type",
|
|
107
|
+
"type": "options",
|
|
108
|
+
"target": "class",
|
|
109
|
+
"values": [
|
|
110
|
+
{
|
|
111
|
+
"key": "numbered-list",
|
|
112
|
+
"value_pt_BR": "lista numerada",
|
|
113
|
+
"value_en_US": "Numbered list"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"key": "ordered-list",
|
|
117
|
+
"value_pt_BR": "lista ordenada",
|
|
118
|
+
"value_en_US": "Ordered list"
|
|
119
|
+
}
|
|
120
|
+
]
|
|
121
|
+
}
|
|
122
|
+
],
|
|
123
|
+
"childrenProperties": [
|
|
124
|
+
{
|
|
125
|
+
"name": "attribute-value",
|
|
126
|
+
"selector": "cron-ordered-list.numbered-list",
|
|
127
|
+
"order": 3
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "ordered-attribute-value",
|
|
131
|
+
"selector": "cron-ordered-list.ordered-list",
|
|
132
|
+
"order": 3
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"name": "list-type",
|
|
136
|
+
"selector": "cron-ordered-list",
|
|
137
|
+
"order": 2
|
|
138
|
+
}
|
|
139
|
+
],
|
|
140
|
+
"styles": [
|
|
141
|
+
{
|
|
142
|
+
"selector": "cron-ordered-list#{id} ul, cron-ordered-list#{id} ol",
|
|
143
|
+
"text_pt_BR": "Plano de fundo",
|
|
144
|
+
"text_en_US": "Background"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"selector": "cron-ordered-list#{id} li",
|
|
148
|
+
"text_pt_BR": "Item da lista",
|
|
149
|
+
"text_en_US": "List item"
|
|
150
|
+
}
|
|
151
|
+
]
|
|
152
|
+
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
|
|
2
2
|
<div class="panel panel-default">
|
|
3
|
-
<div class="panel-heading" role="tab" id="headingOne" data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
|
|
3
|
+
<div class="panel-heading" role="tab" id="headingOne" data-toggle="collapse" data-parent="#accordion" href="#collapseOne-${RANDOM}" aria-expanded="true" aria-controls="collapseOne-${RANDOM}">
|
|
4
4
|
<div class="lead text-center" data-component="crn-title" xattr-position="text-center">
|
|
5
5
|
<h1 class="text-center title component-holder h3" xattr-position="h1 text-center" xattr-type="h3" data-component="crn-text-component">Ungroup and change the component</h1>
|
|
6
6
|
</div>
|
|
7
7
|
</div>
|
|
8
|
-
<div id="collapseOne" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
|
|
8
|
+
<div id="collapseOne-${RANDOM}" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
|
|
9
9
|
<div class="panel-body" data-container="true">
|
|
10
10
|
<div class="lead text-center" data-component="crn-subtitle" xattr-position="text-center">
|
|
11
11
|
<h1 class="text-center title component-holder h3" xattr-position="h3 text-center" xattr-type="h3" data-component="crn-text-component">Ungroup and insert component</h1>
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
</div>
|
|
15
15
|
</div>
|
|
16
16
|
<div class="panel panel-default">
|
|
17
|
-
<div class="panel-heading" role="tab" id="headingTwo" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
|
|
17
|
+
<div class="panel-heading" role="tab" id="headingTwo" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo-${RANDOM}" aria-expanded="false" aria-controls="collapseTwo-${RANDOM}">
|
|
18
18
|
<div class="lead text-center" data-component="crn-title" xattr-position="text-center">
|
|
19
19
|
<h1 class="text-center title component-holder h3" xattr-position="h1 text-center" xattr-type="h3" data-component="crn-text-component">Ungroup and change the component</h1>
|
|
20
20
|
</div>
|
|
21
21
|
</div>
|
|
22
|
-
<div id="collapseTwo" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwo">
|
|
22
|
+
<div id="collapseTwo-${RANDOM}" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwo">
|
|
23
23
|
<div class="panel-body" data-container="true">
|
|
24
24
|
<div class="lead text-center" data-component="crn-subtitle" xattr-position="text-center">
|
|
25
25
|
<h1 class="text-center title component-holder h3" xattr-position="h3 text-center" xattr-type="h3" data-component="crn-text-component">Ungroup and insert component</h1>
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
</div>
|
|
29
29
|
</div>
|
|
30
30
|
<div class="panel panel-default">
|
|
31
|
-
<div class="panel-heading" role="tab" id="headingThree" data-toggle="collapse" data-parent="#accordion" href="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
|
|
31
|
+
<div class="panel-heading" role="tab" id="headingThree" data-toggle="collapse" data-parent="#accordion" href="#collapseThree-${RANDOM}" aria-expanded="false" aria-controls="collapseThree-${RANDOM}">
|
|
32
32
|
<div class="lead text-center" data-component="crn-title" xattr-position="text-center">
|
|
33
33
|
<h1 class="text-center title component-holder h3" xattr-position="h1 text-center" xattr-type="h3" data-component="crn-text-component">Ungroup and change the component</h1>
|
|
34
34
|
</div>
|
|
35
35
|
</div>
|
|
36
|
-
<div id="collapseThree" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree">
|
|
36
|
+
<div id="collapseThree-${RANDOM}" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree">
|
|
37
37
|
<div class="panel-body" data-container="true">
|
|
38
38
|
<div class="lead text-center" data-component="crn-subtitle" xattr-position="text-center">
|
|
39
39
|
<h1 class="text-center title component-holder h3" xattr-position="h3 text-center" xattr-type="h3" data-component="crn-text-component">Ungroup and insert component</h1>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<div class="carousel slide" data-ride="carousel">
|
|
1
|
+
<div class="carousel slide" data-ride="carousel" id="carousel-${RANDOM}">
|
|
2
2
|
<div class="carousel-inner" role="listbox">
|
|
3
3
|
<div class="item active" data-component="crn-carousel-item" id="crn-carousel-item-1">
|
|
4
4
|
<img data-component="crn-image" alt="First Slide" style="margin: 0 auto; object-fit: cover;" xattr-position=""
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
</ol>
|
|
35
35
|
|
|
36
36
|
|
|
37
|
-
<a style="width: 100px;" href="#carousel
|
|
37
|
+
<a style="width: 100px;" href="#carousel-${RANDOM}" class="left carousel-control" role="button" data-slide="prev">
|
|
38
38
|
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
|
|
39
39
|
<span class="sr-only">Previous</span>
|
|
40
40
|
</a>
|
|
41
41
|
|
|
42
42
|
|
|
43
|
-
<a href="#carousel
|
|
43
|
+
<a href="#carousel-${RANDOM}" class="right carousel-control" role="button" data-slide="next">
|
|
44
44
|
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
|
|
45
45
|
<span class="sr-only">Next</span>
|
|
46
46
|
</a>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<div id="cron-breadcrumbs" >
|
|
2
|
+
<ol class="k-breadcrumb-container">
|
|
3
|
+
<li class="k-breadcrumb-item k-breadcrumb-root-item ">
|
|
4
|
+
<a class=" k-breadcrumb-root-link k-breadcrumb-icontext-link" title="Home">Home</a>
|
|
5
|
+
<span class="k-breadcrumb-delimiter-icon k-icon k-i-arrow-chevron-right" aria-hidden="true"></span>
|
|
6
|
+
</li>
|
|
7
|
+
<li class="k-breadcrumb-item k-breadcrumb-last-item">
|
|
8
|
+
<a class="k-breadcrumb-link k-state-disabled" title="user">User</a>
|
|
9
|
+
</li>
|
|
10
|
+
</ol>
|
|
11
|
+
</div>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<cron-ordered-list list-type="ordered-list" attribute-value="decimal" ordered-attribute-value="disc">
|
|
2
|
+
<ul>
|
|
3
|
+
<li data-component="crn-list-item" data-replace="true">Item 1</li>
|
|
4
|
+
<li data-component="crn-list-item" data-replace="true">Item 2</li>
|
|
5
|
+
<li data-component="crn-list-item" data-replace="true">Item 3</li>
|
|
6
|
+
</ul>
|
|
7
|
+
</cron-ordered-list>
|