studiokit-scaffolding-js 4.5.2-next.3.2 → 4.5.2-next.3.3
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.
|
@@ -8,10 +8,7 @@ declare const Container: typeof import("parchment/dist/src/blot/abstract/contain
|
|
|
8
8
|
export declare class BaseTableBlot extends Container {
|
|
9
9
|
static scope: import("parchment/dist/src/registry").Scope;
|
|
10
10
|
static requiredParent: string | null;
|
|
11
|
-
static allowedChildren: (typeof import("parchment/dist/src/blot/embed").default | typeof import("parchment/dist/src/blot/abstract/container").default
|
|
12
|
-
new (data?: string | undefined): Text;
|
|
13
|
-
prototype: Text;
|
|
14
|
-
})[];
|
|
11
|
+
static allowedChildren: (typeof import("parchment/dist/src/blot/embed").default | typeof import("parchment/dist/src/blot/abstract/container").default)[];
|
|
15
12
|
static createWithValue(tagName: string, value: string): HTMLElement;
|
|
16
13
|
/**
|
|
17
14
|
* Check if the blot only contains `<p><br></p>`
|
|
@@ -111,7 +111,7 @@ var BaseTableBlot = /** @class */ (function (_super) {
|
|
|
111
111
|
};
|
|
112
112
|
BaseTableBlot.scope = Parchment.Scope.BLOCK_BLOT;
|
|
113
113
|
BaseTableBlot.requiredParent = null;
|
|
114
|
-
BaseTableBlot.allowedChildren = [Block, BlockEmbed, Container
|
|
114
|
+
BaseTableBlot.allowedChildren = [Block, BlockEmbed, Container];
|
|
115
115
|
return BaseTableBlot;
|
|
116
116
|
}(Container));
|
|
117
117
|
exports.BaseTableBlot = BaseTableBlot;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "studiokit-scaffolding-js",
|
|
3
|
-
"version": "4.5.2-next.3.
|
|
3
|
+
"version": "4.5.2-next.3.3",
|
|
4
4
|
"description": "Common scaffolding for Studio apps at Purdue",
|
|
5
5
|
"repository": "https://gitlab.com/purdue-informatics/studiokit/studiokit-scaffolding-js",
|
|
6
6
|
"license": "MIT",
|