@lblod/ember-rdfa-editor-lblod-plugins 37.3.0-dev.8370dfc3f08bb7fe4680881aacf634a1eabd4fa5 → 38.0.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/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @lblod/ember-rdfa-editor-lblod-plugins
2
2
 
3
+ ## 38.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [#668](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/668) [`b16702c`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/b16702c91011512897145fb4ff9875d138497a92) Thanks [@kobemertens](https://github.com/kobemertens)! - Bump editor peerdep to 13.12.0
8
+
9
+ ### Minor Changes
10
+
11
+ - [#665](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/665) [`819a3d2`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/819a3d2193d8b51fe262bcc4ed3cf052acb2ec9f) Thanks [@kobemertens](https://github.com/kobemertens)! - Adds caching, sticky groups, and offline search for the existing context actions
12
+
13
+ - [#666](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/666) [`06da07b`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/06da07bd0a260a424caa82fca8cba4c855e785cb) Thanks [@kobemertens](https://github.com/kobemertens)! - Add placeholder for empty place description
14
+
15
+ ### Patch Changes
16
+
17
+ - [#668](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/668) [`31809a2`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/31809a2d82778280569fb515b0fb0f356fa44f34) Thanks [@kobemertens](https://github.com/kobemertens)! - Update prosemirror-model to 1.25.9
18
+
3
19
  ## 37.3.0
4
20
 
5
21
  ### Minor Changes
@@ -1,6 +1,5 @@
1
1
  import { MOBILITEIT } from '@lblod/ember-rdfa-editor-lblod-plugins/utils/constants';
2
2
  import { ValueOf } from '@lblod/ember-rdfa-editor-lblod-plugins/utils/types';
3
- import { ValuesOf } from '@lblod/ember-rdfa-editor/utils/_private/types';
4
3
 
5
4
  export const ZONALITY_OPTIONS = {
6
5
  POTENTIALLY_ZONAL:
@@ -54,7 +53,7 @@ export function isLegacyZonalityUri(uri: string): uri is LegacyZonalityUri {
54
53
  return Object.values(ZONALITY_OPTIONS_LEGACY).includes(uri);
55
54
  }
56
55
 
57
- export type ZonalityOption = ValuesOf<typeof ZONALITY_OPTIONS>;
56
+ export type ZonalityOption = ValueOf<typeof ZONALITY_OPTIONS>;
58
57
  export type ZonalOrNot = Exclude<
59
58
  ZonalityOption,
60
59
  typeof ZONALITY_OPTIONS.POTENTIALLY_ZONAL
@@ -83,5 +83,6 @@ export function createClassicLocationVariableAttrs({
83
83
  backlinks: [...backlinks, ...addedBacklinks],
84
84
  label: label ?? 'Plaatsbeschrijving',
85
85
  source,
86
+ placeholder: 'Plaatsbeschrijving toevoegen',
86
87
  };
87
88
  }
@@ -3,7 +3,7 @@ import { EXT } from '@lblod/ember-rdfa-editor-lblod-plugins/utils/constants';
3
3
 
4
4
  export const span = (
5
5
  attributes: Attrs = {},
6
- ...children: (DOMOutputSpec | 0)[]
6
+ ...children: (DOMOutputSpec | string | 0)[]
7
7
  ): DOMOutputSpec => {
8
8
  return ['span', attributes, ...children];
9
9
  };
@@ -13,7 +13,7 @@ export const span = (
13
13
  */
14
14
  export const contentSpan = (
15
15
  attributes: Attrs,
16
- ...children: (DOMOutputSpec | 0)[]
16
+ ...children: (DOMOutputSpec | string | 0)[]
17
17
  ) => {
18
18
  return span(
19
19
  {
@@ -1,5 +1,4 @@
1
1
  import { ValueOf } from '@lblod/ember-rdfa-editor-lblod-plugins/utils/types';
2
- import { ValuesOf } from '@lblod/ember-rdfa-editor/utils/_private/types';
3
2
  export declare const ZONALITY_OPTIONS: {
4
3
  readonly POTENTIALLY_ZONAL: "http://register.mobiliteit.vlaanderen.be/concepts/8f9367b2-c717-4be7-8833-4c75bbb4ae1f";
5
4
  readonly ZONAL: "http://register.mobiliteit.vlaanderen.be/concepts/c81c6b96-736a-48cf-b003-6f5cc3dbc55d";
@@ -16,7 +15,7 @@ export declare function getLegacyZonalityUri(uri: ZonalityUri | LegacyZonalityUr
16
15
  export declare function getNewZonalityUri(uri: ZonalityUri | LegacyZonalityUri): ZonalityUri;
17
16
  export declare function isNewZonalityUri(uri: string): uri is ZonalityUri;
18
17
  export declare function isLegacyZonalityUri(uri: string): uri is LegacyZonalityUri;
19
- export type ZonalityOption = ValuesOf<typeof ZONALITY_OPTIONS>;
18
+ export type ZonalityOption = ValueOf<typeof ZONALITY_OPTIONS>;
20
19
  export type ZonalOrNot = Exclude<ZonalityOption, typeof ZONALITY_OPTIONS.POTENTIALLY_ZONAL>;
21
20
  export declare const TRAFFIC_SIGNAL_CONCEPT_TYPES: {
22
21
  readonly TRAFFIC_SIGNAL: "https://data.vlaanderen.be/ns/mobiliteit#Verkeerstekenconcept";
@@ -23,5 +23,6 @@ export declare function createClassicLocationVariableAttrs({ variable, variableI
23
23
  backlinks: IncomingTriple[];
24
24
  label: string;
25
25
  source: string | undefined;
26
+ placeholder: string;
26
27
  };
27
28
  export {};
@@ -1,6 +1,6 @@
1
1
  import { Attrs, DOMOutputSpec } from '@lblod/ember-rdfa-editor';
2
- export declare const span: (attributes?: Attrs, ...children: (DOMOutputSpec | 0)[]) => DOMOutputSpec;
2
+ export declare const span: (attributes?: Attrs, ...children: (DOMOutputSpec | string | 0)[]) => DOMOutputSpec;
3
3
  /**
4
4
  * Constructs a variable content span. Accepts optional additional attributes and a series of children.
5
5
  */
6
- export declare const contentSpan: (attributes: Attrs, ...children: (DOMOutputSpec | 0)[]) => DOMOutputSpec;
6
+ export declare const contentSpan: (attributes: Attrs, ...children: (DOMOutputSpec | string | 0)[]) => DOMOutputSpec;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lblod/ember-rdfa-editor-lblod-plugins",
3
- "version": "37.3.0-dev.8370dfc3f08bb7fe4680881aacf634a1eabd4fa5",
3
+ "version": "38.0.0",
4
4
  "description": "Ember addon providing lblod specific plugins for the ember-rdfa-editor",
5
5
  "keywords": [
6
6
  "ember-addon",
@@ -110,7 +110,7 @@
110
110
  "@glint/ember-tsc": "^1.5.0",
111
111
  "@glint/environment-ember-loose": "^1.5.0",
112
112
  "@glint/environment-ember-template-imports": "^1.5.0",
113
- "@lblod/ember-rdfa-editor": "13.10.2-dev.e26309571bb5b422640bb0281f659239799f642c",
113
+ "@lblod/ember-rdfa-editor": "13.12.0",
114
114
  "@glint/template": "^1.7.7",
115
115
  "@rdfjs/to-ntriples": "^3.0.1",
116
116
  "@rdfjs/types": "^2.0.1",
@@ -183,7 +183,7 @@
183
183
  "@appuniversum/ember-appuniversum": "^3.12.0",
184
184
  "@ember/string": "3.x",
185
185
  "@glint/template": "^1.4.0",
186
- "@lblod/ember-rdfa-editor": "^13.10.0",
186
+ "@lblod/ember-rdfa-editor": "^13.12.0",
187
187
  "ember-concurrency": "^4.0.2",
188
188
  "ember-element-helper": "^0.8.6",
189
189
  "ember-intl": "^7.0.0",
@@ -204,13 +204,6 @@
204
204
  }
205
205
  },
206
206
  "overrides": {},
207
- "pnpm": {
208
- "overrides": {
209
- "babel-plugin-ember-template-compilation": "^2.2.5",
210
- "@codemirror/state": "6.5.2",
211
- "prosemirror-view": "^1.41.5"
212
- }
213
- },
214
207
  "engines": {
215
208
  "node": ">= 18"
216
209
  },
@@ -0,0 +1,2 @@
1
+ overrides:
2
+ 'prosemirror-model': '^1.25.9'
@@ -1,5 +0,0 @@
1
- ---
2
- '@lblod/ember-rdfa-editor-lblod-plugins': minor
3
- ---
4
-
5
- Adds caching, sticky groups, and offline search for the existing context actions