@diwacopilot/components-angular 1.0.0
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/README.md +23 -0
- package/dist/directives/angular-component-lib/utils.d.ts +10 -0
- package/dist/directives/angular-component-lib/utils.d.ts.map +1 -0
- package/dist/directives/angular-component-lib/utils.js +58 -0
- package/dist/directives/d-proxies.d.ts +60 -0
- package/dist/directives/d-proxies.d.ts.map +1 -0
- package/dist/directives/d-proxies.js +250 -0
- package/dist/directives/index.d.ts +3 -0
- package/dist/directives/index.d.ts.map +1 -0
- package/dist/directives/index.js +60 -0
- package/dist/directives/proxies.d.ts +651 -0
- package/dist/directives/proxies.d.ts.map +1 -0
- package/dist/directives/proxies.js +1304 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3 -0
- package/package.json +46 -0
|
@@ -0,0 +1,651 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
|
+
import { Components } from '@diwacopilot/components';
|
|
3
|
+
export declare class DiwaAccordion {
|
|
4
|
+
protected z: NgZone;
|
|
5
|
+
protected el: HTMLElement;
|
|
6
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
7
|
+
}
|
|
8
|
+
export declare interface DiwaAccordion extends Components.DiwaAccordion {
|
|
9
|
+
/**
|
|
10
|
+
* Emitted when the user clicks the header toggle button.
|
|
11
|
+
|
|
12
|
+
`event.detail.open` is the **requested** next state.
|
|
13
|
+
The consumer must set the `open` prop accordingly:
|
|
14
|
+
|
|
15
|
+
```html
|
|
16
|
+
<diwa-accordion onUpdate={e => this.open = e.detail.open} />
|
|
17
|
+
```
|
|
18
|
+
*/
|
|
19
|
+
update: EventEmitter<CustomEvent<{
|
|
20
|
+
open: boolean;
|
|
21
|
+
}>>;
|
|
22
|
+
}
|
|
23
|
+
export declare class DiwaBadge {
|
|
24
|
+
protected z: NgZone;
|
|
25
|
+
protected el: HTMLElement;
|
|
26
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
27
|
+
}
|
|
28
|
+
export declare interface DiwaBadge extends Components.DiwaBadge {
|
|
29
|
+
}
|
|
30
|
+
export declare class DiwaButton {
|
|
31
|
+
protected z: NgZone;
|
|
32
|
+
protected el: HTMLElement;
|
|
33
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
34
|
+
}
|
|
35
|
+
export declare interface DiwaButton extends Components.DiwaButton {
|
|
36
|
+
}
|
|
37
|
+
export declare class DiwaButtonPure {
|
|
38
|
+
protected z: NgZone;
|
|
39
|
+
protected el: HTMLElement;
|
|
40
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
41
|
+
}
|
|
42
|
+
export declare interface DiwaButtonPure extends Components.DiwaButtonPure {
|
|
43
|
+
}
|
|
44
|
+
export declare class DiwaCheckbox {
|
|
45
|
+
protected z: NgZone;
|
|
46
|
+
protected el: HTMLElement;
|
|
47
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
48
|
+
}
|
|
49
|
+
export declare interface DiwaCheckbox extends Components.DiwaCheckbox {
|
|
50
|
+
/**
|
|
51
|
+
* Emitted when the user toggles the checkbox.
|
|
52
|
+
`event.detail.checked` is the new checked state.
|
|
53
|
+
|
|
54
|
+
React consumers: use the lowercase `onupdate` prop:
|
|
55
|
+
```jsx
|
|
56
|
+
<diwa-checkbox onupdate={e => setChecked(e.detail.checked)} />
|
|
57
|
+
```
|
|
58
|
+
*/
|
|
59
|
+
update: EventEmitter<CustomEvent<{
|
|
60
|
+
checked: boolean;
|
|
61
|
+
name: string;
|
|
62
|
+
value: string;
|
|
63
|
+
}>>;
|
|
64
|
+
}
|
|
65
|
+
export declare class DiwaDivider {
|
|
66
|
+
protected z: NgZone;
|
|
67
|
+
protected el: HTMLElement;
|
|
68
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
69
|
+
}
|
|
70
|
+
export declare interface DiwaDivider extends Components.DiwaDivider {
|
|
71
|
+
}
|
|
72
|
+
export declare class DiwaFlyout {
|
|
73
|
+
protected z: NgZone;
|
|
74
|
+
protected el: HTMLElement;
|
|
75
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
76
|
+
}
|
|
77
|
+
export declare interface DiwaFlyout extends Components.DiwaFlyout {
|
|
78
|
+
/**
|
|
79
|
+
* Emitted when the user requests the flyout to close (backdrop click,
|
|
80
|
+
Escape key press, or dismiss button click).
|
|
81
|
+
|
|
82
|
+
The consumer must set `open={false}` in response:
|
|
83
|
+
```html
|
|
84
|
+
<diwa-flyout onDismiss={() => this.open = false} />
|
|
85
|
+
```
|
|
86
|
+
Not bubbles, not composed.
|
|
87
|
+
*/
|
|
88
|
+
dismiss: EventEmitter<CustomEvent<void>>;
|
|
89
|
+
}
|
|
90
|
+
export declare class DiwaIcon {
|
|
91
|
+
protected z: NgZone;
|
|
92
|
+
protected el: HTMLElement;
|
|
93
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
94
|
+
}
|
|
95
|
+
export declare interface DiwaIcon extends Components.DiwaIcon {
|
|
96
|
+
}
|
|
97
|
+
export declare class DiwaInlineNotification {
|
|
98
|
+
protected z: NgZone;
|
|
99
|
+
protected el: HTMLElement;
|
|
100
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
101
|
+
}
|
|
102
|
+
export declare interface DiwaInlineNotification extends Components.DiwaInlineNotification {
|
|
103
|
+
/**
|
|
104
|
+
* Emitted when the dismiss (×) button is clicked.
|
|
105
|
+
The consumer is responsible for removing or hiding the notification in response.
|
|
106
|
+
*/
|
|
107
|
+
dismiss: EventEmitter<CustomEvent<void>>;
|
|
108
|
+
/**
|
|
109
|
+
* Emitted when the action button is clicked.
|
|
110
|
+
Only fired when `actionLabel` is set and the button is not in a loading state.
|
|
111
|
+
*/
|
|
112
|
+
action: EventEmitter<CustomEvent<void>>;
|
|
113
|
+
}
|
|
114
|
+
export declare class DiwaInput {
|
|
115
|
+
protected z: NgZone;
|
|
116
|
+
protected el: HTMLElement;
|
|
117
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
118
|
+
}
|
|
119
|
+
export declare interface DiwaInput extends Components.DiwaInput {
|
|
120
|
+
/**
|
|
121
|
+
* Emitted on every keystroke (mirrors native `input` event).
|
|
122
|
+
Payload is the current string value.
|
|
123
|
+
*/
|
|
124
|
+
diwaInput: EventEmitter<CustomEvent<string>>;
|
|
125
|
+
/**
|
|
126
|
+
* Emitted when the input loses focus (mirrors native `change` event).
|
|
127
|
+
Payload is the committed string value.
|
|
128
|
+
*/
|
|
129
|
+
diwaChange: EventEmitter<CustomEvent<string>>;
|
|
130
|
+
/**
|
|
131
|
+
* Emitted when the input receives focus.
|
|
132
|
+
*/
|
|
133
|
+
diwaFocus: EventEmitter<CustomEvent<FocusEvent>>;
|
|
134
|
+
/**
|
|
135
|
+
* Emitted when the input loses focus.
|
|
136
|
+
*/
|
|
137
|
+
diwaBlur: EventEmitter<CustomEvent<FocusEvent>>;
|
|
138
|
+
}
|
|
139
|
+
export declare class DiwaInputDate {
|
|
140
|
+
protected z: NgZone;
|
|
141
|
+
protected el: HTMLElement;
|
|
142
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
143
|
+
}
|
|
144
|
+
export declare interface DiwaInputDate extends Components.DiwaInputDate {
|
|
145
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
146
|
+
input: EventEmitter<CustomEvent<string>>;
|
|
147
|
+
blur: EventEmitter<CustomEvent<FocusEvent>>;
|
|
148
|
+
focus: EventEmitter<CustomEvent<FocusEvent>>;
|
|
149
|
+
}
|
|
150
|
+
export declare class DiwaInputEmail {
|
|
151
|
+
protected z: NgZone;
|
|
152
|
+
protected el: HTMLElement;
|
|
153
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
154
|
+
}
|
|
155
|
+
export declare interface DiwaInputEmail extends Components.DiwaInputEmail {
|
|
156
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
157
|
+
input: EventEmitter<CustomEvent<string>>;
|
|
158
|
+
blur: EventEmitter<CustomEvent<FocusEvent>>;
|
|
159
|
+
focus: EventEmitter<CustomEvent<FocusEvent>>;
|
|
160
|
+
}
|
|
161
|
+
export declare class DiwaInputMonth {
|
|
162
|
+
protected z: NgZone;
|
|
163
|
+
protected el: HTMLElement;
|
|
164
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
165
|
+
}
|
|
166
|
+
export declare interface DiwaInputMonth extends Components.DiwaInputMonth {
|
|
167
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
168
|
+
input: EventEmitter<CustomEvent<string>>;
|
|
169
|
+
blur: EventEmitter<CustomEvent<FocusEvent>>;
|
|
170
|
+
focus: EventEmitter<CustomEvent<FocusEvent>>;
|
|
171
|
+
}
|
|
172
|
+
export declare class DiwaInputNumber {
|
|
173
|
+
protected z: NgZone;
|
|
174
|
+
protected el: HTMLElement;
|
|
175
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
176
|
+
}
|
|
177
|
+
export declare interface DiwaInputNumber extends Components.DiwaInputNumber {
|
|
178
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
179
|
+
input: EventEmitter<CustomEvent<string>>;
|
|
180
|
+
blur: EventEmitter<CustomEvent<FocusEvent>>;
|
|
181
|
+
focus: EventEmitter<CustomEvent<FocusEvent>>;
|
|
182
|
+
}
|
|
183
|
+
export declare class DiwaInputPassword {
|
|
184
|
+
protected z: NgZone;
|
|
185
|
+
protected el: HTMLElement;
|
|
186
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
187
|
+
}
|
|
188
|
+
export declare interface DiwaInputPassword extends Components.DiwaInputPassword {
|
|
189
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
190
|
+
input: EventEmitter<CustomEvent<string>>;
|
|
191
|
+
blur: EventEmitter<CustomEvent<FocusEvent>>;
|
|
192
|
+
focus: EventEmitter<CustomEvent<FocusEvent>>;
|
|
193
|
+
}
|
|
194
|
+
export declare class DiwaInputSearch {
|
|
195
|
+
protected z: NgZone;
|
|
196
|
+
protected el: HTMLElement;
|
|
197
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
198
|
+
}
|
|
199
|
+
export declare interface DiwaInputSearch extends Components.DiwaInputSearch {
|
|
200
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
201
|
+
input: EventEmitter<CustomEvent<string>>;
|
|
202
|
+
blur: EventEmitter<CustomEvent<FocusEvent>>;
|
|
203
|
+
focus: EventEmitter<CustomEvent<FocusEvent>>;
|
|
204
|
+
}
|
|
205
|
+
export declare class DiwaInputTel {
|
|
206
|
+
protected z: NgZone;
|
|
207
|
+
protected el: HTMLElement;
|
|
208
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
209
|
+
}
|
|
210
|
+
export declare interface DiwaInputTel extends Components.DiwaInputTel {
|
|
211
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
212
|
+
input: EventEmitter<CustomEvent<string>>;
|
|
213
|
+
blur: EventEmitter<CustomEvent<FocusEvent>>;
|
|
214
|
+
focus: EventEmitter<CustomEvent<FocusEvent>>;
|
|
215
|
+
}
|
|
216
|
+
export declare class DiwaInputText {
|
|
217
|
+
protected z: NgZone;
|
|
218
|
+
protected el: HTMLElement;
|
|
219
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
220
|
+
}
|
|
221
|
+
export declare interface DiwaInputText extends Components.DiwaInputText {
|
|
222
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
223
|
+
input: EventEmitter<CustomEvent<string>>;
|
|
224
|
+
blur: EventEmitter<CustomEvent<FocusEvent>>;
|
|
225
|
+
focus: EventEmitter<CustomEvent<FocusEvent>>;
|
|
226
|
+
}
|
|
227
|
+
export declare class DiwaInputTime {
|
|
228
|
+
protected z: NgZone;
|
|
229
|
+
protected el: HTMLElement;
|
|
230
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
231
|
+
}
|
|
232
|
+
export declare interface DiwaInputTime extends Components.DiwaInputTime {
|
|
233
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
234
|
+
input: EventEmitter<CustomEvent<string>>;
|
|
235
|
+
blur: EventEmitter<CustomEvent<FocusEvent>>;
|
|
236
|
+
focus: EventEmitter<CustomEvent<FocusEvent>>;
|
|
237
|
+
}
|
|
238
|
+
export declare class DiwaInputUrl {
|
|
239
|
+
protected z: NgZone;
|
|
240
|
+
protected el: HTMLElement;
|
|
241
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
242
|
+
}
|
|
243
|
+
export declare interface DiwaInputUrl extends Components.DiwaInputUrl {
|
|
244
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
245
|
+
input: EventEmitter<CustomEvent<string>>;
|
|
246
|
+
blur: EventEmitter<CustomEvent<FocusEvent>>;
|
|
247
|
+
focus: EventEmitter<CustomEvent<FocusEvent>>;
|
|
248
|
+
}
|
|
249
|
+
export declare class DiwaInputWeek {
|
|
250
|
+
protected z: NgZone;
|
|
251
|
+
protected el: HTMLElement;
|
|
252
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
253
|
+
}
|
|
254
|
+
export declare interface DiwaInputWeek extends Components.DiwaInputWeek {
|
|
255
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
256
|
+
input: EventEmitter<CustomEvent<string>>;
|
|
257
|
+
blur: EventEmitter<CustomEvent<FocusEvent>>;
|
|
258
|
+
focus: EventEmitter<CustomEvent<FocusEvent>>;
|
|
259
|
+
}
|
|
260
|
+
export declare class DiwaLink {
|
|
261
|
+
protected z: NgZone;
|
|
262
|
+
protected el: HTMLElement;
|
|
263
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
264
|
+
}
|
|
265
|
+
export declare interface DiwaLink extends Components.DiwaLink {
|
|
266
|
+
}
|
|
267
|
+
export declare class DiwaLinkPure {
|
|
268
|
+
protected z: NgZone;
|
|
269
|
+
protected el: HTMLElement;
|
|
270
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
271
|
+
}
|
|
272
|
+
export declare interface DiwaLinkPure extends Components.DiwaLinkPure {
|
|
273
|
+
}
|
|
274
|
+
export declare class DiwaModal {
|
|
275
|
+
protected z: NgZone;
|
|
276
|
+
protected el: HTMLElement;
|
|
277
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
278
|
+
}
|
|
279
|
+
export declare interface DiwaModal extends Components.DiwaModal {
|
|
280
|
+
/**
|
|
281
|
+
* Emitted when the user requests the modal to close:
|
|
282
|
+
- Clicking the backdrop (unless `disableBackdropClick` is true)
|
|
283
|
+
- Pressing the Escape key
|
|
284
|
+
- Clicking the dismiss (×) button
|
|
285
|
+
|
|
286
|
+
The consumer MUST set `open={false}` in response:
|
|
287
|
+
```html
|
|
288
|
+
<diwa-modal open ondismiss={() => (this.open = false)} />
|
|
289
|
+
```
|
|
290
|
+
*/
|
|
291
|
+
dismiss: EventEmitter<CustomEvent<void>>;
|
|
292
|
+
}
|
|
293
|
+
export declare class DiwaMultiSelect {
|
|
294
|
+
protected z: NgZone;
|
|
295
|
+
protected el: HTMLElement;
|
|
296
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
297
|
+
}
|
|
298
|
+
import type { MultiSelectChangeEventDetail as IDiwaMultiSelectMultiSelectChangeEventDetail } from '@diwacopilot/components';
|
|
299
|
+
import type { MultiSelectToggleEventDetail as IDiwaMultiSelectMultiSelectToggleEventDetail } from '@diwacopilot/components';
|
|
300
|
+
export declare interface DiwaMultiSelect extends Components.DiwaMultiSelect {
|
|
301
|
+
/**
|
|
302
|
+
* Emitted when the selection changes.
|
|
303
|
+
*/
|
|
304
|
+
change: EventEmitter<CustomEvent<IDiwaMultiSelectMultiSelectChangeEventDetail>>;
|
|
305
|
+
/**
|
|
306
|
+
* Emitted when the dropdown opens or closes.
|
|
307
|
+
*/
|
|
308
|
+
toggle: EventEmitter<CustomEvent<IDiwaMultiSelectMultiSelectToggleEventDetail>>;
|
|
309
|
+
/**
|
|
310
|
+
* Emitted when the component loses focus (dropdown closes via click-outside).
|
|
311
|
+
*/
|
|
312
|
+
blur: EventEmitter<CustomEvent<void>>;
|
|
313
|
+
}
|
|
314
|
+
export declare class DiwaMultiSelectOption {
|
|
315
|
+
protected z: NgZone;
|
|
316
|
+
protected el: HTMLElement;
|
|
317
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
318
|
+
}
|
|
319
|
+
export declare interface DiwaMultiSelectOption extends Components.DiwaMultiSelectOption {
|
|
320
|
+
/**
|
|
321
|
+
* Emitted when the user clicks or presses Enter on the option.
|
|
322
|
+
Bubbles and crosses Shadow DOM so the parent can catch it via @Listen .
|
|
323
|
+
*/
|
|
324
|
+
diwaMultiSelectOptionUpdate: EventEmitter<CustomEvent<{
|
|
325
|
+
value: string;
|
|
326
|
+
selected: boolean;
|
|
327
|
+
}>>;
|
|
328
|
+
}
|
|
329
|
+
export declare class DiwaPagination {
|
|
330
|
+
protected z: NgZone;
|
|
331
|
+
protected el: HTMLElement;
|
|
332
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
333
|
+
}
|
|
334
|
+
import type { PaginationUpdateEventDetail as IDiwaPaginationPaginationUpdateEventDetail } from '@diwacopilot/components';
|
|
335
|
+
export declare interface DiwaPagination extends Components.DiwaPagination {
|
|
336
|
+
/**
|
|
337
|
+
* Emitted when the user navigates to a different page.
|
|
338
|
+
|
|
339
|
+
React consumers: use the lowercase `onupdate` prop:
|
|
340
|
+
```jsx
|
|
341
|
+
<diwa-pagination onupdate={e => setPage(e.detail.page)} />
|
|
342
|
+
```
|
|
343
|
+
*/
|
|
344
|
+
update: EventEmitter<CustomEvent<IDiwaPaginationPaginationUpdateEventDetail>>;
|
|
345
|
+
}
|
|
346
|
+
export declare class DiwaPinCode {
|
|
347
|
+
protected z: NgZone;
|
|
348
|
+
protected el: HTMLElement;
|
|
349
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
350
|
+
}
|
|
351
|
+
import type { PinCodeUpdateEventDetail as IDiwaPinCodePinCodeUpdateEventDetail } from '@diwacopilot/components';
|
|
352
|
+
export declare interface DiwaPinCode extends Components.DiwaPinCode {
|
|
353
|
+
/**
|
|
354
|
+
* Emitted when any box value changes.
|
|
355
|
+
*/
|
|
356
|
+
update: EventEmitter<CustomEvent<IDiwaPinCodePinCodeUpdateEventDetail>>;
|
|
357
|
+
}
|
|
358
|
+
export declare class DiwaPopover {
|
|
359
|
+
protected z: NgZone;
|
|
360
|
+
protected el: HTMLElement;
|
|
361
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
362
|
+
}
|
|
363
|
+
export declare interface DiwaPopover extends Components.DiwaPopover {
|
|
364
|
+
}
|
|
365
|
+
export declare class DiwaRadioGroup {
|
|
366
|
+
protected z: NgZone;
|
|
367
|
+
protected el: HTMLElement;
|
|
368
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
369
|
+
}
|
|
370
|
+
import type { RadioGroupUpdateEventDetail as IDiwaRadioGroupRadioGroupUpdateEventDetail } from '@diwacopilot/components';
|
|
371
|
+
export declare interface DiwaRadioGroup extends Components.DiwaRadioGroup {
|
|
372
|
+
/**
|
|
373
|
+
* Emitted when the selected value changes.
|
|
374
|
+
`event.detail.value` is the newly selected value.
|
|
375
|
+
*/
|
|
376
|
+
update: EventEmitter<CustomEvent<IDiwaRadioGroupRadioGroupUpdateEventDetail>>;
|
|
377
|
+
}
|
|
378
|
+
export declare class DiwaRadioGroupItem {
|
|
379
|
+
protected z: NgZone;
|
|
380
|
+
protected el: HTMLElement;
|
|
381
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
382
|
+
}
|
|
383
|
+
export declare interface DiwaRadioGroupItem extends Components.DiwaRadioGroupItem {
|
|
384
|
+
/**
|
|
385
|
+
* Internal event dispatched to the parent group when the user selects this item.
|
|
386
|
+
Consumers should listen to the parent group's `update` event instead.
|
|
387
|
+
*/
|
|
388
|
+
'diwa-radio-select': EventEmitter<CustomEvent<{
|
|
389
|
+
value: string;
|
|
390
|
+
}>>;
|
|
391
|
+
}
|
|
392
|
+
export declare class DiwaScroller {
|
|
393
|
+
protected z: NgZone;
|
|
394
|
+
protected el: HTMLElement;
|
|
395
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
396
|
+
}
|
|
397
|
+
export declare interface DiwaScroller extends Components.DiwaScroller {
|
|
398
|
+
}
|
|
399
|
+
export declare class DiwaSegmentedControl {
|
|
400
|
+
protected z: NgZone;
|
|
401
|
+
protected el: HTMLElement;
|
|
402
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
403
|
+
}
|
|
404
|
+
import type { SegmentedControlUpdateEventDetail as IDiwaSegmentedControlSegmentedControlUpdateEventDetail } from '@diwacopilot/components';
|
|
405
|
+
export declare interface DiwaSegmentedControl extends Components.DiwaSegmentedControl {
|
|
406
|
+
/**
|
|
407
|
+
* Emitted when the active item changes.
|
|
408
|
+
*/
|
|
409
|
+
update: EventEmitter<CustomEvent<IDiwaSegmentedControlSegmentedControlUpdateEventDetail>>;
|
|
410
|
+
}
|
|
411
|
+
export declare class DiwaSegmentedControlItem {
|
|
412
|
+
protected z: NgZone;
|
|
413
|
+
protected el: HTMLElement;
|
|
414
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
415
|
+
}
|
|
416
|
+
export declare interface DiwaSegmentedControlItem extends Components.DiwaSegmentedControlItem {
|
|
417
|
+
/**
|
|
418
|
+
* Internal event — dispatched to the parent control when clicked.
|
|
419
|
+
Consumers should listen to the parent's `update` event.
|
|
420
|
+
*/
|
|
421
|
+
'diwa-segment-select': EventEmitter<CustomEvent<{
|
|
422
|
+
value: string;
|
|
423
|
+
}>>;
|
|
424
|
+
}
|
|
425
|
+
export declare class DiwaSelect {
|
|
426
|
+
protected z: NgZone;
|
|
427
|
+
protected el: HTMLElement;
|
|
428
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
429
|
+
}
|
|
430
|
+
import type { SelectChangeEventDetail as IDiwaSelectSelectChangeEventDetail } from '@diwacopilot/components';
|
|
431
|
+
import type { SelectToggleEventDetail as IDiwaSelectSelectToggleEventDetail } from '@diwacopilot/components';
|
|
432
|
+
export declare interface DiwaSelect extends Components.DiwaSelect {
|
|
433
|
+
/**
|
|
434
|
+
* Emitted when the selection changes.
|
|
435
|
+
*/
|
|
436
|
+
change: EventEmitter<CustomEvent<IDiwaSelectSelectChangeEventDetail>>;
|
|
437
|
+
/**
|
|
438
|
+
* Emitted when the dropdown opens or closes.
|
|
439
|
+
*/
|
|
440
|
+
toggle: EventEmitter<CustomEvent<IDiwaSelectSelectToggleEventDetail>>;
|
|
441
|
+
/**
|
|
442
|
+
* Emitted when the component loses focus (dropdown closes via click-outside).
|
|
443
|
+
*/
|
|
444
|
+
blur: EventEmitter<CustomEvent<void>>;
|
|
445
|
+
}
|
|
446
|
+
export declare class DiwaSelectOption {
|
|
447
|
+
protected z: NgZone;
|
|
448
|
+
protected el: HTMLElement;
|
|
449
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
450
|
+
}
|
|
451
|
+
export declare interface DiwaSelectOption extends Components.DiwaSelectOption {
|
|
452
|
+
/**
|
|
453
|
+
* Emitted when the user clicks or presses Enter on the option.
|
|
454
|
+
Bubbles and crosses Shadow DOM so the parent can catch it via @Listen .
|
|
455
|
+
*/
|
|
456
|
+
diwaSelectOptionUpdate: EventEmitter<CustomEvent<{
|
|
457
|
+
value: string | undefined;
|
|
458
|
+
}>>;
|
|
459
|
+
}
|
|
460
|
+
export declare class DiwaSpinner {
|
|
461
|
+
protected z: NgZone;
|
|
462
|
+
protected el: HTMLElement;
|
|
463
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
464
|
+
}
|
|
465
|
+
export declare interface DiwaSpinner extends Components.DiwaSpinner {
|
|
466
|
+
}
|
|
467
|
+
export declare class DiwaStepperHorizontal {
|
|
468
|
+
protected z: NgZone;
|
|
469
|
+
protected el: HTMLElement;
|
|
470
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
471
|
+
}
|
|
472
|
+
import type { StepperHorizontalUpdateEventDetail as IDiwaStepperHorizontalStepperHorizontalUpdateEventDetail } from '@diwacopilot/components';
|
|
473
|
+
export declare interface DiwaStepperHorizontal extends Components.DiwaStepperHorizontal {
|
|
474
|
+
/**
|
|
475
|
+
* Emitted when the active step index changes (e.g. the consumer calls
|
|
476
|
+
next/prev). This component does not auto-advance — use this event
|
|
477
|
+
to update `activeStepIndex` externally.
|
|
478
|
+
*/
|
|
479
|
+
update: EventEmitter<CustomEvent<IDiwaStepperHorizontalStepperHorizontalUpdateEventDetail>>;
|
|
480
|
+
}
|
|
481
|
+
export declare class DiwaStepperHorizontalItem {
|
|
482
|
+
protected z: NgZone;
|
|
483
|
+
protected el: HTMLElement;
|
|
484
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
485
|
+
}
|
|
486
|
+
export declare interface DiwaStepperHorizontalItem extends Components.DiwaStepperHorizontalItem {
|
|
487
|
+
}
|
|
488
|
+
export declare class DiwaSwitch {
|
|
489
|
+
protected z: NgZone;
|
|
490
|
+
protected el: HTMLElement;
|
|
491
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
492
|
+
}
|
|
493
|
+
import type { SwitchUpdateEventDetail as IDiwaSwitchSwitchUpdateEventDetail } from '@diwacopilot/components';
|
|
494
|
+
export declare interface DiwaSwitch extends Components.DiwaSwitch {
|
|
495
|
+
/**
|
|
496
|
+
* Emitted when the checked state changes.
|
|
497
|
+
*/
|
|
498
|
+
update: EventEmitter<CustomEvent<IDiwaSwitchSwitchUpdateEventDetail>>;
|
|
499
|
+
}
|
|
500
|
+
export declare class DiwaTable {
|
|
501
|
+
protected z: NgZone;
|
|
502
|
+
protected el: HTMLElement;
|
|
503
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
504
|
+
}
|
|
505
|
+
import type { TableUpdateEventDetail as IDiwaTableTableUpdateEventDetail } from '@diwacopilot/components';
|
|
506
|
+
export declare interface DiwaTable extends Components.DiwaTable {
|
|
507
|
+
update: EventEmitter<CustomEvent<IDiwaTableTableUpdateEventDetail>>;
|
|
508
|
+
}
|
|
509
|
+
export declare class DiwaTableBody {
|
|
510
|
+
protected z: NgZone;
|
|
511
|
+
protected el: HTMLElement;
|
|
512
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
513
|
+
}
|
|
514
|
+
export declare interface DiwaTableBody extends Components.DiwaTableBody {
|
|
515
|
+
}
|
|
516
|
+
export declare class DiwaTableCell {
|
|
517
|
+
protected z: NgZone;
|
|
518
|
+
protected el: HTMLElement;
|
|
519
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
520
|
+
}
|
|
521
|
+
export declare interface DiwaTableCell extends Components.DiwaTableCell {
|
|
522
|
+
}
|
|
523
|
+
export declare class DiwaTableHead {
|
|
524
|
+
protected z: NgZone;
|
|
525
|
+
protected el: HTMLElement;
|
|
526
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
527
|
+
}
|
|
528
|
+
export declare interface DiwaTableHead extends Components.DiwaTableHead {
|
|
529
|
+
}
|
|
530
|
+
export declare class DiwaTableHeadCell {
|
|
531
|
+
protected z: NgZone;
|
|
532
|
+
protected el: HTMLElement;
|
|
533
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
534
|
+
}
|
|
535
|
+
export declare interface DiwaTableHeadCell extends Components.DiwaTableHeadCell {
|
|
536
|
+
}
|
|
537
|
+
export declare class DiwaTableRow {
|
|
538
|
+
protected z: NgZone;
|
|
539
|
+
protected el: HTMLElement;
|
|
540
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
541
|
+
}
|
|
542
|
+
export declare interface DiwaTableRow extends Components.DiwaTableRow {
|
|
543
|
+
}
|
|
544
|
+
export declare class DiwaTabs {
|
|
545
|
+
protected z: NgZone;
|
|
546
|
+
protected el: HTMLElement;
|
|
547
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
548
|
+
}
|
|
549
|
+
import type { TabsUpdateEventDetail as IDiwaTabsTabsUpdateEventDetail } from '@diwacopilot/components';
|
|
550
|
+
export declare interface DiwaTabs extends Components.DiwaTabs {
|
|
551
|
+
/**
|
|
552
|
+
* Emitted when the user selects a different tab.
|
|
553
|
+
*/
|
|
554
|
+
update: EventEmitter<CustomEvent<IDiwaTabsTabsUpdateEventDetail>>;
|
|
555
|
+
}
|
|
556
|
+
export declare class DiwaTabsBar {
|
|
557
|
+
protected z: NgZone;
|
|
558
|
+
protected el: HTMLElement;
|
|
559
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
560
|
+
}
|
|
561
|
+
import type { TabsBarUpdateEventDetail as IDiwaTabsBarTabsBarUpdateEventDetail } from '@diwacopilot/components';
|
|
562
|
+
export declare interface DiwaTabsBar extends Components.DiwaTabsBar {
|
|
563
|
+
/**
|
|
564
|
+
* Emitted when the active tab changes.
|
|
565
|
+
*/
|
|
566
|
+
update: EventEmitter<CustomEvent<IDiwaTabsBarTabsBarUpdateEventDetail>>;
|
|
567
|
+
}
|
|
568
|
+
export declare class DiwaTabsItem {
|
|
569
|
+
protected z: NgZone;
|
|
570
|
+
protected el: HTMLElement;
|
|
571
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
572
|
+
}
|
|
573
|
+
export declare interface DiwaTabsItem extends Components.DiwaTabsItem {
|
|
574
|
+
}
|
|
575
|
+
export declare class DiwaTag {
|
|
576
|
+
protected z: NgZone;
|
|
577
|
+
protected el: HTMLElement;
|
|
578
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
579
|
+
}
|
|
580
|
+
export declare interface DiwaTag extends Components.DiwaTag {
|
|
581
|
+
}
|
|
582
|
+
export declare class DiwaTagDismissible {
|
|
583
|
+
protected z: NgZone;
|
|
584
|
+
protected el: HTMLElement;
|
|
585
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
586
|
+
}
|
|
587
|
+
export declare interface DiwaTagDismissible extends Components.DiwaTagDismissible {
|
|
588
|
+
/**
|
|
589
|
+
* Emitted when the dismiss button is clicked.
|
|
590
|
+
*/
|
|
591
|
+
dismiss: EventEmitter<CustomEvent<void>>;
|
|
592
|
+
}
|
|
593
|
+
export declare class DiwaText {
|
|
594
|
+
protected z: NgZone;
|
|
595
|
+
protected el: HTMLElement;
|
|
596
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
597
|
+
}
|
|
598
|
+
export declare interface DiwaText extends Components.DiwaText {
|
|
599
|
+
}
|
|
600
|
+
export declare class DiwaTextList {
|
|
601
|
+
protected z: NgZone;
|
|
602
|
+
protected el: HTMLElement;
|
|
603
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
604
|
+
}
|
|
605
|
+
export declare interface DiwaTextList extends Components.DiwaTextList {
|
|
606
|
+
}
|
|
607
|
+
export declare class DiwaTextListItem {
|
|
608
|
+
protected z: NgZone;
|
|
609
|
+
protected el: HTMLElement;
|
|
610
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
611
|
+
}
|
|
612
|
+
export declare interface DiwaTextListItem extends Components.DiwaTextListItem {
|
|
613
|
+
}
|
|
614
|
+
export declare class DiwaTextarea {
|
|
615
|
+
protected z: NgZone;
|
|
616
|
+
protected el: HTMLElement;
|
|
617
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
618
|
+
}
|
|
619
|
+
export declare interface DiwaTextarea extends Components.DiwaTextarea {
|
|
620
|
+
/**
|
|
621
|
+
* Emitted on every keystroke. Detail contains the current value string.
|
|
622
|
+
*/
|
|
623
|
+
input: EventEmitter<CustomEvent<string>>;
|
|
624
|
+
/**
|
|
625
|
+
* Emitted when the textarea loses focus after value changes.
|
|
626
|
+
*/
|
|
627
|
+
change: EventEmitter<CustomEvent<string>>;
|
|
628
|
+
/**
|
|
629
|
+
* Emitted when the textarea loses focus.
|
|
630
|
+
*/
|
|
631
|
+
blur: EventEmitter<CustomEvent<FocusEvent>>;
|
|
632
|
+
}
|
|
633
|
+
export declare class DiwaToast {
|
|
634
|
+
protected z: NgZone;
|
|
635
|
+
protected el: HTMLElement;
|
|
636
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
637
|
+
}
|
|
638
|
+
export declare interface DiwaToast extends Components.DiwaToast {
|
|
639
|
+
}
|
|
640
|
+
export declare class DiwaToastItem {
|
|
641
|
+
protected z: NgZone;
|
|
642
|
+
protected el: HTMLElement;
|
|
643
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
644
|
+
}
|
|
645
|
+
export declare interface DiwaToastItem extends Components.DiwaToastItem {
|
|
646
|
+
/**
|
|
647
|
+
* Emitted when the user dismisses the toast or the auto-dismiss timer fires.
|
|
648
|
+
*/
|
|
649
|
+
dismiss: EventEmitter<CustomEvent<void>>;
|
|
650
|
+
}
|
|
651
|
+
//# sourceMappingURL=proxies.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"proxies.d.ts","sourceRoot":"","sources":["../../src/directives/proxies.ts"],"names":[],"mappings":"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"}
|