@syncfusion/ej2-angular-inputs 19.3.57 → 19.4.43
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/@syncfusion/ej2-angular-inputs.es5.js +177 -3
- package/@syncfusion/ej2-angular-inputs.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-inputs.js +166 -3
- package/@syncfusion/ej2-angular-inputs.js.map +1 -1
- package/CHANGELOG.md +34 -0
- package/dist/ej2-angular-inputs.umd.js +181 -1
- package/dist/ej2-angular-inputs.umd.js.map +1 -1
- package/dist/ej2-angular-inputs.umd.min.js +2 -2
- package/dist/ej2-angular-inputs.umd.min.js.map +1 -1
- package/ej2-angular-inputs.d.ts +1 -0
- package/ej2-angular-inputs.metadata.json +1 -1
- package/package.json +8 -8
- package/postinstall/tagchange.js +1 -1
- package/schematics/utils/lib-details.d.ts +3 -3
- package/schematics/utils/lib-details.js +3 -3
- package/schematics/utils/lib-details.ts +3 -3
- package/src/index.d.ts +3 -0
- package/src/signature/signature-all.module.d.ts +5 -0
- package/src/signature/signature.component.d.ts +37 -0
- package/src/signature/signature.module.d.ts +5 -0
- package/styles/bootstrap-dark.css +43 -16
- package/styles/bootstrap-dark.scss +1 -0
- package/styles/bootstrap.css +43 -16
- package/styles/bootstrap.scss +1 -0
- package/styles/bootstrap4.css +43 -16
- package/styles/bootstrap4.scss +1 -0
- package/styles/bootstrap5-dark.css +46 -41
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.css +46 -41
- package/styles/bootstrap5.scss +1 -0
- package/styles/color-picker/bootstrap-dark.css +20 -0
- package/styles/color-picker/bootstrap.css +20 -0
- package/styles/color-picker/bootstrap4.css +20 -0
- package/styles/color-picker/bootstrap5-dark.css +22 -20
- package/styles/color-picker/bootstrap5.css +22 -20
- package/styles/color-picker/fabric-dark.css +23 -3
- package/styles/color-picker/fabric.css +20 -0
- package/styles/color-picker/highcontrast-light.css +20 -0
- package/styles/color-picker/highcontrast.css +20 -0
- package/styles/color-picker/material-dark.css +20 -0
- package/styles/color-picker/material.css +20 -0
- package/styles/color-picker/tailwind-dark.css +20 -0
- package/styles/color-picker/tailwind.css +20 -0
- package/styles/fabric-dark.css +46 -19
- package/styles/fabric-dark.scss +1 -0
- package/styles/fabric.css +43 -16
- package/styles/fabric.scss +1 -0
- package/styles/highcontrast-light.css +43 -16
- package/styles/highcontrast-light.scss +1 -0
- package/styles/highcontrast.css +43 -16
- package/styles/highcontrast.scss +1 -0
- package/styles/input/bootstrap-dark.css +13 -16
- package/styles/input/bootstrap.css +13 -16
- package/styles/input/bootstrap4.css +13 -16
- package/styles/input/bootstrap5-dark.css +13 -16
- package/styles/input/bootstrap5.css +13 -16
- package/styles/input/fabric-dark.css +13 -16
- package/styles/input/fabric.css +13 -16
- package/styles/input/highcontrast-light.css +13 -16
- package/styles/input/highcontrast.css +13 -16
- package/styles/input/material-dark.css +13 -16
- package/styles/input/material.css +13 -16
- package/styles/input/tailwind-dark.css +13 -16
- package/styles/input/tailwind.css +13 -16
- package/styles/material-dark.css +43 -16
- package/styles/material-dark.scss +1 -0
- package/styles/material.css +43 -16
- package/styles/material.scss +1 -0
- package/styles/signature/bootstrap-dark.css +9 -0
- package/styles/signature/bootstrap-dark.scss +1 -0
- package/styles/signature/bootstrap.css +9 -0
- package/styles/signature/bootstrap.scss +1 -0
- package/styles/signature/bootstrap4.css +9 -0
- package/styles/signature/bootstrap4.scss +1 -0
- package/styles/signature/bootstrap5-dark.css +9 -0
- package/styles/signature/bootstrap5-dark.scss +1 -0
- package/styles/signature/bootstrap5.css +9 -0
- package/styles/signature/bootstrap5.scss +1 -0
- package/styles/signature/fabric-dark.css +9 -0
- package/styles/signature/fabric-dark.scss +1 -0
- package/styles/signature/fabric.css +9 -0
- package/styles/signature/fabric.scss +1 -0
- package/styles/signature/highcontrast-light.css +9 -0
- package/styles/signature/highcontrast-light.scss +1 -0
- package/styles/signature/highcontrast.css +9 -0
- package/styles/signature/highcontrast.scss +1 -0
- package/styles/signature/material-dark.css +10 -0
- package/styles/signature/material-dark.scss +1 -0
- package/styles/signature/material.css +10 -0
- package/styles/signature/material.scss +1 -0
- package/styles/signature/tailwind-dark.css +10 -0
- package/styles/signature/tailwind-dark.scss +1 -0
- package/styles/signature/tailwind.css +10 -0
- package/styles/signature/tailwind.scss +1 -0
- package/styles/slider/bootstrap5-dark.css +1 -5
- package/styles/slider/bootstrap5.css +1 -5
- package/styles/slider/tailwind-dark.css +1 -5
- package/styles/slider/tailwind.css +1 -5
- package/styles/tailwind-dark.css +45 -21
- package/styles/tailwind-dark.scss +1 -0
- package/styles/tailwind.css +45 -21
- package/styles/tailwind.scss +1 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-inputs.umd.js
|
|
3
|
-
* version : 19.
|
|
3
|
+
* version : 19.4.43
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
|
@@ -1150,6 +1150,180 @@ ColorPickerAllModule.decorators = [
|
|
|
1150
1150
|
* @nocollapse
|
|
1151
1151
|
*/
|
|
1152
1152
|
ColorPickerAllModule.ctorParameters = function () { return []; };
|
|
1153
|
+
var __decorate$6 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1154
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1155
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1156
|
+
r = Reflect.decorate(decorators, target, key, desc);
|
|
1157
|
+
else
|
|
1158
|
+
for (var i = decorators.length - 1; i >= 0; i--)
|
|
1159
|
+
if (d = decorators[i])
|
|
1160
|
+
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1161
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1162
|
+
};
|
|
1163
|
+
var __metadata$6 = (this && this.__metadata) || function (k, v) {
|
|
1164
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
1165
|
+
return Reflect.metadata(k, v);
|
|
1166
|
+
};
|
|
1167
|
+
var inputs$6 = ['backgroundColor', 'backgroundImage', 'disabled', 'enablePersistence', 'enableRtl', 'isReadOnly', 'locale', 'maxStrokeWidth', 'minStrokeWidth', 'saveWithBackground', 'strokeColor', 'velocity'];
|
|
1168
|
+
var outputs$7 = ['focus', 'blur', 'beforeSave', 'change', 'created'];
|
|
1169
|
+
var twoWays$6 = [];
|
|
1170
|
+
/**
|
|
1171
|
+
* Represents the EJ2 Angular Signature Component.
|
|
1172
|
+
* ```html
|
|
1173
|
+
* <canvas ejs-signature />
|
|
1174
|
+
* ```
|
|
1175
|
+
*/
|
|
1176
|
+
exports.SignatureComponent = SignatureComponent_1 = /** @class */ (function (_super) {
|
|
1177
|
+
__extends(SignatureComponent, _super);
|
|
1178
|
+
/**
|
|
1179
|
+
* @param {?} ngEle
|
|
1180
|
+
* @param {?} srenderer
|
|
1181
|
+
* @param {?} viewContainerRef
|
|
1182
|
+
* @param {?} injector
|
|
1183
|
+
*/
|
|
1184
|
+
function SignatureComponent(ngEle, srenderer, viewContainerRef, injector) {
|
|
1185
|
+
var _this = _super.call(this) || this;
|
|
1186
|
+
_this.ngEle = ngEle;
|
|
1187
|
+
_this.srenderer = srenderer;
|
|
1188
|
+
_this.viewContainerRef = viewContainerRef;
|
|
1189
|
+
_this.injector = injector;
|
|
1190
|
+
_this.element = _this.ngEle.nativeElement;
|
|
1191
|
+
_this.injectedModules = _this.injectedModules || [];
|
|
1192
|
+
_this.registerEvents(outputs$7);
|
|
1193
|
+
_this.addTwoWay.call(_this, twoWays$6);
|
|
1194
|
+
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
|
|
1195
|
+
_this.formContext = new ej2AngularBase.FormBase();
|
|
1196
|
+
_this.formCompContext = new ej2AngularBase.ComponentBase();
|
|
1197
|
+
return _this;
|
|
1198
|
+
}
|
|
1199
|
+
/**
|
|
1200
|
+
* @param {?} registerFunction
|
|
1201
|
+
* @return {?}
|
|
1202
|
+
*/
|
|
1203
|
+
SignatureComponent.prototype.registerOnChange = function (registerFunction) {
|
|
1204
|
+
};
|
|
1205
|
+
/**
|
|
1206
|
+
* @param {?} registerFunction
|
|
1207
|
+
* @return {?}
|
|
1208
|
+
*/
|
|
1209
|
+
SignatureComponent.prototype.registerOnTouched = function (registerFunction) {
|
|
1210
|
+
};
|
|
1211
|
+
/**
|
|
1212
|
+
* @param {?} value
|
|
1213
|
+
* @return {?}
|
|
1214
|
+
*/
|
|
1215
|
+
SignatureComponent.prototype.writeValue = function (value) {
|
|
1216
|
+
};
|
|
1217
|
+
/**
|
|
1218
|
+
* @param {?} disabled
|
|
1219
|
+
* @return {?}
|
|
1220
|
+
*/
|
|
1221
|
+
SignatureComponent.prototype.setDisabledState = function (disabled) {
|
|
1222
|
+
};
|
|
1223
|
+
/**
|
|
1224
|
+
* @return {?}
|
|
1225
|
+
*/
|
|
1226
|
+
SignatureComponent.prototype.ngOnInit = function () {
|
|
1227
|
+
this.formCompContext.ngOnInit(this);
|
|
1228
|
+
};
|
|
1229
|
+
/**
|
|
1230
|
+
* @return {?}
|
|
1231
|
+
*/
|
|
1232
|
+
SignatureComponent.prototype.ngAfterViewInit = function () {
|
|
1233
|
+
this.formContext.ngAfterViewInit(this);
|
|
1234
|
+
};
|
|
1235
|
+
/**
|
|
1236
|
+
* @return {?}
|
|
1237
|
+
*/
|
|
1238
|
+
SignatureComponent.prototype.ngOnDestroy = function () {
|
|
1239
|
+
this.formCompContext.ngOnDestroy(this);
|
|
1240
|
+
};
|
|
1241
|
+
/**
|
|
1242
|
+
* @return {?}
|
|
1243
|
+
*/
|
|
1244
|
+
SignatureComponent.prototype.ngAfterContentChecked = function () {
|
|
1245
|
+
this.formCompContext.ngAfterContentChecked(this);
|
|
1246
|
+
};
|
|
1247
|
+
return SignatureComponent;
|
|
1248
|
+
}(ej2Inputs.Signature));
|
|
1249
|
+
exports.SignatureComponent.decorators = [
|
|
1250
|
+
{ type: core.Component, args: [{
|
|
1251
|
+
selector: '[ejs-signature]',
|
|
1252
|
+
inputs: inputs$6,
|
|
1253
|
+
outputs: outputs$7,
|
|
1254
|
+
template: '',
|
|
1255
|
+
changeDetection: core.ChangeDetectionStrategy.OnPush,
|
|
1256
|
+
providers: [
|
|
1257
|
+
{
|
|
1258
|
+
provide: forms.NG_VALUE_ACCESSOR,
|
|
1259
|
+
useExisting: core.forwardRef(function () { return SignatureComponent_1; }),
|
|
1260
|
+
multi: true
|
|
1261
|
+
}
|
|
1262
|
+
],
|
|
1263
|
+
queries: {}
|
|
1264
|
+
},] },
|
|
1265
|
+
];
|
|
1266
|
+
/**
|
|
1267
|
+
* @nocollapse
|
|
1268
|
+
*/
|
|
1269
|
+
exports.SignatureComponent.ctorParameters = function () { return [
|
|
1270
|
+
{ type: core.ElementRef, },
|
|
1271
|
+
{ type: core.Renderer2, },
|
|
1272
|
+
{ type: core.ViewContainerRef, },
|
|
1273
|
+
{ type: core.Injector, },
|
|
1274
|
+
]; };
|
|
1275
|
+
exports.SignatureComponent = SignatureComponent_1 = __decorate$6([
|
|
1276
|
+
ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
|
|
1277
|
+
__metadata$6("design:paramtypes", [core.ElementRef,
|
|
1278
|
+
core.Renderer2,
|
|
1279
|
+
core.ViewContainerRef,
|
|
1280
|
+
core.Injector])
|
|
1281
|
+
], exports.SignatureComponent);
|
|
1282
|
+
var SignatureComponent_1;
|
|
1283
|
+
/**
|
|
1284
|
+
* NgModule definition for the Signature component.
|
|
1285
|
+
*/
|
|
1286
|
+
var SignatureModule = /** @class */ (function () {
|
|
1287
|
+
function SignatureModule() {
|
|
1288
|
+
}
|
|
1289
|
+
return SignatureModule;
|
|
1290
|
+
}());
|
|
1291
|
+
SignatureModule.decorators = [
|
|
1292
|
+
{ type: core.NgModule, args: [{
|
|
1293
|
+
imports: [common.CommonModule],
|
|
1294
|
+
declarations: [
|
|
1295
|
+
exports.SignatureComponent
|
|
1296
|
+
],
|
|
1297
|
+
exports: [
|
|
1298
|
+
exports.SignatureComponent
|
|
1299
|
+
]
|
|
1300
|
+
},] },
|
|
1301
|
+
];
|
|
1302
|
+
/**
|
|
1303
|
+
* @nocollapse
|
|
1304
|
+
*/
|
|
1305
|
+
SignatureModule.ctorParameters = function () { return []; };
|
|
1306
|
+
/**
|
|
1307
|
+
* NgModule definition for the Signature component with providers.
|
|
1308
|
+
*/
|
|
1309
|
+
var SignatureAllModule = /** @class */ (function () {
|
|
1310
|
+
function SignatureAllModule() {
|
|
1311
|
+
}
|
|
1312
|
+
return SignatureAllModule;
|
|
1313
|
+
}());
|
|
1314
|
+
SignatureAllModule.decorators = [
|
|
1315
|
+
{ type: core.NgModule, args: [{
|
|
1316
|
+
imports: [common.CommonModule, SignatureModule],
|
|
1317
|
+
exports: [
|
|
1318
|
+
SignatureModule
|
|
1319
|
+
],
|
|
1320
|
+
providers: []
|
|
1321
|
+
},] },
|
|
1322
|
+
];
|
|
1323
|
+
/**
|
|
1324
|
+
* @nocollapse
|
|
1325
|
+
*/
|
|
1326
|
+
SignatureAllModule.ctorParameters = function () { return []; };
|
|
1153
1327
|
var FormValidators = /** @class */ (function () {
|
|
1154
1328
|
function FormValidators() {
|
|
1155
1329
|
}
|
|
@@ -1406,6 +1580,8 @@ exports.UploaderModule = UploaderModule;
|
|
|
1406
1580
|
exports.UploaderAllModule = UploaderAllModule;
|
|
1407
1581
|
exports.ColorPickerModule = ColorPickerModule;
|
|
1408
1582
|
exports.ColorPickerAllModule = ColorPickerAllModule;
|
|
1583
|
+
exports.SignatureModule = SignatureModule;
|
|
1584
|
+
exports.SignatureAllModule = SignatureAllModule;
|
|
1409
1585
|
exports.FormValidators = FormValidators;
|
|
1410
1586
|
exports.ɵk = inputs$5;
|
|
1411
1587
|
exports.ɵl = outputs$6;
|
|
@@ -1413,6 +1589,8 @@ exports.ɵe = inputs$2;
|
|
|
1413
1589
|
exports.ɵf = outputs$2;
|
|
1414
1590
|
exports.ɵc = inputs$1;
|
|
1415
1591
|
exports.ɵd = outputs$1;
|
|
1592
|
+
exports.ɵm = inputs$6;
|
|
1593
|
+
exports.ɵn = outputs$7;
|
|
1416
1594
|
exports.ɵg = inputs$3;
|
|
1417
1595
|
exports.ɵh = outputs$3;
|
|
1418
1596
|
exports.ɵa = inputs;
|
|
@@ -1457,6 +1635,8 @@ exports.AsyncSettings = ej2Inputs.AsyncSettings;
|
|
|
1457
1635
|
exports.Uploader = ej2Inputs.Uploader;
|
|
1458
1636
|
exports.ColorPicker = ej2Inputs.ColorPicker;
|
|
1459
1637
|
exports.TextBox = ej2Inputs.TextBox;
|
|
1638
|
+
exports.Signature = ej2Inputs.Signature;
|
|
1639
|
+
exports.SignatureBase = ej2Inputs.SignatureBase;
|
|
1460
1640
|
|
|
1461
1641
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
1462
1642
|
|