@pixldocs/canvas-renderer 0.5.203 → 0.5.204
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-C2gJ23dU.js → index-BfLA9Iqt.js} +44 -25
- package/dist/{index-C2gJ23dU.js.map → index-BfLA9Iqt.js.map} +1 -1
- package/dist/{index-CZ28FLrz.cjs → index-pfkM2NbI.cjs} +44 -25
- package/dist/{index-CZ28FLrz.cjs.map → index-pfkM2NbI.cjs.map} +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/{vectorPdfExport-xsu5ahea.cjs → vectorPdfExport-BzQh8tO6.cjs} +4 -4
- package/dist/{vectorPdfExport-xsu5ahea.cjs.map → vectorPdfExport-BzQh8tO6.cjs.map} +1 -1
- package/dist/{vectorPdfExport-B8tazQjy.js → vectorPdfExport-NpBdL1eb.js} +4 -4
- package/dist/{vectorPdfExport-B8tazQjy.js.map → vectorPdfExport-NpBdL1eb.js.map} +1 -1
- package/package.json +1 -1
|
@@ -13161,22 +13161,35 @@ function applyFormDataToConfig(config, mappings, formValues, repeatableSectionsF
|
|
|
13161
13161
|
}
|
|
13162
13162
|
return false;
|
|
13163
13163
|
};
|
|
13164
|
-
const
|
|
13165
|
-
if (!(dynamicFields == null ? void 0 : dynamicFields.length)) return
|
|
13164
|
+
const getFieldsForRepeatableKey = (fieldId, fullKey) => {
|
|
13165
|
+
if (!(dynamicFields == null ? void 0 : dynamicFields.length)) return [];
|
|
13166
|
+
const matches = [];
|
|
13167
|
+
const add = (field) => {
|
|
13168
|
+
if (field && !matches.some((existing) => existing.id === field.id)) matches.push(field);
|
|
13169
|
+
};
|
|
13166
13170
|
if (fullKey) {
|
|
13167
|
-
|
|
13168
|
-
|
|
13169
|
-
|
|
13170
|
-
|
|
13171
|
-
|
|
13172
|
-
|
|
13173
|
-
|
|
13174
|
-
|
|
13175
|
-
|
|
13176
|
-
|
|
13177
|
-
|
|
13178
|
-
|
|
13179
|
-
|
|
13171
|
+
add(dynamicFields.find((f) => f.id === fullKey));
|
|
13172
|
+
const nestedMatch = fullKey.match(NESTED_REPEATABLE_KEY_REGEX);
|
|
13173
|
+
if (nestedMatch) {
|
|
13174
|
+
const [, parentId, , childId, , suffix] = nestedMatch;
|
|
13175
|
+
add(dynamicFields.find((f) => f.id === `field_${parentId}_N_field_${childId}_N_${suffix}`));
|
|
13176
|
+
} else {
|
|
13177
|
+
const match = fullKey.match(REPEATABLE_KEY_REGEX);
|
|
13178
|
+
if (match) {
|
|
13179
|
+
const [, nodeId, , suffix] = match;
|
|
13180
|
+
add(dynamicFields.find((f) => f.id === `field_${nodeId}_N_${suffix}`));
|
|
13181
|
+
}
|
|
13182
|
+
}
|
|
13183
|
+
}
|
|
13184
|
+
add(dynamicFields.find((f) => f.id === fieldId));
|
|
13185
|
+
for (const f of dynamicFields) {
|
|
13186
|
+
if ((f.mappings ?? []).some((m) => (m == null ? void 0 : m.elementId) === fieldId)) add(f);
|
|
13187
|
+
}
|
|
13188
|
+
for (const f of dynamicFields) {
|
|
13189
|
+
if (f.id.endsWith(`_N_${fieldId}`)) add(f);
|
|
13190
|
+
else if (f.id.endsWith(`_${fieldId}`) && f.id.includes("_N_")) add(f);
|
|
13191
|
+
}
|
|
13192
|
+
return matches;
|
|
13180
13193
|
};
|
|
13181
13194
|
if (dynamicFields == null ? void 0 : dynamicFields.length) {
|
|
13182
13195
|
for (const key of Object.keys(formValues)) {
|
|
@@ -13184,8 +13197,8 @@ function applyFormDataToConfig(config, mappings, formValues, repeatableSectionsF
|
|
|
13184
13197
|
if (nestedMatch) {
|
|
13185
13198
|
const [, parentId, parentIndexStr, childId, childIndexStr, fieldId] = nestedMatch;
|
|
13186
13199
|
const value = formValues[key];
|
|
13187
|
-
const
|
|
13188
|
-
for (const
|
|
13200
|
+
const fields = getFieldsForRepeatableKey(fieldId, key);
|
|
13201
|
+
for (const field of fields) for (const mapping of field.mappings ?? []) {
|
|
13189
13202
|
const oldElementId = mapping.elementId;
|
|
13190
13203
|
const mapKeyByElement = `${baseId(parentId)}_${parentIndexStr}_${baseId(childId)}_${childIndexStr}_${oldElementId}`;
|
|
13191
13204
|
let elementIds = resolvedIdMap.get(mapKeyByElement);
|
|
@@ -13236,8 +13249,8 @@ function applyFormDataToConfig(config, mappings, formValues, repeatableSectionsF
|
|
|
13236
13249
|
if (!match) continue;
|
|
13237
13250
|
const [, nodeId, indexStr, fieldId] = match;
|
|
13238
13251
|
const value = formValues[key];
|
|
13239
|
-
const
|
|
13240
|
-
for (const
|
|
13252
|
+
const fields = getFieldsForRepeatableKey(fieldId, key);
|
|
13253
|
+
for (const field of fields) for (const mapping of field.mappings ?? []) {
|
|
13241
13254
|
const oldElementId = mapping.elementId;
|
|
13242
13255
|
const elementIds = /* @__PURE__ */ new Set();
|
|
13243
13256
|
for (const candidateBaseId of getRepeatableBaseIdsForToken(nodeId)) {
|
|
@@ -15881,11 +15894,17 @@ async function resolveFromForm(options) {
|
|
|
15881
15894
|
}
|
|
15882
15895
|
return void 0;
|
|
15883
15896
|
};
|
|
15897
|
+
const entryMetaForLabel = (label) => {
|
|
15898
|
+
const normalized = label.trim().toLowerCase();
|
|
15899
|
+
const item = inferredRepeatableList.find((candidate) => candidate.label.trim().toLowerCase() === normalized);
|
|
15900
|
+
return { entryMeta: item == null ? void 0 : item.entryMeta, nestedEntryMeta: item == null ? void 0 : item.nestedEntryMeta };
|
|
15901
|
+
};
|
|
15884
15902
|
const fallbackRepeatableList = (repeatableFromSchema ?? []).map((r) => ({
|
|
15885
15903
|
nodeId: r.nodeId,
|
|
15886
15904
|
label: r.label,
|
|
15887
15905
|
entryFilter: r.entryFilter,
|
|
15888
|
-
entryCount: entryCountForLabel(r.label)
|
|
15906
|
+
entryCount: entryCountForLabel(r.label),
|
|
15907
|
+
...entryMetaForLabel(r.label)
|
|
15889
15908
|
}));
|
|
15890
15909
|
const repeatableList = inferredRepeatableList.length > 0 ? [
|
|
15891
15910
|
...inferredRepeatableList,
|
|
@@ -16949,9 +16968,9 @@ function captureFabricCanvasSvgForPdf(fabricInstance, canvasWidth, canvasHeight)
|
|
|
16949
16968
|
}
|
|
16950
16969
|
return svgString;
|
|
16951
16970
|
}
|
|
16952
|
-
const resolvedPackageVersion = "0.5.
|
|
16971
|
+
const resolvedPackageVersion = "0.5.204";
|
|
16953
16972
|
const PACKAGE_VERSION = resolvedPackageVersion;
|
|
16954
|
-
const DEPLOYMENT_VERSION_MARKER = "__PIXLDOCS_CANVAS_RENDERER_VERSION__:0.5.
|
|
16973
|
+
const DEPLOYMENT_VERSION_MARKER = "__PIXLDOCS_CANVAS_RENDERER_VERSION__:0.5.204";
|
|
16955
16974
|
const roundParityValue = (value) => {
|
|
16956
16975
|
if (typeof value !== "number") return value;
|
|
16957
16976
|
return Number.isFinite(value) ? Number(value.toFixed(3)) : value;
|
|
@@ -17630,7 +17649,7 @@ class PixldocsRenderer {
|
|
|
17630
17649
|
await this.waitForCanvasScene(container, cloned, i);
|
|
17631
17650
|
}
|
|
17632
17651
|
console.log(`[canvas-renderer][pdf-unified] mounted ${cloned.pages.length} page(s), handing off to client exportMultiPagePdf`);
|
|
17633
|
-
const { exportMultiPagePdf, preparePagesForExport } = await Promise.resolve().then(() => require("./vectorPdfExport-
|
|
17652
|
+
const { exportMultiPagePdf, preparePagesForExport } = await Promise.resolve().then(() => require("./vectorPdfExport-BzQh8tO6.cjs"));
|
|
17634
17653
|
const prepared = preparePagesForExport(
|
|
17635
17654
|
cloned.pages,
|
|
17636
17655
|
canvasWidth,
|
|
@@ -19814,7 +19833,7 @@ async function prepareLiveCanvasSvgForPdf(rawSvg, pageWidth, pageHeight, pageKey
|
|
|
19814
19833
|
if (options == null ? void 0 : options.stripPageBackground) stripRootPageBackgroundFromSvg(svgToDraw);
|
|
19815
19834
|
sanitizeSvgTreeForPdf(svgToDraw);
|
|
19816
19835
|
try {
|
|
19817
|
-
const { bakeTextAnchorPositionsFromLiveSvg, logTextMeasurementDiagnostic } = await Promise.resolve().then(() => require("./vectorPdfExport-
|
|
19836
|
+
const { bakeTextAnchorPositionsFromLiveSvg, logTextMeasurementDiagnostic } = await Promise.resolve().then(() => require("./vectorPdfExport-BzQh8tO6.cjs"));
|
|
19818
19837
|
try {
|
|
19819
19838
|
await logTextMeasurementDiagnostic(svgToDraw);
|
|
19820
19839
|
} catch {
|
|
@@ -20211,4 +20230,4 @@ exports.setAutoShrinkDebug = setAutoShrinkDebug;
|
|
|
20211
20230
|
exports.setBundledAssetPrefixes = setBundledAssetPrefixes;
|
|
20212
20231
|
exports.warmResolvedTemplateForPreview = warmResolvedTemplateForPreview;
|
|
20213
20232
|
exports.warmTemplateFromForm = warmTemplateFromForm;
|
|
20214
|
-
//# sourceMappingURL=index-
|
|
20233
|
+
//# sourceMappingURL=index-pfkM2NbI.cjs.map
|