@getflip/swirl-components-angular 0.3.0 → 0.4.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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +20 -0
- package/dist/component-library/esm2020/lib/component-library.module.mjs +3 -3
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +159 -25
- package/dist/component-library/esm2020/lib/stencil-generated/index.mjs +6 -1
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +161 -27
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +161 -27
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/component-library.module.d.ts +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +117 -7
- package/dist/component-library/lib/stencil-generated/index.d.ts +1 -1
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +220 -24
- package/projects/component-library/src/lib/stencil-generated/index.ts +5 -0
|
@@ -8,6 +8,25 @@ import { Components } from '@getflip/swirl-components';
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
+
export declare interface FileManager extends Components.FileManager {}
|
|
12
|
+
|
|
13
|
+
@ProxyCmp({
|
|
14
|
+
defineCustomElementFn: undefined
|
|
15
|
+
})
|
|
16
|
+
@Component({
|
|
17
|
+
selector: 'file-manager',
|
|
18
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
19
|
+
template: '<ng-content></ng-content>'
|
|
20
|
+
})
|
|
21
|
+
export class FileManager {
|
|
22
|
+
protected el: HTMLElement;
|
|
23
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
24
|
+
c.detach();
|
|
25
|
+
this.el = r.nativeElement;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
|
|
11
30
|
export declare interface FlipActionList extends Components.FlipActionList {}
|
|
12
31
|
|
|
13
32
|
@ProxyCmp({
|
|
@@ -68,18 +87,87 @@ export class FlipActionListSection {
|
|
|
68
87
|
}
|
|
69
88
|
}
|
|
70
89
|
|
|
90
|
+
import type { FlipAppLayoutMobileView as IFlipAppLayoutFlipAppLayoutMobileView } from '@getflip/swirl-components';
|
|
91
|
+
export declare interface FlipAppLayout extends Components.FlipAppLayout {
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
*/
|
|
95
|
+
ctaClick: EventEmitter<CustomEvent<MouseEvent>>;
|
|
96
|
+
/**
|
|
97
|
+
*
|
|
98
|
+
*/
|
|
99
|
+
mobileViewChange: EventEmitter<CustomEvent<IFlipAppLayoutFlipAppLayoutMobileView>>;
|
|
100
|
+
/**
|
|
101
|
+
*
|
|
102
|
+
*/
|
|
103
|
+
navigationBackButtonClick: EventEmitter<CustomEvent<MouseEvent>>;
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
*/
|
|
107
|
+
sidebarToggle: EventEmitter<CustomEvent<boolean>>;
|
|
108
|
+
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
@ProxyCmp({
|
|
112
|
+
defineCustomElementFn: undefined,
|
|
113
|
+
inputs: ['appBarMedia', 'appName', 'backToNavigationViewButtonLabel', 'ctaIcon', 'ctaLabel', 'heading', 'navigationBackButtonLabel', 'navigationLabel', 'showNavigationBackButton', 'sidebarCloseButtonLabel', 'sidebarHeading', 'subheading', 'transitionStyle'],
|
|
114
|
+
methods: ['showSidebar', 'hideSidebar', 'toggleSidebar', 'changeMobileView']
|
|
115
|
+
})
|
|
116
|
+
@Component({
|
|
117
|
+
selector: 'flip-app-layout',
|
|
118
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
119
|
+
template: '<ng-content></ng-content>',
|
|
120
|
+
inputs: ['appBarMedia', 'appName', 'backToNavigationViewButtonLabel', 'ctaIcon', 'ctaLabel', 'heading', 'navigationBackButtonLabel', 'navigationLabel', 'showNavigationBackButton', 'sidebarCloseButtonLabel', 'sidebarHeading', 'subheading', 'transitionStyle']
|
|
121
|
+
})
|
|
122
|
+
export class FlipAppLayout {
|
|
123
|
+
protected el: HTMLElement;
|
|
124
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
125
|
+
c.detach();
|
|
126
|
+
this.el = r.nativeElement;
|
|
127
|
+
proxyOutputs(this, this.el, ['ctaClick', 'mobileViewChange', 'navigationBackButtonClick', 'sidebarToggle']);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
export declare interface FlipAutocomplete extends Components.FlipAutocomplete {
|
|
133
|
+
/**
|
|
134
|
+
*
|
|
135
|
+
*/
|
|
136
|
+
valueChange: EventEmitter<CustomEvent<string>>;
|
|
137
|
+
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
@ProxyCmp({
|
|
141
|
+
defineCustomElementFn: undefined,
|
|
142
|
+
inputs: ['autoSelect', 'clearButtonLabel', 'clearable', 'disabled', 'flipAriaDescribedby', 'generateSuggestions', 'invalid', 'maxLength', 'menuLabel', 'mode', 'required', 'spellCheck', 'value']
|
|
143
|
+
})
|
|
144
|
+
@Component({
|
|
145
|
+
selector: 'flip-autocomplete',
|
|
146
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
147
|
+
template: '<ng-content></ng-content>',
|
|
148
|
+
inputs: ['autoSelect', 'clearButtonLabel', 'clearable', 'disabled', 'flipAriaDescribedby', 'generateSuggestions', 'invalid', 'maxLength', 'menuLabel', 'mode', 'required', 'spellCheck', 'value']
|
|
149
|
+
})
|
|
150
|
+
export class FlipAutocomplete {
|
|
151
|
+
protected el: HTMLElement;
|
|
152
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
153
|
+
c.detach();
|
|
154
|
+
this.el = r.nativeElement;
|
|
155
|
+
proxyOutputs(this, this.el, ['valueChange']);
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
71
159
|
|
|
72
160
|
export declare interface FlipAvatar extends Components.FlipAvatar {}
|
|
73
161
|
|
|
74
162
|
@ProxyCmp({
|
|
75
163
|
defineCustomElementFn: undefined,
|
|
76
|
-
inputs: ['badge', 'badgePosition', 'icon', 'initials', 'interactive', 'label', 'showLabel', 'size', 'src', 'variant']
|
|
164
|
+
inputs: ['badge', 'badgePosition', 'color', 'icon', 'initials', 'interactive', 'label', 'showLabel', 'size', 'src', 'variant']
|
|
77
165
|
})
|
|
78
166
|
@Component({
|
|
79
167
|
selector: 'flip-avatar',
|
|
80
168
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
81
169
|
template: '<ng-content></ng-content>',
|
|
82
|
-
inputs: ['badge', 'badgePosition', 'icon', 'initials', 'interactive', 'label', 'showLabel', 'size', 'src', 'variant']
|
|
170
|
+
inputs: ['badge', 'badgePosition', 'color', 'icon', 'initials', 'interactive', 'label', 'showLabel', 'size', 'src', 'variant']
|
|
83
171
|
})
|
|
84
172
|
export class FlipAvatar {
|
|
85
173
|
protected el: HTMLElement;
|
|
@@ -164,6 +252,27 @@ export class FlipBanner {
|
|
|
164
252
|
}
|
|
165
253
|
|
|
166
254
|
|
|
255
|
+
export declare interface FlipBox extends Components.FlipBox {}
|
|
256
|
+
|
|
257
|
+
@ProxyCmp({
|
|
258
|
+
defineCustomElementFn: undefined,
|
|
259
|
+
inputs: ['as', 'bordered', 'centerBlock', 'centerInline', 'cover', 'padding']
|
|
260
|
+
})
|
|
261
|
+
@Component({
|
|
262
|
+
selector: 'flip-box',
|
|
263
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
264
|
+
template: '<ng-content></ng-content>',
|
|
265
|
+
inputs: ['as', 'bordered', 'centerBlock', 'centerInline', 'cover', 'padding']
|
|
266
|
+
})
|
|
267
|
+
export class FlipBox {
|
|
268
|
+
protected el: HTMLElement;
|
|
269
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
270
|
+
c.detach();
|
|
271
|
+
this.el = r.nativeElement;
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
|
|
167
276
|
export declare interface FlipButton extends Components.FlipButton {}
|
|
168
277
|
|
|
169
278
|
@ProxyCmp({
|
|
@@ -434,50 +543,70 @@ export class FlipFileUploader {
|
|
|
434
543
|
}
|
|
435
544
|
|
|
436
545
|
|
|
437
|
-
export declare interface FlipFileViewer extends Components.FlipFileViewer {
|
|
546
|
+
export declare interface FlipFileViewer extends Components.FlipFileViewer {
|
|
547
|
+
/**
|
|
548
|
+
*
|
|
549
|
+
*/
|
|
550
|
+
activate: EventEmitter<CustomEvent<HTMLElement>>;
|
|
551
|
+
|
|
552
|
+
}
|
|
438
553
|
|
|
439
554
|
@ProxyCmp({
|
|
440
555
|
defineCustomElementFn: undefined,
|
|
441
|
-
inputs: ['active', 'description', 'errorMessage', 'file', 'type', 'typeUnsupportedMessage', 'zoom'],
|
|
556
|
+
inputs: ['active', 'autoplay', 'description', 'errorMessage', 'file', 'type', 'typeUnsupportedMessage', 'zoom'],
|
|
442
557
|
methods: ['download', 'print']
|
|
443
558
|
})
|
|
444
559
|
@Component({
|
|
445
560
|
selector: 'flip-file-viewer',
|
|
446
561
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
447
562
|
template: '<ng-content></ng-content>',
|
|
448
|
-
inputs: ['active', 'description', 'errorMessage', 'file', 'type', 'typeUnsupportedMessage', 'zoom']
|
|
563
|
+
inputs: ['active', 'autoplay', 'description', 'errorMessage', 'file', 'type', 'typeUnsupportedMessage', 'zoom']
|
|
449
564
|
})
|
|
450
565
|
export class FlipFileViewer {
|
|
451
566
|
protected el: HTMLElement;
|
|
452
567
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
453
568
|
c.detach();
|
|
454
569
|
this.el = r.nativeElement;
|
|
570
|
+
proxyOutputs(this, this.el, ['activate']);
|
|
455
571
|
}
|
|
456
572
|
}
|
|
457
573
|
|
|
458
574
|
|
|
459
|
-
export declare interface FlipFileViewerAudio extends Components.FlipFileViewerAudio {
|
|
575
|
+
export declare interface FlipFileViewerAudio extends Components.FlipFileViewerAudio {
|
|
576
|
+
/**
|
|
577
|
+
*
|
|
578
|
+
*/
|
|
579
|
+
activate: EventEmitter<CustomEvent<HTMLElement>>;
|
|
580
|
+
|
|
581
|
+
}
|
|
460
582
|
|
|
461
583
|
@ProxyCmp({
|
|
462
584
|
defineCustomElementFn: undefined,
|
|
463
|
-
inputs: ['file', 'type']
|
|
585
|
+
inputs: ['autoplay', 'file', 'type']
|
|
464
586
|
})
|
|
465
587
|
@Component({
|
|
466
588
|
selector: 'flip-file-viewer-audio',
|
|
467
589
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
468
590
|
template: '<ng-content></ng-content>',
|
|
469
|
-
inputs: ['file', 'type']
|
|
591
|
+
inputs: ['autoplay', 'file', 'type']
|
|
470
592
|
})
|
|
471
593
|
export class FlipFileViewerAudio {
|
|
472
594
|
protected el: HTMLElement;
|
|
473
595
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
474
596
|
c.detach();
|
|
475
597
|
this.el = r.nativeElement;
|
|
598
|
+
proxyOutputs(this, this.el, ['activate']);
|
|
476
599
|
}
|
|
477
600
|
}
|
|
478
601
|
|
|
479
602
|
|
|
480
|
-
export declare interface FlipFileViewerCsv extends Components.FlipFileViewerCsv {
|
|
603
|
+
export declare interface FlipFileViewerCsv extends Components.FlipFileViewerCsv {
|
|
604
|
+
/**
|
|
605
|
+
*
|
|
606
|
+
*/
|
|
607
|
+
activate: EventEmitter<CustomEvent<HTMLElement>>;
|
|
608
|
+
|
|
609
|
+
}
|
|
481
610
|
|
|
482
611
|
@ProxyCmp({
|
|
483
612
|
defineCustomElementFn: undefined,
|
|
@@ -494,11 +623,18 @@ export class FlipFileViewerCsv {
|
|
|
494
623
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
495
624
|
c.detach();
|
|
496
625
|
this.el = r.nativeElement;
|
|
626
|
+
proxyOutputs(this, this.el, ['activate']);
|
|
497
627
|
}
|
|
498
628
|
}
|
|
499
629
|
|
|
500
630
|
|
|
501
|
-
export declare interface FlipFileViewerImage extends Components.FlipFileViewerImage {
|
|
631
|
+
export declare interface FlipFileViewerImage extends Components.FlipFileViewerImage {
|
|
632
|
+
/**
|
|
633
|
+
*
|
|
634
|
+
*/
|
|
635
|
+
activate: EventEmitter<CustomEvent<HTMLElement>>;
|
|
636
|
+
|
|
637
|
+
}
|
|
502
638
|
|
|
503
639
|
@ProxyCmp({
|
|
504
640
|
defineCustomElementFn: undefined,
|
|
@@ -515,33 +651,47 @@ export class FlipFileViewerImage {
|
|
|
515
651
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
516
652
|
c.detach();
|
|
517
653
|
this.el = r.nativeElement;
|
|
654
|
+
proxyOutputs(this, this.el, ['activate']);
|
|
518
655
|
}
|
|
519
656
|
}
|
|
520
657
|
|
|
521
658
|
|
|
522
|
-
export declare interface FlipFileViewerPdf extends Components.FlipFileViewerPdf {
|
|
659
|
+
export declare interface FlipFileViewerPdf extends Components.FlipFileViewerPdf {
|
|
660
|
+
/**
|
|
661
|
+
*
|
|
662
|
+
*/
|
|
663
|
+
activate: EventEmitter<CustomEvent<HTMLElement>>;
|
|
664
|
+
|
|
665
|
+
}
|
|
523
666
|
|
|
524
667
|
@ProxyCmp({
|
|
525
668
|
defineCustomElementFn: undefined,
|
|
526
|
-
inputs: ['errorMessage', 'file', 'zoom'],
|
|
527
|
-
methods: ['print']
|
|
669
|
+
inputs: ['errorMessage', 'file', 'singlePageMode', 'zoom'],
|
|
670
|
+
methods: ['print', 'nextPage', 'previousPage', 'setPage']
|
|
528
671
|
})
|
|
529
672
|
@Component({
|
|
530
673
|
selector: 'flip-file-viewer-pdf',
|
|
531
674
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
532
675
|
template: '<ng-content></ng-content>',
|
|
533
|
-
inputs: ['errorMessage', 'file', 'zoom']
|
|
676
|
+
inputs: ['errorMessage', 'file', 'singlePageMode', 'zoom']
|
|
534
677
|
})
|
|
535
678
|
export class FlipFileViewerPdf {
|
|
536
679
|
protected el: HTMLElement;
|
|
537
680
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
538
681
|
c.detach();
|
|
539
682
|
this.el = r.nativeElement;
|
|
683
|
+
proxyOutputs(this, this.el, ['activate']);
|
|
540
684
|
}
|
|
541
685
|
}
|
|
542
686
|
|
|
543
687
|
|
|
544
|
-
export declare interface FlipFileViewerText extends Components.FlipFileViewerText {
|
|
688
|
+
export declare interface FlipFileViewerText extends Components.FlipFileViewerText {
|
|
689
|
+
/**
|
|
690
|
+
*
|
|
691
|
+
*/
|
|
692
|
+
activate: EventEmitter<CustomEvent<HTMLElement>>;
|
|
693
|
+
|
|
694
|
+
}
|
|
545
695
|
|
|
546
696
|
@ProxyCmp({
|
|
547
697
|
defineCustomElementFn: undefined,
|
|
@@ -558,27 +708,35 @@ export class FlipFileViewerText {
|
|
|
558
708
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
559
709
|
c.detach();
|
|
560
710
|
this.el = r.nativeElement;
|
|
711
|
+
proxyOutputs(this, this.el, ['activate']);
|
|
561
712
|
}
|
|
562
713
|
}
|
|
563
714
|
|
|
564
715
|
|
|
565
|
-
export declare interface FlipFileViewerVideo extends Components.FlipFileViewerVideo {
|
|
716
|
+
export declare interface FlipFileViewerVideo extends Components.FlipFileViewerVideo {
|
|
717
|
+
/**
|
|
718
|
+
*
|
|
719
|
+
*/
|
|
720
|
+
activate: EventEmitter<CustomEvent<HTMLElement>>;
|
|
721
|
+
|
|
722
|
+
}
|
|
566
723
|
|
|
567
724
|
@ProxyCmp({
|
|
568
725
|
defineCustomElementFn: undefined,
|
|
569
|
-
inputs: ['file', 'type']
|
|
726
|
+
inputs: ['autoplay', 'file', 'type']
|
|
570
727
|
})
|
|
571
728
|
@Component({
|
|
572
729
|
selector: 'flip-file-viewer-video',
|
|
573
730
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
574
731
|
template: '<ng-content></ng-content>',
|
|
575
|
-
inputs: ['file', 'type']
|
|
732
|
+
inputs: ['autoplay', 'file', 'type']
|
|
576
733
|
})
|
|
577
734
|
export class FlipFileViewerVideo {
|
|
578
735
|
protected el: HTMLElement;
|
|
579
736
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
580
737
|
c.detach();
|
|
581
738
|
this.el = r.nativeElement;
|
|
739
|
+
proxyOutputs(this, this.el, ['activate']);
|
|
582
740
|
}
|
|
583
741
|
}
|
|
584
742
|
|
|
@@ -2326,6 +2484,14 @@ export class FlipList {
|
|
|
2326
2484
|
|
|
2327
2485
|
|
|
2328
2486
|
export declare interface FlipModal extends Components.FlipModal {
|
|
2487
|
+
/**
|
|
2488
|
+
*
|
|
2489
|
+
*/
|
|
2490
|
+
modalClose: EventEmitter<CustomEvent<void>>;
|
|
2491
|
+
/**
|
|
2492
|
+
*
|
|
2493
|
+
*/
|
|
2494
|
+
modalOpen: EventEmitter<CustomEvent<void>>;
|
|
2329
2495
|
/**
|
|
2330
2496
|
*
|
|
2331
2497
|
*/
|
|
@@ -2353,7 +2519,7 @@ export class FlipModal {
|
|
|
2353
2519
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2354
2520
|
c.detach();
|
|
2355
2521
|
this.el = r.nativeElement;
|
|
2356
|
-
proxyOutputs(this, this.el, ['primaryAction', 'secondaryAction']);
|
|
2522
|
+
proxyOutputs(this, this.el, ['modalClose', 'modalOpen', 'primaryAction', 'secondaryAction']);
|
|
2357
2523
|
}
|
|
2358
2524
|
}
|
|
2359
2525
|
|
|
@@ -2368,13 +2534,13 @@ export declare interface FlipOptionList extends Components.FlipOptionList {
|
|
|
2368
2534
|
|
|
2369
2535
|
@ProxyCmp({
|
|
2370
2536
|
defineCustomElementFn: undefined,
|
|
2371
|
-
inputs: ['disabled', 'label', 'multiSelect', 'value']
|
|
2537
|
+
inputs: ['disabled', 'label', 'multiSelect', 'optionListId', 'value']
|
|
2372
2538
|
})
|
|
2373
2539
|
@Component({
|
|
2374
2540
|
selector: 'flip-option-list',
|
|
2375
2541
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2376
2542
|
template: '<ng-content></ng-content>',
|
|
2377
|
-
inputs: ['disabled', 'label', 'multiSelect', 'value']
|
|
2543
|
+
inputs: ['disabled', 'label', 'multiSelect', 'optionListId', 'value']
|
|
2378
2544
|
})
|
|
2379
2545
|
export class FlipOptionList {
|
|
2380
2546
|
protected el: HTMLElement;
|
|
@@ -2456,6 +2622,28 @@ export class FlipPagination {
|
|
|
2456
2622
|
}
|
|
2457
2623
|
|
|
2458
2624
|
|
|
2625
|
+
export declare interface FlipPdfReader extends Components.FlipPdfReader {}
|
|
2626
|
+
|
|
2627
|
+
@ProxyCmp({
|
|
2628
|
+
defineCustomElementFn: undefined,
|
|
2629
|
+
inputs: ['autoZoomLabel', 'closeButtonLabel', 'downloadButtonLabel', 'file', 'label', 'printButtonLabel', 'zoomInButtonLabel', 'zoomOutButtonLabel', 'zoomSelectLabel'],
|
|
2630
|
+
methods: ['open', 'close']
|
|
2631
|
+
})
|
|
2632
|
+
@Component({
|
|
2633
|
+
selector: 'flip-pdf-reader',
|
|
2634
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2635
|
+
template: '<ng-content></ng-content>',
|
|
2636
|
+
inputs: ['autoZoomLabel', 'closeButtonLabel', 'downloadButtonLabel', 'file', 'label', 'printButtonLabel', 'zoomInButtonLabel', 'zoomOutButtonLabel', 'zoomSelectLabel']
|
|
2637
|
+
})
|
|
2638
|
+
export class FlipPdfReader {
|
|
2639
|
+
protected el: HTMLElement;
|
|
2640
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2641
|
+
c.detach();
|
|
2642
|
+
this.el = r.nativeElement;
|
|
2643
|
+
}
|
|
2644
|
+
}
|
|
2645
|
+
|
|
2646
|
+
|
|
2459
2647
|
export declare interface FlipPopover extends Components.FlipPopover {}
|
|
2460
2648
|
|
|
2461
2649
|
@ProxyCmp({
|
|
@@ -2838,6 +3026,14 @@ export class FlipText {
|
|
|
2838
3026
|
|
|
2839
3027
|
|
|
2840
3028
|
export declare interface FlipTextInput extends Components.FlipTextInput {
|
|
3029
|
+
/**
|
|
3030
|
+
*
|
|
3031
|
+
*/
|
|
3032
|
+
inputBlur: EventEmitter<CustomEvent<FocusEvent>>;
|
|
3033
|
+
/**
|
|
3034
|
+
*
|
|
3035
|
+
*/
|
|
3036
|
+
inputFocus: EventEmitter<CustomEvent<FocusEvent>>;
|
|
2841
3037
|
/**
|
|
2842
3038
|
*
|
|
2843
3039
|
*/
|
|
@@ -2847,20 +3043,20 @@ export declare interface FlipTextInput extends Components.FlipTextInput {
|
|
|
2847
3043
|
|
|
2848
3044
|
@ProxyCmp({
|
|
2849
3045
|
defineCustomElementFn: undefined,
|
|
2850
|
-
inputs: ['autoComplete', 'autoFocus', 'autoSelect', 'clearButtonLabel', 'clearable', 'disabled', 'flipAriaDescribedby', 'invalid', 'max', 'maxLength', 'min', 'mode', 'passwordToggleLabel', 'prefixLabel', 'required', 'rows', 'showCharacterCounter', 'spellCheck', 'step', 'suffixLabel', 'type', 'value']
|
|
3046
|
+
inputs: ['autoComplete', 'autoFocus', 'autoSelect', 'clearButtonLabel', 'clearable', 'disableDynamicWidth', 'disabled', 'flipAriaAutocomplete', 'flipAriaControls', 'flipAriaDescribedby', 'flipAriaExpanded', 'flipRole', 'invalid', 'max', 'maxLength', 'min', 'mode', 'passwordToggleLabel', 'prefixLabel', 'required', 'rows', 'showCharacterCounter', 'spellCheck', 'step', 'suffixLabel', 'type', 'value']
|
|
2851
3047
|
})
|
|
2852
3048
|
@Component({
|
|
2853
3049
|
selector: 'flip-text-input',
|
|
2854
3050
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2855
3051
|
template: '<ng-content></ng-content>',
|
|
2856
|
-
inputs: ['autoComplete', 'autoFocus', 'autoSelect', 'clearButtonLabel', 'clearable', 'disabled', 'flipAriaDescribedby', 'invalid', 'max', 'maxLength', 'min', 'mode', 'passwordToggleLabel', 'prefixLabel', 'required', 'rows', 'showCharacterCounter', 'spellCheck', 'step', 'suffixLabel', 'type', 'value']
|
|
3052
|
+
inputs: ['autoComplete', 'autoFocus', 'autoSelect', 'clearButtonLabel', 'clearable', 'disableDynamicWidth', 'disabled', 'flipAriaAutocomplete', 'flipAriaControls', 'flipAriaDescribedby', 'flipAriaExpanded', 'flipRole', 'invalid', 'max', 'maxLength', 'min', 'mode', 'passwordToggleLabel', 'prefixLabel', 'required', 'rows', 'showCharacterCounter', 'spellCheck', 'step', 'suffixLabel', 'type', 'value']
|
|
2857
3053
|
})
|
|
2858
3054
|
export class FlipTextInput {
|
|
2859
3055
|
protected el: HTMLElement;
|
|
2860
3056
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2861
3057
|
c.detach();
|
|
2862
3058
|
this.el = r.nativeElement;
|
|
2863
|
-
proxyOutputs(this, this.el, ['valueChange']);
|
|
3059
|
+
proxyOutputs(this, this.el, ['inputBlur', 'inputFocus', 'valueChange']);
|
|
2864
3060
|
}
|
|
2865
3061
|
}
|
|
2866
3062
|
|
|
@@ -2,13 +2,17 @@
|
|
|
2
2
|
import * as d from './components';
|
|
3
3
|
|
|
4
4
|
export const DIRECTIVES = [
|
|
5
|
+
d.FileManager,
|
|
5
6
|
d.FlipActionList,
|
|
6
7
|
d.FlipActionListItem,
|
|
7
8
|
d.FlipActionListSection,
|
|
9
|
+
d.FlipAppLayout,
|
|
10
|
+
d.FlipAutocomplete,
|
|
8
11
|
d.FlipAvatar,
|
|
9
12
|
d.FlipAvatarGroup,
|
|
10
13
|
d.FlipBadge,
|
|
11
14
|
d.FlipBanner,
|
|
15
|
+
d.FlipBox,
|
|
12
16
|
d.FlipButton,
|
|
13
17
|
d.FlipButtonGroup,
|
|
14
18
|
d.FlipCheckbox,
|
|
@@ -115,6 +119,7 @@ export const DIRECTIVES = [
|
|
|
115
119
|
d.FlipOptionListItem,
|
|
116
120
|
d.FlipOptionListSection,
|
|
117
121
|
d.FlipPagination,
|
|
122
|
+
d.FlipPdfReader,
|
|
118
123
|
d.FlipPopover,
|
|
119
124
|
d.FlipProgressIndicator,
|
|
120
125
|
d.FlipRadio,
|