@fundamental-ngx/core 0.43.11 → 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/busy-indicator/busy-indicator.component.mjs +2 -2
- 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/esm2020/token/tokenizer.component.mjs +3 -3
- package/fesm2015/fundamental-ngx-core-busy-indicator.mjs +1 -1
- package/fesm2015/fundamental-ngx-core-busy-indicator.mjs.map +1 -1
- 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/fesm2015/fundamental-ngx-core-token.mjs +2 -2
- package/fesm2015/fundamental-ngx-core-token.mjs.map +1 -1
- package/fesm2020/fundamental-ngx-core-busy-indicator.mjs +1 -1
- package/fesm2020/fundamental-ngx-core-busy-indicator.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/fesm2020/fundamental-ngx-core-token.mjs +2 -2
- package/fesm2020/fundamental-ngx-core-token.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.11.tgz +0 -0
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
|