@json-layout/core 0.25.0 → 0.26.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@json-layout/core",
3
- "version": "0.25.0",
3
+ "version": "0.26.0",
4
4
  "description": "Compilation and state management utilities for JSON Layout.",
5
5
  "type": "module",
6
6
  "exports": {
package/src/i18n/index.js CHANGED
@@ -1,8 +1,10 @@
1
1
  import en from './en.js'
2
2
  import fr from './fr.js'
3
+ import nl from './nl.js'
3
4
 
4
5
  /** @type {Record<string, import('./types.js').LocaleMessages>} */
5
6
  export default {
6
7
  en,
7
- fr
8
+ fr,
9
+ nl
8
10
  }
package/src/i18n/nl.js ADDED
@@ -0,0 +1,33 @@
1
+ /** @type {import('./types.js').LocaleMessages} */
2
+ export default {
3
+ errorOneOf: 'Kies er een',
4
+ errorRequired: 'benodigde informatie',
5
+ addItem: 'Item toevoegen',
6
+ delete: 'Verwijderen',
7
+ edit: 'Bewerken',
8
+ close: 'Sluiten',
9
+ duplicate: 'Verveelvoudigen',
10
+ sort: 'Sorteren',
11
+ up: 'Omhoog verplaatsen',
12
+ down: 'Omlaag verplaatsen',
13
+ showHelp: 'Toon helpbericht',
14
+ mdeLink1: '[Link titel',
15
+ mdeLink2: '](link url)',
16
+ mdeImg1: '![](',
17
+ mdeImg2: 'afbeelding url)',
18
+ mdeTable1: '',
19
+ mdeTable2: '\n\n| Kolom 1 | Kolom 2 | Kolom 3 |\n| -------- | -------- | -------- |\n| Tekst | Tekst | Tekst |\n\n',
20
+ bold: 'Vet',
21
+ italic: 'Cursief',
22
+ heading: 'Titel',
23
+ quote: 'Citaat',
24
+ unorderedList: 'Ongeordende lijst',
25
+ orderedList: 'Geordende lijst',
26
+ createLink: 'Maak een koppeling',
27
+ insertImage: 'Afbeelding invoegen',
28
+ createTable: 'Tabel aanmaken',
29
+ preview: 'Voorbeeld',
30
+ mdeGuide: 'Documentatie over syntaxis',
31
+ undo: 'Ongedaan maken',
32
+ redo: 'Opnieuw'
33
+ }
@@ -124,11 +124,6 @@ export const runtimeOptions = [
124
124
  false: 'Never remove additional properties (alias "none").'
125
125
  }
126
126
  },
127
- {
128
- key: 'autofocus',
129
- description: 'Activate autofocus. The focus will be given to the first input of the form.',
130
- default: false
131
- },
132
127
  {
133
128
  key: 'readOnlyPropertiesMode',
134
129
  description: 'Control the way readOnly properties from the schema are managed.',
@@ -138,5 +133,10 @@ export const runtimeOptions = [
138
133
  hide: 'Hide the readOnly properties but keep them in the data.',
139
134
  show: 'Show the readOnly properties.'
140
135
  }
136
+ },
137
+ {
138
+ key: 'autofocus',
139
+ description: 'Activate autofocus. The focus will be given to the first input of the form.',
140
+ default: false
141
141
  }
142
142
  ]