@progress/kendo-angular-inputs 7.4.0-dev.202109021544 → 7.5.0-dev.202110261427
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/color-gradient.component.js +19 -7
- package/dist/es/colorpicker/color-input.component.js +36 -8
- package/dist/es/colorpicker/color-palette.component.js +13 -11
- package/dist/es/colorpicker/constants.js +24 -0
- package/dist/es/colorpicker/contrast-validation.component.js +57 -0
- package/dist/es/colorpicker/contrast.component.js +72 -0
- package/dist/es/colorpicker/localization/messages.js +12 -0
- package/dist/es/colorpicker/models/rgb.js +4 -0
- package/dist/es/colorpicker/utils/color-parser.js +52 -0
- package/dist/es/colorpicker.module.js +5 -1
- package/dist/es/index.js +2 -0
- package/dist/es/numerictextbox/numerictextbox.component.js +2 -2
- package/dist/es/numerictextbox/utils.js +8 -0
- package/dist/es/package-metadata.js +1 -1
- package/dist/es2015/colorpicker/color-gradient.component.d.ts +9 -0
- package/dist/es2015/colorpicker/color-gradient.component.js +46 -15
- package/dist/es2015/colorpicker/color-input.component.d.ts +14 -6
- package/dist/es2015/colorpicker/color-input.component.js +123 -87
- package/dist/es2015/colorpicker/color-palette.component.d.ts +14 -5
- package/dist/es2015/colorpicker/color-palette.component.js +19 -16
- package/dist/es2015/colorpicker/constants.d.ts +25 -0
- package/dist/es2015/colorpicker/constants.js +24 -0
- package/dist/es2015/colorpicker/contrast-validation.component.d.ts +18 -0
- package/dist/es2015/colorpicker/contrast-validation.component.js +54 -0
- package/dist/es2015/colorpicker/contrast.component.d.ts +21 -0
- package/dist/es2015/colorpicker/contrast.component.js +72 -0
- package/dist/es2015/colorpicker/localization/messages.d.ts +12 -0
- package/dist/es2015/colorpicker/localization/messages.js +12 -0
- package/dist/es2015/colorpicker/models/rgb.d.ts +12 -0
- package/dist/es2015/colorpicker/models/rgb.js +4 -0
- package/dist/es2015/colorpicker/utils/color-parser.d.ts +25 -0
- package/dist/es2015/colorpicker/utils/color-parser.js +52 -0
- package/dist/es2015/colorpicker.module.js +5 -1
- package/dist/es2015/index.d.ts +2 -0
- package/dist/es2015/index.js +2 -0
- package/dist/es2015/index.metadata.json +1 -1
- package/dist/es2015/numerictextbox/numerictextbox.component.js +2 -2
- package/dist/es2015/numerictextbox/utils.d.ts +4 -0
- package/dist/es2015/numerictextbox/utils.js +8 -0
- package/dist/es2015/package-metadata.js +1 -1
- package/dist/fesm2015/index.js +394 -121
- package/dist/fesm5/index.js +276 -28
- package/dist/npm/colorpicker/color-gradient.component.js +24 -12
- package/dist/npm/colorpicker/color-input.component.js +35 -7
- package/dist/npm/colorpicker/color-palette.component.js +13 -11
- package/dist/npm/colorpicker/constants.js +26 -0
- package/dist/npm/colorpicker/contrast-validation.component.js +59 -0
- package/dist/npm/colorpicker/contrast.component.js +74 -0
- package/dist/npm/colorpicker/localization/messages.js +12 -0
- package/dist/npm/colorpicker/models/rgb.js +6 -0
- package/dist/npm/colorpicker/utils/color-parser.js +52 -0
- package/dist/npm/colorpicker.module.js +5 -1
- package/dist/npm/index.js +4 -0
- package/dist/npm/numerictextbox/numerictextbox.component.js +1 -1
- package/dist/npm/numerictextbox/utils.js +8 -0
- package/dist/npm/package-metadata.js +1 -1
- package/dist/systemjs/kendo-angular-inputs.js +1 -1
- package/package.json +4 -4
package/dist/fesm5/index.js
CHANGED
|
@@ -493,7 +493,7 @@ var packageMetadata = {
|
|
|
493
493
|
name: '@progress/kendo-angular-inputs',
|
|
494
494
|
productName: 'Kendo UI for Angular',
|
|
495
495
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
496
|
-
publishDate:
|
|
496
|
+
publishDate: 1635258302,
|
|
497
497
|
version: '',
|
|
498
498
|
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'
|
|
499
499
|
};
|
|
@@ -2997,6 +2997,14 @@ var extractSignificantNumericChars = function (formattedString, separator) {
|
|
|
2997
2997
|
var significantCharacters = separator + "0123456789-";
|
|
2998
2998
|
return formattedString.split('').reduce(function (acc, curr) { return significantCharacters.includes(curr) ? ++acc : acc; }, 0);
|
|
2999
2999
|
};
|
|
3000
|
+
/**
|
|
3001
|
+
* @hidden
|
|
3002
|
+
*/
|
|
3003
|
+
var isRightClick = function (event) {
|
|
3004
|
+
var isRightClickIE = event.button && event.button === 2;
|
|
3005
|
+
var isRightClickOther = event.which && event.which === 3;
|
|
3006
|
+
return isRightClickIE || isRightClickOther;
|
|
3007
|
+
};
|
|
3000
3008
|
|
|
3001
3009
|
/**
|
|
3002
3010
|
* @hidden
|
|
@@ -3522,7 +3530,7 @@ var NumericTextBoxComponent = /** @class */ (function () {
|
|
|
3522
3530
|
});
|
|
3523
3531
|
NumericTextBoxComponent.prototype.arrowPress = function (direction, e) {
|
|
3524
3532
|
e.preventDefault();
|
|
3525
|
-
if (this.isDisabled) {
|
|
3533
|
+
if (this.isDisabled || isRightClick(e)) {
|
|
3526
3534
|
return;
|
|
3527
3535
|
}
|
|
3528
3536
|
if (!mobileOS) {
|
|
@@ -7504,6 +7512,58 @@ function nameFormat(value, safe) {
|
|
|
7504
7512
|
}
|
|
7505
7513
|
return key;
|
|
7506
7514
|
}
|
|
7515
|
+
/**
|
|
7516
|
+
* @hidden
|
|
7517
|
+
*
|
|
7518
|
+
* Returns the RGB object representation of the color based on the background color.
|
|
7519
|
+
*/
|
|
7520
|
+
var getRGBFromRGBA = function (foregroundColor, backgroundColor) {
|
|
7521
|
+
var r1 = fitIntoBounds(foregroundColor.r, 0, 255);
|
|
7522
|
+
var g1 = fitIntoBounds(foregroundColor.g, 0, 255);
|
|
7523
|
+
var b1 = fitIntoBounds(foregroundColor.b, 0, 255);
|
|
7524
|
+
var a1 = fitIntoBounds(foregroundColor.a, 0, 1);
|
|
7525
|
+
var r2 = fitIntoBounds(backgroundColor.r, 0, 255);
|
|
7526
|
+
var g2 = fitIntoBounds(backgroundColor.g, 0, 255);
|
|
7527
|
+
var b2 = fitIntoBounds(backgroundColor.b, 0, 255);
|
|
7528
|
+
return {
|
|
7529
|
+
r: Math.round(((1 - a1) * r2) + (a1 * r1)),
|
|
7530
|
+
g: Math.round(((1 - a1) * g2) + (a1 * g1)),
|
|
7531
|
+
b: Math.round(((1 - a1) * b2) + (a1 * b1))
|
|
7532
|
+
};
|
|
7533
|
+
};
|
|
7534
|
+
/**
|
|
7535
|
+
* @hidden
|
|
7536
|
+
*
|
|
7537
|
+
* Returns the relative luminance.
|
|
7538
|
+
*/
|
|
7539
|
+
var getLuminance = function (rgb) {
|
|
7540
|
+
var a = [rgb.r, rgb.g, rgb.b].map(function (v) {
|
|
7541
|
+
v /= 255;
|
|
7542
|
+
return v <= 0.03928
|
|
7543
|
+
? v / 12.92
|
|
7544
|
+
: Math.pow((v + 0.055) / 1.055, 2.4);
|
|
7545
|
+
});
|
|
7546
|
+
return a[0] * 0.2126 + a[1] * 0.7152 + a[2] * 0.0722;
|
|
7547
|
+
};
|
|
7548
|
+
/**
|
|
7549
|
+
* @hidden
|
|
7550
|
+
*
|
|
7551
|
+
* Returns the color contrast.
|
|
7552
|
+
*/
|
|
7553
|
+
var getContrast = function (luminance1, luminance2) {
|
|
7554
|
+
var brightest = Math.max(luminance1, luminance2);
|
|
7555
|
+
var darkest = Math.min(luminance1, luminance2);
|
|
7556
|
+
return (brightest + 0.05)
|
|
7557
|
+
/ (darkest + 0.05);
|
|
7558
|
+
};
|
|
7559
|
+
/**
|
|
7560
|
+
* @hidden
|
|
7561
|
+
*
|
|
7562
|
+
* Returns the color contrast from two RGBA colors.
|
|
7563
|
+
*/
|
|
7564
|
+
var getContrastFromTwoRGBAs = function (a, b) {
|
|
7565
|
+
return getContrast(getLuminance(getRGBFromRGBA(a, b)), getLuminance(getRGBFromRGBA(b, { r: 0, g: 0, b: 0, a: 1 })));
|
|
7566
|
+
};
|
|
7507
7567
|
|
|
7508
7568
|
// tslint:disable:max-line-length
|
|
7509
7569
|
/**
|
|
@@ -7611,9 +7671,10 @@ var ColorGradientLocalizationService = /** @class */ (function (_super) {
|
|
|
7611
7671
|
* @hidden
|
|
7612
7672
|
*/
|
|
7613
7673
|
var ColorInputComponent = /** @class */ (function () {
|
|
7614
|
-
function ColorInputComponent(localization, host) {
|
|
7674
|
+
function ColorInputComponent(localization, host, renderer) {
|
|
7615
7675
|
this.localization = localization;
|
|
7616
7676
|
this.host = host;
|
|
7677
|
+
this.renderer = renderer;
|
|
7617
7678
|
/**
|
|
7618
7679
|
* Sets whether the alpha slider will be shown.
|
|
7619
7680
|
*/
|
|
@@ -7635,6 +7696,7 @@ var ColorInputComponent = /** @class */ (function () {
|
|
|
7635
7696
|
* The rgba inputs values.
|
|
7636
7697
|
*/
|
|
7637
7698
|
this.rgba = {};
|
|
7699
|
+
this.subscriptions = new Subscription();
|
|
7638
7700
|
}
|
|
7639
7701
|
Object.defineProperty(ColorInputComponent.prototype, "isFocused", {
|
|
7640
7702
|
/**
|
|
@@ -7661,6 +7723,14 @@ var ColorInputComponent = /** @class */ (function () {
|
|
|
7661
7723
|
enumerable: true,
|
|
7662
7724
|
configurable: true
|
|
7663
7725
|
});
|
|
7726
|
+
ColorInputComponent.prototype.ngAfterViewInit = function () {
|
|
7727
|
+
this.initDomEvents();
|
|
7728
|
+
};
|
|
7729
|
+
ColorInputComponent.prototype.ngOnDestroy = function () {
|
|
7730
|
+
if (this.subscriptions) {
|
|
7731
|
+
this.subscriptions.unsubscribe();
|
|
7732
|
+
}
|
|
7733
|
+
};
|
|
7664
7734
|
ColorInputComponent.prototype.ngOnChanges = function (changes) {
|
|
7665
7735
|
if (isPresent(changes.value) && !this.isFocused) {
|
|
7666
7736
|
this.hex = parseColor$1(this.value, 'hex');
|
|
@@ -7696,12 +7766,23 @@ var ColorInputComponent = /** @class */ (function () {
|
|
|
7696
7766
|
ColorInputComponent.prototype.handleHexInputBlur = function () {
|
|
7697
7767
|
this.hex = parseColor$1(this.value, 'hex');
|
|
7698
7768
|
};
|
|
7699
|
-
/**
|
|
7700
|
-
* @hidden
|
|
7701
|
-
*/
|
|
7702
7769
|
ColorInputComponent.prototype.textFor = function (key) {
|
|
7703
7770
|
return this.localization.get(key);
|
|
7704
7771
|
};
|
|
7772
|
+
ColorInputComponent.prototype.toggleFormatView = function () {
|
|
7773
|
+
this.formatView = this.formatView === 'hex' ? 'rgba' : 'hex';
|
|
7774
|
+
};
|
|
7775
|
+
ColorInputComponent.prototype.initDomEvents = function () {
|
|
7776
|
+
var _this = this;
|
|
7777
|
+
if (!this.host) {
|
|
7778
|
+
return;
|
|
7779
|
+
}
|
|
7780
|
+
this.subscriptions.add(this.renderer.listen(this.toggleFormatButton.nativeElement, 'click', function () { return _this.toggleFormatView(); }));
|
|
7781
|
+
};
|
|
7782
|
+
__decorate([
|
|
7783
|
+
Input(),
|
|
7784
|
+
__metadata("design:type", String)
|
|
7785
|
+
], ColorInputComponent.prototype, "formatView", void 0);
|
|
7705
7786
|
__decorate([
|
|
7706
7787
|
Input(),
|
|
7707
7788
|
__metadata("design:type", String)
|
|
@@ -7723,28 +7804,52 @@ var ColorInputComponent = /** @class */ (function () {
|
|
|
7723
7804
|
__metadata("design:type", EventEmitter)
|
|
7724
7805
|
], ColorInputComponent.prototype, "valueChange", void 0);
|
|
7725
7806
|
__decorate([
|
|
7726
|
-
HostBinding('class.k-
|
|
7807
|
+
HostBinding('class.k-colorgradient-inputs'),
|
|
7808
|
+
HostBinding('class.k-hstack'),
|
|
7727
7809
|
__metadata("design:type", Boolean)
|
|
7728
7810
|
], ColorInputComponent.prototype, "colorInputClass", void 0);
|
|
7729
7811
|
__decorate([
|
|
7730
7812
|
ViewChild('opacityInput', { read: ElementRef, static: false }),
|
|
7731
7813
|
__metadata("design:type", ElementRef)
|
|
7732
7814
|
], ColorInputComponent.prototype, "opacityInput", void 0);
|
|
7815
|
+
__decorate([
|
|
7816
|
+
ViewChild('toggleFormatButton', { static: false }),
|
|
7817
|
+
__metadata("design:type", ElementRef)
|
|
7818
|
+
], ColorInputComponent.prototype, "toggleFormatButton", void 0);
|
|
7733
7819
|
ColorInputComponent = __decorate([
|
|
7734
7820
|
Component({
|
|
7735
7821
|
selector: 'kendo-colorinput',
|
|
7736
|
-
template: "\n <div class=\"k-
|
|
7822
|
+
template: "\n <div class=\"k-vstack\">\n <button class=\"k-colorgradient-toggle-mode k-button k-icon-button k-flat\" #toggleFormatButton>\n <span class=\"k-button-icon k-icon k-i-arrows-kpi\"></span>\n </button>\n </div>\n <input *ngIf=\"formatView === 'hex'\"\n #hexInput\n class=\"k-textbox k-hex-value\"\n [disabled]=\"disabled\"\n [readonly]=\"readonly\"\n [value]=\"hex || ''\"\n [placeholder]=\"textFor('hexInputPlaceholder')\"\n (blur)=\"handleHexInputBlur()\"\n (input)=\"handleHexValueChange(hexInput.value)\"\n />\n <ng-container *ngIf=\"formatView === 'rgba'\">\n <div class=\"k-vstack\">\n <kendo-numerictextbox\n #red\n [disabled]=\"disabled\"\n [readonly]=\"readonly\"\n [min]=\"0\"\n [max]=\"255\"\n [placeholder]=\"textFor('redInputPlaceholder')\"\n [(value)]=\"rgba.r\"\n [autoCorrect]=\"true\"\n [spinners]=\"false\"\n [format]=\"'n'\"\n [decimals]=\"0\"\n (blur)=\"handleRgbaInputBlur()\"\n (valueChange)=\"handleRgbaValueChange()\">\n </kendo-numerictextbox>\n <label [for]=\"red.focusableId\" class=\"k-colorgradient-input-label\">R</label>\n </div>\n <div class=\"k-vstack\">\n <kendo-numerictextbox\n #green\n [disabled]=\"disabled\"\n [readonly]=\"readonly\"\n [min]=\"0\"\n [max]=\"255\"\n [placeholder]=\"textFor('greenInputPlaceholder')\"\n [(value)]=\"rgba.g\"\n [autoCorrect]=\"true\"\n [spinners]=\"false\"\n [format]=\"'n'\"\n [decimals]=\"0\"\n (blur)=\"handleRgbaInputBlur()\"\n (valueChange)=\"handleRgbaValueChange()\">\n </kendo-numerictextbox>\n <label [for]=\"green.focusableId\" class=\"k-colorgradient-input-label\">G</label>\n </div>\n <div class=\"k-vstack\">\n <kendo-numerictextbox\n #blue\n [disabled]=\"disabled\"\n [readonly]=\"readonly\"\n [min]=\"0\"\n [max]=\"255\"\n [placeholder]=\"textFor('blueInputPlaceholder')\"\n [(value)]=\"rgba.b\"\n [autoCorrect]=\"true\"\n [spinners]=\"false\"\n [format]=\"'n'\"\n [decimals]=\"0\"\n (blur)=\"handleRgbaInputBlur()\"\n (valueChange)=\"handleRgbaValueChange()\">\n </kendo-numerictextbox>\n <label [for]=\"blue.focusableId\" class=\"k-colorgradient-input-label\">B</label>\n </div>\n <div class=\"k-vstack\" *ngIf=\"opacity\">\n <kendo-numerictextbox #opacityInput\n #alpha\n [disabled]=\"disabled\"\n [readonly]=\"readonly\"\n [min]=\"0\"\n [max]=\"1\"\n [placeholder]=\"textFor('alphaInputPlaceholder')\"\n [(value)]=\"rgba.a\"\n [autoCorrect]=\"true\"\n [spinners]=\"false\"\n [step]=\"0.01\"\n [format]=\"'n2'\"\n [decimals]=\"2\"\n (blur)=\"handleRgbaInputBlur()\"\n (valueChange)=\"handleRgbaValueChange()\">\n </kendo-numerictextbox>\n <label [for]=\"alpha.focusableId\" class=\"k-colorgradient-input-label\">A</label>\n </div>\n </ng-container>\n "
|
|
7737
7823
|
}),
|
|
7738
7824
|
__metadata("design:paramtypes", [LocalizationService,
|
|
7739
|
-
ElementRef
|
|
7825
|
+
ElementRef,
|
|
7826
|
+
Renderer2])
|
|
7740
7827
|
], ColorInputComponent);
|
|
7741
7828
|
return ColorInputComponent;
|
|
7742
7829
|
}());
|
|
7743
7830
|
|
|
7831
|
+
/**
|
|
7832
|
+
* @hidden
|
|
7833
|
+
*/
|
|
7744
7834
|
var DEFAULT_OUTPUT_FORMAT = 'rgba';
|
|
7745
|
-
|
|
7746
|
-
|
|
7835
|
+
/**
|
|
7836
|
+
* @hidden
|
|
7837
|
+
*/
|
|
7838
|
+
var DEFAULT_GRADIENT_BACKGROUND_COLOR = 'rgba(255, 0, 0, 1)';
|
|
7839
|
+
/**
|
|
7840
|
+
* @hidden
|
|
7841
|
+
*/
|
|
7747
7842
|
var DRAGHANDLE_MOVE_SPEED = 5;
|
|
7843
|
+
/**
|
|
7844
|
+
* @hidden
|
|
7845
|
+
*/
|
|
7846
|
+
var AAA_RATIO = 7.0;
|
|
7847
|
+
/**
|
|
7848
|
+
* @hidden
|
|
7849
|
+
*/
|
|
7850
|
+
var AA_RATIO = 4.5;
|
|
7851
|
+
|
|
7852
|
+
var serial = 0;
|
|
7748
7853
|
/**
|
|
7749
7854
|
* The ColorGradient component enables smooth color transitions and provides options for selecting specific colors over the drag handle.
|
|
7750
7855
|
* The ColorGradient is independently used by `kendo-colorpicker` and can be directly added to the page.
|
|
@@ -7794,7 +7899,7 @@ var ColorGradientComponent = /** @class */ (function () {
|
|
|
7794
7899
|
/**
|
|
7795
7900
|
* @hidden
|
|
7796
7901
|
*/
|
|
7797
|
-
this.backgroundColor =
|
|
7902
|
+
this.backgroundColor = DEFAULT_GRADIENT_BACKGROUND_COLOR;
|
|
7798
7903
|
/**
|
|
7799
7904
|
* @hidden
|
|
7800
7905
|
*
|
|
@@ -7926,6 +8031,16 @@ var ColorGradientComponent = /** @class */ (function () {
|
|
|
7926
8031
|
enumerable: true,
|
|
7927
8032
|
configurable: true
|
|
7928
8033
|
});
|
|
8034
|
+
Object.defineProperty(ColorGradientComponent.prototype, "contrastToolVisible", {
|
|
8035
|
+
/**
|
|
8036
|
+
* @hidden
|
|
8037
|
+
*/
|
|
8038
|
+
get: function () {
|
|
8039
|
+
return typeof this.contrastTool === 'string' && this.contrastTool !== '';
|
|
8040
|
+
},
|
|
8041
|
+
enumerable: true,
|
|
8042
|
+
configurable: true
|
|
8043
|
+
});
|
|
7929
8044
|
ColorGradientComponent.prototype.ngAfterViewInit = function () {
|
|
7930
8045
|
this.updateUI();
|
|
7931
8046
|
this.cdr.detectChanges();
|
|
@@ -8240,8 +8355,7 @@ var ColorGradientComponent = /** @class */ (function () {
|
|
|
8240
8355
|
};
|
|
8241
8356
|
var ColorGradientComponent_1;
|
|
8242
8357
|
__decorate([
|
|
8243
|
-
HostBinding('class.k-
|
|
8244
|
-
HostBinding('class.k-flatcolorpicker'),
|
|
8358
|
+
HostBinding('class.k-colorgradient'),
|
|
8245
8359
|
__metadata("design:type", Boolean)
|
|
8246
8360
|
], ColorGradientComponent.prototype, "hostClasses", void 0);
|
|
8247
8361
|
__decorate([
|
|
@@ -8297,6 +8411,10 @@ var ColorGradientComponent = /** @class */ (function () {
|
|
|
8297
8411
|
__metadata("design:type", String),
|
|
8298
8412
|
__metadata("design:paramtypes", [String])
|
|
8299
8413
|
], ColorGradientComponent.prototype, "value", null);
|
|
8414
|
+
__decorate([
|
|
8415
|
+
Input(),
|
|
8416
|
+
__metadata("design:type", String)
|
|
8417
|
+
], ColorGradientComponent.prototype, "contrastTool", void 0);
|
|
8300
8418
|
__decorate([
|
|
8301
8419
|
Input(),
|
|
8302
8420
|
__metadata("design:type", Number),
|
|
@@ -8349,7 +8467,8 @@ var ColorGradientComponent = /** @class */ (function () {
|
|
|
8349
8467
|
useValue: 'kendo.colorgradient'
|
|
8350
8468
|
}
|
|
8351
8469
|
],
|
|
8352
|
-
template: "\n <ng-container kendoColorGradientLocalizedMessages\n i18n-colorGradientNoColor=\"kendo.colorgradient.colorGradientNoColor|The aria-label applied to the ColorGradient component when the value is empty.\"\n colorGradientNoColor=\"Colorgradient no color chosen\"\n i18n-colorGradientHandle=\"kendo.colorgradient.colorGradientHandle|The title for the gradient color drag handle chooser.\"\n colorGradientHandle=\"Choose color\"\n i18n-clearButton=\"kendo.colorgradient.clearButton|The title for the clear button.\"\n clearButton=\"Clear value\"\n i18n-hueSliderHandle=\"kendo.colorgradient.hueSliderHandle|The title for the hue slider handle.\"\n hueSliderHandle=\"Set hue\"\n i18n-opacitySliderHandle=\"kendo.colorgradient.opacitySliderHandle|The title for the opacity slider handle.\"\n opacitySliderHandle=\"Set opacity\"\n i18n-hexInputPlaceholder=\"kendo.colorgradient.hexInputPlaceholder|The placeholder for the HEX color input.\"\n hexInputPlaceholder=\"HEX Color\"\n i18n-redInputPlaceholder=\"kendo.colorgradient.redInputPlaceholder|The placeholder for the red color input.\"\n redInputPlaceholder=\"Red\"\n i18n-greenInputPlaceholder=\"kendo.colorgradient.greenInputPlaceholder|The placeholder for the green color input.\"\n greenInputPlaceholder=\"Green\"\n i18n-blueInputPlaceholder=\"kendo.colorgradient.blueInputPlaceholder|The placeholder for the blue color input.\"\n blueInputPlaceholder=\"Blue\"\n i18n-alphaInputPlaceholder=\"kendo.colorgradient.alphaInputPlaceholder|The placeholder for the alpha input.\"\n alphaInputPlaceholder=\"Alpha\">\n </ng-container>\n <div class=\"k-
|
|
8470
|
+
template: "\n <ng-container kendoColorGradientLocalizedMessages\n i18n-colorGradientNoColor=\"kendo.colorgradient.colorGradientNoColor|The aria-label applied to the ColorGradient component when the value is empty.\"\n colorGradientNoColor=\"Colorgradient no color chosen\"\n i18n-colorGradientHandle=\"kendo.colorgradient.colorGradientHandle|The title for the gradient color drag handle chooser.\"\n colorGradientHandle=\"Choose color\"\n i18n-clearButton=\"kendo.colorgradient.clearButton|The title for the clear button.\"\n clearButton=\"Clear value\"\n i18n-hueSliderHandle=\"kendo.colorgradient.hueSliderHandle|The title for the hue slider handle.\"\n hueSliderHandle=\"Set hue\"\n i18n-opacitySliderHandle=\"kendo.colorgradient.opacitySliderHandle|The title for the opacity slider handle.\"\n opacitySliderHandle=\"Set opacity\"\n i18n-hexInputPlaceholder=\"kendo.colorgradient.hexInputPlaceholder|The placeholder for the HEX color input.\"\n hexInputPlaceholder=\"HEX Color\"\n i18n-redInputPlaceholder=\"kendo.colorgradient.redInputPlaceholder|The placeholder for the red color input.\"\n redInputPlaceholder=\"Red\"\n i18n-greenInputPlaceholder=\"kendo.colorgradient.greenInputPlaceholder|The placeholder for the green color input.\"\n greenInputPlaceholder=\"Green\"\n i18n-blueInputPlaceholder=\"kendo.colorgradient.blueInputPlaceholder|The placeholder for the blue color input.\"\n blueInputPlaceholder=\"Blue\"\n i18n-alphaInputPlaceholder=\"kendo.colorgradient.alphaInputPlaceholder|The placeholder for the alpha input.\"\n alphaInputPlaceholder=\"Alpha\"\n i18n-passContrast=\"kendo.colorgradient.passContrast|The pass message for the contrast tool.\"\n passContrast=\"Pass\"\n i18n-failContrast=\"kendo.colorgradient.failContrast|The fail message for the contrast tool.\"\n failContrast=\"Fail\"\n i18n-contrastRatio=\"kendo.colorgradient.contrastRatio|The contrast ratio message for the contrast tool.\"\n contrastRatio=\"Contrast ratio\">\n </ng-container>\n <div class=\"k-colorgradient-canvas k-hstack\">\n <div class=\"k-hsv-rectangle\" [style.background]=\"backgroundColor\">\n <div\n #gradientWrapper\n kendoDraggable\n class=\"k-hsv-gradient\"\n (click)=\"changePosition($event)\"\n (kendoPress)=\"handleDragPress($event)\"\n (kendoDrag)=\"onHandleDrag($event)\"\n (kendoRelease)=\"onHandleRelease()\">\n <div\n #gradientDragHandle\n class=\"k-hsv-draghandle k-draghandle\"\n tabindex=\"0\"\n [attr.title]=\"colorGradientHandleTitle\"\n [attr.aria-label]=\"colorGradientHandleAriaLabel\"\n >\n </div>\n </div>\n </div>\n <div class=\"k-hsv-controls k-hstack {{ clearButton ? 'k-sliders-wrap-clearable' : '' }}\">\n <span class=\"k-clear-color k-button k-flat k-button-icon\"\n *ngIf=\"clearButton\"\n (click)=\"reset()\"\n (keydown.enter)=\"reset()\"\n (keydown.space)=\"reset()\"\n [attr.aria-label]=\"clearButtonTitle\"\n [attr.title]=\"clearButtonTitle\"\n tabindex=\"0\">\n <span class=\"k-icon k-i-reset-color\"></span>\n </span>\n <kendo-slider\n [ngClass]=\"{'k-align-self-end': clearButton}\"\n class=\"k-hue-slider k-colorgradient-slider\"\n [dragHandleTitle]=\"hueSliderTitle\"\n [disabled]=\"disabled\"\n [readonly]=\"readonly\"\n [showButtons]=\"false\"\n [tickPlacement]=\"'none'\"\n [vertical]=\"true\"\n [min]=\"0\"\n [max]=\"360\"\n [smallStep]=\"5\"\n [largeStep]=\"10\"\n [(value)]=\"hsva.h\"\n (valueChange)=\"handleHueSliderChange($event)\"\n >\n </kendo-slider>\n <kendo-slider\n *ngIf=\"opacity && format === 'rgba'\"\n #alphaSlider\n [ngClass]=\"{'k-align-self-end': clearButton}\"\n class=\"k-alpha-slider k-colorgradient-slider\"\n [dragHandleTitle]=\"opacitySliderTitle\"\n [disabled]=\"disabled\"\n [readonly]=\"readonly\"\n [showButtons]=\"false\"\n [tickPlacement]=\"'none'\"\n [vertical]=\"true\"\n [min]=\"0\"\n [max]=\"100\"\n [smallStep]=\"1\"\n [largeStep]=\"10\"\n [value]=\"alphaSliderValue\"\n (valueChange)=\"handleAlphaSliderChange($event)\"\n >\n </kendo-slider>\n </div>\n </div>\n <kendo-colorinput #inputs\n [opacity]=\"opacity\"\n [formatView]=\"format\"\n [value]=\"value\"\n [disabled]=\"disabled\"\n [readonly]=\"readonly\"\n (valueChange)=\"handleInputsValueChange($event)\"\n >\n </kendo-colorinput>\n <div class=\"k-colorgradient-color-contrast k-vbox\" *ngIf=\"contrastToolVisible\"\n kendoContrastTool\n [value]=\"value\"\n [ratio]=\"contrastTool\">\n </div>\n ",
|
|
8471
|
+
styles: ["\n .k-clear-color {\n position: absolute;\n left: 50%;\n transform: translateX(-50%);\n }\n .k-align-self-end {\n height: 140px;\n }\n "]
|
|
8353
8472
|
}),
|
|
8354
8473
|
__metadata("design:paramtypes", [ElementRef,
|
|
8355
8474
|
NgZone,
|
|
@@ -9284,15 +9403,18 @@ var ColorPaletteComponent = /** @class */ (function () {
|
|
|
9284
9403
|
*/
|
|
9285
9404
|
ColorPaletteComponent.prototype.handleHostBlur = function () {
|
|
9286
9405
|
this.notifyNgTouched();
|
|
9406
|
+
this.handleCellFocusOnBlur();
|
|
9287
9407
|
};
|
|
9288
9408
|
/**
|
|
9289
9409
|
* @hidden
|
|
9290
9410
|
*/
|
|
9291
|
-
ColorPaletteComponent.prototype.handleCellSelection = function (value,
|
|
9411
|
+
ColorPaletteComponent.prototype.handleCellSelection = function (value, cell) {
|
|
9292
9412
|
if (this.readonly) {
|
|
9293
9413
|
return;
|
|
9294
9414
|
}
|
|
9295
|
-
this.
|
|
9415
|
+
this.selectedCell = cell;
|
|
9416
|
+
this.focusedCell = this.selectedCell;
|
|
9417
|
+
this.focusInComponent = true;
|
|
9296
9418
|
var parsedColor = parseColor$1(value, this.format, false);
|
|
9297
9419
|
this.cellSelection.emit(parsedColor);
|
|
9298
9420
|
if (this.value !== parsedColor) {
|
|
@@ -9305,8 +9427,8 @@ var ColorPaletteComponent = /** @class */ (function () {
|
|
|
9305
9427
|
this.selection = parsedColor;
|
|
9306
9428
|
this.selectionChange.emit(parsedColor);
|
|
9307
9429
|
}
|
|
9308
|
-
if (
|
|
9309
|
-
this.activeCellId =
|
|
9430
|
+
if (cell) {
|
|
9431
|
+
this.activeCellId = this.selectedCell.row + "-" + this.selectedCell.col;
|
|
9310
9432
|
}
|
|
9311
9433
|
};
|
|
9312
9434
|
/**
|
|
@@ -9352,6 +9474,10 @@ var ColorPaletteComponent = /** @class */ (function () {
|
|
|
9352
9474
|
this.notifyNgChanged(undefined);
|
|
9353
9475
|
}
|
|
9354
9476
|
};
|
|
9477
|
+
ColorPaletteComponent.prototype.handleCellFocusOnBlur = function () {
|
|
9478
|
+
this.focusInComponent = false;
|
|
9479
|
+
this.focusedCell = this.selectedCell;
|
|
9480
|
+
};
|
|
9355
9481
|
ColorPaletteComponent.prototype.setRows = function () {
|
|
9356
9482
|
if (!isPresent(this.palette)) {
|
|
9357
9483
|
return;
|
|
@@ -9364,11 +9490,7 @@ var ColorPaletteComponent = /** @class */ (function () {
|
|
|
9364
9490
|
return;
|
|
9365
9491
|
}
|
|
9366
9492
|
this.focusedCell = this.service.getNextCell(this.focusedCell, horizontalStep, verticalStep);
|
|
9367
|
-
|
|
9368
|
-
if (this.selection !== selection) {
|
|
9369
|
-
this.selection = selection;
|
|
9370
|
-
this.selectionChange.emit(selection);
|
|
9371
|
-
}
|
|
9493
|
+
this.focusInComponent = true;
|
|
9372
9494
|
};
|
|
9373
9495
|
ColorPaletteComponent.prototype.setHostElementAriaLabel = function () {
|
|
9374
9496
|
var parsed = parseColor$1(this.value, this.format);
|
|
@@ -9449,7 +9571,6 @@ var ColorPaletteComponent = /** @class */ (function () {
|
|
|
9449
9571
|
__metadata("design:paramtypes", [])
|
|
9450
9572
|
], ColorPaletteComponent.prototype, "hostTabindex", null);
|
|
9451
9573
|
__decorate([
|
|
9452
|
-
HostBinding('class.k-widget'),
|
|
9453
9574
|
HostBinding('class.k-colorpalette'),
|
|
9454
9575
|
__metadata("design:type", Boolean)
|
|
9455
9576
|
], ColorPaletteComponent.prototype, "hostClasses", void 0);
|
|
@@ -9499,7 +9620,7 @@ var ColorPaletteComponent = /** @class */ (function () {
|
|
|
9499
9620
|
useValue: 'kendo.colorpalette'
|
|
9500
9621
|
}
|
|
9501
9622
|
],
|
|
9502
|
-
template: "\n <ng-container kendoColorPaletteLocalizedMessages\n i18n-colorPaletteNoColor=\"kendo.colorpalette.colorPaletteNoColor|The aria-label applied to the ColorPalette component when the value is empty.\"\n colorPaletteNoColor=\"Colorpalette no color chosen\">\n </ng-container>\n <div role=\"listbox\"\n [attr.aria-activedescendant]=\"activeCellId\">\n <table class=\"k-
|
|
9623
|
+
template: "\n <ng-container kendoColorPaletteLocalizedMessages\n i18n-colorPaletteNoColor=\"kendo.colorpalette.colorPaletteNoColor|The aria-label applied to the ColorPalette component when the value is empty.\"\n colorPaletteNoColor=\"Colorpalette no color chosen\">\n </ng-container>\n <div role=\"listbox\" class=\"k-colorpalette-table-wrap\"\n [attr.aria-activedescendant]=\"activeCellId\">\n <table class=\"k-colorpalette-table k-palette\">\n <tbody>\n <tr *ngFor=\"let row of colorRows; let rowIndex = index\">\n <td *ngFor=\"let color of row; let colIndex = index\"\n role=\"option\"\n [class.k-state-selected]=\"selectedCell?.row === rowIndex && selectedCell?.col === colIndex\"\n [class.k-state-focus]=\"focusInComponent && focusedCell?.row === rowIndex && focusedCell?.col === colIndex\"\n [attr.aria-selected]=\"selectedCell?.row === rowIndex && selectedCell?.col === colIndex\"\n [attr.aria-label]=\"color\"\n class=\"k-colorpalette-tile\"\n [id]=\"rowIndex + '-' + colIndex\"\n [attr.value]=\"color\"\n (click)=\"handleCellSelection(color, { row: rowIndex, col: colIndex })\"\n [ngStyle]=\"{\n backgroundColor: color,\n width: tileLayout.width + 'px',\n height: tileLayout.height + 'px',\n minWidth: tileLayout.width + 'px'\n }\">\n </td>\n </tr>\n </tbody>\n </table>\n </div>\n "
|
|
9503
9624
|
}),
|
|
9504
9625
|
__metadata("design:paramtypes", [ElementRef,
|
|
9505
9626
|
ColorPaletteService,
|
|
@@ -9562,6 +9683,18 @@ var ColorPickerMessages = /** @class */ (function (_super) {
|
|
|
9562
9683
|
Input(),
|
|
9563
9684
|
__metadata("design:type", String)
|
|
9564
9685
|
], ColorPickerMessages.prototype, "alphaInputPlaceholder", void 0);
|
|
9686
|
+
__decorate([
|
|
9687
|
+
Input(),
|
|
9688
|
+
__metadata("design:type", String)
|
|
9689
|
+
], ColorPickerMessages.prototype, "passContrast", void 0);
|
|
9690
|
+
__decorate([
|
|
9691
|
+
Input(),
|
|
9692
|
+
__metadata("design:type", String)
|
|
9693
|
+
], ColorPickerMessages.prototype, "failContrast", void 0);
|
|
9694
|
+
__decorate([
|
|
9695
|
+
Input(),
|
|
9696
|
+
__metadata("design:type", String)
|
|
9697
|
+
], ColorPickerMessages.prototype, "contrastRatio", void 0);
|
|
9565
9698
|
return ColorPickerMessages;
|
|
9566
9699
|
}(ComponentMessages));
|
|
9567
9700
|
|
|
@@ -9652,6 +9785,119 @@ var FocusOnDomReadyDirective = /** @class */ (function () {
|
|
|
9652
9785
|
return FocusOnDomReadyDirective;
|
|
9653
9786
|
}());
|
|
9654
9787
|
|
|
9788
|
+
/**
|
|
9789
|
+
* @hidden
|
|
9790
|
+
*/
|
|
9791
|
+
var ContrastValidationComponent = /** @class */ (function () {
|
|
9792
|
+
function ContrastValidationComponent(localization) {
|
|
9793
|
+
this.localization = localization;
|
|
9794
|
+
}
|
|
9795
|
+
Object.defineProperty(ContrastValidationComponent.prototype, "passMessage", {
|
|
9796
|
+
get: function () {
|
|
9797
|
+
return this.localization.get('passContrast');
|
|
9798
|
+
},
|
|
9799
|
+
enumerable: true,
|
|
9800
|
+
configurable: true
|
|
9801
|
+
});
|
|
9802
|
+
Object.defineProperty(ContrastValidationComponent.prototype, "failMessage", {
|
|
9803
|
+
get: function () {
|
|
9804
|
+
return this.localization.get('failContrast');
|
|
9805
|
+
},
|
|
9806
|
+
enumerable: true,
|
|
9807
|
+
configurable: true
|
|
9808
|
+
});
|
|
9809
|
+
Object.defineProperty(ContrastValidationComponent.prototype, "contrastText", {
|
|
9810
|
+
get: function () {
|
|
9811
|
+
return this.type + ": " + this.ratio.toFixed(1);
|
|
9812
|
+
},
|
|
9813
|
+
enumerable: true,
|
|
9814
|
+
configurable: true
|
|
9815
|
+
});
|
|
9816
|
+
__decorate([
|
|
9817
|
+
Input(),
|
|
9818
|
+
__metadata("design:type", String)
|
|
9819
|
+
], ContrastValidationComponent.prototype, "type", void 0);
|
|
9820
|
+
__decorate([
|
|
9821
|
+
Input(),
|
|
9822
|
+
__metadata("design:type", Number)
|
|
9823
|
+
], ContrastValidationComponent.prototype, "ratio", void 0);
|
|
9824
|
+
__decorate([
|
|
9825
|
+
Input(),
|
|
9826
|
+
__metadata("design:type", Boolean)
|
|
9827
|
+
], ContrastValidationComponent.prototype, "pass", void 0);
|
|
9828
|
+
ContrastValidationComponent = __decorate([
|
|
9829
|
+
Component({
|
|
9830
|
+
selector: '[kendoContrastValidation]',
|
|
9831
|
+
template: "\n <span>{{contrastText}}</span>\n <span class=\"k-contrast-validation k-text-success\" *ngIf=\"pass\">\n {{passMessage}}\n <span class=\"k-icon k-i-check\"></span>\n </span>\n <span class=\"k-contrast-validation k-text-error\" *ngIf=\"!pass\">\n {{failMessage}}\n <span class=\"k-icon k-i-close\"></span>\n </span>\n "
|
|
9832
|
+
}),
|
|
9833
|
+
__metadata("design:paramtypes", [LocalizationService])
|
|
9834
|
+
], ContrastValidationComponent);
|
|
9835
|
+
return ContrastValidationComponent;
|
|
9836
|
+
}());
|
|
9837
|
+
|
|
9838
|
+
/**
|
|
9839
|
+
* @hidden
|
|
9840
|
+
*/
|
|
9841
|
+
var ContrastComponent = /** @class */ (function () {
|
|
9842
|
+
function ContrastComponent(localization) {
|
|
9843
|
+
this.localization = localization;
|
|
9844
|
+
this.aaRatio = AA_RATIO;
|
|
9845
|
+
this.aaaRatio = AAA_RATIO;
|
|
9846
|
+
}
|
|
9847
|
+
Object.defineProperty(ContrastComponent.prototype, "formatedRatio", {
|
|
9848
|
+
get: function () {
|
|
9849
|
+
return this.contrastRatio.toFixed(2);
|
|
9850
|
+
},
|
|
9851
|
+
enumerable: true,
|
|
9852
|
+
configurable: true
|
|
9853
|
+
});
|
|
9854
|
+
Object.defineProperty(ContrastComponent.prototype, "contrastRatioMessage", {
|
|
9855
|
+
get: function () {
|
|
9856
|
+
return this.localization.get('contrastRatio');
|
|
9857
|
+
},
|
|
9858
|
+
enumerable: true,
|
|
9859
|
+
configurable: true
|
|
9860
|
+
});
|
|
9861
|
+
Object.defineProperty(ContrastComponent.prototype, "satisfiesAACondition", {
|
|
9862
|
+
get: function () {
|
|
9863
|
+
return this.contrastRatio >= this.aaRatio;
|
|
9864
|
+
},
|
|
9865
|
+
enumerable: true,
|
|
9866
|
+
configurable: true
|
|
9867
|
+
});
|
|
9868
|
+
Object.defineProperty(ContrastComponent.prototype, "satisfiesAAACondition", {
|
|
9869
|
+
get: function () {
|
|
9870
|
+
return this.contrastRatio >= this.aaaRatio;
|
|
9871
|
+
},
|
|
9872
|
+
enumerable: true,
|
|
9873
|
+
configurable: true
|
|
9874
|
+
});
|
|
9875
|
+
Object.defineProperty(ContrastComponent.prototype, "contrastRatio", {
|
|
9876
|
+
get: function () {
|
|
9877
|
+
var contrast = getContrastFromTwoRGBAs(getRGBA(this.value), getRGBA(this.ratio));
|
|
9878
|
+
return contrast;
|
|
9879
|
+
},
|
|
9880
|
+
enumerable: true,
|
|
9881
|
+
configurable: true
|
|
9882
|
+
});
|
|
9883
|
+
__decorate([
|
|
9884
|
+
Input(),
|
|
9885
|
+
__metadata("design:type", String)
|
|
9886
|
+
], ContrastComponent.prototype, "value", void 0);
|
|
9887
|
+
__decorate([
|
|
9888
|
+
Input(),
|
|
9889
|
+
__metadata("design:type", String)
|
|
9890
|
+
], ContrastComponent.prototype, "ratio", void 0);
|
|
9891
|
+
ContrastComponent = __decorate([
|
|
9892
|
+
Component({
|
|
9893
|
+
selector: '[kendoContrastTool]',
|
|
9894
|
+
template: "\n <div class=\"k-contrast-ratio\">\n <span class=\"k-contrast-ratio-text\">{{contrastRatioMessage}}: {{formatedRatio}}</span>\n <span class=\"k-contrast-validation k-text-success\" *ngIf=\"satisfiesAACondition\">\n <span class=\"k-icon k-i-check\"></span>\n <span class=\"k-icon k-i-check\" *ngIf=\"satisfiesAAACondition\"></span>\n </span>\n <span class=\"k-contrast-validation k-text-error\" *ngIf=\"!satisfiesAACondition\">\n <span class=\"k-icon k-i-close\"></span>\n </span>\n </div>\n <div kendoContrastValidation\n type=\"AA\"\n [ratio]=\"aaaRatio\"\n [pass]=\"satisfiesAACondition\">\n </div>\n <div kendoContrastValidation\n type=\"AAA\"\n [ratio]=\"aaaRatio\"\n [pass]=\"satisfiesAAACondition\">\n </div>\n "
|
|
9895
|
+
}),
|
|
9896
|
+
__metadata("design:paramtypes", [LocalizationService])
|
|
9897
|
+
], ContrastComponent);
|
|
9898
|
+
return ContrastComponent;
|
|
9899
|
+
}());
|
|
9900
|
+
|
|
9655
9901
|
var PUBLIC_DIRECTIVES = [
|
|
9656
9902
|
ColorPickerComponent,
|
|
9657
9903
|
ColorPaletteComponent,
|
|
@@ -9661,7 +9907,9 @@ var PUBLIC_DIRECTIVES = [
|
|
|
9661
9907
|
];
|
|
9662
9908
|
var INTERNAL_DIRECTIVES = [
|
|
9663
9909
|
ColorInputComponent,
|
|
9664
|
-
FocusOnDomReadyDirective
|
|
9910
|
+
FocusOnDomReadyDirective,
|
|
9911
|
+
ContrastComponent,
|
|
9912
|
+
ContrastValidationComponent
|
|
9665
9913
|
];
|
|
9666
9914
|
/**
|
|
9667
9915
|
* Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
|
|
@@ -10365,4 +10613,4 @@ var InputsModule = /** @class */ (function () {
|
|
|
10365
10613
|
* Generated bundle index. Do not edit.
|
|
10366
10614
|
*/
|
|
10367
10615
|
|
|
10368
|
-
export { CheckBoxModule, ColorInputComponent, FocusOnDomReadyDirective, ColorGradientLocalizationService, ColorPaletteLocalizationService, ColorPickerLocalizationService, ColorPickerCustomMessagesComponent, ColorPickerMessages, ColorPaletteService, MaskingService, NumericTextBoxMessages, RadioButtonModule, RangeSliderCustomMessagesComponent, RangeSliderMessages, SHARED_DIRECTIVES, SliderCustomMessagesComponent, SliderMessages, SliderBase, SlidersCommonModule, SwitchCustomMessagesComponent, Messages, TextFieldsBase, TextBoxCustomMessagesComponent, TextBoxMessages, SliderComponent, RangeSliderComponent, LabelTemplateDirective, SwitchComponent, TextBoxContainerComponent, TextBoxDirective, TextAreaDirective, NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, MaskedTextBoxComponent, InputsModule, SliderTicksComponent, SliderModule, RangeSliderModule, SwitchModule, NumericTextBoxModule, MaskedTextBoxModule, TextBoxModule, TextAreaModule, ColorPickerComponent, ColorPaletteComponent, ColorGradientComponent, ColorPickerModule, ActiveColorClickEvent, CheckBoxDirective, RadioButtonDirective, HintComponent, ErrorComponent, FormFieldComponent, FormFieldModule, TextBoxComponent, TextBoxPrefixTemplateDirective, TextBoxSuffixTemplateDirective, TextAreaComponent, TextAreaSuffixComponent, InputSeparatorComponent, SharedModule, LocalizedColorPickerMessagesDirective, LocalizedNumericTextBoxMessagesDirective, LocalizedTextBoxMessagesDirective, LocalizedSliderMessagesDirective, LocalizedRangeSliderMessagesDirective, LocalizedSwitchMessagesDirective };
|
|
10616
|
+
export { CheckBoxModule, ColorInputComponent, ContrastValidationComponent, ContrastComponent, FocusOnDomReadyDirective, ColorGradientLocalizationService, ColorPaletteLocalizationService, ColorPickerLocalizationService, ColorPickerCustomMessagesComponent, ColorPickerMessages, ColorPaletteService, MaskingService, NumericTextBoxMessages, RadioButtonModule, RangeSliderCustomMessagesComponent, RangeSliderMessages, SHARED_DIRECTIVES, SliderCustomMessagesComponent, SliderMessages, SliderBase, SlidersCommonModule, SwitchCustomMessagesComponent, Messages, TextFieldsBase, TextBoxCustomMessagesComponent, TextBoxMessages, SliderComponent, RangeSliderComponent, LabelTemplateDirective, SwitchComponent, TextBoxContainerComponent, TextBoxDirective, TextAreaDirective, NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent, MaskedTextBoxComponent, InputsModule, SliderTicksComponent, SliderModule, RangeSliderModule, SwitchModule, NumericTextBoxModule, MaskedTextBoxModule, TextBoxModule, TextAreaModule, ColorPickerComponent, ColorPaletteComponent, ColorGradientComponent, ColorPickerModule, ActiveColorClickEvent, CheckBoxDirective, RadioButtonDirective, HintComponent, ErrorComponent, FormFieldComponent, FormFieldModule, TextBoxComponent, TextBoxPrefixTemplateDirective, TextBoxSuffixTemplateDirective, TextAreaComponent, TextAreaSuffixComponent, InputSeparatorComponent, SharedModule, LocalizedColorPickerMessagesDirective, LocalizedNumericTextBoxMessagesDirective, LocalizedTextBoxMessagesDirective, LocalizedSliderMessagesDirective, LocalizedRangeSliderMessagesDirective, LocalizedSwitchMessagesDirective };
|