@lblod/ember-rdfa-editor-lblod-plugins 25.2.1 → 25.2.2-dev.8c6eeae424ca290540b93b6d36df774f29ab2099
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/quiet-poems-float.md +5 -0
- package/CHANGELOG.md +8 -0
- package/addon/components/location-plugin/insert.gts +2 -0
- package/addon/components/variable-plugin/address/insert-variable.ts +2 -0
- package/addon/components/variable-plugin/address/insert.ts +2 -0
- package/addon/components/variable-plugin/address/utils.ts +7 -2
- package/addon/components/variable-plugin/autofilled/insert.gts +7 -2
- package/addon/components/variable-plugin/codelist/insert.ts +7 -2
- package/addon/components/variable-plugin/date/insert-variable.ts +7 -2
- package/addon/components/variable-plugin/date/insert.ts +7 -3
- package/addon/components/variable-plugin/insert-variable-card.hbs +1 -0
- package/addon/components/variable-plugin/location/insert.ts +7 -2
- package/addon/components/variable-plugin/number/insert.ts +7 -2
- package/addon/components/variable-plugin/person/insert.ts +7 -2
- package/addon/components/variable-plugin/text/insert.ts +7 -2
- package/addon/plugins/location-plugin/utils/node-utils.ts +7 -3
- package/addon/plugins/variable-plugin/recreateUuidsOnPaste.ts +11 -3
- package/declarations/addon/components/location-plugin/insert.d.ts +1 -0
- package/declarations/addon/components/variable-plugin/address/insert-variable.d.ts +1 -0
- package/declarations/addon/components/variable-plugin/address/insert.d.ts +1 -0
- package/declarations/addon/components/variable-plugin/address/utils.d.ts +1 -1
- package/declarations/addon/components/variable-plugin/autofilled/insert.d.ts +1 -0
- package/declarations/addon/components/variable-plugin/codelist/insert.d.ts +1 -0
- package/declarations/addon/components/variable-plugin/date/insert-variable.d.ts +1 -0
- package/declarations/addon/components/variable-plugin/date/insert.d.ts +1 -0
- package/declarations/addon/components/variable-plugin/location/insert.d.ts +1 -0
- package/declarations/addon/components/variable-plugin/number/insert.d.ts +1 -0
- package/declarations/addon/components/variable-plugin/person/insert.d.ts +1 -0
- package/declarations/addon/components/variable-plugin/text/insert.d.ts +1 -0
- package/declarations/addon/plugins/location-plugin/utils/node-utils.d.ts +1 -1
- package/package.json +3 -3
- package/pnpm-lock.yaml +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @lblod/ember-rdfa-editor-lblod-plugins
|
|
2
2
|
|
|
3
|
+
## 25.2.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`7a31422`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/7a314220944f266566efced7343d630810fc0247) Thanks [@abeforgit](https://github.com/abeforgit)! - loosen editor peerdep
|
|
8
|
+
|
|
9
|
+
- [`1c165af`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/1c165afcf6793c6ec96c40a902d90bdcac60900c) Thanks [@abeforgit](https://github.com/abeforgit)! - bump editor to [v10.7.4](https://github.com/lblod/ember-rdfa-editor/releases/tag/v10.7.4)
|
|
10
|
+
|
|
3
11
|
## 25.2.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -54,6 +54,7 @@ interface Signature {
|
|
|
54
54
|
controller: SayController;
|
|
55
55
|
config: LocationPluginConfig;
|
|
56
56
|
defaultMunicipality?: string;
|
|
57
|
+
templateMode?: boolean;
|
|
57
58
|
};
|
|
58
59
|
Element: HTMLLIElement;
|
|
59
60
|
}
|
|
@@ -194,6 +195,7 @@ export default class LocationPluginInsertComponent extends Component<Signature>
|
|
|
194
195
|
this.intl.t('location-plugin.default-label', {
|
|
195
196
|
locale: this.documentLanguage,
|
|
196
197
|
}),
|
|
198
|
+
this.args.templateMode,
|
|
197
199
|
);
|
|
198
200
|
}
|
|
199
201
|
this.modalOpen = true;
|
|
@@ -8,6 +8,7 @@ import IntlService from 'ember-intl/services/intl';
|
|
|
8
8
|
|
|
9
9
|
type Args = {
|
|
10
10
|
controller: SayController;
|
|
11
|
+
templateMode?: boolean;
|
|
11
12
|
};
|
|
12
13
|
|
|
13
14
|
export default class VariablePluginAddressInsertVariableComponent extends Component<Args> {
|
|
@@ -35,6 +36,7 @@ export default class VariablePluginAddressInsertVariableComponent extends Compon
|
|
|
35
36
|
this.intl.t('variable.address.label', {
|
|
36
37
|
locale: this.documentLanguage,
|
|
37
38
|
}),
|
|
39
|
+
this.args.templateMode,
|
|
38
40
|
);
|
|
39
41
|
}
|
|
40
42
|
}
|
|
@@ -9,6 +9,7 @@ import { replaceSelectionWithAddress } from './utils';
|
|
|
9
9
|
|
|
10
10
|
type Args = {
|
|
11
11
|
controller: SayController;
|
|
12
|
+
templateMode?: boolean;
|
|
12
13
|
};
|
|
13
14
|
|
|
14
15
|
export default class InsertAddressComponent extends Component<Args> {
|
|
@@ -31,6 +32,7 @@ export default class InsertAddressComponent extends Component<Args> {
|
|
|
31
32
|
this.intl.t('variable.address.label', {
|
|
32
33
|
locale: this.documentLanguage,
|
|
33
34
|
}),
|
|
35
|
+
this.args.templateMode,
|
|
34
36
|
);
|
|
35
37
|
}
|
|
36
38
|
|
|
@@ -10,9 +10,14 @@ import { v4 as uuidv4 } from 'uuid';
|
|
|
10
10
|
export function replaceSelectionWithAddress(
|
|
11
11
|
controller: SayController,
|
|
12
12
|
label?: string,
|
|
13
|
+
templateMode?: boolean,
|
|
13
14
|
) {
|
|
14
|
-
const mappingResource = `http://data.lblod.info/mappings/${
|
|
15
|
-
|
|
15
|
+
const mappingResource = `http://data.lblod.info/mappings/${
|
|
16
|
+
templateMode ? '--ref-uuid4-' : ''
|
|
17
|
+
}${uuidv4()}`;
|
|
18
|
+
const variableInstance = `http://data.lblod.info/variables/${
|
|
19
|
+
templateMode ? '--ref-uuid4-' : ''
|
|
20
|
+
}${uuidv4()}`;
|
|
16
21
|
|
|
17
22
|
controller.withTransaction((tr) => {
|
|
18
23
|
tr.replaceSelectionWith(
|
|
@@ -23,6 +23,7 @@ import LabelInput from '@lblod/ember-rdfa-editor-lblod-plugins/components/variab
|
|
|
23
23
|
|
|
24
24
|
type Args = {
|
|
25
25
|
controller: SayController;
|
|
26
|
+
templateMode?: boolean;
|
|
26
27
|
};
|
|
27
28
|
|
|
28
29
|
export default class AutoFilledVariableInsertComponent extends Component<Args> {
|
|
@@ -60,8 +61,12 @@ export default class AutoFilledVariableInsertComponent extends Component<Args> {
|
|
|
60
61
|
|
|
61
62
|
@action
|
|
62
63
|
insert() {
|
|
63
|
-
const mappingSubject = `http://data.lblod.info/mappings/${
|
|
64
|
-
|
|
64
|
+
const mappingSubject = `http://data.lblod.info/mappings/${
|
|
65
|
+
this.args.templateMode ? '--ref-uuid4-' : ''
|
|
66
|
+
}${uuidv4()}`;
|
|
67
|
+
const variableInstance = `http://data.lblod.info/variables/${
|
|
68
|
+
this.args.templateMode ? '--ref-uuid4-' : ''
|
|
69
|
+
}${uuidv4()}`;
|
|
65
70
|
const variableId = uuidv4();
|
|
66
71
|
|
|
67
72
|
const placeholder = this.intl.t('variable.autofilled.label', {
|
|
@@ -26,6 +26,7 @@ export type CodelistInsertOptions = {
|
|
|
26
26
|
type Args = {
|
|
27
27
|
controller: SayController;
|
|
28
28
|
options: CodelistInsertOptions;
|
|
29
|
+
templateMode?: boolean;
|
|
29
30
|
};
|
|
30
31
|
|
|
31
32
|
interface SelectStyle {
|
|
@@ -88,8 +89,12 @@ export default class CodelistInsertComponent extends Component<Args> {
|
|
|
88
89
|
|
|
89
90
|
@action
|
|
90
91
|
insert() {
|
|
91
|
-
const mappingResource = `http://data.lblod.info/mappings/${
|
|
92
|
-
|
|
92
|
+
const mappingResource = `http://data.lblod.info/mappings/${
|
|
93
|
+
this.args.templateMode ? '--ref-uuid4-' : ''
|
|
94
|
+
}${uuidv4()}`;
|
|
95
|
+
const variableInstance = `http://data.lblod.info/variables/${
|
|
96
|
+
this.args.templateMode ? '--ref-uuid4-' : ''
|
|
97
|
+
}${uuidv4()}`;
|
|
93
98
|
const codelistResource = this.selectedCodelist?.uri;
|
|
94
99
|
const label =
|
|
95
100
|
this.label ??
|
|
@@ -16,6 +16,7 @@ import { replaceSelectionWithAndSelectNode } from '@lblod/ember-rdfa-editor-lblo
|
|
|
16
16
|
|
|
17
17
|
type Args = {
|
|
18
18
|
controller: SayController;
|
|
19
|
+
templateMode?: boolean;
|
|
19
20
|
};
|
|
20
21
|
|
|
21
22
|
export default class DateInsertVariableComponent extends Component<Args> {
|
|
@@ -41,8 +42,12 @@ export default class DateInsertVariableComponent extends Component<Args> {
|
|
|
41
42
|
|
|
42
43
|
@action
|
|
43
44
|
insert() {
|
|
44
|
-
const mappingResource = `http://data.lblod.info/mappings/${
|
|
45
|
-
|
|
45
|
+
const mappingResource = `http://data.lblod.info/mappings/${
|
|
46
|
+
this.args.templateMode ? '--ref-uuid4-' : ''
|
|
47
|
+
}${uuidv4()}`;
|
|
48
|
+
const variableInstance = `http://data.lblod.info/variables/${
|
|
49
|
+
this.args.templateMode ? '--ref-uuid4-' : ''
|
|
50
|
+
}${uuidv4()}`;
|
|
46
51
|
|
|
47
52
|
const defaultLabel = this.intl.t('variable.date.label', {
|
|
48
53
|
locale: this.documentLanguage,
|
|
@@ -15,6 +15,7 @@ import { AddIcon } from '@appuniversum/ember-appuniversum/components/icons/add';
|
|
|
15
15
|
|
|
16
16
|
type Args = {
|
|
17
17
|
controller: SayController;
|
|
18
|
+
templateMode?: boolean;
|
|
18
19
|
};
|
|
19
20
|
|
|
20
21
|
export default class DateInsertComponent extends Component<Args> {
|
|
@@ -36,9 +37,12 @@ export default class DateInsertComponent extends Component<Args> {
|
|
|
36
37
|
|
|
37
38
|
@action
|
|
38
39
|
insert() {
|
|
39
|
-
const mappingResource = `http://data.lblod.info/mappings/${
|
|
40
|
-
|
|
41
|
-
|
|
40
|
+
const mappingResource = `http://data.lblod.info/mappings/${
|
|
41
|
+
this.args.templateMode ? '--ref-uuid4-' : ''
|
|
42
|
+
}${uuidv4()}`;
|
|
43
|
+
const variableInstance = `http://data.lblod.info/variables/${
|
|
44
|
+
this.args.templateMode ? '--ref-uuid4-' : ''
|
|
45
|
+
}${uuidv4()}`;
|
|
42
46
|
const defaultLabel = this.intl.t('variable.date.label', {
|
|
43
47
|
locale: this.documentLanguage,
|
|
44
48
|
});
|
|
@@ -14,6 +14,7 @@ export type LocationInsertOptions = {
|
|
|
14
14
|
type Args = {
|
|
15
15
|
controller: SayController;
|
|
16
16
|
options: LocationInsertOptions;
|
|
17
|
+
templateMode?: boolean;
|
|
17
18
|
};
|
|
18
19
|
|
|
19
20
|
export default class LocationInsertComponent extends Component<Args> {
|
|
@@ -44,8 +45,12 @@ export default class LocationInsertComponent extends Component<Args> {
|
|
|
44
45
|
|
|
45
46
|
@action
|
|
46
47
|
insert() {
|
|
47
|
-
const mappingResource = `http://data.lblod.info/mappings/${
|
|
48
|
-
|
|
48
|
+
const mappingResource = `http://data.lblod.info/mappings/${
|
|
49
|
+
this.args.templateMode ? '--ref-uuid4-' : ''
|
|
50
|
+
}${uuidv4()}`;
|
|
51
|
+
const variableInstance = `http://data.lblod.info/variables/${
|
|
52
|
+
this.args.templateMode ? '--ref-uuid4-' : ''
|
|
53
|
+
}${uuidv4()}`;
|
|
49
54
|
|
|
50
55
|
const placeholder = this.intl.t('variable.location.label', {
|
|
51
56
|
locale: this.documentLanguage,
|
|
@@ -17,6 +17,7 @@ import { replaceSelectionWithAndSelectNode } from '@lblod/ember-rdfa-editor-lblo
|
|
|
17
17
|
|
|
18
18
|
type Args = {
|
|
19
19
|
controller: SayController;
|
|
20
|
+
templateMode?: boolean;
|
|
20
21
|
};
|
|
21
22
|
|
|
22
23
|
export default class NumberInsertComponent extends Component<Args> {
|
|
@@ -85,9 +86,13 @@ export default class NumberInsertComponent extends Component<Args> {
|
|
|
85
86
|
insert() {
|
|
86
87
|
if (this.numberVariableError !== '') return;
|
|
87
88
|
|
|
88
|
-
const mappingResource = `http://data.lblod.info/mappings/${
|
|
89
|
+
const mappingResource = `http://data.lblod.info/mappings/${
|
|
90
|
+
this.args.templateMode ? '--ref-uuid4-' : ''
|
|
91
|
+
}${uuidv4()}`;
|
|
92
|
+
const variableInstance = `http://data.lblod.info/variables/${
|
|
93
|
+
this.args.templateMode ? '--ref-uuid4-' : ''
|
|
94
|
+
}${uuidv4()}`;
|
|
89
95
|
const subject = mappingResource;
|
|
90
|
-
const variableInstance = `http://data.lblod.info/variables/${uuidv4()}`;
|
|
91
96
|
|
|
92
97
|
const defaultLabel = this.intl.t('variable.number.label', {
|
|
93
98
|
locale: this.documentLanguage,
|
|
@@ -15,6 +15,7 @@ import { replaceSelectionWithAndSelectNode } from '@lblod/ember-rdfa-editor-lblo
|
|
|
15
15
|
|
|
16
16
|
type Args = {
|
|
17
17
|
controller: SayController;
|
|
18
|
+
templateMode?: boolean;
|
|
18
19
|
};
|
|
19
20
|
|
|
20
21
|
export default class PersonVariableInsertComponent extends Component<Args> {
|
|
@@ -40,8 +41,12 @@ export default class PersonVariableInsertComponent extends Component<Args> {
|
|
|
40
41
|
|
|
41
42
|
@action
|
|
42
43
|
insert() {
|
|
43
|
-
const mappingSubject = `http://data.lblod.info/mappings/${
|
|
44
|
-
|
|
44
|
+
const mappingSubject = `http://data.lblod.info/mappings/${
|
|
45
|
+
this.args.templateMode ? '--ref-uuid4-' : ''
|
|
46
|
+
}${uuidv4()}`;
|
|
47
|
+
const variableInstance = `http://data.lblod.info/variables/${
|
|
48
|
+
this.args.templateMode ? '--ref-uuid4-' : ''
|
|
49
|
+
}${uuidv4()}`;
|
|
45
50
|
const variableId = uuidv4();
|
|
46
51
|
|
|
47
52
|
const placeholder = this.intl.t('variable.person.label', {
|
|
@@ -15,6 +15,7 @@ import { replaceSelectionWithAndSelectNode } from '@lblod/ember-rdfa-editor-lblo
|
|
|
15
15
|
|
|
16
16
|
type Args = {
|
|
17
17
|
controller: SayController;
|
|
18
|
+
templateMode?: boolean;
|
|
18
19
|
};
|
|
19
20
|
|
|
20
21
|
export default class TextVariableInsertComponent extends Component<Args> {
|
|
@@ -40,8 +41,12 @@ export default class TextVariableInsertComponent extends Component<Args> {
|
|
|
40
41
|
|
|
41
42
|
@action
|
|
42
43
|
insert() {
|
|
43
|
-
const mappingSubject = `http://data.lblod.info/mappings/${
|
|
44
|
-
|
|
44
|
+
const mappingSubject = `http://data.lblod.info/mappings/${
|
|
45
|
+
this.args.templateMode ? '--ref-uuid4-' : ''
|
|
46
|
+
}${uuidv4()}`;
|
|
47
|
+
const variableInstance = `http://data.lblod.info/variables/${
|
|
48
|
+
this.args.templateMode ? '--ref-uuid4-' : ''
|
|
49
|
+
}${uuidv4()}`;
|
|
45
50
|
const variableId = uuidv4();
|
|
46
51
|
|
|
47
52
|
const placeholder = this.intl.t('variable.text.label', {
|
|
@@ -10,10 +10,14 @@ import { v4 as uuidv4 } from 'uuid';
|
|
|
10
10
|
export function replaceSelectionWithAddress(
|
|
11
11
|
controller: SayController,
|
|
12
12
|
label?: string,
|
|
13
|
+
templateMode?: boolean,
|
|
13
14
|
) {
|
|
14
|
-
const mappingResource = `http://data.lblod.info/mappings/${
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
const mappingResource = `http://data.lblod.info/mappings/${
|
|
16
|
+
templateMode ? '--ref-uuid4-' : ''
|
|
17
|
+
}$${uuidv4()}`;
|
|
18
|
+
const variableInstance = `http://data.lblod.info/variables/${
|
|
19
|
+
templateMode ? '--ref-uuid4-' : ''
|
|
20
|
+
}$${uuidv4()}`;
|
|
17
21
|
controller.withTransaction((tr) => {
|
|
18
22
|
tr.replaceSelectionWith(
|
|
19
23
|
controller.schema.node('oslo_location', {
|
|
@@ -73,11 +73,19 @@ function recreateUuidsOnNode(node: Node, schema: Schema) {
|
|
|
73
73
|
|
|
74
74
|
attrs.properties = (attrs.properties as OutgoingTriple[]).map((prop) => {
|
|
75
75
|
if (prop.predicate === EXT('instance').full) {
|
|
76
|
+
let recreatedUri;
|
|
77
|
+
if (
|
|
78
|
+
prop.object.value.includes(
|
|
79
|
+
'http://data.lblod.info/variables/--ref-uuid4-',
|
|
80
|
+
)
|
|
81
|
+
) {
|
|
82
|
+
recreatedUri = `http://data.lblod.info/variables/--ref-uuid4-${uuidv4()}`;
|
|
83
|
+
} else {
|
|
84
|
+
recreatedUri = `http://data.lblod.info/variables/${uuidv4()}`;
|
|
85
|
+
}
|
|
76
86
|
return {
|
|
77
87
|
predicate: prop.predicate,
|
|
78
|
-
object: sayDataFactory.namedNode(
|
|
79
|
-
`http://data.lblod.info/variables/${uuidv4()}`,
|
|
80
|
-
),
|
|
88
|
+
object: sayDataFactory.namedNode(recreatedUri),
|
|
81
89
|
};
|
|
82
90
|
}
|
|
83
91
|
|
|
@@ -3,6 +3,7 @@ import { SayController } from '@lblod/ember-rdfa-editor';
|
|
|
3
3
|
import IntlService from 'ember-intl/services/intl';
|
|
4
4
|
type Args = {
|
|
5
5
|
controller: SayController;
|
|
6
|
+
templateMode?: boolean;
|
|
6
7
|
};
|
|
7
8
|
export default class VariablePluginAddressInsertVariableComponent extends Component<Args> {
|
|
8
9
|
intl: IntlService;
|
|
@@ -3,6 +3,7 @@ import { SayController } from '@lblod/ember-rdfa-editor';
|
|
|
3
3
|
import IntlService from 'ember-intl/services/intl';
|
|
4
4
|
type Args = {
|
|
5
5
|
controller: SayController;
|
|
6
|
+
templateMode?: boolean;
|
|
6
7
|
};
|
|
7
8
|
export default class InsertAddressComponent extends Component<Args> {
|
|
8
9
|
AddIcon: TOC<import("@appuniversum/ember-appuniversum/components/icons/add").AddIconSignature>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { SayController } from '@lblod/ember-rdfa-editor';
|
|
2
|
-
export declare function replaceSelectionWithAddress(controller: SayController, label?: string): void;
|
|
2
|
+
export declare function replaceSelectionWithAddress(controller: SayController, label?: string, templateMode?: boolean): void;
|
|
@@ -3,6 +3,7 @@ import { type SayController } from '@lblod/ember-rdfa-editor';
|
|
|
3
3
|
import IntlService from 'ember-intl/services/intl';
|
|
4
4
|
type Args = {
|
|
5
5
|
controller: SayController;
|
|
6
|
+
templateMode?: boolean;
|
|
6
7
|
};
|
|
7
8
|
export default class AutoFilledVariableInsertComponent extends Component<Args> {
|
|
8
9
|
intl: IntlService;
|
|
@@ -3,6 +3,7 @@ import { SayController } from '@lblod/ember-rdfa-editor';
|
|
|
3
3
|
import IntlService from 'ember-intl/services/intl';
|
|
4
4
|
type Args = {
|
|
5
5
|
controller: SayController;
|
|
6
|
+
templateMode?: boolean;
|
|
6
7
|
};
|
|
7
8
|
export default class DateInsertVariableComponent extends Component<Args> {
|
|
8
9
|
intl: IntlService;
|
|
@@ -3,6 +3,7 @@ import { SayController } from '@lblod/ember-rdfa-editor';
|
|
|
3
3
|
import IntlService from 'ember-intl/services/intl';
|
|
4
4
|
type Args = {
|
|
5
5
|
controller: SayController;
|
|
6
|
+
templateMode?: boolean;
|
|
6
7
|
};
|
|
7
8
|
export default class DateInsertComponent extends Component<Args> {
|
|
8
9
|
AddIcon: TOC<import("@appuniversum/ember-appuniversum/components/icons/add").AddIconSignature>;
|
|
@@ -3,6 +3,7 @@ import { SayController } from '@lblod/ember-rdfa-editor';
|
|
|
3
3
|
import IntlService from 'ember-intl/services/intl';
|
|
4
4
|
type Args = {
|
|
5
5
|
controller: SayController;
|
|
6
|
+
templateMode?: boolean;
|
|
6
7
|
};
|
|
7
8
|
export default class NumberInsertComponent extends Component<Args> {
|
|
8
9
|
intl: IntlService;
|
|
@@ -3,6 +3,7 @@ import { type SayController } from '@lblod/ember-rdfa-editor';
|
|
|
3
3
|
import IntlService from 'ember-intl/services/intl';
|
|
4
4
|
type Args = {
|
|
5
5
|
controller: SayController;
|
|
6
|
+
templateMode?: boolean;
|
|
6
7
|
};
|
|
7
8
|
export default class PersonVariableInsertComponent extends Component<Args> {
|
|
8
9
|
intl: IntlService;
|
|
@@ -3,6 +3,7 @@ import { type SayController } from '@lblod/ember-rdfa-editor';
|
|
|
3
3
|
import IntlService from 'ember-intl/services/intl';
|
|
4
4
|
type Args = {
|
|
5
5
|
controller: SayController;
|
|
6
|
+
templateMode?: boolean;
|
|
6
7
|
};
|
|
7
8
|
export default class TextVariableInsertComponent extends Component<Args> {
|
|
8
9
|
intl: IntlService;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { SayController } from '@lblod/ember-rdfa-editor';
|
|
2
|
-
export declare function replaceSelectionWithAddress(controller: SayController, label?: string): void;
|
|
2
|
+
export declare function replaceSelectionWithAddress(controller: SayController, label?: string, templateMode?: boolean): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lblod/ember-rdfa-editor-lblod-plugins",
|
|
3
|
-
"version": "25.2.
|
|
3
|
+
"version": "25.2.2-dev.8c6eeae424ca290540b93b6d36df774f29ab2099",
|
|
4
4
|
"description": "Ember addon providing lblod specific plugins for the ember-rdfa-editor",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon",
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
"@glint/template": "^1.4.0",
|
|
106
106
|
"@graphy/content.ttl.write": "^4.3.7",
|
|
107
107
|
"@graphy/memory.dataset.fast": "4.3.3",
|
|
108
|
-
"@lblod/ember-rdfa-editor": "10.7.
|
|
108
|
+
"@lblod/ember-rdfa-editor": "10.7.4",
|
|
109
109
|
"@rdfjs/types": "^1.1.0",
|
|
110
110
|
"@release-it/keep-a-changelog": "^4.0.0",
|
|
111
111
|
"@tsconfig/ember": "^3.0.8",
|
|
@@ -192,7 +192,7 @@
|
|
|
192
192
|
"@appuniversum/ember-appuniversum": "^3.4.1",
|
|
193
193
|
"@ember/string": "3.x",
|
|
194
194
|
"@glint/template": "^1.4.0",
|
|
195
|
-
"@lblod/ember-rdfa-editor": "10.7.3",
|
|
195
|
+
"@lblod/ember-rdfa-editor": "^10.7.3",
|
|
196
196
|
"ember-concurrency": "^3.1.0",
|
|
197
197
|
"ember-element-helper": "^0.8.6",
|
|
198
198
|
"ember-intl": "^7.0.0",
|
package/pnpm-lock.yaml
CHANGED
|
@@ -169,8 +169,8 @@ importers:
|
|
|
169
169
|
specifier: 4.3.3
|
|
170
170
|
version: 4.3.3
|
|
171
171
|
'@lblod/ember-rdfa-editor':
|
|
172
|
-
specifier: 10.7.
|
|
173
|
-
version: 10.7.
|
|
172
|
+
specifier: 10.7.4
|
|
173
|
+
version: 10.7.4(2ef3gpurqxbttnmniw6grhzpuy)
|
|
174
174
|
'@rdfjs/types':
|
|
175
175
|
specifier: ^1.1.0
|
|
176
176
|
version: 1.1.0
|
|
@@ -1595,8 +1595,8 @@ packages:
|
|
|
1595
1595
|
'@jridgewell/trace-mapping@0.3.25':
|
|
1596
1596
|
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
|
|
1597
1597
|
|
|
1598
|
-
'@lblod/ember-rdfa-editor@10.7.
|
|
1599
|
-
resolution: {integrity: sha512-
|
|
1598
|
+
'@lblod/ember-rdfa-editor@10.7.4':
|
|
1599
|
+
resolution: {integrity: sha512-jEoiLejODzYB8kbaxDoB0xRP1SAfOzgKv23ZmoRXKu6bodv+5Vx8+N2r4zYVseoz/ZR70vd3Ltr95Ja13OV7Uw==}
|
|
1600
1600
|
engines: {node: 16.* || 18.* || >= 20}
|
|
1601
1601
|
peerDependencies:
|
|
1602
1602
|
'@appuniversum/ember-appuniversum': ^3.4.2
|
|
@@ -4974,7 +4974,7 @@ packages:
|
|
|
4974
4974
|
resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==}
|
|
4975
4975
|
engines: {node: '>= 4.0'}
|
|
4976
4976
|
os: [darwin]
|
|
4977
|
-
deprecated:
|
|
4977
|
+
deprecated: Upgrade to fsevents v2 to mitigate potential security issues
|
|
4978
4978
|
|
|
4979
4979
|
fsevents@2.3.3:
|
|
4980
4980
|
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
@@ -10738,7 +10738,7 @@ snapshots:
|
|
|
10738
10738
|
'@jridgewell/resolve-uri': 3.1.2
|
|
10739
10739
|
'@jridgewell/sourcemap-codec': 1.4.15
|
|
10740
10740
|
|
|
10741
|
-
'@lblod/ember-rdfa-editor@10.7.
|
|
10741
|
+
'@lblod/ember-rdfa-editor@10.7.4(2ef3gpurqxbttnmniw6grhzpuy)':
|
|
10742
10742
|
dependencies:
|
|
10743
10743
|
'@appuniversum/ember-appuniversum': 3.4.2(yenc6o4wruytt4u2jbwlbsqcl4)
|
|
10744
10744
|
'@babel/core': 7.24.7
|