@getflip/swirl-components-angular 0.2.1 → 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 +37 -0
- package/dist/component-library/esm2020/lib/component-library.module.mjs +3 -3
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +188 -28
- package/dist/component-library/esm2020/lib/stencil-generated/index.mjs +7 -1
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +190 -30
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +190 -30
- 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 +127 -8
- 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 +244 -26
- package/projects/component-library/src/lib/stencil-generated/index.ts +6 -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({
|
|
@@ -189,13 +298,13 @@ export declare interface FlipButtonGroup extends Components.FlipButtonGroup {}
|
|
|
189
298
|
|
|
190
299
|
@ProxyCmp({
|
|
191
300
|
defineCustomElementFn: undefined,
|
|
192
|
-
inputs: ['orientation', 'stretch', 'wrap']
|
|
301
|
+
inputs: ['orientation', 'segmented', 'stretch', 'wrap']
|
|
193
302
|
})
|
|
194
303
|
@Component({
|
|
195
304
|
selector: 'flip-button-group',
|
|
196
305
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
197
306
|
template: '<ng-content></ng-content>',
|
|
198
|
-
inputs: ['orientation', 'stretch', 'wrap']
|
|
307
|
+
inputs: ['orientation', 'segmented', 'stretch', 'wrap']
|
|
199
308
|
})
|
|
200
309
|
export class FlipButtonGroup {
|
|
201
310
|
protected el: HTMLElement;
|
|
@@ -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: ['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: ['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
|
|
|
@@ -2263,6 +2421,28 @@ export class FlipInlineError {
|
|
|
2263
2421
|
}
|
|
2264
2422
|
|
|
2265
2423
|
|
|
2424
|
+
export declare interface FlipLightbox extends Components.FlipLightbox {}
|
|
2425
|
+
|
|
2426
|
+
@ProxyCmp({
|
|
2427
|
+
defineCustomElementFn: undefined,
|
|
2428
|
+
inputs: ['closeButtonLabel', 'downloadButtonLabel', 'label', 'nextSlideButtonLabel', 'previousSlideButtonLabel'],
|
|
2429
|
+
methods: ['open', 'close', 'activateSlide']
|
|
2430
|
+
})
|
|
2431
|
+
@Component({
|
|
2432
|
+
selector: 'flip-lightbox',
|
|
2433
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2434
|
+
template: '<ng-content></ng-content>',
|
|
2435
|
+
inputs: ['closeButtonLabel', 'downloadButtonLabel', 'label', 'nextSlideButtonLabel', 'previousSlideButtonLabel']
|
|
2436
|
+
})
|
|
2437
|
+
export class FlipLightbox {
|
|
2438
|
+
protected el: HTMLElement;
|
|
2439
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2440
|
+
c.detach();
|
|
2441
|
+
this.el = r.nativeElement;
|
|
2442
|
+
}
|
|
2443
|
+
}
|
|
2444
|
+
|
|
2445
|
+
|
|
2266
2446
|
export declare interface FlipLink extends Components.FlipLink {}
|
|
2267
2447
|
|
|
2268
2448
|
@ProxyCmp({
|
|
@@ -2304,6 +2484,14 @@ export class FlipList {
|
|
|
2304
2484
|
|
|
2305
2485
|
|
|
2306
2486
|
export declare interface FlipModal extends Components.FlipModal {
|
|
2487
|
+
/**
|
|
2488
|
+
*
|
|
2489
|
+
*/
|
|
2490
|
+
modalClose: EventEmitter<CustomEvent<void>>;
|
|
2491
|
+
/**
|
|
2492
|
+
*
|
|
2493
|
+
*/
|
|
2494
|
+
modalOpen: EventEmitter<CustomEvent<void>>;
|
|
2307
2495
|
/**
|
|
2308
2496
|
*
|
|
2309
2497
|
*/
|
|
@@ -2331,7 +2519,7 @@ export class FlipModal {
|
|
|
2331
2519
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2332
2520
|
c.detach();
|
|
2333
2521
|
this.el = r.nativeElement;
|
|
2334
|
-
proxyOutputs(this, this.el, ['primaryAction', 'secondaryAction']);
|
|
2522
|
+
proxyOutputs(this, this.el, ['modalClose', 'modalOpen', 'primaryAction', 'secondaryAction']);
|
|
2335
2523
|
}
|
|
2336
2524
|
}
|
|
2337
2525
|
|
|
@@ -2346,13 +2534,13 @@ export declare interface FlipOptionList extends Components.FlipOptionList {
|
|
|
2346
2534
|
|
|
2347
2535
|
@ProxyCmp({
|
|
2348
2536
|
defineCustomElementFn: undefined,
|
|
2349
|
-
inputs: ['disabled', 'label', 'multiSelect', 'value']
|
|
2537
|
+
inputs: ['disabled', 'label', 'multiSelect', 'optionListId', 'value']
|
|
2350
2538
|
})
|
|
2351
2539
|
@Component({
|
|
2352
2540
|
selector: 'flip-option-list',
|
|
2353
2541
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2354
2542
|
template: '<ng-content></ng-content>',
|
|
2355
|
-
inputs: ['disabled', 'label', 'multiSelect', 'value']
|
|
2543
|
+
inputs: ['disabled', 'label', 'multiSelect', 'optionListId', 'value']
|
|
2356
2544
|
})
|
|
2357
2545
|
export class FlipOptionList {
|
|
2358
2546
|
protected el: HTMLElement;
|
|
@@ -2434,6 +2622,28 @@ export class FlipPagination {
|
|
|
2434
2622
|
}
|
|
2435
2623
|
|
|
2436
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
|
+
|
|
2437
2647
|
export declare interface FlipPopover extends Components.FlipPopover {}
|
|
2438
2648
|
|
|
2439
2649
|
@ProxyCmp({
|
|
@@ -2816,6 +3026,14 @@ export class FlipText {
|
|
|
2816
3026
|
|
|
2817
3027
|
|
|
2818
3028
|
export declare interface FlipTextInput extends Components.FlipTextInput {
|
|
3029
|
+
/**
|
|
3030
|
+
*
|
|
3031
|
+
*/
|
|
3032
|
+
inputBlur: EventEmitter<CustomEvent<FocusEvent>>;
|
|
3033
|
+
/**
|
|
3034
|
+
*
|
|
3035
|
+
*/
|
|
3036
|
+
inputFocus: EventEmitter<CustomEvent<FocusEvent>>;
|
|
2819
3037
|
/**
|
|
2820
3038
|
*
|
|
2821
3039
|
*/
|
|
@@ -2825,20 +3043,20 @@ export declare interface FlipTextInput extends Components.FlipTextInput {
|
|
|
2825
3043
|
|
|
2826
3044
|
@ProxyCmp({
|
|
2827
3045
|
defineCustomElementFn: undefined,
|
|
2828
|
-
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']
|
|
2829
3047
|
})
|
|
2830
3048
|
@Component({
|
|
2831
3049
|
selector: 'flip-text-input',
|
|
2832
3050
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2833
3051
|
template: '<ng-content></ng-content>',
|
|
2834
|
-
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']
|
|
2835
3053
|
})
|
|
2836
3054
|
export class FlipTextInput {
|
|
2837
3055
|
protected el: HTMLElement;
|
|
2838
3056
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2839
3057
|
c.detach();
|
|
2840
3058
|
this.el = r.nativeElement;
|
|
2841
|
-
proxyOutputs(this, this.el, ['valueChange']);
|
|
3059
|
+
proxyOutputs(this, this.el, ['inputBlur', 'inputFocus', 'valueChange']);
|
|
2842
3060
|
}
|
|
2843
3061
|
}
|
|
2844
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,
|
|
@@ -107,6 +111,7 @@ export const DIRECTIVES = [
|
|
|
107
111
|
d.FlipIconVisibilityOff,
|
|
108
112
|
d.FlipIconWarning,
|
|
109
113
|
d.FlipInlineError,
|
|
114
|
+
d.FlipLightbox,
|
|
110
115
|
d.FlipLink,
|
|
111
116
|
d.FlipList,
|
|
112
117
|
d.FlipModal,
|
|
@@ -114,6 +119,7 @@ export const DIRECTIVES = [
|
|
|
114
119
|
d.FlipOptionListItem,
|
|
115
120
|
d.FlipOptionListSection,
|
|
116
121
|
d.FlipPagination,
|
|
122
|
+
d.FlipPdfReader,
|
|
117
123
|
d.FlipPopover,
|
|
118
124
|
d.FlipProgressIndicator,
|
|
119
125
|
d.FlipRadio,
|