@worktile/theia 2.2.4 → 2.2.8
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/bundles/worktile-theia.umd.js +52 -20
- package/bundles/worktile-theia.umd.js.map +1 -1
- package/components/toolbar/toolbar.component.d.ts +3 -2
- package/components/toolbar-item/toolbar-item.component.d.ts +3 -4
- package/esm2015/components/column-resize/resizing.store.js +2 -2
- package/esm2015/components/toolbar/toolbar.component.js +6 -4
- package/esm2015/components/toolbar-item/toolbar-item.component.js +4 -4
- package/esm2015/plugins/code/code.component.js +35 -4
- package/esm2015/plugins/indent/on-keydown-indent.js +2 -3
- package/esm2015/plugins/inline-code/inline-code.component.js +3 -3
- package/esm2015/plugins/link/link.component.js +2 -2
- package/esm2015/plugins/quick-insert/components/quick-toolbar/quick-toolbar.component.js +1 -1
- package/esm2015/plugins/table/components/td/td.component.js +6 -6
- package/fesm2015/worktile-theia.js +52 -20
- package/fesm2015/worktile-theia.js.map +1 -1
- package/package.json +1 -1
- package/plugins/code/code.component.d.ts +1 -0
- package/plugins/inline-code/inline-code.component.scss +0 -1
|
@@ -7172,10 +7172,41 @@
|
|
|
7172
7172
|
}
|
|
7173
7173
|
i1.AngularEditor.focus(this.editor);
|
|
7174
7174
|
slate.Transforms.select(this.editor, i1.AngularEditor.findPath(this.editor, this.element));
|
|
7175
|
-
|
|
7176
|
-
|
|
7175
|
+
if (i1.IS_SAFARI) {
|
|
7176
|
+
this.safariCopy();
|
|
7177
|
+
return;
|
|
7178
|
+
}
|
|
7179
|
+
document.execCommand('copy') ? this.thyNotifyService.success('复制成功') : this.thyNotifyService.error('复制失败');
|
|
7177
7180
|
i1.AngularEditor.deselect(this.editor);
|
|
7178
7181
|
};
|
|
7182
|
+
TheCodeComponent.prototype.safariCopy = function () {
|
|
7183
|
+
var currentElement = i1.AngularEditor.toDOMNode(this.editor, this.element);
|
|
7184
|
+
var blockCard = currentElement.closest('.slate-block-card');
|
|
7185
|
+
var span = document.createElement('pre');
|
|
7186
|
+
span.appendChild(blockCard.cloneNode(true));
|
|
7187
|
+
span.textContent = this.element.content;
|
|
7188
|
+
if (this.element.language) {
|
|
7189
|
+
span.setAttribute('data-language', this.element.language);
|
|
7190
|
+
}
|
|
7191
|
+
if (this.element.autoWrap) {
|
|
7192
|
+
span.setAttribute('data-auto-wrap', String(this.element.autoWrap));
|
|
7193
|
+
}
|
|
7194
|
+
if (this.element.height) {
|
|
7195
|
+
span.setAttribute('data-height', String(this.element.height));
|
|
7196
|
+
}
|
|
7197
|
+
document.body.appendChild(span);
|
|
7198
|
+
var selection = window.getSelection();
|
|
7199
|
+
var range = document.createRange();
|
|
7200
|
+
if (selection) {
|
|
7201
|
+
selection.removeAllRanges();
|
|
7202
|
+
range.selectNode(span);
|
|
7203
|
+
selection.addRange(range);
|
|
7204
|
+
document.execCommand('copy') ? this.thyNotifyService.success('复制成功') : this.thyNotifyService.error('复制失败');
|
|
7205
|
+
selection.removeAllRanges();
|
|
7206
|
+
document.body.removeChild(span);
|
|
7207
|
+
i1.AngularEditor.deselect(this.editor);
|
|
7208
|
+
}
|
|
7209
|
+
};
|
|
7179
7210
|
TheCodeComponent.prototype.focusChange = function (codeMirrorFocused) {
|
|
7180
7211
|
if (codeMirrorFocused) {
|
|
7181
7212
|
this.isHightLight = false;
|
|
@@ -7621,7 +7652,7 @@
|
|
|
7621
7652
|
var _this = _super.apply(this, __spreadArray([], __read(arguments))) || this;
|
|
7622
7653
|
// Put this at the start and end of an inline component to work around this Chromium bug:
|
|
7623
7654
|
// https://bugs.chromium.org/p/chromium/issues/detail?id=1249405
|
|
7624
|
-
_this.inlineChromiumBugfix =
|
|
7655
|
+
_this.inlineChromiumBugfix = String.fromCodePoint(160);
|
|
7625
7656
|
return _this;
|
|
7626
7657
|
}
|
|
7627
7658
|
return TheLinkComponent;
|
|
@@ -9913,7 +9944,7 @@
|
|
|
9913
9944
|
ColumnResizingStore.prototype.restoreTopRows = function (deltaY) {
|
|
9914
9945
|
var index = this.resizeRows.length - 1;
|
|
9915
9946
|
while (index >= 0 && deltaY > 0) {
|
|
9916
|
-
var currentHeight =
|
|
9947
|
+
var currentHeight = this.resizeRows[index].rowElement.getBoundingClientRect().height;
|
|
9917
9948
|
if (this.resizeRows[index].baseHeight > currentHeight) {
|
|
9918
9949
|
if (this.resizeRows[index].baseHeight > currentHeight + deltaY) {
|
|
9919
9950
|
this.resizeRows[index].rowElement.style.height = coercion.coerceCssPixelValue(currentHeight + deltaY);
|
|
@@ -10574,16 +10605,16 @@
|
|
|
10574
10605
|
.pipe(takeUntilDestroyed, operators.filter(function (columnSize) { return columnSize.tableCell === _this.elementRef.nativeElement; }))
|
|
10575
10606
|
.subscribe(function (_c) {
|
|
10576
10607
|
var deltaSize = _c.deltaSize, previousSize = _c.previousSize, completeImmediately = _c.completeImmediately;
|
|
10577
|
-
var _d = _this.elementRef.nativeElement.getBoundingClientRect(), top = _d.top, left = _d.left;
|
|
10608
|
+
var _d = _this.elementRef.nativeElement.getBoundingClientRect(), top = _d.top, left = _d.left, height = _d.height, width = _d.width;
|
|
10578
10609
|
var clientY = event.clientY, clientX = event.clientX;
|
|
10579
10610
|
var isApplySize = false;
|
|
10580
10611
|
if (_this.isXAxisHover) {
|
|
10581
|
-
var
|
|
10582
|
-
isApplySize = deltaSize > 0 && left +
|
|
10612
|
+
var cellWidth = _this.hoverdDirection === 'left' ? 0 : width;
|
|
10613
|
+
isApplySize = deltaSize > 0 && left + cellWidth - clientX <= 0;
|
|
10583
10614
|
}
|
|
10584
10615
|
else {
|
|
10585
|
-
var
|
|
10586
|
-
isApplySize = deltaSize > 0 && top +
|
|
10616
|
+
var cellHeight = _this.hoverdDirection === 'bottom' ? 0 : height;
|
|
10617
|
+
isApplySize = deltaSize > 0 && top + cellHeight - clientY <= 0;
|
|
10587
10618
|
}
|
|
10588
10619
|
if (isApplySize || deltaSize < 0) {
|
|
10589
10620
|
_this.elementRef.nativeElement.classList.add(OVERLAY_ACTIVE_CLASS);
|
|
@@ -11727,7 +11758,7 @@
|
|
|
11727
11758
|
return TheToolbarItemComponent;
|
|
11728
11759
|
}(TheToolbarBaseItemComponent));
|
|
11729
11760
|
TheToolbarItemComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TheToolbarItemComponent, deps: [{ token: i0__namespace.NgZone }, { token: i0__namespace.ComponentFactoryResolver }], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
11730
|
-
TheToolbarItemComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.15", type: TheToolbarItemComponent, selector: "the-toolbar-item", inputs: {
|
|
11761
|
+
TheToolbarItemComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.15", type: TheToolbarItemComponent, selector: "the-toolbar-item", inputs: { editor: "editor", item: "item", itemMode: "itemMode" }, host: { listeners: { "mousedown": "toggleDropdown($event)" }, properties: { "class.disabled": "this.disabledState" }, classAttribute: "the-toolbar-item" }, viewQueries: [{ propertyName: "toolbarContainer", first: true, predicate: ["toolbarContainer"], descendants: true, read: i0.ViewContainerRef, static: true }], usesInheritance: true, ngImport: i0__namespace, template: "\n <ng-container *ngIf=\"itemMode === ToolbarItemMode.horizontal; else selectionItem\">\n <a\n thyIconNavLink\n [thyIconNavLinkIcon]=\"item.icon\"\n [thyTooltip]=\"tooltip\"\n [thyTooltipTemplateContext]=\"{ name: item.name, shortcutKey: item.shortcutKey }\"\n thyTooltipPlacement=\"top\"\n [thyIconNavLinkActive]=\"active\"\n (mousedown)=\"execute($event)\"\n ></a>\n </ng-container>\n <ng-template #selectionItem>\n <ng-container *ngIf=\"!item?.quickItemComponent\">\n <thy-icon [thyIconName]=\"item?.icon\" [thyIconRotate]=\"0\" class=\"quick-toolbar-icon\"></thy-icon>\n <span class=\"quick-toolbar-name\">{{ item?.name }}</span>\n </ng-container>\n </ng-template>\n <ng-template #tooltip let-data> {{ data.name }} {{ data.shortcutKey }} </ng-template>\n <ng-container #toolbarContainer></ng-container>\n ", isInline: true, components: [{ type: i3__namespace.ThyIconNavLinkComponent, selector: "[thyIconNavLink]", inputs: ["thyIconNavLinkIcon", "thyIconNavLinkActive"] }, { type: i4__namespace$1.ThyIconComponent, selector: "thy-icon", inputs: ["thyIconType", "thyTwotoneColor", "thyIconName", "thyIconRotate", "thyIconSet", "thyIconLegging", "thyIconLinearGradient"] }], directives: [{ type: i6__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i5__namespace$1.ThyTooltipDirective, selector: "[thyTooltip],[thy-tooltip]", inputs: ["thyTooltip", "thyTooltipPlacement", "thyTooltipClass", "thyTooltipShowDelay", "thyTooltipHideDelay", "thyTooltipTrigger", "thyTooltipDisabled", "thyTooltipTemplateContext", "thyTooltipOffset", "thyTooltipPin"], exportAs: ["thyTooltip"] }] });
|
|
11731
11762
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TheToolbarItemComponent, decorators: [{
|
|
11732
11763
|
type: i0.Component,
|
|
11733
11764
|
args: [{
|
|
@@ -11737,9 +11768,9 @@
|
|
|
11737
11768
|
class: 'the-toolbar-item'
|
|
11738
11769
|
}
|
|
11739
11770
|
}]
|
|
11740
|
-
}], ctorParameters: function () { return [{ type: i0__namespace.NgZone }, { type: i0__namespace.ComponentFactoryResolver }]; }, propDecorators: {
|
|
11771
|
+
}], ctorParameters: function () { return [{ type: i0__namespace.NgZone }, { type: i0__namespace.ComponentFactoryResolver }]; }, propDecorators: { editor: [{
|
|
11741
11772
|
type: i0.Input
|
|
11742
|
-
}],
|
|
11773
|
+
}], item: [{
|
|
11743
11774
|
type: i0.Input
|
|
11744
11775
|
}], itemMode: [{
|
|
11745
11776
|
type: i0.Input
|
|
@@ -11803,7 +11834,7 @@
|
|
|
11803
11834
|
return TheQuickToolbarComponent;
|
|
11804
11835
|
}(core.mixinUnsubscribe(core.MixinBase)));
|
|
11805
11836
|
TheQuickToolbarComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TheQuickToolbarComponent, deps: [{ token: i1__namespace$3.ThyPopoverRef }, { token: i0__namespace.ElementRef }], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
11806
|
-
TheQuickToolbarComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.15", type: TheQuickToolbarComponent, selector: "the-quick-toolbar", inputs: { editor: "editor", quickToolbarItems: "quickToolbarItems" }, host: { listeners: { "document: mousedown": "handleMouseDown($event)", "document: keydown.enter": "handleEnter()", "document: keydown.escape": "handleEsc()" } }, usesInheritance: true, ngImport: i0__namespace, template: "<thy-selection-list\n class=\"the-quick-toolbar\"\n [thyBindKeyEventContainer]=\"editorElement\"\n (thySelectionChange)=\"selectionChange($event)\"\n [thyMultiple]=\"false\"\n>\n <ng-container *ngFor=\"let item of quickToolbarItems\">\n <ng-container *ngIf=\"item.key !== ToolbarActionTypes.split; else splitLine\">\n <thy-list-option [thyValue]=\"item?.key\" (mousedown)=\"stopPropagation($event)\">\n <the-toolbar-item [editor]=\"editor\" [item]=\"item\" [itemMode]=\"ToolbarItemMode.vertical\"></the-toolbar-item>\n </thy-list-option>\n </ng-container>\n </ng-container>\n</thy-selection-list>\n\n<ng-template #splitLine>\n <nav-split-line [mode]=\"ToolbarItemMode.horizontal\"></nav-split-line>\n</ng-template>\n", components: [{ type: i2__namespace$2.ThySelectionListComponent, selector: "thy-selection-list,[thy-selection-list]", inputs: ["thyMultiple", "thyBindKeyEventContainer", "thyScrollContainer", "thyBeforeKeydown", "thyUniqueKey", "thyCompareWith", "thyLayout", "thyAutoActiveFirstItem", "thySize", "thySpaceKeyEnabled"], outputs: ["thySelectionChange"] }, { type: i5__namespace$3.ThyListOptionComponent, selector: "thy-list-option,[thy-list-option]", inputs: ["id", "thyValue", "thyDisabled"] }, { type: TheToolbarItemComponent, selector: "the-toolbar-item", inputs: ["
|
|
11837
|
+
TheQuickToolbarComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.15", type: TheQuickToolbarComponent, selector: "the-quick-toolbar", inputs: { editor: "editor", quickToolbarItems: "quickToolbarItems" }, host: { listeners: { "document: mousedown": "handleMouseDown($event)", "document: keydown.enter": "handleEnter()", "document: keydown.escape": "handleEsc()" } }, usesInheritance: true, ngImport: i0__namespace, template: "<thy-selection-list\n class=\"the-quick-toolbar\"\n [thyBindKeyEventContainer]=\"editorElement\"\n (thySelectionChange)=\"selectionChange($event)\"\n [thyMultiple]=\"false\"\n>\n <ng-container *ngFor=\"let item of quickToolbarItems\">\n <ng-container *ngIf=\"item.key !== ToolbarActionTypes.split; else splitLine\">\n <thy-list-option [thyValue]=\"item?.key\" (mousedown)=\"stopPropagation($event)\">\n <the-toolbar-item [editor]=\"editor\" [item]=\"item\" [itemMode]=\"ToolbarItemMode.vertical\"></the-toolbar-item>\n </thy-list-option>\n </ng-container>\n </ng-container>\n</thy-selection-list>\n\n<ng-template #splitLine>\n <nav-split-line [mode]=\"ToolbarItemMode.horizontal\"></nav-split-line>\n</ng-template>\n", components: [{ type: i2__namespace$2.ThySelectionListComponent, selector: "thy-selection-list,[thy-selection-list]", inputs: ["thyMultiple", "thyBindKeyEventContainer", "thyScrollContainer", "thyBeforeKeydown", "thyUniqueKey", "thyCompareWith", "thyLayout", "thyAutoActiveFirstItem", "thySize", "thySpaceKeyEnabled"], outputs: ["thySelectionChange"] }, { type: i5__namespace$3.ThyListOptionComponent, selector: "thy-list-option,[thy-list-option]", inputs: ["id", "thyValue", "thyDisabled"] }, { type: TheToolbarItemComponent, selector: "the-toolbar-item", inputs: ["editor", "item", "itemMode"] }, { type: NavSplitLineComponent, selector: "nav-split-line", inputs: ["mode"] }], directives: [{ type: i6__namespace.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i6__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
11807
11838
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TheQuickToolbarComponent, decorators: [{
|
|
11808
11839
|
type: i0.Component,
|
|
11809
11840
|
args: [{
|
|
@@ -12047,12 +12078,12 @@
|
|
|
12047
12078
|
return TheInlineCodeComponent;
|
|
12048
12079
|
}(TheBaseElementComponent));
|
|
12049
12080
|
TheInlineCodeComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TheInlineCodeComponent, deps: null, target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
12050
|
-
TheInlineCodeComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.15", type: TheInlineCodeComponent, selector: "span[theInlineCode]", usesInheritance: true, ngImport: i0__namespace, template: "
|
|
12081
|
+
TheInlineCodeComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.15", type: TheInlineCodeComponent, selector: "span[theInlineCode]", usesInheritance: true, ngImport: i0__namespace, template: "<span contenteditable=\"false\" style=\"font-size: 0;\">{{ inlineChromiumBugfix }}</span>\n <slate-children [children]=\"children\" [context]=\"childrenContext\" [viewContext]=\"viewContext\"></slate-children>\n <span contenteditable=\"false\" style=\"font-size: 0;\">{{ inlineChromiumBugfix }}</span>", isInline: true, components: [{ type: i1__namespace.SlateChildrenComponent, selector: "slate-children", inputs: ["children", "context", "viewContext"] }] });
|
|
12051
12082
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TheInlineCodeComponent, decorators: [{
|
|
12052
12083
|
type: i0.Component,
|
|
12053
12084
|
args: [{
|
|
12054
12085
|
selector: 'span[theInlineCode]',
|
|
12055
|
-
template: "
|
|
12086
|
+
template: "<span contenteditable=\"false\" style=\"font-size: 0;\">{{ inlineChromiumBugfix }}</span>\n <slate-children [children]=\"children\" [context]=\"childrenContext\" [viewContext]=\"viewContext\"></slate-children>\n <span contenteditable=\"false\" style=\"font-size: 0;\">{{ inlineChromiumBugfix }}</span>"
|
|
12056
12087
|
}]
|
|
12057
12088
|
}] });
|
|
12058
12089
|
|
|
@@ -12330,8 +12361,7 @@
|
|
|
12330
12361
|
return false;
|
|
12331
12362
|
}
|
|
12332
12363
|
var _b = __read(startBlock, 2), block = _b[0], path = _b[1];
|
|
12333
|
-
var
|
|
12334
|
-
var isStart = slate.Editor.isStart(editor, selection.anchor, currentPath);
|
|
12364
|
+
var isStart = slate.Editor.isStart(editor, selection.anchor, path);
|
|
12335
12365
|
var textIndentDisable = [exports.ElementKinds.bulletedList, exports.ElementKinds.numberedList, exports.ElementKinds.checkItem];
|
|
12336
12366
|
if (isHotkey.isKeyHotkey('Tab', event)) {
|
|
12337
12367
|
event.preventDefault();
|
|
@@ -12557,8 +12587,9 @@
|
|
|
12557
12587
|
};
|
|
12558
12588
|
|
|
12559
12589
|
var TheToolbarComponent = /** @class */ (function () {
|
|
12560
|
-
function TheToolbarComponent(cfr, elementRef, ngZone, toolbarGroupComponent) {
|
|
12590
|
+
function TheToolbarComponent(cfr, cdr, elementRef, ngZone, toolbarGroupComponent) {
|
|
12561
12591
|
this.cfr = cfr;
|
|
12592
|
+
this.cdr = cdr;
|
|
12562
12593
|
this.elementRef = elementRef;
|
|
12563
12594
|
this.ngZone = ngZone;
|
|
12564
12595
|
this.toolbarGroupComponent = toolbarGroupComponent;
|
|
@@ -12669,6 +12700,7 @@
|
|
|
12669
12700
|
}
|
|
12670
12701
|
_this.createMoreGroup(group);
|
|
12671
12702
|
});
|
|
12703
|
+
this.cdr.markForCheck();
|
|
12672
12704
|
};
|
|
12673
12705
|
/**
|
|
12674
12706
|
* calculation display toolbar and more grouped toolbars
|
|
@@ -12830,7 +12862,7 @@
|
|
|
12830
12862
|
};
|
|
12831
12863
|
return TheToolbarComponent;
|
|
12832
12864
|
}());
|
|
12833
|
-
TheToolbarComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TheToolbarComponent, deps: [{ token: i0__namespace.ComponentFactoryResolver }, { token: i0__namespace.ElementRef }, { token: i0__namespace.NgZone }, { token: TheToolbarGroupToken }], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
12865
|
+
TheToolbarComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TheToolbarComponent, deps: [{ token: i0__namespace.ComponentFactoryResolver }, { token: i0__namespace.ChangeDetectorRef }, { token: i0__namespace.ElementRef }, { token: i0__namespace.NgZone }, { token: TheToolbarGroupToken }], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
12834
12866
|
TheToolbarComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.15", type: TheToolbarComponent, selector: "the-toolbar", inputs: { editor: "editor", toolbarItems: "toolbarItems", align: "align", containerClass: "containerClass", isMore: "isMore", afterTemplate: "afterTemplate" }, host: { classAttribute: "the-toolbar-container" }, viewQueries: [{ propertyName: "toolbarContainer", first: true, predicate: ["toolbarContainer"], descendants: true, read: i0.ViewContainerRef, static: true }], usesOnChanges: true, ngImport: i0__namespace, template: "<thy-icon-nav [style.justifyContent]=\"align\">\n <ng-container #toolbarContainer></ng-container>\n <ng-content></ng-content>\n <ng-template *ngIf=\"afterTemplate\" [ngTemplateOutlet]=\"afterTemplate\"></ng-template>\n</thy-icon-nav>\n", components: [{ type: i3__namespace.ThyIconNavComponent, selector: "thy-icon-nav", inputs: ["thyType"] }], directives: [{ type: i6__namespace.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i6__namespace.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
12835
12867
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.15", ngImport: i0__namespace, type: TheToolbarComponent, decorators: [{
|
|
12836
12868
|
type: i0.Component,
|
|
@@ -12842,7 +12874,7 @@
|
|
|
12842
12874
|
}
|
|
12843
12875
|
}]
|
|
12844
12876
|
}], ctorParameters: function () {
|
|
12845
|
-
return [{ type: i0__namespace.ComponentFactoryResolver }, { type: i0__namespace.ElementRef }, { type: i0__namespace.NgZone }, { type: undefined, decorators: [{
|
|
12877
|
+
return [{ type: i0__namespace.ComponentFactoryResolver }, { type: i0__namespace.ChangeDetectorRef }, { type: i0__namespace.ElementRef }, { type: i0__namespace.NgZone }, { type: undefined, decorators: [{
|
|
12846
12878
|
type: i0.Inject,
|
|
12847
12879
|
args: [TheToolbarGroupToken]
|
|
12848
12880
|
}] }];
|