@progress/kendo-angular-inputs 14.3.0-develop.8 → 14.3.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.
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-inputs',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1701849321,
13
- version: '14.3.0-develop.8',
12
+ publishDate: 1703060666,
13
+ version: '14.3.0',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -215,13 +215,13 @@ export class SwitchComponent {
215
215
  * @hidden
216
216
  */
217
217
  get onLabelMessage() {
218
- return this.onLabel || this.localizationService.get('on');
218
+ return this.onLabel !== undefined ? this.onLabel : this.localizationService.get('on');
219
219
  }
220
220
  /**
221
221
  * @hidden
222
222
  */
223
223
  get offLabelMessage() {
224
- return this.offLabel || this.localizationService.get('off');
224
+ return this.offLabel !== undefined ? this.offLabel : this.localizationService.get('off');
225
225
  }
226
226
  get isEnabled() {
227
227
  return !this.disabled && !this.readonly;
@@ -537,8 +537,8 @@ const packageMetadata = {
537
537
  name: '@progress/kendo-angular-inputs',
538
538
  productName: 'Kendo UI for Angular',
539
539
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
540
- publishDate: 1701849321,
541
- version: '14.3.0-develop.8',
540
+ publishDate: 1703060666,
541
+ version: '14.3.0',
542
542
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
543
543
  };
544
544
 
@@ -2543,13 +2543,13 @@ class SwitchComponent {
2543
2543
  * @hidden
2544
2544
  */
2545
2545
  get onLabelMessage() {
2546
- return this.onLabel || this.localizationService.get('on');
2546
+ return this.onLabel !== undefined ? this.onLabel : this.localizationService.get('on');
2547
2547
  }
2548
2548
  /**
2549
2549
  * @hidden
2550
2550
  */
2551
2551
  get offLabelMessage() {
2552
- return this.offLabel || this.localizationService.get('off');
2552
+ return this.offLabel !== undefined ? this.offLabel : this.localizationService.get('off');
2553
2553
  }
2554
2554
  get isEnabled() {
2555
2555
  return !this.disabled && !this.readonly;
@@ -536,8 +536,8 @@ const packageMetadata = {
536
536
  name: '@progress/kendo-angular-inputs',
537
537
  productName: 'Kendo UI for Angular',
538
538
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
539
- publishDate: 1701849321,
540
- version: '14.3.0-develop.8',
539
+ publishDate: 1703060666,
540
+ version: '14.3.0',
541
541
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
542
542
  };
543
543
 
@@ -2540,13 +2540,13 @@ class SwitchComponent {
2540
2540
  * @hidden
2541
2541
  */
2542
2542
  get onLabelMessage() {
2543
- return this.onLabel || this.localizationService.get('on');
2543
+ return this.onLabel !== undefined ? this.onLabel : this.localizationService.get('on');
2544
2544
  }
2545
2545
  /**
2546
2546
  * @hidden
2547
2547
  */
2548
2548
  get offLabelMessage() {
2549
- return this.offLabel || this.localizationService.get('off');
2549
+ return this.offLabel !== undefined ? this.offLabel : this.localizationService.get('off');
2550
2550
  }
2551
2551
  get isEnabled() {
2552
2552
  return !this.disabled && !this.readonly;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-inputs",
3
- "version": "14.3.0-develop.8",
3
+ "version": "14.3.0",
4
4
  "description": "Kendo UI for Angular Inputs Package - Everything you need to build professional form functionality (Checkbox, ColorGradient, ColorPalette, ColorPicker, FlatColorPicker, FormField, MaskedTextBox, NumericTextBox, RadioButton, RangeSlider, Slider, Switch, TextArea, and TextBox Components)",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -34,19 +34,19 @@
34
34
  "@angular/platform-browser": "13 - 17",
35
35
  "@progress/kendo-drawing": "^1.17.2",
36
36
  "@progress/kendo-licensing": "^1.0.2",
37
- "@progress/kendo-angular-buttons": "14.3.0-develop.8",
38
- "@progress/kendo-angular-common": "14.3.0-develop.8",
39
- "@progress/kendo-angular-dialog": "14.3.0-develop.8",
40
- "@progress/kendo-angular-intl": "14.3.0-develop.8",
41
- "@progress/kendo-angular-l10n": "14.3.0-develop.8",
42
- "@progress/kendo-angular-popup": "14.3.0-develop.8",
43
- "@progress/kendo-angular-icons": "14.3.0-develop.8",
37
+ "@progress/kendo-angular-buttons": "14.3.0",
38
+ "@progress/kendo-angular-common": "14.3.0",
39
+ "@progress/kendo-angular-dialog": "14.3.0",
40
+ "@progress/kendo-angular-intl": "14.3.0",
41
+ "@progress/kendo-angular-l10n": "14.3.0",
42
+ "@progress/kendo-angular-popup": "14.3.0",
43
+ "@progress/kendo-angular-icons": "14.3.0",
44
44
  "rxjs": "^6.5.3 || ^7.0.0",
45
- "@progress/kendo-angular-upload": "14.3.0-develop.8"
45
+ "@progress/kendo-angular-upload": "14.3.0"
46
46
  },
47
47
  "dependencies": {
48
48
  "tslib": "^2.3.1",
49
- "@progress/kendo-angular-schematics": "14.3.0-develop.8",
49
+ "@progress/kendo-angular-schematics": "14.3.0",
50
50
  "@progress/kendo-common": "^0.2.2",
51
51
  "@progress/kendo-draggable": "^3.0.0",
52
52
  "@progress/kendo-inputs-common": "^3.1.0"
@@ -25,11 +25,13 @@ export declare class SwitchComponent implements ControlValueAccessor, OnInit, On
25
25
  */
26
26
  get focusableId(): string;
27
27
  /**
28
- * Changes the **On** label so that it can be localized ([see example]({% slug labels_switch %})).
28
+ * Sets the **On** label ([see example]({% slug labels_switch %})).
29
+ * Takes precedence over the [custom messages component]({% slug api_inputs_switchcustommessagescomponent %}).
29
30
  */
30
31
  onLabel: string;
31
32
  /**
32
- * Changes the **Off** label so that it can be localized ([see example]({% slug labels_switch %})).
33
+ * Sets the **Off** label ([see example]({% slug labels_switch %})).
34
+ * Takes precedence over the [custom messages component]({% slug api_inputs_switchcustommessagescomponent %}).
33
35
  */
34
36
  offLabel: string;
35
37
  /**