oasis-editor 0.0.107 → 0.0.108
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-BFNqDc07.js → OasisEditorApp-DkiTrFZ6.js} +1282 -456
- package/dist/export/pdf/OasisPdfWriter.d.ts +23 -2
- package/dist/export/pdf/draw/drawBlockList.d.ts +1 -1
- package/dist/export/pdf/writer/PdfDocumentSerializer.d.ts +2 -2
- package/dist/export/pdf/writer/pdfTypes.d.ts +55 -3
- package/dist/{index-4uLtMJwI.js → index-DzBLUs91.js} +103 -102
- package/dist/oasis-editor.js +50 -50
- package/dist/oasis-editor.umd.cjs +4 -4
- package/package.json +2 -1
|
@@ -1,12 +1,15 @@
|
|
|
1
|
-
import { OasisPdfAxialGradient, OasisPdfFontResource, OasisPdfImageOptions, OasisPdfImageResource, OasisPdfLineOptions, OasisPdfPageSize, OasisPdfPathOptions, OasisPdfRectOptions, OasisPdfTextOptions } from './writer/pdfTypes.js';
|
|
1
|
+
import { OasisPdfAxialGradient, OasisPdfLinkAnnotation, OasisPdfNamedDestination, OasisPdfOutlineItem, OasisPdfDocumentInfo, OasisPdfFontResource, OasisPdfImageOptions, OasisPdfImageResource, OasisPdfLineOptions, OasisPdfPageSize, OasisPdfPathOptions, OasisPdfRectOptions, OasisPdfTextOptions } from './writer/pdfTypes.js';
|
|
2
2
|
|
|
3
|
-
export type { OasisPdfPageSize, OasisPdfPage, OasisPdfRectOptions, OasisPdfLineOptions, OasisPdfPathSegment, OasisPdfPathOptions, OasisPdfTextOptions, OasisPdfImageResource, OasisPdfImageOptions, OasisPdfFontResource, OasisPdfBase14FontResource, OasisPdfUnicodeFontResource, } from './writer/pdfTypes.js';
|
|
3
|
+
export type { OasisPdfPageSize, OasisPdfPage, OasisPdfRectOptions, OasisPdfLineOptions, OasisPdfPathSegment, OasisPdfPathOptions, OasisPdfTextOptions, OasisPdfImageResource, OasisPdfImageOptions, OasisPdfFontResource, OasisPdfBase14FontResource, OasisPdfUnicodeFontResource, OasisPdfLinkAnnotation, OasisPdfAnnotation, OasisPdfNamedDestination, OasisPdfOutlineItem, OasisPdfDocumentInfo, } from './writer/pdfTypes.js';
|
|
4
4
|
export declare class OasisPdfWriter {
|
|
5
5
|
private readonly pages;
|
|
6
6
|
private readonly streams;
|
|
7
7
|
private readonly fonts;
|
|
8
8
|
private readonly images;
|
|
9
9
|
private readonly shadings;
|
|
10
|
+
private readonly namedDestinations;
|
|
11
|
+
private readonly outlineItems;
|
|
12
|
+
private documentInfo;
|
|
10
13
|
constructor(fontResources?: OasisPdfFontResource[]);
|
|
11
14
|
registerFontResource(resource: OasisPdfFontResource): void;
|
|
12
15
|
addPage(size: OasisPdfPageSize): number;
|
|
@@ -29,6 +32,24 @@ export declare class OasisPdfWriter {
|
|
|
29
32
|
resourceName?: string;
|
|
30
33
|
}): string;
|
|
31
34
|
drawImage(pageIndex: number, options: OasisPdfImageOptions): void;
|
|
35
|
+
/**
|
|
36
|
+
* Attaches a clickable external link annotation to a page. The rect is in the
|
|
37
|
+
* writer's top-left point space; the serializer flips it to PDF space.
|
|
38
|
+
*/
|
|
39
|
+
addLinkAnnotation(pageIndex: number, annotation: OasisPdfLinkAnnotation): void;
|
|
40
|
+
/**
|
|
41
|
+
* Registers a named destination (jump target). Position is in the writer's
|
|
42
|
+
* top-left point space. The first registration of a given name wins; later
|
|
43
|
+
* duplicates are ignored so destinations stay unique in the names tree.
|
|
44
|
+
*/
|
|
45
|
+
addNamedDestination(destination: OasisPdfNamedDestination): void;
|
|
46
|
+
/**
|
|
47
|
+
* Appends an outline (bookmarks-panel) entry. Call in document order; the
|
|
48
|
+
* serializer nests entries by `level`.
|
|
49
|
+
*/
|
|
50
|
+
addOutlineItem(item: OasisPdfOutlineItem): void;
|
|
51
|
+
/** Sets the document information dictionary (`/Info`). */
|
|
52
|
+
setDocumentInfo(info: OasisPdfDocumentInfo): void;
|
|
32
53
|
toArrayBuffer(): ArrayBuffer;
|
|
33
54
|
toBlob(): Blob;
|
|
34
55
|
private toUint8Array;
|
|
@@ -2,4 +2,4 @@ import { EditorDocument, EditorLayoutBlock, EditorPageSettings } from '../../../
|
|
|
2
2
|
import { PdfFontRegistry } from '../fonts/PdfFontRegistry.js';
|
|
3
3
|
import { OasisPdfWriter } from '../OasisPdfWriter.js';
|
|
4
4
|
|
|
5
|
-
export declare function drawBlockList(writer: OasisPdfWriter, pageIndex: number, blocks: EditorLayoutBlock[] | undefined, document: EditorDocument, originX: number, originY: number, contentWidth: number, fontRegistry: PdfFontRegistry, listOrdinals: Map<string, string>, pageSettings?: EditorPageSettings): Promise<void>;
|
|
5
|
+
export declare function drawBlockList(writer: OasisPdfWriter, pageIndex: number, blocks: EditorLayoutBlock[] | undefined, document: EditorDocument, originX: number, originY: number, contentWidth: number, fontRegistry: PdfFontRegistry, listOrdinals: Map<string, string>, pageSettings?: EditorPageSettings, onParagraphDrawn?: (paragraphId: string, topPx: number) => void): Promise<void>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { OasisPdfPage } from './pdfTypes.js';
|
|
1
|
+
import { OasisPdfDocumentInfo, OasisPdfNamedDestination, OasisPdfOutlineItem, OasisPdfPage } from './pdfTypes.js';
|
|
2
2
|
import { PdfFontTable } from './PdfFontTable.js';
|
|
3
3
|
import { PdfImageTable } from './PdfImageTable.js';
|
|
4
4
|
import { PdfShadingTable } from './PdfShadingTable.js';
|
|
5
5
|
|
|
6
|
-
export declare function serializePdfDocument(pages: OasisPdfPage[], fonts: PdfFontTable, images: PdfImageTable, shadings: PdfShadingTable): Uint8Array;
|
|
6
|
+
export declare function serializePdfDocument(pages: OasisPdfPage[], fonts: PdfFontTable, images: PdfImageTable, shadings: PdfShadingTable, namedDestinations?: OasisPdfNamedDestination[], outlineItems?: OasisPdfOutlineItem[], documentInfo?: OasisPdfDocumentInfo): Uint8Array;
|
|
@@ -13,6 +13,54 @@ export interface OasisPdfPage {
|
|
|
13
13
|
commands: string[];
|
|
14
14
|
imageResourceNames: Set<string>;
|
|
15
15
|
shadingResourceNames: Set<string>;
|
|
16
|
+
annotations: OasisPdfAnnotation[];
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* A clickable link annotation. The rect is given in the writer's top-left point
|
|
20
|
+
* space (same convention as drawing); the serializer flips y to PDF bottom-left
|
|
21
|
+
* space and emits the `[x1 y1 x2 y2]` `/Rect`. Exactly one of `uri` (external)
|
|
22
|
+
* or `destName` (internal named destination) is set.
|
|
23
|
+
*/
|
|
24
|
+
export interface OasisPdfLinkAnnotation {
|
|
25
|
+
x: number;
|
|
26
|
+
y: number;
|
|
27
|
+
width: number;
|
|
28
|
+
height: number;
|
|
29
|
+
/** External target (`/URI` action). */
|
|
30
|
+
uri?: string;
|
|
31
|
+
/** Internal target: a named destination resolved via the `/Dests` name tree. */
|
|
32
|
+
destName?: string;
|
|
33
|
+
}
|
|
34
|
+
export type OasisPdfAnnotation = OasisPdfLinkAnnotation;
|
|
35
|
+
/**
|
|
36
|
+
* A named destination (a jump target for internal links / the outline). Position
|
|
37
|
+
* is in the writer's top-left point space; the serializer flips y and binds it to
|
|
38
|
+
* the page object as a `/XYZ` destination.
|
|
39
|
+
*/
|
|
40
|
+
export interface OasisPdfNamedDestination {
|
|
41
|
+
name: string;
|
|
42
|
+
pageIndex: number;
|
|
43
|
+
x: number;
|
|
44
|
+
y: number;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* One entry in the document outline (bookmarks panel). Items are supplied in
|
|
48
|
+
* document order; the serializer folds them into a nested tree by `level` (1 =
|
|
49
|
+
* top level). `destName` references a registered named destination.
|
|
50
|
+
*/
|
|
51
|
+
export interface OasisPdfOutlineItem {
|
|
52
|
+
title: string;
|
|
53
|
+
level: number;
|
|
54
|
+
destName: string;
|
|
55
|
+
}
|
|
56
|
+
/** Document information dictionary (`/Info`). All fields optional. */
|
|
57
|
+
export interface OasisPdfDocumentInfo {
|
|
58
|
+
title?: string;
|
|
59
|
+
author?: string;
|
|
60
|
+
subject?: string;
|
|
61
|
+
keywords?: string;
|
|
62
|
+
producer?: string;
|
|
63
|
+
creationDate?: Date;
|
|
16
64
|
}
|
|
17
65
|
/** One color stop of an axial gradient. `offset` is 0–1; `color` is a hex string. */
|
|
18
66
|
export interface OasisPdfGradientStop {
|
|
@@ -131,10 +179,14 @@ export interface OasisPdfUnicodeFontResource {
|
|
|
131
179
|
fontData: Uint8Array;
|
|
132
180
|
postscriptName?: string;
|
|
133
181
|
}
|
|
134
|
-
/**
|
|
182
|
+
/**
|
|
183
|
+
* A serialized indirect PDF object: its 1-based id and dictionary/stream body.
|
|
184
|
+
* The body is a string for text objects, or raw bytes when it embeds a binary
|
|
185
|
+
* (e.g. FlateDecode-compressed) stream that must not pass through UTF-8 encoding.
|
|
186
|
+
*/
|
|
135
187
|
export interface PdfObject {
|
|
136
188
|
id: number;
|
|
137
|
-
body: string;
|
|
189
|
+
body: string | Uint8Array;
|
|
138
190
|
}
|
|
139
191
|
/** Signature of the object-appending closure used during serialization. */
|
|
140
|
-
export type AddPdfObject = (body: string) => number;
|
|
192
|
+
export type AddPdfObject = (body: string | Uint8Array) => number;
|
|
@@ -2519,7 +2519,7 @@ function OasisEditorAppLazy(props = {}) {
|
|
|
2519
2519
|
onCleanup(() => {
|
|
2520
2520
|
cancelled = true;
|
|
2521
2521
|
});
|
|
2522
|
-
import("./OasisEditorApp-
|
|
2522
|
+
import("./OasisEditorApp-DkiTrFZ6.js").then((m) => {
|
|
2523
2523
|
cancelled = true;
|
|
2524
2524
|
setProgress(1);
|
|
2525
2525
|
setTimeout(() => setApp(() => m.OasisEditorApp), 180);
|
|
@@ -41929,7 +41929,7 @@ export {
|
|
|
41929
41929
|
resolveImageSrc as Z,
|
|
41930
41930
|
listKindForTag as _,
|
|
41931
41931
|
getPageContentWidth as a,
|
|
41932
|
-
|
|
41932
|
+
resolveOpenTypeFeatureTags as a$,
|
|
41933
41933
|
collectInlineRuns as a0,
|
|
41934
41934
|
parseParagraphStyle as a1,
|
|
41935
41935
|
getRunImage as a2,
|
|
@@ -41966,7 +41966,7 @@ export {
|
|
|
41966
41966
|
getImageFloatingGeometry as aX,
|
|
41967
41967
|
textStyleToFontSizePt as aY,
|
|
41968
41968
|
PX_PER_POINT as aZ,
|
|
41969
|
-
|
|
41969
|
+
DEFAULT_FONT_SIZE_PX as a_,
|
|
41970
41970
|
CaretOverlay as aa,
|
|
41971
41971
|
Show as ab,
|
|
41972
41972
|
createRenderEffect as ac,
|
|
@@ -41994,7 +41994,7 @@ export {
|
|
|
41994
41994
|
setPreciseFontPreference as ay,
|
|
41995
41995
|
setWelcomeSeen as az,
|
|
41996
41996
|
getPageBodyTop as b,
|
|
41997
|
-
|
|
41997
|
+
nextFontSizePt as b$,
|
|
41998
41998
|
isDoubleUnderlineStyle as b0,
|
|
41999
41999
|
isWavyUnderlineStyle as b1,
|
|
42000
42000
|
underlineStyleLineWidthPx as b2,
|
|
@@ -42005,33 +42005,33 @@ export {
|
|
|
42005
42005
|
getParagraphBorderInsets as b7,
|
|
42006
42006
|
buildSegmentTable as b8,
|
|
42007
42007
|
buildCanvasTableLayout as b9,
|
|
42008
|
-
|
|
42009
|
-
|
|
42010
|
-
|
|
42011
|
-
|
|
42012
|
-
|
|
42013
|
-
|
|
42014
|
-
|
|
42015
|
-
|
|
42016
|
-
|
|
42017
|
-
|
|
42018
|
-
|
|
42019
|
-
|
|
42020
|
-
|
|
42021
|
-
|
|
42022
|
-
|
|
42023
|
-
|
|
42024
|
-
|
|
42025
|
-
|
|
42026
|
-
|
|
42027
|
-
|
|
42028
|
-
|
|
42029
|
-
|
|
42030
|
-
|
|
42031
|
-
|
|
42032
|
-
|
|
42033
|
-
|
|
42034
|
-
|
|
42008
|
+
debounce as bA,
|
|
42009
|
+
unwrap as bB,
|
|
42010
|
+
perfTimer as bC,
|
|
42011
|
+
getRunTextBox as bD,
|
|
42012
|
+
createEditorDocument as bE,
|
|
42013
|
+
resolveResizedDimensions as bF,
|
|
42014
|
+
resolveTextBoxRenderHeight as bG,
|
|
42015
|
+
getToolbarStyleState as bH,
|
|
42016
|
+
getCachedCanvasImage as bI,
|
|
42017
|
+
measureParagraphMinContentWidthPx as bJ,
|
|
42018
|
+
getEditableBlocksForZone as bK,
|
|
42019
|
+
findParagraphLocation as bL,
|
|
42020
|
+
createSectionBoundaryParagraph as bM,
|
|
42021
|
+
normalizePageSettings as bN,
|
|
42022
|
+
DEFAULT_EDITOR_PAGE_SETTINGS as bO,
|
|
42023
|
+
markStart as bP,
|
|
42024
|
+
markEnd as bQ,
|
|
42025
|
+
getParagraphEntries as bR,
|
|
42026
|
+
getParagraphById as bS,
|
|
42027
|
+
createEditorFootnote as bT,
|
|
42028
|
+
createFootnoteReferenceRun as bU,
|
|
42029
|
+
renumberFootnotes as bV,
|
|
42030
|
+
getHeadingLevel as bW,
|
|
42031
|
+
preciseFontModeVersion as bX,
|
|
42032
|
+
isPreciseFontModeEnabled as bY,
|
|
42033
|
+
resolveNamedTextStyle as bZ,
|
|
42034
|
+
togglePreciseFontMode as b_,
|
|
42035
42035
|
resolveCanvasTableWidth as ba,
|
|
42036
42036
|
resolveFloatingTableRect as bb,
|
|
42037
42037
|
normalizeFamily as bc,
|
|
@@ -42043,78 +42043,79 @@ export {
|
|
|
42043
42043
|
defaultFontDecoderRegistry as bi,
|
|
42044
42044
|
SfntFontProgram as bj,
|
|
42045
42045
|
collectPdfFontFamilies as bk,
|
|
42046
|
-
|
|
42047
|
-
|
|
42048
|
-
|
|
42049
|
-
|
|
42050
|
-
|
|
42051
|
-
|
|
42052
|
-
|
|
42053
|
-
|
|
42054
|
-
|
|
42055
|
-
|
|
42056
|
-
|
|
42057
|
-
|
|
42058
|
-
|
|
42059
|
-
|
|
42060
|
-
|
|
42046
|
+
outlineFrom as bl,
|
|
42047
|
+
getPageHeaderZoneTop as bm,
|
|
42048
|
+
getPageColumnRects as bn,
|
|
42049
|
+
findFootnoteReference as bo,
|
|
42050
|
+
FOOTNOTE_MARKER_GUTTER_PX as bp,
|
|
42051
|
+
resolveImporterForFile as bq,
|
|
42052
|
+
getDocumentSectionsCanonical as br,
|
|
42053
|
+
getDocumentParagraphsCanonical as bs,
|
|
42054
|
+
getDocumentParagraphs as bt,
|
|
42055
|
+
getDocumentPageSettings as bu,
|
|
42056
|
+
getTableCellContentWidthForParagraph as bv,
|
|
42057
|
+
layoutMetricsEpoch as bw,
|
|
42058
|
+
bumpLayoutMetricsEpoch as bx,
|
|
42059
|
+
createCanvasLayoutSnapshotProvider as by,
|
|
42060
|
+
on as bz,
|
|
42061
42061
|
getPageBodyBottom as c,
|
|
42062
|
-
|
|
42063
|
-
|
|
42064
|
-
|
|
42065
|
-
|
|
42066
|
-
|
|
42067
|
-
|
|
42068
|
-
|
|
42069
|
-
|
|
42070
|
-
|
|
42071
|
-
|
|
42072
|
-
|
|
42073
|
-
|
|
42074
|
-
|
|
42075
|
-
|
|
42076
|
-
|
|
42077
|
-
|
|
42078
|
-
|
|
42079
|
-
|
|
42080
|
-
|
|
42081
|
-
|
|
42082
|
-
|
|
42083
|
-
|
|
42084
|
-
|
|
42085
|
-
|
|
42086
|
-
|
|
42087
|
-
|
|
42088
|
-
|
|
42089
|
-
|
|
42090
|
-
|
|
42091
|
-
|
|
42092
|
-
|
|
42093
|
-
|
|
42094
|
-
|
|
42095
|
-
|
|
42096
|
-
|
|
42097
|
-
|
|
42098
|
-
|
|
42099
|
-
|
|
42100
|
-
|
|
42101
|
-
|
|
42102
|
-
|
|
42103
|
-
|
|
42104
|
-
|
|
42105
|
-
|
|
42106
|
-
|
|
42107
|
-
|
|
42108
|
-
|
|
42109
|
-
|
|
42110
|
-
|
|
42111
|
-
|
|
42112
|
-
|
|
42113
|
-
|
|
42114
|
-
|
|
42115
|
-
|
|
42116
|
-
|
|
42117
|
-
|
|
42062
|
+
previousFontSizePt as c0,
|
|
42063
|
+
fontSizePtToPx as c1,
|
|
42064
|
+
createDefaultToolbarPreset as c2,
|
|
42065
|
+
MenuRegistry as c3,
|
|
42066
|
+
createToolbarRegistry as c4,
|
|
42067
|
+
Editor as c5,
|
|
42068
|
+
resolveCommandRef as c6,
|
|
42069
|
+
commandRefName as c7,
|
|
42070
|
+
createOasisEditorClient as c8,
|
|
42071
|
+
createEditorZoom as c9,
|
|
42072
|
+
OasisEditorContainer as cA,
|
|
42073
|
+
PluginCollection as cB,
|
|
42074
|
+
Popover as cC,
|
|
42075
|
+
RIBBON_TABS as cD,
|
|
42076
|
+
Select as cE,
|
|
42077
|
+
SelectField as cF,
|
|
42078
|
+
Separator as cG,
|
|
42079
|
+
SidePanel as cH,
|
|
42080
|
+
SidePanelBody as cI,
|
|
42081
|
+
SidePanelFooter as cJ,
|
|
42082
|
+
SidePanelHeader as cK,
|
|
42083
|
+
SplitButton as cL,
|
|
42084
|
+
StyleGallery as cM,
|
|
42085
|
+
TextField as cN,
|
|
42086
|
+
Button$1 as cO,
|
|
42087
|
+
buildRibbonTabDefinitions as cP,
|
|
42088
|
+
createEditorCommandBus as cQ,
|
|
42089
|
+
createOasisEditor as cR,
|
|
42090
|
+
createOasisEditorContainer as cS,
|
|
42091
|
+
mount as cT,
|
|
42092
|
+
registerToolbarRenderer as cU,
|
|
42093
|
+
startLongTaskObserver as ca,
|
|
42094
|
+
installGlobalReport as cb,
|
|
42095
|
+
applyStoredPreciseFontPreference as cc,
|
|
42096
|
+
getWelcomeSeen as cd,
|
|
42097
|
+
isLocalFontAccessSupported as ce,
|
|
42098
|
+
EDITOR_SCROLL_PADDING_PX as cf,
|
|
42099
|
+
Toolbar as cg,
|
|
42100
|
+
OasisEditorLoading as ch,
|
|
42101
|
+
I18nProvider as ci,
|
|
42102
|
+
createTranslator as cj,
|
|
42103
|
+
createEditorLogger as ck,
|
|
42104
|
+
registerDomStatsSurface as cl,
|
|
42105
|
+
Button as cm,
|
|
42106
|
+
Checkbox as cn,
|
|
42107
|
+
ColorPicker as co,
|
|
42108
|
+
CommandRegistry as cp,
|
|
42109
|
+
DEFAULT_PALETTE as cq,
|
|
42110
|
+
DialogFooter as cr,
|
|
42111
|
+
FloatingActionButton as cs,
|
|
42112
|
+
GridPicker as ct,
|
|
42113
|
+
IconButton as cu,
|
|
42114
|
+
Menu as cv,
|
|
42115
|
+
OASIS_BUILTIN_COMMANDS as cw,
|
|
42116
|
+
OASIS_MENU_ITEMS as cx,
|
|
42117
|
+
OASIS_TOOLBAR_ITEMS as cy,
|
|
42118
|
+
OasisEditorAppLazy as cz,
|
|
42118
42119
|
domTextMeasurer as d,
|
|
42119
42120
|
estimateTableBlockHeight as e,
|
|
42120
42121
|
getFootnoteDisplayMarker as f,
|
package/dist/oasis-editor.js
CHANGED
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
import { a4,
|
|
1
|
+
import { a4, cm, cn, co, cp, cq, an, cr, a5, c5, cs, ct, cu, a3, cv, c3, cw, cx, cy, cz, cA, ch, cB, cC, cD, cE, cF, cG, cH, cI, cJ, cK, cL, cM, as, cN, cg, cO, co as co2, ct as ct2, cv as cv2, cE as cE2, cG as cG2, cL as cL2, cP, c7, c2, cQ, cR, cS, c4, cT, cU, c6 } from "./index-DzBLUs91.js";
|
|
2
2
|
export {
|
|
3
3
|
a4 as BalloonShell,
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
cm as Button,
|
|
5
|
+
cn as Checkbox,
|
|
6
|
+
co as ColorPicker,
|
|
7
|
+
cp as CommandRegistry,
|
|
8
|
+
cq as DEFAULT_PALETTE,
|
|
9
9
|
an as Dialog,
|
|
10
|
-
|
|
10
|
+
cr as DialogFooter,
|
|
11
11
|
a5 as DocumentShell,
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
c5 as Editor,
|
|
13
|
+
cs as FloatingActionButton,
|
|
14
|
+
ct as GridPicker,
|
|
15
|
+
cu as IconButton,
|
|
16
16
|
a3 as InlineShell,
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
17
|
+
cv as Menu,
|
|
18
|
+
c3 as MenuRegistry,
|
|
19
|
+
cw as OASIS_BUILTIN_COMMANDS,
|
|
20
|
+
cx as OASIS_MENU_ITEMS,
|
|
21
|
+
cy as OASIS_TOOLBAR_ITEMS,
|
|
22
|
+
cz as OasisEditorAppLazy,
|
|
23
|
+
cA as OasisEditorContainer,
|
|
24
|
+
ch as OasisEditorLoading,
|
|
25
|
+
cB as PluginCollection,
|
|
26
|
+
cC as Popover,
|
|
27
|
+
cD as RIBBON_TABS,
|
|
28
|
+
cE as Select,
|
|
29
|
+
cF as SelectField,
|
|
30
|
+
cG as Separator,
|
|
31
|
+
cH as SidePanel,
|
|
32
|
+
cI as SidePanelBody,
|
|
33
|
+
cJ as SidePanelFooter,
|
|
34
|
+
cK as SidePanelHeader,
|
|
35
|
+
cL as SplitButton,
|
|
36
|
+
cM as StyleGallery,
|
|
37
37
|
as as Tabs,
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
38
|
+
cN as TextField,
|
|
39
|
+
cg as Toolbar,
|
|
40
|
+
cO as ToolbarButton,
|
|
41
|
+
co2 as ToolbarColorPicker,
|
|
42
|
+
ct2 as ToolbarGridPicker,
|
|
43
|
+
cv2 as ToolbarMenu,
|
|
44
|
+
cE2 as ToolbarSelect,
|
|
45
|
+
cG2 as ToolbarSeparator,
|
|
46
|
+
cL2 as ToolbarSplitButton,
|
|
47
|
+
cP as buildRibbonTabDefinitions,
|
|
48
|
+
c7 as commandRefName,
|
|
49
|
+
c2 as createDefaultToolbarPreset,
|
|
50
|
+
cQ as createEditorCommandBus,
|
|
51
|
+
cR as createOasisEditor,
|
|
52
|
+
cS as createOasisEditorContainer,
|
|
53
|
+
c4 as createToolbarRegistry,
|
|
54
|
+
cT as mount,
|
|
55
|
+
cU as registerToolbarRenderer,
|
|
56
|
+
c6 as resolveCommandRef
|
|
57
57
|
};
|