@beeq/angular 1.8.5-beta.2 → 1.10.0-beta.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/directives/components.d.ts +233 -208
- package/esm2022/directives/components.mjs +239 -217
- package/esm2022/standalone/directives/components.mjs +12 -12
- package/fesm2022/beeq-angular-standalone.mjs +11 -11
- package/fesm2022/beeq-angular-standalone.mjs.map +1 -1
- package/fesm2022/beeq-angular.mjs +238 -216
- package/fesm2022/beeq-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/standalone/directives/components.d.ts +9 -3
|
@@ -267,33 +267,33 @@ function ProxyCmp(opts) {
|
|
|
267
267
|
|
|
268
268
|
let BqAccordion = class BqAccordion {
|
|
269
269
|
/**
|
|
270
|
-
* The appearance style of the Accordion
|
|
270
|
+
* The appearance style of the Accordion @default 'filled'
|
|
271
271
|
*/
|
|
272
272
|
set appearance(_) { }
|
|
273
273
|
;
|
|
274
274
|
/**
|
|
275
|
-
* If true, the Accordion is disabled
|
|
275
|
+
* If true, the Accordion is disabled @default false
|
|
276
276
|
*/
|
|
277
277
|
set disabled(_) { }
|
|
278
278
|
;
|
|
279
279
|
/**
|
|
280
|
-
* If true, the Accordion is expanded
|
|
280
|
+
* If true, the Accordion is expanded @default false
|
|
281
281
|
*/
|
|
282
282
|
set expanded(_) { }
|
|
283
283
|
;
|
|
284
284
|
/**
|
|
285
285
|
* Animation is set through JS when the browser does not support CSS calc-size()
|
|
286
|
-
If true, the Accordion animation, will be disabled. No animation will be applied.
|
|
286
|
+
If true, the Accordion animation, will be disabled. No animation will be applied. @default false
|
|
287
287
|
*/
|
|
288
288
|
set noAnimation(_) { }
|
|
289
289
|
;
|
|
290
290
|
/**
|
|
291
|
-
* If true, the Accordion expand icon is rotate 180deg when expanded
|
|
291
|
+
* If true, the Accordion expand icon is rotate 180deg when expanded @default false
|
|
292
292
|
*/
|
|
293
293
|
set rotate(_) { }
|
|
294
294
|
;
|
|
295
295
|
/**
|
|
296
|
-
* The size of the Accordion
|
|
296
|
+
* The size of the Accordion @default 'medium'
|
|
297
297
|
*/
|
|
298
298
|
set size(_) { }
|
|
299
299
|
;
|
|
@@ -324,7 +324,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
324
324
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
325
325
|
let BqAccordionGroup = class BqAccordionGroup {
|
|
326
326
|
/**
|
|
327
|
-
* The appearance style of accordion to be applied to all accordions
|
|
327
|
+
* The appearance style of accordion to be applied to all accordions @default 'filled'
|
|
328
328
|
*/
|
|
329
329
|
set appearance(_) { }
|
|
330
330
|
;
|
|
@@ -335,17 +335,17 @@ let BqAccordionGroup = class BqAccordionGroup {
|
|
|
335
335
|
;
|
|
336
336
|
/**
|
|
337
337
|
* Animation is set through JS when the browser does not support CSS calc-size()
|
|
338
|
-
If true, the accordion animation, will be disabled. No animation will be applied.
|
|
338
|
+
If true, the accordion animation, will be disabled. No animation will be applied. @default false
|
|
339
339
|
*/
|
|
340
340
|
set noAnimation(_) { }
|
|
341
341
|
;
|
|
342
342
|
/**
|
|
343
|
-
* If true multiple accordions can be expanded at the same time
|
|
343
|
+
* If true multiple accordions can be expanded at the same time @default false
|
|
344
344
|
*/
|
|
345
345
|
set multiple(_) { }
|
|
346
346
|
;
|
|
347
347
|
/**
|
|
348
|
-
* The size of accordion to be applied to all accordions
|
|
348
|
+
* The size of accordion to be applied to all accordions @default 'medium'
|
|
349
349
|
*/
|
|
350
350
|
set size(_) { }
|
|
351
351
|
;
|
|
@@ -380,7 +380,7 @@ let BqAlert = class BqAlert {
|
|
|
380
380
|
set autoDismiss(_) { }
|
|
381
381
|
;
|
|
382
382
|
/**
|
|
383
|
-
* The corner radius of the alert component
|
|
383
|
+
* The corner radius of the alert component @default 's'
|
|
384
384
|
*/
|
|
385
385
|
set border(_) { }
|
|
386
386
|
;
|
|
@@ -400,12 +400,12 @@ let BqAlert = class BqAlert {
|
|
|
400
400
|
set open(_) { }
|
|
401
401
|
;
|
|
402
402
|
/**
|
|
403
|
-
* The length of time, in milliseconds, after which the alert will close itself. Only valid if `autoDismiss="true"`
|
|
403
|
+
* The length of time, in milliseconds, after which the alert will close itself. Only valid if `autoDismiss="true"` @default 3000
|
|
404
404
|
*/
|
|
405
405
|
set time(_) { }
|
|
406
406
|
;
|
|
407
407
|
/**
|
|
408
|
-
* Type of Alert
|
|
408
|
+
* Type of Alert @default 'default'
|
|
409
409
|
*/
|
|
410
410
|
set type(_) { }
|
|
411
411
|
;
|
|
@@ -462,12 +462,12 @@ let BqAvatar = class BqAvatar {
|
|
|
462
462
|
set initials(_) { }
|
|
463
463
|
;
|
|
464
464
|
/**
|
|
465
|
-
* The shape of the avatar
|
|
465
|
+
* The shape of the avatar @default 'circle'
|
|
466
466
|
*/
|
|
467
467
|
set shape(_) { }
|
|
468
468
|
;
|
|
469
469
|
/**
|
|
470
|
-
* The size of the avatar
|
|
470
|
+
* The size of the avatar @default 'medium'
|
|
471
471
|
*/
|
|
472
472
|
set size(_) { }
|
|
473
473
|
;
|
|
@@ -497,17 +497,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
497
497
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
498
498
|
let BqBadge = class BqBadge {
|
|
499
499
|
/**
|
|
500
|
-
* Badge background color. The value should be a valid value of the palette color
|
|
500
|
+
* Badge background color. The value should be a valid value of the palette color @default 'ui--danger'
|
|
501
501
|
*/
|
|
502
502
|
set backgroundColor(_) { }
|
|
503
503
|
;
|
|
504
504
|
/**
|
|
505
|
-
* Badge number color. The value should be a valid value of the palette color
|
|
505
|
+
* Badge number color. The value should be a valid value of the palette color @default 'text--inverse'
|
|
506
506
|
*/
|
|
507
507
|
set textColor(_) { }
|
|
508
508
|
;
|
|
509
509
|
/**
|
|
510
|
-
* The size of the badge. Relevant if badge has no content.
|
|
510
|
+
* The size of the badge. Relevant if badge has no content. @default 'small'
|
|
511
511
|
*/
|
|
512
512
|
set size(_) { }
|
|
513
513
|
;
|
|
@@ -537,7 +537,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
537
537
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
538
538
|
let BqBreadcrumb = class BqBreadcrumb {
|
|
539
539
|
/**
|
|
540
|
-
* The `aria-label` attribute to describe the type of navigation
|
|
540
|
+
* The `aria-label` attribute to describe the type of navigation @default 'Breadcrumbs'
|
|
541
541
|
*/
|
|
542
542
|
set label(_) { }
|
|
543
543
|
;
|
|
@@ -577,7 +577,7 @@ let BqBreadcrumbItem = class BqBreadcrumbItem {
|
|
|
577
577
|
set target(_) { }
|
|
578
578
|
;
|
|
579
579
|
/**
|
|
580
|
-
* Where to display the link in the browser context. Relevant only if `href` is set.
|
|
580
|
+
* Where to display the link in the browser context. Relevant only if `href` is set. @default 'noreferrer noopener'
|
|
581
581
|
*/
|
|
582
582
|
set rel(_) { }
|
|
583
583
|
;
|
|
@@ -608,22 +608,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
608
608
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
609
609
|
let BqButton = class BqButton {
|
|
610
610
|
/**
|
|
611
|
-
* The appearance style to apply to the button
|
|
611
|
+
* The appearance style to apply to the button @default 'primary'
|
|
612
612
|
*/
|
|
613
613
|
set appearance(_) { }
|
|
614
614
|
;
|
|
615
615
|
/**
|
|
616
|
-
* If `true`, it will make the button fit to its parent width.
|
|
616
|
+
* If `true`, it will make the button fit to its parent width. @default false
|
|
617
617
|
*/
|
|
618
618
|
set block(_) { }
|
|
619
619
|
;
|
|
620
620
|
/**
|
|
621
|
-
* The corner radius of the button
|
|
621
|
+
* The corner radius of the button @default 'm'
|
|
622
622
|
*/
|
|
623
623
|
set border(_) { }
|
|
624
624
|
;
|
|
625
625
|
/**
|
|
626
|
-
* If true, the button will be disabled (no interaction allowed)
|
|
626
|
+
* If true, the button will be disabled (no interaction allowed) @default false
|
|
627
627
|
*/
|
|
628
628
|
set disabled(_) { }
|
|
629
629
|
;
|
|
@@ -639,17 +639,17 @@ Details: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-downlo
|
|
|
639
639
|
set href(_) { }
|
|
640
640
|
;
|
|
641
641
|
/**
|
|
642
|
-
* It determinate how the content should be aligned
|
|
642
|
+
* It determinate how the content should be aligned @default 'center'
|
|
643
643
|
*/
|
|
644
644
|
set justifyContent(_) { }
|
|
645
645
|
;
|
|
646
646
|
/**
|
|
647
|
-
* If `true` it will display the button in a loading state
|
|
647
|
+
* If `true` it will display the button in a loading state @default false
|
|
648
648
|
*/
|
|
649
649
|
set loading(_) { }
|
|
650
650
|
;
|
|
651
651
|
/**
|
|
652
|
-
* The size of the button
|
|
652
|
+
* The size of the button @default 'medium'
|
|
653
653
|
*/
|
|
654
654
|
set size(_) { }
|
|
655
655
|
;
|
|
@@ -660,12 +660,12 @@ Details: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-target
|
|
|
660
660
|
set target(_) { }
|
|
661
661
|
;
|
|
662
662
|
/**
|
|
663
|
-
* The default behavior of the button
|
|
663
|
+
* The default behavior of the button @default 'button'
|
|
664
664
|
*/
|
|
665
665
|
set type(_) { }
|
|
666
666
|
;
|
|
667
667
|
/**
|
|
668
|
-
* The variant of button to apply on top of the appearance (applicable only to `appearance="primary"`)
|
|
668
|
+
* The variant of button to apply on top of the appearance (applicable only to `appearance="primary"`) @default 'standard'
|
|
669
669
|
*/
|
|
670
670
|
set variant(_) { }
|
|
671
671
|
;
|
|
@@ -696,12 +696,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
696
696
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
697
697
|
let BqCard = class BqCard {
|
|
698
698
|
/**
|
|
699
|
-
* Type of card component
|
|
699
|
+
* Type of card component @default 'default'
|
|
700
700
|
*/
|
|
701
701
|
set type(_) { }
|
|
702
702
|
;
|
|
703
703
|
/**
|
|
704
|
-
* The corner radius of the card component
|
|
704
|
+
* The corner radius of the card component @default 'm'
|
|
705
705
|
*/
|
|
706
706
|
set border(_) { }
|
|
707
707
|
;
|
|
@@ -731,7 +731,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
731
731
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
732
732
|
let BqCheckbox = class BqCheckbox {
|
|
733
733
|
/**
|
|
734
|
-
* If true checkbox displays background on hover
|
|
734
|
+
* If true checkbox displays background on hover @default false
|
|
735
735
|
*/
|
|
736
736
|
set backgroundOnHover(_) { }
|
|
737
737
|
;
|
|
@@ -751,12 +751,12 @@ let BqCheckbox = class BqCheckbox {
|
|
|
751
751
|
set checked(_) { }
|
|
752
752
|
;
|
|
753
753
|
/**
|
|
754
|
-
* If true checkbox is disabled
|
|
754
|
+
* If true checkbox is disabled @default false
|
|
755
755
|
*/
|
|
756
756
|
set disabled(_) { }
|
|
757
757
|
;
|
|
758
758
|
/**
|
|
759
|
-
* A state that is neither checked nor unchecked
|
|
759
|
+
* A state that is neither checked nor unchecked @default false
|
|
760
760
|
*/
|
|
761
761
|
set indeterminate(_) { }
|
|
762
762
|
;
|
|
@@ -808,34 +808,38 @@ let BqDatePicker = class BqDatePicker {
|
|
|
808
808
|
set autofocus(_) { }
|
|
809
809
|
;
|
|
810
810
|
/**
|
|
811
|
-
* The clear button aria label
|
|
811
|
+
* The clear button aria label @default 'Clear value'
|
|
812
812
|
*/
|
|
813
813
|
set clearButtonLabel(_) { }
|
|
814
814
|
;
|
|
815
815
|
/**
|
|
816
|
-
* If `true`, the clear button won't be displayed
|
|
816
|
+
* If `true`, the clear button won't be displayed @default false
|
|
817
817
|
*/
|
|
818
818
|
set disableClear(_) { }
|
|
819
819
|
;
|
|
820
820
|
/**
|
|
821
821
|
* Indicates whether the Date picker input is disabled or not.
|
|
822
|
-
If `true`, the Date picker is disabled and cannot be interacted with.
|
|
822
|
+
If `true`, the Date picker is disabled and cannot be interacted with. @default false
|
|
823
823
|
*/
|
|
824
824
|
set disabled(_) { }
|
|
825
825
|
;
|
|
826
826
|
/**
|
|
827
|
-
* Represents the distance (gutter or margin) between the Date picker panel and the input element.
|
|
827
|
+
* Represents the distance (gutter or margin) between the Date picker panel and the input element. @default 8
|
|
828
828
|
*/
|
|
829
829
|
set distance(_) { }
|
|
830
830
|
;
|
|
831
831
|
/**
|
|
832
|
-
* The first day of the week, where Sunday is 0, Monday is 1, etc
|
|
832
|
+
* The first day of the week, where Sunday is 0, Monday is 1, etc @default 1
|
|
833
833
|
*/
|
|
834
834
|
set firstDayOfWeek(_) { }
|
|
835
835
|
;
|
|
836
836
|
/**
|
|
837
837
|
* The options to use when formatting the displayed value.
|
|
838
|
-
Details: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat#using_options
|
|
838
|
+
Details: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat#using_options @default {
|
|
839
|
+
day: 'numeric',
|
|
840
|
+
month: 'short',
|
|
841
|
+
year: 'numeric',
|
|
842
|
+
}
|
|
839
843
|
*/
|
|
840
844
|
set formatOptions(_) { }
|
|
841
845
|
;
|
|
@@ -856,7 +860,7 @@ Details: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Globa
|
|
|
856
860
|
;
|
|
857
861
|
/**
|
|
858
862
|
* The locale for formatting dates. If not set, will use the browser's locale.
|
|
859
|
-
Details: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#locales_argument
|
|
863
|
+
Details: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#locales_argument @default 'en-GB'
|
|
860
864
|
*/
|
|
861
865
|
set locale(_) { }
|
|
862
866
|
;
|
|
@@ -878,7 +882,7 @@ Details: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Globa
|
|
|
878
882
|
/**
|
|
879
883
|
* Specifies how the next/previous buttons should navigate the calendar.
|
|
880
884
|
- single: The buttons will navigate by a single month at a time.
|
|
881
|
-
- months: The buttons will navigate by the number of months displayed per view.
|
|
885
|
+
- months: The buttons will navigate by the number of months displayed per view. @default 'single'
|
|
882
886
|
*/
|
|
883
887
|
set monthsPerView(_) { }
|
|
884
888
|
;
|
|
@@ -888,12 +892,12 @@ Details: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Globa
|
|
|
888
892
|
set name(_) { }
|
|
889
893
|
;
|
|
890
894
|
/**
|
|
891
|
-
* If `true`, the Date picker panel will be visible.
|
|
895
|
+
* If `true`, the Date picker panel will be visible. @default false
|
|
892
896
|
*/
|
|
893
897
|
set open(_) { }
|
|
894
898
|
;
|
|
895
899
|
/**
|
|
896
|
-
* When set, it will override the height of the Date picker panel.
|
|
900
|
+
* When set, it will override the height of the Date picker panel. @default 'auto'
|
|
897
901
|
*/
|
|
898
902
|
set panelHeight(_) { }
|
|
899
903
|
;
|
|
@@ -903,7 +907,7 @@ Details: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Globa
|
|
|
903
907
|
set placeholder(_) { }
|
|
904
908
|
;
|
|
905
909
|
/**
|
|
906
|
-
* Position of the Date picker panel
|
|
910
|
+
* Position of the Date picker panel @default 'bottom-end'
|
|
907
911
|
*/
|
|
908
912
|
set placement(_) { }
|
|
909
913
|
;
|
|
@@ -913,17 +917,17 @@ Details: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Globa
|
|
|
913
917
|
set required(_) { }
|
|
914
918
|
;
|
|
915
919
|
/**
|
|
916
|
-
* Represents the skidding between the Date picker panel and the input element.
|
|
920
|
+
* Represents the skidding between the Date picker panel and the input element. @default 0
|
|
917
921
|
*/
|
|
918
922
|
set skidding(_) { }
|
|
919
923
|
;
|
|
920
924
|
/**
|
|
921
|
-
* Whether to show days outside the month
|
|
925
|
+
* Whether to show days outside the month @default false
|
|
922
926
|
*/
|
|
923
927
|
set showOutsideDays(_) { }
|
|
924
928
|
;
|
|
925
929
|
/**
|
|
926
|
-
* Defines the strategy to position the Date picker panel
|
|
930
|
+
* Defines the strategy to position the Date picker panel @default 'fixed'
|
|
927
931
|
*/
|
|
928
932
|
set strategy(_) { }
|
|
929
933
|
;
|
|
@@ -933,7 +937,7 @@ Details: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Globa
|
|
|
933
937
|
set tentative(_) { }
|
|
934
938
|
;
|
|
935
939
|
/**
|
|
936
|
-
* It defines how the calendar will behave, allowing single date selection, range selection, or multiple date selection
|
|
940
|
+
* It defines how the calendar will behave, allowing single date selection, range selection, or multiple date selection @default 'single'
|
|
937
941
|
*/
|
|
938
942
|
set type(_) { }
|
|
939
943
|
;
|
|
@@ -942,7 +946,7 @@ Details: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Globa
|
|
|
942
946
|
- `'none'`: No validation status is set.
|
|
943
947
|
- `'error'`: The input has a validation error.
|
|
944
948
|
- `'warning'`: The input has a validation warning.
|
|
945
|
-
- `'success'`: The input has passed validation
|
|
949
|
+
- `'success'`: The input has passed validation.,@default 'none'
|
|
946
950
|
*/
|
|
947
951
|
set validationStatus(_) { }
|
|
948
952
|
;
|
|
@@ -980,42 +984,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
980
984
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
981
985
|
let BqDialog = class BqDialog {
|
|
982
986
|
/**
|
|
983
|
-
* Border radius of the dialog component
|
|
987
|
+
* Border radius of the dialog component @default 'm'
|
|
984
988
|
*/
|
|
985
989
|
set border(_) { }
|
|
986
990
|
;
|
|
987
991
|
/**
|
|
988
|
-
* If true, the backdrop overlay won't be shown when the dialog opens
|
|
992
|
+
* If true, the backdrop overlay won't be shown when the dialog opens @default false
|
|
989
993
|
*/
|
|
990
994
|
set disableBackdrop(_) { }
|
|
991
995
|
;
|
|
992
996
|
/**
|
|
993
|
-
* If true, the dialog will not close when the [Esc] key is press
|
|
997
|
+
* If true, the dialog will not close when the [Esc] key is press @default false
|
|
994
998
|
*/
|
|
995
999
|
set disableCloseEscKeydown(_) { }
|
|
996
1000
|
;
|
|
997
1001
|
/**
|
|
998
|
-
* If true, the dialog will not close when clicking on the backdrop overlay
|
|
1002
|
+
* If true, the dialog will not close when clicking on the backdrop overlay @default false
|
|
999
1003
|
*/
|
|
1000
1004
|
set disableCloseClickOutside(_) { }
|
|
1001
1005
|
;
|
|
1002
1006
|
/**
|
|
1003
|
-
* The appearance of footer
|
|
1007
|
+
* The appearance of footer @default 'standard'
|
|
1004
1008
|
*/
|
|
1005
1009
|
set footerAppearance(_) { }
|
|
1006
1010
|
;
|
|
1007
1011
|
/**
|
|
1008
|
-
* If true, it hides the close button
|
|
1012
|
+
* If true, it hides the close button @default false
|
|
1009
1013
|
*/
|
|
1010
1014
|
set hideCloseButton(_) { }
|
|
1011
1015
|
;
|
|
1012
1016
|
/**
|
|
1013
|
-
* If true, the dialog will be shown as open
|
|
1017
|
+
* If true, the dialog will be shown as open @default false
|
|
1014
1018
|
*/
|
|
1015
1019
|
set open(_) { }
|
|
1016
1020
|
;
|
|
1017
1021
|
/**
|
|
1018
|
-
* The size of the dialog
|
|
1022
|
+
* The size of the dialog @default 'medium'
|
|
1019
1023
|
*/
|
|
1020
1024
|
set size(_) { }
|
|
1021
1025
|
;
|
|
@@ -1047,47 +1051,47 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1047
1051
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1048
1052
|
let BqDivider = class BqDivider {
|
|
1049
1053
|
/**
|
|
1050
|
-
* If true, the divider has a dashed pattern
|
|
1054
|
+
* If true, the divider has a dashed pattern @default false
|
|
1051
1055
|
*/
|
|
1052
1056
|
set dashed(_) { }
|
|
1053
1057
|
;
|
|
1054
1058
|
/**
|
|
1055
|
-
* The default orientation of the divider
|
|
1059
|
+
* The default orientation of the divider @default 'horizontal'
|
|
1056
1060
|
*/
|
|
1057
1061
|
set orientation(_) { }
|
|
1058
1062
|
;
|
|
1059
1063
|
/**
|
|
1060
|
-
* Set the stroke color of the divider. The value should be a valid value of the palette color
|
|
1064
|
+
* Set the stroke color of the divider. The value should be a valid value of the palette color @default 'stroke--primary'
|
|
1061
1065
|
*/
|
|
1062
1066
|
set strokeColor(_) { }
|
|
1063
1067
|
;
|
|
1064
1068
|
/**
|
|
1065
|
-
* Set the alignment of the title on the main axis of the divider (horizontal / vertical)
|
|
1069
|
+
* Set the alignment of the title on the main axis of the divider (horizontal / vertical) @default 'middle'
|
|
1066
1070
|
*/
|
|
1067
1071
|
set titleAlignment(_) { }
|
|
1068
1072
|
;
|
|
1069
1073
|
/**
|
|
1070
|
-
* Set the width of each dash of the divider's stroke. This is applicable when the stroke is dashed
|
|
1074
|
+
* Set the width of each dash of the divider's stroke. This is applicable when the stroke is dashed @default 12
|
|
1071
1075
|
*/
|
|
1072
1076
|
set strokeDashWidth(_) { }
|
|
1073
1077
|
;
|
|
1074
1078
|
/**
|
|
1075
|
-
* Set the gap of the divider's stroke. This is applicable when the stroke is dashed
|
|
1079
|
+
* Set the gap of the divider's stroke. This is applicable when the stroke is dashed @default 7
|
|
1076
1080
|
*/
|
|
1077
1081
|
set strokeDashGap(_) { }
|
|
1078
1082
|
;
|
|
1079
1083
|
/**
|
|
1080
|
-
* Set the thickness of the divider's stroke. Value expressed in px
|
|
1084
|
+
* Set the thickness of the divider's stroke. Value expressed in px @default 1
|
|
1081
1085
|
*/
|
|
1082
1086
|
set strokeThickness(_) { }
|
|
1083
1087
|
;
|
|
1084
1088
|
/**
|
|
1085
|
-
* Set the min width of the divider's stroke when text is not centered. Value expressed in px
|
|
1089
|
+
* Set the min width of the divider's stroke when text is not centered. Value expressed in px @default 0
|
|
1086
1090
|
*/
|
|
1087
1091
|
set strokeBasis(_) { }
|
|
1088
1092
|
;
|
|
1089
1093
|
/**
|
|
1090
|
-
* Set the line of the divider's stroke. This is applicable when the stroke is dashed
|
|
1094
|
+
* Set the line of the divider's stroke. This is applicable when the stroke is dashed @default 'butt'
|
|
1091
1095
|
*/
|
|
1092
1096
|
set strokeLinecap(_) { }
|
|
1093
1097
|
;
|
|
@@ -1117,17 +1121,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1117
1121
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1118
1122
|
let BqDrawer = class BqDrawer {
|
|
1119
1123
|
/**
|
|
1120
|
-
* If true, the backdrop overlay will be shown when the drawer opens
|
|
1124
|
+
* If true, the backdrop overlay will be shown when the drawer opens @default false
|
|
1121
1125
|
*/
|
|
1122
1126
|
set enableBackdrop(_) { }
|
|
1123
1127
|
;
|
|
1124
1128
|
/**
|
|
1125
|
-
* If true, the drawer will not close when clicking outside the panel
|
|
1129
|
+
* If true, the drawer will not close when clicking outside the panel @default false
|
|
1126
1130
|
*/
|
|
1127
1131
|
set closeOnClickOutside(_) { }
|
|
1128
1132
|
;
|
|
1129
1133
|
/**
|
|
1130
|
-
* If true, the dialog will not close when the [Esc] key is pressed
|
|
1134
|
+
* If true, the dialog will not close when the [Esc] key is pressed @default false
|
|
1131
1135
|
*/
|
|
1132
1136
|
set closeOnEsc(_) { }
|
|
1133
1137
|
;
|
|
@@ -1137,12 +1141,12 @@ let BqDrawer = class BqDrawer {
|
|
|
1137
1141
|
set open(_) { }
|
|
1138
1142
|
;
|
|
1139
1143
|
/**
|
|
1140
|
-
* @deprecated Defines the position of the drawer
|
|
1144
|
+
* @deprecated Defines the position of the drawer,@default 'right'
|
|
1141
1145
|
*/
|
|
1142
1146
|
set placement(_) { }
|
|
1143
1147
|
;
|
|
1144
1148
|
/**
|
|
1145
|
-
* Defines the position of the drawer
|
|
1149
|
+
* Defines the position of the drawer @default 'end'
|
|
1146
1150
|
*/
|
|
1147
1151
|
set position(_) { }
|
|
1148
1152
|
;
|
|
@@ -1174,27 +1178,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1174
1178
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1175
1179
|
let BqDropdown = class BqDropdown {
|
|
1176
1180
|
/**
|
|
1177
|
-
* If true, the dropdown panel will
|
|
1181
|
+
* If true, the dropdown panel will not lock the page body scroll when open. @default false
|
|
1182
|
+
*/
|
|
1183
|
+
set disableScrollLock(_) { }
|
|
1184
|
+
;
|
|
1185
|
+
/**
|
|
1186
|
+
* If true, the dropdown panel will be visible and won't be shown. @default false
|
|
1178
1187
|
*/
|
|
1179
1188
|
set disabled(_) { }
|
|
1180
1189
|
;
|
|
1181
1190
|
/**
|
|
1182
|
-
* Represents the distance (gutter or margin) between the panel and the trigger element.
|
|
1191
|
+
* Represents the distance (gutter or margin) between the panel and the trigger element. @default 4
|
|
1183
1192
|
*/
|
|
1184
1193
|
set distance(_) { }
|
|
1185
1194
|
;
|
|
1186
1195
|
/**
|
|
1187
|
-
* If true, the panel will remain open after a selection is made.
|
|
1196
|
+
* If true, the panel will remain open after a selection is made. @default false
|
|
1188
1197
|
*/
|
|
1189
1198
|
set keepOpenOnSelect(_) { }
|
|
1190
1199
|
;
|
|
1191
1200
|
/**
|
|
1192
|
-
* Position of the panel
|
|
1201
|
+
* Position of the panel @default 'bottom-start'
|
|
1193
1202
|
*/
|
|
1194
1203
|
set placement(_) { }
|
|
1195
1204
|
;
|
|
1196
1205
|
/**
|
|
1197
|
-
* If true, the panel will be visible.
|
|
1206
|
+
* If true, the panel will be visible. @default false
|
|
1198
1207
|
*/
|
|
1199
1208
|
set open(_) { }
|
|
1200
1209
|
;
|
|
@@ -1204,17 +1213,17 @@ let BqDropdown = class BqDropdown {
|
|
|
1204
1213
|
set panelHeight(_) { }
|
|
1205
1214
|
;
|
|
1206
1215
|
/**
|
|
1207
|
-
* Whether the panel should have the same width as the trigger element
|
|
1216
|
+
* Whether the panel should have the same width as the trigger element @default false
|
|
1208
1217
|
*/
|
|
1209
1218
|
set sameWidth(_) { }
|
|
1210
1219
|
;
|
|
1211
1220
|
/**
|
|
1212
|
-
* Represents the skidding between the panel and the trigger element.
|
|
1221
|
+
* Represents the skidding between the panel and the trigger element. @default 0
|
|
1213
1222
|
*/
|
|
1214
1223
|
set skidding(_) { }
|
|
1215
1224
|
;
|
|
1216
1225
|
/**
|
|
1217
|
-
* Defines the strategy to position the panel
|
|
1226
|
+
* Defines the strategy to position the panel @default 'fixed'
|
|
1218
1227
|
*/
|
|
1219
1228
|
set strategy(_) { }
|
|
1220
1229
|
;
|
|
@@ -1225,11 +1234,11 @@ let BqDropdown = class BqDropdown {
|
|
|
1225
1234
|
proxyOutputs(this, this.el, ['bqOpen']);
|
|
1226
1235
|
}
|
|
1227
1236
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1228
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqDropdown, selector: "bq-dropdown", inputs: { disabled: "disabled", distance: "distance", keepOpenOnSelect: "keepOpenOnSelect", open: "open", panelHeight: "panelHeight", placement: "placement", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1237
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqDropdown, selector: "bq-dropdown", inputs: { disableScrollLock: "disableScrollLock", disabled: "disabled", distance: "distance", keepOpenOnSelect: "keepOpenOnSelect", open: "open", panelHeight: "panelHeight", placement: "placement", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1229
1238
|
};
|
|
1230
1239
|
BqDropdown = __decorate([
|
|
1231
1240
|
ProxyCmp({
|
|
1232
|
-
inputs: ['disabled', 'distance', 'keepOpenOnSelect', 'open', 'panelHeight', 'placement', 'sameWidth', 'skidding', 'strategy']
|
|
1241
|
+
inputs: ['disableScrollLock', 'disabled', 'distance', 'keepOpenOnSelect', 'open', 'panelHeight', 'placement', 'sameWidth', 'skidding', 'strategy']
|
|
1233
1242
|
}),
|
|
1234
1243
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1235
1244
|
], BqDropdown);
|
|
@@ -1240,12 +1249,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1240
1249
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1241
1250
|
template: '<ng-content></ng-content>',
|
|
1242
1251
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1243
|
-
inputs: ['disabled', 'distance', 'keepOpenOnSelect', 'open', 'panelHeight', 'placement', 'sameWidth', 'skidding', 'strategy'],
|
|
1252
|
+
inputs: ['disableScrollLock', 'disabled', 'distance', 'keepOpenOnSelect', 'open', 'panelHeight', 'placement', 'sameWidth', 'skidding', 'strategy'],
|
|
1244
1253
|
}]
|
|
1245
1254
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1246
1255
|
let BqEmptyState = class BqEmptyState {
|
|
1247
1256
|
/**
|
|
1248
|
-
* The size of the empty state component
|
|
1257
|
+
* The size of the empty state component @default 'medium'
|
|
1249
1258
|
*/
|
|
1250
1259
|
set size(_) { }
|
|
1251
1260
|
;
|
|
@@ -1290,7 +1299,7 @@ let BqIcon = class BqIcon {
|
|
|
1290
1299
|
set name(_) { }
|
|
1291
1300
|
;
|
|
1292
1301
|
/**
|
|
1293
|
-
* Set the size of the SVG
|
|
1302
|
+
* Set the size of the SVG @default 24
|
|
1294
1303
|
*/
|
|
1295
1304
|
set size(_) { }
|
|
1296
1305
|
;
|
|
@@ -1300,7 +1309,7 @@ let BqIcon = class BqIcon {
|
|
|
1300
1309
|
set src(_) { }
|
|
1301
1310
|
;
|
|
1302
1311
|
/**
|
|
1303
|
-
* @deprecated It set the icon weight/style
|
|
1312
|
+
* @deprecated It set the icon weight/style,@default undefined
|
|
1304
1313
|
*/
|
|
1305
1314
|
set weight(_) { }
|
|
1306
1315
|
;
|
|
@@ -1333,19 +1342,19 @@ let BqInput = class BqInput {
|
|
|
1333
1342
|
/**
|
|
1334
1343
|
* Controls whether or not the input field should be capitalized and how.
|
|
1335
1344
|
Possible values are 'off', 'none', 'on', 'sentences', 'words', and 'characters'.
|
|
1336
|
-
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize
|
|
1345
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize @default 'off'
|
|
1337
1346
|
*/
|
|
1338
1347
|
set autocapitalize(_) { }
|
|
1339
1348
|
;
|
|
1340
1349
|
/**
|
|
1341
1350
|
* Specifies whether or not the input field should have autocomplete enabled.
|
|
1342
|
-
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values
|
|
1351
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values @default 'off'
|
|
1343
1352
|
*/
|
|
1344
1353
|
set autocomplete(_) { }
|
|
1345
1354
|
;
|
|
1346
1355
|
/**
|
|
1347
1356
|
* Controls whether or not the input field should have autocorrect enabled.
|
|
1348
|
-
Possible values are 'on' and 'off'.
|
|
1357
|
+
Possible values are 'on' and 'off'. @default 'off'
|
|
1349
1358
|
*/
|
|
1350
1359
|
set autocorrect(_) { }
|
|
1351
1360
|
;
|
|
@@ -1355,24 +1364,24 @@ Possible values are 'on' and 'off'.
|
|
|
1355
1364
|
set autofocus(_) { }
|
|
1356
1365
|
;
|
|
1357
1366
|
/**
|
|
1358
|
-
* The clear button aria label
|
|
1367
|
+
* The clear button aria label @default 'Clear value'
|
|
1359
1368
|
*/
|
|
1360
1369
|
set clearButtonLabel(_) { }
|
|
1361
1370
|
;
|
|
1362
1371
|
/**
|
|
1363
1372
|
* The amount of time, in milliseconds, to wait before emitting the `bqInput` event after the input value changes.
|
|
1364
|
-
A value of 0 means no debouncing will occur.
|
|
1373
|
+
A value of 0 means no debouncing will occur. @default 0
|
|
1365
1374
|
*/
|
|
1366
1375
|
set debounceTime(_) { }
|
|
1367
1376
|
;
|
|
1368
1377
|
/**
|
|
1369
1378
|
* Indicates whether the input is disabled or not.
|
|
1370
|
-
If `true`, the input is disabled and cannot be interacted with.
|
|
1379
|
+
If `true`, the input is disabled and cannot be interacted with. @default false
|
|
1371
1380
|
*/
|
|
1372
1381
|
set disabled(_) { }
|
|
1373
1382
|
;
|
|
1374
1383
|
/**
|
|
1375
|
-
* If true, the clear button won't be displayed
|
|
1384
|
+
* If true, the clear button won't be displayed @default false
|
|
1376
1385
|
*/
|
|
1377
1386
|
set disableClear(_) { }
|
|
1378
1387
|
;
|
|
@@ -1451,7 +1460,7 @@ See: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#step
|
|
|
1451
1460
|
/**
|
|
1452
1461
|
* The type attribute specifies the type of input field to display.
|
|
1453
1462
|
Possible values are 'text', 'password', 'email', 'number', 'tel', 'search', 'url', and more.
|
|
1454
|
-
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#input_types
|
|
1463
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#input_types @default 'text'
|
|
1455
1464
|
*/
|
|
1456
1465
|
set type(_) { }
|
|
1457
1466
|
;
|
|
@@ -1460,7 +1469,7 @@ See: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#input_types
|
|
|
1460
1469
|
- `'none'`: No validation status is set.
|
|
1461
1470
|
- `'error'`: The input has a validation error.
|
|
1462
1471
|
- `'warning'`: The input has a validation warning.
|
|
1463
|
-
- `'success'`: The input has passed validation
|
|
1472
|
+
- `'success'`: The input has passed validation.,@default 'none'
|
|
1464
1473
|
*/
|
|
1465
1474
|
set validationStatus(_) { }
|
|
1466
1475
|
;
|
|
@@ -1501,7 +1510,7 @@ let BqNotification = class BqNotification {
|
|
|
1501
1510
|
set autoDismiss(_) { }
|
|
1502
1511
|
;
|
|
1503
1512
|
/**
|
|
1504
|
-
* The corder radius of the notification component
|
|
1513
|
+
* The corder radius of the notification component @default 's'
|
|
1505
1514
|
*/
|
|
1506
1515
|
set border(_) { }
|
|
1507
1516
|
;
|
|
@@ -1521,12 +1530,12 @@ let BqNotification = class BqNotification {
|
|
|
1521
1530
|
set open(_) { }
|
|
1522
1531
|
;
|
|
1523
1532
|
/**
|
|
1524
|
-
* The length of time, in milliseconds, after which the notification will close itself. Only valid if `autoDismiss="true"`
|
|
1533
|
+
* The length of time, in milliseconds, after which the notification will close itself. Only valid if `autoDismiss="true"` @default 3000
|
|
1525
1534
|
*/
|
|
1526
1535
|
set time(_) { }
|
|
1527
1536
|
;
|
|
1528
1537
|
/**
|
|
1529
|
-
* Type of Notification
|
|
1538
|
+
* Type of Notification @default 'info'
|
|
1530
1539
|
*/
|
|
1531
1540
|
set type(_) { }
|
|
1532
1541
|
;
|
|
@@ -1558,12 +1567,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1558
1567
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1559
1568
|
let BqOption = class BqOption {
|
|
1560
1569
|
/**
|
|
1561
|
-
* If true, the option is hidden.
|
|
1570
|
+
* If true, the option is hidden. @default false
|
|
1562
1571
|
*/
|
|
1563
1572
|
set hidden(_) { }
|
|
1564
1573
|
;
|
|
1565
1574
|
/**
|
|
1566
|
-
* If true, the option is disabled.
|
|
1575
|
+
* If true, the option is disabled. @default false
|
|
1567
1576
|
*/
|
|
1568
1577
|
set disabled(_) { }
|
|
1569
1578
|
;
|
|
@@ -1573,7 +1582,7 @@ let BqOption = class BqOption {
|
|
|
1573
1582
|
set value(_) { }
|
|
1574
1583
|
;
|
|
1575
1584
|
/**
|
|
1576
|
-
* If true, the option is selected and active.
|
|
1585
|
+
* If true, the option is selected and active. @default false
|
|
1577
1586
|
*/
|
|
1578
1587
|
set selected(_) { }
|
|
1579
1588
|
;
|
|
@@ -1627,7 +1636,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1627
1636
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1628
1637
|
let BqOptionList = class BqOptionList {
|
|
1629
1638
|
/**
|
|
1630
|
-
* Aria label for the list.
|
|
1639
|
+
* Aria label for the list. @default 'Options'
|
|
1631
1640
|
*/
|
|
1632
1641
|
set ariaLabel(_) { }
|
|
1633
1642
|
;
|
|
@@ -1681,32 +1690,37 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1681
1690
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1682
1691
|
let BqPanel = class BqPanel {
|
|
1683
1692
|
/**
|
|
1684
|
-
*
|
|
1693
|
+
* If true, the panel will not lock the page body scroll when open. @default false
|
|
1694
|
+
*/
|
|
1695
|
+
set disableScrollLock(_) { }
|
|
1696
|
+
;
|
|
1697
|
+
/**
|
|
1698
|
+
* Represents the distance (gutter or margin) between the panel and the trigger element. @default 4
|
|
1685
1699
|
*/
|
|
1686
1700
|
set distance(_) { }
|
|
1687
1701
|
;
|
|
1688
1702
|
/**
|
|
1689
|
-
* Position of the panel
|
|
1703
|
+
* Position of the panel @default 'bottom-start'
|
|
1690
1704
|
*/
|
|
1691
1705
|
set placement(_) { }
|
|
1692
1706
|
;
|
|
1693
1707
|
/**
|
|
1694
|
-
* If true, the panel will be visible.
|
|
1708
|
+
* If true, the panel will be visible. @default false
|
|
1695
1709
|
*/
|
|
1696
1710
|
set open(_) { }
|
|
1697
1711
|
;
|
|
1698
1712
|
/**
|
|
1699
|
-
* Whether the panel should have the same width as the trigger element
|
|
1713
|
+
* Whether the panel should have the same width as the trigger element @default false
|
|
1700
1714
|
*/
|
|
1701
1715
|
set sameWidth(_) { }
|
|
1702
1716
|
;
|
|
1703
1717
|
/**
|
|
1704
|
-
* Represents the skidding between the panel and the trigger element.
|
|
1718
|
+
* Represents the skidding between the panel and the trigger element. @default 0
|
|
1705
1719
|
*/
|
|
1706
1720
|
set skidding(_) { }
|
|
1707
1721
|
;
|
|
1708
1722
|
/**
|
|
1709
|
-
* Defines the strategy to position the panel
|
|
1723
|
+
* Defines the strategy to position the panel @default 'fixed'
|
|
1710
1724
|
*/
|
|
1711
1725
|
set strategy(_) { }
|
|
1712
1726
|
;
|
|
@@ -1716,11 +1730,11 @@ let BqPanel = class BqPanel {
|
|
|
1716
1730
|
this.el = r.nativeElement;
|
|
1717
1731
|
}
|
|
1718
1732
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1719
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqPanel, selector: "bq-panel", inputs: { distance: "distance", open: "open", placement: "placement", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1733
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqPanel, selector: "bq-panel", inputs: { disableScrollLock: "disableScrollLock", distance: "distance", open: "open", placement: "placement", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1720
1734
|
};
|
|
1721
1735
|
BqPanel = __decorate([
|
|
1722
1736
|
ProxyCmp({
|
|
1723
|
-
inputs: ['distance', 'open', 'placement', 'sameWidth', 'skidding', 'strategy']
|
|
1737
|
+
inputs: ['disableScrollLock', 'distance', 'open', 'placement', 'sameWidth', 'skidding', 'strategy']
|
|
1724
1738
|
}),
|
|
1725
1739
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
1726
1740
|
], BqPanel);
|
|
@@ -1731,42 +1745,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1731
1745
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1732
1746
|
template: '<ng-content></ng-content>',
|
|
1733
1747
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1734
|
-
inputs: ['distance', 'open', 'placement', 'sameWidth', 'skidding', 'strategy'],
|
|
1748
|
+
inputs: ['disableScrollLock', 'distance', 'open', 'placement', 'sameWidth', 'skidding', 'strategy'],
|
|
1735
1749
|
}]
|
|
1736
1750
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1737
1751
|
let BqProgress = class BqProgress {
|
|
1738
1752
|
/**
|
|
1739
|
-
* It will set the border style of the progress bar
|
|
1753
|
+
* It will set the border style of the progress bar @default 'rounded'
|
|
1740
1754
|
*/
|
|
1741
1755
|
set borderShape(_) { }
|
|
1742
1756
|
;
|
|
1743
1757
|
/**
|
|
1744
|
-
* If `true`, a tooltip will be shown displaying the progress value
|
|
1758
|
+
* If `true`, a tooltip will be shown displaying the progress value @default false
|
|
1745
1759
|
*/
|
|
1746
1760
|
set enableTooltip(_) { }
|
|
1747
1761
|
;
|
|
1748
1762
|
/**
|
|
1749
|
-
* If `true` the indeterminate state of progress bar is enabled
|
|
1763
|
+
* If `true` the indeterminate state of progress bar is enabled @default false
|
|
1750
1764
|
*/
|
|
1751
1765
|
set indeterminate(_) { }
|
|
1752
1766
|
;
|
|
1753
1767
|
/**
|
|
1754
|
-
* If `true, a label text showing the value (in percentage) will be shown
|
|
1768
|
+
* If `true, a label text showing the value (in percentage) will be shown @default false
|
|
1755
1769
|
*/
|
|
1756
1770
|
set label(_) { }
|
|
1757
1771
|
;
|
|
1758
1772
|
/**
|
|
1759
|
-
* Progress bar thickness
|
|
1773
|
+
* Progress bar thickness @default 'medium'
|
|
1760
1774
|
*/
|
|
1761
1775
|
set thickness(_) { }
|
|
1762
1776
|
;
|
|
1763
1777
|
/**
|
|
1764
|
-
* Progress type
|
|
1778
|
+
* Progress type @default 'default'
|
|
1765
1779
|
*/
|
|
1766
1780
|
set type(_) { }
|
|
1767
1781
|
;
|
|
1768
1782
|
/**
|
|
1769
|
-
* A number representing the current value of the progress bar
|
|
1783
|
+
* A number representing the current value of the progress bar @default 0
|
|
1770
1784
|
*/
|
|
1771
1785
|
set value(_) { }
|
|
1772
1786
|
;
|
|
@@ -1801,12 +1815,12 @@ let BqRadio = class BqRadio {
|
|
|
1801
1815
|
set checked(_) { }
|
|
1802
1816
|
;
|
|
1803
1817
|
/**
|
|
1804
|
-
* If true radio input is disabled
|
|
1818
|
+
* If true radio input is disabled @default false
|
|
1805
1819
|
*/
|
|
1806
1820
|
set disabled(_) { }
|
|
1807
1821
|
;
|
|
1808
1822
|
/**
|
|
1809
|
-
* If true radio displays background on hover
|
|
1823
|
+
* If true radio displays background on hover @default false
|
|
1810
1824
|
*/
|
|
1811
1825
|
set backgroundOnHover(_) { }
|
|
1812
1826
|
;
|
|
@@ -1858,22 +1872,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
1858
1872
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1859
1873
|
let BqRadioGroup = class BqRadioGroup {
|
|
1860
1874
|
/**
|
|
1861
|
-
* If true, all radio inputs in the group will display a background on hover
|
|
1875
|
+
* If true, all radio inputs in the group will display a background on hover @default false
|
|
1862
1876
|
*/
|
|
1863
1877
|
set backgroundOnHover(_) { }
|
|
1864
1878
|
;
|
|
1865
1879
|
/**
|
|
1866
|
-
* A number representing the delay time (in milliseconds) that `bqChange` event handler gets triggered once the value change
|
|
1880
|
+
* A number representing the delay time (in milliseconds) that `bqChange` event handler gets triggered once the value change @default 0
|
|
1867
1881
|
*/
|
|
1868
1882
|
set debounceTime(_) { }
|
|
1869
1883
|
;
|
|
1870
1884
|
/**
|
|
1871
|
-
* If true radio inputs are disabled
|
|
1885
|
+
* If true radio inputs are disabled @default false
|
|
1872
1886
|
*/
|
|
1873
1887
|
set disabled(_) { }
|
|
1874
1888
|
;
|
|
1875
1889
|
/**
|
|
1876
|
-
* If true displays fieldset
|
|
1890
|
+
* If true displays fieldset @default false
|
|
1877
1891
|
*/
|
|
1878
1892
|
set fieldset(_) { }
|
|
1879
1893
|
;
|
|
@@ -1883,12 +1897,12 @@ let BqRadioGroup = class BqRadioGroup {
|
|
|
1883
1897
|
set name(_) { }
|
|
1884
1898
|
;
|
|
1885
1899
|
/**
|
|
1886
|
-
* The display orientation of the radio inputs
|
|
1900
|
+
* The display orientation of the radio inputs @default 'vertical'
|
|
1887
1901
|
*/
|
|
1888
1902
|
set orientation(_) { }
|
|
1889
1903
|
;
|
|
1890
1904
|
/**
|
|
1891
|
-
* If true, the radio group is required
|
|
1905
|
+
* If true, the radio group is required @default false
|
|
1892
1906
|
*/
|
|
1893
1907
|
set required(_) { }
|
|
1894
1908
|
;
|
|
@@ -1934,29 +1948,34 @@ let BqSelect = class BqSelect {
|
|
|
1934
1948
|
set autofocus(_) { }
|
|
1935
1949
|
;
|
|
1936
1950
|
/**
|
|
1937
|
-
* The clear button aria label
|
|
1951
|
+
* The clear button aria label @default 'Clear value'
|
|
1938
1952
|
*/
|
|
1939
1953
|
set clearButtonLabel(_) { }
|
|
1940
1954
|
;
|
|
1941
1955
|
/**
|
|
1942
1956
|
* The amount of time, in milliseconds, to wait before emitting the `bqInput` event after the input value changes.
|
|
1943
|
-
A value of 0 means no debouncing will occur.
|
|
1957
|
+
A value of 0 means no debouncing will occur. @default 0
|
|
1944
1958
|
*/
|
|
1945
1959
|
set debounceTime(_) { }
|
|
1946
1960
|
;
|
|
1947
1961
|
/**
|
|
1962
|
+
* If true, the Select panel will not lock the page body scroll when open. @default false
|
|
1963
|
+
*/
|
|
1964
|
+
set disableScrollLock(_) { }
|
|
1965
|
+
;
|
|
1966
|
+
/**
|
|
1948
1967
|
* Indicates whether the Select input is disabled or not.
|
|
1949
|
-
If `true`, the Select is disabled and cannot be interacted with.
|
|
1968
|
+
If `true`, the Select is disabled and cannot be interacted with. @default false
|
|
1950
1969
|
*/
|
|
1951
1970
|
set disabled(_) { }
|
|
1952
1971
|
;
|
|
1953
1972
|
/**
|
|
1954
|
-
* If true, the clear button won't be displayed
|
|
1973
|
+
* If true, the clear button won't be displayed @default false
|
|
1955
1974
|
*/
|
|
1956
1975
|
set disableClear(_) { }
|
|
1957
1976
|
;
|
|
1958
1977
|
/**
|
|
1959
|
-
* Represents the distance (gutter or margin) between the Select panel and the input element.
|
|
1978
|
+
* Represents the distance (gutter or margin) between the Select panel and the input element. @default 8
|
|
1960
1979
|
*/
|
|
1961
1980
|
set distance(_) { }
|
|
1962
1981
|
;
|
|
@@ -1966,7 +1985,7 @@ If `true`, the Select is disabled and cannot be interacted with.
|
|
|
1966
1985
|
set form(_) { }
|
|
1967
1986
|
;
|
|
1968
1987
|
/**
|
|
1969
|
-
* If true, the Select panel will remain open after a selection is made.
|
|
1988
|
+
* If true, the Select panel will remain open after a selection is made. @default false
|
|
1970
1989
|
*/
|
|
1971
1990
|
set keepOpenOnSelect(_) { }
|
|
1972
1991
|
;
|
|
@@ -1976,17 +1995,17 @@ If `true`, the Select is disabled and cannot be interacted with.
|
|
|
1976
1995
|
set name(_) { }
|
|
1977
1996
|
;
|
|
1978
1997
|
/**
|
|
1979
|
-
* The maximum number of tags to display when multiple selection is enabled
|
|
1998
|
+
* The maximum number of tags to display when multiple selection is enabled @default 2
|
|
1980
1999
|
*/
|
|
1981
2000
|
set maxTagsVisible(_) { }
|
|
1982
2001
|
;
|
|
1983
2002
|
/**
|
|
1984
|
-
* If true, the Select input will allow multiple selections.
|
|
2003
|
+
* If true, the Select input will allow multiple selections. @default false
|
|
1985
2004
|
*/
|
|
1986
2005
|
set multiple(_) { }
|
|
1987
2006
|
;
|
|
1988
2007
|
/**
|
|
1989
|
-
* If true, the Select panel will be visible.
|
|
2008
|
+
* If true, the Select panel will be visible. @default false
|
|
1990
2009
|
*/
|
|
1991
2010
|
set open(_) { }
|
|
1992
2011
|
;
|
|
@@ -2001,7 +2020,7 @@ If `true`, the Select is disabled and cannot be interacted with.
|
|
|
2001
2020
|
set placeholder(_) { }
|
|
2002
2021
|
;
|
|
2003
2022
|
/**
|
|
2004
|
-
* Position of the Select panel
|
|
2023
|
+
* Position of the Select panel @default 'bottom'
|
|
2005
2024
|
*/
|
|
2006
2025
|
set placement(_) { }
|
|
2007
2026
|
;
|
|
@@ -2016,17 +2035,17 @@ If `true`, the Select is disabled and cannot be interacted with.
|
|
|
2016
2035
|
set required(_) { }
|
|
2017
2036
|
;
|
|
2018
2037
|
/**
|
|
2019
|
-
* Whether the panel should have the Select same width as the input element
|
|
2038
|
+
* Whether the panel should have the Select same width as the input element @default true
|
|
2020
2039
|
*/
|
|
2021
2040
|
set sameWidth(_) { }
|
|
2022
2041
|
;
|
|
2023
2042
|
/**
|
|
2024
|
-
* Represents the skidding between the Select panel and the input element.
|
|
2043
|
+
* Represents the skidding between the Select panel and the input element. @default 0
|
|
2025
2044
|
*/
|
|
2026
2045
|
set skidding(_) { }
|
|
2027
2046
|
;
|
|
2028
2047
|
/**
|
|
2029
|
-
* Defines the strategy to position the Select panel
|
|
2048
|
+
* Defines the strategy to position the Select panel @default 'fixed'
|
|
2030
2049
|
*/
|
|
2031
2050
|
set strategy(_) { }
|
|
2032
2051
|
;
|
|
@@ -2035,7 +2054,7 @@ If `true`, the Select is disabled and cannot be interacted with.
|
|
|
2035
2054
|
- `'none'`: No validation status is set.
|
|
2036
2055
|
- `'error'`: The input has a validation error.
|
|
2037
2056
|
- `'warning'`: The input has a validation warning.
|
|
2038
|
-
- `'success'`: The input has passed validation
|
|
2057
|
+
- `'success'`: The input has passed validation.,@default 'none'
|
|
2039
2058
|
*/
|
|
2040
2059
|
set validationStatus(_) { }
|
|
2041
2060
|
;
|
|
@@ -2048,15 +2067,15 @@ If `true`, the Select is disabled and cannot be interacted with.
|
|
|
2048
2067
|
this.z = z;
|
|
2049
2068
|
c.detach();
|
|
2050
2069
|
this.el = r.nativeElement;
|
|
2051
|
-
proxyOutputs(this, this.el, ['bqBlur', 'bqClear', 'bqFocus', 'bqSelect']);
|
|
2070
|
+
proxyOutputs(this, this.el, ['bqBlur', 'bqClear', 'bqFocus', 'bqSelect', 'bqInput']);
|
|
2052
2071
|
}
|
|
2053
2072
|
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BqSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2054
|
-
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqSelect, selector: "bq-select", inputs: { autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", debounceTime: "debounceTime", disableClear: "disableClear", disabled: "disabled", distance: "distance", form: "form", keepOpenOnSelect: "keepOpenOnSelect", maxTagsVisible: "maxTagsVisible", multiple: "multiple", name: "name", open: "open", panelHeight: "panelHeight", placeholder: "placeholder", placement: "placement", readonly: "readonly", required: "required", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy", validationStatus: "validationStatus", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2073
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BqSelect, selector: "bq-select", inputs: { autofocus: "autofocus", clearButtonLabel: "clearButtonLabel", debounceTime: "debounceTime", disableClear: "disableClear", disableScrollLock: "disableScrollLock", disabled: "disabled", distance: "distance", form: "form", keepOpenOnSelect: "keepOpenOnSelect", maxTagsVisible: "maxTagsVisible", multiple: "multiple", name: "name", open: "open", panelHeight: "panelHeight", placeholder: "placeholder", placement: "placement", readonly: "readonly", required: "required", sameWidth: "sameWidth", skidding: "skidding", strategy: "strategy", validationStatus: "validationStatus", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2055
2074
|
};
|
|
2056
2075
|
BqSelect = __decorate([
|
|
2057
2076
|
ProxyCmp({
|
|
2058
|
-
inputs: ['autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'distance', 'form', 'keepOpenOnSelect', 'maxTagsVisible', 'multiple', 'name', 'open', 'panelHeight', 'placeholder', 'placement', 'readonly', 'required', 'sameWidth', 'skidding', 'strategy', 'validationStatus', 'value'],
|
|
2059
|
-
methods: ['clear']
|
|
2077
|
+
inputs: ['autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disableScrollLock', 'disabled', 'distance', 'form', 'keepOpenOnSelect', 'maxTagsVisible', 'multiple', 'name', 'open', 'panelHeight', 'placeholder', 'placement', 'readonly', 'required', 'sameWidth', 'skidding', 'strategy', 'validationStatus', 'value'],
|
|
2078
|
+
methods: ['clear', 'reset']
|
|
2060
2079
|
}),
|
|
2061
2080
|
__metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
|
|
2062
2081
|
], BqSelect);
|
|
@@ -2067,22 +2086,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2067
2086
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2068
2087
|
template: '<ng-content></ng-content>',
|
|
2069
2088
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2070
|
-
inputs: ['autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disabled', 'distance', 'form', 'keepOpenOnSelect', 'maxTagsVisible', 'multiple', 'name', 'open', 'panelHeight', 'placeholder', 'placement', 'readonly', 'required', 'sameWidth', 'skidding', 'strategy', 'validationStatus', 'value'],
|
|
2089
|
+
inputs: ['autofocus', 'clearButtonLabel', 'debounceTime', 'disableClear', 'disableScrollLock', 'disabled', 'distance', 'form', 'keepOpenOnSelect', 'maxTagsVisible', 'multiple', 'name', 'open', 'panelHeight', 'placeholder', 'placement', 'readonly', 'required', 'sameWidth', 'skidding', 'strategy', 'validationStatus', 'value'],
|
|
2071
2090
|
}]
|
|
2072
2091
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2073
2092
|
let BqSideMenu = class BqSideMenu {
|
|
2074
2093
|
/**
|
|
2075
|
-
* It sets a predefined appearance of the side menu
|
|
2094
|
+
* It sets a predefined appearance of the side menu @default 'default'
|
|
2076
2095
|
*/
|
|
2077
2096
|
set appearance(_) { }
|
|
2078
2097
|
;
|
|
2079
2098
|
/**
|
|
2080
|
-
* If true, the container will reduce its width
|
|
2099
|
+
* If true, the container will reduce its width @default false
|
|
2081
2100
|
*/
|
|
2082
2101
|
set collapse(_) { }
|
|
2083
2102
|
;
|
|
2084
2103
|
/**
|
|
2085
|
-
* It sets the size of the navigation menu items
|
|
2104
|
+
* It sets the size of the navigation menu items @default 'medium'
|
|
2086
2105
|
*/
|
|
2087
2106
|
set size(_) { }
|
|
2088
2107
|
;
|
|
@@ -2114,17 +2133,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2114
2133
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2115
2134
|
let BqSideMenuItem = class BqSideMenuItem {
|
|
2116
2135
|
/**
|
|
2117
|
-
* If true, the menu item will be shown as active/selected.
|
|
2136
|
+
* If true, the menu item will be shown as active/selected. @default false
|
|
2118
2137
|
*/
|
|
2119
2138
|
set active(_) { }
|
|
2120
2139
|
;
|
|
2121
2140
|
/**
|
|
2122
|
-
* If true, the item label and suffix will be hidden and the with will be reduce according to its parent
|
|
2141
|
+
* If true, the item label and suffix will be hidden and the with will be reduce according to its parent @default false
|
|
2123
2142
|
*/
|
|
2124
2143
|
set collapse(_) { }
|
|
2125
2144
|
;
|
|
2126
2145
|
/**
|
|
2127
|
-
* If true, the menu item will be disabled (no interaction allowed)
|
|
2146
|
+
* If true, the menu item will be disabled (no interaction allowed) @default false
|
|
2128
2147
|
*/
|
|
2129
2148
|
set disabled(_) { }
|
|
2130
2149
|
;
|
|
@@ -2155,32 +2174,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2155
2174
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2156
2175
|
let BqSlider = class BqSlider {
|
|
2157
2176
|
/**
|
|
2158
|
-
* The amount of time, in milliseconds, to wait to trigger the `bqChange` event after each value change.
|
|
2177
|
+
* The amount of time, in milliseconds, to wait to trigger the `bqChange` event after each value change. @default 0
|
|
2159
2178
|
*/
|
|
2160
2179
|
set debounceTime(_) { }
|
|
2161
2180
|
;
|
|
2162
2181
|
/**
|
|
2163
|
-
* If `true` the slider is disabled.
|
|
2182
|
+
* If `true` the slider is disabled. @default false
|
|
2164
2183
|
*/
|
|
2165
2184
|
set disabled(_) { }
|
|
2166
2185
|
;
|
|
2167
2186
|
/**
|
|
2168
|
-
* If `true` it will show the value label on a side of the slider track area
|
|
2187
|
+
* If `true` it will show the value label on a side of the slider track area @default false
|
|
2169
2188
|
*/
|
|
2170
2189
|
set enableValueIndicator(_) { }
|
|
2171
2190
|
;
|
|
2172
2191
|
/**
|
|
2173
|
-
* A number representing the amount to remain between the minimum and maximum values (only for range type).
|
|
2192
|
+
* A number representing the amount to remain between the minimum and maximum values (only for range type). @default 0
|
|
2174
2193
|
*/
|
|
2175
2194
|
set gap(_) { }
|
|
2176
2195
|
;
|
|
2177
2196
|
/**
|
|
2178
|
-
* A number representing the max value of the slider.
|
|
2197
|
+
* A number representing the max value of the slider. @default 100
|
|
2179
2198
|
*/
|
|
2180
2199
|
set max(_) { }
|
|
2181
2200
|
;
|
|
2182
2201
|
/**
|
|
2183
|
-
* A number representing the min value of the slider.
|
|
2202
|
+
* A number representing the min value of the slider. @default 0
|
|
2184
2203
|
*/
|
|
2185
2204
|
set min(_) { }
|
|
2186
2205
|
;
|
|
@@ -2191,12 +2210,12 @@ let BqSlider = class BqSlider {
|
|
|
2191
2210
|
;
|
|
2192
2211
|
/**
|
|
2193
2212
|
* A number representing the step of the slider.
|
|
2194
|
-
⚠️ Please notice that the value (or list of values if the slider type is `range`) will be rounded to the nearest multiple of `step`.
|
|
2213
|
+
⚠️ Please notice that the value (or list of values if the slider type is `range`) will be rounded to the nearest multiple of `step`. @default 1
|
|
2195
2214
|
*/
|
|
2196
2215
|
set step(_) { }
|
|
2197
2216
|
;
|
|
2198
2217
|
/**
|
|
2199
|
-
* It defines the type of slider to display
|
|
2218
|
+
* It defines the type of slider to display @default 'single'
|
|
2200
2219
|
*/
|
|
2201
2220
|
set type(_) { }
|
|
2202
2221
|
;
|
|
@@ -2208,13 +2227,13 @@ let BqSlider = class BqSlider {
|
|
|
2208
2227
|
set value(_) { }
|
|
2209
2228
|
;
|
|
2210
2229
|
/**
|
|
2211
|
-
* If `true`, a tooltip will be shown displaying the progress value
|
|
2230
|
+
* If `true`, a tooltip will be shown displaying the progress value @default false
|
|
2212
2231
|
*/
|
|
2213
2232
|
set enableTooltip(_) { }
|
|
2214
2233
|
;
|
|
2215
2234
|
/**
|
|
2216
2235
|
* If `true`, a tooltip will always display the progress value.
|
|
2217
|
-
It relies on enableTooltip and if enableTooltip is false, tooltipAlwaysVisible cannot be true.
|
|
2236
|
+
It relies on enableTooltip and if enableTooltip is false, tooltipAlwaysVisible cannot be true. @default false
|
|
2218
2237
|
*/
|
|
2219
2238
|
set tooltipAlwaysVisible(_) { }
|
|
2220
2239
|
;
|
|
@@ -2245,17 +2264,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2245
2264
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2246
2265
|
let BqSpinner = class BqSpinner {
|
|
2247
2266
|
/**
|
|
2248
|
-
* If `false`, the animation on the icon element will be stopped
|
|
2267
|
+
* If `false`, the animation on the icon element will be stopped @default true
|
|
2249
2268
|
*/
|
|
2250
2269
|
set animation(_) { }
|
|
2251
2270
|
;
|
|
2252
2271
|
/**
|
|
2253
|
-
* It defines the position of the label text
|
|
2272
|
+
* It defines the position of the label text @default 'none'
|
|
2254
2273
|
*/
|
|
2255
2274
|
set textPosition(_) { }
|
|
2256
2275
|
;
|
|
2257
2276
|
/**
|
|
2258
|
-
* It defines the size of the icon element displayed
|
|
2277
|
+
* It defines the size of the icon element displayed @default 'medium'
|
|
2259
2278
|
*/
|
|
2260
2279
|
set size(_) { }
|
|
2261
2280
|
;
|
|
@@ -2285,7 +2304,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2285
2304
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2286
2305
|
let BqStatus = class BqStatus {
|
|
2287
2306
|
/**
|
|
2288
|
-
* It defines the type of status to display
|
|
2307
|
+
* It defines the type of status to display @default 'neutral'
|
|
2289
2308
|
*/
|
|
2290
2309
|
set type(_) { }
|
|
2291
2310
|
;
|
|
@@ -2315,12 +2334,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2315
2334
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2316
2335
|
let BqStepItem = class BqStepItem {
|
|
2317
2336
|
/**
|
|
2318
|
-
* It defines prefix size
|
|
2337
|
+
* It defines prefix size @default 'medium'
|
|
2319
2338
|
*/
|
|
2320
2339
|
set size(_) { }
|
|
2321
2340
|
;
|
|
2322
2341
|
/**
|
|
2323
|
-
* It defines step item appearance based on its status
|
|
2342
|
+
* It defines step item appearance based on its status @default 'default'
|
|
2324
2343
|
*/
|
|
2325
2344
|
set status(_) { }
|
|
2326
2345
|
;
|
|
@@ -2356,12 +2375,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2356
2375
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2357
2376
|
let BqSteps = class BqSteps {
|
|
2358
2377
|
/**
|
|
2359
|
-
* The color of the line that connects the steps. It should be a valid declarative color token.
|
|
2378
|
+
* The color of the line that connects the steps. It should be a valid declarative color token. @default 'stroke--primary'
|
|
2360
2379
|
*/
|
|
2361
2380
|
set dividerColor(_) { }
|
|
2362
2381
|
;
|
|
2363
2382
|
/**
|
|
2364
|
-
* The size of the steps
|
|
2383
|
+
* The size of the steps @default 'medium'
|
|
2365
2384
|
*/
|
|
2366
2385
|
set size(_) { }
|
|
2367
2386
|
;
|
|
@@ -2396,17 +2415,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2396
2415
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2397
2416
|
let BqSwitch = class BqSwitch {
|
|
2398
2417
|
/**
|
|
2399
|
-
* If true, a background will be displayed on hover
|
|
2418
|
+
* If true, a background will be displayed on hover @default false
|
|
2400
2419
|
*/
|
|
2401
2420
|
set backgroundOnHover(_) { }
|
|
2402
2421
|
;
|
|
2403
2422
|
/**
|
|
2404
|
-
* It indicates whether if the switch is `ON` by default (when the page loads)
|
|
2423
|
+
* It indicates whether if the switch is `ON` by default (when the page loads) @default false
|
|
2405
2424
|
*/
|
|
2406
2425
|
set checked(_) { }
|
|
2407
2426
|
;
|
|
2408
2427
|
/**
|
|
2409
|
-
* If true, the switch control will be disabled and no interaction will be allowed
|
|
2428
|
+
* If true, the switch control will be disabled and no interaction will be allowed @default false
|
|
2410
2429
|
*/
|
|
2411
2430
|
set disabled(_) { }
|
|
2412
2431
|
;
|
|
@@ -2416,18 +2435,18 @@ let BqSwitch = class BqSwitch {
|
|
|
2416
2435
|
set formValidationMessage(_) { }
|
|
2417
2436
|
;
|
|
2418
2437
|
/**
|
|
2419
|
-
* If true, the component will take the full width space available on the parent container
|
|
2438
|
+
* If true, the component will take the full width space available on the parent container @default false
|
|
2420
2439
|
*/
|
|
2421
2440
|
set fullWidth(_) { }
|
|
2422
2441
|
;
|
|
2423
2442
|
/**
|
|
2424
|
-
* It indicates how to to display the on/off marks inside the control, with icons or none (default)
|
|
2443
|
+
* It indicates how to to display the on/off marks inside the control, with icons or none (default) @default 'default'
|
|
2425
2444
|
*/
|
|
2426
2445
|
set innerLabel(_) { }
|
|
2427
2446
|
;
|
|
2428
2447
|
/**
|
|
2429
2448
|
* It defines how to distribute the space between and around the control and the label text
|
|
2430
|
-
(https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content)
|
|
2449
|
+
(https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content) @default 'start'
|
|
2431
2450
|
*/
|
|
2432
2451
|
set justifyContent(_) { }
|
|
2433
2452
|
;
|
|
@@ -2437,12 +2456,12 @@ let BqSwitch = class BqSwitch {
|
|
|
2437
2456
|
set name(_) { }
|
|
2438
2457
|
;
|
|
2439
2458
|
/**
|
|
2440
|
-
* If `true`, it will indicate that the user must switch `ON` the element before the owning form can be submitted
|
|
2459
|
+
* If `true`, it will indicate that the user must switch `ON` the element before the owning form can be submitted @default false
|
|
2441
2460
|
*/
|
|
2442
2461
|
set required(_) { }
|
|
2443
2462
|
;
|
|
2444
2463
|
/**
|
|
2445
|
-
* If true, the order of the control and the label text will be changed
|
|
2464
|
+
* If true, the order of the control and the label text will be changed @default false
|
|
2446
2465
|
*/
|
|
2447
2466
|
set reverseOrder(_) { }
|
|
2448
2467
|
;
|
|
@@ -2489,22 +2508,22 @@ let BqTab = class BqTab {
|
|
|
2489
2508
|
set controls(_) { }
|
|
2490
2509
|
;
|
|
2491
2510
|
/**
|
|
2492
|
-
* If true tab is disabled
|
|
2511
|
+
* If true tab is disabled @default false
|
|
2493
2512
|
*/
|
|
2494
2513
|
set disabled(_) { }
|
|
2495
2514
|
;
|
|
2496
2515
|
/**
|
|
2497
|
-
* The direction that tab should be render
|
|
2516
|
+
* The direction that tab should be render @default 'horizontal'
|
|
2498
2517
|
*/
|
|
2499
2518
|
set orientation(_) { }
|
|
2500
2519
|
;
|
|
2501
2520
|
/**
|
|
2502
|
-
* The placement that tab should be render
|
|
2521
|
+
* The placement that tab should be render @default 'start'
|
|
2503
2522
|
*/
|
|
2504
2523
|
set placement(_) { }
|
|
2505
2524
|
;
|
|
2506
2525
|
/**
|
|
2507
|
-
* The size of the tab
|
|
2526
|
+
* The size of the tab @default 'medium'
|
|
2508
2527
|
*/
|
|
2509
2528
|
set size(_) { }
|
|
2510
2529
|
;
|
|
@@ -2541,27 +2560,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2541
2560
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2542
2561
|
let BqTabGroup = class BqTabGroup {
|
|
2543
2562
|
/**
|
|
2544
|
-
* A number representing the delay value applied to bqChange event handler
|
|
2563
|
+
* A number representing the delay value applied to bqChange event handler @default 0
|
|
2545
2564
|
*/
|
|
2546
2565
|
set debounceTime(_) { }
|
|
2547
2566
|
;
|
|
2548
2567
|
/**
|
|
2549
|
-
* If true, the underline divider below the tabs won't be shown
|
|
2568
|
+
* If true, the underline divider below the tabs won't be shown @default false
|
|
2550
2569
|
*/
|
|
2551
2570
|
set disableDivider(_) { }
|
|
2552
2571
|
;
|
|
2553
2572
|
/**
|
|
2554
|
-
* The direction that tab should be render
|
|
2573
|
+
* The direction that tab should be render @default 'horizontal'
|
|
2555
2574
|
*/
|
|
2556
2575
|
set orientation(_) { }
|
|
2557
2576
|
;
|
|
2558
2577
|
/**
|
|
2559
|
-
* The placement that tab should be render
|
|
2578
|
+
* The placement that tab should be render @default 'start'
|
|
2560
2579
|
*/
|
|
2561
2580
|
set placement(_) { }
|
|
2562
2581
|
;
|
|
2563
2582
|
/**
|
|
2564
|
-
* The size of the tab
|
|
2583
|
+
* The size of the tab @default 'medium'
|
|
2565
2584
|
*/
|
|
2566
2585
|
set size(_) { }
|
|
2567
2586
|
;
|
|
@@ -2602,7 +2621,7 @@ let BqTag = class BqTag {
|
|
|
2602
2621
|
set border(_) { }
|
|
2603
2622
|
;
|
|
2604
2623
|
/**
|
|
2605
|
-
* If true, the Tag can be clickable
|
|
2624
|
+
* If true, the Tag can be clickable @default false
|
|
2606
2625
|
*/
|
|
2607
2626
|
set clickable(_) { }
|
|
2608
2627
|
;
|
|
@@ -2612,7 +2631,7 @@ let BqTag = class BqTag {
|
|
|
2612
2631
|
set color(_) { }
|
|
2613
2632
|
;
|
|
2614
2633
|
/**
|
|
2615
|
-
* If true, the Tag will be disabled (only if clickable = `true`, no interaction allowed)
|
|
2634
|
+
* If true, the Tag will be disabled (only if clickable = `true`, no interaction allowed) @default false
|
|
2616
2635
|
*/
|
|
2617
2636
|
set disabled(_) { }
|
|
2618
2637
|
;
|
|
@@ -2622,22 +2641,22 @@ let BqTag = class BqTag {
|
|
|
2622
2641
|
set hidden(_) { }
|
|
2623
2642
|
;
|
|
2624
2643
|
/**
|
|
2625
|
-
* If true, the Tag component can be removed
|
|
2644
|
+
* If true, the Tag component can be removed @default false
|
|
2626
2645
|
*/
|
|
2627
2646
|
set removable(_) { }
|
|
2628
2647
|
;
|
|
2629
2648
|
/**
|
|
2630
|
-
* If true, the Tag is selected (only if clickable = `true`)
|
|
2649
|
+
* If true, the Tag is selected (only if clickable = `true`) @default false
|
|
2631
2650
|
*/
|
|
2632
2651
|
set selected(_) { }
|
|
2633
2652
|
;
|
|
2634
2653
|
/**
|
|
2635
|
-
* The size of the Tag component
|
|
2654
|
+
* The size of the Tag component @default 'medium'
|
|
2636
2655
|
*/
|
|
2637
2656
|
set size(_) { }
|
|
2638
2657
|
;
|
|
2639
2658
|
/**
|
|
2640
|
-
* The variant of Tag to apply on top of the variant
|
|
2659
|
+
* The variant of Tag to apply on top of the variant @default 'filled'
|
|
2641
2660
|
*/
|
|
2642
2661
|
set variant(_) { }
|
|
2643
2662
|
;
|
|
@@ -2671,19 +2690,19 @@ let BqTextarea = class BqTextarea {
|
|
|
2671
2690
|
/**
|
|
2672
2691
|
* Controls whether or not the textarea field should be capitalized and how.
|
|
2673
2692
|
Possible values are 'off', 'none', 'on', 'sentences', 'words', and 'characters'.
|
|
2674
|
-
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize
|
|
2693
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize @default 'off'
|
|
2675
2694
|
*/
|
|
2676
2695
|
set autocapitalize(_) { }
|
|
2677
2696
|
;
|
|
2678
2697
|
/**
|
|
2679
2698
|
* Specifies whether or not the textarea field should have autocomplete enabled.
|
|
2680
|
-
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values
|
|
2699
|
+
See: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values @default 'off'
|
|
2681
2700
|
*/
|
|
2682
2701
|
set autocomplete(_) { }
|
|
2683
2702
|
;
|
|
2684
2703
|
/**
|
|
2685
2704
|
* Controls whether or not the textarea field should have autocorrect enabled.
|
|
2686
|
-
Possible values are 'on' and 'off'.
|
|
2705
|
+
Possible values are 'on' and 'off'. @default 'off'
|
|
2687
2706
|
*/
|
|
2688
2707
|
set autocorrect(_) { }
|
|
2689
2708
|
;
|
|
@@ -2694,23 +2713,23 @@ Possible values are 'on' and 'off'.
|
|
|
2694
2713
|
;
|
|
2695
2714
|
/**
|
|
2696
2715
|
* If `true`, the textarea will automatically grow and shrink to fit its contents.
|
|
2697
|
-
If `false`, the textarea will have a fixed height specified by the `rows` property.
|
|
2716
|
+
If `false`, the textarea will have a fixed height specified by the `rows` property. @default false
|
|
2698
2717
|
*/
|
|
2699
2718
|
set autoGrow(_) { }
|
|
2700
2719
|
;
|
|
2701
2720
|
/**
|
|
2702
2721
|
* The amount of time, in milliseconds, to wait before emitting the `bqInput` event after the textarea value changes.
|
|
2703
|
-
A value of 0 means no debouncing will occur.
|
|
2722
|
+
A value of 0 means no debouncing will occur. @default 0
|
|
2704
2723
|
*/
|
|
2705
2724
|
set debounceTime(_) { }
|
|
2706
2725
|
;
|
|
2707
2726
|
/**
|
|
2708
|
-
* If `true`, the user cannot interact with the textarea.
|
|
2727
|
+
* If `true`, the user cannot interact with the textarea. @default false
|
|
2709
2728
|
*/
|
|
2710
2729
|
set disabled(_) { }
|
|
2711
2730
|
;
|
|
2712
2731
|
/**
|
|
2713
|
-
* If `true`, it will block the user's ability to resize the textarea.
|
|
2732
|
+
* If `true`, it will block the user's ability to resize the textarea. @default false
|
|
2714
2733
|
*/
|
|
2715
2734
|
set disableResize(_) { }
|
|
2716
2735
|
;
|
|
@@ -2741,22 +2760,22 @@ When enabled, a character counter will be shown underneath the textarea.
|
|
|
2741
2760
|
set placeholder(_) { }
|
|
2742
2761
|
;
|
|
2743
2762
|
/**
|
|
2744
|
-
* If true, the textarea field cannot be modified.
|
|
2763
|
+
* If true, the textarea field cannot be modified. @default false
|
|
2745
2764
|
*/
|
|
2746
2765
|
set readonly(_) { }
|
|
2747
2766
|
;
|
|
2748
2767
|
/**
|
|
2749
|
-
* Indicates whether or not the textarea field is required to be filled out before submitting the form.
|
|
2768
|
+
* Indicates whether or not the textarea field is required to be filled out before submitting the form. @default false
|
|
2750
2769
|
*/
|
|
2751
2770
|
set required(_) { }
|
|
2752
2771
|
;
|
|
2753
2772
|
/**
|
|
2754
|
-
* The number of visible text lines for the control. It must be a positive integer.
|
|
2773
|
+
* The number of visible text lines for the control. It must be a positive integer. @default 5
|
|
2755
2774
|
*/
|
|
2756
2775
|
set rows(_) { }
|
|
2757
2776
|
;
|
|
2758
2777
|
/**
|
|
2759
|
-
* If true, the textarea content may be checked for spelling errors.
|
|
2778
|
+
* If true, the textarea content may be checked for spelling errors. @default false
|
|
2760
2779
|
*/
|
|
2761
2780
|
set spellcheck(_) { }
|
|
2762
2781
|
;
|
|
@@ -2765,7 +2784,7 @@ When enabled, a character counter will be shown underneath the textarea.
|
|
|
2765
2784
|
- `'none'`: No validation status is set.
|
|
2766
2785
|
- `'error'`: The textarea has a validation error.
|
|
2767
2786
|
- `'warning'`: The textarea has a validation warning.
|
|
2768
|
-
- `'success'`: The textarea has passed validation
|
|
2787
|
+
- `'success'`: The textarea has passed validation.,@default 'none'
|
|
2769
2788
|
*/
|
|
2770
2789
|
set validationStatus(_) { }
|
|
2771
2790
|
;
|
|
@@ -2775,7 +2794,7 @@ When enabled, a character counter will be shown underneath the textarea.
|
|
|
2775
2794
|
set value(_) { }
|
|
2776
2795
|
;
|
|
2777
2796
|
/**
|
|
2778
|
-
* Specifies how the text in a text area is to be wrapped when submitted in a form
|
|
2797
|
+
* Specifies how the text in a text area is to be wrapped when submitted in a form @default 'soft'
|
|
2779
2798
|
*/
|
|
2780
2799
|
set wrap(_) { }
|
|
2781
2800
|
;
|
|
@@ -2806,22 +2825,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2806
2825
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2807
2826
|
let BqToast = class BqToast {
|
|
2808
2827
|
/**
|
|
2809
|
-
* The corder radius of the toast component
|
|
2828
|
+
* The corder radius of the toast component @default 's'
|
|
2810
2829
|
*/
|
|
2811
2830
|
set border(_) { }
|
|
2812
2831
|
;
|
|
2813
2832
|
/**
|
|
2814
|
-
* Type of toast
|
|
2833
|
+
* Type of toast @default 'info'
|
|
2815
2834
|
*/
|
|
2816
2835
|
set type(_) { }
|
|
2817
2836
|
;
|
|
2818
2837
|
/**
|
|
2819
|
-
* Placement of toast
|
|
2838
|
+
* Placement of toast @default 'bottom-center'
|
|
2820
2839
|
*/
|
|
2821
2840
|
set placement(_) { }
|
|
2822
2841
|
;
|
|
2823
2842
|
/**
|
|
2824
|
-
* If true will hide toast icon
|
|
2843
|
+
* If true will hide toast icon @default false
|
|
2825
2844
|
*/
|
|
2826
2845
|
set hideIcon(_) { }
|
|
2827
2846
|
;
|
|
@@ -2831,7 +2850,7 @@ let BqToast = class BqToast {
|
|
|
2831
2850
|
set open(_) { }
|
|
2832
2851
|
;
|
|
2833
2852
|
/**
|
|
2834
|
-
* The length of time, in milliseconds, after which the toast will close itself
|
|
2853
|
+
* The length of time, in milliseconds, after which the toast will close itself @default 3000
|
|
2835
2854
|
*/
|
|
2836
2855
|
set time(_) { }
|
|
2837
2856
|
;
|
|
@@ -2863,36 +2882,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
2863
2882
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2864
2883
|
let BqTooltip = class BqTooltip {
|
|
2865
2884
|
/**
|
|
2866
|
-
* If true, the tooltip will always be visible
|
|
2885
|
+
* If true, the tooltip will always be visible @default false
|
|
2867
2886
|
*/
|
|
2868
2887
|
set alwaysVisible(_) { }
|
|
2869
2888
|
;
|
|
2870
2889
|
/**
|
|
2871
|
-
* Distance between trigger element and tooltip
|
|
2890
|
+
* Distance between trigger element and tooltip @default 10
|
|
2872
2891
|
*/
|
|
2873
2892
|
set distance(_) { }
|
|
2874
2893
|
;
|
|
2875
2894
|
/**
|
|
2876
|
-
* If true, the arrow on the tooltip content won't be shown
|
|
2895
|
+
* If true, the arrow on the tooltip content won't be shown @default false
|
|
2877
2896
|
*/
|
|
2878
2897
|
set hideArrow(_) { }
|
|
2879
2898
|
;
|
|
2899
|
+
/**
|
|
2900
|
+
* @default 'top'
|
|
2901
|
+
*/
|
|
2880
2902
|
set placement(_) { }
|
|
2881
2903
|
;
|
|
2882
2904
|
/**
|
|
2883
2905
|
* Whether the tooltip should have the same width as the trigger element
|
|
2884
|
-
(applicable only for content shorter than the trigger element)
|
|
2906
|
+
(applicable only for content shorter than the trigger element) @default false
|
|
2885
2907
|
*/
|
|
2886
2908
|
set sameWidth(_) { }
|
|
2887
2909
|
;
|
|
2888
2910
|
/**
|
|
2889
|
-
* Set the action when the tooltip should be displayed, on hover (default) or click
|
|
2911
|
+
* Set the action when the tooltip should be displayed, on hover (default) or click @default 'hover'
|
|
2890
2912
|
*/
|
|
2891
2913
|
set displayOn(_) { }
|
|
2892
2914
|
;
|
|
2893
2915
|
/**
|
|
2894
2916
|
* Indicates whether or not the tooltip is visible when the component is first rendered,
|
|
2895
|
-
and when interacting with the trigger
|
|
2917
|
+
and when interacting with the trigger @default false
|
|
2896
2918
|
*/
|
|
2897
2919
|
set visible(_) { }
|
|
2898
2920
|
;
|