@progress/kendo-angular-editor 13.0.0-develop.5 → 13.0.0-develop.7
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/editor.module.d.ts +1 -1
- package/esm2020/dialogs/colorpicker-dialog.component.mjs +20 -8
- package/esm2020/dialogs/file-link-dialog.component.mjs +119 -77
- package/esm2020/dialogs/font-family-dialog.component.mjs +20 -8
- package/esm2020/dialogs/font-size-dialog.component.mjs +20 -8
- package/esm2020/dialogs/format-dialog.component.mjs +20 -8
- package/esm2020/dialogs/image-dialog.component.mjs +115 -77
- package/esm2020/dialogs/insert-table-dialog.component.mjs +10 -4
- package/esm2020/dialogs/source-dialog.component.mjs +20 -6
- package/esm2020/editor.module.mjs +4 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/tools/colorpicker/editor-colorpicker.component.mjs +1 -1
- package/esm2020/tools/fontfamily/editor-fontfamily.component.mjs +1 -1
- package/esm2020/tools/fontsize/editor-fontsize.component.mjs +1 -1
- package/esm2020/tools/format/editor-format.component.mjs +1 -1
- package/esm2020/tools/tables/editor-insert-table-button.component.mjs +1 -1
- package/fesm2015/progress-kendo-angular-editor.mjs +360 -209
- package/fesm2020/progress-kendo-angular-editor.mjs +360 -209
- package/package.json +14 -14
- package/schematics/ngAdd/index.js +3 -3
|
@@ -13,8 +13,8 @@ import { TextBoxComponent } from '@progress/kendo-angular-inputs';
|
|
|
13
13
|
import * as i0 from "@angular/core";
|
|
14
14
|
import * as i1 from "@progress/kendo-angular-dialog";
|
|
15
15
|
import * as i2 from "../localization/editor-localization.service";
|
|
16
|
-
import * as i3 from "@progress/kendo-angular-
|
|
17
|
-
import * as i4 from "@progress/kendo-angular-
|
|
16
|
+
import * as i3 from "@progress/kendo-angular-inputs";
|
|
17
|
+
import * as i4 from "@progress/kendo-angular-label";
|
|
18
18
|
import * as i5 from "@progress/kendo-angular-buttons";
|
|
19
19
|
import * as i6 from "@angular/forms";
|
|
20
20
|
/**
|
|
@@ -92,46 +92,65 @@ ImageDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
92
92
|
<kendo-dialog-titlebar (close)="onCancelAction()">
|
|
93
93
|
{{ textFor('insertImage') }}
|
|
94
94
|
</kendo-dialog-titlebar>
|
|
95
|
-
<div class="k-form k-form-md k-form-
|
|
96
|
-
<
|
|
97
|
-
<
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
<
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
<
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
<
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
95
|
+
<div class="k-form k-form-md k-form-vertical">
|
|
96
|
+
<kendo-formfield>
|
|
97
|
+
<kendo-label
|
|
98
|
+
labelCssClass="k-form-label"
|
|
99
|
+
[for]="srcInput"
|
|
100
|
+
[text]="textFor('imageWebAddress')"
|
|
101
|
+
></kendo-label>
|
|
102
|
+
<kendo-textbox
|
|
103
|
+
#srcInput
|
|
104
|
+
[formControl]="src"
|
|
105
|
+
></kendo-textbox>
|
|
106
|
+
</kendo-formfield>
|
|
107
|
+
<kendo-formfield>
|
|
108
|
+
<kendo-label
|
|
109
|
+
labelCssClass="k-form-label"
|
|
110
|
+
[for]="altTextInput"
|
|
111
|
+
[text]="textFor('imageAltText')"
|
|
112
|
+
></kendo-label>
|
|
113
|
+
<kendo-textbox
|
|
114
|
+
#altTextInput
|
|
115
|
+
[formControl]="alt"
|
|
116
|
+
></kendo-textbox>
|
|
117
|
+
</kendo-formfield>
|
|
118
|
+
<kendo-formfield>
|
|
119
|
+
<kendo-label
|
|
120
|
+
labelCssClass="k-form-label"
|
|
121
|
+
[for]="widthInput"
|
|
122
|
+
[text]="textFor('imageWidth')"
|
|
123
|
+
></kendo-label>
|
|
124
|
+
<kendo-textbox
|
|
125
|
+
#widthInput
|
|
126
|
+
[formControl]="width"
|
|
127
|
+
></kendo-textbox>
|
|
128
|
+
</kendo-formfield>
|
|
129
|
+
<kendo-formfield>
|
|
130
|
+
<kendo-label
|
|
131
|
+
[for]="heightInput"
|
|
132
|
+
[text]="textFor('imageHeight')"
|
|
133
|
+
labelCssClass="k-form-label"
|
|
134
|
+
></kendo-label>
|
|
135
|
+
<kendo-textbox
|
|
136
|
+
#heightInput
|
|
137
|
+
[formControl]="height"
|
|
138
|
+
></kendo-textbox>
|
|
139
|
+
</kendo-formfield>
|
|
128
140
|
</div>
|
|
129
|
-
<kendo-dialog-actions
|
|
130
|
-
<button
|
|
131
|
-
|
|
132
|
-
|
|
141
|
+
<kendo-dialog-actions layout="start">
|
|
142
|
+
<button
|
|
143
|
+
kendoButton
|
|
144
|
+
[disabled]="imageData.invalid"
|
|
145
|
+
[primary]="true"
|
|
146
|
+
(click)="onConfirmAction()"
|
|
147
|
+
>{{ textFor('dialogInsert') }}</button>
|
|
148
|
+
<button
|
|
149
|
+
kendoButton
|
|
150
|
+
(click)="onCancelAction()"
|
|
151
|
+
>{{ textFor('dialogCancel') }}</button>
|
|
133
152
|
</kendo-dialog-actions>
|
|
134
|
-
`, isInline: true, components: [{ type: i1.DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { type: i3.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional"], exportAs: ["kendoLabel"] }, { type:
|
|
153
|
+
`, isInline: true, components: [{ type: i1.DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { type: i3.FormFieldComponent, selector: "kendo-formfield", inputs: ["showHints", "orientation", "showErrors"] }, { type: i4.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { type: i3.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "errorIcon", "clearButtonIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { type: i1.DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { type: i5.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }], directives: [{ type: i6.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i6.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] });
|
|
135
154
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ImageDialogComponent, decorators: [{
|
|
136
155
|
type: Component,
|
|
137
156
|
args: [{
|
|
@@ -139,44 +158,63 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
139
158
|
<kendo-dialog-titlebar (close)="onCancelAction()">
|
|
140
159
|
{{ textFor('insertImage') }}
|
|
141
160
|
</kendo-dialog-titlebar>
|
|
142
|
-
<div class="k-form k-form-md k-form-
|
|
143
|
-
<
|
|
144
|
-
<
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
<
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
<
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
<
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
161
|
+
<div class="k-form k-form-md k-form-vertical">
|
|
162
|
+
<kendo-formfield>
|
|
163
|
+
<kendo-label
|
|
164
|
+
labelCssClass="k-form-label"
|
|
165
|
+
[for]="srcInput"
|
|
166
|
+
[text]="textFor('imageWebAddress')"
|
|
167
|
+
></kendo-label>
|
|
168
|
+
<kendo-textbox
|
|
169
|
+
#srcInput
|
|
170
|
+
[formControl]="src"
|
|
171
|
+
></kendo-textbox>
|
|
172
|
+
</kendo-formfield>
|
|
173
|
+
<kendo-formfield>
|
|
174
|
+
<kendo-label
|
|
175
|
+
labelCssClass="k-form-label"
|
|
176
|
+
[for]="altTextInput"
|
|
177
|
+
[text]="textFor('imageAltText')"
|
|
178
|
+
></kendo-label>
|
|
179
|
+
<kendo-textbox
|
|
180
|
+
#altTextInput
|
|
181
|
+
[formControl]="alt"
|
|
182
|
+
></kendo-textbox>
|
|
183
|
+
</kendo-formfield>
|
|
184
|
+
<kendo-formfield>
|
|
185
|
+
<kendo-label
|
|
186
|
+
labelCssClass="k-form-label"
|
|
187
|
+
[for]="widthInput"
|
|
188
|
+
[text]="textFor('imageWidth')"
|
|
189
|
+
></kendo-label>
|
|
190
|
+
<kendo-textbox
|
|
191
|
+
#widthInput
|
|
192
|
+
[formControl]="width"
|
|
193
|
+
></kendo-textbox>
|
|
194
|
+
</kendo-formfield>
|
|
195
|
+
<kendo-formfield>
|
|
196
|
+
<kendo-label
|
|
197
|
+
[for]="heightInput"
|
|
198
|
+
[text]="textFor('imageHeight')"
|
|
199
|
+
labelCssClass="k-form-label"
|
|
200
|
+
></kendo-label>
|
|
201
|
+
<kendo-textbox
|
|
202
|
+
#heightInput
|
|
203
|
+
[formControl]="height"
|
|
204
|
+
></kendo-textbox>
|
|
205
|
+
</kendo-formfield>
|
|
175
206
|
</div>
|
|
176
|
-
<kendo-dialog-actions
|
|
177
|
-
<button
|
|
178
|
-
|
|
179
|
-
|
|
207
|
+
<kendo-dialog-actions layout="start">
|
|
208
|
+
<button
|
|
209
|
+
kendoButton
|
|
210
|
+
[disabled]="imageData.invalid"
|
|
211
|
+
[primary]="true"
|
|
212
|
+
(click)="onConfirmAction()"
|
|
213
|
+
>{{ textFor('dialogInsert') }}</button>
|
|
214
|
+
<button
|
|
215
|
+
kendoButton
|
|
216
|
+
(click)="onCancelAction()"
|
|
217
|
+
>{{ textFor('dialogCancel') }}</button>
|
|
180
218
|
</kendo-dialog-actions>
|
|
181
219
|
`
|
|
182
220
|
}]
|
|
@@ -44,8 +44,11 @@ InsertTableDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
44
44
|
<div [style.text-align]="'center'">
|
|
45
45
|
<kendo-popup-table-grid (cellClick)="onCellClick($event)"></kendo-popup-table-grid>
|
|
46
46
|
</div>
|
|
47
|
-
<kendo-dialog-actions
|
|
48
|
-
<button
|
|
47
|
+
<kendo-dialog-actions layout="start">
|
|
48
|
+
<button
|
|
49
|
+
kendoButton
|
|
50
|
+
(click)="onCancelAction()"
|
|
51
|
+
>{{ textFor('dialogCancel') }}</button>
|
|
49
52
|
</kendo-dialog-actions>
|
|
50
53
|
`, isInline: true, components: [{ type: i1.DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { type: i3.PopupTableGridComponent, selector: "kendo-popup-table-grid", outputs: ["cellClick", "tableWizardClick"] }, { type: i1.DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { type: i4.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
51
54
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: InsertTableDialogComponent, decorators: [{
|
|
@@ -58,8 +61,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
58
61
|
<div [style.text-align]="'center'">
|
|
59
62
|
<kendo-popup-table-grid (cellClick)="onCellClick($event)"></kendo-popup-table-grid>
|
|
60
63
|
</div>
|
|
61
|
-
<kendo-dialog-actions
|
|
62
|
-
<button
|
|
64
|
+
<kendo-dialog-actions layout="start">
|
|
65
|
+
<button
|
|
66
|
+
kendoButton
|
|
67
|
+
(click)="onCancelAction()"
|
|
68
|
+
>{{ textFor('dialogCancel') }}</button>
|
|
63
69
|
</kendo-dialog-actions>
|
|
64
70
|
`
|
|
65
71
|
}]
|
|
@@ -65,9 +65,16 @@ SourceDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
65
65
|
[value]="data"
|
|
66
66
|
[style.height.%]="100"
|
|
67
67
|
></kendo-textarea>
|
|
68
|
-
<kendo-dialog-actions>
|
|
69
|
-
<button
|
|
70
|
-
|
|
68
|
+
<kendo-dialog-actions layout="start">
|
|
69
|
+
<button
|
|
70
|
+
kendoButton
|
|
71
|
+
[primary]="true"
|
|
72
|
+
(click)="onConfirmAction()"
|
|
73
|
+
>{{ textFor('dialogUpdate') }}</button>
|
|
74
|
+
<button
|
|
75
|
+
kendoButton
|
|
76
|
+
(click)="onCancelAction()"
|
|
77
|
+
>{{ textFor('dialogCancel') }}</button>
|
|
71
78
|
</kendo-dialog-actions>
|
|
72
79
|
`, isInline: true, components: [{ type: i1.DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { type: i3.TextAreaComponent, selector: "kendo-textarea", inputs: ["focusableId", "flow", "rows", "cols", "maxlength", "tabindex", "tabIndex", "resizable", "size", "rounded", "fillMode"], outputs: ["focus", "blur", "valueChange"], exportAs: ["kendoTextArea"] }, { type: i1.DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { type: i4.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
73
80
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SourceDialogComponent, decorators: [{
|
|
@@ -85,9 +92,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
85
92
|
[value]="data"
|
|
86
93
|
[style.height.%]="100"
|
|
87
94
|
></kendo-textarea>
|
|
88
|
-
<kendo-dialog-actions>
|
|
89
|
-
<button
|
|
90
|
-
|
|
95
|
+
<kendo-dialog-actions layout="start">
|
|
96
|
+
<button
|
|
97
|
+
kendoButton
|
|
98
|
+
[primary]="true"
|
|
99
|
+
(click)="onConfirmAction()"
|
|
100
|
+
>{{ textFor('dialogUpdate') }}</button>
|
|
101
|
+
<button
|
|
102
|
+
kendoButton
|
|
103
|
+
(click)="onCancelAction()"
|
|
104
|
+
>{{ textFor('dialogCancel') }}</button>
|
|
91
105
|
</kendo-dialog-actions>
|
|
92
106
|
`
|
|
93
107
|
}]
|
|
@@ -9,7 +9,7 @@ import { ToolBarModule } from '@progress/kendo-angular-toolbar';
|
|
|
9
9
|
import { DropDownsModule } from '@progress/kendo-angular-dropdowns';
|
|
10
10
|
import { DialogModule } from '@progress/kendo-angular-dialog';
|
|
11
11
|
import { ButtonModule } from '@progress/kendo-angular-buttons';
|
|
12
|
-
import { NumericTextBoxModule, TextBoxModule, TextAreaModule, ColorPickerModule, CheckBoxModule } from '@progress/kendo-angular-inputs';
|
|
12
|
+
import { NumericTextBoxModule, TextBoxModule, TextAreaModule, ColorPickerModule, CheckBoxModule, FormFieldModule } from '@progress/kendo-angular-inputs';
|
|
13
13
|
import { LabelModule } from "@progress/kendo-angular-label";
|
|
14
14
|
import { IconsModule } from '@progress/kendo-angular-icons';
|
|
15
15
|
import { EditorComponent } from './editor.component';
|
|
@@ -290,6 +290,7 @@ EditorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "
|
|
|
290
290
|
ToolBarModule,
|
|
291
291
|
TextBoxModule,
|
|
292
292
|
TextAreaModule,
|
|
293
|
+
FormFieldModule,
|
|
293
294
|
LabelModule], exports: [EditorComponent,
|
|
294
295
|
//alignment
|
|
295
296
|
EditorAlignLeftButtonDirective,
|
|
@@ -373,6 +374,7 @@ EditorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
|
373
374
|
ToolBarModule,
|
|
374
375
|
TextBoxModule,
|
|
375
376
|
TextAreaModule,
|
|
377
|
+
FormFieldModule,
|
|
376
378
|
LabelModule
|
|
377
379
|
], ToolBarModule,
|
|
378
380
|
ButtonModule,
|
|
@@ -417,6 +419,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
417
419
|
ToolBarModule,
|
|
418
420
|
TextBoxModule,
|
|
419
421
|
TextAreaModule,
|
|
422
|
+
FormFieldModule,
|
|
420
423
|
LabelModule
|
|
421
424
|
]
|
|
422
425
|
}]
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-editor',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '13.0.0-develop.
|
|
12
|
+
publishDate: 1685097014,
|
|
13
|
+
version: '13.0.0-develop.7',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -221,7 +221,7 @@ EditorColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0
|
|
|
221
221
|
</span>
|
|
222
222
|
</div>
|
|
223
223
|
</ng-template>
|
|
224
|
-
`, isInline: true, components: [{ type: i4.ColorPickerComponent, selector: "kendo-colorpicker", inputs: ["views", "view", "activeView", "readonly", "disabled", "format", "value", "popupSettings", "paletteSettings", "gradientSettings", "icon", "iconClass", "svgIcon", "clearButton", "tabindex", "preview", "actionsLayout", "size", "rounded", "fillMode"], outputs: ["valueChange", "open", "close", "focus", "blur", "cancel", "activeColorClick", "clearButtonClick", "activeViewChange"], exportAs: ["kendoColorPicker"] }, { type: i5.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
224
|
+
`, isInline: true, components: [{ type: i4.ColorPickerComponent, selector: "kendo-colorpicker", inputs: ["views", "view", "activeView", "readonly", "disabled", "format", "value", "popupSettings", "paletteSettings", "gradientSettings", "icon", "iconClass", "svgIcon", "clearButton", "tabindex", "preview", "actionsLayout", "size", "rounded", "fillMode"], outputs: ["valueChange", "open", "close", "focus", "blur", "cancel", "activeColorClick", "clearButtonClick", "activeViewChange"], exportAs: ["kendoColorPicker"] }, { type: i5.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
225
225
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: EditorColorPickerComponent, decorators: [{
|
|
226
226
|
type: Component,
|
|
227
227
|
args: [{
|
|
@@ -189,7 +189,7 @@ EditorFontFamilyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
189
189
|
</span>
|
|
190
190
|
</div>
|
|
191
191
|
</ng-template>
|
|
192
|
-
`, isInline: true, components: [{ type: i5.FontFamilyDropDownListComponent, selector: "kendo-editor-fontfamily-dropdownlist", inputs: ["data", "value", "defaultItem", "itemDisabled", "title", "disabled", "tabindex"], outputs: ["valueChange"] }, { type: i6.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
192
|
+
`, isInline: true, components: [{ type: i5.FontFamilyDropDownListComponent, selector: "kendo-editor-fontfamily-dropdownlist", inputs: ["data", "value", "defaultItem", "itemDisabled", "title", "disabled", "tabindex"], outputs: ["valueChange"] }, { type: i6.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
193
193
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: EditorFontFamilyComponent, decorators: [{
|
|
194
194
|
type: Component,
|
|
195
195
|
args: [{
|
|
@@ -197,7 +197,7 @@ EditorFontSizeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
197
197
|
</span>
|
|
198
198
|
</div>
|
|
199
199
|
</ng-template>
|
|
200
|
-
`, isInline: true, components: [{ type: i5.FontSizeDropDownListComponent, selector: "kendo-editor-fontsize-dropdownlist", inputs: ["data", "value", "defaultItem", "itemDisabled", "title", "disabled", "tabindex"], outputs: ["valueChange"] }, { type: i6.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
200
|
+
`, isInline: true, components: [{ type: i5.FontSizeDropDownListComponent, selector: "kendo-editor-fontsize-dropdownlist", inputs: ["data", "value", "defaultItem", "itemDisabled", "title", "disabled", "tabindex"], outputs: ["valueChange"] }, { type: i6.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
201
201
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: EditorFontSizeComponent, decorators: [{
|
|
202
202
|
type: Component,
|
|
203
203
|
args: [{
|
|
@@ -184,7 +184,7 @@ EditorFormatComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
184
184
|
</span>
|
|
185
185
|
</div>
|
|
186
186
|
</ng-template>
|
|
187
|
-
`, isInline: true, components: [{ type: i5.FormatDropDownListComponent, selector: "kendo-editor-format-dropdownlist", inputs: ["data", "value", "defaultItem", "itemDisabled", "title", "disabled", "tabindex"], outputs: ["valueChange"] }, { type: i6.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
187
|
+
`, isInline: true, components: [{ type: i5.FormatDropDownListComponent, selector: "kendo-editor-format-dropdownlist", inputs: ["data", "value", "defaultItem", "itemDisabled", "title", "disabled", "tabindex"], outputs: ["valueChange"] }, { type: i6.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
188
188
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: EditorFormatComponent, decorators: [{
|
|
189
189
|
type: Component,
|
|
190
190
|
args: [{
|
|
@@ -198,7 +198,7 @@ EditorInsertTableButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
|
|
|
198
198
|
<ng-template #popupGridTemplate>
|
|
199
199
|
<kendo-popup-table-grid (cellClick)="onCellClick($event)" (tableWizardClick)="onTableWizardClick()"></kendo-popup-table-grid>
|
|
200
200
|
</ng-template>
|
|
201
|
-
`, isInline: true, components: [{ type: i5.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: i6.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }, { type: i7.PopupTableGridComponent, selector: "kendo-popup-table-grid", outputs: ["cellClick", "tableWizardClick"] }], directives: [{ type: i8.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
201
|
+
`, isInline: true, components: [{ type: i5.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: i6.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: i7.PopupTableGridComponent, selector: "kendo-popup-table-grid", outputs: ["cellClick", "tableWizardClick"] }], directives: [{ type: i8.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
202
202
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: EditorInsertTableButtonComponent, decorators: [{
|
|
203
203
|
type: Component,
|
|
204
204
|
args: [{
|