@brightsideoy/kama 0.1.0-alpha.62 → 0.1.0-alpha.64

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.
@@ -0,0 +1,15 @@
1
+ id: button
2
+ label: Button
3
+ group: Content
4
+ description: Button text
5
+
6
+ fields:
7
+ - text:
8
+ label: Text
9
+ type: richtext
10
+ editor: button
11
+ public: true
12
+
13
+ - fieldSet: access
14
+ - hidden:
15
+ default: false
@@ -0,0 +1,11 @@
1
+ import StarterKit from "@tiptap/starter-kit";
2
+ import type { RteProfile } from "../../utils/rteProfiles";
3
+
4
+ export const profile: RteProfile = {
5
+ toolbar: [
6
+ "bold",
7
+ "italic",
8
+ "superscript",
9
+ "subscript",
10
+ ],
11
+ };
@@ -7,11 +7,15 @@ export const profile: RteProfile = {
7
7
  toolbar: [
8
8
  "heading-1",
9
9
  "heading-2",
10
+ "heading-3",
11
+ "heading-4",
10
12
  "bold",
11
13
  "italic",
12
14
  "bullet-list",
13
15
  "ordered-list",
14
16
  "blockquote",
15
17
  "link",
18
+ "superscript",
19
+ "subscript",
16
20
  ],
17
21
  };
@@ -9,5 +9,7 @@ export const profile: RteProfile = {
9
9
  "italic",
10
10
  "bullet-list",
11
11
  "ordered-list",
12
+ "superscript",
13
+ "subscript",
12
14
  ],
13
15
  };