@lblod/ember-rdfa-editor-lblod-plugins 1.0.0-beta.6 → 1.0.0-beta.8
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
|
@@ -14,6 +14,24 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
## 1.0.0-beta.8 (2023-01-26)
|
|
20
|
+
|
|
21
|
+
#### :house: Internal
|
|
22
|
+
* [#83](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/83) Update editor to 1.0.0 ([@elpoelma](https://github.com/elpoelma))
|
|
23
|
+
|
|
24
|
+
#### Committers: 1
|
|
25
|
+
- Elena Poelman ([@elpoelma](https://github.com/elpoelma))
|
|
26
|
+
|
|
27
|
+
## 1.0.0-beta.7 (2023-01-25)
|
|
28
|
+
|
|
29
|
+
#### :bug: Bug Fix
|
|
30
|
+
* [#82](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/82) Add typeof and property to article_paragraph attrs ([@elpoelma](https://github.com/elpoelma))
|
|
31
|
+
|
|
32
|
+
#### Committers: 1
|
|
33
|
+
- Elena Poelman ([@elpoelma](https://github.com/elpoelma))
|
|
34
|
+
|
|
17
35
|
## 1.0.0-beta.6 (2023-01-25)
|
|
18
36
|
|
|
19
37
|
#### :bug: Bug Fix
|
|
@@ -50,6 +50,12 @@ export const article_paragraph: NodeSpec = {
|
|
|
50
50
|
content: 'inline*',
|
|
51
51
|
inline: false,
|
|
52
52
|
attrs: {
|
|
53
|
+
typeof: {
|
|
54
|
+
default: SAY('Paragraph').prefixed,
|
|
55
|
+
},
|
|
56
|
+
property: {
|
|
57
|
+
default: SAY('hasParagraph').prefixed,
|
|
58
|
+
},
|
|
53
59
|
resource: {},
|
|
54
60
|
number: {
|
|
55
61
|
default: '1',
|
|
@@ -59,8 +65,8 @@ export const article_paragraph: NodeSpec = {
|
|
|
59
65
|
return [
|
|
60
66
|
'div',
|
|
61
67
|
{
|
|
62
|
-
property:
|
|
63
|
-
typeof:
|
|
68
|
+
property: node.attrs.property as string,
|
|
69
|
+
typeof: node.attrs.typeof as string,
|
|
64
70
|
resource: node.attrs.resource as string,
|
|
65
71
|
},
|
|
66
72
|
'$',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lblod/ember-rdfa-editor-lblod-plugins",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.8",
|
|
4
4
|
"description": "Ember addon providing lblod specific plugins for the ember-rdfa-editor",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"@embroider/test-setup": "^1.6.0",
|
|
63
63
|
"@glimmer/component": "^1.1.2",
|
|
64
64
|
"@glimmer/tracking": "^1.1.2",
|
|
65
|
-
"@lblod/ember-rdfa-editor": "^1.0.0
|
|
65
|
+
"@lblod/ember-rdfa-editor": "^1.0.0",
|
|
66
66
|
"@rdfjs/types": "^1.1.0",
|
|
67
67
|
"@release-it-plugins/lerna-changelog": "^5.0.0",
|
|
68
68
|
"@tsconfig/ember": "^1.0.1",
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
},
|
|
145
145
|
"peerDependencies": {
|
|
146
146
|
"@appuniversum/ember-appuniversum": "^2.2.0",
|
|
147
|
-
"@lblod/ember-rdfa-editor": "^1.0.0
|
|
147
|
+
"@lblod/ember-rdfa-editor": "^1.0.0",
|
|
148
148
|
"ember-concurrency": "^2.3.7"
|
|
149
149
|
},
|
|
150
150
|
"engines": {
|