@syncfusion/ej2-inplace-editor 30.2.4 → 31.1.17
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/.eslintrc.json +29 -4
- package/dist/ej2-inplace-editor.min.js +2 -2
- package/dist/ej2-inplace-editor.umd.min.js +1 -1
- package/dist/global/ej2-inplace-editor.min.js +1 -1
- package/dist/global/index.d.ts +1 -1
- package/dist/ts/index.d.ts +4 -0
- package/dist/ts/index.ts +4 -0
- package/dist/ts/inplace-editor/base/classes.d.ts +63 -0
- package/dist/ts/inplace-editor/base/classes.ts +63 -0
- package/dist/ts/inplace-editor/base/events.d.ts +17 -0
- package/dist/ts/inplace-editor/base/events.ts +18 -0
- package/dist/ts/inplace-editor/base/index.d.ts +10 -0
- package/dist/ts/inplace-editor/base/index.ts +10 -0
- package/dist/ts/inplace-editor/base/inplace-editor-model.d.ts +344 -0
- package/dist/ts/inplace-editor/base/inplace-editor.d.ts +623 -0
- package/dist/ts/inplace-editor/base/inplace-editor.ts +1762 -0
- package/dist/ts/inplace-editor/base/interface.d.ts +117 -0
- package/dist/ts/inplace-editor/base/interface.ts +127 -0
- package/dist/ts/inplace-editor/base/models-model.d.ts +22 -0
- package/dist/ts/inplace-editor/base/models.d.ts +31 -0
- package/dist/ts/inplace-editor/base/models.ts +45 -0
- package/dist/ts/inplace-editor/base/util.d.ts +28 -0
- package/dist/ts/inplace-editor/base/util.ts +104 -0
- package/dist/ts/inplace-editor/index.d.ts +5 -0
- package/dist/ts/inplace-editor/index.ts +5 -0
- package/dist/ts/inplace-editor/modules/auto-complete.d.ts +34 -0
- package/dist/ts/inplace-editor/modules/auto-complete.ts +65 -0
- package/dist/ts/inplace-editor/modules/base-module.d.ts +19 -0
- package/dist/ts/inplace-editor/modules/base-module.ts +74 -0
- package/dist/ts/inplace-editor/modules/color-picker.d.ts +29 -0
- package/dist/ts/inplace-editor/modules/color-picker.ts +55 -0
- package/dist/ts/inplace-editor/modules/combo-box.d.ts +34 -0
- package/dist/ts/inplace-editor/modules/combo-box.ts +63 -0
- package/dist/ts/inplace-editor/modules/date-range-picker.d.ts +29 -0
- package/dist/ts/inplace-editor/modules/date-range-picker.ts +55 -0
- package/dist/ts/inplace-editor/modules/index.d.ts +12 -0
- package/dist/ts/inplace-editor/modules/index.ts +12 -0
- package/dist/ts/inplace-editor/modules/multi-select.d.ts +35 -0
- package/dist/ts/inplace-editor/modules/multi-select.ts +88 -0
- package/dist/ts/inplace-editor/modules/rte.d.ts +31 -0
- package/dist/ts/inplace-editor/modules/rte.ts +73 -0
- package/dist/ts/inplace-editor/modules/slider.d.ts +30 -0
- package/dist/ts/inplace-editor/modules/slider.ts +59 -0
- package/dist/ts/inplace-editor/modules/time-picker.d.ts +29 -0
- package/dist/ts/inplace-editor/modules/time-picker.ts +54 -0
- package/package.json +59 -23
- package/styles/bootstrap-dark-lite.css +4 -0
- package/styles/bootstrap-dark.css +4 -0
- package/styles/bootstrap-lite.css +63 -3
- package/styles/bootstrap.css +63 -3
- package/styles/bootstrap4-lite.css +87 -3
- package/styles/bootstrap4.css +87 -3
- package/styles/fluent2-lite.css +1 -2
- package/styles/fluent2.css +1 -2
- package/styles/inplace-editor/bootstrap-dark.css +4 -0
- package/styles/inplace-editor/bootstrap.css +63 -3
- package/styles/inplace-editor/bootstrap4.css +87 -3
- package/styles/inplace-editor/fluent2.css +1 -2
- package/styles/inplace-editor/material.css +0 -9
- package/styles/inplace-editor/tailwind3.css +0 -1
- package/styles/material-lite.css +0 -9
- package/styles/material.css +0 -9
- package/styles/tailwind3-lite.css +0 -1
- package/styles/tailwind3.css +0 -1
- package/tslint.json +111 -0
|
@@ -0,0 +1,344 @@
|
|
|
1
|
+
import { Component, INotifyPropertyChanged, NotifyPropertyChanges, Property, Event, EmitType, select } from '@syncfusion/ej2-base';import { detach, addClass, removeClass, EventHandler, setStyleAttribute, Complex, ModuleDeclaration } from '@syncfusion/ej2-base';import { isNullOrUndefined as isNOU, closest, extend, L10n, compile, Browser, Touch, TapEventArgs } from '@syncfusion/ej2-base';import { updateBlazorTemplate, resetBlazorTemplate, SanitizeHtmlHelper, getValue, isBlazor } from '@syncfusion/ej2-base';import { DataManager, UrlAdaptor, Query, WebApiAdaptor, ODataV4Adaptor, ReturnOption, Predicate } from '@syncfusion/ej2-data';import { Button, ButtonModel } from '@syncfusion/ej2-buttons';import { RichTextEditorModel } from '@syncfusion/ej2-richtexteditor';import { DatePicker, DatePickerModel, DateTimePicker, DateRange, RangeEventArgs } from '@syncfusion/ej2-calendars';import { DateTimePickerModel, DateRangePickerModel, TimePickerModel } from '@syncfusion/ej2-calendars';import { createSpinner, hideSpinner, SpinnerArgs, showSpinner} from '@syncfusion/ej2-popups';import { Tooltip, TooltipEventArgs, TipPointerPosition } from '@syncfusion/ej2-popups';import { NumericTextBox, NumericTextBoxModel, TextBox, TextBoxModel, SliderChangeEventArgs, ValidArgs } from '@syncfusion/ej2-inputs';import { ColorPickerModel, FormValidator, MaskedTextBox, MaskedTextBoxModel, SliderModel } from '@syncfusion/ej2-inputs';import { ChangeEventArgs as InputChangeEventArgs, ColorPickerEventArgs } from '@syncfusion/ej2-inputs';import { AutoCompleteModel, ComboBoxModel, DropDownList, DropDownListModel, MultiSelectModel } from '@syncfusion/ej2-dropdowns';import { MultiSelectChangeEventArgs, ChangeEventArgs as DropDownsChangeEventArgs } from '@syncfusion/ej2-dropdowns';import { Rte } from '../modules/rte';import { Slider } from '../modules/slider';import { ComboBox } from '../modules/combo-box';import { TimePicker } from '../modules/time-picker';import { MultiSelect } from '../modules/multi-select';import { ColorPicker } from '../modules/color-picker';import { AutoComplete } from '../modules/auto-complete';import { DateRangePicker } from '../modules/date-range-picker';import * as events from './events';import * as classes from './classes';import { PopupSettings, modulesList, localeConstant } from './models';import { PopupSettingsModel } from './models-model';import { ActionBeginEventArgs, ActionEventArgs, FormEventArgs, ValidateEventArgs, IButton, BeginEditEventArgs } from './interface';import { ChangeEventArgs, EndEditEventArgs } from './interface';import { parseValue, getCompValue, encode } from './util';
|
|
2
|
+
import {RenderMode,AdaptorType,InputType,EditableType,textOptionType,ActionBlur,BeforeSanitizeHtmlArgs} from "./inplace-editor";
|
|
3
|
+
import {ComponentModel} from '@syncfusion/ej2-base';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Interface for a class InPlaceEditor
|
|
7
|
+
*/
|
|
8
|
+
export interface InPlaceEditorModel extends ComponentModel{
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Specifies the name of the field which is used to map data to the server.
|
|
12
|
+
* If name is not given, then component ID is taken as mapping field name.
|
|
13
|
+
*
|
|
14
|
+
* {% codeBlock src='inplace-editor/name/index.md' %}{% endcodeBlock %}
|
|
15
|
+
*
|
|
16
|
+
* @default ''
|
|
17
|
+
*/
|
|
18
|
+
name?: string;
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Specifies the display value for input when original input value is empty.
|
|
22
|
+
*
|
|
23
|
+
* {% codeBlock src='inplace-editor/value/index.md' %}{% endcodeBlock %}
|
|
24
|
+
*
|
|
25
|
+
* @default null
|
|
26
|
+
* @isGenericType true
|
|
27
|
+
*/
|
|
28
|
+
value?: string | number | Date | string[] | Date[] | number[];
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Specifies the HTML element ID as a string that can be added as a editable field.
|
|
32
|
+
*
|
|
33
|
+
* {% codeBlock src='inplace-editor/template/index.md' %}{% endcodeBlock %}
|
|
34
|
+
*
|
|
35
|
+
* @default ''
|
|
36
|
+
* @blazorType string
|
|
37
|
+
* @aspType string
|
|
38
|
+
*/
|
|
39
|
+
template?: string | HTMLElement | Function;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Defines whether to allow the cross-scripting site or not.
|
|
43
|
+
*
|
|
44
|
+
* @default true
|
|
45
|
+
*/
|
|
46
|
+
enableHtmlSanitizer?: boolean;
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* It enables or disables the parsing of HTML string content into HTML DOM elements for In-place Editor.
|
|
50
|
+
* If the value of the property is set to false, the In-place Editor value will be displayed as HTML string instead of HTML DOM elements.
|
|
51
|
+
*
|
|
52
|
+
* @default true
|
|
53
|
+
*/
|
|
54
|
+
enableHtmlParse?: boolean;
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Defines single/multiple classes (separated by space) to be used for customization of In-place editor.
|
|
58
|
+
*
|
|
59
|
+
* @default ''
|
|
60
|
+
*/
|
|
61
|
+
cssClass?: string;
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* Defines the unique primary key of editable field which can be used for saving data in data-base.
|
|
65
|
+
*
|
|
66
|
+
* {% codeBlock src='inplace-editor/primary-key/index.md' %}{% endcodeBlock %}
|
|
67
|
+
*
|
|
68
|
+
* @default ''
|
|
69
|
+
*/
|
|
70
|
+
primaryKey?: string | number;
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* Sets the text to be shown when an element has 'Empty' value.
|
|
74
|
+
*
|
|
75
|
+
* {% codeBlock src='inplace-editor/empty-text/index.md' %}{% endcodeBlock %}
|
|
76
|
+
*
|
|
77
|
+
* @default 'Empty'
|
|
78
|
+
*/
|
|
79
|
+
emptyText?: string;
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* Gets the url for server submit action.
|
|
83
|
+
*
|
|
84
|
+
* {% codeBlock src='inplace-editor/url/index.md' %}{% endcodeBlock %}
|
|
85
|
+
*
|
|
86
|
+
* @default ''
|
|
87
|
+
*/
|
|
88
|
+
url?: string;
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* Specifies the mode to be render while editing. The possible modes are :
|
|
92
|
+
*
|
|
93
|
+
* - `Inline`: Editable content is displayed as inline text and ok/cancel buttons are displayed at right bottom corner of input.
|
|
94
|
+
* - `Popup`: Editable content and ok/cancel buttons are displayed inside popup while editing.
|
|
95
|
+
*
|
|
96
|
+
* {% codeBlock src='inplace-editor/mode/index.md' %}{% endcodeBlock %}
|
|
97
|
+
*
|
|
98
|
+
* @default 'Popup'
|
|
99
|
+
*/
|
|
100
|
+
mode?: RenderMode;
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* Specifies the adaptor type that are used DataManager to communicate with DataSource. The possible values are,
|
|
104
|
+
*
|
|
105
|
+
* - `UrlAdaptor`: Base adaptor for interacting with remote data services.
|
|
106
|
+
* - `ODataV4Adaptor`: Used to interact with ODataV4 service.
|
|
107
|
+
* - `WebApiAdaptor`: Used to interact with Web api created with OData endpoint.
|
|
108
|
+
*
|
|
109
|
+
* {% codeBlock src='inplace-editor/adaptor/index.md' %}{% endcodeBlock %}
|
|
110
|
+
*
|
|
111
|
+
* @default 'UrlAdaptor'
|
|
112
|
+
*/
|
|
113
|
+
adaptor?: AdaptorType;
|
|
114
|
+
|
|
115
|
+
/**
|
|
116
|
+
* Specifies the type of components that integrated with In-place editor to make it as editable.
|
|
117
|
+
*
|
|
118
|
+
* {% codeBlock src='inplace-editor/type/index.md' %}{% endcodeBlock %}
|
|
119
|
+
*
|
|
120
|
+
* @default 'Text'
|
|
121
|
+
*/
|
|
122
|
+
type?: InputType;
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* Specifies the event action of input to enter edit mode instead of using edit icon. The possible values are:
|
|
126
|
+
*
|
|
127
|
+
* - `Click`: Do the single click action on input to enter into the edit mode.
|
|
128
|
+
* - `DblClick`: Do the single double click action on input to enter into the edit mode.
|
|
129
|
+
* - `EditIconClick`: Disables the editing of event action of input and allows user to edit only through edit icon.
|
|
130
|
+
*
|
|
131
|
+
* {% codeBlock src='inplace-editor/editable-on/index.md' %}{% endcodeBlock %}
|
|
132
|
+
*
|
|
133
|
+
* @default 'Click'
|
|
134
|
+
*/
|
|
135
|
+
editableOn?: EditableType;
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* Specifies the option to be set on initial rendering. It is applicable for DropDownList,
|
|
139
|
+
* AutoComplete, ComboBox, and MultiSelect component types.
|
|
140
|
+
* The possible options are:
|
|
141
|
+
*
|
|
142
|
+
* - `Never`: The corresponding field value will never be set initially in the component.
|
|
143
|
+
* - `Always`: The corresponding field value will be set initially in the component.
|
|
144
|
+
*
|
|
145
|
+
* @default 'Never'
|
|
146
|
+
*/
|
|
147
|
+
textOption?: textOptionType;
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* Specifies the action to be perform when user clicks outside the container, that is focus out of editable content.
|
|
151
|
+
* The possible options are,
|
|
152
|
+
*
|
|
153
|
+
* - `Cancel`: Cancel's the editing and resets the old content.
|
|
154
|
+
* - `Submit`: Submit the edited content to the server.
|
|
155
|
+
* - `Ignore`: No action is perform with this type and allows to have many containers open.
|
|
156
|
+
*
|
|
157
|
+
* @default 'Submit'
|
|
158
|
+
*/
|
|
159
|
+
actionOnBlur?: ActionBlur;
|
|
160
|
+
|
|
161
|
+
/**
|
|
162
|
+
* Enable or disable persisting component's state between page reloads. If enabled, following list of states will be persisted.
|
|
163
|
+
* 1. value
|
|
164
|
+
*
|
|
165
|
+
* {% codeBlock src='inplace-editor/enable-persistence/index.md' %}{% endcodeBlock %}
|
|
166
|
+
*
|
|
167
|
+
* @default false
|
|
168
|
+
*/
|
|
169
|
+
enablePersistence?: boolean;
|
|
170
|
+
|
|
171
|
+
/**
|
|
172
|
+
* Specifies whether to enable editing mode or not.
|
|
173
|
+
*
|
|
174
|
+
* @default false
|
|
175
|
+
*/
|
|
176
|
+
disabled?: boolean;
|
|
177
|
+
|
|
178
|
+
/**
|
|
179
|
+
* Used to show/hide the ok/cancel buttons of In-place editor.
|
|
180
|
+
*
|
|
181
|
+
* {% codeBlock src='inplace-editor/show-buttons/index.md' %}{% endcodeBlock %}
|
|
182
|
+
*
|
|
183
|
+
* @default true
|
|
184
|
+
*/
|
|
185
|
+
showButtons?: boolean;
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* Specifies to show/hide the editing mode.
|
|
189
|
+
*
|
|
190
|
+
* {% codeBlock src='inplace-editor/enable-edit-mode/index.md' %}{% endcodeBlock %}
|
|
191
|
+
*
|
|
192
|
+
* @default false
|
|
193
|
+
*/
|
|
194
|
+
enableEditMode?: boolean;
|
|
195
|
+
|
|
196
|
+
/**
|
|
197
|
+
* Sets to trigger the submit action with enter key pressing of input.
|
|
198
|
+
*
|
|
199
|
+
* {% codeBlock src='inplace-editor/submit-on-enter/index.md' %}{% endcodeBlock %}
|
|
200
|
+
*
|
|
201
|
+
* @default true
|
|
202
|
+
*/
|
|
203
|
+
submitOnEnter?: boolean;
|
|
204
|
+
|
|
205
|
+
/**
|
|
206
|
+
* Specifies the object to customize popup display settings like positions, animation etc.
|
|
207
|
+
*
|
|
208
|
+
* {% codeBlock src='inplace-editor/popup-settings/index.md' %}{% endcodeBlock %}
|
|
209
|
+
*
|
|
210
|
+
* @default {}
|
|
211
|
+
*/
|
|
212
|
+
popupSettings?: PopupSettingsModel;
|
|
213
|
+
|
|
214
|
+
/**
|
|
215
|
+
* Specifies the model object configuration for the integrated components like AutoComplete, DatePicker,NumericTextBox, etc.
|
|
216
|
+
*
|
|
217
|
+
* {% codeBlock src='inplace-editor/model/index.md' %}{% endcodeBlock %}
|
|
218
|
+
*
|
|
219
|
+
* @default null
|
|
220
|
+
*/
|
|
221
|
+
model?: AutoCompleteModel | ColorPickerModel | ComboBoxModel | DatePickerModel | DateRangePickerModel | DateTimePickerModel | DropDownListModel | MaskedTextBoxModel | MultiSelectModel | NumericTextBoxModel | RichTextEditorModel | SliderModel | TextBoxModel | TimePickerModel;
|
|
222
|
+
|
|
223
|
+
/**
|
|
224
|
+
* Used to customize the "Save" button UI appearance by defining Button model configuration.
|
|
225
|
+
*
|
|
226
|
+
* {% codeBlock src='inplace-editor/save-button/index.md' %}{% endcodeBlock %}
|
|
227
|
+
*
|
|
228
|
+
* @default { iconCss: 'e-icons e-save-icon' }
|
|
229
|
+
*/
|
|
230
|
+
saveButton?: ButtonModel;
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* Used to customize the "Cancel" button UI appearance by defining Button model configuration.
|
|
234
|
+
*
|
|
235
|
+
* {% codeBlock src='inplace-editor/cancel-button/index.md' %}{% endcodeBlock %}
|
|
236
|
+
*
|
|
237
|
+
* @default { iconCss: 'e-icons e-cancel-icon' }
|
|
238
|
+
*/
|
|
239
|
+
cancelButton?: ButtonModel;
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* Maps the validation rules for the input.
|
|
243
|
+
*
|
|
244
|
+
* {% codeBlock src='inplace-editor/validation-rules/index.md' %}{% endcodeBlock %}
|
|
245
|
+
*
|
|
246
|
+
* @default null
|
|
247
|
+
*/
|
|
248
|
+
validationRules?: { [name: string]: { [rule: string]: Object } };
|
|
249
|
+
|
|
250
|
+
/**
|
|
251
|
+
* The event will be fired once the component rendering is completed.
|
|
252
|
+
*
|
|
253
|
+
* @event 'event'
|
|
254
|
+
* @blazorProperty 'Created'
|
|
255
|
+
*/
|
|
256
|
+
created?: EmitType<Event>;
|
|
257
|
+
|
|
258
|
+
/**
|
|
259
|
+
* Event triggers before sanitize the value.
|
|
260
|
+
* @event
|
|
261
|
+
* @blazorProperty 'OnSanitizeHtml'
|
|
262
|
+
*/
|
|
263
|
+
beforeSanitizeHtml?: EmitType<BeforeSanitizeHtmlArgs>;
|
|
264
|
+
|
|
265
|
+
/**
|
|
266
|
+
* The event will be fired before the data submitted to the server.
|
|
267
|
+
*
|
|
268
|
+
* @event 'event'
|
|
269
|
+
* @blazorProperty 'OnActionBegin'
|
|
270
|
+
*/
|
|
271
|
+
actionBegin?: EmitType<ActionBeginEventArgs>;
|
|
272
|
+
|
|
273
|
+
/**
|
|
274
|
+
* The event will be fired when data submitted successfully to the server.
|
|
275
|
+
*
|
|
276
|
+
* @event 'event'
|
|
277
|
+
* @blazorProperty 'OnActionSuccess'
|
|
278
|
+
*/
|
|
279
|
+
actionSuccess?: EmitType<ActionEventArgs>;
|
|
280
|
+
|
|
281
|
+
/**
|
|
282
|
+
* The event will be fired when data submission failed.
|
|
283
|
+
*
|
|
284
|
+
* @event 'event'
|
|
285
|
+
* @blazorProperty 'OnActionFailure'
|
|
286
|
+
*/
|
|
287
|
+
actionFailure?: EmitType<ActionEventArgs>;
|
|
288
|
+
|
|
289
|
+
/**
|
|
290
|
+
* The event will be fired while validating current value.
|
|
291
|
+
*
|
|
292
|
+
* @event 'event'
|
|
293
|
+
* @blazorProperty 'Validating'
|
|
294
|
+
*/
|
|
295
|
+
validating?: EmitType<ValidateEventArgs>;
|
|
296
|
+
|
|
297
|
+
/**
|
|
298
|
+
* The event will be fired before changing the mode from default to edit mode.
|
|
299
|
+
*
|
|
300
|
+
* @event 'event'
|
|
301
|
+
*/
|
|
302
|
+
beginEdit?: EmitType<BeginEditEventArgs>;
|
|
303
|
+
|
|
304
|
+
/**
|
|
305
|
+
* The event will be fired when the edit action is finished and begin to submit/cancel the current value.
|
|
306
|
+
*
|
|
307
|
+
* @event 'event'
|
|
308
|
+
*/
|
|
309
|
+
endEdit?: EmitType<EndEditEventArgs>;
|
|
310
|
+
|
|
311
|
+
/**
|
|
312
|
+
* The event will be fired when the integrated component value has changed that render based on the `type` property
|
|
313
|
+
* in the In-place editor.
|
|
314
|
+
*
|
|
315
|
+
* @event 'event'
|
|
316
|
+
* @blazorProperty 'ValueChange'
|
|
317
|
+
*/
|
|
318
|
+
change?: EmitType<ChangeEventArgs>;
|
|
319
|
+
|
|
320
|
+
/**
|
|
321
|
+
* Event triggers when click the submit button.
|
|
322
|
+
*
|
|
323
|
+
* @event 'event'
|
|
324
|
+
* @blazorProperty 'SubmitClick'
|
|
325
|
+
*/
|
|
326
|
+
submitClick?: EmitType<MouseEvent>;
|
|
327
|
+
|
|
328
|
+
/**
|
|
329
|
+
* Event triggers when click the cancel button.
|
|
330
|
+
*
|
|
331
|
+
* @event 'event'
|
|
332
|
+
* @blazorProperty 'CancelClick'
|
|
333
|
+
*/
|
|
334
|
+
cancelClick?: EmitType<MouseEvent>;
|
|
335
|
+
|
|
336
|
+
/**
|
|
337
|
+
* The event will be fired when the component gets destroyed.
|
|
338
|
+
*
|
|
339
|
+
* @event 'event'
|
|
340
|
+
* @blazorProperty 'Destroyed'
|
|
341
|
+
*/
|
|
342
|
+
destroyed?: EmitType<Event>;
|
|
343
|
+
|
|
344
|
+
}
|