oasis-editor 0.0.98 → 0.0.99
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/{OasisEditorApp-QVHCHhPa.js → OasisEditorApp-kxR9P2nm.js} +692 -10
- package/dist/core/textStyleMappings.d.ts +7 -0
- package/dist/export/pdf/writer/PdfFontTable.d.ts +1 -1
- package/dist/export/pdf/writer/pdfTypes.d.ts +5 -0
- package/dist/{index-DBzN897A.js → index-CNuDp_SC.js} +170 -123
- package/dist/oasis-editor.js +50 -50
- package/dist/oasis-editor.umd.cjs +3 -3
- package/dist/text/fonts/core/types.d.ts +6 -1
- package/dist/text/fonts/layout/OpenTypeLayouter.d.ts +21 -0
- package/dist/text/fonts/opentype/GsubTable.d.ts +41 -0
- package/package.json +1 -1
|
@@ -5,4 +5,11 @@ export declare function underlineStyleToCssDecorationStyle(underlineStyle: Under
|
|
|
5
5
|
export declare function isDoubleUnderlineStyle(underlineStyle: UnderlineStyle): boolean;
|
|
6
6
|
export declare function isWavyUnderlineStyle(underlineStyle: UnderlineStyle): boolean;
|
|
7
7
|
export declare function underlineStyleLineWidthPx(underlineStyle: UnderlineStyle): number;
|
|
8
|
+
/**
|
|
9
|
+
* Resolves the OpenType GSUB feature tags a run explicitly enables, mirroring the
|
|
10
|
+
* CSS semantics in `styleCss.ts` (only enabled features, no implicit liga/kern).
|
|
11
|
+
* Used by the PDF shaper to drive glyph substitution. Returns a sorted, de-duped
|
|
12
|
+
* array so it doubles as a stable cache key.
|
|
13
|
+
*/
|
|
14
|
+
export declare function resolveOpenTypeFeatureTags(style: EditorTextStyle): string[];
|
|
8
15
|
export declare function underlineStyleDashArray(underlineStyle: UnderlineStyle): number[] | undefined;
|
|
@@ -22,7 +22,7 @@ export declare class PdfFontTable {
|
|
|
22
22
|
* Unicode run, recording the glyphs used for subsetting. Returns `null` when
|
|
23
23
|
* the run produced no glyphs so the caller can skip emission entirely.
|
|
24
24
|
*/
|
|
25
|
-
buildUnicodeShowCommand(state: OasisPdfUnicodeFontState, text: string): string | null;
|
|
25
|
+
buildUnicodeShowCommand(state: OasisPdfUnicodeFontState, text: string, features?: readonly string[]): string | null;
|
|
26
26
|
/**
|
|
27
27
|
* Emits the font objects (base-14 dictionaries and embedded Unicode font
|
|
28
28
|
* programs) for every referenced resource and returns the `/Font` resource
|
|
@@ -73,6 +73,11 @@ export interface OasisPdfTextOptions {
|
|
|
73
73
|
strokeColor?: string;
|
|
74
74
|
/** Stroke line width in pt for render modes 1 and 2. Defaults to 3% of fontSize. */
|
|
75
75
|
strokeWidth?: number;
|
|
76
|
+
/**
|
|
77
|
+
* OpenType GSUB feature tags to apply when shaping this run with an embedded
|
|
78
|
+
* Unicode font (e.g. `["liga", "onum", "ss01"]`). Ignored by base-14 fonts.
|
|
79
|
+
*/
|
|
80
|
+
fontFeatures?: readonly string[];
|
|
76
81
|
}
|
|
77
82
|
export interface OasisPdfImageResource {
|
|
78
83
|
resourceName: string;
|
|
@@ -2519,7 +2519,7 @@ function OasisEditorAppLazy(props = {}) {
|
|
|
2519
2519
|
onCleanup(() => {
|
|
2520
2520
|
cancelled = true;
|
|
2521
2521
|
});
|
|
2522
|
-
import("./OasisEditorApp-
|
|
2522
|
+
import("./OasisEditorApp-kxR9P2nm.js").then((m) => {
|
|
2523
2523
|
cancelled = true;
|
|
2524
2524
|
setProgress(1);
|
|
2525
2525
|
setTimeout(() => setApp(() => m.OasisEditorApp), 180);
|
|
@@ -20934,6 +20934,33 @@ function underlineStyleLineWidthPx(underlineStyle) {
|
|
|
20934
20934
|
return 1;
|
|
20935
20935
|
}
|
|
20936
20936
|
}
|
|
20937
|
+
function resolveOpenTypeFeatureTags(style2) {
|
|
20938
|
+
const tags = /* @__PURE__ */ new Set();
|
|
20939
|
+
switch (style2.ligatures) {
|
|
20940
|
+
case "standard":
|
|
20941
|
+
tags.add("liga");
|
|
20942
|
+
break;
|
|
20943
|
+
case "contextual":
|
|
20944
|
+
tags.add("calt");
|
|
20945
|
+
break;
|
|
20946
|
+
case "historical":
|
|
20947
|
+
tags.add("hlig");
|
|
20948
|
+
break;
|
|
20949
|
+
case "standardContextual":
|
|
20950
|
+
tags.add("liga");
|
|
20951
|
+
tags.add("calt");
|
|
20952
|
+
break;
|
|
20953
|
+
}
|
|
20954
|
+
if (style2.numberForm === "lining") tags.add("lnum");
|
|
20955
|
+
if (style2.numberForm === "oldStyle") tags.add("onum");
|
|
20956
|
+
if (style2.numberSpacing === "proportional") tags.add("pnum");
|
|
20957
|
+
if (style2.numberSpacing === "tabular") tags.add("tnum");
|
|
20958
|
+
if (typeof style2.stylisticSet === "number" && style2.stylisticSet >= 1 && style2.stylisticSet <= 20) {
|
|
20959
|
+
tags.add(`ss${String(style2.stylisticSet).padStart(2, "0")}`);
|
|
20960
|
+
}
|
|
20961
|
+
if (style2.contextualAlternates) tags.add("calt");
|
|
20962
|
+
return Array.from(tags).sort();
|
|
20963
|
+
}
|
|
20937
20964
|
function underlineStyleDashArray(underlineStyle) {
|
|
20938
20965
|
switch (underlineStyle) {
|
|
20939
20966
|
case "dotted":
|
|
@@ -21499,7 +21526,7 @@ function resolveCanvasTextFill(ctx, styles, line, fragment, originX, originY) {
|
|
|
21499
21526
|
return gradient;
|
|
21500
21527
|
}
|
|
21501
21528
|
function drawStyledText(ctx, text, x, y, scale, styles) {
|
|
21502
|
-
const hasEffects = styles.outline || styles.shadow || styles.textShadow || styles.glow || styles.emboss || styles.imprint || styles.textOutline;
|
|
21529
|
+
const hasEffects = styles.outline || styles.shadow || styles.textShadow || styles.glow || styles.emboss || styles.imprint || styles.textOutline || styles.reflection;
|
|
21503
21530
|
if (!hasEffects) {
|
|
21504
21531
|
drawScaledText(ctx, text, x, y, scale);
|
|
21505
21532
|
return;
|
|
@@ -21568,6 +21595,24 @@ function drawStyledText(ctx, text, x, y, scale, styles) {
|
|
|
21568
21595
|
drawScaledText(ctx, text, x, y, scale);
|
|
21569
21596
|
}
|
|
21570
21597
|
ctx.restore();
|
|
21598
|
+
if (styles.reflection) {
|
|
21599
|
+
const ref = styles.reflection;
|
|
21600
|
+
const distPx = ref.distPt * PX_PER_POINT;
|
|
21601
|
+
const avgAlpha = Math.max(
|
|
21602
|
+
0,
|
|
21603
|
+
Math.min(1, (ref.startAlpha + ref.endAlpha) / 2)
|
|
21604
|
+
);
|
|
21605
|
+
ctx.save();
|
|
21606
|
+
ctx.shadowColor = "transparent";
|
|
21607
|
+
ctx.globalAlpha = avgAlpha;
|
|
21608
|
+
if (ref.blurPt > 0 && "filter" in ctx) {
|
|
21609
|
+
ctx.filter = `blur(${ref.blurPt * PX_PER_POINT}px)`;
|
|
21610
|
+
}
|
|
21611
|
+
ctx.translate(0, 2 * y + distPx);
|
|
21612
|
+
ctx.scale(1, -1);
|
|
21613
|
+
drawScaledText(ctx, text, x, y, scale);
|
|
21614
|
+
ctx.restore();
|
|
21615
|
+
}
|
|
21571
21616
|
}
|
|
21572
21617
|
function drawFragmentBorder(ctx, line, fragment, originX, originY, border) {
|
|
21573
21618
|
if (border.type === "none" || border.width <= 0) return;
|
|
@@ -41833,7 +41878,7 @@ export {
|
|
|
41833
41878
|
createRenderEffect as Z,
|
|
41834
41879
|
style as _,
|
|
41835
41880
|
assertNever as a,
|
|
41836
|
-
|
|
41881
|
+
ROBOTO_FONT_FILES as a$,
|
|
41837
41882
|
setStyleProperty as a0,
|
|
41838
41883
|
memo as a1,
|
|
41839
41884
|
template as a2,
|
|
@@ -41856,21 +41901,21 @@ export {
|
|
|
41856
41901
|
getImageFloatingGeometry as aJ,
|
|
41857
41902
|
textStyleToFontSizePt as aK,
|
|
41858
41903
|
PX_PER_POINT as aL,
|
|
41859
|
-
|
|
41860
|
-
|
|
41861
|
-
|
|
41862
|
-
|
|
41863
|
-
|
|
41864
|
-
|
|
41865
|
-
|
|
41866
|
-
|
|
41867
|
-
|
|
41868
|
-
|
|
41869
|
-
|
|
41870
|
-
|
|
41871
|
-
|
|
41872
|
-
|
|
41873
|
-
|
|
41904
|
+
resolveOpenTypeFeatureTags as aM,
|
|
41905
|
+
DEFAULT_FONT_SIZE_PX as aN,
|
|
41906
|
+
isDoubleUnderlineStyle as aO,
|
|
41907
|
+
isWavyUnderlineStyle as aP,
|
|
41908
|
+
underlineStyleLineWidthPx as aQ,
|
|
41909
|
+
underlineStyleDashArray as aR,
|
|
41910
|
+
resolveListLabel as aS,
|
|
41911
|
+
getListLabelInset as aT,
|
|
41912
|
+
getAlignedListLabelInset as aU,
|
|
41913
|
+
getParagraphBorderInsets as aV,
|
|
41914
|
+
buildSegmentTable as aW,
|
|
41915
|
+
buildCanvasTableLayout as aX,
|
|
41916
|
+
resolveCanvasTableWidth as aY,
|
|
41917
|
+
resolveFloatingTableRect as aZ,
|
|
41918
|
+
normalizeFamily as a_,
|
|
41874
41919
|
className as aa,
|
|
41875
41920
|
For as ab,
|
|
41876
41921
|
UNDERLINE_STYLE_OPTIONS as ac,
|
|
@@ -41898,112 +41943,114 @@ export {
|
|
|
41898
41943
|
getRunFieldChar as ay,
|
|
41899
41944
|
getRunFieldInstruction as az,
|
|
41900
41945
|
createEditorStateFromDocument as b,
|
|
41901
|
-
|
|
41902
|
-
|
|
41903
|
-
|
|
41904
|
-
|
|
41905
|
-
|
|
41906
|
-
|
|
41907
|
-
|
|
41908
|
-
|
|
41909
|
-
|
|
41910
|
-
|
|
41911
|
-
|
|
41912
|
-
|
|
41913
|
-
|
|
41914
|
-
|
|
41915
|
-
|
|
41916
|
-
|
|
41917
|
-
|
|
41918
|
-
|
|
41919
|
-
|
|
41920
|
-
|
|
41921
|
-
|
|
41922
|
-
|
|
41923
|
-
|
|
41924
|
-
|
|
41925
|
-
|
|
41926
|
-
|
|
41927
|
-
|
|
41928
|
-
|
|
41929
|
-
|
|
41930
|
-
|
|
41931
|
-
|
|
41932
|
-
|
|
41933
|
-
|
|
41934
|
-
|
|
41935
|
-
|
|
41936
|
-
|
|
41937
|
-
|
|
41938
|
-
|
|
41939
|
-
|
|
41940
|
-
|
|
41941
|
-
|
|
41942
|
-
|
|
41943
|
-
|
|
41944
|
-
|
|
41945
|
-
|
|
41946
|
-
|
|
41947
|
-
|
|
41948
|
-
|
|
41949
|
-
|
|
41950
|
-
|
|
41951
|
-
|
|
41952
|
-
|
|
41953
|
-
|
|
41954
|
-
|
|
41955
|
-
|
|
41956
|
-
|
|
41957
|
-
|
|
41958
|
-
|
|
41959
|
-
|
|
41960
|
-
|
|
41961
|
-
|
|
41962
|
-
|
|
41963
|
-
|
|
41964
|
-
|
|
41946
|
+
getWelcomeSeen as b$,
|
|
41947
|
+
loadFontAsset as b0,
|
|
41948
|
+
OFFICE_COMPAT_FONT_FAMILIES as b1,
|
|
41949
|
+
BinaryReader as b2,
|
|
41950
|
+
buildSfnt as b3,
|
|
41951
|
+
defaultFontDecoderRegistry as b4,
|
|
41952
|
+
SfntFontProgram as b5,
|
|
41953
|
+
collectPdfFontFamilies as b6,
|
|
41954
|
+
projectDocumentLayout as b7,
|
|
41955
|
+
getPageContentWidth as b8,
|
|
41956
|
+
getPageHeaderZoneTop as b9,
|
|
41957
|
+
markStart as bA,
|
|
41958
|
+
markEnd as bB,
|
|
41959
|
+
getParagraphEntries as bC,
|
|
41960
|
+
getParagraphById as bD,
|
|
41961
|
+
createEditorFootnote as bE,
|
|
41962
|
+
createFootnoteReferenceRun as bF,
|
|
41963
|
+
renumberFootnotes as bG,
|
|
41964
|
+
getFootnoteDisplayMarker as bH,
|
|
41965
|
+
getHeadingLevel as bI,
|
|
41966
|
+
preciseFontModeVersion as bJ,
|
|
41967
|
+
isPreciseFontModeEnabled as bK,
|
|
41968
|
+
resolveNamedTextStyle as bL,
|
|
41969
|
+
togglePreciseFontMode as bM,
|
|
41970
|
+
nextFontSizePt as bN,
|
|
41971
|
+
previousFontSizePt as bO,
|
|
41972
|
+
fontSizePtToPx as bP,
|
|
41973
|
+
createDefaultToolbarPreset as bQ,
|
|
41974
|
+
MenuRegistry as bR,
|
|
41975
|
+
createToolbarRegistry as bS,
|
|
41976
|
+
Editor as bT,
|
|
41977
|
+
resolveCommandRef as bU,
|
|
41978
|
+
commandRefName as bV,
|
|
41979
|
+
createOasisEditorClient as bW,
|
|
41980
|
+
createEditorZoom as bX,
|
|
41981
|
+
startLongTaskObserver as bY,
|
|
41982
|
+
installGlobalReport as bZ,
|
|
41983
|
+
applyStoredPreciseFontPreference as b_,
|
|
41984
|
+
getPageBodyTop as ba,
|
|
41985
|
+
getPageColumnRects as bb,
|
|
41986
|
+
findFootnoteReference as bc,
|
|
41987
|
+
FOOTNOTE_MARKER_GUTTER_PX as bd,
|
|
41988
|
+
resolveImporterForFile as be,
|
|
41989
|
+
getDocumentSectionsCanonical as bf,
|
|
41990
|
+
getDocumentParagraphsCanonical as bg,
|
|
41991
|
+
getDocumentParagraphs as bh,
|
|
41992
|
+
getDocumentPageSettings as bi,
|
|
41993
|
+
getTableCellContentWidthForParagraph as bj,
|
|
41994
|
+
on as bk,
|
|
41995
|
+
debounce as bl,
|
|
41996
|
+
unwrap as bm,
|
|
41997
|
+
perfTimer as bn,
|
|
41998
|
+
getRunTextBox as bo,
|
|
41999
|
+
createEditorDocument as bp,
|
|
42000
|
+
resolveResizedDimensions as bq,
|
|
42001
|
+
resolveTextBoxRenderHeight as br,
|
|
42002
|
+
getToolbarStyleState as bs,
|
|
42003
|
+
getCachedCanvasImage as bt,
|
|
42004
|
+
measureParagraphMinContentWidthPx as bu,
|
|
42005
|
+
getEditableBlocksForZone as bv,
|
|
42006
|
+
findParagraphLocation as bw,
|
|
42007
|
+
createSectionBoundaryParagraph as bx,
|
|
42008
|
+
normalizePageSettings as by,
|
|
42009
|
+
DEFAULT_EDITOR_PAGE_SETTINGS as bz,
|
|
41965
42010
|
createSignal as c,
|
|
41966
|
-
|
|
41967
|
-
|
|
41968
|
-
|
|
41969
|
-
|
|
41970
|
-
|
|
41971
|
-
|
|
41972
|
-
|
|
41973
|
-
|
|
41974
|
-
|
|
41975
|
-
|
|
41976
|
-
|
|
41977
|
-
|
|
41978
|
-
|
|
41979
|
-
|
|
41980
|
-
|
|
41981
|
-
|
|
41982
|
-
|
|
41983
|
-
|
|
41984
|
-
|
|
41985
|
-
|
|
41986
|
-
|
|
41987
|
-
|
|
41988
|
-
|
|
41989
|
-
|
|
41990
|
-
|
|
41991
|
-
|
|
41992
|
-
|
|
41993
|
-
|
|
41994
|
-
|
|
41995
|
-
|
|
41996
|
-
|
|
41997
|
-
|
|
41998
|
-
|
|
41999
|
-
|
|
42000
|
-
|
|
42001
|
-
|
|
42002
|
-
|
|
42003
|
-
|
|
42004
|
-
|
|
42005
|
-
|
|
42006
|
-
|
|
42011
|
+
isLocalFontAccessSupported as c0,
|
|
42012
|
+
EDITOR_SCROLL_PADDING_PX as c1,
|
|
42013
|
+
Toolbar as c2,
|
|
42014
|
+
OasisEditorLoading as c3,
|
|
42015
|
+
I18nProvider as c4,
|
|
42016
|
+
createTranslator as c5,
|
|
42017
|
+
createEditorLogger as c6,
|
|
42018
|
+
registerDomStatsSurface as c7,
|
|
42019
|
+
Button as c8,
|
|
42020
|
+
Checkbox as c9,
|
|
42021
|
+
Button$1 as cA,
|
|
42022
|
+
buildRibbonTabDefinitions as cB,
|
|
42023
|
+
createEditorCommandBus as cC,
|
|
42024
|
+
createOasisEditor as cD,
|
|
42025
|
+
createOasisEditorContainer as cE,
|
|
42026
|
+
mount as cF,
|
|
42027
|
+
registerToolbarRenderer as cG,
|
|
42028
|
+
ColorPicker as ca,
|
|
42029
|
+
CommandRegistry as cb,
|
|
42030
|
+
DEFAULT_PALETTE as cc,
|
|
42031
|
+
DialogFooter as cd,
|
|
42032
|
+
FloatingActionButton as ce,
|
|
42033
|
+
GridPicker as cf,
|
|
42034
|
+
IconButton as cg,
|
|
42035
|
+
Menu as ch,
|
|
42036
|
+
OASIS_BUILTIN_COMMANDS as ci,
|
|
42037
|
+
OASIS_MENU_ITEMS as cj,
|
|
42038
|
+
OASIS_TOOLBAR_ITEMS as ck,
|
|
42039
|
+
OasisEditorAppLazy as cl,
|
|
42040
|
+
OasisEditorContainer as cm,
|
|
42041
|
+
PluginCollection as cn,
|
|
42042
|
+
Popover as co,
|
|
42043
|
+
RIBBON_TABS as cp,
|
|
42044
|
+
Select as cq,
|
|
42045
|
+
SelectField as cr,
|
|
42046
|
+
Separator as cs,
|
|
42047
|
+
SidePanel as ct,
|
|
42048
|
+
SidePanelBody as cu,
|
|
42049
|
+
SidePanelFooter as cv,
|
|
42050
|
+
SidePanelHeader as cw,
|
|
42051
|
+
SplitButton as cx,
|
|
42052
|
+
StyleGallery as cy,
|
|
42053
|
+
TextField as cz,
|
|
42007
42054
|
createInitialEditorState as d,
|
|
42008
42055
|
createEditorParagraphFromRuns as e,
|
|
42009
42056
|
fontSizePxToPt as f,
|
package/dist/oasis-editor.js
CHANGED
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
import { O,
|
|
1
|
+
import { O, c8, c9, ca, cb, cc, a8, cd, Q, bT, ce, cf, cg, N, ch, bR, ci, cj, ck, cl, cm, c3, cn, co, cp, cq, cr, cs, ct, cu, cv, cw, cx, cy, ad, cz, c2, cA, ca as ca2, cf as cf2, ch as ch2, cq as cq2, cs as cs2, cx as cx2, cB, bV, bQ, cC, cD, cE, bS, cF, cG, bU } from "./index-CNuDp_SC.js";
|
|
2
2
|
export {
|
|
3
3
|
O as BalloonShell,
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
c8 as Button,
|
|
5
|
+
c9 as Checkbox,
|
|
6
|
+
ca as ColorPicker,
|
|
7
|
+
cb as CommandRegistry,
|
|
8
|
+
cc as DEFAULT_PALETTE,
|
|
9
9
|
a8 as Dialog,
|
|
10
|
-
|
|
10
|
+
cd as DialogFooter,
|
|
11
11
|
Q as DocumentShell,
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
bT as Editor,
|
|
13
|
+
ce as FloatingActionButton,
|
|
14
|
+
cf as GridPicker,
|
|
15
|
+
cg as IconButton,
|
|
16
16
|
N as InlineShell,
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
17
|
+
ch as Menu,
|
|
18
|
+
bR as MenuRegistry,
|
|
19
|
+
ci as OASIS_BUILTIN_COMMANDS,
|
|
20
|
+
cj as OASIS_MENU_ITEMS,
|
|
21
|
+
ck as OASIS_TOOLBAR_ITEMS,
|
|
22
|
+
cl as OasisEditorAppLazy,
|
|
23
|
+
cm as OasisEditorContainer,
|
|
24
|
+
c3 as OasisEditorLoading,
|
|
25
|
+
cn as PluginCollection,
|
|
26
|
+
co as Popover,
|
|
27
|
+
cp as RIBBON_TABS,
|
|
28
|
+
cq as Select,
|
|
29
|
+
cr as SelectField,
|
|
30
|
+
cs as Separator,
|
|
31
|
+
ct as SidePanel,
|
|
32
|
+
cu as SidePanelBody,
|
|
33
|
+
cv as SidePanelFooter,
|
|
34
|
+
cw as SidePanelHeader,
|
|
35
|
+
cx as SplitButton,
|
|
36
|
+
cy as StyleGallery,
|
|
37
37
|
ad as Tabs,
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
38
|
+
cz as TextField,
|
|
39
|
+
c2 as Toolbar,
|
|
40
|
+
cA as ToolbarButton,
|
|
41
|
+
ca2 as ToolbarColorPicker,
|
|
42
|
+
cf2 as ToolbarGridPicker,
|
|
43
|
+
ch2 as ToolbarMenu,
|
|
44
|
+
cq2 as ToolbarSelect,
|
|
45
|
+
cs2 as ToolbarSeparator,
|
|
46
|
+
cx2 as ToolbarSplitButton,
|
|
47
|
+
cB as buildRibbonTabDefinitions,
|
|
48
|
+
bV as commandRefName,
|
|
49
|
+
bQ as createDefaultToolbarPreset,
|
|
50
|
+
cC as createEditorCommandBus,
|
|
51
|
+
cD as createOasisEditor,
|
|
52
|
+
cE as createOasisEditorContainer,
|
|
53
|
+
bS as createToolbarRegistry,
|
|
54
|
+
cF as mount,
|
|
55
|
+
cG as registerToolbarRenderer,
|
|
56
|
+
bU as resolveCommandRef
|
|
57
57
|
};
|