@projectcaluma/ember-form-builder 11.0.0-beta.2 → 11.0.0-beta.24
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/CHANGELOG.md +154 -0
- package/addon/components/cfb-code-editor.hbs +2 -1
- package/addon/components/cfb-code-editor.js +59 -11
- package/addon/components/cfb-form-editor/general.hbs +2 -4
- package/addon/components/cfb-form-editor/general.js +7 -9
- package/addon/components/cfb-form-editor/question/options.hbs +1 -1
- package/addon/components/cfb-form-editor/question/validation.hbs +2 -2
- package/addon/components/cfb-form-editor/question/validation.js +17 -13
- package/addon/components/cfb-form-editor/question-list/item.hbs +4 -4
- package/addon/components/cfb-form-editor/question-list/item.js +2 -2
- package/addon/components/cfb-form-editor/question-list.hbs +6 -6
- package/addon/components/cfb-form-editor/question-list.js +12 -7
- package/addon/components/cfb-form-editor/question.hbs +29 -15
- package/addon/components/cfb-form-editor/question.js +50 -24
- package/addon/components/cfb-form-editor.hbs +5 -5
- package/addon/components/cfb-form-list/item.hbs +1 -1
- package/addon/components/cfb-form-list.hbs +9 -9
- package/addon/components/cfb-form-list.js +44 -11
- package/addon/components/cfb-toggle-switch.hbs +1 -1
- package/addon/controllers/index.js +6 -0
- package/addon/engine.js +1 -1
- package/addon/gql/fragments/field.graphql +14 -2
- package/addon/gql/mutations/add-form-question.graphql +1 -1
- package/addon/gql/mutations/remove-form-question.graphql +1 -1
- package/addon/gql/mutations/reorder-form-questions.graphql +1 -1
- package/addon/gql/mutations/save-calculated-float-question.graphql +1 -0
- package/addon/gql/mutations/save-choice-question.graphql +1 -0
- package/addon/gql/mutations/save-date-question.graphql +3 -0
- package/addon/gql/mutations/save-dynamic-choice-question.graphql +1 -0
- package/addon/gql/mutations/save-dynamic-multiple-choice-question.graphql +1 -0
- package/addon/gql/mutations/save-files-question.graphql +14 -0
- package/addon/gql/mutations/save-float-question.graphql +1 -0
- package/addon/gql/mutations/save-integer-question.graphql +1 -0
- package/addon/gql/mutations/save-multiple-choice-question.graphql +1 -0
- package/addon/gql/mutations/save-table-question.graphql +1 -0
- package/addon/gql/mutations/save-text-question.graphql +1 -0
- package/addon/gql/mutations/save-textarea-question.graphql +1 -0
- package/addon/gql/queries/all-format-validators.graphql +10 -0
- package/addon/gql/queries/check-form-slug.graphql +1 -1
- package/addon/gql/queries/check-question-slug.graphql +1 -1
- package/addon/gql/queries/form-editor-general.graphql +1 -1
- package/addon/gql/queries/form-editor-question.graphql +29 -1
- package/addon/gql/queries/search-form-question.graphql +3 -3
- package/addon/instance-initializers/form-builder-widget-overrides.js +15 -0
- package/addon/modifiers/pikaday.js +2 -0
- package/addon/routes/edit/questions/edit.js +2 -1
- package/addon/routes/edit.js +1 -1
- package/addon/templates/edit/questions/edit.hbs +1 -1
- package/addon/templates/edit/questions/new.hbs +1 -4
- package/addon/templates/edit.hbs +5 -5
- package/addon/templates/index.hbs +8 -1
- package/addon/templates/new.hbs +1 -1
- package/addon/validations/question.js +6 -0
- package/app/instance-initializers/form-builder-widget-overrides.js +4 -0
- package/app/styles/@projectcaluma/ember-form-builder.scss +2 -2
- package/app/styles/_cfb-uikit-powerselect.scss +2 -0
- package/index.js +0 -6
- package/package.json +45 -34
- package/translations/de.yaml +7 -6
- package/translations/en.yaml +4 -3
- package/translations/fr.yaml +154 -1
- package/addon/gql/mutations/save-file-question.graphql +0 -11
- package/app/styles/_cfb-powerselect.scss +0 -31
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
#import FieldQuestion, FieldTableQuestion, SimpleAnswer, SimpleQuestion from '../fragments/field.graphql'
|
|
3
3
|
|
|
4
4
|
query FormEditorQuestion($slug: String!) {
|
|
5
|
-
allQuestions(filter: [{
|
|
5
|
+
allQuestions(filter: [{ slugs: [$slug] }]) {
|
|
6
6
|
edges {
|
|
7
7
|
node {
|
|
8
8
|
id
|
|
@@ -11,6 +11,7 @@ query FormEditorQuestion($slug: String!) {
|
|
|
11
11
|
integerMaxValue: maxValue
|
|
12
12
|
integerMinValue: minValue
|
|
13
13
|
placeholder
|
|
14
|
+
hintText
|
|
14
15
|
defaultAnswer {
|
|
15
16
|
id
|
|
16
17
|
integerValue: value
|
|
@@ -20,6 +21,7 @@ query FormEditorQuestion($slug: String!) {
|
|
|
20
21
|
floatMaxValue: maxValue
|
|
21
22
|
floatMinValue: minValue
|
|
22
23
|
placeholder
|
|
24
|
+
hintText
|
|
23
25
|
defaultAnswer {
|
|
24
26
|
id
|
|
25
27
|
floatValue: value
|
|
@@ -29,21 +31,38 @@ query FormEditorQuestion($slug: String!) {
|
|
|
29
31
|
minLength
|
|
30
32
|
maxLength
|
|
31
33
|
placeholder
|
|
34
|
+
hintText
|
|
32
35
|
defaultAnswer {
|
|
33
36
|
id
|
|
34
37
|
stringValue: value
|
|
35
38
|
}
|
|
39
|
+
formatValidators {
|
|
40
|
+
edges {
|
|
41
|
+
node {
|
|
42
|
+
slug
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
36
46
|
}
|
|
37
47
|
... on TextareaQuestion {
|
|
38
48
|
minLength
|
|
39
49
|
maxLength
|
|
40
50
|
placeholder
|
|
51
|
+
formatValidators {
|
|
52
|
+
edges {
|
|
53
|
+
node {
|
|
54
|
+
slug
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
hintText
|
|
41
59
|
defaultAnswer {
|
|
42
60
|
id
|
|
43
61
|
stringValue: value
|
|
44
62
|
}
|
|
45
63
|
}
|
|
46
64
|
... on DateQuestion {
|
|
65
|
+
hintText
|
|
47
66
|
defaultAnswer {
|
|
48
67
|
id
|
|
49
68
|
dateValue: value
|
|
@@ -60,6 +79,7 @@ query FormEditorQuestion($slug: String!) {
|
|
|
60
79
|
}
|
|
61
80
|
}
|
|
62
81
|
}
|
|
82
|
+
hintText
|
|
63
83
|
defaultAnswer {
|
|
64
84
|
id
|
|
65
85
|
listValue: value
|
|
@@ -76,6 +96,7 @@ query FormEditorQuestion($slug: String!) {
|
|
|
76
96
|
}
|
|
77
97
|
}
|
|
78
98
|
}
|
|
99
|
+
hintText
|
|
79
100
|
defaultAnswer {
|
|
80
101
|
id
|
|
81
102
|
stringValue: value
|
|
@@ -83,9 +104,11 @@ query FormEditorQuestion($slug: String!) {
|
|
|
83
104
|
}
|
|
84
105
|
... on DynamicMultipleChoiceQuestion {
|
|
85
106
|
dataSource
|
|
107
|
+
hintText
|
|
86
108
|
}
|
|
87
109
|
... on DynamicChoiceQuestion {
|
|
88
110
|
dataSource
|
|
111
|
+
hintText
|
|
89
112
|
}
|
|
90
113
|
... on TableQuestion {
|
|
91
114
|
rowForm {
|
|
@@ -101,6 +124,7 @@ query FormEditorQuestion($slug: String!) {
|
|
|
101
124
|
}
|
|
102
125
|
}
|
|
103
126
|
}
|
|
127
|
+
hintText
|
|
104
128
|
defaultAnswer {
|
|
105
129
|
id
|
|
106
130
|
tableValue: value {
|
|
@@ -137,6 +161,10 @@ query FormEditorQuestion($slug: String!) {
|
|
|
137
161
|
}
|
|
138
162
|
... on CalculatedFloatQuestion {
|
|
139
163
|
calcExpression
|
|
164
|
+
hintText
|
|
165
|
+
}
|
|
166
|
+
... on FilesQuestion {
|
|
167
|
+
hintText
|
|
140
168
|
}
|
|
141
169
|
... on ActionButtonQuestion {
|
|
142
170
|
action
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
#import QuestionInfo from '../fragments/question-info.graphql'
|
|
2
2
|
|
|
3
|
-
query SearchFormQuestion($slug: String!, $search: String
|
|
4
|
-
allForms(filter: [{
|
|
3
|
+
query SearchFormQuestion($slug: String!, $search: String) {
|
|
4
|
+
allForms(filter: [{ slugs: [$slug] }]) {
|
|
5
5
|
edges {
|
|
6
6
|
node {
|
|
7
7
|
id
|
|
8
8
|
slug
|
|
9
|
-
questions(search: $search
|
|
9
|
+
questions(filter: [{ search: $search }]) {
|
|
10
10
|
edges {
|
|
11
11
|
node {
|
|
12
12
|
id
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import DefaultTableComponent from "@projectcaluma/ember-form-builder/components/cfb-form-editor/question/default/table";
|
|
2
|
+
|
|
3
|
+
export function initialize(appInstance) {
|
|
4
|
+
const options = appInstance.lookup("service:caluma-options");
|
|
5
|
+
|
|
6
|
+
options.registerComponentOverride({
|
|
7
|
+
component: "cfb-form-editor/question/default/table",
|
|
8
|
+
componentClass: DefaultTableComponent,
|
|
9
|
+
types: [],
|
|
10
|
+
});
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export default {
|
|
14
|
+
initialize,
|
|
15
|
+
};
|
package/addon/routes/edit.js
CHANGED
package/addon/templates/edit.hbs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<CfbFormEditor
|
|
2
2
|
@slug={{@model}}
|
|
3
|
-
@
|
|
4
|
-
@
|
|
5
|
-
@
|
|
6
|
-
@
|
|
7
|
-
@
|
|
3
|
+
@onEditQuestion={{this.editQuestion}}
|
|
4
|
+
@onCreateQuestion={{this.createQuestion}}
|
|
5
|
+
@onAfterAddQuestion={{this.editQuestion}}
|
|
6
|
+
@onAfterRemoveQuestion={{this.afterRemoveQuestion}}
|
|
7
|
+
@onClickForm={{this.clickForm}}
|
|
8
8
|
>
|
|
9
9
|
{{outlet}}
|
|
10
10
|
</CfbFormEditor>
|
|
@@ -1 +1,8 @@
|
|
|
1
|
-
<CfbFormList
|
|
1
|
+
<CfbFormList
|
|
2
|
+
@search={{this.search}}
|
|
3
|
+
@category={{this.category}}
|
|
4
|
+
@onNewForm={{this.newForm}}
|
|
5
|
+
@onEditForm={{this.editForm}}
|
|
6
|
+
@onUpdateSearch={{fn (mut this.search)}}
|
|
7
|
+
@onUpdateCategory={{fn (mut this.category)}}
|
|
8
|
+
/>
|
package/addon/templates/new.hbs
CHANGED
|
@@ -16,6 +16,12 @@ export default {
|
|
|
16
16
|
label: and(validatePresence(true), validateLength({ max: 1024 })),
|
|
17
17
|
slug: validateSlug(),
|
|
18
18
|
|
|
19
|
+
hintText: or(
|
|
20
|
+
validateType("FormQuestion", true),
|
|
21
|
+
validateType("StaticQuestion", true),
|
|
22
|
+
validateType("FilesQuestion", true),
|
|
23
|
+
validateLength({ max: 1024, allowBlank: true })
|
|
24
|
+
),
|
|
19
25
|
integerMinValue: or(
|
|
20
26
|
validateType("IntegerQuestion", false),
|
|
21
27
|
and(
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
@import "../cfb-form-editor/question-list/item";
|
|
4
4
|
@import "../cfb-form-editor/question";
|
|
5
5
|
@import "../cfb-navigation";
|
|
6
|
-
@import "../cfb-powerselect";
|
|
6
|
+
@import "../cfb-uikit-powerselect";
|
|
7
7
|
|
|
8
8
|
.cfb-pointer {
|
|
9
9
|
cursor: pointer;
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
.cfb-code-editor {
|
|
23
23
|
font-family: $base-code-font-family;
|
|
24
24
|
letter-spacing: normal;
|
|
25
|
-
height: 70px;
|
|
25
|
+
min-height: 70px;
|
|
26
26
|
line-height: 16px;
|
|
27
27
|
tab-size: 4;
|
|
28
28
|
}
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@projectcaluma/ember-form-builder",
|
|
3
|
-
"version": "11.0.0-beta.
|
|
3
|
+
"version": "11.0.0-beta.24",
|
|
4
4
|
"description": "Ember engine for building Caluma forms.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon",
|
|
@@ -18,65 +18,76 @@
|
|
|
18
18
|
"ember-engines": ">= 0.8"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@ember/render-modifiers": "^2.0.
|
|
22
|
-
"@
|
|
23
|
-
"@
|
|
24
|
-
"@
|
|
25
|
-
"@
|
|
26
|
-
"
|
|
27
|
-
"ember-
|
|
28
|
-
"
|
|
29
|
-
"ember-
|
|
30
|
-
"ember-
|
|
21
|
+
"@ember/render-modifiers": "^2.0.4",
|
|
22
|
+
"@ember/string": "^3.0.0",
|
|
23
|
+
"@embroider/macros": "^1.8.3",
|
|
24
|
+
"@glimmer/component": "^1.1.2",
|
|
25
|
+
"@glimmer/tracking": "^1.1.2",
|
|
26
|
+
"@projectcaluma/ember-core": "^11.0.0-beta.24",
|
|
27
|
+
"@projectcaluma/ember-form": "^11.0.0-beta.24",
|
|
28
|
+
"codejar": "^3.6.0",
|
|
29
|
+
"ember-apollo-client": "~4.0.2",
|
|
30
|
+
"ember-auto-import": "^2.4.2",
|
|
31
|
+
"ember-changeset": "^4.1.0",
|
|
32
|
+
"ember-changeset-validations": "^4.1.0",
|
|
31
33
|
"ember-cli-babel": "^7.26.11",
|
|
32
|
-
"ember-cli-htmlbars": "^6.0
|
|
34
|
+
"ember-cli-htmlbars": "^6.1.0",
|
|
33
35
|
"ember-composable-helpers": "^5.0.0",
|
|
34
|
-
"ember-concurrency": "^2.2
|
|
36
|
+
"ember-concurrency": "^2.3.2",
|
|
35
37
|
"ember-engines-router-service": "^0.3.0",
|
|
36
|
-
"ember-fetch": "^8.1.
|
|
37
|
-
"ember-
|
|
38
|
-
"ember-
|
|
39
|
-
"ember-
|
|
40
|
-
"ember-
|
|
38
|
+
"ember-fetch": "^8.1.2",
|
|
39
|
+
"ember-intl": "^5.7.2",
|
|
40
|
+
"ember-math-helpers": "^2.18.2",
|
|
41
|
+
"ember-pikaday": "^4.0.0",
|
|
42
|
+
"ember-power-select": "^6.0.1",
|
|
43
|
+
"ember-resources": "^5.2.1",
|
|
41
44
|
"ember-test-selectors": "^6.0.0",
|
|
42
|
-
"ember-uikit": "^
|
|
43
|
-
"ember-validated-form": "^5.
|
|
45
|
+
"ember-uikit": "^5.1.3",
|
|
46
|
+
"ember-validated-form": "^5.3.0",
|
|
44
47
|
"graphql": "^15.8.0",
|
|
45
48
|
"graphql-tag": "^2.12.6",
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
+
"highlight.js": "^11.6.0",
|
|
50
|
+
"highlightjs-jexl": "^0.0.5",
|
|
51
|
+
"jexl": "^2.3.0"
|
|
49
52
|
},
|
|
53
|
+
"//": [
|
|
54
|
+
"TODO: remove obsolete dependency to `ember-data` which is only necessary",
|
|
55
|
+
"because @embroider/macros `dependencySatisfies` still resolves to `true`",
|
|
56
|
+
"even if the dependency is only present in the workspace (because of the",
|
|
57
|
+
"docs app) but not as direct dependency of the package."
|
|
58
|
+
],
|
|
50
59
|
"devDependencies": {
|
|
51
60
|
"@ember/optional-features": "2.0.0",
|
|
52
|
-
"@ember/test-helpers": "2.
|
|
53
|
-
"@embroider/test-setup": "
|
|
54
|
-
"@faker-js/faker": "
|
|
55
|
-
"@projectcaluma/ember-testing": "
|
|
61
|
+
"@ember/test-helpers": "2.8.1",
|
|
62
|
+
"@embroider/test-setup": "1.8.3",
|
|
63
|
+
"@faker-js/faker": "7.4.0",
|
|
64
|
+
"@projectcaluma/ember-testing": "11.0.0-beta.24",
|
|
56
65
|
"broccoli-asset-rev": "3.0.0",
|
|
66
|
+
"ember-autoresize-modifier": "^0.5.0",
|
|
57
67
|
"ember-cli": "3.28.5",
|
|
58
68
|
"ember-cli-code-coverage": "1.0.3",
|
|
59
|
-
"ember-cli-dependency-checker": "3.
|
|
69
|
+
"ember-cli-dependency-checker": "3.3.1",
|
|
60
70
|
"ember-cli-inject-live-reload": "2.1.0",
|
|
61
|
-
"ember-cli-mirage": "
|
|
71
|
+
"ember-cli-mirage": "3.0.0-alpha.3",
|
|
62
72
|
"ember-cli-sri": "2.1.1",
|
|
63
73
|
"ember-cli-terser": "4.0.2",
|
|
74
|
+
"ember-data": "3.28.10",
|
|
64
75
|
"ember-disable-prototype-extensions": "1.1.3",
|
|
65
|
-
"ember-engines": "0.8.
|
|
76
|
+
"ember-engines": "0.8.23",
|
|
66
77
|
"ember-export-application-global": "2.0.1",
|
|
67
78
|
"ember-load-initializers": "2.1.2",
|
|
68
79
|
"ember-maybe-import-regenerator": "1.0.0",
|
|
69
80
|
"ember-qunit": "5.1.5",
|
|
70
81
|
"ember-resolver": "8.0.3",
|
|
71
|
-
"ember-source": "3.28.
|
|
82
|
+
"ember-source": "3.28.9",
|
|
72
83
|
"ember-source-channel-url": "3.0.0",
|
|
73
84
|
"ember-try": "2.0.0",
|
|
74
85
|
"loader.js": "4.7.0",
|
|
75
|
-
"miragejs": "0.1.
|
|
86
|
+
"miragejs": "0.1.45",
|
|
76
87
|
"npm-run-all": "4.1.5",
|
|
77
|
-
"qunit": "2.
|
|
88
|
+
"qunit": "2.19.1",
|
|
78
89
|
"qunit-dom": "2.0.0",
|
|
79
|
-
"webpack": "5.
|
|
90
|
+
"webpack": "5.74.0"
|
|
80
91
|
},
|
|
81
92
|
"engines": {
|
|
82
93
|
"node": "12.* || 14.* || >= 16"
|
package/translations/de.yaml
CHANGED
|
@@ -10,7 +10,7 @@ caluma:
|
|
|
10
10
|
empty-search: "Keine Resultate gefunden. Passen Sie Ihre Suche an um bessere Resultate zu erhalten."
|
|
11
11
|
|
|
12
12
|
not-found:
|
|
13
|
-
title: "
|
|
13
|
+
title: "Sie sehen verloren aus"
|
|
14
14
|
subtitle: "Die angefrage Seite existiert nicht!"
|
|
15
15
|
home: "Zurück zum Start"
|
|
16
16
|
|
|
@@ -21,14 +21,13 @@ caluma:
|
|
|
21
21
|
isArchived: "Archiviert"
|
|
22
22
|
widgetOverride: "Spezialelement"
|
|
23
23
|
isPublished: "Publiziert"
|
|
24
|
-
archived: "Archivierte"
|
|
25
24
|
draft: "Entwurf"
|
|
26
|
-
active: "
|
|
25
|
+
active: "Aktiv"
|
|
27
26
|
all: "Alle"
|
|
28
27
|
|
|
29
28
|
allForms: "Alle Formulare"
|
|
30
29
|
new: "Neues Formular"
|
|
31
|
-
empty: "Wir haben keine Formulare gefunden. Klicken Sie den Knopf im der rechten oberen Ecke um ein Formular zu
|
|
30
|
+
empty: "Wir haben keine Formulare gefunden. Klicken Sie den Knopf im der rechten oberen Ecke um ein Formular zu erstellen!"
|
|
32
31
|
loadMore: "Mehr Formulare laden"
|
|
33
32
|
|
|
34
33
|
not-found: "Kein Formular mit dem Slug '{slug}' gefunden"
|
|
@@ -52,6 +51,7 @@ caluma:
|
|
|
52
51
|
isRequired: "Pflichtfeld"
|
|
53
52
|
staticContent: "Statischer Inhalt"
|
|
54
53
|
infoText: "Infotext"
|
|
54
|
+
hintText: "Hinweistext"
|
|
55
55
|
confirmationText: "Bestätigungstext"
|
|
56
56
|
placeholder: "Platzhalter"
|
|
57
57
|
isHidden: "Versteckt (JEXL)"
|
|
@@ -63,6 +63,7 @@ caluma:
|
|
|
63
63
|
dataSource: "Datenquelle"
|
|
64
64
|
formatValidators: "Validierung"
|
|
65
65
|
defaultValue: "Standardwert"
|
|
66
|
+
meta: "Metainformationen"
|
|
66
67
|
|
|
67
68
|
general: "Allgemein"
|
|
68
69
|
options: "Optionen"
|
|
@@ -73,7 +74,7 @@ caluma:
|
|
|
73
74
|
max-length: "Maximale Länge"
|
|
74
75
|
rowForm: "Formular für Tabelleneinträge"
|
|
75
76
|
subForm: "Formular für Einträge"
|
|
76
|
-
|
|
77
|
+
no-selection: "Keine Auswahl"
|
|
77
78
|
search-placeholder: "Hier tippen um zu suchen"
|
|
78
79
|
search-empty: "Keine Formulare gefunden"
|
|
79
80
|
columnsToDisplay: "Spalten zur Anzeige im Formular"
|
|
@@ -102,7 +103,7 @@ caluma:
|
|
|
102
103
|
TextareaQuestion: "Text (mehrzeilig)"
|
|
103
104
|
TableQuestion: "Tabelle"
|
|
104
105
|
FormQuestion: "Formular"
|
|
105
|
-
|
|
106
|
+
FilesQuestion: "Dateien"
|
|
106
107
|
StaticQuestion: "Nichtinteraktiver Inhalt"
|
|
107
108
|
DateQuestion: "Datum"
|
|
108
109
|
DynamicMultipleChoiceQuestion: "Dynamische Mehrfachauswahl"
|
package/translations/en.yaml
CHANGED
|
@@ -21,7 +21,6 @@ caluma:
|
|
|
21
21
|
isArchived: "Archived"
|
|
22
22
|
widgetOverride: "Custom widget"
|
|
23
23
|
isPublished: "Published"
|
|
24
|
-
archived: "Archived"
|
|
25
24
|
draft: "Draft"
|
|
26
25
|
active: "Active"
|
|
27
26
|
all: "All"
|
|
@@ -52,6 +51,7 @@ caluma:
|
|
|
52
51
|
isRequired: "Required"
|
|
53
52
|
staticContent: "Static content"
|
|
54
53
|
infoText: "Information text"
|
|
54
|
+
hintText: "Hint text"
|
|
55
55
|
confirmationText: "Confirmation text"
|
|
56
56
|
placeholder: "Placeholder"
|
|
57
57
|
isHidden: "Hidden (JEXL)"
|
|
@@ -63,6 +63,7 @@ caluma:
|
|
|
63
63
|
dataSource: "Data source"
|
|
64
64
|
formatValidators: "Validation"
|
|
65
65
|
defaultValue: "Default value"
|
|
66
|
+
meta: "Meta information"
|
|
66
67
|
|
|
67
68
|
general: "General"
|
|
68
69
|
options: "Options"
|
|
@@ -73,7 +74,7 @@ caluma:
|
|
|
73
74
|
max-length: "Maximum length"
|
|
74
75
|
rowForm: "Form to use for rows"
|
|
75
76
|
subForm: "Form to use for entries"
|
|
76
|
-
|
|
77
|
+
no-selection: "No selection"
|
|
77
78
|
search-placeholder: "Type here to search forms"
|
|
78
79
|
search-empty: "Search didn't match any forms"
|
|
79
80
|
columnsToDisplay: "Columns to be shown in the form"
|
|
@@ -102,7 +103,7 @@ caluma:
|
|
|
102
103
|
TextareaQuestion: "Textarea"
|
|
103
104
|
TableQuestion: "Table"
|
|
104
105
|
FormQuestion: "Form"
|
|
105
|
-
|
|
106
|
+
FilesQuestion: "Files"
|
|
106
107
|
StaticQuestion: "Non-interactive content"
|
|
107
108
|
DateQuestion: "Date"
|
|
108
109
|
DynamicMultipleChoiceQuestion: "Dynamic choices"
|