oasis-editor 0.0.68 → 0.0.70
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.
|
@@ -2483,7 +2483,7 @@ function OasisEditorAppLazy(props = {}) {
|
|
|
2483
2483
|
onCleanup(() => {
|
|
2484
2484
|
cancelled = true;
|
|
2485
2485
|
});
|
|
2486
|
-
import("./OasisEditorApp-
|
|
2486
|
+
import("./OasisEditorApp-Cy7UGzeb.js").then((m) => {
|
|
2487
2487
|
cancelled = true;
|
|
2488
2488
|
setProgress(1);
|
|
2489
2489
|
setTimeout(() => setApp(() => m.OasisEditorApp), 180);
|
|
@@ -3005,6 +3005,21 @@ function assertNever(value, label = "value") {
|
|
|
3005
3005
|
const tag = value && typeof value === "object" && "type" in value ? value.type : value;
|
|
3006
3006
|
throw new Error(`Unhandled ${label}: ${String(tag)}`);
|
|
3007
3007
|
}
|
|
3008
|
+
function getRunKind(run) {
|
|
3009
|
+
if (run.footnoteReference) return "footnoteReference";
|
|
3010
|
+
if (run.endnoteReference) return "endnoteReference";
|
|
3011
|
+
if (run.fieldChar) return "fieldChar";
|
|
3012
|
+
if (run.fieldInstruction !== void 0) return "fieldInstruction";
|
|
3013
|
+
if (run.field) return "field";
|
|
3014
|
+
if (run.textBox) return "textBox";
|
|
3015
|
+
if (run.image) return "image";
|
|
3016
|
+
if (run.sym) return "sym";
|
|
3017
|
+
return "text";
|
|
3018
|
+
}
|
|
3019
|
+
function isInlineObjectRun(run) {
|
|
3020
|
+
const kind = getRunKind(run);
|
|
3021
|
+
return kind === "image" || kind === "textBox";
|
|
3022
|
+
}
|
|
3008
3023
|
const EDITOR_ASSET_REF_PREFIX = "asset:";
|
|
3009
3024
|
function asRequired(value) {
|
|
3010
3025
|
return value;
|
|
@@ -14523,7 +14538,7 @@ function estimateStackedParagraphHeight(paragraph, state) {
|
|
|
14523
14538
|
let glyphs = 0;
|
|
14524
14539
|
let maxFontSize = 0;
|
|
14525
14540
|
for (const run of paragraph.runs) {
|
|
14526
|
-
if (run
|
|
14541
|
+
if (isInlineObjectRun(run)) {
|
|
14527
14542
|
continue;
|
|
14528
14543
|
}
|
|
14529
14544
|
const styles = resolveEffectiveTextStyleForParagraph(
|
|
@@ -14548,7 +14563,7 @@ function estimateStackedColumnWidth(paragraph, state) {
|
|
|
14548
14563
|
var _a;
|
|
14549
14564
|
let columnWidth = 0;
|
|
14550
14565
|
for (const run of paragraph.runs) {
|
|
14551
|
-
if (run
|
|
14566
|
+
if (isInlineObjectRun(run)) continue;
|
|
14552
14567
|
const styles = resolveEffectiveTextStyleForParagraph(
|
|
14553
14568
|
run.styles,
|
|
14554
14569
|
(_a = paragraph.style) == null ? void 0 : _a.styleId,
|
|
@@ -14563,7 +14578,7 @@ function layoutStackedGlyphs(paragraph, state, box, startColumn, columnsRtl = tr
|
|
|
14563
14578
|
const startColumnRight = startColumn;
|
|
14564
14579
|
let columnWidth = 0;
|
|
14565
14580
|
for (const run of paragraph.runs) {
|
|
14566
|
-
if (run
|
|
14581
|
+
if (isInlineObjectRun(run)) continue;
|
|
14567
14582
|
const styles = resolveEffectiveTextStyleForParagraph(
|
|
14568
14583
|
run.styles,
|
|
14569
14584
|
(_a = paragraph.style) == null ? void 0 : _a.styleId,
|
|
@@ -14588,7 +14603,7 @@ function layoutStackedGlyphs(paragraph, state, box, startColumn, columnsRtl = tr
|
|
|
14588
14603
|
const glyphs = [];
|
|
14589
14604
|
let offset = 0;
|
|
14590
14605
|
for (const run of paragraph.runs) {
|
|
14591
|
-
if (run
|
|
14606
|
+
if (isInlineObjectRun(run)) {
|
|
14592
14607
|
continue;
|
|
14593
14608
|
}
|
|
14594
14609
|
const styles = resolveEffectiveTextStyleForParagraph(
|
|
@@ -39928,214 +39943,215 @@ const OASIS_MENU_ITEMS = {
|
|
|
39928
39943
|
formatListsNumbered: "format_lists_numbered"
|
|
39929
39944
|
};
|
|
39930
39945
|
export {
|
|
39931
|
-
|
|
39932
|
-
|
|
39933
|
-
|
|
39934
|
-
|
|
39935
|
-
|
|
39946
|
+
resolveEffectiveTextStyleForParagraph as $,
|
|
39947
|
+
buildTableCellLayout as A,
|
|
39948
|
+
createSignal as B,
|
|
39949
|
+
createEffect as C,
|
|
39950
|
+
onCleanup as D,
|
|
39936
39951
|
EMU_PER_PX as E,
|
|
39937
|
-
|
|
39938
|
-
|
|
39939
|
-
|
|
39940
|
-
|
|
39941
|
-
|
|
39942
|
-
|
|
39943
|
-
|
|
39944
|
-
|
|
39945
|
-
|
|
39946
|
-
|
|
39952
|
+
buildCanvasLayoutSnapshot as F,
|
|
39953
|
+
on as G,
|
|
39954
|
+
onMount as H,
|
|
39955
|
+
debounce as I,
|
|
39956
|
+
unwrap as J,
|
|
39957
|
+
getDocumentParagraphs as K,
|
|
39958
|
+
createEditorTableCell as L,
|
|
39959
|
+
createEditorTableRow as M,
|
|
39960
|
+
createEditorTable as N,
|
|
39961
|
+
getDocumentSectionsCanonical as O,
|
|
39947
39962
|
PT_PER_PX as P,
|
|
39948
|
-
|
|
39949
|
-
|
|
39950
|
-
|
|
39951
|
-
|
|
39952
|
-
|
|
39953
|
-
|
|
39954
|
-
|
|
39955
|
-
|
|
39956
|
-
|
|
39957
|
-
|
|
39958
|
-
|
|
39963
|
+
createEditorDocument as Q,
|
|
39964
|
+
getPageContentWidth as R,
|
|
39965
|
+
getDocumentPageSettings as S,
|
|
39966
|
+
getTableCellContentWidthForParagraph as T,
|
|
39967
|
+
resolveResizedDimensions as U,
|
|
39968
|
+
resolveImageSrc as V,
|
|
39969
|
+
resolveTextBoxRenderHeight as W,
|
|
39970
|
+
TWIPS_PER_POINT as X,
|
|
39971
|
+
PX_PER_INCH as Y,
|
|
39972
|
+
TWIPS_PER_INCH as Z,
|
|
39973
|
+
resolveEffectiveParagraphStyle as _,
|
|
39959
39974
|
getParagraphLength as a,
|
|
39960
|
-
|
|
39961
|
-
|
|
39962
|
-
|
|
39963
|
-
|
|
39964
|
-
|
|
39965
|
-
|
|
39966
|
-
|
|
39967
|
-
|
|
39968
|
-
|
|
39969
|
-
|
|
39970
|
-
|
|
39971
|
-
|
|
39972
|
-
|
|
39973
|
-
|
|
39974
|
-
|
|
39975
|
-
|
|
39976
|
-
|
|
39977
|
-
|
|
39978
|
-
|
|
39979
|
-
|
|
39980
|
-
|
|
39981
|
-
|
|
39982
|
-
|
|
39983
|
-
|
|
39984
|
-
|
|
39985
|
-
|
|
39986
|
-
|
|
39987
|
-
|
|
39988
|
-
|
|
39989
|
-
|
|
39990
|
-
|
|
39991
|
-
|
|
39992
|
-
|
|
39993
|
-
|
|
39994
|
-
|
|
39995
|
-
|
|
39996
|
-
|
|
39997
|
-
|
|
39998
|
-
|
|
39999
|
-
|
|
40000
|
-
|
|
40001
|
-
|
|
40002
|
-
|
|
40003
|
-
|
|
40004
|
-
|
|
40005
|
-
|
|
40006
|
-
|
|
40007
|
-
|
|
40008
|
-
|
|
40009
|
-
|
|
40010
|
-
|
|
40011
|
-
|
|
40012
|
-
|
|
40013
|
-
|
|
40014
|
-
|
|
40015
|
-
|
|
40016
|
-
|
|
40017
|
-
|
|
40018
|
-
|
|
40019
|
-
|
|
40020
|
-
|
|
40021
|
-
|
|
40022
|
-
|
|
40023
|
-
|
|
39975
|
+
createToolbarRegistry as a$,
|
|
39976
|
+
EMU_PER_PT as a0,
|
|
39977
|
+
iterateEndnoteReferenceRuns as a1,
|
|
39978
|
+
imageContentTypeDefaults as a2,
|
|
39979
|
+
JSZip as a3,
|
|
39980
|
+
imageExtensionFromMime as a4,
|
|
39981
|
+
pxToPt as a5,
|
|
39982
|
+
resolveFloatingObjectRect as a6,
|
|
39983
|
+
getTextBoxFloatingGeometry as a7,
|
|
39984
|
+
getPresetPathSegments as a8,
|
|
39985
|
+
projectBlocksLayout as a9,
|
|
39986
|
+
findFootnoteReference as aA,
|
|
39987
|
+
FOOTNOTE_MARKER_GUTTER_PX as aB,
|
|
39988
|
+
resolveImporterForFile as aC,
|
|
39989
|
+
createEditorStateFromDocument as aD,
|
|
39990
|
+
getDocumentParagraphsCanonical as aE,
|
|
39991
|
+
getToolbarStyleState as aF,
|
|
39992
|
+
STANDARD_FONT_SIZES_PT as aG,
|
|
39993
|
+
fontSizePxToPt as aH,
|
|
39994
|
+
probeLocalFontFamilies as aI,
|
|
39995
|
+
createInitialEditorState as aJ,
|
|
39996
|
+
parseFontSizePtToPx as aK,
|
|
39997
|
+
formatFontSizePt as aL,
|
|
39998
|
+
underlineStyleToCssDecorationStyle as aM,
|
|
39999
|
+
listKindForTag as aN,
|
|
40000
|
+
isParagraphTag as aO,
|
|
40001
|
+
collectInlineRuns as aP,
|
|
40002
|
+
parseParagraphStyle as aQ,
|
|
40003
|
+
getCachedCanvasImage as aR,
|
|
40004
|
+
getHeadingLevel as aS,
|
|
40005
|
+
preciseFontModeVersion as aT,
|
|
40006
|
+
isPreciseFontModeEnabled as aU,
|
|
40007
|
+
togglePreciseFontMode as aV,
|
|
40008
|
+
nextFontSizePt as aW,
|
|
40009
|
+
previousFontSizePt as aX,
|
|
40010
|
+
fontSizePtToPx as aY,
|
|
40011
|
+
createDefaultToolbarPreset as aZ,
|
|
40012
|
+
MenuRegistry as a_,
|
|
40013
|
+
buildListLabels as aa,
|
|
40014
|
+
textStyleToFontSizePt as ab,
|
|
40015
|
+
PX_PER_POINT as ac,
|
|
40016
|
+
DEFAULT_FONT_SIZE_PX as ad,
|
|
40017
|
+
isDoubleUnderlineStyle as ae,
|
|
40018
|
+
isWavyUnderlineStyle as af,
|
|
40019
|
+
underlineStyleLineWidthPx as ag,
|
|
40020
|
+
underlineStyleDashArray as ah,
|
|
40021
|
+
resolveListLabel as ai,
|
|
40022
|
+
getListLabelInset as aj,
|
|
40023
|
+
getAlignedListLabelInset as ak,
|
|
40024
|
+
getParagraphBorderInsets as al,
|
|
40025
|
+
buildSegmentTable as am,
|
|
40026
|
+
buildCanvasTableLayout as an,
|
|
40027
|
+
normalizeFamily as ao,
|
|
40028
|
+
ROBOTO_FONT_FILES as ap,
|
|
40029
|
+
loadFontAsset as aq,
|
|
40030
|
+
OFFICE_COMPAT_FONT_FAMILIES as ar,
|
|
40031
|
+
buildSfnt as as,
|
|
40032
|
+
defaultFontDecoderRegistry as at,
|
|
40033
|
+
SfntFontProgram as au,
|
|
40034
|
+
collectPdfFontFamilies as av,
|
|
40035
|
+
projectDocumentLayout as aw,
|
|
40036
|
+
getPageHeaderZoneTop as ax,
|
|
40037
|
+
getPageBodyTop as ay,
|
|
40038
|
+
getPageColumnRects as az,
|
|
40024
40039
|
createEditorRun as b,
|
|
40025
|
-
|
|
40026
|
-
|
|
40027
|
-
|
|
40028
|
-
|
|
40029
|
-
|
|
40030
|
-
|
|
40031
|
-
|
|
40032
|
-
|
|
40033
|
-
|
|
40034
|
-
|
|
40035
|
-
|
|
40036
|
-
|
|
40037
|
-
|
|
40038
|
-
|
|
40039
|
-
|
|
40040
|
-
|
|
40041
|
-
|
|
40042
|
-
|
|
40043
|
-
|
|
40044
|
-
|
|
40045
|
-
|
|
40046
|
-
|
|
40047
|
-
|
|
40048
|
-
|
|
40049
|
-
|
|
40050
|
-
|
|
40051
|
-
|
|
40052
|
-
|
|
40053
|
-
|
|
40054
|
-
|
|
40055
|
-
|
|
40056
|
-
|
|
40057
|
-
|
|
40058
|
-
|
|
40059
|
-
|
|
40060
|
-
|
|
40061
|
-
|
|
40062
|
-
|
|
40063
|
-
|
|
40064
|
-
|
|
40065
|
-
|
|
40066
|
-
|
|
40067
|
-
|
|
40068
|
-
|
|
40069
|
-
|
|
40070
|
-
|
|
40071
|
-
|
|
40072
|
-
|
|
40073
|
-
|
|
40074
|
-
|
|
40075
|
-
|
|
40076
|
-
|
|
40077
|
-
|
|
40078
|
-
|
|
40079
|
-
|
|
40080
|
-
|
|
40081
|
-
|
|
40082
|
-
|
|
40083
|
-
|
|
40084
|
-
|
|
40085
|
-
|
|
40086
|
-
|
|
40087
|
-
|
|
40088
|
-
|
|
40040
|
+
DEFAULT_PALETTE as b$,
|
|
40041
|
+
Editor as b0,
|
|
40042
|
+
resolveCommandRef as b1,
|
|
40043
|
+
commandRefName as b2,
|
|
40044
|
+
InlineShell as b3,
|
|
40045
|
+
BalloonShell as b4,
|
|
40046
|
+
DocumentShell as b5,
|
|
40047
|
+
createMemo as b6,
|
|
40048
|
+
getCaretRectFromSnapshot as b7,
|
|
40049
|
+
getParagraphRectFromSnapshot as b8,
|
|
40050
|
+
createComponent as b9,
|
|
40051
|
+
getParagraphEntries as bA,
|
|
40052
|
+
getParagraphById as bB,
|
|
40053
|
+
PluginUiHost as bC,
|
|
40054
|
+
OasisEditorEditor as bD,
|
|
40055
|
+
perfTimer as bE,
|
|
40056
|
+
OasisBrandMark as bF,
|
|
40057
|
+
setPreciseFontPreference as bG,
|
|
40058
|
+
setWelcomeSeen as bH,
|
|
40059
|
+
enablePreciseFontMode as bI,
|
|
40060
|
+
createOasisEditorClient as bJ,
|
|
40061
|
+
createEditorZoom as bK,
|
|
40062
|
+
startLongTaskObserver as bL,
|
|
40063
|
+
installGlobalReport as bM,
|
|
40064
|
+
applyStoredPreciseFontPreference as bN,
|
|
40065
|
+
getWelcomeSeen as bO,
|
|
40066
|
+
isLocalFontAccessSupported as bP,
|
|
40067
|
+
EDITOR_SCROLL_PADDING_PX as bQ,
|
|
40068
|
+
Toolbar as bR,
|
|
40069
|
+
OasisEditorLoading as bS,
|
|
40070
|
+
I18nProvider as bT,
|
|
40071
|
+
createEditorLogger as bU,
|
|
40072
|
+
createTranslator as bV,
|
|
40073
|
+
registerDomStatsSurface as bW,
|
|
40074
|
+
Button as bX,
|
|
40075
|
+
Checkbox as bY,
|
|
40076
|
+
ColorPicker as bZ,
|
|
40077
|
+
CommandRegistry as b_,
|
|
40078
|
+
CaretOverlay as ba,
|
|
40079
|
+
Show as bb,
|
|
40080
|
+
createRenderEffect as bc,
|
|
40081
|
+
style as bd,
|
|
40082
|
+
setAttribute as be,
|
|
40083
|
+
setStyleProperty as bf,
|
|
40084
|
+
memo as bg,
|
|
40085
|
+
template as bh,
|
|
40086
|
+
useI18n as bi,
|
|
40087
|
+
insert as bj,
|
|
40088
|
+
use as bk,
|
|
40089
|
+
addEventListener as bl,
|
|
40090
|
+
Dialog as bm,
|
|
40091
|
+
delegateEvents as bn,
|
|
40092
|
+
className as bo,
|
|
40093
|
+
For as bp,
|
|
40094
|
+
UNDERLINE_STYLE_OPTIONS as bq,
|
|
40095
|
+
Tabs as br,
|
|
40096
|
+
measureParagraphMinContentWidthPx as bs,
|
|
40097
|
+
getEditableBlocksForZone as bt,
|
|
40098
|
+
findParagraphLocation as bu,
|
|
40099
|
+
createSectionBoundaryParagraph as bv,
|
|
40100
|
+
normalizePageSettings as bw,
|
|
40101
|
+
DEFAULT_EDITOR_PAGE_SETTINGS as bx,
|
|
40102
|
+
markStart as by,
|
|
40103
|
+
markEnd as bz,
|
|
40089
40104
|
createEditorParagraphFromRuns as c,
|
|
40090
|
-
|
|
40091
|
-
|
|
40092
|
-
|
|
40093
|
-
|
|
40094
|
-
|
|
40095
|
-
|
|
40096
|
-
|
|
40097
|
-
|
|
40098
|
-
|
|
40099
|
-
|
|
40100
|
-
|
|
40101
|
-
|
|
40102
|
-
|
|
40103
|
-
|
|
40104
|
-
|
|
40105
|
-
|
|
40106
|
-
|
|
40107
|
-
|
|
40108
|
-
|
|
40109
|
-
|
|
40110
|
-
|
|
40111
|
-
|
|
40112
|
-
|
|
40113
|
-
|
|
40114
|
-
|
|
40115
|
-
|
|
40116
|
-
|
|
40117
|
-
|
|
40105
|
+
DialogFooter as c0,
|
|
40106
|
+
FloatingActionButton as c1,
|
|
40107
|
+
GridPicker as c2,
|
|
40108
|
+
IconButton as c3,
|
|
40109
|
+
Menu as c4,
|
|
40110
|
+
OASIS_BUILTIN_COMMANDS as c5,
|
|
40111
|
+
OASIS_MENU_ITEMS as c6,
|
|
40112
|
+
OASIS_TOOLBAR_ITEMS as c7,
|
|
40113
|
+
OasisEditorAppLazy as c8,
|
|
40114
|
+
OasisEditorContainer as c9,
|
|
40115
|
+
PluginCollection as ca,
|
|
40116
|
+
Popover as cb,
|
|
40117
|
+
RIBBON_TABS as cc,
|
|
40118
|
+
Select as cd,
|
|
40119
|
+
SelectField as ce,
|
|
40120
|
+
Separator as cf,
|
|
40121
|
+
SidePanel as cg,
|
|
40122
|
+
SidePanelBody as ch,
|
|
40123
|
+
SidePanelFooter as ci,
|
|
40124
|
+
SidePanelHeader as cj,
|
|
40125
|
+
SplitButton as ck,
|
|
40126
|
+
TextField as cl,
|
|
40127
|
+
Button$1 as cm,
|
|
40128
|
+
buildRibbonTabDefinitions as cn,
|
|
40129
|
+
createEditorCommandBus as co,
|
|
40130
|
+
createOasisEditor as cp,
|
|
40131
|
+
createOasisEditorContainer as cq,
|
|
40132
|
+
mount as cr,
|
|
40133
|
+
registerToolbarRenderer as cs,
|
|
40118
40134
|
getDocumentSections as d,
|
|
40119
40135
|
createEditorStyledRun as e,
|
|
40120
40136
|
getParagraphText as f,
|
|
40121
40137
|
getParagraphs as g,
|
|
40122
40138
|
getActiveZone as h,
|
|
40123
|
-
|
|
40124
|
-
|
|
40125
|
-
|
|
40126
|
-
|
|
40127
|
-
|
|
40139
|
+
isInlineObjectRun as i,
|
|
40140
|
+
getActiveSectionIndex as j,
|
|
40141
|
+
paragraphOffsetToPosition as k,
|
|
40142
|
+
clampPosition as l,
|
|
40143
|
+
findParagraphIndex as m,
|
|
40128
40144
|
normalizeSelection as n,
|
|
40129
|
-
|
|
40145
|
+
createCollapsedSelection as o,
|
|
40130
40146
|
positionToParagraphOffset as p,
|
|
40131
|
-
|
|
40132
|
-
|
|
40133
|
-
|
|
40134
|
-
|
|
40135
|
-
|
|
40136
|
-
|
|
40137
|
-
|
|
40138
|
-
|
|
40139
|
-
|
|
40140
|
-
|
|
40147
|
+
isSelectionCollapsed as q,
|
|
40148
|
+
assertNever as r,
|
|
40149
|
+
createEditorParagraph as s,
|
|
40150
|
+
getBlockParagraphs as t,
|
|
40151
|
+
createEditorFootnote as u,
|
|
40152
|
+
createFootnoteReferenceRun as v,
|
|
40153
|
+
renumberFootnotes as w,
|
|
40154
|
+
iterateFootnoteReferenceRuns as x,
|
|
40155
|
+
getFootnoteDisplayMarker as y,
|
|
40156
|
+
findParagraphTableLocation as z
|
|
40141
40157
|
};
|
package/dist/oasis-editor.js
CHANGED
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { b4, bX, bY, bZ, b_, b$, bm, c0, b5, b0, c1, c2, c3, b3, c4, a_, c5, c6, c7, c8, c9, bS, ca, cb, cc, cd, ce, cf, cg, ch, ci, cj, ck, br, cl, bR, cm, bZ as bZ2, c2 as c22, c4 as c42, cd as cd2, cf as cf2, ck as ck2, cn, b2, aZ, co, cp, cq, a$, cr, cs, b1 } from "./index-BBQr5P8i.js";
|
|
2
2
|
export {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
3
|
+
b4 as BalloonShell,
|
|
4
|
+
bX as Button,
|
|
5
|
+
bY as Checkbox,
|
|
6
|
+
bZ as ColorPicker,
|
|
7
|
+
b_ as CommandRegistry,
|
|
8
|
+
b$ as DEFAULT_PALETTE,
|
|
9
|
+
bm as Dialog,
|
|
10
|
+
c0 as DialogFooter,
|
|
11
|
+
b5 as DocumentShell,
|
|
12
|
+
b0 as Editor,
|
|
13
|
+
c1 as FloatingActionButton,
|
|
14
|
+
c2 as GridPicker,
|
|
15
|
+
c3 as IconButton,
|
|
16
|
+
b3 as InlineShell,
|
|
17
|
+
c4 as Menu,
|
|
18
|
+
a_ as MenuRegistry,
|
|
19
|
+
c5 as OASIS_BUILTIN_COMMANDS,
|
|
20
|
+
c6 as OASIS_MENU_ITEMS,
|
|
21
|
+
c7 as OASIS_TOOLBAR_ITEMS,
|
|
22
|
+
c8 as OasisEditorAppLazy,
|
|
23
|
+
c9 as OasisEditorContainer,
|
|
24
|
+
bS as OasisEditorLoading,
|
|
25
|
+
ca as PluginCollection,
|
|
26
|
+
cb as Popover,
|
|
27
|
+
cc as RIBBON_TABS,
|
|
28
|
+
cd as Select,
|
|
29
|
+
ce as SelectField,
|
|
30
|
+
cf as Separator,
|
|
31
|
+
cg as SidePanel,
|
|
32
|
+
ch as SidePanelBody,
|
|
33
|
+
ci as SidePanelFooter,
|
|
34
|
+
cj as SidePanelHeader,
|
|
35
|
+
ck as SplitButton,
|
|
36
|
+
br as Tabs,
|
|
37
|
+
cl as TextField,
|
|
38
|
+
bR as Toolbar,
|
|
39
|
+
cm as ToolbarButton,
|
|
40
|
+
bZ2 as ToolbarColorPicker,
|
|
41
|
+
c22 as ToolbarGridPicker,
|
|
42
|
+
c42 as ToolbarMenu,
|
|
43
|
+
cd2 as ToolbarSelect,
|
|
44
|
+
cf2 as ToolbarSeparator,
|
|
45
|
+
ck2 as ToolbarSplitButton,
|
|
46
|
+
cn as buildRibbonTabDefinitions,
|
|
47
|
+
b2 as commandRefName,
|
|
48
|
+
aZ as createDefaultToolbarPreset,
|
|
49
|
+
co as createEditorCommandBus,
|
|
50
|
+
cp as createOasisEditor,
|
|
51
|
+
cq as createOasisEditorContainer,
|
|
52
|
+
a$ as createToolbarRegistry,
|
|
53
|
+
cr as mount,
|
|
54
|
+
cs as registerToolbarRenderer,
|
|
55
|
+
b1 as resolveCommandRef
|
|
56
56
|
};
|