@osovitny/anatoly 2.15.6 → 2.15.7
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/assets/styles/scss/alerts.css +177 -0
- package/assets/styles/scss/alerts.min.css +1 -0
- package/assets/styles/scss/alerts.scss +98 -72
- package/assets/styles/scss/mixins/_cards.css +0 -0
- package/assets/styles/scss/mixins/_cards.min.css +0 -0
- package/assets/styles/scss/mixins/_cards.scss +4 -4
- package/esm2020/lib/core/utils.mjs +4 -1
- package/esm2020/lib/ui/dialogs/contact-us/contact-us.dialog.mjs +3 -3
- package/fesm2015/osovitny-anatoly.mjs +5 -2
- package/fesm2015/osovitny-anatoly.mjs.map +1 -1
- package/fesm2020/osovitny-anatoly.mjs +5 -2
- package/fesm2020/osovitny-anatoly.mjs.map +1 -1
- package/lib/core/utils.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1997,6 +1997,9 @@ class Utils {
|
|
|
1997
1997
|
static generateRandom(start, end) {
|
|
1998
1998
|
return Math.floor(Math.random() * (end - start + 1)) + start;
|
|
1999
1999
|
}
|
|
2000
|
+
static isObjectNullOrEmpty(obj) {
|
|
2001
|
+
return !obj || Object.keys(obj).length == 0;
|
|
2002
|
+
}
|
|
2000
2003
|
}
|
|
2001
2004
|
|
|
2002
2005
|
/*
|
|
@@ -4397,14 +4400,14 @@ ContactUsDialog.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ContactUsDi
|
|
|
4397
4400
|
} if (rf & 2) {
|
|
4398
4401
|
let _t;
|
|
4399
4402
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.contactUsForm = _t.first);
|
|
4400
|
-
} }, features: [i0.ɵɵInheritDefinitionFeature], decls: 1, vars: 1, consts: [["title", "Contact Us", 3, "width", "close", 4, "ngIf"], ["title", "Contact Us", 3, "width", "close"], [1, "k-content", "k-window-content", "k-dialog-content"], [3, "showActionButtons", "submit"], ["contactusform", ""], [1, "k-actions"], [1, "d-flex", "justify-content-end"], ["type", "button", 1, "btn", "btn-success", 3, "click"], ["type", "button", 1, "btn", "btn-danger", 3, "click"]], template: function ContactUsDialog_Template(rf, ctx) { if (rf & 1) {
|
|
4403
|
+
} }, features: [i0.ɵɵInheritDefinitionFeature], decls: 1, vars: 1, consts: [["title", "Contact Us", 3, "width", "close", 4, "ngIf"], ["title", "Contact Us", 3, "width", "close"], [1, "k-content", "k-window-content", "k-dialog-content"], [3, "showActionButtons", "submit"], ["contactusform", ""], [1, "k-actions"], [1, "d-flex", "justify-content-end"], ["type", "button", 1, "btn", "btn-sm", "btn-success", 3, "click"], ["type", "button", 1, "btn", "btn-sm", "btn-danger", 3, "click"]], template: function ContactUsDialog_Template(rf, ctx) { if (rf & 1) {
|
|
4401
4404
|
i0.ɵɵtemplate(0, ContactUsDialog_kendo_dialog_0_Template, 10, 2, "kendo-dialog", 0);
|
|
4402
4405
|
} if (rf & 2) {
|
|
4403
4406
|
i0.ɵɵproperty("ngIf", ctx.isOpen);
|
|
4404
4407
|
} }, dependencies: [i1$5.NgIf, i2$1.DialogComponent, i2$1.DialogActionsComponent, ContactUsForm], encapsulation: 2 });
|
|
4405
4408
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ContactUsDialog, [{
|
|
4406
4409
|
type: Component,
|
|
4407
|
-
args: [{ selector: 'anatoly-contactus-dialog', template: "<kendo-dialog (close)='onClose()' *ngIf='isOpen' [width]='700' title='Contact Us'>\r\n <div class=\"k-content k-window-content k-dialog-content\">\r\n <anatoly-forms-contactus-form #contactusform [showActionButtons]='false' (submit)='onSubmit()'>\r\n </anatoly-forms-contactus-form>\r\n </div>\r\n <kendo-dialog-actions class=\"k-actions\">\r\n <div class=\"d-flex justify-content-end\">\r\n <button (click)='onSubmitFire()' class='btn btn-success' type='button'>Submit</button>\r\n <button (click)='onClose()' class='btn btn-danger' type='button'>Cancel </button>\r\n </div>\r\n </kendo-dialog-actions>\r\n</kendo-dialog
|
|
4410
|
+
args: [{ selector: 'anatoly-contactus-dialog', template: "<kendo-dialog (close)='onClose()' *ngIf='isOpen' [width]='700' title='Contact Us'>\r\n <div class=\"k-content k-window-content k-dialog-content\">\r\n <anatoly-forms-contactus-form #contactusform [showActionButtons]='false' (submit)='onSubmit()'>\r\n </anatoly-forms-contactus-form>\r\n </div>\r\n <kendo-dialog-actions class=\"k-actions\">\r\n <div class=\"d-flex justify-content-end\">\r\n <button (click)='onSubmitFire()' class='btn btn-sm btn-success' type='button'>Submit</button>\r\n <button (click)='onClose()' class='btn btn-sm btn-danger' type='button'>Cancel </button>\r\n </div>\r\n </kendo-dialog-actions>\r\n</kendo-dialog>" }]
|
|
4408
4411
|
}], function () { return []; }, { contactUsForm: [{
|
|
4409
4412
|
type: ViewChild,
|
|
4410
4413
|
args: ['contactusform']
|