@lblod/ember-rdfa-editor-lblod-plugins 32.7.0 → 32.8.0-dev.ccd8888d1efc5ccdedb5c16e6a952e3a0892d760
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/.changeset/tender-actors-shout.md +5 -0
- package/CHANGELOG.md +17 -0
- package/addon/components/besluit-topic-plugin/besluit-topic-toolbar-dropdown.ts +1 -1
- package/addon/components/besluit-type-plugin/toolbar-dropdown.gts +1 -1
- package/addon/components/decision-plugin/decision-plugin-card.gts +3 -2
- package/addon/components/decision-plugin/insert-article.gts +1 -1
- package/addon/components/document-validation-plugin/card.gts +130 -33
- package/addon/components/lpdc-plugin/lpdc-insert.ts +1 -1
- package/addon/components/roadsign-regulation-plugin/roadsign-regulation-card.gts +1 -1
- package/addon/components/roadsign-regulation-plugin/roadsigns-modal.gts +1 -1
- package/addon/plugins/besluit-type-plugin/utils/besluit-type-instances.ts +1 -1
- package/addon/plugins/besluit-type-plugin/utils/set-besluit-type.ts +1 -1
- package/addon/plugins/decision-plugin/commands/insert-article-container.ts +14 -1
- package/addon/plugins/decision-plugin/commands/insert-description.ts +9 -1
- package/addon/plugins/decision-plugin/commands/insert-motivation.ts +9 -1
- package/addon/plugins/decision-plugin/commands/insert-title.ts +9 -1
- package/addon/plugins/document-validation-plugin/common-fixes.ts +126 -0
- package/addon/plugins/document-validation-plugin/index.ts +61 -32
- package/addon/plugins/roadsign-regulation-plugin/actions/insert-measure.ts +4 -2
- package/addon/plugins/roadsign-regulation-plugin/constants.ts +3 -3
- package/addon/plugins/roadsign-regulation-plugin/nodes.ts +76 -2
- package/addon/plugins/roadsign-regulation-plugin/queries/road-sign-category.ts +1 -1
- package/addon/plugins/roadsign-regulation-plugin/queries/traffic-signal-concept.ts +5 -0
- package/addon/plugins/roadsign-regulation-plugin/schemas/traffic-signal-concept.ts +1 -0
- package/addon/plugins/structure-plugin/commands/move-structure.ts +6 -19
- package/addon/plugins/structure-plugin/monads/recalculate-structure-numbers.ts +3 -0
- package/addon/plugins/variable-plugin/utils/recreate-variable-uris.ts +0 -5
- package/addon/services/import-rdfa-snippet.ts +1 -5
- package/addon/{plugins/besluit-topic-plugin/utils/helpers.ts → utils/decision-utils.ts} +33 -9
- package/declarations/addon/components/document-validation-plugin/card.d.ts +51 -1
- package/declarations/addon/components/roadsign-regulation-plugin/roadsigns-modal.d.ts +2 -0
- package/declarations/addon/plugins/decision-plugin/commands/insert-article-container.d.ts +3 -1
- package/declarations/addon/plugins/document-validation-plugin/common-fixes.d.ts +6 -0
- package/declarations/addon/plugins/document-validation-plugin/index.d.ts +30 -6
- package/declarations/addon/plugins/roadsign-regulation-plugin/constants.d.ts +6 -6
- package/declarations/addon/plugins/roadsign-regulation-plugin/nodes.d.ts +6 -0
- package/declarations/addon/plugins/roadsign-regulation-plugin/queries/mobility-measure-concept.d.ts +1 -0
- package/declarations/addon/plugins/roadsign-regulation-plugin/queries/traffic-signal-concept.d.ts +2 -0
- package/declarations/addon/plugins/roadsign-regulation-plugin/schemas/mobility-measure-concept.d.ts +5 -0
- package/declarations/addon/plugins/roadsign-regulation-plugin/schemas/traffic-signal-concept.d.ts +3 -0
- package/declarations/addon/{plugins/besluit-topic-plugin/utils/helpers.d.ts → utils/decision-utils.d.ts} +5 -1
- package/package.json +3 -3
- package/pnpm-lock.yaml +17 -11
- package/translations/en-US.yaml +1 -0
- package/translations/nl-BE.yaml +1 -0
|
@@ -1,2 +1,8 @@
|
|
|
1
1
|
import { NodeSpec } from '@lblod/ember-rdfa-editor';
|
|
2
|
+
import { ModelMigrationGenerator } from '@lblod/ember-rdfa-editor/core/rdfa-types';
|
|
2
3
|
export declare const roadsign_regulation: NodeSpec;
|
|
4
|
+
/**
|
|
5
|
+
* Migrates documents from a data model featuring multiple nested inline_rdfa nodes to one that uses
|
|
6
|
+
* namedNodes to encode everything in one inline_rdfa
|
|
7
|
+
**/
|
|
8
|
+
export declare const trafficSignalMigration: ModelMigrationGenerator;
|
package/declarations/addon/plugins/roadsign-regulation-plugin/queries/mobility-measure-concept.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export declare function queryMobilityMeasures(endpoint: string, options?: Mobili
|
|
|
22
22
|
image: string;
|
|
23
23
|
uri: string;
|
|
24
24
|
position: number;
|
|
25
|
+
regulatoryNotation?: string | undefined;
|
|
25
26
|
zonality?: "http://lblod.data.gift/concepts/8f9367b2-c717-4be7-8833-4c75bbb4ae1f" | "http://lblod.data.gift/concepts/c81c6b96-736a-48cf-b003-6f5cc3dbc55d" | "http://lblod.data.gift/concepts/b651931b-923c-477c-8da9-fc7dd841fdcc" | undefined;
|
|
26
27
|
} & ({
|
|
27
28
|
type: "https://data.vlaanderen.be/ns/mobiliteit#Verkeersbordconcept";
|
package/declarations/addon/plugins/roadsign-regulation-plugin/queries/traffic-signal-concept.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export declare function queryTrafficSignalConcepts(endpoint: string, options: Qu
|
|
|
8
8
|
image: string;
|
|
9
9
|
uri: string;
|
|
10
10
|
position: number;
|
|
11
|
+
regulatoryNotation?: string | undefined;
|
|
11
12
|
zonality?: "http://lblod.data.gift/concepts/8f9367b2-c717-4be7-8833-4c75bbb4ae1f" | "http://lblod.data.gift/concepts/c81c6b96-736a-48cf-b003-6f5cc3dbc55d" | "http://lblod.data.gift/concepts/b651931b-923c-477c-8da9-fc7dd841fdcc" | undefined;
|
|
12
13
|
} & {
|
|
13
14
|
type: "https://data.vlaanderen.be/ns/mobiliteit#Verkeerslichtconcept" | "https://data.vlaanderen.be/ns/mobiliteit#Wegmarkeringconcept";
|
|
@@ -20,6 +21,7 @@ export declare function queryTrafficSignalConcepts(endpoint: string, options: Qu
|
|
|
20
21
|
image: string;
|
|
21
22
|
uri: string;
|
|
22
23
|
position: number;
|
|
24
|
+
regulatoryNotation?: string | undefined;
|
|
23
25
|
zonality?: "http://lblod.data.gift/concepts/8f9367b2-c717-4be7-8833-4c75bbb4ae1f" | "http://lblod.data.gift/concepts/c81c6b96-736a-48cf-b003-6f5cc3dbc55d" | "http://lblod.data.gift/concepts/b651931b-923c-477c-8da9-fc7dd841fdcc" | undefined;
|
|
24
26
|
type: "https://data.vlaanderen.be/ns/mobiliteit#Verkeersbordconcept";
|
|
25
27
|
})[]>;
|
package/declarations/addon/plugins/roadsign-regulation-plugin/schemas/mobility-measure-concept.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export declare const MobilityMeasureConceptSchema: z.ZodObject<{
|
|
|
12
12
|
trafficSignalConcepts: z.ZodDefault<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
13
13
|
uri: z.ZodString;
|
|
14
14
|
code: z.ZodString;
|
|
15
|
+
regulatoryNotation: z.ZodOptional<z.ZodString>;
|
|
15
16
|
image: z.ZodString;
|
|
16
17
|
zonality: z.ZodOptional<z.ZodNativeEnum<{
|
|
17
18
|
readonly POTENTIALLY_ZONAL: "http://lblod.data.gift/concepts/8f9367b2-c717-4be7-8833-4c75bbb4ae1f";
|
|
@@ -24,12 +25,14 @@ export declare const MobilityMeasureConceptSchema: z.ZodObject<{
|
|
|
24
25
|
image: string;
|
|
25
26
|
uri: string;
|
|
26
27
|
position: number;
|
|
28
|
+
regulatoryNotation?: string | undefined;
|
|
27
29
|
zonality?: "http://lblod.data.gift/concepts/8f9367b2-c717-4be7-8833-4c75bbb4ae1f" | "http://lblod.data.gift/concepts/c81c6b96-736a-48cf-b003-6f5cc3dbc55d" | "http://lblod.data.gift/concepts/b651931b-923c-477c-8da9-fc7dd841fdcc" | undefined;
|
|
28
30
|
}, {
|
|
29
31
|
code: string;
|
|
30
32
|
image: string;
|
|
31
33
|
uri: string;
|
|
32
34
|
position?: number | undefined;
|
|
35
|
+
regulatoryNotation?: string | undefined;
|
|
33
36
|
zonality?: "http://lblod.data.gift/concepts/8f9367b2-c717-4be7-8833-4c75bbb4ae1f" | "http://lblod.data.gift/concepts/c81c6b96-736a-48cf-b003-6f5cc3dbc55d" | "http://lblod.data.gift/concepts/b651931b-923c-477c-8da9-fc7dd841fdcc" | undefined;
|
|
34
37
|
}>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
35
38
|
type: z.ZodLiteral<"https://data.vlaanderen.be/ns/mobiliteit#Verkeersbordconcept">;
|
|
@@ -73,6 +76,7 @@ export declare const MobilityMeasureConceptSchema: z.ZodObject<{
|
|
|
73
76
|
image: string;
|
|
74
77
|
uri: string;
|
|
75
78
|
position: number;
|
|
79
|
+
regulatoryNotation?: string | undefined;
|
|
76
80
|
zonality?: "http://lblod.data.gift/concepts/8f9367b2-c717-4be7-8833-4c75bbb4ae1f" | "http://lblod.data.gift/concepts/c81c6b96-736a-48cf-b003-6f5cc3dbc55d" | "http://lblod.data.gift/concepts/b651931b-923c-477c-8da9-fc7dd841fdcc" | undefined;
|
|
77
81
|
} & ({
|
|
78
82
|
type: "https://data.vlaanderen.be/ns/mobiliteit#Verkeersbordconcept";
|
|
@@ -94,6 +98,7 @@ export declare const MobilityMeasureConceptSchema: z.ZodObject<{
|
|
|
94
98
|
image: string;
|
|
95
99
|
uri: string;
|
|
96
100
|
position?: number | undefined;
|
|
101
|
+
regulatoryNotation?: string | undefined;
|
|
97
102
|
zonality?: "http://lblod.data.gift/concepts/8f9367b2-c717-4be7-8833-4c75bbb4ae1f" | "http://lblod.data.gift/concepts/c81c6b96-736a-48cf-b003-6f5cc3dbc55d" | "http://lblod.data.gift/concepts/b651931b-923c-477c-8da9-fc7dd841fdcc" | undefined;
|
|
98
103
|
} & ({
|
|
99
104
|
type: "https://data.vlaanderen.be/ns/mobiliteit#Verkeersbordconcept";
|
package/declarations/addon/plugins/roadsign-regulation-plugin/schemas/traffic-signal-concept.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { z } from 'zod';
|
|
|
2
2
|
export declare const TrafficSignalConceptSchema: z.ZodIntersection<z.ZodObject<{
|
|
3
3
|
uri: z.ZodString;
|
|
4
4
|
code: z.ZodString;
|
|
5
|
+
regulatoryNotation: z.ZodOptional<z.ZodString>;
|
|
5
6
|
image: z.ZodString;
|
|
6
7
|
zonality: z.ZodOptional<z.ZodNativeEnum<{
|
|
7
8
|
readonly POTENTIALLY_ZONAL: "http://lblod.data.gift/concepts/8f9367b2-c717-4be7-8833-4c75bbb4ae1f";
|
|
@@ -14,12 +15,14 @@ export declare const TrafficSignalConceptSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
14
15
|
image: string;
|
|
15
16
|
uri: string;
|
|
16
17
|
position: number;
|
|
18
|
+
regulatoryNotation?: string | undefined;
|
|
17
19
|
zonality?: "http://lblod.data.gift/concepts/8f9367b2-c717-4be7-8833-4c75bbb4ae1f" | "http://lblod.data.gift/concepts/c81c6b96-736a-48cf-b003-6f5cc3dbc55d" | "http://lblod.data.gift/concepts/b651931b-923c-477c-8da9-fc7dd841fdcc" | undefined;
|
|
18
20
|
}, {
|
|
19
21
|
code: string;
|
|
20
22
|
image: string;
|
|
21
23
|
uri: string;
|
|
22
24
|
position?: number | undefined;
|
|
25
|
+
regulatoryNotation?: string | undefined;
|
|
23
26
|
zonality?: "http://lblod.data.gift/concepts/8f9367b2-c717-4be7-8833-4c75bbb4ae1f" | "http://lblod.data.gift/concepts/c81c6b96-736a-48cf-b003-6f5cc3dbc55d" | "http://lblod.data.gift/concepts/b651931b-923c-477c-8da9-fc7dd841fdcc" | undefined;
|
|
24
27
|
}>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
25
28
|
type: z.ZodLiteral<"https://data.vlaanderen.be/ns/mobiliteit#Verkeersbordconcept">;
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import { EditorState, SayController } from '@lblod/ember-rdfa-editor';
|
|
1
|
+
import { EditorState, PNode, SayController } from '@lblod/ember-rdfa-editor';
|
|
2
2
|
import { ElementPNode } from '@lblod/ember-rdfa-editor/plugins/datastore';
|
|
3
|
+
export declare function getDecisionNodeLocation(controller: SayController): {
|
|
4
|
+
pos: number;
|
|
5
|
+
node: PNode;
|
|
6
|
+
} | undefined;
|
|
3
7
|
export declare const getCurrentBesluitRange: (controllerOrState: SayController | EditorState) => ElementPNode | undefined;
|
|
4
8
|
export declare const getCurrentBesluitURI: (controllerOrState: SayController | EditorState) => string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lblod/ember-rdfa-editor-lblod-plugins",
|
|
3
|
-
"version": "32.
|
|
3
|
+
"version": "32.8.0-dev.ccd8888d1efc5ccdedb5c16e6a952e3a0892d760",
|
|
4
4
|
"description": "Ember addon providing lblod specific plugins for the ember-rdfa-editor",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"ember-resources": "^7.0.2",
|
|
76
76
|
"ember-template-imports": "^4.3.0",
|
|
77
77
|
"ember-velcro": "^2.2.0",
|
|
78
|
-
"@lblod/lib-decision-shapes": "^0.0.
|
|
78
|
+
"@lblod/lib-decision-shapes": "^0.0.25",
|
|
79
79
|
"n2words": "^1.21.0",
|
|
80
80
|
"n3": "^1.26.0",
|
|
81
81
|
"process": "0.11.10",
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
"@glint/template": "^1.5.0",
|
|
113
113
|
"@graphy/content.ttl.write": "^4.3.7",
|
|
114
114
|
"@graphy/memory.dataset.fast": "4.3.3",
|
|
115
|
-
"@lblod/ember-rdfa-editor": "
|
|
115
|
+
"@lblod/ember-rdfa-editor": "12.14.0",
|
|
116
116
|
"@rdfjs/types": "^1.1.0",
|
|
117
117
|
"@release-it/keep-a-changelog": "^4.0.0",
|
|
118
118
|
"@tsconfig/ember": "^3.0.8",
|
package/pnpm-lock.yaml
CHANGED
|
@@ -30,8 +30,8 @@ importers:
|
|
|
30
30
|
specifier: ^1.16.5
|
|
31
31
|
version: 1.16.11(@glint/template@1.5.1)
|
|
32
32
|
'@lblod/lib-decision-shapes':
|
|
33
|
-
specifier: ^0.0.
|
|
34
|
-
version: 0.0.
|
|
33
|
+
specifier: ^0.0.25
|
|
34
|
+
version: 0.0.25(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.14.9)(node-notifier@10.0.1))(typescript@5.7.3)
|
|
35
35
|
'@lblod/marawa':
|
|
36
36
|
specifier: 0.8.0-beta.6
|
|
37
37
|
version: 0.8.0-beta.6
|
|
@@ -190,8 +190,8 @@ importers:
|
|
|
190
190
|
specifier: 4.3.3
|
|
191
191
|
version: 4.3.3
|
|
192
192
|
'@lblod/ember-rdfa-editor':
|
|
193
|
-
specifier:
|
|
194
|
-
version: 12.
|
|
193
|
+
specifier: 12.14.0
|
|
194
|
+
version: 12.14.0(ejdcruazsu3pxrclhcixxsjesq)
|
|
195
195
|
'@rdfjs/types':
|
|
196
196
|
specifier: ^1.1.0
|
|
197
197
|
version: 1.1.2
|
|
@@ -1725,8 +1725,8 @@ packages:
|
|
|
1725
1725
|
'@jridgewell/trace-mapping@0.3.25':
|
|
1726
1726
|
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
|
|
1727
1727
|
|
|
1728
|
-
'@lblod/ember-rdfa-editor@12.
|
|
1729
|
-
resolution: {integrity: sha512-
|
|
1728
|
+
'@lblod/ember-rdfa-editor@12.14.0':
|
|
1729
|
+
resolution: {integrity: sha512-M4uNn788QrtfWL7qxEzNDaVmPCDV5B3x2dJMOU39pOUMfe2UKhH0Rca7vTXWXOkJSXI+P3WlWod55mXzWVpUDg==}
|
|
1730
1730
|
peerDependencies:
|
|
1731
1731
|
'@appuniversum/ember-appuniversum': ^3.11.0
|
|
1732
1732
|
'@ember/test-helpers': ^2.9.4 || ^3.2.1 || ^4.0.2 || ^5.0.0
|
|
@@ -1744,8 +1744,8 @@ packages:
|
|
|
1744
1744
|
'@glint/template':
|
|
1745
1745
|
optional: true
|
|
1746
1746
|
|
|
1747
|
-
'@lblod/lib-decision-shapes@0.0.
|
|
1748
|
-
resolution: {integrity: sha512-
|
|
1747
|
+
'@lblod/lib-decision-shapes@0.0.25':
|
|
1748
|
+
resolution: {integrity: sha512-4pTmFBro+RLPtaN4SiWt5EYqZ2bbtDqpo+EYsNEDe1wtiMLg6RhOD4RwQwLQrH3mjbuJCyQd3DF3TaZBDcOiSQ==}
|
|
1749
1749
|
|
|
1750
1750
|
'@lblod/marawa@0.8.0-beta.6':
|
|
1751
1751
|
resolution: {integrity: sha512-BW3yCpeQlk9EPnQAEQnM9uViA8RC5DkuoiaPJzbuhMcLvKHfI4cjc6dTg9i8qAijbL/xObmQ/Aexko2Xcj9ktw==}
|
|
@@ -6319,6 +6319,7 @@ packages:
|
|
|
6319
6319
|
resolution: {integrity: sha512-t0etAxTUk1w5MYdNOkZBZ8rvYYN5iL+2dHCCx/DpkFm/bW28M6y5nUS83D4XdZiHy35Fpaw6LBb+F88fHZnVCw==}
|
|
6320
6320
|
engines: {node: '>=8.17.0'}
|
|
6321
6321
|
hasBin: true
|
|
6322
|
+
bundledDependencies: []
|
|
6322
6323
|
|
|
6323
6324
|
jsonfile@2.4.0:
|
|
6324
6325
|
resolution: {integrity: sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==}
|
|
@@ -11984,7 +11985,7 @@ snapshots:
|
|
|
11984
11985
|
'@jridgewell/resolve-uri': 3.1.2
|
|
11985
11986
|
'@jridgewell/sourcemap-codec': 1.4.15
|
|
11986
11987
|
|
|
11987
|
-
'@lblod/ember-rdfa-editor@12.
|
|
11988
|
+
'@lblod/ember-rdfa-editor@12.14.0(ejdcruazsu3pxrclhcixxsjesq)':
|
|
11988
11989
|
dependencies:
|
|
11989
11990
|
'@appuniversum/ember-appuniversum': 3.12.0(@ember/test-helpers@3.3.1(@babel/core@7.26.0)(@glint/template@1.5.1)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.26.0))(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))(webpack@5.97.1))(@glimmer/component@1.1.2(@babel/core@7.26.0))(@glimmer/tracking@1.1.2)(@glint/environment-ember-loose@1.5.1(@glimmer/component@1.1.2(@babel/core@7.26.0))(@glint/template@1.5.1)(@types/ember__array@4.0.10(@babel/core@7.26.0))(@types/ember__component@4.0.22(@babel/core@7.26.0))(@types/ember__controller@4.0.12(@babel/core@7.26.0))(@types/ember__object@4.0.12(@babel/core@7.26.0))(@types/ember__routing@4.0.22(@babel/core@7.26.0))(ember-cli-htmlbars@6.3.0)(ember-modifier@4.1.0(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.26.0))(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))))(@glint/template@1.5.1)(ember-source@5.12.0(@glimmer/component@1.1.2(@babel/core@7.26.0))(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))(tracked-built-ins@3.3.0)(webpack@5.97.1)
|
|
11990
11991
|
'@codemirror/commands': 6.6.0
|
|
@@ -12061,7 +12062,7 @@ snapshots:
|
|
|
12061
12062
|
- eslint
|
|
12062
12063
|
- supports-color
|
|
12063
12064
|
|
|
12064
|
-
'@lblod/lib-decision-shapes@0.0.
|
|
12065
|
+
'@lblod/lib-decision-shapes@0.0.25(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.14.9)(node-notifier@10.0.1))(typescript@5.7.3)':
|
|
12065
12066
|
dependencies:
|
|
12066
12067
|
ts-jest: 29.3.4(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.14.9)(node-notifier@10.0.1))(typescript@5.7.3)
|
|
12067
12068
|
optionalDependencies:
|
|
@@ -12598,7 +12599,7 @@ snapshots:
|
|
|
12598
12599
|
'@types/ember__string': 3.16.3
|
|
12599
12600
|
'@types/ember__template': 4.0.7
|
|
12600
12601
|
'@types/ember__test': 4.0.6(@babel/core@7.26.0)
|
|
12601
|
-
'@types/ember__utils': 4.0.7
|
|
12602
|
+
'@types/ember__utils': 4.0.7
|
|
12602
12603
|
'@types/rsvp': 4.0.9
|
|
12603
12604
|
optional: true
|
|
12604
12605
|
|
|
@@ -12768,6 +12769,11 @@ snapshots:
|
|
|
12768
12769
|
- supports-color
|
|
12769
12770
|
optional: true
|
|
12770
12771
|
|
|
12772
|
+
'@types/ember__utils@4.0.7':
|
|
12773
|
+
dependencies:
|
|
12774
|
+
'@types/ember': 4.0.11
|
|
12775
|
+
optional: true
|
|
12776
|
+
|
|
12771
12777
|
'@types/ember__utils@4.0.7(@babel/core@7.26.0)':
|
|
12772
12778
|
dependencies:
|
|
12773
12779
|
'@types/ember': 4.0.11(@babel/core@7.26.0)
|
package/translations/en-US.yaml
CHANGED
|
@@ -515,3 +515,4 @@ document-validation-plugin:
|
|
|
515
515
|
no-matching-rules: There is nothing to validate in the document
|
|
516
516
|
see-related-node: See related node
|
|
517
517
|
description: Some parts are required to allow our system to parse this document.
|
|
518
|
+
decision-node-not-found: Please put the cursor inside a decision node
|
package/translations/nl-BE.yaml
CHANGED
|
@@ -512,3 +512,4 @@ document-validation-plugin:
|
|
|
512
512
|
no-matching-rules: Er is niets te valideren in dit document
|
|
513
513
|
see-related-node: Zie gerelateerde node
|
|
514
514
|
description: Sommige onderdelen zijn nodig om ons systeem toe te laten dit document te ontleden.
|
|
515
|
+
decision-node-not-found: Plaats de cursor in een besluit
|