UNPKG

3.61 kBJSONView Raw
1{
2 "plugins": [
3 {
4 "name": "List",
5 "className": "List",
6 "description": "Implements bulleted and numbered list features. Add the to-do list plugin to bring support for inserting interactive checkboxes.",
7 "docs": "features/lists/lists.html",
8 "path": "src/list.js",
9 "uiComponents": [
10 {
11 "type": "Button",
12 "name": "numberedList",
13 "iconPath": "theme/icons/numberedlist.svg"
14 },
15 {
16 "type": "Button",
17 "name": "bulletedList",
18 "iconPath": "theme/icons/bulletedlist.svg"
19 }
20 ],
21 "htmlOutput": [
22 {
23 "elements": [
24 "ol",
25 "ul"
26 ]
27 },
28 {
29 "elements": "li",
30 "implements": "$block"
31 }
32 ]
33 },
34 {
35 "name": "To-do list",
36 "className": "TodoList",
37 "description": "Allows for creating a list of interactive checkboxes with labels. It supports all features of regular lists so you can nest a to-do list together with bulleted and numbered lists in any combination.",
38 "docs": "features/lists/todo-lists.html",
39 "path": "src/todolist",
40 "uiComponents": [
41 {
42 "type": "Button",
43 "name": "todoList",
44 "iconPath": "theme/icons/todolist.svg"
45 }
46 ],
47 "htmlOutput": [
48 {
49 "elements": "ul",
50 "classes": "todo-list"
51 },
52 {
53 "elements": "li"
54 },
55 {
56 "elements": "label",
57 "classes": "todo-list__label"
58 },
59 {
60 "elements": "span",
61 "classes": "todo-list__label__description"
62 },
63 {
64 "elements": "input",
65 "attributes": [
66 "checked",
67 "disabled",
68 "type"
69 ]
70 }
71 ]
72 },
73 {
74 "name": "List properties",
75 "className": "ListProperties",
76 "description": "Enables styling the list item markers for both ordered and unordered lists. You can choose various types of numerals and letters or visual markers to use with these lists. Also enables setting start index (initial marker value) and list reversal (from ascending to descending) for numbered lists. ",
77 "docs": "features/lists/lists.html#list-styles",
78 "path": "src/listproperties.js",
79 "requires": [
80 "List"
81 ],
82 "htmlOutput": [
83 {
84 "elements": [
85 "ol",
86 "ul"
87 ],
88 "attributes": [
89 "start",
90 "reversed"
91 ],
92 "styles": "list-style-type"
93 }
94 ]
95 },
96 {
97 "name": "Document list",
98 "className": "DocumentList",
99 "description": "Implements bulleted and numbered list features. Supports block content inside list elements. Incompatible with the List plugin.",
100 "path": "src/documentlist.js",
101 "uiComponents": [
102 {
103 "type": "Button",
104 "name": "numberedList",
105 "iconPath": "theme/icons/numberedlist.svg"
106 },
107 {
108 "type": "Button",
109 "name": "bulletedList",
110 "iconPath": "theme/icons/bulletedlist.svg"
111 }
112 ],
113 "htmlOutput": [
114 {
115 "elements": [
116 "ol",
117 "ul"
118 ]
119 },
120 {
121 "elements": "li"
122 }
123 ]
124 },
125 {
126 "name": "Document list properties",
127 "className": "DocumentListProperties",
128 "description": "Enables styling the list item markers for both ordered and unordered lists created by the document list plugin. You can choose various types of numerals and letters or visual markers to use with these lists. Also enables setting start index (initial marker value) and list reversal (from ascending to descending) for numbered lists.",
129 "path": "src/documentlistproperties.js",
130 "requires": [
131 "DocumentList"
132 ],
133 "htmlOutput": [
134 {
135 "elements": [
136 "ol",
137 "ul"
138 ],
139 "attributes": [
140 "start",
141 "reversed",
142 "type"
143 ],
144 "styles": "list-style-type"
145 }
146 ]
147 }
148 ]
149}