@fundamental-ngx/core 0.43.12 → 0.43.13
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/esm2020/multi-combobox/multi-combobox.component.mjs +3 -3
- package/esm2020/multi-combobox/multi-combobox.module.mjs +8 -5
- package/esm2020/multi-input/multi-input.component.mjs +7 -4
- package/esm2020/multi-input/multi-input.module.mjs +8 -5
- package/esm2020/time/i18n/time-i18n.mjs +10 -4
- package/esm2020/time/time-column/time-column-config.mjs +1 -1
- package/esm2020/time/time-column/time-column.component.mjs +10 -6
- package/esm2020/time/time.component.mjs +8 -4
- package/fesm2015/fundamental-ngx-core-multi-combobox.mjs +9 -6
- package/fesm2015/fundamental-ngx-core-multi-combobox.mjs.map +1 -1
- package/fesm2015/fundamental-ngx-core-multi-input.mjs +13 -7
- package/fesm2015/fundamental-ngx-core-multi-input.mjs.map +1 -1
- package/fesm2015/fundamental-ngx-core-time.mjs +25 -11
- package/fesm2015/fundamental-ngx-core-time.mjs.map +1 -1
- package/fesm2020/fundamental-ngx-core-multi-combobox.mjs +9 -6
- package/fesm2020/fundamental-ngx-core-multi-combobox.mjs.map +1 -1
- package/fesm2020/fundamental-ngx-core-multi-input.mjs +13 -7
- package/fesm2020/fundamental-ngx-core-multi-input.mjs.map +1 -1
- package/fesm2020/fundamental-ngx-core-time.mjs +25 -11
- package/fesm2020/fundamental-ngx-core-time.mjs.map +1 -1
- package/fundamental-ngx-core-v0.43.13.tgz +0 -0
- package/multi-combobox/multi-combobox.module.d.ts +1 -1
- package/multi-input/multi-input.component.d.ts +2 -0
- package/multi-input/multi-input.module.d.ts +1 -1
- package/package.json +3 -3
- package/schematics/add-dependencies/index.js +4 -4
- package/time/i18n/time-i18n.d.ts +6 -0
- package/time/time-column/time-column-config.d.ts +1 -0
- package/fundamental-ngx-core-v0.43.12.tgz +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fundamental-ngx/core",
|
|
3
|
-
"version": "0.43.
|
|
3
|
+
"version": "0.43.13",
|
|
4
4
|
"schematics": "./schematics/collection.json",
|
|
5
5
|
"ng-update": {
|
|
6
6
|
"migrations": "./schematics/migrations.json"
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"rxjs": "^7.8.0"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@fundamental-ngx/cdk": "0.43.
|
|
32
|
-
"@fundamental-ngx/i18n": "0.43.
|
|
31
|
+
"@fundamental-ngx/cdk": "0.43.13",
|
|
32
|
+
"@fundamental-ngx/i18n": "0.43.13",
|
|
33
33
|
"compare-versions": "^5.0.0",
|
|
34
34
|
"fast-deep-equal": "3.1.3",
|
|
35
35
|
"focus-trap": "^7.1.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.43.
|
|
57
|
+
(0, package_utils_1.checkPackageVersion)(tree, '@fundamental-ngx/i18n', '0.43.13', '<')) {
|
|
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.43.
|
|
61
|
+
version: `0.43.13`,
|
|
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.43.
|
|
67
|
+
(0, package_utils_1.checkPackageVersion)(tree, '@fundamental-ngx/cdk', '0.43.13', '<')) {
|
|
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.43.
|
|
71
|
+
version: `0.43.13`,
|
|
72
72
|
name: '@fundamental-ngx/cdk',
|
|
73
73
|
overwrite: true
|
|
74
74
|
});
|
package/time/i18n/time-i18n.d.ts
CHANGED
|
@@ -11,18 +11,24 @@ export declare class TimeI18n {
|
|
|
11
11
|
/** Aria label for the 'increase hours' button */
|
|
12
12
|
increaseHoursLabel: string;
|
|
13
13
|
/** label for the 'hours' column */
|
|
14
|
+
hrsLabel: string;
|
|
15
|
+
/** full label for the 'hours' column */
|
|
14
16
|
hoursLabel: string;
|
|
15
17
|
/** Aria label for the 'decrease hours' button */
|
|
16
18
|
decreaseHoursLabel: string;
|
|
17
19
|
/** Aria label for the 'increase minutes' button */
|
|
18
20
|
increaseMinutesLabel: string;
|
|
19
21
|
/** label for the 'minutes' column */
|
|
22
|
+
minLabel: string;
|
|
23
|
+
/** full label for the 'minutes' column */
|
|
20
24
|
minutesLabel: string;
|
|
21
25
|
/** Aria label for the 'decrease minutes' button */
|
|
22
26
|
decreaseMinutesLabel: string;
|
|
23
27
|
/** Aria label for the 'increase seconds' button */
|
|
24
28
|
increaseSecondsLabel: string;
|
|
25
29
|
/** label for the 'seconds' column */
|
|
30
|
+
secLabel: string;
|
|
31
|
+
/** full label for the 'seconds' column */
|
|
26
32
|
secondsLabel: string;
|
|
27
33
|
/** Aria label for the 'decrease seconds' button */
|
|
28
34
|
decreaseSecondsLabel: string;
|
|
Binary file
|