@getflip/swirl-components-angular 0.3.0 → 0.5.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 +39 -0
- package/dist/component-library/esm2020/lib/component-library.module.mjs +3 -3
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +240 -28
- package/dist/component-library/esm2020/lib/stencil-generated/index.mjs +9 -1
- package/dist/component-library/esm2020/lib/stencil-generated/select-value-accessor.mjs +3 -3
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +244 -32
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +244 -32
- 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 +165 -8
- package/dist/component-library/lib/stencil-generated/index.d.ts +1 -1
- package/dist/component-library/lib/stencil-generated/select-value-accessor.d.ts +1 -1
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +315 -27
- package/projects/component-library/src/lib/stencil-generated/index.ts +8 -0
- package/projects/component-library/src/lib/stencil-generated/select-value-accessor.ts +1 -1
|
@@ -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({
|
|
@@ -255,6 +364,38 @@ export class FlipChip {
|
|
|
255
364
|
}
|
|
256
365
|
|
|
257
366
|
|
|
367
|
+
export declare interface FlipConsoleLayout extends Components.FlipConsoleLayout {
|
|
368
|
+
/**
|
|
369
|
+
*
|
|
370
|
+
*/
|
|
371
|
+
backButtonClick: EventEmitter<CustomEvent<MouseEvent>>;
|
|
372
|
+
/**
|
|
373
|
+
*
|
|
374
|
+
*/
|
|
375
|
+
helpButtonClick: EventEmitter<CustomEvent<MouseEvent>>;
|
|
376
|
+
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
@ProxyCmp({
|
|
380
|
+
defineCustomElementFn: undefined,
|
|
381
|
+
inputs: ['appName', 'backButonLabel', 'heading', 'helpButonLabel', 'logoText', 'navigationLabel', 'showBackButton', 'showHelpButton', 'subheading']
|
|
382
|
+
})
|
|
383
|
+
@Component({
|
|
384
|
+
selector: 'flip-console-layout',
|
|
385
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
386
|
+
template: '<ng-content></ng-content>',
|
|
387
|
+
inputs: ['appName', 'backButonLabel', 'heading', 'helpButonLabel', 'logoText', 'navigationLabel', 'showBackButton', 'showHelpButton', 'subheading']
|
|
388
|
+
})
|
|
389
|
+
export class FlipConsoleLayout {
|
|
390
|
+
protected el: HTMLElement;
|
|
391
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
392
|
+
c.detach();
|
|
393
|
+
this.el = r.nativeElement;
|
|
394
|
+
proxyOutputs(this, this.el, ['backButtonClick', 'helpButtonClick']);
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
|
|
258
399
|
export declare interface FlipDateInput extends Components.FlipDateInput {
|
|
259
400
|
/**
|
|
260
401
|
*
|
|
@@ -434,50 +575,70 @@ export class FlipFileUploader {
|
|
|
434
575
|
}
|
|
435
576
|
|
|
436
577
|
|
|
437
|
-
export declare interface FlipFileViewer extends Components.FlipFileViewer {
|
|
578
|
+
export declare interface FlipFileViewer extends Components.FlipFileViewer {
|
|
579
|
+
/**
|
|
580
|
+
*
|
|
581
|
+
*/
|
|
582
|
+
activate: EventEmitter<CustomEvent<HTMLElement>>;
|
|
583
|
+
|
|
584
|
+
}
|
|
438
585
|
|
|
439
586
|
@ProxyCmp({
|
|
440
587
|
defineCustomElementFn: undefined,
|
|
441
|
-
inputs: ['active', 'description', 'errorMessage', 'file', 'type', 'typeUnsupportedMessage', 'zoom'],
|
|
588
|
+
inputs: ['active', 'autoplay', 'description', 'errorMessage', 'file', 'type', 'typeUnsupportedMessage', 'zoom'],
|
|
442
589
|
methods: ['download', 'print']
|
|
443
590
|
})
|
|
444
591
|
@Component({
|
|
445
592
|
selector: 'flip-file-viewer',
|
|
446
593
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
447
594
|
template: '<ng-content></ng-content>',
|
|
448
|
-
inputs: ['active', 'description', 'errorMessage', 'file', 'type', 'typeUnsupportedMessage', 'zoom']
|
|
595
|
+
inputs: ['active', 'autoplay', 'description', 'errorMessage', 'file', 'type', 'typeUnsupportedMessage', 'zoom']
|
|
449
596
|
})
|
|
450
597
|
export class FlipFileViewer {
|
|
451
598
|
protected el: HTMLElement;
|
|
452
599
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
453
600
|
c.detach();
|
|
454
601
|
this.el = r.nativeElement;
|
|
602
|
+
proxyOutputs(this, this.el, ['activate']);
|
|
455
603
|
}
|
|
456
604
|
}
|
|
457
605
|
|
|
458
606
|
|
|
459
|
-
export declare interface FlipFileViewerAudio extends Components.FlipFileViewerAudio {
|
|
607
|
+
export declare interface FlipFileViewerAudio extends Components.FlipFileViewerAudio {
|
|
608
|
+
/**
|
|
609
|
+
*
|
|
610
|
+
*/
|
|
611
|
+
activate: EventEmitter<CustomEvent<HTMLElement>>;
|
|
612
|
+
|
|
613
|
+
}
|
|
460
614
|
|
|
461
615
|
@ProxyCmp({
|
|
462
616
|
defineCustomElementFn: undefined,
|
|
463
|
-
inputs: ['file', 'type']
|
|
617
|
+
inputs: ['autoplay', 'file', 'type']
|
|
464
618
|
})
|
|
465
619
|
@Component({
|
|
466
620
|
selector: 'flip-file-viewer-audio',
|
|
467
621
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
468
622
|
template: '<ng-content></ng-content>',
|
|
469
|
-
inputs: ['file', 'type']
|
|
623
|
+
inputs: ['autoplay', 'file', 'type']
|
|
470
624
|
})
|
|
471
625
|
export class FlipFileViewerAudio {
|
|
472
626
|
protected el: HTMLElement;
|
|
473
627
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
474
628
|
c.detach();
|
|
475
629
|
this.el = r.nativeElement;
|
|
630
|
+
proxyOutputs(this, this.el, ['activate']);
|
|
476
631
|
}
|
|
477
632
|
}
|
|
478
633
|
|
|
479
634
|
|
|
480
|
-
export declare interface FlipFileViewerCsv extends Components.FlipFileViewerCsv {
|
|
635
|
+
export declare interface FlipFileViewerCsv extends Components.FlipFileViewerCsv {
|
|
636
|
+
/**
|
|
637
|
+
*
|
|
638
|
+
*/
|
|
639
|
+
activate: EventEmitter<CustomEvent<HTMLElement>>;
|
|
640
|
+
|
|
641
|
+
}
|
|
481
642
|
|
|
482
643
|
@ProxyCmp({
|
|
483
644
|
defineCustomElementFn: undefined,
|
|
@@ -494,11 +655,18 @@ export class FlipFileViewerCsv {
|
|
|
494
655
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
495
656
|
c.detach();
|
|
496
657
|
this.el = r.nativeElement;
|
|
658
|
+
proxyOutputs(this, this.el, ['activate']);
|
|
497
659
|
}
|
|
498
660
|
}
|
|
499
661
|
|
|
500
662
|
|
|
501
|
-
export declare interface FlipFileViewerImage extends Components.FlipFileViewerImage {
|
|
663
|
+
export declare interface FlipFileViewerImage extends Components.FlipFileViewerImage {
|
|
664
|
+
/**
|
|
665
|
+
*
|
|
666
|
+
*/
|
|
667
|
+
activate: EventEmitter<CustomEvent<HTMLElement>>;
|
|
668
|
+
|
|
669
|
+
}
|
|
502
670
|
|
|
503
671
|
@ProxyCmp({
|
|
504
672
|
defineCustomElementFn: undefined,
|
|
@@ -515,33 +683,47 @@ export class FlipFileViewerImage {
|
|
|
515
683
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
516
684
|
c.detach();
|
|
517
685
|
this.el = r.nativeElement;
|
|
686
|
+
proxyOutputs(this, this.el, ['activate']);
|
|
518
687
|
}
|
|
519
688
|
}
|
|
520
689
|
|
|
521
690
|
|
|
522
|
-
export declare interface FlipFileViewerPdf extends Components.FlipFileViewerPdf {
|
|
691
|
+
export declare interface FlipFileViewerPdf extends Components.FlipFileViewerPdf {
|
|
692
|
+
/**
|
|
693
|
+
*
|
|
694
|
+
*/
|
|
695
|
+
activate: EventEmitter<CustomEvent<HTMLElement>>;
|
|
696
|
+
|
|
697
|
+
}
|
|
523
698
|
|
|
524
699
|
@ProxyCmp({
|
|
525
700
|
defineCustomElementFn: undefined,
|
|
526
|
-
inputs: ['errorMessage', 'file', 'zoom'],
|
|
527
|
-
methods: ['print']
|
|
701
|
+
inputs: ['errorMessage', 'file', 'singlePageMode', 'zoom'],
|
|
702
|
+
methods: ['print', 'nextPage', 'previousPage', 'setPage']
|
|
528
703
|
})
|
|
529
704
|
@Component({
|
|
530
705
|
selector: 'flip-file-viewer-pdf',
|
|
531
706
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
532
707
|
template: '<ng-content></ng-content>',
|
|
533
|
-
inputs: ['errorMessage', 'file', 'zoom']
|
|
708
|
+
inputs: ['errorMessage', 'file', 'singlePageMode', 'zoom']
|
|
534
709
|
})
|
|
535
710
|
export class FlipFileViewerPdf {
|
|
536
711
|
protected el: HTMLElement;
|
|
537
712
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
538
713
|
c.detach();
|
|
539
714
|
this.el = r.nativeElement;
|
|
715
|
+
proxyOutputs(this, this.el, ['activate']);
|
|
540
716
|
}
|
|
541
717
|
}
|
|
542
718
|
|
|
543
719
|
|
|
544
|
-
export declare interface FlipFileViewerText extends Components.FlipFileViewerText {
|
|
720
|
+
export declare interface FlipFileViewerText extends Components.FlipFileViewerText {
|
|
721
|
+
/**
|
|
722
|
+
*
|
|
723
|
+
*/
|
|
724
|
+
activate: EventEmitter<CustomEvent<HTMLElement>>;
|
|
725
|
+
|
|
726
|
+
}
|
|
545
727
|
|
|
546
728
|
@ProxyCmp({
|
|
547
729
|
defineCustomElementFn: undefined,
|
|
@@ -558,27 +740,35 @@ export class FlipFileViewerText {
|
|
|
558
740
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
559
741
|
c.detach();
|
|
560
742
|
this.el = r.nativeElement;
|
|
743
|
+
proxyOutputs(this, this.el, ['activate']);
|
|
561
744
|
}
|
|
562
745
|
}
|
|
563
746
|
|
|
564
747
|
|
|
565
|
-
export declare interface FlipFileViewerVideo extends Components.FlipFileViewerVideo {
|
|
748
|
+
export declare interface FlipFileViewerVideo extends Components.FlipFileViewerVideo {
|
|
749
|
+
/**
|
|
750
|
+
*
|
|
751
|
+
*/
|
|
752
|
+
activate: EventEmitter<CustomEvent<HTMLElement>>;
|
|
753
|
+
|
|
754
|
+
}
|
|
566
755
|
|
|
567
756
|
@ProxyCmp({
|
|
568
757
|
defineCustomElementFn: undefined,
|
|
569
|
-
inputs: ['file', 'type']
|
|
758
|
+
inputs: ['autoplay', 'file', 'type']
|
|
570
759
|
})
|
|
571
760
|
@Component({
|
|
572
761
|
selector: 'flip-file-viewer-video',
|
|
573
762
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
574
763
|
template: '<ng-content></ng-content>',
|
|
575
|
-
inputs: ['file', 'type']
|
|
764
|
+
inputs: ['autoplay', 'file', 'type']
|
|
576
765
|
})
|
|
577
766
|
export class FlipFileViewerVideo {
|
|
578
767
|
protected el: HTMLElement;
|
|
579
768
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
580
769
|
c.detach();
|
|
581
770
|
this.el = r.nativeElement;
|
|
771
|
+
proxyOutputs(this, this.el, ['activate']);
|
|
582
772
|
}
|
|
583
773
|
}
|
|
584
774
|
|
|
@@ -1465,6 +1655,27 @@ export class FlipIconGroupsCustom {
|
|
|
1465
1655
|
}
|
|
1466
1656
|
|
|
1467
1657
|
|
|
1658
|
+
export declare interface FlipIconHelp extends Components.FlipIconHelp {}
|
|
1659
|
+
|
|
1660
|
+
@ProxyCmp({
|
|
1661
|
+
defineCustomElementFn: undefined,
|
|
1662
|
+
inputs: ['size']
|
|
1663
|
+
})
|
|
1664
|
+
@Component({
|
|
1665
|
+
selector: 'flip-icon-help',
|
|
1666
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1667
|
+
template: '<ng-content></ng-content>',
|
|
1668
|
+
inputs: ['size']
|
|
1669
|
+
})
|
|
1670
|
+
export class FlipIconHelp {
|
|
1671
|
+
protected el: HTMLElement;
|
|
1672
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1673
|
+
c.detach();
|
|
1674
|
+
this.el = r.nativeElement;
|
|
1675
|
+
}
|
|
1676
|
+
}
|
|
1677
|
+
|
|
1678
|
+
|
|
1468
1679
|
export declare interface FlipIconImage extends Components.FlipIconImage {}
|
|
1469
1680
|
|
|
1470
1681
|
@ProxyCmp({
|
|
@@ -2326,6 +2537,14 @@ export class FlipList {
|
|
|
2326
2537
|
|
|
2327
2538
|
|
|
2328
2539
|
export declare interface FlipModal extends Components.FlipModal {
|
|
2540
|
+
/**
|
|
2541
|
+
*
|
|
2542
|
+
*/
|
|
2543
|
+
modalClose: EventEmitter<CustomEvent<void>>;
|
|
2544
|
+
/**
|
|
2545
|
+
*
|
|
2546
|
+
*/
|
|
2547
|
+
modalOpen: EventEmitter<CustomEvent<void>>;
|
|
2329
2548
|
/**
|
|
2330
2549
|
*
|
|
2331
2550
|
*/
|
|
@@ -2353,7 +2572,7 @@ export class FlipModal {
|
|
|
2353
2572
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2354
2573
|
c.detach();
|
|
2355
2574
|
this.el = r.nativeElement;
|
|
2356
|
-
proxyOutputs(this, this.el, ['primaryAction', 'secondaryAction']);
|
|
2575
|
+
proxyOutputs(this, this.el, ['modalClose', 'modalOpen', 'primaryAction', 'secondaryAction']);
|
|
2357
2576
|
}
|
|
2358
2577
|
}
|
|
2359
2578
|
|
|
@@ -2368,13 +2587,13 @@ export declare interface FlipOptionList extends Components.FlipOptionList {
|
|
|
2368
2587
|
|
|
2369
2588
|
@ProxyCmp({
|
|
2370
2589
|
defineCustomElementFn: undefined,
|
|
2371
|
-
inputs: ['disabled', 'label', 'multiSelect', 'value']
|
|
2590
|
+
inputs: ['disabled', 'label', 'multiSelect', 'optionListId', 'value']
|
|
2372
2591
|
})
|
|
2373
2592
|
@Component({
|
|
2374
2593
|
selector: 'flip-option-list',
|
|
2375
2594
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2376
2595
|
template: '<ng-content></ng-content>',
|
|
2377
|
-
inputs: ['disabled', 'label', 'multiSelect', 'value']
|
|
2596
|
+
inputs: ['disabled', 'label', 'multiSelect', 'optionListId', 'value']
|
|
2378
2597
|
})
|
|
2379
2598
|
export class FlipOptionList {
|
|
2380
2599
|
protected el: HTMLElement;
|
|
@@ -2456,24 +2675,57 @@ export class FlipPagination {
|
|
|
2456
2675
|
}
|
|
2457
2676
|
|
|
2458
2677
|
|
|
2459
|
-
export declare interface
|
|
2678
|
+
export declare interface FlipPdfReader extends Components.FlipPdfReader {}
|
|
2460
2679
|
|
|
2461
2680
|
@ProxyCmp({
|
|
2462
2681
|
defineCustomElementFn: undefined,
|
|
2463
|
-
inputs: ['label', '
|
|
2682
|
+
inputs: ['autoZoomLabel', 'closeButtonLabel', 'downloadButtonLabel', 'file', 'label', 'printButtonLabel', 'zoomInButtonLabel', 'zoomOutButtonLabel', 'zoomSelectLabel'],
|
|
2683
|
+
methods: ['open', 'close']
|
|
2684
|
+
})
|
|
2685
|
+
@Component({
|
|
2686
|
+
selector: 'flip-pdf-reader',
|
|
2687
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2688
|
+
template: '<ng-content></ng-content>',
|
|
2689
|
+
inputs: ['autoZoomLabel', 'closeButtonLabel', 'downloadButtonLabel', 'file', 'label', 'printButtonLabel', 'zoomInButtonLabel', 'zoomOutButtonLabel', 'zoomSelectLabel']
|
|
2690
|
+
})
|
|
2691
|
+
export class FlipPdfReader {
|
|
2692
|
+
protected el: HTMLElement;
|
|
2693
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2694
|
+
c.detach();
|
|
2695
|
+
this.el = r.nativeElement;
|
|
2696
|
+
}
|
|
2697
|
+
}
|
|
2698
|
+
|
|
2699
|
+
|
|
2700
|
+
export declare interface FlipPopover extends Components.FlipPopover {
|
|
2701
|
+
/**
|
|
2702
|
+
*
|
|
2703
|
+
*/
|
|
2704
|
+
popoverClose: EventEmitter<CustomEvent<void>>;
|
|
2705
|
+
/**
|
|
2706
|
+
*
|
|
2707
|
+
*/
|
|
2708
|
+
popoverOpen: EventEmitter<CustomEvent<void>>;
|
|
2709
|
+
|
|
2710
|
+
}
|
|
2711
|
+
|
|
2712
|
+
@ProxyCmp({
|
|
2713
|
+
defineCustomElementFn: undefined,
|
|
2714
|
+
inputs: ['animation', 'enableFlip', 'label', 'offset', 'placement', 'popoverId', 'trigger', 'useContainerWidth'],
|
|
2464
2715
|
methods: ['close', 'open']
|
|
2465
2716
|
})
|
|
2466
2717
|
@Component({
|
|
2467
2718
|
selector: 'flip-popover',
|
|
2468
2719
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2469
2720
|
template: '<ng-content></ng-content>',
|
|
2470
|
-
inputs: ['label', 'placement', 'popoverId', 'trigger']
|
|
2721
|
+
inputs: ['animation', 'enableFlip', 'label', 'offset', 'placement', 'popoverId', 'trigger', 'useContainerWidth']
|
|
2471
2722
|
})
|
|
2472
2723
|
export class FlipPopover {
|
|
2473
2724
|
protected el: HTMLElement;
|
|
2474
2725
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2475
2726
|
c.detach();
|
|
2476
2727
|
this.el = r.nativeElement;
|
|
2728
|
+
proxyOutputs(this, this.el, ['popoverClose', 'popoverOpen']);
|
|
2477
2729
|
}
|
|
2478
2730
|
}
|
|
2479
2731
|
|
|
@@ -2668,6 +2920,34 @@ export class FlipSearch {
|
|
|
2668
2920
|
}
|
|
2669
2921
|
|
|
2670
2922
|
|
|
2923
|
+
export declare interface FlipSelect extends Components.FlipSelect {
|
|
2924
|
+
/**
|
|
2925
|
+
*
|
|
2926
|
+
*/
|
|
2927
|
+
valueChange: EventEmitter<CustomEvent<string[]>>;
|
|
2928
|
+
|
|
2929
|
+
}
|
|
2930
|
+
|
|
2931
|
+
@ProxyCmp({
|
|
2932
|
+
defineCustomElementFn: undefined,
|
|
2933
|
+
inputs: ['disabled', 'flipAriaDescribedby', 'invalid', 'label', 'multiSelect', 'required', 'value']
|
|
2934
|
+
})
|
|
2935
|
+
@Component({
|
|
2936
|
+
selector: 'flip-select',
|
|
2937
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2938
|
+
template: '<ng-content></ng-content>',
|
|
2939
|
+
inputs: ['disabled', 'flipAriaDescribedby', 'invalid', 'label', 'multiSelect', 'required', 'value']
|
|
2940
|
+
})
|
|
2941
|
+
export class FlipSelect {
|
|
2942
|
+
protected el: HTMLElement;
|
|
2943
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2944
|
+
c.detach();
|
|
2945
|
+
this.el = r.nativeElement;
|
|
2946
|
+
proxyOutputs(this, this.el, ['valueChange']);
|
|
2947
|
+
}
|
|
2948
|
+
}
|
|
2949
|
+
|
|
2950
|
+
|
|
2671
2951
|
export declare interface FlipSpinner extends Components.FlipSpinner {}
|
|
2672
2952
|
|
|
2673
2953
|
@ProxyCmp({
|
|
@@ -2838,6 +3118,14 @@ export class FlipText {
|
|
|
2838
3118
|
|
|
2839
3119
|
|
|
2840
3120
|
export declare interface FlipTextInput extends Components.FlipTextInput {
|
|
3121
|
+
/**
|
|
3122
|
+
*
|
|
3123
|
+
*/
|
|
3124
|
+
inputBlur: EventEmitter<CustomEvent<FocusEvent>>;
|
|
3125
|
+
/**
|
|
3126
|
+
*
|
|
3127
|
+
*/
|
|
3128
|
+
inputFocus: EventEmitter<CustomEvent<FocusEvent>>;
|
|
2841
3129
|
/**
|
|
2842
3130
|
*
|
|
2843
3131
|
*/
|
|
@@ -2847,20 +3135,20 @@ export declare interface FlipTextInput extends Components.FlipTextInput {
|
|
|
2847
3135
|
|
|
2848
3136
|
@ProxyCmp({
|
|
2849
3137
|
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']
|
|
3138
|
+
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
3139
|
})
|
|
2852
3140
|
@Component({
|
|
2853
3141
|
selector: 'flip-text-input',
|
|
2854
3142
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2855
3143
|
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']
|
|
3144
|
+
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
3145
|
})
|
|
2858
3146
|
export class FlipTextInput {
|
|
2859
3147
|
protected el: HTMLElement;
|
|
2860
3148
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
2861
3149
|
c.detach();
|
|
2862
3150
|
this.el = r.nativeElement;
|
|
2863
|
-
proxyOutputs(this, this.el, ['valueChange']);
|
|
3151
|
+
proxyOutputs(this, this.el, ['inputBlur', 'inputFocus', 'valueChange']);
|
|
2864
3152
|
}
|
|
2865
3153
|
}
|
|
2866
3154
|
|
|
@@ -2,17 +2,22 @@
|
|
|
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,
|
|
15
19
|
d.FlipChip,
|
|
20
|
+
d.FlipConsoleLayout,
|
|
16
21
|
d.FlipDateInput,
|
|
17
22
|
d.FlipDatePicker,
|
|
18
23
|
d.FlipDescriptionList,
|
|
@@ -69,6 +74,7 @@ export const DIRECTIVES = [
|
|
|
69
74
|
d.FlipIconGroupAssign,
|
|
70
75
|
d.FlipIconGroups,
|
|
71
76
|
d.FlipIconGroupsCustom,
|
|
77
|
+
d.FlipIconHelp,
|
|
72
78
|
d.FlipIconImage,
|
|
73
79
|
d.FlipIconInfo,
|
|
74
80
|
d.FlipIconInventory,
|
|
@@ -115,6 +121,7 @@ export const DIRECTIVES = [
|
|
|
115
121
|
d.FlipOptionListItem,
|
|
116
122
|
d.FlipOptionListSection,
|
|
117
123
|
d.FlipPagination,
|
|
124
|
+
d.FlipPdfReader,
|
|
118
125
|
d.FlipPopover,
|
|
119
126
|
d.FlipProgressIndicator,
|
|
120
127
|
d.FlipRadio,
|
|
@@ -123,6 +130,7 @@ export const DIRECTIVES = [
|
|
|
123
130
|
d.FlipResourceListFileItem,
|
|
124
131
|
d.FlipResourceListItem,
|
|
125
132
|
d.FlipSearch,
|
|
133
|
+
d.FlipSelect,
|
|
126
134
|
d.FlipSpinner,
|
|
127
135
|
d.FlipStack,
|
|
128
136
|
d.FlipSwitch,
|
|
@@ -5,7 +5,7 @@ import { ValueAccessor } from './value-accessor';
|
|
|
5
5
|
|
|
6
6
|
@Directive({
|
|
7
7
|
/* tslint:disable-next-line:directive-selector */
|
|
8
|
-
selector: 'flip-option-list',
|
|
8
|
+
selector: 'flip-option-list, flip-select',
|
|
9
9
|
host: {
|
|
10
10
|
'(valueChange)': 'handleChangeEvent($event.target.value)'
|
|
11
11
|
},
|