@alfresco/adf-core 8.4.0-18836740311 → 8.4.0-18842642897
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/bundles/assets/adf-core/i18n/ar.json +5 -0
- package/bundles/assets/adf-core/i18n/cs.json +5 -0
- package/bundles/assets/adf-core/i18n/da.json +5 -0
- package/bundles/assets/adf-core/i18n/de.json +5 -0
- package/bundles/assets/adf-core/i18n/en.json +18 -2
- package/bundles/assets/adf-core/i18n/es.json +5 -0
- package/bundles/assets/adf-core/i18n/fi.json +5 -0
- package/bundles/assets/adf-core/i18n/fr.json +5 -0
- package/bundles/assets/adf-core/i18n/it.json +5 -0
- package/bundles/assets/adf-core/i18n/ja.json +5 -0
- package/bundles/assets/adf-core/i18n/nb.json +5 -0
- package/bundles/assets/adf-core/i18n/nl.json +5 -0
- package/bundles/assets/adf-core/i18n/pl.json +5 -0
- package/bundles/assets/adf-core/i18n/pt-BR.json +5 -0
- package/bundles/assets/adf-core/i18n/pt.json +5 -0
- package/bundles/assets/adf-core/i18n/ru.json +5 -0
- package/bundles/assets/adf-core/i18n/sv.json +5 -0
- package/bundles/assets/adf-core/i18n/zh-CN.json +5 -0
- package/fesm2022/adf-core.mjs +418 -136
- package/fesm2022/adf-core.mjs.map +1 -1
- package/lib/core.module.d.ts +45 -44
- package/lib/form/components/form-renderer.component.d.ts +7 -5
- package/lib/form/components/form-renderer.component.scss +24 -0
- package/lib/form/components/widgets/core/container-row.model.d.ts +26 -0
- package/lib/form/components/widgets/core/form-field-types.d.ts +2 -0
- package/lib/form/components/widgets/core/form-field.model.d.ts +25 -2
- package/lib/form/components/widgets/index.d.ts +1 -0
- package/lib/form/components/widgets/repeat/repeat.widget.d.ts +10 -0
- package/lib/form/components/widgets/repeat/repeat.widget.scss +25 -0
- package/lib/login/components/login-dialog/login-dialog-component-data.interface.d.ts +22 -0
- package/lib/login/components/login-dialog/login-dialog.component.d.ts +16 -0
- package/lib/login/components/login-dialog/login-dialog.component.scss +4 -0
- package/lib/login/login.module.d.ts +5 -3
- package/lib/login/public-api.d.ts +2 -0
- package/package.json +3 -3
|
@@ -69,10 +69,21 @@
|
|
|
69
69
|
"NO_LONGER_THAN": "Enter no more than {{ maxLength }} characters"
|
|
70
70
|
},
|
|
71
71
|
"FILE_ALREADY_UPLOADED": "A file with the same name is already uploaded.",
|
|
72
|
-
"ATTACH": "Attach"
|
|
72
|
+
"ATTACH": "Attach",
|
|
73
|
+
"REPEATABLE_SECTION": {
|
|
74
|
+
"ADD_ROW": "add",
|
|
75
|
+
"ROW_LIMIT_REACHED": "Rows limit ({{ limit }}) reached."
|
|
76
|
+
}
|
|
73
77
|
},
|
|
74
78
|
"FORM_RENDERER": {
|
|
75
|
-
"NAMELESS_TASK": "Nameless task"
|
|
79
|
+
"NAMELESS_TASK": "Nameless task",
|
|
80
|
+
"ROW_LABEL": "Row {{ number }}",
|
|
81
|
+
"REMOVE_ROW_DIALOG": {
|
|
82
|
+
"TITLE": "Delete the row",
|
|
83
|
+
"MESSAGE": "Are you sure you want to delete this row?",
|
|
84
|
+
"YES_LABEL": "Delete row",
|
|
85
|
+
"NO_LABEL": "Cancel"
|
|
86
|
+
}
|
|
76
87
|
},
|
|
77
88
|
"FIELD_STYLE": {
|
|
78
89
|
"FONT_SIZE": "Font size",
|
|
@@ -366,6 +377,11 @@
|
|
|
366
377
|
"ACTION": {
|
|
367
378
|
"HELP": "NEED HELP?",
|
|
368
379
|
"REGISTER": "REGISTER"
|
|
380
|
+
},
|
|
381
|
+
"DIALOG": {
|
|
382
|
+
"CANCEL": "Cancel",
|
|
383
|
+
"CHOOSE": "Choose",
|
|
384
|
+
"LOGIN": "Sign in"
|
|
369
385
|
}
|
|
370
386
|
},
|
|
371
387
|
"ADF-DATATABLE": {
|