@yoopta/lists 4.6.8 → 4.6.9-rc.1
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/dist/index.d.ts +3 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/plugin/index.d.ts +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { LISTS } from './plugin';
|
|
2
|
-
import { NumberedListElement, BulletedListElement, TodoListElement } from './types';
|
|
2
|
+
import { NumberedListElement, BulletedListElement, TodoListElement, TodoListElementProps } from './types';
|
|
3
3
|
import './styles.css';
|
|
4
4
|
declare module 'slate' {
|
|
5
5
|
interface CustomTypes {
|
|
@@ -9,6 +9,6 @@ declare module 'slate' {
|
|
|
9
9
|
export default LISTS;
|
|
10
10
|
declare const NumberedList: import("@yoopta/editor").YooptaPlugin<"numbered-list", import("./types").ListElementProps, Record<string, unknown>>;
|
|
11
11
|
declare const BulletedList: import("@yoopta/editor").YooptaPlugin<"bulleted-list", BulletedListElement, Record<string, unknown>>;
|
|
12
|
-
declare const TodoList: import("@yoopta/editor").YooptaPlugin<"todo-list",
|
|
13
|
-
export { NumberedListElement, BulletedListElement, TodoListElement, NumberedList, BulletedList, TodoList, };
|
|
12
|
+
declare const TodoList: import("@yoopta/editor").YooptaPlugin<"todo-list", TodoListElementProps, Record<string, unknown>>;
|
|
13
|
+
export { NumberedListElement, BulletedListElement, TodoListElement, NumberedList, BulletedList, TodoList, TodoListElementProps, };
|
|
14
14
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AACjC,OAAO,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AACjC,OAAO,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,eAAe,EAAE,oBAAoB,EAAE,MAAM,SAAS,CAAC;AAC1G,OAAO,cAAc,CAAC;AAEtB,OAAO,QAAQ,OAAO,CAAC;IACrB,UAAU,WAAW;QACnB,OAAO,EAAE,mBAAmB,GAAG,mBAAmB,GAAG,eAAe,CAAC;KACtE;CACF;AAED,eAAe,KAAK,CAAC;AAErB,QAAA,MAAM,YAAY,qHAAqB,CAAC;AACxC,QAAA,MAAM,YAAY,sGAAqB,CAAC;AACxC,QAAA,MAAM,QAAQ,mGAAiB,CAAC;AAEhC,OAAO,EACL,mBAAmB,EACnB,mBAAmB,EACnB,eAAe,EAEf,YAAY,EACZ,YAAY,EACZ,QAAQ,EACR,oBAAoB,GACrB,CAAC"}
|
package/dist/plugin/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const LISTS: {
|
|
2
2
|
BulletedList: import("@yoopta/editor").YooptaPlugin<"bulleted-list", import("..").BulletedListElement, Record<string, unknown>>;
|
|
3
3
|
NumberedList: import("@yoopta/editor").YooptaPlugin<"numbered-list", import("../types").ListElementProps, Record<string, unknown>>;
|
|
4
|
-
TodoList: import("@yoopta/editor").YooptaPlugin<"todo-list", import("
|
|
4
|
+
TodoList: import("@yoopta/editor").YooptaPlugin<"todo-list", import("..").TodoListElementProps, Record<string, unknown>>;
|
|
5
5
|
};
|
|
6
6
|
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yoopta/lists",
|
|
3
|
-
"version": "4.6.
|
|
3
|
+
"version": "4.6.9-rc.1",
|
|
4
4
|
"description": "Lists plugin for Yoopta Editor",
|
|
5
5
|
"author": "Darginec05 <devopsbanda@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/Darginec05/Editor-Yoopta#readme",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"bugs": {
|
|
35
35
|
"url": "https://github.com/Darginec05/Editor-Yoopta/issues"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "cbdd6ffa161430772548600ff0638e40fbdff888"
|
|
38
38
|
}
|