@wdprlib/ast 1.1.0 → 1.1.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.cjs +3 -0
- package/dist/index.d.cts +617 -87
- package/dist/index.d.ts +617 -87
- package/dist/index.js +3 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -50,6 +50,7 @@ __export(exports_src, {
|
|
|
50
50
|
createPoint: () => createPoint,
|
|
51
51
|
container: () => container,
|
|
52
52
|
bold: () => bold,
|
|
53
|
+
STYLE_SLOT_PREFIX: () => STYLE_SLOT_PREFIX,
|
|
53
54
|
DEFAULT_SETTINGS: () => DEFAULT_SETTINGS
|
|
54
55
|
});
|
|
55
56
|
module.exports = __toCommonJS(exports_src);
|
|
@@ -247,6 +248,8 @@ function isParagraphSafe(element) {
|
|
|
247
248
|
return false;
|
|
248
249
|
}
|
|
249
250
|
}
|
|
251
|
+
// packages/ast/src/constants.ts
|
|
252
|
+
var STYLE_SLOT_PREFIX = "\x00__IFTAGS_SLOT__";
|
|
250
253
|
// packages/ast/src/settings.ts
|
|
251
254
|
function createSettings(mode) {
|
|
252
255
|
switch (mode) {
|