@progress/kendo-angular-inputs 8.0.0-dev.202201181548 → 8.0.1
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/dist/cdn/js/kendo-angular-inputs.js +2 -2
- package/dist/cdn/main.js +1 -1
- package/dist/es/colorpicker/colorpicker.component.js +1 -1
- package/dist/es/index.js +0 -2
- package/dist/es/main.js +2 -0
- package/dist/es/maskedtextbox/maskedtextbox.component.js +1 -1
- package/dist/es/numerictextbox/numerictextbox.component.js +1 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/switch/switch.component.js +1 -1
- package/dist/es/textarea/textarea.component.js +3 -2
- package/dist/es/textbox/textbox.component.js +1 -1
- package/dist/es2015/colorpicker/colorpicker.component.d.ts +1 -1
- package/dist/es2015/colorpicker/colorpicker.component.js +1 -1
- package/dist/es2015/index.d.ts +0 -2
- package/dist/es2015/index.js +0 -2
- package/dist/es2015/index.metadata.json +1 -1
- package/dist/es2015/main.d.ts +2 -0
- package/dist/es2015/main.js +2 -0
- package/dist/es2015/maskedtextbox/maskedtextbox.component.d.ts +1 -1
- package/dist/es2015/maskedtextbox/maskedtextbox.component.js +1 -1
- package/dist/es2015/numerictextbox/numerictextbox.component.d.ts +1 -1
- package/dist/es2015/numerictextbox/numerictextbox.component.js +1 -1
- package/dist/es2015/package-metadata.js +1 -1
- package/dist/es2015/switch/switch.component.d.ts +1 -1
- package/dist/es2015/switch/switch.component.js +1 -1
- package/dist/es2015/textarea/textarea.component.d.ts +1 -1
- package/dist/es2015/textarea/textarea.component.js +10 -2
- package/dist/es2015/textbox/textbox.component.d.ts +1 -1
- package/dist/es2015/textbox/textbox.component.js +1 -1
- package/dist/fesm2015/index.js +17 -9
- package/dist/fesm5/index.js +10 -9
- package/dist/npm/colorpicker/colorpicker.component.js +1 -1
- package/dist/npm/index.js +0 -4
- package/dist/npm/main.js +4 -0
- package/dist/npm/maskedtextbox/maskedtextbox.component.js +1 -1
- package/dist/npm/numerictextbox/numerictextbox.component.js +1 -1
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/switch/switch.component.js +1 -1
- package/dist/npm/textarea/textarea.component.js +3 -2
- package/dist/npm/textbox/textbox.component.js +1 -1
- package/dist/systemjs/kendo-angular-inputs.js +1 -1
- package/package.json +5 -5
|
@@ -276,7 +276,7 @@ var ColorPickerComponent = /** @class */ (function () {
|
|
|
276
276
|
return this._size;
|
|
277
277
|
},
|
|
278
278
|
/**
|
|
279
|
-
* The size property specifies the
|
|
279
|
+
* The size property specifies the padding of the ColorPicker internal elements
|
|
280
280
|
* ([see example]({% slug appearance_colorpicker %}#toc-size)).
|
|
281
281
|
*
|
|
282
282
|
* The possible values are:
|
package/dist/es/index.js
CHANGED
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
* Generated bundle index. Do not edit.
|
|
7
7
|
*/
|
|
8
8
|
export * from './main';
|
|
9
|
-
export { CheckBoxModule } from './checkbox.module';
|
|
10
9
|
export { ColorContrastSvgComponent } from './colorpicker/color-contrast-svg.component';
|
|
11
10
|
export { ColorInputComponent } from './colorpicker/color-input.component';
|
|
12
11
|
export { ContrastValidationComponent } from './colorpicker/contrast-validation.component';
|
|
@@ -24,7 +23,6 @@ export { ColorPaletteService } from './colorpicker/services/color-palette.servic
|
|
|
24
23
|
export { FlatColorPickerService } from './colorpicker/services/flatcolorpicker.service';
|
|
25
24
|
export { MaskingService } from './maskedtextbox/masking.service';
|
|
26
25
|
export { NumericTextBoxMessages } from './numerictextbox/localization/messages';
|
|
27
|
-
export { RadioButtonModule } from './radiobutton.module';
|
|
28
26
|
export { RangeSliderCustomMessagesComponent } from './rangeslider/localization/custom-messages.component';
|
|
29
27
|
export { RangeSliderMessages } from './rangeslider/localization/messages';
|
|
30
28
|
export { SHARED_DIRECTIVES } from './shared.module';
|
package/dist/es/main.js
CHANGED
|
@@ -20,6 +20,8 @@ export { NumericTextBoxModule } from './numerictextbox.module';
|
|
|
20
20
|
export { MaskedTextBoxModule } from './maskedtextbox.module';
|
|
21
21
|
export { TextBoxModule } from './textbox.module';
|
|
22
22
|
export { TextAreaModule } from './textarea.module';
|
|
23
|
+
export { CheckBoxModule } from './checkbox.module';
|
|
24
|
+
export { RadioButtonModule } from './radiobutton.module';
|
|
23
25
|
// All ColorPicker Components
|
|
24
26
|
export { ColorPickerComponent } from './colorpicker/colorpicker.component';
|
|
25
27
|
export { ColorPaletteComponent } from './colorpicker/color-palette.component';
|
|
@@ -208,7 +208,7 @@ var MaskedTextBoxComponent = /** @class */ (function () {
|
|
|
208
208
|
return this._size;
|
|
209
209
|
},
|
|
210
210
|
/**
|
|
211
|
-
* The size property specifies the
|
|
211
|
+
* The size property specifies the padding of the MaskedTextBox internal input element
|
|
212
212
|
* ([see example]({% slug appearance_maskedtextbox %}#toc-size)).
|
|
213
213
|
* The possible values are:
|
|
214
214
|
* * `'small'`
|
|
@@ -335,7 +335,7 @@ var NumericTextBoxComponent = /** @class */ (function () {
|
|
|
335
335
|
return this._size;
|
|
336
336
|
},
|
|
337
337
|
/**
|
|
338
|
-
* The size property specifies
|
|
338
|
+
* The size property specifies padding of the NumericTextBox internal input element
|
|
339
339
|
* ([see example]({% slug appearance_numerictextbox %}#toc-size)).
|
|
340
340
|
* The possible values are:
|
|
341
341
|
* * `'small'`
|
|
@@ -9,7 +9,7 @@ export var packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-inputs',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
12
|
+
publishDate: 1642685118,
|
|
13
13
|
version: '',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
15
15
|
};
|
|
@@ -191,7 +191,7 @@ var TextAreaComponent = /** @class */ (function (_super) {
|
|
|
191
191
|
return this._size;
|
|
192
192
|
},
|
|
193
193
|
/**
|
|
194
|
-
* The size property specifies the
|
|
194
|
+
* The size property specifies the padding of the internal textarea element
|
|
195
195
|
* ([see example]({% slug appearance_textarea %}#toc-size)).
|
|
196
196
|
*
|
|
197
197
|
* The possible values are:
|
|
@@ -573,7 +573,8 @@ var TextAreaComponent = /** @class */ (function (_super) {
|
|
|
573
573
|
{ provide: KendoInput, useExisting: forwardRef(function () { return TextAreaComponent_1; }) }
|
|
574
574
|
],
|
|
575
575
|
selector: 'kendo-textarea',
|
|
576
|
-
template: "\n <textarea\n #input\n [attr.aria-multiline]=\"true\"\n [attr.aria-disabled]=\"disabled ? true : undefined\"\n [attr.aria-readonly]=\"readonly ? true : undefined\"\n class=\"k-input-inner\"\n [ngClass]=\"resizableClass\"\n [id]=\"focusableId\"\n [value]=\"value\"\n [attr.placeholder]=\"placeholder\"\n [disabled]=\"disabled\"\n [readonly]=\"readonly\"\n [attr.rows]=\"rows\"\n [attr.cols]=\"cols\"\n [attr.tabindex]=\"tabIndex\"\n [attr.title]=\"title\"\n [attr.maxlength]=\"maxlength\"\n [kendoEventsOutsideAngular]=\"{\n focus: handleInputFocus,\n blur: handleInputBlur,\n input: handleInput}\">\n </textarea>\n <ng-content select=\"kendo-textarea-suffix\"></ng-content>\n "
|
|
576
|
+
template: "\n <textarea\n #input\n [attr.aria-multiline]=\"true\"\n [attr.aria-disabled]=\"disabled ? true : undefined\"\n [attr.aria-readonly]=\"readonly ? true : undefined\"\n class=\"k-input-inner\"\n [ngClass]=\"resizableClass\"\n [id]=\"focusableId\"\n [value]=\"value\"\n [attr.placeholder]=\"placeholder\"\n [disabled]=\"disabled\"\n [readonly]=\"readonly\"\n [attr.rows]=\"rows\"\n [attr.cols]=\"cols\"\n [attr.tabindex]=\"tabIndex\"\n [attr.title]=\"title\"\n [attr.maxlength]=\"maxlength\"\n [kendoEventsOutsideAngular]=\"{\n focus: handleInputFocus,\n blur: handleInputBlur,\n input: handleInput}\">\n </textarea>\n <ng-content select=\"kendo-textarea-suffix\"></ng-content>\n ",
|
|
577
|
+
styles: ["\n :host(.k-flex-col) {\n flex-direction: column !important;\n }\n :host(.k-flex-row) {\n flex-direction: row !important;\n }\n "]
|
|
577
578
|
}),
|
|
578
579
|
tslib_1.__metadata("design:paramtypes", [LocalizationService,
|
|
579
580
|
NgZone,
|
|
@@ -216,7 +216,7 @@ var TextBoxComponent = /** @class */ (function () {
|
|
|
216
216
|
return this._size;
|
|
217
217
|
},
|
|
218
218
|
/**
|
|
219
|
-
* The size property specifies the
|
|
219
|
+
* The size property specifies the padding of the TextBox internal input element
|
|
220
220
|
* ([see example]({% slug appearance_textbox %}#toc-size)).
|
|
221
221
|
*
|
|
222
222
|
* The possible values are:
|
|
@@ -140,7 +140,7 @@ export declare class ColorPickerComponent implements OnInit, AfterViewInit, OnCh
|
|
|
140
140
|
*/
|
|
141
141
|
actionsLayout: ColorPickerActionsLayout;
|
|
142
142
|
/**
|
|
143
|
-
* The size property specifies the
|
|
143
|
+
* The size property specifies the padding of the ColorPicker internal elements
|
|
144
144
|
* ([see example]({% slug appearance_colorpicker %}#toc-size)).
|
|
145
145
|
*
|
|
146
146
|
* The possible values are:
|
|
@@ -226,7 +226,7 @@ let ColorPickerComponent = ColorPickerComponent_1 = class ColorPickerComponent {
|
|
|
226
226
|
return !this.disabled ? this._tabindex : undefined;
|
|
227
227
|
}
|
|
228
228
|
/**
|
|
229
|
-
* The size property specifies the
|
|
229
|
+
* The size property specifies the padding of the ColorPicker internal elements
|
|
230
230
|
* ([see example]({% slug appearance_colorpicker %}#toc-size)).
|
|
231
231
|
*
|
|
232
232
|
* The possible values are:
|
package/dist/es2015/index.d.ts
CHANGED
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
* Generated bundle index. Do not edit.
|
|
7
7
|
*/
|
|
8
8
|
export * from './main';
|
|
9
|
-
export { CheckBoxModule } from './checkbox.module';
|
|
10
9
|
export { ColorContrastSvgComponent } from './colorpicker/color-contrast-svg.component';
|
|
11
10
|
export { ColorInputComponent } from './colorpicker/color-input.component';
|
|
12
11
|
export { ContrastValidationComponent } from './colorpicker/contrast-validation.component';
|
|
@@ -24,7 +23,6 @@ export { ColorPaletteService } from './colorpicker/services/color-palette.servic
|
|
|
24
23
|
export { FlatColorPickerService } from './colorpicker/services/flatcolorpicker.service';
|
|
25
24
|
export { MaskingService } from './maskedtextbox/masking.service';
|
|
26
25
|
export { NumericTextBoxMessages } from './numerictextbox/localization/messages';
|
|
27
|
-
export { RadioButtonModule } from './radiobutton.module';
|
|
28
26
|
export { RangeSliderCustomMessagesComponent } from './rangeslider/localization/custom-messages.component';
|
|
29
27
|
export { RangeSliderMessages } from './rangeslider/localization/messages';
|
|
30
28
|
export { SHARED_DIRECTIVES } from './shared.module';
|
package/dist/es2015/index.js
CHANGED
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
* Generated bundle index. Do not edit.
|
|
7
7
|
*/
|
|
8
8
|
export * from './main';
|
|
9
|
-
export { CheckBoxModule } from './checkbox.module';
|
|
10
9
|
export { ColorContrastSvgComponent } from './colorpicker/color-contrast-svg.component';
|
|
11
10
|
export { ColorInputComponent } from './colorpicker/color-input.component';
|
|
12
11
|
export { ContrastValidationComponent } from './colorpicker/contrast-validation.component';
|
|
@@ -24,7 +23,6 @@ export { ColorPaletteService } from './colorpicker/services/color-palette.servic
|
|
|
24
23
|
export { FlatColorPickerService } from './colorpicker/services/flatcolorpicker.service';
|
|
25
24
|
export { MaskingService } from './maskedtextbox/masking.service';
|
|
26
25
|
export { NumericTextBoxMessages } from './numerictextbox/localization/messages';
|
|
27
|
-
export { RadioButtonModule } from './radiobutton.module';
|
|
28
26
|
export { RangeSliderCustomMessagesComponent } from './rangeslider/localization/custom-messages.component';
|
|
29
27
|
export { RangeSliderMessages } from './rangeslider/localization/messages';
|
|
30
28
|
export { SHARED_DIRECTIVES } from './shared.module';
|