@bravobit/bb-foundation 0.57.8 → 0.59.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/fesm2022/bravobit-bb-foundation-auth.mjs +22 -22
- package/fesm2022/bravobit-bb-foundation-collections.mjs +45 -45
- package/fesm2022/bravobit-bb-foundation-collections.mjs.map +1 -1
- package/fesm2022/bravobit-bb-foundation-dashboard.mjs +28 -28
- package/fesm2022/bravobit-bb-foundation-dashboard.mjs.map +1 -1
- package/fesm2022/bravobit-bb-foundation-dialog.mjs +36 -36
- package/fesm2022/bravobit-bb-foundation-dialog.mjs.map +1 -1
- package/fesm2022/bravobit-bb-foundation-elements.mjs +115 -115
- package/fesm2022/bravobit-bb-foundation-elements.mjs.map +1 -1
- package/fesm2022/bravobit-bb-foundation-http.mjs +10 -10
- package/fesm2022/bravobit-bb-foundation-localize.mjs +171 -17
- package/fesm2022/bravobit-bb-foundation-localize.mjs.map +1 -1
- package/fesm2022/bravobit-bb-foundation-masking.mjs +16 -16
- package/fesm2022/bravobit-bb-foundation-notifications.mjs +13 -13
- package/fesm2022/bravobit-bb-foundation-permissions.mjs +10 -10
- package/fesm2022/bravobit-bb-foundation-recaptcha.mjs +10 -10
- package/fesm2022/bravobit-bb-foundation-select.mjs +27 -24
- package/fesm2022/bravobit-bb-foundation-select.mjs.map +1 -1
- package/fesm2022/bravobit-bb-foundation-storage.mjs +3 -3
- package/fesm2022/bravobit-bb-foundation-table.mjs +23 -23
- package/fesm2022/bravobit-bb-foundation-table.mjs.map +1 -1
- package/fesm2022/bravobit-bb-foundation-tooltip.mjs +10 -10
- package/fesm2022/bravobit-bb-foundation-utils.mjs +16 -16
- package/fesm2022/bravobit-bb-foundation.mjs +21 -21
- package/package.json +40 -40
- package/{localize/index.d.ts → types/bravobit-bb-foundation-localize.d.ts} +155 -1
- package/{select/index.d.ts → types/bravobit-bb-foundation-select.d.ts} +2 -1
- /package/{auth/index.d.ts → types/bravobit-bb-foundation-auth.d.ts} +0 -0
- /package/{collections/index.d.ts → types/bravobit-bb-foundation-collections.d.ts} +0 -0
- /package/{dashboard/index.d.ts → types/bravobit-bb-foundation-dashboard.d.ts} +0 -0
- /package/{dialog/index.d.ts → types/bravobit-bb-foundation-dialog.d.ts} +0 -0
- /package/{elements/index.d.ts → types/bravobit-bb-foundation-elements.d.ts} +0 -0
- /package/{http/index.d.ts → types/bravobit-bb-foundation-http.d.ts} +0 -0
- /package/{masking/index.d.ts → types/bravobit-bb-foundation-masking.d.ts} +0 -0
- /package/{notifications/index.d.ts → types/bravobit-bb-foundation-notifications.d.ts} +0 -0
- /package/{permissions/index.d.ts → types/bravobit-bb-foundation-permissions.d.ts} +0 -0
- /package/{recaptcha/index.d.ts → types/bravobit-bb-foundation-recaptcha.d.ts} +0 -0
- /package/{rxjs/index.d.ts → types/bravobit-bb-foundation-rxjs.d.ts} +0 -0
- /package/{storage/index.d.ts → types/bravobit-bb-foundation-storage.d.ts} +0 -0
- /package/{table/index.d.ts → types/bravobit-bb-foundation-table.d.ts} +0 -0
- /package/{tooltip/index.d.ts → types/bravobit-bb-foundation-tooltip.d.ts} +0 -0
- /package/{utils/index.d.ts → types/bravobit-bb-foundation-utils.d.ts} +0 -0
- /package/{index.d.ts → types/bravobit-bb-foundation.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bravobit/bb-foundation",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.59.0",
|
|
4
4
|
"description": "The Angular core foundation of the Bravobit team.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Stan van Heumen",
|
|
@@ -8,15 +8,15 @@
|
|
|
8
8
|
"url": "https://bravobit.nl"
|
|
9
9
|
},
|
|
10
10
|
"peerDependencies": {
|
|
11
|
-
"@angular/common": "^
|
|
12
|
-
"@angular/core": "^
|
|
13
|
-
"@angular/cdk": "^
|
|
11
|
+
"@angular/common": "^21.0.0",
|
|
12
|
+
"@angular/core": "^21.0.0",
|
|
13
|
+
"@angular/cdk": "^21.0.0"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"tslib": "^2.8.1",
|
|
17
17
|
"inputmask": "^5.0.9",
|
|
18
18
|
"@types/grecaptcha": "^3.0.9",
|
|
19
|
-
"@ng-select/ng-select": "~
|
|
19
|
+
"@ng-select/ng-select": "~21.1.3"
|
|
20
20
|
},
|
|
21
21
|
"sideEffects": false,
|
|
22
22
|
"schematics": "./schematics/collection.json",
|
|
@@ -27,82 +27,82 @@
|
|
|
27
27
|
]
|
|
28
28
|
},
|
|
29
29
|
"module": "fesm2022/bravobit-bb-foundation.mjs",
|
|
30
|
-
"typings": "
|
|
30
|
+
"typings": "types/bravobit-bb-foundation.d.ts",
|
|
31
31
|
"exports": {
|
|
32
32
|
"./package.json": {
|
|
33
33
|
"default": "./package.json"
|
|
34
34
|
},
|
|
35
35
|
".": {
|
|
36
|
-
"types": "./
|
|
36
|
+
"types": "./types/bravobit-bb-foundation.d.ts",
|
|
37
37
|
"default": "./fesm2022/bravobit-bb-foundation.mjs"
|
|
38
38
|
},
|
|
39
39
|
"./auth": {
|
|
40
|
-
"types": "./auth
|
|
40
|
+
"types": "./types/bravobit-bb-foundation-auth.d.ts",
|
|
41
41
|
"default": "./fesm2022/bravobit-bb-foundation-auth.mjs"
|
|
42
42
|
},
|
|
43
43
|
"./collections": {
|
|
44
|
-
"types": "./collections
|
|
44
|
+
"types": "./types/bravobit-bb-foundation-collections.d.ts",
|
|
45
45
|
"default": "./fesm2022/bravobit-bb-foundation-collections.mjs"
|
|
46
46
|
},
|
|
47
|
-
"./
|
|
48
|
-
"types": "./
|
|
49
|
-
"default": "./fesm2022/bravobit-bb-foundation-
|
|
47
|
+
"./dashboard": {
|
|
48
|
+
"types": "./types/bravobit-bb-foundation-dashboard.d.ts",
|
|
49
|
+
"default": "./fesm2022/bravobit-bb-foundation-dashboard.mjs"
|
|
50
50
|
},
|
|
51
51
|
"./dialog": {
|
|
52
|
-
"types": "./dialog
|
|
52
|
+
"types": "./types/bravobit-bb-foundation-dialog.d.ts",
|
|
53
53
|
"default": "./fesm2022/bravobit-bb-foundation-dialog.mjs"
|
|
54
54
|
},
|
|
55
|
-
"./
|
|
56
|
-
"types": "./
|
|
57
|
-
"default": "./fesm2022/bravobit-bb-foundation-
|
|
55
|
+
"./elements": {
|
|
56
|
+
"types": "./types/bravobit-bb-foundation-elements.d.ts",
|
|
57
|
+
"default": "./fesm2022/bravobit-bb-foundation-elements.mjs"
|
|
58
|
+
},
|
|
59
|
+
"./http": {
|
|
60
|
+
"types": "./types/bravobit-bb-foundation-http.d.ts",
|
|
61
|
+
"default": "./fesm2022/bravobit-bb-foundation-http.mjs"
|
|
58
62
|
},
|
|
59
63
|
"./localize": {
|
|
60
|
-
"types": "./localize
|
|
64
|
+
"types": "./types/bravobit-bb-foundation-localize.d.ts",
|
|
61
65
|
"default": "./fesm2022/bravobit-bb-foundation-localize.mjs"
|
|
62
66
|
},
|
|
63
|
-
"./
|
|
64
|
-
"types": "./
|
|
65
|
-
"default": "./fesm2022/bravobit-bb-foundation-
|
|
67
|
+
"./masking": {
|
|
68
|
+
"types": "./types/bravobit-bb-foundation-masking.d.ts",
|
|
69
|
+
"default": "./fesm2022/bravobit-bb-foundation-masking.mjs"
|
|
66
70
|
},
|
|
67
71
|
"./notifications": {
|
|
68
|
-
"types": "./notifications
|
|
72
|
+
"types": "./types/bravobit-bb-foundation-notifications.d.ts",
|
|
69
73
|
"default": "./fesm2022/bravobit-bb-foundation-notifications.mjs"
|
|
70
74
|
},
|
|
71
|
-
"./
|
|
72
|
-
"types": "./
|
|
73
|
-
"default": "./fesm2022/bravobit-bb-foundation-
|
|
75
|
+
"./permissions": {
|
|
76
|
+
"types": "./types/bravobit-bb-foundation-permissions.d.ts",
|
|
77
|
+
"default": "./fesm2022/bravobit-bb-foundation-permissions.mjs"
|
|
74
78
|
},
|
|
75
79
|
"./recaptcha": {
|
|
76
|
-
"types": "./recaptcha
|
|
80
|
+
"types": "./types/bravobit-bb-foundation-recaptcha.d.ts",
|
|
77
81
|
"default": "./fesm2022/bravobit-bb-foundation-recaptcha.mjs"
|
|
78
82
|
},
|
|
79
83
|
"./rxjs": {
|
|
80
|
-
"types": "./rxjs
|
|
84
|
+
"types": "./types/bravobit-bb-foundation-rxjs.d.ts",
|
|
81
85
|
"default": "./fesm2022/bravobit-bb-foundation-rxjs.mjs"
|
|
82
86
|
},
|
|
83
|
-
"./storage": {
|
|
84
|
-
"types": "./storage/index.d.ts",
|
|
85
|
-
"default": "./fesm2022/bravobit-bb-foundation-storage.mjs"
|
|
86
|
-
},
|
|
87
87
|
"./select": {
|
|
88
|
-
"types": "./select
|
|
88
|
+
"types": "./types/bravobit-bb-foundation-select.d.ts",
|
|
89
89
|
"default": "./fesm2022/bravobit-bb-foundation-select.mjs"
|
|
90
90
|
},
|
|
91
|
-
"./
|
|
92
|
-
"types": "./
|
|
93
|
-
"default": "./fesm2022/bravobit-bb-foundation-
|
|
91
|
+
"./storage": {
|
|
92
|
+
"types": "./types/bravobit-bb-foundation-storage.d.ts",
|
|
93
|
+
"default": "./fesm2022/bravobit-bb-foundation-storage.mjs"
|
|
94
94
|
},
|
|
95
95
|
"./table": {
|
|
96
|
-
"types": "./table
|
|
96
|
+
"types": "./types/bravobit-bb-foundation-table.d.ts",
|
|
97
97
|
"default": "./fesm2022/bravobit-bb-foundation-table.mjs"
|
|
98
98
|
},
|
|
99
|
-
"./utils": {
|
|
100
|
-
"types": "./utils/index.d.ts",
|
|
101
|
-
"default": "./fesm2022/bravobit-bb-foundation-utils.mjs"
|
|
102
|
-
},
|
|
103
99
|
"./tooltip": {
|
|
104
|
-
"types": "./tooltip
|
|
100
|
+
"types": "./types/bravobit-bb-foundation-tooltip.d.ts",
|
|
105
101
|
"default": "./fesm2022/bravobit-bb-foundation-tooltip.mjs"
|
|
102
|
+
},
|
|
103
|
+
"./utils": {
|
|
104
|
+
"types": "./types/bravobit-bb-foundation-utils.d.ts",
|
|
105
|
+
"default": "./fesm2022/bravobit-bb-foundation-utils.mjs"
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
108
|
}
|
|
@@ -451,6 +451,160 @@ declare const extraSpanishDictionary: {
|
|
|
451
451
|
};
|
|
452
452
|
};
|
|
453
453
|
|
|
454
|
+
declare const extraGermanDictionary: {
|
|
455
|
+
'form-control-errors': {
|
|
456
|
+
unknown: string;
|
|
457
|
+
required: string;
|
|
458
|
+
pattern: string;
|
|
459
|
+
email: string;
|
|
460
|
+
emailTaken: string;
|
|
461
|
+
passwordMatch: string;
|
|
462
|
+
confirm: string;
|
|
463
|
+
fullNumber: string;
|
|
464
|
+
min: string;
|
|
465
|
+
max: string;
|
|
466
|
+
invalidFileType: string;
|
|
467
|
+
invalidFiles: string;
|
|
468
|
+
maxFileSize: string;
|
|
469
|
+
maxTotalFileSize: string;
|
|
470
|
+
minDate: string;
|
|
471
|
+
maxDate: string;
|
|
472
|
+
invalidDate: string;
|
|
473
|
+
minlength: string;
|
|
474
|
+
maxlength: string;
|
|
475
|
+
};
|
|
476
|
+
select: {
|
|
477
|
+
not_found_text: string;
|
|
478
|
+
clear_all_text: string;
|
|
479
|
+
loading_text: string;
|
|
480
|
+
type_to_search_text: string;
|
|
481
|
+
add_tag_text: string;
|
|
482
|
+
};
|
|
483
|
+
'multi-file-control': {
|
|
484
|
+
multiple_choose_file: string;
|
|
485
|
+
multiple_choose_file_text: string;
|
|
486
|
+
single_choose_file: string;
|
|
487
|
+
single_choose_file_text: string;
|
|
488
|
+
};
|
|
489
|
+
'image-control': {
|
|
490
|
+
button_label: string;
|
|
491
|
+
delete_label: string;
|
|
492
|
+
};
|
|
493
|
+
collection: {
|
|
494
|
+
search_label: string;
|
|
495
|
+
showing_label: string;
|
|
496
|
+
no_results_label: string;
|
|
497
|
+
empty_label: string;
|
|
498
|
+
error_label: string;
|
|
499
|
+
};
|
|
500
|
+
tables: {
|
|
501
|
+
search: string;
|
|
502
|
+
loading: string;
|
|
503
|
+
empty: string;
|
|
504
|
+
page: string;
|
|
505
|
+
error_datasource: string;
|
|
506
|
+
error_unauthorized: string;
|
|
507
|
+
error_forbidden: string;
|
|
508
|
+
error_not_found: string;
|
|
509
|
+
error_server: string;
|
|
510
|
+
error_down: string;
|
|
511
|
+
error_unknown: string;
|
|
512
|
+
};
|
|
513
|
+
'file-picker': {
|
|
514
|
+
choose: string;
|
|
515
|
+
remove: string;
|
|
516
|
+
drop: string;
|
|
517
|
+
};
|
|
518
|
+
dialog: {
|
|
519
|
+
default_confirm_button: string;
|
|
520
|
+
default_cancel_button: string;
|
|
521
|
+
default_title: string;
|
|
522
|
+
default_description: string;
|
|
523
|
+
};
|
|
524
|
+
times: {
|
|
525
|
+
tomorrow_at: string;
|
|
526
|
+
today_at: string;
|
|
527
|
+
yesterday_at: string;
|
|
528
|
+
};
|
|
529
|
+
};
|
|
530
|
+
|
|
531
|
+
declare const extraPortugueseDictionary: {
|
|
532
|
+
'form-control-errors': {
|
|
533
|
+
unknown: string;
|
|
534
|
+
required: string;
|
|
535
|
+
pattern: string;
|
|
536
|
+
email: string;
|
|
537
|
+
emailTaken: string;
|
|
538
|
+
passwordMatch: string;
|
|
539
|
+
confirm: string;
|
|
540
|
+
fullNumber: string;
|
|
541
|
+
min: string;
|
|
542
|
+
max: string;
|
|
543
|
+
invalidFileType: string;
|
|
544
|
+
invalidFiles: string;
|
|
545
|
+
maxFileSize: string;
|
|
546
|
+
maxTotalFileSize: string;
|
|
547
|
+
minDate: string;
|
|
548
|
+
maxDate: string;
|
|
549
|
+
invalidDate: string;
|
|
550
|
+
minlength: string;
|
|
551
|
+
maxlength: string;
|
|
552
|
+
};
|
|
553
|
+
select: {
|
|
554
|
+
not_found_text: string;
|
|
555
|
+
clear_all_text: string;
|
|
556
|
+
loading_text: string;
|
|
557
|
+
type_to_search_text: string;
|
|
558
|
+
add_tag_text: string;
|
|
559
|
+
};
|
|
560
|
+
'multi-file-control': {
|
|
561
|
+
multiple_choose_file: string;
|
|
562
|
+
multiple_choose_file_text: string;
|
|
563
|
+
single_choose_file: string;
|
|
564
|
+
single_choose_file_text: string;
|
|
565
|
+
};
|
|
566
|
+
'image-control': {
|
|
567
|
+
button_label: string;
|
|
568
|
+
delete_label: string;
|
|
569
|
+
};
|
|
570
|
+
collection: {
|
|
571
|
+
search_label: string;
|
|
572
|
+
showing_label: string;
|
|
573
|
+
no_results_label: string;
|
|
574
|
+
empty_label: string;
|
|
575
|
+
error_label: string;
|
|
576
|
+
};
|
|
577
|
+
tables: {
|
|
578
|
+
search: string;
|
|
579
|
+
loading: string;
|
|
580
|
+
empty: string;
|
|
581
|
+
page: string;
|
|
582
|
+
error_datasource: string;
|
|
583
|
+
error_unauthorized: string;
|
|
584
|
+
error_forbidden: string;
|
|
585
|
+
error_not_found: string;
|
|
586
|
+
error_server: string;
|
|
587
|
+
error_down: string;
|
|
588
|
+
error_unknown: string;
|
|
589
|
+
};
|
|
590
|
+
'file-picker': {
|
|
591
|
+
choose: string;
|
|
592
|
+
remove: string;
|
|
593
|
+
drop: string;
|
|
594
|
+
};
|
|
595
|
+
dialog: {
|
|
596
|
+
default_confirm_button: string;
|
|
597
|
+
default_cancel_button: string;
|
|
598
|
+
default_title: string;
|
|
599
|
+
default_description: string;
|
|
600
|
+
};
|
|
601
|
+
times: {
|
|
602
|
+
tomorrow_at: string;
|
|
603
|
+
today_at: string;
|
|
604
|
+
yesterday_at: string;
|
|
605
|
+
};
|
|
606
|
+
};
|
|
607
|
+
|
|
454
608
|
declare class LocalizeMissingHandler implements LocalizeHandlerProtocol {
|
|
455
609
|
handle(params: LocalizeParams): string;
|
|
456
610
|
private log;
|
|
@@ -550,5 +704,5 @@ declare class LocalizeModule {
|
|
|
550
704
|
static ɵinj: i0.ɵɵInjectorDeclaration<LocalizeModule>;
|
|
551
705
|
}
|
|
552
706
|
|
|
553
|
-
export { BbLocalize, BbLocalizeString, BbLocalizeTemplate, LOCALIZE_CONFIG, LOCALIZE_FUNCTION, LOCALIZE_ID, LOCALIZE_MISSING_HANDLER, LOCALIZE_TRANSFORM, Localize, LocalizeDateFunction, LocalizeDictionary, LocalizeDictionaryContext, LocalizeDictionaryData, LocalizeInterpolateTransform, LocalizeLowercaseFunction, LocalizeMissingHandler, LocalizeModule, LocalizePluralTransform, LocalizeReferenceTransform, LocalizeTransform, LocalizeUppercaseFunction, extraDutchDictionary, extraEnglishDictionary, extraPapiamentoDictionary, extraSpanishDictionary, getLocale, provideLocalizeConfig };
|
|
707
|
+
export { BbLocalize, BbLocalizeString, BbLocalizeTemplate, LOCALIZE_CONFIG, LOCALIZE_FUNCTION, LOCALIZE_ID, LOCALIZE_MISSING_HANDLER, LOCALIZE_TRANSFORM, Localize, LocalizeDateFunction, LocalizeDictionary, LocalizeDictionaryContext, LocalizeDictionaryData, LocalizeInterpolateTransform, LocalizeLowercaseFunction, LocalizeMissingHandler, LocalizeModule, LocalizePluralTransform, LocalizeReferenceTransform, LocalizeTransform, LocalizeUppercaseFunction, extraDutchDictionary, extraEnglishDictionary, extraGermanDictionary, extraPapiamentoDictionary, extraPortugueseDictionary, extraSpanishDictionary, getLocale, provideLocalizeConfig };
|
|
554
708
|
export type { LocalizeConfig, LocalizeConfigLanguage, LocalizeDictionaryDataValues, LocalizeFunction, LocalizeFunctionMap, LocalizeHandlerProtocol, LocalizeOptions, LocalizeOptionsData, LocalizeParams };
|
|
@@ -51,6 +51,7 @@ declare class BbSelect<T> implements ControlValueAccessor, OnInit, OnDestroy {
|
|
|
51
51
|
groupBy: string | null;
|
|
52
52
|
isOpen: boolean;
|
|
53
53
|
clearSearchOnAdd: boolean;
|
|
54
|
+
compareWith: (a: any, b: any) => boolean | null;
|
|
54
55
|
addTag: boolean | ((term: string) => any | Promise<any>);
|
|
55
56
|
appendTo: string | null;
|
|
56
57
|
set disabled(value: boolean);
|
|
@@ -79,7 +80,7 @@ declare class BbSelect<T> implements ControlValueAccessor, OnInit, OnDestroy {
|
|
|
79
80
|
private handleScrolling;
|
|
80
81
|
private getScrollableContainer;
|
|
81
82
|
static ɵfac: i0.ɵɵFactoryDeclaration<BbSelect<any>, never>;
|
|
82
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BbSelect<any>, "bb-select", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "data": { "alias": "data"; "required": false; }; "required": { "alias": "required"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "grouped": { "alias": "grouped"; "required": false; }; "hideErrors": { "alias": "hideErrors"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; }; "closeOnSelect": { "alias": "closeOnSelect"; "required": false; }; "selectableGroup": { "alias": "selectableGroup"; "required": false; }; "selectableGroupAsModel": { "alias": "selectableGroupAsModel"; "required": false; }; "hideArrow": { "alias": "hideArrow"; "required": false; }; "selectOnTab": { "alias": "selectOnTab"; "required": false; }; "hideSelected": { "alias": "hideSelected"; "required": false; }; "maxSelectedItems": { "alias": "maxSelectedItems"; "required": false; }; "disablePanelScrolling": { "alias": "disablePanelScrolling"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "typeahead": { "alias": "typeahead"; "required": false; }; "trackByFn": { "alias": "trackByFn"; "required": false; }; "minTermLength": { "alias": "minTermLength"; "required": false; }; "groupBy": { "alias": "groupBy"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "clearSearchOnAdd": { "alias": "clearSearchOnAdd"; "required": false; }; "addTag": { "alias": "addTag"; "required": false; }; "appendTo": { "alias": "appendTo"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; "onBlur": "onBlur"; "onChange": "onChange"; }, ["optionTemplate", "optionGroupTemplate", "labelTemplate", "multiLabelTemplate", "notFoundTemplate"], never, true, never>;
|
|
83
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BbSelect<any>, "bb-select", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "data": { "alias": "data"; "required": false; }; "required": { "alias": "required"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "grouped": { "alias": "grouped"; "required": false; }; "hideErrors": { "alias": "hideErrors"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; }; "closeOnSelect": { "alias": "closeOnSelect"; "required": false; }; "selectableGroup": { "alias": "selectableGroup"; "required": false; }; "selectableGroupAsModel": { "alias": "selectableGroupAsModel"; "required": false; }; "hideArrow": { "alias": "hideArrow"; "required": false; }; "selectOnTab": { "alias": "selectOnTab"; "required": false; }; "hideSelected": { "alias": "hideSelected"; "required": false; }; "maxSelectedItems": { "alias": "maxSelectedItems"; "required": false; }; "disablePanelScrolling": { "alias": "disablePanelScrolling"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "typeahead": { "alias": "typeahead"; "required": false; }; "trackByFn": { "alias": "trackByFn"; "required": false; }; "minTermLength": { "alias": "minTermLength"; "required": false; }; "groupBy": { "alias": "groupBy"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "clearSearchOnAdd": { "alias": "clearSearchOnAdd"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "addTag": { "alias": "addTag"; "required": false; }; "appendTo": { "alias": "appendTo"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; "onBlur": "onBlur"; "onChange": "onChange"; }, ["optionTemplate", "optionGroupTemplate", "labelTemplate", "multiLabelTemplate", "notFoundTemplate"], never, true, never>;
|
|
83
84
|
static ngAcceptInputType_data: unknown;
|
|
84
85
|
static ngAcceptInputType_required: unknown;
|
|
85
86
|
static ngAcceptInputType_readonly: unknown;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|