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.
@@ -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
- /** A serialized indirect PDF object: its 1-based id and dictionary/stream body. */
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-BFNqDc07.js").then((m) => {
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
- DEFAULT_FONT_SIZE_PX as a$,
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
- resolveOpenTypeFeatureTags as a_,
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
- previousFontSizePt as b$,
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
- unwrap as bA,
42009
- perfTimer as bB,
42010
- getRunTextBox as bC,
42011
- createEditorDocument as bD,
42012
- resolveResizedDimensions as bE,
42013
- resolveTextBoxRenderHeight as bF,
42014
- getToolbarStyleState as bG,
42015
- getCachedCanvasImage as bH,
42016
- measureParagraphMinContentWidthPx as bI,
42017
- getEditableBlocksForZone as bJ,
42018
- findParagraphLocation as bK,
42019
- createSectionBoundaryParagraph as bL,
42020
- normalizePageSettings as bM,
42021
- DEFAULT_EDITOR_PAGE_SETTINGS as bN,
42022
- markStart as bO,
42023
- markEnd as bP,
42024
- getParagraphEntries as bQ,
42025
- getParagraphById as bR,
42026
- createEditorFootnote as bS,
42027
- createFootnoteReferenceRun as bT,
42028
- renumberFootnotes as bU,
42029
- getHeadingLevel as bV,
42030
- preciseFontModeVersion as bW,
42031
- isPreciseFontModeEnabled as bX,
42032
- resolveNamedTextStyle as bY,
42033
- togglePreciseFontMode as bZ,
42034
- nextFontSizePt as b_,
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
- getPageHeaderZoneTop as bl,
42047
- getPageColumnRects as bm,
42048
- findFootnoteReference as bn,
42049
- FOOTNOTE_MARKER_GUTTER_PX as bo,
42050
- resolveImporterForFile as bp,
42051
- getDocumentSectionsCanonical as bq,
42052
- getDocumentParagraphsCanonical as br,
42053
- getDocumentParagraphs as bs,
42054
- getDocumentPageSettings as bt,
42055
- getTableCellContentWidthForParagraph as bu,
42056
- layoutMetricsEpoch as bv,
42057
- bumpLayoutMetricsEpoch as bw,
42058
- createCanvasLayoutSnapshotProvider as bx,
42059
- on as by,
42060
- debounce as bz,
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
- fontSizePtToPx as c0,
42063
- createDefaultToolbarPreset as c1,
42064
- MenuRegistry as c2,
42065
- createToolbarRegistry as c3,
42066
- Editor as c4,
42067
- resolveCommandRef as c5,
42068
- commandRefName as c6,
42069
- createOasisEditorClient as c7,
42070
- createEditorZoom as c8,
42071
- startLongTaskObserver as c9,
42072
- PluginCollection as cA,
42073
- Popover as cB,
42074
- RIBBON_TABS as cC,
42075
- Select as cD,
42076
- SelectField as cE,
42077
- Separator as cF,
42078
- SidePanel as cG,
42079
- SidePanelBody as cH,
42080
- SidePanelFooter as cI,
42081
- SidePanelHeader as cJ,
42082
- SplitButton as cK,
42083
- StyleGallery as cL,
42084
- TextField as cM,
42085
- Button$1 as cN,
42086
- buildRibbonTabDefinitions as cO,
42087
- createEditorCommandBus as cP,
42088
- createOasisEditor as cQ,
42089
- createOasisEditorContainer as cR,
42090
- mount as cS,
42091
- registerToolbarRenderer as cT,
42092
- installGlobalReport as ca,
42093
- applyStoredPreciseFontPreference as cb,
42094
- getWelcomeSeen as cc,
42095
- isLocalFontAccessSupported as cd,
42096
- EDITOR_SCROLL_PADDING_PX as ce,
42097
- Toolbar as cf,
42098
- OasisEditorLoading as cg,
42099
- I18nProvider as ch,
42100
- createTranslator as ci,
42101
- createEditorLogger as cj,
42102
- registerDomStatsSurface as ck,
42103
- Button as cl,
42104
- Checkbox as cm,
42105
- ColorPicker as cn,
42106
- CommandRegistry as co,
42107
- DEFAULT_PALETTE as cp,
42108
- DialogFooter as cq,
42109
- FloatingActionButton as cr,
42110
- GridPicker as cs,
42111
- IconButton as ct,
42112
- Menu as cu,
42113
- OASIS_BUILTIN_COMMANDS as cv,
42114
- OASIS_MENU_ITEMS as cw,
42115
- OASIS_TOOLBAR_ITEMS as cx,
42116
- OasisEditorAppLazy as cy,
42117
- OasisEditorContainer as cz,
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,
@@ -1,57 +1,57 @@
1
- import { a4, cl, cm, cn, co, cp, an, cq, a5, c4, cr, cs, ct, a3, cu, c2, cv, cw, cx, cy, cz, cg, cA, cB, cC, cD, cE, cF, cG, cH, cI, cJ, cK, cL, as, cM, cf, cN, cn as cn2, cs as cs2, cu as cu2, cD as cD2, cF as cF2, cK as cK2, cO, c6, c1, cP, cQ, cR, c3, cS, cT, c5 } from "./index-4uLtMJwI.js";
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
- cl as Button,
5
- cm as Checkbox,
6
- cn as ColorPicker,
7
- co as CommandRegistry,
8
- cp as DEFAULT_PALETTE,
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
- cq as DialogFooter,
10
+ cr as DialogFooter,
11
11
  a5 as DocumentShell,
12
- c4 as Editor,
13
- cr as FloatingActionButton,
14
- cs as GridPicker,
15
- ct as IconButton,
12
+ c5 as Editor,
13
+ cs as FloatingActionButton,
14
+ ct as GridPicker,
15
+ cu as IconButton,
16
16
  a3 as InlineShell,
17
- cu as Menu,
18
- c2 as MenuRegistry,
19
- cv as OASIS_BUILTIN_COMMANDS,
20
- cw as OASIS_MENU_ITEMS,
21
- cx as OASIS_TOOLBAR_ITEMS,
22
- cy as OasisEditorAppLazy,
23
- cz as OasisEditorContainer,
24
- cg 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
- cL as StyleGallery,
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
- cM as TextField,
39
- cf as Toolbar,
40
- cN as ToolbarButton,
41
- cn2 as ToolbarColorPicker,
42
- cs2 as ToolbarGridPicker,
43
- cu2 as ToolbarMenu,
44
- cD2 as ToolbarSelect,
45
- cF2 as ToolbarSeparator,
46
- cK2 as ToolbarSplitButton,
47
- cO as buildRibbonTabDefinitions,
48
- c6 as commandRefName,
49
- c1 as createDefaultToolbarPreset,
50
- cP as createEditorCommandBus,
51
- cQ as createOasisEditor,
52
- cR as createOasisEditorContainer,
53
- c3 as createToolbarRegistry,
54
- cS as mount,
55
- cT as registerToolbarRenderer,
56
- c5 as resolveCommandRef
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
  };