@afeefa/vue-app 0.0.98 → 0.0.99

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.
@@ -1 +1 @@
1
- 0.0.98
1
+ 0.0.99
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@afeefa/vue-app",
3
- "version": "0.0.98",
3
+ "version": "0.0.99",
4
4
  "description": "",
5
5
  "author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
  "license": "MIT",
@@ -32,24 +32,6 @@
32
32
  <v-icon>{{ strikeIcon }}</v-icon>
33
33
  </v-btn>
34
34
 
35
- <v-btn
36
- small
37
- :class="['menu-button', {'is-active': editorFocus && editor.isActive('heading', {level: 1})}]"
38
- title="überschrift 1"
39
- @click="editor.chain().focus().toggleHeading({level: 1}).run()"
40
- >
41
- <v-icon>{{ h1Icon }}</v-icon>
42
- </v-btn>
43
-
44
- <v-btn
45
- small
46
- :class="['menu-button', {'is-active': editorFocus && editor.isActive('heading', {level: 2})}]"
47
- title="pberschrift 2"
48
- @click="editor.chain().focus().toggleHeading({level: 2}).run()"
49
- >
50
- <v-icon>{{ h2Icon }}</v-icon>
51
- </v-btn>
52
-
53
35
  <v-btn
54
36
  small
55
37
  :class="['menu-button', {'is-active': editorFocus && editor.isActive('bulletList')}]"
@@ -80,10 +62,10 @@
80
62
  <v-btn
81
63
  small
82
64
  class="menu-button"
83
- :class="{ 'is-active': editorFocus && editor.isActive('highlight', { color: '#6161FF' })}"
84
- title="blau"
85
- color="blue--text"
86
- @click="editor.chain().focus().toggleHighlight({ color: '#6161FF' }).run()"
65
+ :class="{ 'is-active': editorFocus && editor.isActive('highlight', { color: '#00FF00' })}"
66
+ title="grün"
67
+ color="green--text"
68
+ @click="editor.chain().focus().toggleHighlight({ color: '#00FF00' }).run()"
87
69
  >
88
70
  <v-icon>$paletteIcon</v-icon>
89
71
  </v-btn>
@@ -99,6 +81,17 @@
99
81
  <v-icon>$paletteIcon</v-icon>
100
82
  </v-btn>
101
83
 
84
+ <v-btn
85
+ small
86
+ class="menu-button"
87
+ :class="{ 'is-active': editorFocus && editor.isActive('highlight', { color: '#FFFF00' })}"
88
+ title="gelb"
89
+ color="yellow--text"
90
+ @click="editor.chain().focus().toggleHighlight({ color: '#FFFF00' }).run()"
91
+ >
92
+ <v-icon>$paletteIcon</v-icon>
93
+ </v-btn>
94
+
102
95
  <v-btn
103
96
  small
104
97
  class="menu-button undo-button"
@@ -87,7 +87,6 @@ export default class FlyingContextContainer extends Vue {
87
87
  position: fixed;
88
88
  z-index: 200;
89
89
  right: 0;
90
- width: 50vw;
91
90
  height: 100%;
92
91
  top: 0;
93
92
  background: white;