@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.js
CHANGED
|
@@ -191,6 +191,8 @@ function isParagraphSafe(element) {
|
|
|
191
191
|
return false;
|
|
192
192
|
}
|
|
193
193
|
}
|
|
194
|
+
// packages/ast/src/constants.ts
|
|
195
|
+
var STYLE_SLOT_PREFIX = "\x00__IFTAGS_SLOT__";
|
|
194
196
|
// packages/ast/src/settings.ts
|
|
195
197
|
function createSettings(mode) {
|
|
196
198
|
switch (mode) {
|
|
@@ -243,5 +245,6 @@ export {
|
|
|
243
245
|
createPoint,
|
|
244
246
|
container,
|
|
245
247
|
bold,
|
|
248
|
+
STYLE_SLOT_PREFIX,
|
|
246
249
|
DEFAULT_SETTINGS
|
|
247
250
|
};
|