@fundamental-ngx/core 0.46.2-rc.8 → 0.46.2-rc.9
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/esm2022/multi-combobox/index.mjs +2 -1
- package/esm2022/multi-combobox/multi-announcer/multi-announcer.directive.mjs +74 -0
- package/esm2022/multi-combobox/multi-combobox.component.mjs +6 -4
- package/esm2022/multi-combobox/multi-combobox.module.mjs +5 -4
- package/esm2022/multi-input/multi-input.component.mjs +6 -4
- package/fesm2022/fundamental-ngx-core-multi-combobox.mjs +82 -11
- package/fesm2022/fundamental-ngx-core-multi-combobox.mjs.map +1 -1
- package/fesm2022/fundamental-ngx-core-multi-input.mjs +5 -3
- package/fesm2022/fundamental-ngx-core-multi-input.mjs.map +1 -1
- package/fundamental-ngx-core-v0.46.2-rc.9.tgz +0 -0
- package/multi-combobox/index.d.ts +1 -0
- package/multi-combobox/multi-announcer/multi-announcer.directive.d.ts +23 -0
- package/multi-combobox/multi-combobox.module.d.ts +2 -1
- package/package.json +3 -3
- package/schematics/add-dependencies/index.js +4 -4
- package/fundamental-ngx-core-v0.46.2-rc.8.tgz +0 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class MultiAnnouncerDirective {
|
|
3
|
+
/** @hidden */
|
|
4
|
+
multiAnnouncerOptions: any[];
|
|
5
|
+
/** @hidden */
|
|
6
|
+
private _noResultsAnnounced;
|
|
7
|
+
/** @hidden */
|
|
8
|
+
private _resultsAnnounced;
|
|
9
|
+
/** @hidden */
|
|
10
|
+
private _announcement;
|
|
11
|
+
/** @hidden */
|
|
12
|
+
private readonly _liveAnnouncer;
|
|
13
|
+
/** @hidden */
|
|
14
|
+
private _resolveTranslation;
|
|
15
|
+
/** @hidden */
|
|
16
|
+
private _makeSearchTermChangeAnnouncements;
|
|
17
|
+
/** @hidden */
|
|
18
|
+
private _buildAnnouncement;
|
|
19
|
+
/** @hidden */
|
|
20
|
+
private _makeAnnouncement;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MultiAnnouncerDirective, never>;
|
|
22
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MultiAnnouncerDirective, "[fdMultiAnnouncer]", ["fdMultiAnnouncer"], { "multiAnnouncerOptions": { "alias": "multiAnnouncerOptions"; "required": false; }; }, {}, never, never, true, never>;
|
|
23
|
+
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./multi-combobox.component";
|
|
3
3
|
import * as i2 from "./select-all-toggler/select-all-toggler.component";
|
|
4
|
+
import * as i3 from "./multi-announcer/multi-announcer.directive";
|
|
4
5
|
export declare class MultiComboboxModule {
|
|
5
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiComboboxModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MultiComboboxModule, never, [typeof i1.MultiComboboxComponent, typeof i2.SelectAllTogglerComponent], [typeof i1.MultiComboboxComponent, typeof i2.SelectAllTogglerComponent]>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MultiComboboxModule, never, [typeof i1.MultiComboboxComponent, typeof i2.SelectAllTogglerComponent, typeof i3.MultiAnnouncerDirective], [typeof i1.MultiComboboxComponent, typeof i2.SelectAllTogglerComponent, typeof i3.MultiAnnouncerDirective]>;
|
|
7
8
|
static ɵinj: i0.ɵɵInjectorDeclaration<MultiComboboxModule>;
|
|
8
9
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fundamental-ngx/core",
|
|
3
|
-
"version": "0.46.2-rc.
|
|
3
|
+
"version": "0.46.2-rc.9",
|
|
4
4
|
"schematics": "./schematics/collection.json",
|
|
5
5
|
"ng-update": {
|
|
6
6
|
"migrations": "./schematics/migrations.json"
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"@angular/forms": "^16.2.0",
|
|
24
24
|
"@angular/platform-browser": "^16.2.0",
|
|
25
25
|
"@angular/router": "^16.2.0",
|
|
26
|
-
"@fundamental-ngx/cdk": "0.46.2-rc.
|
|
27
|
-
"@fundamental-ngx/i18n": "0.46.2-rc.
|
|
26
|
+
"@fundamental-ngx/cdk": "0.46.2-rc.9",
|
|
27
|
+
"@fundamental-ngx/i18n": "0.46.2-rc.9",
|
|
28
28
|
"@sap-theming/theming-base-content": "^11.7.0",
|
|
29
29
|
"fundamental-styles": "0.30.2",
|
|
30
30
|
"rxjs": "^7.8.0"
|
|
@@ -54,21 +54,21 @@ function addExternalLibraries(options) {
|
|
|
54
54
|
});
|
|
55
55
|
}
|
|
56
56
|
if (!(0, package_utils_1.hasPackage)(tree, '@fundamental-ngx/i18n') ||
|
|
57
|
-
(0, package_utils_1.checkPackageVersion)(tree, '@fundamental-ngx/i18n', '0.46.2-rc.
|
|
57
|
+
(0, package_utils_1.checkPackageVersion)(tree, '@fundamental-ngx/i18n', '0.46.2-rc.9', '<')) {
|
|
58
58
|
dependencies.push({
|
|
59
59
|
type: dependencies_1.NodeDependencyType.Default,
|
|
60
60
|
// Will be replaced with the real version during sync-version script run
|
|
61
|
-
version: `0.46.2-rc.
|
|
61
|
+
version: `0.46.2-rc.9`,
|
|
62
62
|
name: '@fundamental-ngx/i18n',
|
|
63
63
|
overwrite: true
|
|
64
64
|
});
|
|
65
65
|
}
|
|
66
66
|
if (!(0, package_utils_1.hasPackage)(tree, '@fundamental-ngx/cdk') ||
|
|
67
|
-
(0, package_utils_1.checkPackageVersion)(tree, '@fundamental-ngx/cdk', '0.46.2-rc.
|
|
67
|
+
(0, package_utils_1.checkPackageVersion)(tree, '@fundamental-ngx/cdk', '0.46.2-rc.9', '<')) {
|
|
68
68
|
dependencies.push({
|
|
69
69
|
type: dependencies_1.NodeDependencyType.Default,
|
|
70
70
|
// Will be replaced with the real version during sync-version script run
|
|
71
|
-
version: `0.46.2-rc.
|
|
71
|
+
version: `0.46.2-rc.9`,
|
|
72
72
|
name: '@fundamental-ngx/cdk',
|
|
73
73
|
overwrite: true
|
|
74
74
|
});
|
|
Binary file
|