@aixa-transformation/pptx-viewer 2.0.33 → 2.0.36
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/{Model3DScene-VY5BMIHC.js → Model3DScene-PC56OC72.js} +3 -3
- package/dist/{Model3DScene-ID7GWMBL.mjs → Model3DScene-TTKKQCNN.mjs} +2 -2
- package/dist/{SurfaceChart3DScene-PXXYX7KR.mjs → SurfaceChart3DScene-HVBOTUQT.mjs} +2 -2
- package/dist/{SurfaceChart3DScene-Y3VNQD4J.js → SurfaceChart3DScene-NS446YLK.js} +3 -3
- package/dist/{chunk-GGWYNMDL.js → chunk-A6HCGZZB.js} +835 -835
- package/dist/{chunk-HBJEBWBB.mjs → chunk-KO6PR4DB.mjs} +1 -1
- package/dist/{chunk-QKRGKIBL.mjs → chunk-PX7HPL7R.mjs} +89 -16
- package/dist/{chunk-F3IAKCR3.mjs → chunk-TZ6WZMSL.mjs} +8 -4
- package/dist/{chunk-SOIGDRND.js → chunk-VG4NI3RU.js} +41 -41
- package/dist/{chunk-PCEK6YYB.js → chunk-WQZMNRYP.js} +485 -481
- package/dist/{chunk-WGHMMJOJ.js → chunk-XRZ2U7KL.js} +89 -16
- package/dist/{chunk-2T6XNJAO.mjs → chunk-XV627I5V.mjs} +5 -5
- package/dist/{dist-PWO55B3G.js → dist-SNAUH2AL.js} +568 -568
- package/dist/{dist-VBLYGLKY.mjs → dist-YQURUCQF.mjs} +1 -1
- package/dist/index.js +34 -34
- package/dist/index.mjs +4 -4
- package/dist/internals.js +78 -78
- package/dist/internals.mjs +3 -3
- package/dist/presentation.js +2 -2
- package/dist/presentation.mjs +1 -1
- package/dist/viewer/index.js +20 -20
- package/dist/viewer/index.mjs +4 -4
- package/package.json +1 -1
|
@@ -31707,6 +31707,31 @@ function readUtf16LE2(data, offset, byteLength) {
|
|
|
31707
31707
|
}
|
|
31708
31708
|
return chars.join("");
|
|
31709
31709
|
}
|
|
31710
|
+
function readUint16BE(data, offset) {
|
|
31711
|
+
return (data[offset] ?? 0) << 8 | (data[offset + 1] ?? 0);
|
|
31712
|
+
}
|
|
31713
|
+
function readUint32BE(data, offset) {
|
|
31714
|
+
return ((data[offset] ?? 0) << 24 >>> 0 | (data[offset + 1] ?? 0) << 16 | (data[offset + 2] ?? 0) << 8 | (data[offset + 3] ?? 0)) >>> 0;
|
|
31715
|
+
}
|
|
31716
|
+
function findSfntTable(data, tag) {
|
|
31717
|
+
if (data.length < 12) return null;
|
|
31718
|
+
const numTables = readUint16BE(data, 4);
|
|
31719
|
+
for (let i = 0; i < numTables; i++) {
|
|
31720
|
+
const record = 12 + i * 16;
|
|
31721
|
+
if (record + 16 > data.length) break;
|
|
31722
|
+
const recordTag = String.fromCharCode(
|
|
31723
|
+
data[record],
|
|
31724
|
+
data[record + 1],
|
|
31725
|
+
data[record + 2],
|
|
31726
|
+
data[record + 3]
|
|
31727
|
+
);
|
|
31728
|
+
if (recordTag !== tag) continue;
|
|
31729
|
+
const offset = readUint32BE(data, record + 8);
|
|
31730
|
+
const length = readUint32BE(data, record + 12);
|
|
31731
|
+
return offset + length <= data.length ? { offset, length } : null;
|
|
31732
|
+
}
|
|
31733
|
+
return null;
|
|
31734
|
+
}
|
|
31710
31735
|
function isEotFormat(data) {
|
|
31711
31736
|
if (data.length < 36) {
|
|
31712
31737
|
return false;
|
|
@@ -31729,27 +31754,52 @@ function createEotFromSfnt(fontData, options) {
|
|
|
31729
31754
|
encodeName2(""),
|
|
31730
31755
|
encodeName2(options.fullName ?? options.familyName)
|
|
31731
31756
|
];
|
|
31732
|
-
const headerSize =
|
|
31757
|
+
const headerSize = 82 + names.reduce((sum, name) => sum + 2 + name.length, 0) + 2;
|
|
31733
31758
|
const result = new Uint8Array(headerSize + fontData.length);
|
|
31734
31759
|
const view = new DataView(result.buffer);
|
|
31760
|
+
const os2 = findSfntTable(fontData, "OS/2");
|
|
31761
|
+
const head = findSfntTable(fontData, "head");
|
|
31735
31762
|
view.setUint32(0, result.length, true);
|
|
31736
31763
|
view.setUint32(4, fontData.length, true);
|
|
31737
31764
|
view.setUint32(8, 131073, true);
|
|
31738
31765
|
view.setUint32(12, 0, true);
|
|
31766
|
+
if (os2 && os2.length >= 42) {
|
|
31767
|
+
result.set(fontData.slice(os2.offset + 32, os2.offset + 42), 16);
|
|
31768
|
+
}
|
|
31739
31769
|
result[26] = 1;
|
|
31740
31770
|
result[27] = options.italic ? 1 : 0;
|
|
31741
|
-
view.setUint32(
|
|
31742
|
-
|
|
31771
|
+
view.setUint32(
|
|
31772
|
+
28,
|
|
31773
|
+
options.weight ?? (os2 && os2.length >= 6 ? readUint16BE(fontData, os2.offset + 4) : 400),
|
|
31774
|
+
true
|
|
31775
|
+
);
|
|
31776
|
+
view.setUint16(
|
|
31777
|
+
32,
|
|
31778
|
+
os2 && os2.length >= 10 ? readUint16BE(fontData, os2.offset + 8) : 0,
|
|
31779
|
+
true
|
|
31780
|
+
);
|
|
31743
31781
|
view.setUint16(34, EOT_MAGIC, true);
|
|
31744
|
-
|
|
31782
|
+
if (os2 && os2.length >= 58) {
|
|
31783
|
+
for (let i = 0; i < 4; i++) {
|
|
31784
|
+
view.setUint32(36 + i * 4, readUint32BE(fontData, os2.offset + 42 + i * 4), true);
|
|
31785
|
+
}
|
|
31786
|
+
}
|
|
31787
|
+
if (os2 && os2.length >= 86) {
|
|
31788
|
+
view.setUint32(52, readUint32BE(fontData, os2.offset + 78), true);
|
|
31789
|
+
view.setUint32(56, readUint32BE(fontData, os2.offset + 82), true);
|
|
31790
|
+
}
|
|
31791
|
+
if (head && head.length >= 12) {
|
|
31792
|
+
view.setUint32(60, readUint32BE(fontData, head.offset + 8), true);
|
|
31793
|
+
}
|
|
31794
|
+
let offset = 82;
|
|
31745
31795
|
for (const name of names) {
|
|
31746
|
-
view.setUint16(offset, 0, true);
|
|
31747
|
-
offset += 2;
|
|
31748
|
-
view.setUint16(offset, name.length, true);
|
|
31796
|
+
view.setUint16(offset, Math.max(0, name.length - 2), true);
|
|
31749
31797
|
offset += 2;
|
|
31750
31798
|
result.set(name, offset);
|
|
31751
31799
|
offset += name.length;
|
|
31752
31800
|
}
|
|
31801
|
+
view.setUint16(offset, 0, true);
|
|
31802
|
+
offset += 2;
|
|
31753
31803
|
result.set(fontData, offset);
|
|
31754
31804
|
return result;
|
|
31755
31805
|
}
|
|
@@ -31785,8 +31835,10 @@ function parseEotHeader(data) {
|
|
|
31785
31835
|
const styleName = readNameString();
|
|
31786
31836
|
const versionName = readNameString();
|
|
31787
31837
|
const fullName = readNameString();
|
|
31788
|
-
if (version >=
|
|
31838
|
+
if (version >= 131073 && offset + 4 <= data.length && readUint16LE(data, offset) === 0 && readUint16LE(data, offset + 2) === 0) {
|
|
31789
31839
|
readNameString();
|
|
31840
|
+
}
|
|
31841
|
+
if (version >= 131074) {
|
|
31790
31842
|
offset += 8;
|
|
31791
31843
|
if (offset + 4 <= data.length) {
|
|
31792
31844
|
const signatureSize = readUint16LE(data, offset + 2);
|
|
@@ -55727,11 +55779,6 @@ var PptxHandlerRuntime11 = class extends PptxHandlerRuntime10 {
|
|
|
55727
55779
|
if (requestedSourcePath && this.slideMap.has(requestedSourcePath) && requestedSourcePath.startsWith("ppt/slides/slide")) {
|
|
55728
55780
|
return requestedSourcePath;
|
|
55729
55781
|
}
|
|
55730
|
-
for (const slidePath of this.slideMap.keys()) {
|
|
55731
|
-
if (slidePath.startsWith("ppt/slides/slide")) {
|
|
55732
|
-
return slidePath;
|
|
55733
|
-
}
|
|
55734
|
-
}
|
|
55735
55782
|
return void 0;
|
|
55736
55783
|
}
|
|
55737
55784
|
async loadSlideRelationships(slidePath, relsPath) {
|
|
@@ -62320,8 +62367,14 @@ var PptxHandlerRuntime24 = class _PptxHandlerRuntime7 extends PptxHandlerRuntime
|
|
|
62320
62367
|
}
|
|
62321
62368
|
return;
|
|
62322
62369
|
}
|
|
62370
|
+
const newFontsWithData = fontsWithData.filter(
|
|
62371
|
+
(font) => !(font.originalRId && font.partPath)
|
|
62372
|
+
);
|
|
62373
|
+
if (newFontsWithData.length === 0) {
|
|
62374
|
+
return;
|
|
62375
|
+
}
|
|
62323
62376
|
const fontsByName = /* @__PURE__ */ new Map();
|
|
62324
|
-
for (const font of
|
|
62377
|
+
for (const font of newFontsWithData) {
|
|
62325
62378
|
const existing = fontsByName.get(font.name) ?? [];
|
|
62326
62379
|
existing.push(font);
|
|
62327
62380
|
fontsByName.set(font.name, existing);
|
|
@@ -62423,8 +62476,28 @@ var PptxHandlerRuntime24 = class _PptxHandlerRuntime7 extends PptxHandlerRuntime
|
|
|
62423
62476
|
const generatedList = {
|
|
62424
62477
|
"p:embeddedFont": embeddedFontEntries.length === 1 ? embeddedFontEntries[0] : embeddedFontEntries
|
|
62425
62478
|
};
|
|
62426
|
-
const
|
|
62427
|
-
|
|
62479
|
+
const preservedMetadata = explicitFontList ?? this.loadedEmbeddedFontList;
|
|
62480
|
+
let metadata = generatedList;
|
|
62481
|
+
let metadataAppliedInPlace = false;
|
|
62482
|
+
if (preservedMetadata?.rawXml && !explicitFontList) {
|
|
62483
|
+
const rawList = preservedMetadata.rawXml;
|
|
62484
|
+
const embeddedFontKey = Object.keys(rawList).find(
|
|
62485
|
+
(key) => key.replace(/^.*:/u, "") === "embeddedFont"
|
|
62486
|
+
) ?? "p:embeddedFont";
|
|
62487
|
+
const preservedEntries = this.ensureArray(rawList[embeddedFontKey]);
|
|
62488
|
+
rawList[embeddedFontKey] = [...preservedEntries, ...embeddedFontEntries];
|
|
62489
|
+
metadataAppliedInPlace = true;
|
|
62490
|
+
} else if (preservedMetadata) {
|
|
62491
|
+
metadata = serializeEmbeddedFontList(preservedMetadata);
|
|
62492
|
+
const embeddedFontKey = Object.keys(metadata).find(
|
|
62493
|
+
(key) => key.replace(/^.*:/u, "") === "embeddedFont"
|
|
62494
|
+
) ?? "p:embeddedFont";
|
|
62495
|
+
const preservedEntries = this.ensureArray(metadata[embeddedFontKey]);
|
|
62496
|
+
metadata[embeddedFontKey] = [...preservedEntries, ...embeddedFontEntries];
|
|
62497
|
+
}
|
|
62498
|
+
if (!metadataAppliedInPlace) {
|
|
62499
|
+
setEmbeddedFontList(this.presentationData, metadata);
|
|
62500
|
+
}
|
|
62428
62501
|
}
|
|
62429
62502
|
const ctXml = await this.zip.file("[Content_Types].xml")?.async("string");
|
|
62430
62503
|
if (ctXml) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { DEFAULT_STROKE_COLOR, getConnectorPathGeometry, buildLineShadowCss, buildLineGlowFilter, renderConnectorMarker, getShapeVisualStyle, getTextStyleForElement, DEFAULT_TEXT_COLOR, renderVectorShape, isConnectorOrLineElement, build3DExtrusionData, getImageRenderStyle, cn, getTextLayoutStyle, renderTableElement, renderMediaElement, shouldRenderFallbackLabel, SHAPE_PRESETS, ANIMATION_PRESET_OPTIONS, useReducedMotion, useViewerState, useViewerOptions, useIsMobile, useResizablePanels, useDerivedSlideState, useZoomViewport, useEditorHistory, usePresentationSetup, useTouchGestures, useViewerDialogs, useEditorOperations, useViewerIntegration, useLayoutSwitching, useYjsDocumentSync, useFollowMode, useBroadcastFollower, DEFAULT_FILL_COLOR, hasDagDuotoneEffect, renderDagDuotoneSvgFilter, getCropShapeClipPath, MIN_ELEMENT_SIZE, resolvePalette, resolveStyle, layoutToCategory, wrapChrome, isImageTiled, getImageTilingStyle, getDuotoneColors, getTextWarpStyle, renderTextSegments, buildReactChartViewModel, renderChartElement, buildTextBody3DSceneStyle, SLIDE_TRANSITION_OPTIONS, SLIDE_NAV_THUMBNAIL_WIDTH, scopeLayoutOptionsToActiveSlide, useToolbarVisibility, useKeyboardInsets, useModalDismissDrag, useCollaborativeState, styleShadow, styleStroke, colour, fitFontSize, smartArtNodeGroupProps, chevronPoints, SmartArtNodeText, contrastingTextColor, renderStepDownProcess, renderAlternatingFlow, renderDescendingProcess, renderPictureAccentList, renderVerticalBlockList, renderGroupedList, renderPyramidList, renderHorizontalPictureList, renderAccentProcess, renderVerticalChevronList, DEFAULT_TEXT_FONT_SIZE, DEFAULT_FONT_FAMILY, TOOLBAR_SECTIONS, useVirtualizedSlides, useSwipeNavigation, useSheetDismissDrag, detectTargetType, parseEmailUrl, parseSlideFromUrl, ACTION_VERB_MAP, SHORTCUT_REFERENCE_ITEMS as SHORTCUT_REFERENCE_ITEMS$1, buildTree, treeWidth, treeDepth, nodeOpacity, truncate, gearPath, resolveSmartArtDataPalette, HYPERLINK_COLOR, GRID_SIZE, startPreviewAnimation, stopPreviewAnimation } from './chunk-
|
|
2
|
-
import { normalizeHexColor, colorWithOpacity, normalizeStrokeDashType, getSvgStrokeDasharray, getCompoundLineOffsets, getCompoundLineWidths, svgLineCap, getElementTransform, isEditableTextElement, getAriaRole, getAriaLabel, getAriaRoleDescription, getImageEffectsOpacity, getImageEffectsFilter, getElementTransformWithoutRotation, ACTION_BUTTON_PRESETS, getElementLabel, RULER_THICKNESS, RULER_FONT_SIZE, EQUATION_TEMPLATES, convertLatexToOmml, convertOmmlToMathMl, sanitizeMathMl, DEFAULT_VIEWER_OPTIONS, buildUserFontFaceStyles, readStoredViewerPrefs, resolveThemeCatalogEntry, THEME_CATALOG, writeStoredViewerPrefs, openPptxFile, readBackstageRecentFile, viewerOptionsToPreferences, applyPreferenceToOptions, listAutosaveSnapshots, deleteAutosaveSnapshot, createBackstagePresentation, buildCssGradientFromShapeStyle, getComputedEffectStyle, getSoftEdgeSvgFilter, getGroupChildParentFill, revealedSmartArtNodeCount, buildSmartArtA11y, buildSummaryZoomView, getImageColorWashStyle, getPendingSelectionRestore, restoreSegmentSelection, getTextCompensationTransform, applyChartBuildReveal, formatAxisValue, hasPressureVariation, getInkReplayStyles, INK_REPLAY_KEYFRAMES, resolveInkColor, resolveInkWidth, resolveInkOpacity, pressuresToWidths, getContentPartReplayStyles, resolveOleType, getOleTypeColor, getOleTypeLabel, resolveGroupChildFill, shouldUseSvgWarp, buildPreviewElements, themeToCssVars, DEFAULT_INSERT_CHART_TYPE, hasCopyableFormat, printPropertiesFrameSlides, printPropertiesSlidesPerPage, VIEWER_OPTIONS_TABS, DEFAULT_QUICK_ACCESS_COMMAND_IDS, buildJoinCollaborationConfig, buildCreateCollaborationConfig, generateBroadcastRoomId, DEFAULT_BROADCAST_SERVER_URL, buildBroadcastViewerUrl, resolveTransportForServerUrl, resolveDrawingShapeNodeId, getImageSvgFilters, buildDuotoneCacheKey, getDuotoneCachedResult, applyDuotone, setDuotoneCachedResult, buildCacheKey, DEFAULT_COLOR_CHANGE_TOLERANCE, getCachedResult, applyColorChange, setCachedResult, findChartPartTarget, dragValueForPart, withChartPointValue, dragAnchorViewY, withChartTitle, computeSmartArtLayout, buildSmartArt3DModel, extractPathPoints, generatePressureCircles, isBrowserOpenableMime, formatBytes, getOleBadgeLabel, openUrlInNewTab, getWarpPath, getSlideBackgroundStyle, filterCommands, resolveTitleBarStatusKey, TITLE_BAR_CLASSES, TITLE_BAR_DEFAULT_FILE_KEY, shouldConfirmExternalHyperlink, safeOpenUrl, isPpactionUrl, parsePpactionUrl, formatVersionTimestamp, formatRelativeTime, scanAvailableFontFamilies, PRESETS, CATEGORIES, convertOmmlToLatex, clampPercent, HANDOUT_OPTIONS, TOOLBAR_TABS, SHORTCUT_REFERENCE_ITEMS, resolveViewerAddinRows, availableQuickAccessCommands, addQuickAccessCommand, removeQuickAccessCommand, moveQuickAccessCommand, activateModalFocus, buildCollaborationShareUrl, presentationInkPath, mobileElapsedSince, isFirstSlide, isLastSlide, formatMobileElapsed, mobileSlideCounter, formatElapsed, computeInlineEditorRect, findSmartArtNodeText, rebuildDrawingShapesIfCleared, shouldCommitSmartArtNodeText, groupIntoParagraphs, substituteFieldText, TAB_ROW_ACTION_CLASSES, listBackstageRecentFiles, BACKSTAGE_NAV, INSERT_CHART_TYPES, SLIDE_VIRTUALIZATION_THRESHOLD, getShapeAdjustmentHandleDescriptor, getSlideTransitionAnimations, SLIDE_TRANSITION_KEYFRAMES, formatSlideCounter, isUrlSafe, computeHandoutLayout, getPrintableArea, generateNoteLineCount, computeAllNotesPages, getNotesPrintableArea, QUICK_ACCESS_COMMAND_CATALOG, notesSegmentsToSpans, erasePresentationInkAt, movePresenterPointer, appendPresentationInkPoint, NOTES_FONT_SIZE_DEFAULT, formatTime, NOTES_FONT_SIZE_MIN, clampNotesFontSize, NOTES_FONT_SIZE_STEP, NOTES_FONT_SIZE_MAX, BACKSTAGE_TEMPLATES, formatBackstageDate, formatBackstageSize, DEFAULT_VIEWER_PROFILE, resolveProfileInitial, AVATAR_COLOR_SWATCHES, getConnectionSites, generateTicks, getCommentMarkerPosition, buildThemeColorGrid, THEME_COLOR_LABELS, buildSmartArtPresetData, getLocalStorageUsageSummary, saveViewerProfile, clearAllLocalViewerData, TABLE_STYLE_PRESETS, withFrameSlides, withSlidesPerPage, formatCommentTimestamp, DIRECTIONAL_PRESETS, computeMergeCellRight, computeMergeCellDown, computeSplitCell, DUOTONE_PRESETS, ARTISTIC_EFFECTS, LBL, SEL, FILL_MODE_OPTIONS, SECTION_HEADING, NUM, GRADIENT_TYPE_OPTIONS, PATTERN_OPTIONS } from './chunk-
|
|
1
|
+
import { DEFAULT_STROKE_COLOR, getConnectorPathGeometry, buildLineShadowCss, buildLineGlowFilter, renderConnectorMarker, getShapeVisualStyle, getTextStyleForElement, DEFAULT_TEXT_COLOR, renderVectorShape, isConnectorOrLineElement, build3DExtrusionData, getImageRenderStyle, cn, getTextLayoutStyle, renderTableElement, renderMediaElement, shouldRenderFallbackLabel, SHAPE_PRESETS, ANIMATION_PRESET_OPTIONS, useReducedMotion, useViewerState, useViewerOptions, useIsMobile, useResizablePanels, useDerivedSlideState, useZoomViewport, useEditorHistory, usePresentationSetup, useTouchGestures, useViewerDialogs, useEditorOperations, useViewerIntegration, useLayoutSwitching, useYjsDocumentSync, useFollowMode, useBroadcastFollower, DEFAULT_FILL_COLOR, hasDagDuotoneEffect, renderDagDuotoneSvgFilter, getCropShapeClipPath, MIN_ELEMENT_SIZE, resolvePalette, resolveStyle, layoutToCategory, wrapChrome, isImageTiled, getImageTilingStyle, getDuotoneColors, getTextWarpStyle, renderTextSegments, buildReactChartViewModel, renderChartElement, buildTextBody3DSceneStyle, SLIDE_TRANSITION_OPTIONS, SLIDE_NAV_THUMBNAIL_WIDTH, scopeLayoutOptionsToActiveSlide, useToolbarVisibility, useKeyboardInsets, useModalDismissDrag, useCollaborativeState, styleShadow, styleStroke, colour, fitFontSize, smartArtNodeGroupProps, chevronPoints, SmartArtNodeText, contrastingTextColor, renderStepDownProcess, renderAlternatingFlow, renderDescendingProcess, renderPictureAccentList, renderVerticalBlockList, renderGroupedList, renderPyramidList, renderHorizontalPictureList, renderAccentProcess, renderVerticalChevronList, DEFAULT_TEXT_FONT_SIZE, DEFAULT_FONT_FAMILY, TOOLBAR_SECTIONS, useVirtualizedSlides, useSwipeNavigation, useSheetDismissDrag, detectTargetType, parseEmailUrl, parseSlideFromUrl, ACTION_VERB_MAP, SHORTCUT_REFERENCE_ITEMS as SHORTCUT_REFERENCE_ITEMS$1, buildTree, treeWidth, treeDepth, nodeOpacity, truncate, gearPath, resolveSmartArtDataPalette, HYPERLINK_COLOR, GRID_SIZE, startPreviewAnimation, stopPreviewAnimation } from './chunk-TZ6WZMSL.mjs';
|
|
2
|
+
import { normalizeHexColor, colorWithOpacity, normalizeStrokeDashType, getSvgStrokeDasharray, getCompoundLineOffsets, getCompoundLineWidths, svgLineCap, getElementTransform, isEditableTextElement, getAriaRole, getAriaLabel, getAriaRoleDescription, getImageEffectsOpacity, getImageEffectsFilter, getElementTransformWithoutRotation, ACTION_BUTTON_PRESETS, getElementLabel, RULER_THICKNESS, RULER_FONT_SIZE, EQUATION_TEMPLATES, convertLatexToOmml, convertOmmlToMathMl, sanitizeMathMl, DEFAULT_VIEWER_OPTIONS, buildUserFontFaceStyles, readStoredViewerPrefs, resolveThemeCatalogEntry, THEME_CATALOG, writeStoredViewerPrefs, openPptxFile, readBackstageRecentFile, viewerOptionsToPreferences, applyPreferenceToOptions, listAutosaveSnapshots, deleteAutosaveSnapshot, createBackstagePresentation, buildCssGradientFromShapeStyle, getComputedEffectStyle, getSoftEdgeSvgFilter, getGroupChildParentFill, revealedSmartArtNodeCount, buildSmartArtA11y, buildSummaryZoomView, getImageColorWashStyle, getPendingSelectionRestore, restoreSegmentSelection, getTextCompensationTransform, applyChartBuildReveal, formatAxisValue, hasPressureVariation, getInkReplayStyles, INK_REPLAY_KEYFRAMES, resolveInkColor, resolveInkWidth, resolveInkOpacity, pressuresToWidths, getContentPartReplayStyles, resolveOleType, getOleTypeColor, getOleTypeLabel, resolveGroupChildFill, shouldUseSvgWarp, buildPreviewElements, themeToCssVars, DEFAULT_INSERT_CHART_TYPE, hasCopyableFormat, printPropertiesFrameSlides, printPropertiesSlidesPerPage, VIEWER_OPTIONS_TABS, DEFAULT_QUICK_ACCESS_COMMAND_IDS, buildJoinCollaborationConfig, buildCreateCollaborationConfig, generateBroadcastRoomId, DEFAULT_BROADCAST_SERVER_URL, buildBroadcastViewerUrl, resolveTransportForServerUrl, resolveDrawingShapeNodeId, getImageSvgFilters, buildDuotoneCacheKey, getDuotoneCachedResult, applyDuotone, setDuotoneCachedResult, buildCacheKey, DEFAULT_COLOR_CHANGE_TOLERANCE, getCachedResult, applyColorChange, setCachedResult, findChartPartTarget, dragValueForPart, withChartPointValue, dragAnchorViewY, withChartTitle, computeSmartArtLayout, buildSmartArt3DModel, extractPathPoints, generatePressureCircles, isBrowserOpenableMime, formatBytes, getOleBadgeLabel, openUrlInNewTab, getWarpPath, getSlideBackgroundStyle, filterCommands, resolveTitleBarStatusKey, TITLE_BAR_CLASSES, TITLE_BAR_DEFAULT_FILE_KEY, shouldConfirmExternalHyperlink, safeOpenUrl, isPpactionUrl, parsePpactionUrl, formatVersionTimestamp, formatRelativeTime, scanAvailableFontFamilies, PRESETS, CATEGORIES, convertOmmlToLatex, clampPercent, HANDOUT_OPTIONS, TOOLBAR_TABS, SHORTCUT_REFERENCE_ITEMS, resolveViewerAddinRows, availableQuickAccessCommands, addQuickAccessCommand, removeQuickAccessCommand, moveQuickAccessCommand, activateModalFocus, buildCollaborationShareUrl, presentationInkPath, mobileElapsedSince, isFirstSlide, isLastSlide, formatMobileElapsed, mobileSlideCounter, formatElapsed, computeInlineEditorRect, findSmartArtNodeText, rebuildDrawingShapesIfCleared, shouldCommitSmartArtNodeText, groupIntoParagraphs, substituteFieldText, TAB_ROW_ACTION_CLASSES, listBackstageRecentFiles, BACKSTAGE_NAV, INSERT_CHART_TYPES, SLIDE_VIRTUALIZATION_THRESHOLD, getShapeAdjustmentHandleDescriptor, getSlideTransitionAnimations, SLIDE_TRANSITION_KEYFRAMES, formatSlideCounter, isUrlSafe, computeHandoutLayout, getPrintableArea, generateNoteLineCount, computeAllNotesPages, getNotesPrintableArea, QUICK_ACCESS_COMMAND_CATALOG, notesSegmentsToSpans, erasePresentationInkAt, movePresenterPointer, appendPresentationInkPoint, NOTES_FONT_SIZE_DEFAULT, formatTime, NOTES_FONT_SIZE_MIN, clampNotesFontSize, NOTES_FONT_SIZE_STEP, NOTES_FONT_SIZE_MAX, BACKSTAGE_TEMPLATES, formatBackstageDate, formatBackstageSize, DEFAULT_VIEWER_PROFILE, resolveProfileInitial, AVATAR_COLOR_SWATCHES, getConnectionSites, generateTicks, getCommentMarkerPosition, buildThemeColorGrid, THEME_COLOR_LABELS, buildSmartArtPresetData, getLocalStorageUsageSummary, saveViewerProfile, clearAllLocalViewerData, TABLE_STYLE_PRESETS, withFrameSlides, withSlidesPerPage, formatCommentTimestamp, DIRECTIONAL_PRESETS, computeMergeCellRight, computeMergeCellDown, computeSplitCell, DUOTONE_PRESETS, ARTISTIC_EFFECTS, LBL, SEL, FILL_MODE_OPTIONS, SECTION_HEADING, NUM, GRADIENT_TYPE_OPTIONS, PATTERN_OPTIONS } from './chunk-KO6PR4DB.mjs';
|
|
3
3
|
import { LOCALE_CATALOG, translationsEn } from './chunk-2X72MOPZ.mjs';
|
|
4
|
-
import { hasShapeProperties, hasTextProperties, isInkElement, SWITCHABLE_LAYOUT_TYPES, isImageLikeElement, getLinkedTextBoxSegments, getSubstituteFontFamily, themeColorSchemesEqual, setSmartArtNodeStyle, updateSmartArtNodeText, THEME_COLOR_SCHEME_KEYS, chartDataChangeType, chartDataUpdatePoint, chartDataAddCategory, chartDataRemoveCategory, chartDataAddSeries, chartDataRemoveSeries, setChartAxisLogScale, setChartAxisTitleStyle, setChartAxisGridlineStyle, setChartSeriesMarker, setChartSeriesChartType, setChartDataPointFill, setChartDataPointExplosion, setChartDataPointMarker, setChartDataPointLabel, getOleObjectTypeLabel, pptxActionToElementAction, applyThemeOverrideToSlide, COLOR_MAP_ALIAS_KEYS, DEFAULT_COLOR_MAP, addSmartArtNodeAsChild, removeSmartArtNode, elementActionToPptxAction, switchSmartArtLayout, addSmartArtNode, demoteSmartArtNode, promoteSmartArtNode, reorderSmartArtNode } from './chunk-
|
|
4
|
+
import { hasShapeProperties, hasTextProperties, isInkElement, SWITCHABLE_LAYOUT_TYPES, isImageLikeElement, getLinkedTextBoxSegments, getSubstituteFontFamily, themeColorSchemesEqual, setSmartArtNodeStyle, updateSmartArtNodeText, THEME_COLOR_SCHEME_KEYS, chartDataChangeType, chartDataUpdatePoint, chartDataAddCategory, chartDataRemoveCategory, chartDataAddSeries, chartDataRemoveSeries, setChartAxisLogScale, setChartAxisTitleStyle, setChartAxisGridlineStyle, setChartSeriesMarker, setChartSeriesChartType, setChartDataPointFill, setChartDataPointExplosion, setChartDataPointMarker, setChartDataPointLabel, getOleObjectTypeLabel, pptxActionToElementAction, applyThemeOverrideToSlide, COLOR_MAP_ALIAS_KEYS, DEFAULT_COLOR_MAP, addSmartArtNodeAsChild, removeSmartArtNode, elementActionToPptxAction, switchSmartArtLayout, addSmartArtNode, demoteSmartArtNode, promoteSmartArtNode, reorderSmartArtNode } from './chunk-PX7HPL7R.mjs';
|
|
5
5
|
import React18, { createContext, useMemo, useState, useCallback, forwardRef, useEffect, useRef, Suspense, useLayoutEffect, useContext, useDeferredValue } from 'react';
|
|
6
6
|
import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
|
|
7
7
|
import { useTranslation } from 'react-i18next';
|
|
@@ -1335,7 +1335,7 @@ function AccountPage() {
|
|
|
1335
1335
|
return void 0;
|
|
1336
1336
|
});
|
|
1337
1337
|
};
|
|
1338
|
-
const version = "2.0.
|
|
1338
|
+
const version = "2.0.36" ;
|
|
1339
1339
|
return /* @__PURE__ */ jsxs("div", { className: "mt-8 max-w-[700px] space-y-6", children: [
|
|
1340
1340
|
/* @__PURE__ */ jsxs("section", { className: cardClass, children: [
|
|
1341
1341
|
/* @__PURE__ */ jsxs("h2", { className: "flex items-center gap-2 text-sm font-semibold", children: [
|
|
@@ -3853,7 +3853,7 @@ function FailedToLoad() {
|
|
|
3853
3853
|
var LazyModel3DScene = React18.lazy(
|
|
3854
3854
|
async () => {
|
|
3855
3855
|
try {
|
|
3856
|
-
return await import('./Model3DScene-
|
|
3856
|
+
return await import('./Model3DScene-TTKKQCNN.mjs');
|
|
3857
3857
|
} catch {
|
|
3858
3858
|
return { default: FailedToLoad };
|
|
3859
3859
|
}
|