@memberjunction/ng-explorer-core 2.51.0 → 2.53.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.
- package/dist/app-routing.module.d.ts.map +1 -1
- package/dist/app-routing.module.js +2 -0
- package/dist/app-routing.module.js.map +1 -1
- package/dist/lib/app-view/application-view.component.js +108 -76
- package/dist/lib/app-view/application-view.component.js.map +1 -1
- package/dist/lib/dashboard-browser-component/dashboard-browser.component.js +38 -37
- package/dist/lib/dashboard-browser-component/dashboard-browser.component.js.map +1 -1
- package/dist/lib/dashboard-preferences-dialog/dashboard-preferences-dialog.component.js +2 -2
- package/dist/lib/data-browser-component/data-browser.component.js +99 -60
- package/dist/lib/data-browser-component/data-browser.component.js.map +1 -1
- package/dist/lib/favorites/favorites.component.js +2 -2
- package/dist/lib/generic/resource-container-component.js +5 -5
- package/dist/lib/generic/resource-container-component.js.map +1 -1
- package/dist/lib/generic-browse-list/generic-browse-list.component.js +57 -58
- package/dist/lib/generic-browse-list/generic-browse-list.component.js.map +1 -1
- package/dist/lib/generic-browser-list/generic-browser-list.component.d.ts +7 -0
- package/dist/lib/generic-browser-list/generic-browser-list.component.d.ts.map +1 -1
- package/dist/lib/generic-browser-list/generic-browser-list.component.js +475 -143
- package/dist/lib/generic-browser-list/generic-browser-list.component.js.map +1 -1
- package/dist/lib/header/header.component.d.ts +6 -0
- package/dist/lib/header/header.component.d.ts.map +1 -1
- package/dist/lib/header/header.component.js +98 -41
- package/dist/lib/header/header.component.js.map +1 -1
- package/dist/lib/home-component/home.component.d.ts +5 -0
- package/dist/lib/home-component/home.component.d.ts.map +1 -1
- package/dist/lib/home-component/home.component.js +137 -33
- package/dist/lib/home-component/home.component.js.map +1 -1
- package/dist/lib/list-view/list-view.component.js +55 -28
- package/dist/lib/list-view/list-view.component.js.map +1 -1
- package/dist/lib/navigation/navigation.component.js +33 -42
- package/dist/lib/navigation/navigation.component.js.map +1 -1
- package/dist/lib/query-browser-component/query-browser.component.js +2 -2
- package/dist/lib/report-browser-component/report-browser.component.js +2 -2
- package/dist/lib/resource-browser/resource-browser.component.js +297 -177
- package/dist/lib/resource-browser/resource-browser.component.js.map +1 -1
- package/dist/lib/resource-wrappers/dashboard-resource.component.js +4 -5
- package/dist/lib/resource-wrappers/dashboard-resource.component.js.map +1 -1
- package/dist/lib/resource-wrappers/record-resource.component.js +4 -5
- package/dist/lib/resource-wrappers/record-resource.component.js.map +1 -1
- package/dist/lib/services/startup-validation.service.d.ts +25 -0
- package/dist/lib/services/startup-validation.service.d.ts.map +1 -0
- package/dist/lib/services/startup-validation.service.js +85 -0
- package/dist/lib/services/startup-validation.service.js.map +1 -0
- package/dist/lib/services/system-validation.service.d.ts +40 -0
- package/dist/lib/services/system-validation.service.d.ts.map +1 -0
- package/dist/lib/services/system-validation.service.js +68 -0
- package/dist/lib/services/system-validation.service.js.map +1 -0
- package/dist/lib/single-application/single-application.component.js +2 -2
- package/dist/lib/single-entity/single-entity.component.js +2 -2
- package/dist/lib/single-list-detail/single-list-detail.component.js +2 -2
- package/dist/lib/single-query/single-query.component.js +4 -5
- package/dist/lib/single-query/single-query.component.js.map +1 -1
- package/dist/lib/single-report/single-report.component.js +4 -5
- package/dist/lib/single-report/single-report.component.js.map +1 -1
- package/dist/lib/single-view/single-view.component.js +7 -8
- package/dist/lib/single-view/single-view.component.js.map +1 -1
- package/dist/lib/style-guide-test/style-guide-test.component.d.ts +70 -0
- package/dist/lib/style-guide-test/style-guide-test.component.d.ts.map +1 -0
- package/dist/lib/style-guide-test/style-guide-test.component.js +1017 -0
- package/dist/lib/style-guide-test/style-guide-test.component.js.map +1 -0
- package/dist/lib/system-validation/system-validation-banner.component.d.ts +16 -0
- package/dist/lib/system-validation/system-validation-banner.component.d.ts.map +1 -0
- package/dist/lib/system-validation/system-validation-banner.component.js +156 -0
- package/dist/lib/system-validation/system-validation-banner.component.js.map +1 -0
- package/dist/lib/tabbed-dashboard/tabbed-dashboard.component.js +24 -26
- package/dist/lib/tabbed-dashboard/tabbed-dashboard.component.js.map +1 -1
- package/dist/lib/user-notifications/user-notifications.component.js +141 -91
- package/dist/lib/user-notifications/user-notifications.component.js.map +1 -1
- package/dist/module.d.ts +42 -40
- package/dist/module.d.ts.map +1 -1
- package/dist/module.js +38 -10
- package/dist/module.js.map +1 -1
- package/dist/public-api.d.ts +3 -0
- package/dist/public-api.d.ts.map +1 -1
- package/dist/public-api.js +4 -0
- package/dist/public-api.js.map +1 -1
- package/package.json +25 -25
|
@@ -0,0 +1,1017 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import { FormControl, FormGroup, Validators } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/common";
|
|
5
|
+
import * as i2 from "@angular/forms";
|
|
6
|
+
import * as i3 from "@progress/kendo-angular-grid";
|
|
7
|
+
import * as i4 from "@progress/kendo-angular-dialog";
|
|
8
|
+
import * as i5 from "@progress/kendo-angular-indicators";
|
|
9
|
+
import * as i6 from "@progress/kendo-angular-buttons";
|
|
10
|
+
import * as i7 from "@progress/kendo-angular-layout";
|
|
11
|
+
import * as i8 from "@progress/kendo-angular-inputs";
|
|
12
|
+
import * as i9 from "@progress/kendo-angular-label";
|
|
13
|
+
import * as i10 from "@progress/kendo-angular-dropdowns";
|
|
14
|
+
import * as i11 from "@progress/kendo-angular-progressbar";
|
|
15
|
+
import * as i12 from "@progress/kendo-angular-dateinputs";
|
|
16
|
+
const _c0 = () => ({ checkboxOnly: true, mode: "multiple" });
|
|
17
|
+
function StyleGuideTestComponent_kendo_card_104_Template(rf, ctx) { if (rf & 1) {
|
|
18
|
+
const _r2 = i0.ɵɵgetCurrentView();
|
|
19
|
+
i0.ɵɵelementStart(0, "kendo-card", 161);
|
|
20
|
+
i0.ɵɵlistener("click", function StyleGuideTestComponent_kendo_card_104_Template_kendo_card_click_0_listener() { const item_r3 = i0.ɵɵrestoreView(_r2).$implicit; const ctx_r3 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r3.handleCardClick(item_r3)); });
|
|
21
|
+
i0.ɵɵelementStart(1, "kendo-card-body");
|
|
22
|
+
i0.ɵɵelement(2, "i");
|
|
23
|
+
i0.ɵɵelementStart(3, "h3");
|
|
24
|
+
i0.ɵɵtext(4);
|
|
25
|
+
i0.ɵɵelementEnd();
|
|
26
|
+
i0.ɵɵelementStart(5, "p");
|
|
27
|
+
i0.ɵɵtext(6);
|
|
28
|
+
i0.ɵɵelementEnd();
|
|
29
|
+
i0.ɵɵelement(7, "kendo-chip", 162);
|
|
30
|
+
i0.ɵɵelementStart(8, "div", 163)(9, "button", 164);
|
|
31
|
+
i0.ɵɵlistener("click", function StyleGuideTestComponent_kendo_card_104_Template_button_click_9_listener($event) { const item_r3 = i0.ɵɵrestoreView(_r2).$implicit; const ctx_r3 = i0.ɵɵnextContext(); $event.stopPropagation(); return i0.ɵɵresetView(ctx_r3.handleButtonClick("edit", item_r3)); });
|
|
32
|
+
i0.ɵɵelement(10, "i", 33);
|
|
33
|
+
i0.ɵɵelementEnd();
|
|
34
|
+
i0.ɵɵelementStart(11, "button", 164);
|
|
35
|
+
i0.ɵɵlistener("click", function StyleGuideTestComponent_kendo_card_104_Template_button_click_11_listener($event) { const item_r3 = i0.ɵɵrestoreView(_r2).$implicit; const ctx_r3 = i0.ɵɵnextContext(); $event.stopPropagation(); return i0.ɵɵresetView(ctx_r3.handleButtonClick("delete", item_r3)); });
|
|
36
|
+
i0.ɵɵelement(12, "i", 35);
|
|
37
|
+
i0.ɵɵelementEnd()()()();
|
|
38
|
+
} if (rf & 2) {
|
|
39
|
+
const item_r3 = ctx.$implicit;
|
|
40
|
+
i0.ɵɵadvance(2);
|
|
41
|
+
i0.ɵɵclassMap("fas " + item_r3.icon + " mj-card-icon-large");
|
|
42
|
+
i0.ɵɵadvance(2);
|
|
43
|
+
i0.ɵɵtextInterpolate(item_r3.name);
|
|
44
|
+
i0.ɵɵadvance(2);
|
|
45
|
+
i0.ɵɵtextInterpolate(item_r3.description);
|
|
46
|
+
i0.ɵɵadvance();
|
|
47
|
+
i0.ɵɵproperty("label", item_r3.color.toUpperCase())("themeColor", item_r3.color);
|
|
48
|
+
} }
|
|
49
|
+
function StyleGuideTestComponent_div_163_Template(rf, ctx) { if (rf & 1) {
|
|
50
|
+
i0.ɵɵelementStart(0, "div", 165);
|
|
51
|
+
i0.ɵɵtext(1, " Full name is required ");
|
|
52
|
+
i0.ɵɵelementEnd();
|
|
53
|
+
} }
|
|
54
|
+
function StyleGuideTestComponent_ng_template_168_Template(rf, ctx) { if (rf & 1) {
|
|
55
|
+
i0.ɵɵelementStart(0, "span", 166);
|
|
56
|
+
i0.ɵɵelement(1, "i", 167);
|
|
57
|
+
i0.ɵɵtext(2);
|
|
58
|
+
i0.ɵɵelementEnd();
|
|
59
|
+
} if (rf & 2) {
|
|
60
|
+
const dataItem_r5 = ctx.$implicit;
|
|
61
|
+
i0.ɵɵadvance();
|
|
62
|
+
i0.ɵɵclassMap(dataItem_r5.icon);
|
|
63
|
+
i0.ɵɵadvance();
|
|
64
|
+
i0.ɵɵtextInterpolate1(" ", dataItem_r5.name, " ");
|
|
65
|
+
} }
|
|
66
|
+
function StyleGuideTestComponent_label_206_Template(rf, ctx) { if (rf & 1) {
|
|
67
|
+
const _r6 = i0.ɵɵgetCurrentView();
|
|
68
|
+
i0.ɵɵelementStart(0, "label", 168)(1, "input", 169);
|
|
69
|
+
i0.ɵɵtwoWayListener("ngModelChange", function StyleGuideTestComponent_label_206_Template_input_ngModelChange_1_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r3 = i0.ɵɵnextContext(); i0.ɵɵtwoWayBindingSet(ctx_r3.selectedTheme, $event) || (ctx_r3.selectedTheme = $event); return i0.ɵɵresetView($event); });
|
|
70
|
+
i0.ɵɵelementEnd();
|
|
71
|
+
i0.ɵɵelementStart(2, "span", 92);
|
|
72
|
+
i0.ɵɵtext(3);
|
|
73
|
+
i0.ɵɵelementEnd()();
|
|
74
|
+
} if (rf & 2) {
|
|
75
|
+
const option_r7 = ctx.$implicit;
|
|
76
|
+
const ctx_r3 = i0.ɵɵnextContext();
|
|
77
|
+
i0.ɵɵadvance();
|
|
78
|
+
i0.ɵɵproperty("value", option_r7);
|
|
79
|
+
i0.ɵɵtwoWayProperty("ngModel", ctx_r3.selectedTheme);
|
|
80
|
+
i0.ɵɵadvance(2);
|
|
81
|
+
i0.ɵɵtextInterpolate(option_r7);
|
|
82
|
+
} }
|
|
83
|
+
function StyleGuideTestComponent_ng_template_213_Template(rf, ctx) { if (rf & 1) {
|
|
84
|
+
i0.ɵɵelementStart(0, "div", 170);
|
|
85
|
+
i0.ɵɵelement(1, "kendo-avatar", 171);
|
|
86
|
+
i0.ɵɵelementStart(2, "div", 172)(3, "div", 173);
|
|
87
|
+
i0.ɵɵtext(4);
|
|
88
|
+
i0.ɵɵelementEnd();
|
|
89
|
+
i0.ɵɵelementStart(5, "div", 174);
|
|
90
|
+
i0.ɵɵtext(6);
|
|
91
|
+
i0.ɵɵelementEnd()()();
|
|
92
|
+
} if (rf & 2) {
|
|
93
|
+
const dataItem_r8 = ctx.$implicit;
|
|
94
|
+
const ctx_r3 = i0.ɵɵnextContext();
|
|
95
|
+
i0.ɵɵadvance();
|
|
96
|
+
i0.ɵɵproperty("initials", ctx_r3.getInitials(dataItem_r8.name));
|
|
97
|
+
i0.ɵɵadvance(3);
|
|
98
|
+
i0.ɵɵtextInterpolate(dataItem_r8.name);
|
|
99
|
+
i0.ɵɵadvance(2);
|
|
100
|
+
i0.ɵɵtextInterpolate(dataItem_r8.role);
|
|
101
|
+
} }
|
|
102
|
+
function StyleGuideTestComponent_ng_template_215_Template(rf, ctx) { if (rf & 1) {
|
|
103
|
+
i0.ɵɵelementStart(0, "a", 175);
|
|
104
|
+
i0.ɵɵelement(1, "i", 176);
|
|
105
|
+
i0.ɵɵtext(2);
|
|
106
|
+
i0.ɵɵelementEnd();
|
|
107
|
+
} if (rf & 2) {
|
|
108
|
+
const dataItem_r9 = ctx.$implicit;
|
|
109
|
+
i0.ɵɵpropertyInterpolate1("href", "mailto:", dataItem_r9.email, "", i0.ɵɵsanitizeUrl);
|
|
110
|
+
i0.ɵɵadvance(2);
|
|
111
|
+
i0.ɵɵtextInterpolate1(" ", dataItem_r9.email, " ");
|
|
112
|
+
} }
|
|
113
|
+
function StyleGuideTestComponent_ng_template_217_Template(rf, ctx) { if (rf & 1) {
|
|
114
|
+
i0.ɵɵelement(0, "kendo-chip", 177);
|
|
115
|
+
} if (rf & 2) {
|
|
116
|
+
const dataItem_r10 = ctx.$implicit;
|
|
117
|
+
i0.ɵɵproperty("label", dataItem_r10.department);
|
|
118
|
+
} }
|
|
119
|
+
function StyleGuideTestComponent_ng_template_219_Template(rf, ctx) { if (rf & 1) {
|
|
120
|
+
i0.ɵɵelementStart(0, "span", 178);
|
|
121
|
+
i0.ɵɵelement(1, "i");
|
|
122
|
+
i0.ɵɵelementStart(2, "kendo-badge", 179);
|
|
123
|
+
i0.ɵɵtext(3);
|
|
124
|
+
i0.ɵɵelementEnd()();
|
|
125
|
+
} if (rf & 2) {
|
|
126
|
+
const dataItem_r11 = ctx.$implicit;
|
|
127
|
+
const ctx_r3 = i0.ɵɵnextContext();
|
|
128
|
+
i0.ɵɵadvance();
|
|
129
|
+
i0.ɵɵclassMap(ctx_r3.getStatusIcon(dataItem_r11.status) + " mr-1");
|
|
130
|
+
i0.ɵɵadvance();
|
|
131
|
+
i0.ɵɵproperty("themeColor", ctx_r3.getStatusThemeColor(dataItem_r11.status));
|
|
132
|
+
i0.ɵɵadvance();
|
|
133
|
+
i0.ɵɵtextInterpolate1(" ", dataItem_r11.status, " ");
|
|
134
|
+
} }
|
|
135
|
+
function StyleGuideTestComponent_ng_template_221_Template(rf, ctx) { if (rf & 1) {
|
|
136
|
+
const _r12 = i0.ɵɵgetCurrentView();
|
|
137
|
+
i0.ɵɵelementStart(0, "div", 180)(1, "kendo-button", 181);
|
|
138
|
+
i0.ɵɵlistener("click", function StyleGuideTestComponent_ng_template_221_Template_kendo_button_click_1_listener() { const dataItem_r13 = i0.ɵɵrestoreView(_r12).$implicit; const ctx_r3 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r3.editItem(dataItem_r13)); });
|
|
139
|
+
i0.ɵɵelement(2, "i", 33);
|
|
140
|
+
i0.ɵɵelementEnd();
|
|
141
|
+
i0.ɵɵelementStart(3, "kendo-button", 182);
|
|
142
|
+
i0.ɵɵlistener("click", function StyleGuideTestComponent_ng_template_221_Template_kendo_button_click_3_listener() { const dataItem_r13 = i0.ɵɵrestoreView(_r12).$implicit; const ctx_r3 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r3.deleteItem(dataItem_r13)); });
|
|
143
|
+
i0.ɵɵelement(4, "i", 35);
|
|
144
|
+
i0.ɵɵelementEnd()();
|
|
145
|
+
} }
|
|
146
|
+
function StyleGuideTestComponent_ng_template_280_Template(rf, ctx) { if (rf & 1) {
|
|
147
|
+
i0.ɵɵelement(0, "i", 183);
|
|
148
|
+
} }
|
|
149
|
+
function StyleGuideTestComponent_ng_template_309_Template(rf, ctx) { if (rf & 1) {
|
|
150
|
+
i0.ɵɵelementStart(0, "span", 184);
|
|
151
|
+
i0.ɵɵelement(1, "i", 185);
|
|
152
|
+
i0.ɵɵtext(2, " Overview ");
|
|
153
|
+
i0.ɵɵelementEnd();
|
|
154
|
+
} }
|
|
155
|
+
function StyleGuideTestComponent_ng_template_310_Template(rf, ctx) { if (rf & 1) {
|
|
156
|
+
i0.ɵɵelementStart(0, "div", 186)(1, "h5");
|
|
157
|
+
i0.ɵɵtext(2, "Dashboard Overview");
|
|
158
|
+
i0.ɵɵelementEnd();
|
|
159
|
+
i0.ɵɵelementStart(3, "p");
|
|
160
|
+
i0.ɵɵtext(4, "View your application's key metrics and performance indicators.");
|
|
161
|
+
i0.ɵɵelementEnd();
|
|
162
|
+
i0.ɵɵelementStart(5, "kendo-button", 60);
|
|
163
|
+
i0.ɵɵtext(6, "View Details");
|
|
164
|
+
i0.ɵɵelementEnd()();
|
|
165
|
+
} }
|
|
166
|
+
function StyleGuideTestComponent_ng_template_312_Template(rf, ctx) { if (rf & 1) {
|
|
167
|
+
i0.ɵɵelementStart(0, "span", 184);
|
|
168
|
+
i0.ɵɵelement(1, "i", 187);
|
|
169
|
+
i0.ɵɵtext(2, " Settings ");
|
|
170
|
+
i0.ɵɵelementEnd();
|
|
171
|
+
} }
|
|
172
|
+
function StyleGuideTestComponent_ng_template_313_Template(rf, ctx) { if (rf & 1) {
|
|
173
|
+
i0.ɵɵelementStart(0, "div", 186)(1, "h5");
|
|
174
|
+
i0.ɵɵtext(2, "Application Settings");
|
|
175
|
+
i0.ɵɵelementEnd();
|
|
176
|
+
i0.ɵɵelementStart(3, "p");
|
|
177
|
+
i0.ɵɵtext(4, "Configure your application preferences and options.");
|
|
178
|
+
i0.ɵɵelementEnd()();
|
|
179
|
+
} }
|
|
180
|
+
function StyleGuideTestComponent_ng_template_315_Template(rf, ctx) { if (rf & 1) {
|
|
181
|
+
i0.ɵɵelementStart(0, "span", 184);
|
|
182
|
+
i0.ɵɵelement(1, "i", 188);
|
|
183
|
+
i0.ɵɵtext(2, " Reports ");
|
|
184
|
+
i0.ɵɵelementEnd();
|
|
185
|
+
} }
|
|
186
|
+
function StyleGuideTestComponent_ng_template_316_Template(rf, ctx) { if (rf & 1) {
|
|
187
|
+
i0.ɵɵelementStart(0, "div", 186)(1, "h5");
|
|
188
|
+
i0.ɵɵtext(2, "Generate Reports");
|
|
189
|
+
i0.ɵɵelementEnd();
|
|
190
|
+
i0.ɵɵelementStart(3, "p");
|
|
191
|
+
i0.ɵɵtext(4, "Create and download various reports from your data.");
|
|
192
|
+
i0.ɵɵelementEnd()();
|
|
193
|
+
} }
|
|
194
|
+
function StyleGuideTestComponent_div_372_Template(rf, ctx) { if (rf & 1) {
|
|
195
|
+
const _r14 = i0.ɵɵgetCurrentView();
|
|
196
|
+
i0.ɵɵelementStart(0, "div", 189);
|
|
197
|
+
i0.ɵɵlistener("click", function StyleGuideTestComponent_div_372_Template_div_click_0_listener() { i0.ɵɵrestoreView(_r14); const ctx_r3 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r3.closeModal()); });
|
|
198
|
+
i0.ɵɵelementStart(1, "div", 190);
|
|
199
|
+
i0.ɵɵlistener("click", function StyleGuideTestComponent_div_372_Template_div_click_1_listener($event) { i0.ɵɵrestoreView(_r14); return i0.ɵɵresetView($event.stopPropagation()); });
|
|
200
|
+
i0.ɵɵelementStart(2, "div", 191)(3, "h3", 192);
|
|
201
|
+
i0.ɵɵelement(4, "i", 193);
|
|
202
|
+
i0.ɵɵtext(5, " Custom Modal Example ");
|
|
203
|
+
i0.ɵɵelementEnd();
|
|
204
|
+
i0.ɵɵelementStart(6, "button", 194);
|
|
205
|
+
i0.ɵɵlistener("click", function StyleGuideTestComponent_div_372_Template_button_click_6_listener() { i0.ɵɵrestoreView(_r14); const ctx_r3 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r3.closeModal()); });
|
|
206
|
+
i0.ɵɵelement(7, "i", 44);
|
|
207
|
+
i0.ɵɵelementEnd()();
|
|
208
|
+
i0.ɵɵelementStart(8, "div", 195)(9, "p");
|
|
209
|
+
i0.ɵɵtext(10, "This custom modal maintains your brand styling while working alongside Kendo components.");
|
|
210
|
+
i0.ɵɵelementEnd();
|
|
211
|
+
i0.ɵɵelementStart(11, "div", 81)(12, "label", 82);
|
|
212
|
+
i0.ɵɵelement(13, "i", 196);
|
|
213
|
+
i0.ɵɵtext(14, " Username ");
|
|
214
|
+
i0.ɵɵelementEnd();
|
|
215
|
+
i0.ɵɵelement(15, "kendo-textbox", 197);
|
|
216
|
+
i0.ɵɵelementEnd();
|
|
217
|
+
i0.ɵɵelementStart(16, "div", 81)(17, "label", 82);
|
|
218
|
+
i0.ɵɵelement(18, "i", 198);
|
|
219
|
+
i0.ɵɵtext(19, " Theme Preference ");
|
|
220
|
+
i0.ɵɵelementEnd();
|
|
221
|
+
i0.ɵɵelement(20, "kendo-dropdownlist", 199);
|
|
222
|
+
i0.ɵɵelementEnd()();
|
|
223
|
+
i0.ɵɵelementStart(21, "div", 200)(22, "kendo-button", 201);
|
|
224
|
+
i0.ɵɵlistener("click", function StyleGuideTestComponent_div_372_Template_kendo_button_click_22_listener() { i0.ɵɵrestoreView(_r14); const ctx_r3 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r3.closeModal()); });
|
|
225
|
+
i0.ɵɵtext(23, "Cancel");
|
|
226
|
+
i0.ɵɵelementEnd();
|
|
227
|
+
i0.ɵɵelementStart(24, "kendo-button", 60)(25, "span", 14);
|
|
228
|
+
i0.ɵɵelement(26, "i", 17);
|
|
229
|
+
i0.ɵɵtext(27, " Save Changes ");
|
|
230
|
+
i0.ɵɵelementEnd()()()()();
|
|
231
|
+
} if (rf & 2) {
|
|
232
|
+
const ctx_r3 = i0.ɵɵnextContext();
|
|
233
|
+
i0.ɵɵadvance(20);
|
|
234
|
+
i0.ɵɵproperty("data", ctx_r3.themeOptions)("value", ctx_r3.selectedTheme);
|
|
235
|
+
} }
|
|
236
|
+
function StyleGuideTestComponent_div_373_Template(rf, ctx) { if (rf & 1) {
|
|
237
|
+
const _r15 = i0.ɵɵgetCurrentView();
|
|
238
|
+
i0.ɵɵelementStart(0, "div", 189);
|
|
239
|
+
i0.ɵɵlistener("click", function StyleGuideTestComponent_div_373_Template_div_click_0_listener() { i0.ɵɵrestoreView(_r15); const ctx_r3 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r3.closeConfirmModal()); });
|
|
240
|
+
i0.ɵɵelementStart(1, "div", 202);
|
|
241
|
+
i0.ɵɵlistener("click", function StyleGuideTestComponent_div_373_Template_div_click_1_listener($event) { i0.ɵɵrestoreView(_r15); return i0.ɵɵresetView($event.stopPropagation()); });
|
|
242
|
+
i0.ɵɵelementStart(2, "div", 191)(3, "h3", 192);
|
|
243
|
+
i0.ɵɵtext(4, "Confirm Delete");
|
|
244
|
+
i0.ɵɵelementEnd();
|
|
245
|
+
i0.ɵɵelementStart(5, "button", 194);
|
|
246
|
+
i0.ɵɵlistener("click", function StyleGuideTestComponent_div_373_Template_button_click_5_listener() { i0.ɵɵrestoreView(_r15); const ctx_r3 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r3.closeConfirmModal()); });
|
|
247
|
+
i0.ɵɵelement(6, "i", 44);
|
|
248
|
+
i0.ɵɵelementEnd()();
|
|
249
|
+
i0.ɵɵelementStart(7, "div", 195);
|
|
250
|
+
i0.ɵɵelement(8, "i", 203);
|
|
251
|
+
i0.ɵɵelementStart(9, "h4");
|
|
252
|
+
i0.ɵɵtext(10, "Are you sure?");
|
|
253
|
+
i0.ɵɵelementEnd();
|
|
254
|
+
i0.ɵɵelementStart(11, "p");
|
|
255
|
+
i0.ɵɵtext(12, "This action cannot be undone. All associated data will be permanently deleted.");
|
|
256
|
+
i0.ɵɵelementEnd()();
|
|
257
|
+
i0.ɵɵelementStart(13, "div", 200)(14, "button", 204);
|
|
258
|
+
i0.ɵɵlistener("click", function StyleGuideTestComponent_div_373_Template_button_click_14_listener() { i0.ɵɵrestoreView(_r15); const ctx_r3 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r3.closeConfirmModal()); });
|
|
259
|
+
i0.ɵɵtext(15, "Cancel");
|
|
260
|
+
i0.ɵɵelementEnd();
|
|
261
|
+
i0.ɵɵelementStart(16, "button", 205);
|
|
262
|
+
i0.ɵɵelement(17, "i", 35);
|
|
263
|
+
i0.ɵɵtext(18, " Delete ");
|
|
264
|
+
i0.ɵɵelementEnd()()()();
|
|
265
|
+
} }
|
|
266
|
+
function StyleGuideTestComponent_kendo_dialog_374_ng_template_6_Template(rf, ctx) { if (rf & 1) {
|
|
267
|
+
i0.ɵɵelement(0, "i", 216);
|
|
268
|
+
} }
|
|
269
|
+
function StyleGuideTestComponent_kendo_dialog_374_div_7_Template(rf, ctx) { if (rf & 1) {
|
|
270
|
+
i0.ɵɵelementStart(0, "div", 165);
|
|
271
|
+
i0.ɵɵtext(1, " Name is required ");
|
|
272
|
+
i0.ɵɵelementEnd();
|
|
273
|
+
} }
|
|
274
|
+
function StyleGuideTestComponent_kendo_dialog_374_ng_template_12_Template(rf, ctx) { if (rf & 1) {
|
|
275
|
+
i0.ɵɵelement(0, "i", 217);
|
|
276
|
+
} }
|
|
277
|
+
function StyleGuideTestComponent_kendo_dialog_374_div_13_Template(rf, ctx) { if (rf & 1) {
|
|
278
|
+
i0.ɵɵelementStart(0, "div", 165);
|
|
279
|
+
i0.ɵɵtext(1, " Please enter a valid email ");
|
|
280
|
+
i0.ɵɵelementEnd();
|
|
281
|
+
} }
|
|
282
|
+
function StyleGuideTestComponent_kendo_dialog_374_ng_template_18_Template(rf, ctx) { if (rf & 1) {
|
|
283
|
+
i0.ɵɵelementStart(0, "span", 166);
|
|
284
|
+
i0.ɵɵelement(1, "i", 167);
|
|
285
|
+
i0.ɵɵtext(2);
|
|
286
|
+
i0.ɵɵelementEnd();
|
|
287
|
+
} if (rf & 2) {
|
|
288
|
+
const dataItem_r17 = ctx.$implicit;
|
|
289
|
+
i0.ɵɵadvance();
|
|
290
|
+
i0.ɵɵclassMap(dataItem_r17.icon);
|
|
291
|
+
i0.ɵɵadvance();
|
|
292
|
+
i0.ɵɵtextInterpolate1(" ", dataItem_r17.name, " ");
|
|
293
|
+
} }
|
|
294
|
+
function StyleGuideTestComponent_kendo_dialog_374_Template(rf, ctx) { if (rf & 1) {
|
|
295
|
+
const _r16 = i0.ɵɵgetCurrentView();
|
|
296
|
+
i0.ɵɵelementStart(0, "kendo-dialog", 206);
|
|
297
|
+
i0.ɵɵlistener("close", function StyleGuideTestComponent_kendo_dialog_374_Template_kendo_dialog_close_0_listener() { i0.ɵɵrestoreView(_r16); const ctx_r3 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r3.closeKendoDialog()); });
|
|
298
|
+
i0.ɵɵelementStart(1, "form", 207)(2, "kendo-formfield", 70);
|
|
299
|
+
i0.ɵɵelement(3, "kendo-label", 71);
|
|
300
|
+
i0.ɵɵelementStart(4, "kendo-textbox", 208, 2);
|
|
301
|
+
i0.ɵɵtemplate(6, StyleGuideTestComponent_kendo_dialog_374_ng_template_6_Template, 1, 0, "ng-template", 128);
|
|
302
|
+
i0.ɵɵelementEnd();
|
|
303
|
+
i0.ɵɵtemplate(7, StyleGuideTestComponent_kendo_dialog_374_div_7_Template, 2, 0, "div", 73);
|
|
304
|
+
i0.ɵɵelementEnd();
|
|
305
|
+
i0.ɵɵelementStart(8, "kendo-formfield", 70);
|
|
306
|
+
i0.ɵɵelement(9, "kendo-label", 209);
|
|
307
|
+
i0.ɵɵelementStart(10, "kendo-textbox", 210, 3);
|
|
308
|
+
i0.ɵɵtemplate(12, StyleGuideTestComponent_kendo_dialog_374_ng_template_12_Template, 1, 0, "ng-template", 128);
|
|
309
|
+
i0.ɵɵelementEnd();
|
|
310
|
+
i0.ɵɵtemplate(13, StyleGuideTestComponent_kendo_dialog_374_div_13_Template, 2, 0, "div", 73);
|
|
311
|
+
i0.ɵɵelementEnd();
|
|
312
|
+
i0.ɵɵelementStart(14, "kendo-formfield", 70);
|
|
313
|
+
i0.ɵɵelement(15, "kendo-label", 74);
|
|
314
|
+
i0.ɵɵelementStart(16, "kendo-dropdownlist", 211, 4);
|
|
315
|
+
i0.ɵɵtemplate(18, StyleGuideTestComponent_kendo_dialog_374_ng_template_18_Template, 3, 3, "ng-template", 76);
|
|
316
|
+
i0.ɵɵelementEnd()();
|
|
317
|
+
i0.ɵɵelementStart(19, "kendo-formfield", 212);
|
|
318
|
+
i0.ɵɵelement(20, "kendo-label", 213)(21, "kendo-textarea", 214);
|
|
319
|
+
i0.ɵɵelementEnd()();
|
|
320
|
+
i0.ɵɵelementStart(22, "kendo-dialog-actions")(23, "kendo-button", 201);
|
|
321
|
+
i0.ɵɵlistener("click", function StyleGuideTestComponent_kendo_dialog_374_Template_kendo_button_click_23_listener() { i0.ɵɵrestoreView(_r16); const ctx_r3 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r3.closeKendoDialog()); });
|
|
322
|
+
i0.ɵɵtext(24, "Cancel");
|
|
323
|
+
i0.ɵɵelementEnd();
|
|
324
|
+
i0.ɵɵelementStart(25, "kendo-button", 215);
|
|
325
|
+
i0.ɵɵlistener("click", function StyleGuideTestComponent_kendo_dialog_374_Template_kendo_button_click_25_listener() { i0.ɵɵrestoreView(_r16); const ctx_r3 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r3.submitForm()); });
|
|
326
|
+
i0.ɵɵelementStart(26, "span", 14);
|
|
327
|
+
i0.ɵɵelement(27, "i", 17);
|
|
328
|
+
i0.ɵɵtext(28, " Save Changes ");
|
|
329
|
+
i0.ɵɵelementEnd()()()();
|
|
330
|
+
} if (rf & 2) {
|
|
331
|
+
const nameField_r18 = i0.ɵɵreference(5);
|
|
332
|
+
const emailField_r19 = i0.ɵɵreference(11);
|
|
333
|
+
const deptField_r20 = i0.ɵɵreference(17);
|
|
334
|
+
const ctx_r3 = i0.ɵɵnextContext();
|
|
335
|
+
i0.ɵɵproperty("minWidth", 450)("width", 600)("height", 400);
|
|
336
|
+
i0.ɵɵadvance();
|
|
337
|
+
i0.ɵɵproperty("formGroup", ctx_r3.formGroup);
|
|
338
|
+
i0.ɵɵadvance(2);
|
|
339
|
+
i0.ɵɵproperty("for", nameField_r18);
|
|
340
|
+
i0.ɵɵadvance();
|
|
341
|
+
i0.ɵɵproperty("clearButton", true);
|
|
342
|
+
i0.ɵɵadvance(3);
|
|
343
|
+
i0.ɵɵproperty("ngIf", ctx_r3.fullNameControl.touched && (ctx_r3.fullNameControl.errors == null ? null : ctx_r3.fullNameControl.errors["required"]));
|
|
344
|
+
i0.ɵɵadvance(2);
|
|
345
|
+
i0.ɵɵproperty("for", emailField_r19);
|
|
346
|
+
i0.ɵɵadvance();
|
|
347
|
+
i0.ɵɵproperty("clearButton", true);
|
|
348
|
+
i0.ɵɵadvance(3);
|
|
349
|
+
i0.ɵɵproperty("ngIf", ctx_r3.emailControl.touched && (ctx_r3.emailControl.errors == null ? null : ctx_r3.emailControl.errors["email"]));
|
|
350
|
+
i0.ɵɵadvance(2);
|
|
351
|
+
i0.ɵɵproperty("for", deptField_r20);
|
|
352
|
+
i0.ɵɵadvance();
|
|
353
|
+
i0.ɵɵproperty("data", ctx_r3.departments);
|
|
354
|
+
i0.ɵɵadvance(5);
|
|
355
|
+
i0.ɵɵproperty("rows", 3);
|
|
356
|
+
i0.ɵɵadvance(4);
|
|
357
|
+
i0.ɵɵproperty("disabled", !ctx_r3.formGroup.valid);
|
|
358
|
+
} }
|
|
359
|
+
export class StyleGuideTestComponent {
|
|
360
|
+
// Sample data for demonstrations
|
|
361
|
+
sampleItems = [
|
|
362
|
+
{ name: 'Analytics Dashboard', description: 'View comprehensive analytics and metrics', icon: 'fa-chart-line', color: 'primary' },
|
|
363
|
+
{ name: 'User Management', description: 'Manage users and permissions', icon: 'fa-users', color: 'info' },
|
|
364
|
+
{ name: 'System Settings', description: 'Configure application settings', icon: 'fa-cog', color: 'warning' },
|
|
365
|
+
{ name: 'Reports', description: 'Generate and view reports', icon: 'fa-file-alt', color: 'success' }
|
|
366
|
+
];
|
|
367
|
+
// Enhanced grid data with avatars
|
|
368
|
+
gridData = [
|
|
369
|
+
{ id: 1, name: 'John Anderson', email: 'john.anderson@company.com', department: 'Engineering', status: 'Active', role: 'Senior Developer' },
|
|
370
|
+
{ id: 2, name: 'Sarah Mitchell', email: 'sarah.mitchell@company.com', department: 'Design', status: 'Active', role: 'UI/UX Lead' },
|
|
371
|
+
{ id: 3, name: 'Michael Chen', email: 'michael.chen@company.com', department: 'Marketing', status: 'Pending', role: 'Marketing Manager' },
|
|
372
|
+
{ id: 4, name: 'Emily Rodriguez', email: 'emily.rodriguez@company.com', department: 'Sales', status: 'Inactive', role: 'Sales Representative' },
|
|
373
|
+
{ id: 5, name: 'David Park', email: 'david.park@company.com', department: 'Operations', status: 'Active', role: 'Operations Manager' }
|
|
374
|
+
];
|
|
375
|
+
// Dropdown data
|
|
376
|
+
departments = [
|
|
377
|
+
{ id: 1, name: 'Engineering', icon: 'fa fa-code' },
|
|
378
|
+
{ id: 2, name: 'Design', icon: 'fa fa-paint-brush' },
|
|
379
|
+
{ id: 3, name: 'Marketing', icon: 'fa fa-bullhorn' },
|
|
380
|
+
{ id: 4, name: 'Sales', icon: 'fa fa-dollar-sign' },
|
|
381
|
+
{ id: 5, name: 'Operations', icon: 'fa fa-cogs' }
|
|
382
|
+
];
|
|
383
|
+
technologies = ['JavaScript', 'TypeScript', 'Angular', 'React', 'Vue.js', 'Node.js'];
|
|
384
|
+
phases = ['Planning', 'Design', 'Development', 'Testing', 'Deployment', 'Maintenance'];
|
|
385
|
+
themeOptions = ['Light', 'Dark', 'Auto'];
|
|
386
|
+
// Form group
|
|
387
|
+
formGroup;
|
|
388
|
+
// State variables
|
|
389
|
+
isModalOpen = false;
|
|
390
|
+
isConfirmModalOpen = false;
|
|
391
|
+
isKendoDialogOpen = false;
|
|
392
|
+
selectedTab = 0;
|
|
393
|
+
selectedDepartment = this.departments[0];
|
|
394
|
+
selectedTechnologies = ['Angular', 'TypeScript'];
|
|
395
|
+
selectedTheme = 'Light';
|
|
396
|
+
searchText = '';
|
|
397
|
+
progressValue = 65;
|
|
398
|
+
dateValue = new Date();
|
|
399
|
+
// Notification counter
|
|
400
|
+
notificationCount = 5;
|
|
401
|
+
// Badge align values
|
|
402
|
+
badgeAlignTopEnd = { horizontal: 'end', vertical: 'top' };
|
|
403
|
+
badgeAlignBottomEnd = { horizontal: 'end', vertical: 'bottom' };
|
|
404
|
+
constructor() {
|
|
405
|
+
this.formGroup = new FormGroup({
|
|
406
|
+
fullName: new FormControl('', Validators.required),
|
|
407
|
+
email: new FormControl('', [Validators.required, Validators.email]),
|
|
408
|
+
department: new FormControl(null),
|
|
409
|
+
comments: new FormControl('')
|
|
410
|
+
});
|
|
411
|
+
}
|
|
412
|
+
// Modal methods
|
|
413
|
+
openModal() {
|
|
414
|
+
this.isModalOpen = true;
|
|
415
|
+
}
|
|
416
|
+
closeModal() {
|
|
417
|
+
this.isModalOpen = false;
|
|
418
|
+
}
|
|
419
|
+
openConfirmModal() {
|
|
420
|
+
this.isConfirmModalOpen = true;
|
|
421
|
+
}
|
|
422
|
+
closeConfirmModal() {
|
|
423
|
+
this.isConfirmModalOpen = false;
|
|
424
|
+
}
|
|
425
|
+
openKendoDialog() {
|
|
426
|
+
this.isKendoDialogOpen = true;
|
|
427
|
+
}
|
|
428
|
+
closeKendoDialog() {
|
|
429
|
+
this.isKendoDialogOpen = false;
|
|
430
|
+
}
|
|
431
|
+
// Utility methods
|
|
432
|
+
getStatusBadgeClass(status) {
|
|
433
|
+
switch (status.toLowerCase()) {
|
|
434
|
+
case 'active':
|
|
435
|
+
return 'badge badge-success';
|
|
436
|
+
case 'inactive':
|
|
437
|
+
return 'badge badge-danger';
|
|
438
|
+
case 'pending':
|
|
439
|
+
return 'badge badge-primary';
|
|
440
|
+
default:
|
|
441
|
+
return 'badge';
|
|
442
|
+
}
|
|
443
|
+
}
|
|
444
|
+
// Get Kendo theme color for status
|
|
445
|
+
getStatusThemeColor(status) {
|
|
446
|
+
switch (status.toLowerCase()) {
|
|
447
|
+
case 'active':
|
|
448
|
+
return 'success';
|
|
449
|
+
case 'inactive':
|
|
450
|
+
return 'error';
|
|
451
|
+
case 'pending':
|
|
452
|
+
return 'warning';
|
|
453
|
+
default:
|
|
454
|
+
return 'info';
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
// Get Font Awesome icon for status
|
|
458
|
+
getStatusIcon(status) {
|
|
459
|
+
switch (status.toLowerCase()) {
|
|
460
|
+
case 'active':
|
|
461
|
+
return 'fa fa-check-circle';
|
|
462
|
+
case 'inactive':
|
|
463
|
+
return 'fa fa-times-circle';
|
|
464
|
+
case 'pending':
|
|
465
|
+
return 'fa fa-clock';
|
|
466
|
+
default:
|
|
467
|
+
return 'fa fa-info-circle';
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
handleCardClick(item) {
|
|
471
|
+
console.log('Card clicked:', item);
|
|
472
|
+
// Could open a detail view or dialog
|
|
473
|
+
}
|
|
474
|
+
handleButtonClick(action, item) {
|
|
475
|
+
console.log('Button clicked:', action, item);
|
|
476
|
+
}
|
|
477
|
+
// Form submission
|
|
478
|
+
submitForm() {
|
|
479
|
+
if (this.formGroup.valid) {
|
|
480
|
+
console.log('Form submitted:', this.formGroup.value);
|
|
481
|
+
this.closeKendoDialog();
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
// Simulate data loading
|
|
485
|
+
loadData() {
|
|
486
|
+
this.progressValue = 0;
|
|
487
|
+
const interval = setInterval(() => {
|
|
488
|
+
this.progressValue += 10;
|
|
489
|
+
if (this.progressValue >= 100) {
|
|
490
|
+
clearInterval(interval);
|
|
491
|
+
}
|
|
492
|
+
}, 200);
|
|
493
|
+
}
|
|
494
|
+
// Get initials from name
|
|
495
|
+
getInitials(name) {
|
|
496
|
+
if (!name)
|
|
497
|
+
return '';
|
|
498
|
+
return name.split(' ').map(n => n[0]).join('').toUpperCase();
|
|
499
|
+
}
|
|
500
|
+
// Grid actions
|
|
501
|
+
editItem(dataItem) {
|
|
502
|
+
console.log('Edit item:', dataItem);
|
|
503
|
+
this.openKendoDialog();
|
|
504
|
+
}
|
|
505
|
+
deleteItem(dataItem) {
|
|
506
|
+
console.log('Delete item:', dataItem);
|
|
507
|
+
this.openConfirmModal();
|
|
508
|
+
}
|
|
509
|
+
// Helper methods for form controls
|
|
510
|
+
get fullNameControl() {
|
|
511
|
+
return this.formGroup.get('fullName');
|
|
512
|
+
}
|
|
513
|
+
get emailControl() {
|
|
514
|
+
return this.formGroup.get('email');
|
|
515
|
+
}
|
|
516
|
+
get departmentControl() {
|
|
517
|
+
return this.formGroup.get('department');
|
|
518
|
+
}
|
|
519
|
+
get commentsControl() {
|
|
520
|
+
return this.formGroup.get('comments');
|
|
521
|
+
}
|
|
522
|
+
static ɵfac = function StyleGuideTestComponent_Factory(t) { return new (t || StyleGuideTestComponent)(); };
|
|
523
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: StyleGuideTestComponent, selectors: [["mj-style-guide-test"]], decls: 375, vars: 62, consts: [["fullNameInput", ""], ["deptDropdown", ""], ["nameField", ""], ["emailField", ""], ["deptField", ""], [1, "mj-page-container"], [1, "mj-content-container"], [1, "mj-header"], [1, "mj-header-title"], [1, "fas", "fa-paint-brush", "mj-header-icon"], [1, "mj-header-subtitle"], [1, "fas", "fa-palette"], [1, "mj-header-actions"], ["fillMode", "outline", "rounded", "medium", "themeColor", "base"], [1, "button-content"], [1, "fas", "fa-download"], ["themeColor", "primary", "rounded", "medium"], [1, "fas", "fa-save"], [1, "typography-demo"], [1, "text-muted"], [1, "mb-3"], [1, "button-group"], ["themeColor", "primary", "rounded", "medium", "size", "large"], [1, "fas", "fa-check"], ["themeColor", "info", "rounded", "medium"], [1, "fas", "fa-info-circle"], ["themeColor", "success", "rounded", "medium"], [1, "fas", "fa-check-circle"], ["themeColor", "warning", "rounded", "medium"], [1, "fas", "fa-exclamation-triangle"], ["themeColor", "error", "rounded", "medium"], [1, "fas", "fa-times-circle"], ["fillMode", "flat", "rounded", "full", "size", "large", "title", "Edit"], [1, "fas", "fa-edit"], ["fillMode", "flat", "rounded", "full", "size", "large", "title", "Delete"], [1, "fas", "fa-trash"], ["fillMode", "flat", "rounded", "full", "size", "large", "title", "Settings"], [1, "fas", "fa-cog"], ["fillMode", "flat", "rounded", "full", "size", "large", "title", "Search"], [1, "fas", "fa-search"], [1, "mj-btn", "mj-btn-primary"], [1, "fas", "fa-rocket"], [1, "mj-btn", "mj-btn-secondary"], [1, "mj-btn", "mj-btn-ghost"], [1, "fas", "fa-times"], ["kendoButton", "", 3, "toggleable", "selected"], [1, "fas", "fa-bold"], ["kendoButton", "", 3, "toggleable"], [1, "fas", "fa-italic"], [1, "fas", "fa-underline"], [1, "mj-grid", "mj-grid-4"], ["class", "mj-kendo-icon-card", 3, "click", 4, "ngFor", "ngForOf"], [1, "mt-4"], [1, "mj-grid", "mj-grid-3"], [1, "custom-kendo-card"], [1, "fas", "fa-chart-bar", "mr-2"], ["label", "Real-time", "icon", "clock", "themeColor", "success"], ["label", "Interactive", "icon", "filter", "themeColor", "info"], ["orientation", "horizontal", "layout", "end"], ["fillMode", "flat"], ["themeColor", "primary"], [1, "text-center"], ["shape", "circle", "size", "large", 3, "imageSrc"], [1, "mt-3"], [1, "fas", "fa-bell"], ["rounded", "full", "themeColor", "error", "position", "edge", 3, "align"], [1, "mj-empty-state"], [1, "fas", "fa-inbox", "mj-empty-icon"], [1, "fas", "fa-upload"], [1, "mj-grid", "mj-grid-2"], ["orientation", "vertical", 1, "mb-3"], ["text", "Full Name", 3, "for"], ["placeholder", "Enter your full name", "rounded", "medium", 3, "clearButton", "formControl"], ["class", "k-form-error", 4, "ngIf"], ["text", "Department", 3, "for"], ["textField", "name", "valueField", "id", "rounded", "medium", 3, "ngModelChange", "data", "ngModel"], ["kendoDropDownListItemTemplate", ""], ["text", "Technologies"], ["placeholder", "Select technologies...", "rounded", "medium", 3, "ngModelChange", "data", "ngModel"], ["text", "Project Date"], ["format", "dd/MM/yyyy", "rounded", "medium", 3, "valueChange", "value"], [1, "form-group"], [1, "form-label"], [1, "fas", "fa-search", "mr-1"], [1, "mj-search"], [1, "fas", "fa-search", "mj-search-icon"], ["type", "text", "placeholder", "Search items...", 1, "mj-search-input", 3, "ngModelChange", "ngModel"], [1, "fas", "fa-comment", "mr-1"], ["placeholder", "Enter your comments...", "rounded", "medium", 3, "formControl", "rows"], [1, "checkbox-group"], [1, "checkbox-label"], ["type", "checkbox", "kendoCheckBox", ""], [1, "ml-2"], ["type", "checkbox", "kendoCheckBox", "", "checked", ""], [1, "radio-group"], ["class", "radio-label", 4, "ngFor", "ngForOf"], [1, "custom-grid", 3, "data", "height", "sortable", "filterable", "groupable", "reorderable", "resizable", "selectable"], [3, "width", "headerClass"], ["field", "name", "title", "Name", 3, "width"], ["kendoGridCellTemplate", ""], ["field", "email", "title", "Email", 3, "width"], ["field", "department", "title", "Department", 3, "width"], ["field", "status", "title", "Status", 3, "width"], ["title", "Actions", 3, "width", "sortable", "filterable"], [1, "badge-group"], [1, "badge", "badge-success"], [1, "fas", "fa-check", "mr-1"], [1, "badge", "badge-danger"], [1, "fas", "fa-times", "mr-1"], [1, "badge", "badge-warning"], [1, "fas", "fa-clock", "mr-1"], [1, "badge", "badge-info"], [1, "fas", "fa-info-circle", "mr-1"], ["label", "Approved", "icon", "check", "themeColor", "success", 3, "removable"], ["label", "In Progress", "icon", "clock", "themeColor", "warning", 3, "removable"], ["label", "Rejected", "icon", "x", "themeColor", "error", 3, "removable"], ["label", "Under Review", "icon", "eye", "themeColor", "info", 3, "removable"], [1, "fas", "fa-envelope", "mr-2"], ["themeColor", "error", "position", "edge", 3, "align"], ["fillMode", "flat", "rounded", "full", "size", "large"], ["themeColor", "warning", "position", "edge", "rounded", "full", 3, "align"], ["initials", "JD", "themeColor", "info"], ["themeColor", "success", "position", "edge", "size", "small", 3, "align"], [1, "mj-toolbar"], [1, "mj-toolbar-title"], [1, "fas", "fa-users", "mr-2"], [1, "mj-toolbar-actions"], ["placeholder", "Search users...", "rounded", "medium", 2, "width", "300px", 3, "ngModelChange", "clearButton", "ngModel"], ["kendoTextBoxPrefixTemplate", ""], ["fillMode", "outline", "rounded", "medium"], [1, "fas", "fa-filter"], [1, "fas", "fa-user-plus"], [1, "mj-breadcrumb"], [1, "mj-breadcrumb-item"], [1, "fas", "fa-home", "mr-1"], [1, "fas", "fa-chevron-right", "mj-breadcrumb-separator"], [1, "fas", "fa-th", "mr-1"], [1, "mj-breadcrumb-item", "mj-breadcrumb-current"], [1, "fas", "fa-paint-brush", "mr-1"], ["title", "Overview", 3, "selected"], ["kendoTabTitle", ""], ["kendoTabContent", ""], ["title", "Settings"], ["title", "Reports"], ["type", "percent", 1, "mb-2", 3, "value", "max", "animation"], ["type", "value", 1, "mb-2", "progress-success", 3, "value", "max"], [3, "indeterminate", "animation"], ["themeColor", "primary", 1, "mt-2", 3, "click"], [1, "fas", "fa-sync"], ["type", "converging-spinner", "themeColor", "primary", "size", "medium"], [1, "mt-2", "mb-0"], ["type", "infinite-spinner", "themeColor", "info", "size", "medium"], ["type", "pulsing", "themeColor", "success", "size", "medium"], [1, "fas", "fa-spinner", "fa-spin", 2, "font-size", "2rem", "color", "var(--mj-blue)"], [1, "mj-btn", "mj-btn-primary", 3, "click"], [1, "fas", "fa-window-maximize"], ["themeColor", "info", "rounded", "medium", 3, "click"], [1, "fas", "fa-comment"], [1, "mj-btn", "mj-btn-secondary", 3, "click"], ["class", "mj-modal-overlay", 3, "click", 4, "ngIf"], ["title", "Edit User Information", 3, "minWidth", "width", "height", "close", 4, "ngIf"], [1, "mj-kendo-icon-card", 3, "click"], ["rounded", "full", "size", "small", 1, "mt-2", 3, "label", "themeColor"], [1, "mj-card-actions"], [1, "mj-btn", "mj-btn-icon-only", "mj-btn-sm", 3, "click"], [1, "k-form-error"], [1, "dropdown-item-content"], [1, "mr-2"], [1, "radio-label"], ["type", "radio", "name", "theme", "kendoRadioButton", "", 3, "ngModelChange", "value", "ngModel"], [1, "user-cell"], ["themeColor", "info", "shape", "circle", "size", "small", 3, "initials"], [1, "user-info"], [1, "user-name"], [1, "user-role"], [1, "email-link", 3, "href"], [1, "fas", "fa-envelope", "mr-1"], ["rounded", "medium", "fillMode", "outline", 3, "label"], [1, "status-cell"], ["rounded", "full", "size", "small", 3, "themeColor"], [1, "action-buttons"], ["fillMode", "flat", "rounded", "full", "size", "small", "themeColor", "info", "title", "Edit", 3, "click"], ["fillMode", "flat", "rounded", "full", "size", "small", "themeColor", "error", "title", "Delete", 3, "click"], [1, "fas", "fa-search", "search-prefix-icon"], [1, "tab-title"], [1, "fas", "fa-chart-pie", "mr-2"], [1, "tab-content-wrapper"], [1, "fas", "fa-cog", "mr-2"], [1, "fas", "fa-file-alt", "mr-2"], [1, "mj-modal-overlay", 3, "click"], [1, "mj-modal", "mj-modal-lg", 3, "click"], [1, "mj-modal-header"], [1, "mj-modal-title"], [1, "fas", "fa-cog", "mj-modal-icon"], [1, "mj-modal-close", 3, "click"], [1, "mj-modal-body"], [1, "fas", "fa-user", "mr-1"], ["placeholder", "Enter username", "rounded", "medium"], [1, "fas", "fa-palette", "mr-1"], ["rounded", "medium", 3, "data", "value"], [1, "mj-modal-footer"], ["fillMode", "outline", 3, "click"], [1, "mj-modal", "mj-modal-confirm", 3, "click"], [1, "fas", "fa-exclamation-triangle", "mj-modal-confirm-icon", "warning"], [1, "mj-btn", "mj-btn-ghost", 3, "click"], [1, "mj-btn", "mj-btn-primary", 2, "background", "#dc3545", "border-color", "#dc3545"], ["title", "Edit User Information", 3, "close", "minWidth", "width", "height"], [3, "formGroup"], ["formControlName", "fullName", "placeholder", "Enter full name", "rounded", "medium", 3, "clearButton"], ["text", "Email Address", 3, "for"], ["formControlName", "email", "placeholder", "user@example.com", "rounded", "medium", 3, "clearButton"], ["formControlName", "department", "textField", "name", "valueField", "id", "rounded", "medium", 3, "data"], ["orientation", "vertical"], ["text", "Additional Notes"], ["formControlName", "comments", "placeholder", "Enter any additional notes...", "rounded", "medium", 3, "rows"], ["themeColor", "primary", 3, "click", "disabled"], [1, "fas", "fa-user", "search-prefix-icon"], [1, "fas", "fa-envelope", "search-prefix-icon"]], template: function StyleGuideTestComponent_Template(rf, ctx) { if (rf & 1) {
|
|
524
|
+
const _r1 = i0.ɵɵgetCurrentView();
|
|
525
|
+
i0.ɵɵelementStart(0, "div", 5)(1, "div", 6)(2, "div", 7)(3, "div", 8);
|
|
526
|
+
i0.ɵɵelement(4, "i", 9);
|
|
527
|
+
i0.ɵɵelementStart(5, "div")(6, "h1");
|
|
528
|
+
i0.ɵɵtext(7, "Kendo UI + Font Awesome Style Guide");
|
|
529
|
+
i0.ɵɵelementEnd();
|
|
530
|
+
i0.ɵɵelementStart(8, "div", 10);
|
|
531
|
+
i0.ɵɵelement(9, "i", 11);
|
|
532
|
+
i0.ɵɵtext(10, " Modern components with custom styling ");
|
|
533
|
+
i0.ɵɵelementEnd()()();
|
|
534
|
+
i0.ɵɵelementStart(11, "div", 12)(12, "kendo-button", 13)(13, "span", 14);
|
|
535
|
+
i0.ɵɵelement(14, "i", 15);
|
|
536
|
+
i0.ɵɵtext(15, " Export ");
|
|
537
|
+
i0.ɵɵelementEnd()();
|
|
538
|
+
i0.ɵɵelementStart(16, "kendo-button", 16)(17, "span", 14);
|
|
539
|
+
i0.ɵɵelement(18, "i", 17);
|
|
540
|
+
i0.ɵɵtext(19, " Save Changes ");
|
|
541
|
+
i0.ɵɵelementEnd()()()()();
|
|
542
|
+
i0.ɵɵelementStart(20, "div", 6)(21, "h2");
|
|
543
|
+
i0.ɵɵtext(22, "Typography Examples");
|
|
544
|
+
i0.ɵɵelementEnd();
|
|
545
|
+
i0.ɵɵelementStart(23, "div", 18)(24, "h1");
|
|
546
|
+
i0.ɵɵtext(25, "Heading 1 - Main page titles");
|
|
547
|
+
i0.ɵɵelementEnd();
|
|
548
|
+
i0.ɵɵelementStart(26, "h2");
|
|
549
|
+
i0.ɵɵtext(27, "Heading 2 - Section headers");
|
|
550
|
+
i0.ɵɵelementEnd();
|
|
551
|
+
i0.ɵɵelementStart(28, "h3");
|
|
552
|
+
i0.ɵɵtext(29, "Heading 3 - Subsection titles");
|
|
553
|
+
i0.ɵɵelementEnd();
|
|
554
|
+
i0.ɵɵelementStart(30, "h4");
|
|
555
|
+
i0.ɵɵtext(31, "Heading 4 - Component titles");
|
|
556
|
+
i0.ɵɵelementEnd();
|
|
557
|
+
i0.ɵɵelementStart(32, "p");
|
|
558
|
+
i0.ɵɵtext(33, "Body text - Regular paragraph content with good readability and proper line height for easy reading.");
|
|
559
|
+
i0.ɵɵelementEnd();
|
|
560
|
+
i0.ɵɵelementStart(34, "p", 19);
|
|
561
|
+
i0.ɵɵtext(35, "Muted text for secondary information");
|
|
562
|
+
i0.ɵɵelementEnd()()();
|
|
563
|
+
i0.ɵɵelementStart(36, "div", 6)(37, "h2");
|
|
564
|
+
i0.ɵɵtext(38, "Button System Comparison");
|
|
565
|
+
i0.ɵɵelementEnd();
|
|
566
|
+
i0.ɵɵelementStart(39, "div", 20)(40, "h4");
|
|
567
|
+
i0.ɵɵtext(41, "Kendo Buttons with Font Awesome Icons");
|
|
568
|
+
i0.ɵɵelementEnd();
|
|
569
|
+
i0.ɵɵelementStart(42, "div", 21)(43, "kendo-button", 22)(44, "span", 14);
|
|
570
|
+
i0.ɵɵelement(45, "i", 23);
|
|
571
|
+
i0.ɵɵtext(46, " Primary Action ");
|
|
572
|
+
i0.ɵɵelementEnd()();
|
|
573
|
+
i0.ɵɵelementStart(47, "kendo-button", 24)(48, "span", 14);
|
|
574
|
+
i0.ɵɵelement(49, "i", 25);
|
|
575
|
+
i0.ɵɵtext(50, " Info Button ");
|
|
576
|
+
i0.ɵɵelementEnd()();
|
|
577
|
+
i0.ɵɵelementStart(51, "kendo-button", 26)(52, "span", 14);
|
|
578
|
+
i0.ɵɵelement(53, "i", 27);
|
|
579
|
+
i0.ɵɵtext(54, " Success ");
|
|
580
|
+
i0.ɵɵelementEnd()();
|
|
581
|
+
i0.ɵɵelementStart(55, "kendo-button", 28)(56, "span", 14);
|
|
582
|
+
i0.ɵɵelement(57, "i", 29);
|
|
583
|
+
i0.ɵɵtext(58, " Warning ");
|
|
584
|
+
i0.ɵɵelementEnd()();
|
|
585
|
+
i0.ɵɵelementStart(59, "kendo-button", 30)(60, "span", 14);
|
|
586
|
+
i0.ɵɵelement(61, "i", 31);
|
|
587
|
+
i0.ɵɵtext(62, " Error ");
|
|
588
|
+
i0.ɵɵelementEnd()()()();
|
|
589
|
+
i0.ɵɵelementStart(63, "div", 20)(64, "h4");
|
|
590
|
+
i0.ɵɵtext(65, "Icon-Only Kendo Buttons");
|
|
591
|
+
i0.ɵɵelementEnd();
|
|
592
|
+
i0.ɵɵelementStart(66, "div", 21)(67, "kendo-button", 32);
|
|
593
|
+
i0.ɵɵelement(68, "i", 33);
|
|
594
|
+
i0.ɵɵelementEnd();
|
|
595
|
+
i0.ɵɵelementStart(69, "kendo-button", 34);
|
|
596
|
+
i0.ɵɵelement(70, "i", 35);
|
|
597
|
+
i0.ɵɵelementEnd();
|
|
598
|
+
i0.ɵɵelementStart(71, "kendo-button", 36);
|
|
599
|
+
i0.ɵɵelement(72, "i", 37);
|
|
600
|
+
i0.ɵɵelementEnd();
|
|
601
|
+
i0.ɵɵelementStart(73, "kendo-button", 38);
|
|
602
|
+
i0.ɵɵelement(74, "i", 39);
|
|
603
|
+
i0.ɵɵelementEnd()()();
|
|
604
|
+
i0.ɵɵelementStart(75, "div", 20)(76, "h4");
|
|
605
|
+
i0.ɵɵtext(77, "Custom MJ Buttons (For Comparison)");
|
|
606
|
+
i0.ɵɵelementEnd();
|
|
607
|
+
i0.ɵɵelementStart(78, "div", 21)(79, "button", 40);
|
|
608
|
+
i0.ɵɵelement(80, "i", 41);
|
|
609
|
+
i0.ɵɵtext(81, " Launch ");
|
|
610
|
+
i0.ɵɵelementEnd();
|
|
611
|
+
i0.ɵɵelementStart(82, "button", 42);
|
|
612
|
+
i0.ɵɵelement(83, "i", 33);
|
|
613
|
+
i0.ɵɵtext(84, " Edit ");
|
|
614
|
+
i0.ɵɵelementEnd();
|
|
615
|
+
i0.ɵɵelementStart(85, "button", 43);
|
|
616
|
+
i0.ɵɵelement(86, "i", 44);
|
|
617
|
+
i0.ɵɵtext(87, " Cancel ");
|
|
618
|
+
i0.ɵɵelementEnd()()();
|
|
619
|
+
i0.ɵɵelementStart(88, "div", 20)(89, "h4");
|
|
620
|
+
i0.ɵɵtext(90, "Kendo Button Group");
|
|
621
|
+
i0.ɵɵelementEnd();
|
|
622
|
+
i0.ɵɵelementStart(91, "kendo-buttongroup")(92, "button", 45);
|
|
623
|
+
i0.ɵɵelement(93, "i", 46);
|
|
624
|
+
i0.ɵɵelementEnd();
|
|
625
|
+
i0.ɵɵelementStart(94, "button", 47);
|
|
626
|
+
i0.ɵɵelement(95, "i", 48);
|
|
627
|
+
i0.ɵɵelementEnd();
|
|
628
|
+
i0.ɵɵelementStart(96, "button", 47);
|
|
629
|
+
i0.ɵɵelement(97, "i", 49);
|
|
630
|
+
i0.ɵɵelementEnd()()()();
|
|
631
|
+
i0.ɵɵelementStart(98, "div", 6)(99, "h2");
|
|
632
|
+
i0.ɵɵtext(100, "Card Components");
|
|
633
|
+
i0.ɵɵelementEnd();
|
|
634
|
+
i0.ɵɵelementStart(101, "h4");
|
|
635
|
+
i0.ɵɵtext(102, "Icon Cards with Hover Effects (Kendo Cards)");
|
|
636
|
+
i0.ɵɵelementEnd();
|
|
637
|
+
i0.ɵɵelementStart(103, "div", 50);
|
|
638
|
+
i0.ɵɵtemplate(104, StyleGuideTestComponent_kendo_card_104_Template, 13, 6, "kendo-card", 51);
|
|
639
|
+
i0.ɵɵelementEnd();
|
|
640
|
+
i0.ɵɵelementStart(105, "div", 52)(106, "h4");
|
|
641
|
+
i0.ɵɵtext(107, "Kendo Cards with Custom Styling");
|
|
642
|
+
i0.ɵɵelementEnd();
|
|
643
|
+
i0.ɵɵelementStart(108, "div", 53)(109, "kendo-card", 54)(110, "kendo-card-header")(111, "h4");
|
|
644
|
+
i0.ɵɵelement(112, "i", 55);
|
|
645
|
+
i0.ɵɵtext(113, " Analytics Overview ");
|
|
646
|
+
i0.ɵɵelementEnd()();
|
|
647
|
+
i0.ɵɵelementStart(114, "kendo-card-body")(115, "p");
|
|
648
|
+
i0.ɵɵtext(116, "View real-time analytics and performance metrics for your application.");
|
|
649
|
+
i0.ɵɵelementEnd();
|
|
650
|
+
i0.ɵɵelementStart(117, "kendo-chip-list");
|
|
651
|
+
i0.ɵɵelement(118, "kendo-chip", 56)(119, "kendo-chip", 57);
|
|
652
|
+
i0.ɵɵelementEnd()();
|
|
653
|
+
i0.ɵɵelementStart(120, "kendo-card-actions", 58)(121, "kendo-button", 59);
|
|
654
|
+
i0.ɵɵtext(122, "Details");
|
|
655
|
+
i0.ɵɵelementEnd();
|
|
656
|
+
i0.ɵɵelementStart(123, "kendo-button", 60);
|
|
657
|
+
i0.ɵɵtext(124, "View Dashboard");
|
|
658
|
+
i0.ɵɵelementEnd()()();
|
|
659
|
+
i0.ɵɵelementStart(125, "kendo-card", 54)(126, "kendo-card-body")(127, "div", 61);
|
|
660
|
+
i0.ɵɵelement(128, "kendo-avatar", 62);
|
|
661
|
+
i0.ɵɵelementStart(129, "h4", 63);
|
|
662
|
+
i0.ɵɵtext(130, "User Profile");
|
|
663
|
+
i0.ɵɵelementEnd();
|
|
664
|
+
i0.ɵɵelementStart(131, "p");
|
|
665
|
+
i0.ɵɵtext(132, "Manage your account settings and preferences");
|
|
666
|
+
i0.ɵɵelementEnd();
|
|
667
|
+
i0.ɵɵelementStart(133, "kendo-badge-container")(134, "kendo-button", 16)(135, "span", 14);
|
|
668
|
+
i0.ɵɵelement(136, "i", 64);
|
|
669
|
+
i0.ɵɵtext(137, " Notifications ");
|
|
670
|
+
i0.ɵɵelementEnd()();
|
|
671
|
+
i0.ɵɵelementStart(138, "kendo-badge", 65);
|
|
672
|
+
i0.ɵɵtext(139);
|
|
673
|
+
i0.ɵɵelementEnd()()()()();
|
|
674
|
+
i0.ɵɵelementStart(140, "kendo-card", 54)(141, "kendo-card-body")(142, "div", 66);
|
|
675
|
+
i0.ɵɵelement(143, "i", 67);
|
|
676
|
+
i0.ɵɵelementStart(144, "h3");
|
|
677
|
+
i0.ɵɵtext(145, "No Data Available");
|
|
678
|
+
i0.ɵɵelementEnd();
|
|
679
|
+
i0.ɵɵelementStart(146, "p");
|
|
680
|
+
i0.ɵɵtext(147, "Start by importing your data");
|
|
681
|
+
i0.ɵɵelementEnd();
|
|
682
|
+
i0.ɵɵelementStart(148, "kendo-button", 16)(149, "span", 14);
|
|
683
|
+
i0.ɵɵelement(150, "i", 68);
|
|
684
|
+
i0.ɵɵtext(151, " Import Data ");
|
|
685
|
+
i0.ɵɵelementEnd()()()()()()()();
|
|
686
|
+
i0.ɵɵelementStart(152, "div", 6)(153, "h2");
|
|
687
|
+
i0.ɵɵtext(154, "Form Elements - Kendo vs Custom");
|
|
688
|
+
i0.ɵɵelementEnd();
|
|
689
|
+
i0.ɵɵelementStart(155, "div", 69)(156, "div")(157, "h4");
|
|
690
|
+
i0.ɵɵtext(158, "Kendo Form Components");
|
|
691
|
+
i0.ɵɵelementEnd();
|
|
692
|
+
i0.ɵɵelementStart(159, "kendo-formfield", 70);
|
|
693
|
+
i0.ɵɵelement(160, "kendo-label", 71)(161, "kendo-textbox", 72, 0);
|
|
694
|
+
i0.ɵɵtemplate(163, StyleGuideTestComponent_div_163_Template, 2, 0, "div", 73);
|
|
695
|
+
i0.ɵɵelementEnd();
|
|
696
|
+
i0.ɵɵelementStart(164, "kendo-formfield", 70);
|
|
697
|
+
i0.ɵɵelement(165, "kendo-label", 74);
|
|
698
|
+
i0.ɵɵelementStart(166, "kendo-dropdownlist", 75, 1);
|
|
699
|
+
i0.ɵɵtwoWayListener("ngModelChange", function StyleGuideTestComponent_Template_kendo_dropdownlist_ngModelChange_166_listener($event) { i0.ɵɵrestoreView(_r1); i0.ɵɵtwoWayBindingSet(ctx.selectedDepartment, $event) || (ctx.selectedDepartment = $event); return i0.ɵɵresetView($event); });
|
|
700
|
+
i0.ɵɵtemplate(168, StyleGuideTestComponent_ng_template_168_Template, 3, 3, "ng-template", 76);
|
|
701
|
+
i0.ɵɵelementEnd()();
|
|
702
|
+
i0.ɵɵelementStart(169, "kendo-formfield", 70);
|
|
703
|
+
i0.ɵɵelement(170, "kendo-label", 77);
|
|
704
|
+
i0.ɵɵelementStart(171, "kendo-multiselect", 78);
|
|
705
|
+
i0.ɵɵtwoWayListener("ngModelChange", function StyleGuideTestComponent_Template_kendo_multiselect_ngModelChange_171_listener($event) { i0.ɵɵrestoreView(_r1); i0.ɵɵtwoWayBindingSet(ctx.selectedTechnologies, $event) || (ctx.selectedTechnologies = $event); return i0.ɵɵresetView($event); });
|
|
706
|
+
i0.ɵɵelementEnd()();
|
|
707
|
+
i0.ɵɵelementStart(172, "kendo-formfield", 70);
|
|
708
|
+
i0.ɵɵelement(173, "kendo-label", 79);
|
|
709
|
+
i0.ɵɵelementStart(174, "kendo-datepicker", 80);
|
|
710
|
+
i0.ɵɵtwoWayListener("valueChange", function StyleGuideTestComponent_Template_kendo_datepicker_valueChange_174_listener($event) { i0.ɵɵrestoreView(_r1); i0.ɵɵtwoWayBindingSet(ctx.dateValue, $event) || (ctx.dateValue = $event); return i0.ɵɵresetView($event); });
|
|
711
|
+
i0.ɵɵelementEnd()()();
|
|
712
|
+
i0.ɵɵelementStart(175, "div")(176, "h4");
|
|
713
|
+
i0.ɵɵtext(177, "Custom Form Elements");
|
|
714
|
+
i0.ɵɵelementEnd();
|
|
715
|
+
i0.ɵɵelementStart(178, "div", 81)(179, "label", 82);
|
|
716
|
+
i0.ɵɵelement(180, "i", 83);
|
|
717
|
+
i0.ɵɵtext(181, " Search Field ");
|
|
718
|
+
i0.ɵɵelementEnd();
|
|
719
|
+
i0.ɵɵelementStart(182, "div", 84);
|
|
720
|
+
i0.ɵɵelement(183, "i", 85);
|
|
721
|
+
i0.ɵɵelementStart(184, "input", 86);
|
|
722
|
+
i0.ɵɵtwoWayListener("ngModelChange", function StyleGuideTestComponent_Template_input_ngModelChange_184_listener($event) { i0.ɵɵrestoreView(_r1); i0.ɵɵtwoWayBindingSet(ctx.searchText, $event) || (ctx.searchText = $event); return i0.ɵɵresetView($event); });
|
|
723
|
+
i0.ɵɵelementEnd()()();
|
|
724
|
+
i0.ɵɵelementStart(185, "div", 81)(186, "label", 82);
|
|
725
|
+
i0.ɵɵelement(187, "i", 87);
|
|
726
|
+
i0.ɵɵtext(188, " Comments ");
|
|
727
|
+
i0.ɵɵelementEnd();
|
|
728
|
+
i0.ɵɵelement(189, "kendo-textarea", 88);
|
|
729
|
+
i0.ɵɵelementEnd();
|
|
730
|
+
i0.ɵɵelementStart(190, "div", 81)(191, "label", 82);
|
|
731
|
+
i0.ɵɵtext(192, "Options");
|
|
732
|
+
i0.ɵɵelementEnd();
|
|
733
|
+
i0.ɵɵelementStart(193, "div", 89)(194, "label", 90);
|
|
734
|
+
i0.ɵɵelement(195, "input", 91);
|
|
735
|
+
i0.ɵɵelementStart(196, "span", 92);
|
|
736
|
+
i0.ɵɵtext(197, "Enable notifications");
|
|
737
|
+
i0.ɵɵelementEnd()();
|
|
738
|
+
i0.ɵɵelementStart(198, "label", 90);
|
|
739
|
+
i0.ɵɵelement(199, "input", 93);
|
|
740
|
+
i0.ɵɵelementStart(200, "span", 92);
|
|
741
|
+
i0.ɵɵtext(201, "Subscribe to newsletter");
|
|
742
|
+
i0.ɵɵelementEnd()()()();
|
|
743
|
+
i0.ɵɵelementStart(202, "div", 81)(203, "label", 82);
|
|
744
|
+
i0.ɵɵtext(204, "Theme Preference");
|
|
745
|
+
i0.ɵɵelementEnd();
|
|
746
|
+
i0.ɵɵelementStart(205, "div", 94);
|
|
747
|
+
i0.ɵɵtemplate(206, StyleGuideTestComponent_label_206_Template, 4, 3, "label", 95);
|
|
748
|
+
i0.ɵɵelementEnd()()()()();
|
|
749
|
+
i0.ɵɵelementStart(207, "div", 6)(208, "h2");
|
|
750
|
+
i0.ɵɵtext(209, "Enhanced Kendo Grid");
|
|
751
|
+
i0.ɵɵelementEnd();
|
|
752
|
+
i0.ɵɵelementStart(210, "kendo-grid", 96);
|
|
753
|
+
i0.ɵɵelement(211, "kendo-grid-checkbox-column", 97);
|
|
754
|
+
i0.ɵɵelementStart(212, "kendo-grid-column", 98);
|
|
755
|
+
i0.ɵɵtemplate(213, StyleGuideTestComponent_ng_template_213_Template, 7, 3, "ng-template", 99);
|
|
756
|
+
i0.ɵɵelementEnd();
|
|
757
|
+
i0.ɵɵelementStart(214, "kendo-grid-column", 100);
|
|
758
|
+
i0.ɵɵtemplate(215, StyleGuideTestComponent_ng_template_215_Template, 3, 3, "ng-template", 99);
|
|
759
|
+
i0.ɵɵelementEnd();
|
|
760
|
+
i0.ɵɵelementStart(216, "kendo-grid-column", 101);
|
|
761
|
+
i0.ɵɵtemplate(217, StyleGuideTestComponent_ng_template_217_Template, 1, 1, "ng-template", 99);
|
|
762
|
+
i0.ɵɵelementEnd();
|
|
763
|
+
i0.ɵɵelementStart(218, "kendo-grid-column", 102);
|
|
764
|
+
i0.ɵɵtemplate(219, StyleGuideTestComponent_ng_template_219_Template, 4, 4, "ng-template", 99);
|
|
765
|
+
i0.ɵɵelementEnd();
|
|
766
|
+
i0.ɵɵelementStart(220, "kendo-grid-column", 103);
|
|
767
|
+
i0.ɵɵtemplate(221, StyleGuideTestComponent_ng_template_221_Template, 5, 0, "ng-template", 99);
|
|
768
|
+
i0.ɵɵelementEnd()()();
|
|
769
|
+
i0.ɵɵelementStart(222, "div", 6)(223, "h2");
|
|
770
|
+
i0.ɵɵtext(224, "Badges, Chips & Status Indicators");
|
|
771
|
+
i0.ɵɵelementEnd();
|
|
772
|
+
i0.ɵɵelementStart(225, "div", 20)(226, "h4");
|
|
773
|
+
i0.ɵɵtext(227, "Custom Badges with Font Awesome");
|
|
774
|
+
i0.ɵɵelementEnd();
|
|
775
|
+
i0.ɵɵelementStart(228, "div", 104)(229, "span", 105);
|
|
776
|
+
i0.ɵɵelement(230, "i", 106);
|
|
777
|
+
i0.ɵɵtext(231, " Active ");
|
|
778
|
+
i0.ɵɵelementEnd();
|
|
779
|
+
i0.ɵɵelementStart(232, "span", 107);
|
|
780
|
+
i0.ɵɵelement(233, "i", 108);
|
|
781
|
+
i0.ɵɵtext(234, " Inactive ");
|
|
782
|
+
i0.ɵɵelementEnd();
|
|
783
|
+
i0.ɵɵelementStart(235, "span", 109);
|
|
784
|
+
i0.ɵɵelement(236, "i", 110);
|
|
785
|
+
i0.ɵɵtext(237, " Pending ");
|
|
786
|
+
i0.ɵɵelementEnd();
|
|
787
|
+
i0.ɵɵelementStart(238, "span", 111);
|
|
788
|
+
i0.ɵɵelement(239, "i", 112);
|
|
789
|
+
i0.ɵɵtext(240, " Info ");
|
|
790
|
+
i0.ɵɵelementEnd()()();
|
|
791
|
+
i0.ɵɵelementStart(241, "div", 20)(242, "h4");
|
|
792
|
+
i0.ɵɵtext(243, "Kendo Chips with Icons");
|
|
793
|
+
i0.ɵɵelementEnd();
|
|
794
|
+
i0.ɵɵelementStart(244, "kendo-chip-list");
|
|
795
|
+
i0.ɵɵelement(245, "kendo-chip", 113)(246, "kendo-chip", 114)(247, "kendo-chip", 115)(248, "kendo-chip", 116);
|
|
796
|
+
i0.ɵɵelementEnd()();
|
|
797
|
+
i0.ɵɵelementStart(249, "div", 20)(250, "h4");
|
|
798
|
+
i0.ɵɵtext(251, "Notification Badges");
|
|
799
|
+
i0.ɵɵelementEnd();
|
|
800
|
+
i0.ɵɵelementStart(252, "div", 104)(253, "kendo-badge-container")(254, "kendo-button", 16);
|
|
801
|
+
i0.ɵɵelement(255, "i", 117);
|
|
802
|
+
i0.ɵɵtext(256, " Messages ");
|
|
803
|
+
i0.ɵɵelementEnd();
|
|
804
|
+
i0.ɵɵelementStart(257, "kendo-badge", 118);
|
|
805
|
+
i0.ɵɵtext(258, "12");
|
|
806
|
+
i0.ɵɵelementEnd()();
|
|
807
|
+
i0.ɵɵelementStart(259, "kendo-badge-container")(260, "kendo-button", 119);
|
|
808
|
+
i0.ɵɵelement(261, "i", 64);
|
|
809
|
+
i0.ɵɵelementEnd();
|
|
810
|
+
i0.ɵɵelementStart(262, "kendo-badge", 120);
|
|
811
|
+
i0.ɵɵtext(263, "3");
|
|
812
|
+
i0.ɵɵelementEnd()();
|
|
813
|
+
i0.ɵɵelementStart(264, "kendo-badge-container");
|
|
814
|
+
i0.ɵɵelement(265, "kendo-avatar", 121);
|
|
815
|
+
i0.ɵɵelementStart(266, "kendo-badge", 122);
|
|
816
|
+
i0.ɵɵelement(267, "i", 23);
|
|
817
|
+
i0.ɵɵelementEnd()()()()();
|
|
818
|
+
i0.ɵɵelementStart(268, "div", 6)(269, "h2");
|
|
819
|
+
i0.ɵɵtext(270, "Navigation & Layout Components");
|
|
820
|
+
i0.ɵɵelementEnd();
|
|
821
|
+
i0.ɵɵelementStart(271, "div", 20)(272, "h4");
|
|
822
|
+
i0.ɵɵtext(273, "Enhanced Toolbar with Search");
|
|
823
|
+
i0.ɵɵelementEnd();
|
|
824
|
+
i0.ɵɵelementStart(274, "div", 123)(275, "h3", 124);
|
|
825
|
+
i0.ɵɵelement(276, "i", 125);
|
|
826
|
+
i0.ɵɵtext(277, " User Management ");
|
|
827
|
+
i0.ɵɵelementEnd();
|
|
828
|
+
i0.ɵɵelementStart(278, "div", 126)(279, "kendo-textbox", 127);
|
|
829
|
+
i0.ɵɵtwoWayListener("ngModelChange", function StyleGuideTestComponent_Template_kendo_textbox_ngModelChange_279_listener($event) { i0.ɵɵrestoreView(_r1); i0.ɵɵtwoWayBindingSet(ctx.searchText, $event) || (ctx.searchText = $event); return i0.ɵɵresetView($event); });
|
|
830
|
+
i0.ɵɵtemplate(280, StyleGuideTestComponent_ng_template_280_Template, 1, 0, "ng-template", 128);
|
|
831
|
+
i0.ɵɵelementEnd();
|
|
832
|
+
i0.ɵɵelementStart(281, "kendo-button", 129)(282, "span", 14);
|
|
833
|
+
i0.ɵɵelement(283, "i", 130);
|
|
834
|
+
i0.ɵɵtext(284, " Filter ");
|
|
835
|
+
i0.ɵɵelementEnd()();
|
|
836
|
+
i0.ɵɵelementStart(285, "kendo-button", 16)(286, "span", 14);
|
|
837
|
+
i0.ɵɵelement(287, "i", 131);
|
|
838
|
+
i0.ɵɵtext(288, " Add User ");
|
|
839
|
+
i0.ɵɵelementEnd()()()()();
|
|
840
|
+
i0.ɵɵelementStart(289, "div", 20)(290, "h4");
|
|
841
|
+
i0.ɵɵtext(291, "Breadcrumb Navigation");
|
|
842
|
+
i0.ɵɵelementEnd();
|
|
843
|
+
i0.ɵɵelementStart(292, "nav", 132)(293, "span", 133);
|
|
844
|
+
i0.ɵɵelement(294, "i", 134);
|
|
845
|
+
i0.ɵɵtext(295, " Home ");
|
|
846
|
+
i0.ɵɵelementEnd();
|
|
847
|
+
i0.ɵɵelement(296, "i", 135);
|
|
848
|
+
i0.ɵɵelementStart(297, "span", 133);
|
|
849
|
+
i0.ɵɵelement(298, "i", 136);
|
|
850
|
+
i0.ɵɵtext(299, " Components ");
|
|
851
|
+
i0.ɵɵelementEnd();
|
|
852
|
+
i0.ɵɵelement(300, "i", 135);
|
|
853
|
+
i0.ɵɵelementStart(301, "span", 137);
|
|
854
|
+
i0.ɵɵelement(302, "i", 138);
|
|
855
|
+
i0.ɵɵtext(303, " Style Guide ");
|
|
856
|
+
i0.ɵɵelementEnd()()();
|
|
857
|
+
i0.ɵɵelementStart(304, "div")(305, "h4");
|
|
858
|
+
i0.ɵɵtext(306, "Kendo TabStrip with Font Awesome");
|
|
859
|
+
i0.ɵɵelementEnd();
|
|
860
|
+
i0.ɵɵelementStart(307, "kendo-tabstrip")(308, "kendo-tabstrip-tab", 139);
|
|
861
|
+
i0.ɵɵtemplate(309, StyleGuideTestComponent_ng_template_309_Template, 3, 0, "ng-template", 140)(310, StyleGuideTestComponent_ng_template_310_Template, 7, 0, "ng-template", 141);
|
|
862
|
+
i0.ɵɵelementEnd();
|
|
863
|
+
i0.ɵɵelementStart(311, "kendo-tabstrip-tab", 142);
|
|
864
|
+
i0.ɵɵtemplate(312, StyleGuideTestComponent_ng_template_312_Template, 3, 0, "ng-template", 140)(313, StyleGuideTestComponent_ng_template_313_Template, 5, 0, "ng-template", 141);
|
|
865
|
+
i0.ɵɵelementEnd();
|
|
866
|
+
i0.ɵɵelementStart(314, "kendo-tabstrip-tab", 143);
|
|
867
|
+
i0.ɵɵtemplate(315, StyleGuideTestComponent_ng_template_315_Template, 3, 0, "ng-template", 140)(316, StyleGuideTestComponent_ng_template_316_Template, 5, 0, "ng-template", 141);
|
|
868
|
+
i0.ɵɵelementEnd()()()();
|
|
869
|
+
i0.ɵɵelementStart(317, "div", 6)(318, "h2");
|
|
870
|
+
i0.ɵɵtext(319, "Progress & Loading Indicators");
|
|
871
|
+
i0.ɵɵelementEnd();
|
|
872
|
+
i0.ɵɵelementStart(320, "div", 20)(321, "h4");
|
|
873
|
+
i0.ɵɵtext(322, "Kendo Progress Bars");
|
|
874
|
+
i0.ɵɵelementEnd();
|
|
875
|
+
i0.ɵɵelement(323, "kendo-progressbar", 144)(324, "kendo-progressbar", 145)(325, "kendo-progressbar", 146);
|
|
876
|
+
i0.ɵɵelementStart(326, "kendo-button", 147);
|
|
877
|
+
i0.ɵɵlistener("click", function StyleGuideTestComponent_Template_kendo_button_click_326_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.loadData()); });
|
|
878
|
+
i0.ɵɵelementStart(327, "span", 14);
|
|
879
|
+
i0.ɵɵelement(328, "i", 148);
|
|
880
|
+
i0.ɵɵtext(329, " Simulate Loading ");
|
|
881
|
+
i0.ɵɵelementEnd()()();
|
|
882
|
+
i0.ɵɵelementStart(330, "div", 20)(331, "h4");
|
|
883
|
+
i0.ɵɵtext(332, "Loading States");
|
|
884
|
+
i0.ɵɵelementEnd();
|
|
885
|
+
i0.ɵɵelementStart(333, "div", 50)(334, "kendo-card")(335, "kendo-card-body")(336, "div", 61);
|
|
886
|
+
i0.ɵɵelement(337, "kendo-loader", 149);
|
|
887
|
+
i0.ɵɵelementStart(338, "p", 150);
|
|
888
|
+
i0.ɵɵtext(339, "Converging");
|
|
889
|
+
i0.ɵɵelementEnd()()()();
|
|
890
|
+
i0.ɵɵelementStart(340, "kendo-card")(341, "kendo-card-body")(342, "div", 61);
|
|
891
|
+
i0.ɵɵelement(343, "kendo-loader", 151);
|
|
892
|
+
i0.ɵɵelementStart(344, "p", 150);
|
|
893
|
+
i0.ɵɵtext(345, "Infinite");
|
|
894
|
+
i0.ɵɵelementEnd()()()();
|
|
895
|
+
i0.ɵɵelementStart(346, "kendo-card")(347, "kendo-card-body")(348, "div", 61);
|
|
896
|
+
i0.ɵɵelement(349, "kendo-loader", 152);
|
|
897
|
+
i0.ɵɵelementStart(350, "p", 150);
|
|
898
|
+
i0.ɵɵtext(351, "Pulsing");
|
|
899
|
+
i0.ɵɵelementEnd()()()();
|
|
900
|
+
i0.ɵɵelementStart(352, "kendo-card")(353, "kendo-card-body")(354, "div", 61);
|
|
901
|
+
i0.ɵɵelement(355, "i", 153);
|
|
902
|
+
i0.ɵɵelementStart(356, "p", 150);
|
|
903
|
+
i0.ɵɵtext(357, "Font Awesome");
|
|
904
|
+
i0.ɵɵelementEnd()()()()()()();
|
|
905
|
+
i0.ɵɵelementStart(358, "div", 6)(359, "h2");
|
|
906
|
+
i0.ɵɵtext(360, "Modals & Dialogs");
|
|
907
|
+
i0.ɵɵelementEnd();
|
|
908
|
+
i0.ɵɵelementStart(361, "div", 21)(362, "button", 154);
|
|
909
|
+
i0.ɵɵlistener("click", function StyleGuideTestComponent_Template_button_click_362_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.openModal()); });
|
|
910
|
+
i0.ɵɵelement(363, "i", 155);
|
|
911
|
+
i0.ɵɵtext(364, " Custom Modal ");
|
|
912
|
+
i0.ɵɵelementEnd();
|
|
913
|
+
i0.ɵɵelementStart(365, "kendo-button", 156);
|
|
914
|
+
i0.ɵɵlistener("click", function StyleGuideTestComponent_Template_kendo_button_click_365_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.openKendoDialog()); });
|
|
915
|
+
i0.ɵɵelementStart(366, "span", 14);
|
|
916
|
+
i0.ɵɵelement(367, "i", 157);
|
|
917
|
+
i0.ɵɵtext(368, " Kendo Dialog ");
|
|
918
|
+
i0.ɵɵelementEnd()();
|
|
919
|
+
i0.ɵɵelementStart(369, "button", 158);
|
|
920
|
+
i0.ɵɵlistener("click", function StyleGuideTestComponent_Template_button_click_369_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.openConfirmModal()); });
|
|
921
|
+
i0.ɵɵelement(370, "i", 29);
|
|
922
|
+
i0.ɵɵtext(371, " Confirm Dialog ");
|
|
923
|
+
i0.ɵɵelementEnd()()()();
|
|
924
|
+
i0.ɵɵtemplate(372, StyleGuideTestComponent_div_372_Template, 28, 2, "div", 159)(373, StyleGuideTestComponent_div_373_Template, 19, 0, "div", 159)(374, StyleGuideTestComponent_kendo_dialog_374_Template, 29, 14, "kendo-dialog", 160);
|
|
925
|
+
} if (rf & 2) {
|
|
926
|
+
const fullNameInput_r21 = i0.ɵɵreference(162);
|
|
927
|
+
const deptDropdown_r22 = i0.ɵɵreference(167);
|
|
928
|
+
i0.ɵɵadvance(92);
|
|
929
|
+
i0.ɵɵproperty("toggleable", true)("selected", true);
|
|
930
|
+
i0.ɵɵadvance(2);
|
|
931
|
+
i0.ɵɵproperty("toggleable", true);
|
|
932
|
+
i0.ɵɵadvance(2);
|
|
933
|
+
i0.ɵɵproperty("toggleable", true);
|
|
934
|
+
i0.ɵɵadvance(8);
|
|
935
|
+
i0.ɵɵproperty("ngForOf", ctx.sampleItems);
|
|
936
|
+
i0.ɵɵadvance(24);
|
|
937
|
+
i0.ɵɵproperty("imageSrc", "assets/avatar-placeholder.jpg");
|
|
938
|
+
i0.ɵɵadvance(10);
|
|
939
|
+
i0.ɵɵproperty("align", ctx.badgeAlignTopEnd);
|
|
940
|
+
i0.ɵɵadvance();
|
|
941
|
+
i0.ɵɵtextInterpolate(ctx.notificationCount);
|
|
942
|
+
i0.ɵɵadvance(21);
|
|
943
|
+
i0.ɵɵproperty("for", fullNameInput_r21);
|
|
944
|
+
i0.ɵɵadvance();
|
|
945
|
+
i0.ɵɵproperty("clearButton", true)("formControl", ctx.fullNameControl);
|
|
946
|
+
i0.ɵɵadvance(2);
|
|
947
|
+
i0.ɵɵproperty("ngIf", ctx.fullNameControl.touched && (ctx.fullNameControl.errors == null ? null : ctx.fullNameControl.errors["required"]));
|
|
948
|
+
i0.ɵɵadvance(2);
|
|
949
|
+
i0.ɵɵproperty("for", deptDropdown_r22);
|
|
950
|
+
i0.ɵɵadvance();
|
|
951
|
+
i0.ɵɵproperty("data", ctx.departments);
|
|
952
|
+
i0.ɵɵtwoWayProperty("ngModel", ctx.selectedDepartment);
|
|
953
|
+
i0.ɵɵadvance(5);
|
|
954
|
+
i0.ɵɵproperty("data", ctx.technologies);
|
|
955
|
+
i0.ɵɵtwoWayProperty("ngModel", ctx.selectedTechnologies);
|
|
956
|
+
i0.ɵɵadvance(3);
|
|
957
|
+
i0.ɵɵtwoWayProperty("value", ctx.dateValue);
|
|
958
|
+
i0.ɵɵadvance(10);
|
|
959
|
+
i0.ɵɵtwoWayProperty("ngModel", ctx.searchText);
|
|
960
|
+
i0.ɵɵadvance(5);
|
|
961
|
+
i0.ɵɵproperty("formControl", ctx.commentsControl)("rows", 4);
|
|
962
|
+
i0.ɵɵadvance(17);
|
|
963
|
+
i0.ɵɵproperty("ngForOf", ctx.themeOptions);
|
|
964
|
+
i0.ɵɵadvance(4);
|
|
965
|
+
i0.ɵɵproperty("data", ctx.gridData)("height", 400)("sortable", true)("filterable", true)("groupable", false)("reorderable", true)("resizable", true)("selectable", i0.ɵɵpureFunction0(61, _c0));
|
|
966
|
+
i0.ɵɵadvance();
|
|
967
|
+
i0.ɵɵclassMap("text-center");
|
|
968
|
+
i0.ɵɵproperty("width", 45)("headerClass", "text-center");
|
|
969
|
+
i0.ɵɵadvance();
|
|
970
|
+
i0.ɵɵproperty("width", 200);
|
|
971
|
+
i0.ɵɵadvance(2);
|
|
972
|
+
i0.ɵɵproperty("width", 220);
|
|
973
|
+
i0.ɵɵadvance(2);
|
|
974
|
+
i0.ɵɵproperty("width", 150);
|
|
975
|
+
i0.ɵɵadvance(2);
|
|
976
|
+
i0.ɵɵproperty("width", 120);
|
|
977
|
+
i0.ɵɵadvance(2);
|
|
978
|
+
i0.ɵɵproperty("width", 120)("sortable", false)("filterable", false);
|
|
979
|
+
i0.ɵɵadvance(25);
|
|
980
|
+
i0.ɵɵproperty("removable", true);
|
|
981
|
+
i0.ɵɵadvance();
|
|
982
|
+
i0.ɵɵproperty("removable", true);
|
|
983
|
+
i0.ɵɵadvance();
|
|
984
|
+
i0.ɵɵproperty("removable", true);
|
|
985
|
+
i0.ɵɵadvance();
|
|
986
|
+
i0.ɵɵproperty("removable", true);
|
|
987
|
+
i0.ɵɵadvance(9);
|
|
988
|
+
i0.ɵɵproperty("align", ctx.badgeAlignTopEnd);
|
|
989
|
+
i0.ɵɵadvance(5);
|
|
990
|
+
i0.ɵɵproperty("align", ctx.badgeAlignTopEnd);
|
|
991
|
+
i0.ɵɵadvance(4);
|
|
992
|
+
i0.ɵɵproperty("align", ctx.badgeAlignBottomEnd);
|
|
993
|
+
i0.ɵɵadvance(13);
|
|
994
|
+
i0.ɵɵproperty("clearButton", true);
|
|
995
|
+
i0.ɵɵtwoWayProperty("ngModel", ctx.searchText);
|
|
996
|
+
i0.ɵɵadvance(29);
|
|
997
|
+
i0.ɵɵproperty("selected", true);
|
|
998
|
+
i0.ɵɵadvance(15);
|
|
999
|
+
i0.ɵɵproperty("value", ctx.progressValue)("max", 100)("animation", true);
|
|
1000
|
+
i0.ɵɵadvance();
|
|
1001
|
+
i0.ɵɵproperty("value", ctx.progressValue)("max", 100);
|
|
1002
|
+
i0.ɵɵadvance();
|
|
1003
|
+
i0.ɵɵproperty("indeterminate", true)("animation", true);
|
|
1004
|
+
i0.ɵɵadvance(47);
|
|
1005
|
+
i0.ɵɵproperty("ngIf", ctx.isModalOpen);
|
|
1006
|
+
i0.ɵɵadvance();
|
|
1007
|
+
i0.ɵɵproperty("ngIf", ctx.isConfirmModalOpen);
|
|
1008
|
+
i0.ɵɵadvance();
|
|
1009
|
+
i0.ɵɵproperty("ngIf", ctx.isKendoDialogOpen);
|
|
1010
|
+
} }, dependencies: [i1.NgForOf, i1.NgIf, i2.ɵNgNoValidate, i2.DefaultValueAccessor, i2.RadioControlValueAccessor, i2.NgControlStatus, i2.NgControlStatusGroup, i2.NgModel, i2.FormControlDirective, i2.FormGroupDirective, i2.FormControlName, i3.GridComponent, i3.ColumnComponent, i3.CheckboxColumnComponent, i3.CellTemplateDirective, i4.DialogComponent, i4.DialogActionsComponent, i5.BadgeComponent, i5.BadgeContainerComponent, i5.LoaderComponent, i6.ButtonGroupComponent, i6.ButtonComponent, i6.ChipComponent, i6.ChipListComponent, i7.TabStripComponent, i7.TabStripTabComponent, i7.TabContentDirective, i7.TabTitleDirective, i8.TextAreaComponent, i8.TextBoxComponent, i8.TextBoxPrefixTemplateDirective, i8.CheckBoxDirective, i8.RadioButtonDirective, i8.FormFieldComponent, i9.LabelComponent, i7.AvatarComponent, i7.CardComponent, i7.CardHeaderComponent, i7.CardBodyComponent, i7.CardActionsComponent, i10.ItemTemplateDirective, i10.DropDownListComponent, i10.MultiSelectComponent, i11.ProgressBarComponent, i12.DatePickerComponent], styles: ["\n\n\n\n\n\n\n.typography-demo[_ngcontent-%COMP%] h1[_ngcontent-%COMP%], \n.typography-demo[_ngcontent-%COMP%] h2[_ngcontent-%COMP%], \n.typography-demo[_ngcontent-%COMP%] h3[_ngcontent-%COMP%], \n.typography-demo[_ngcontent-%COMP%] h4[_ngcontent-%COMP%] {\n margin-bottom: 1rem;\n}\n\n.typography-demo[_ngcontent-%COMP%] p[_ngcontent-%COMP%] {\n margin-bottom: 0.5rem;\n}\n\n.button-group[_ngcontent-%COMP%] {\n display: flex;\n gap: 12px;\n flex-wrap: wrap;\n align-items: center;\n margin-bottom: 1rem;\n}\n\n\n\n.button-content[_ngcontent-%COMP%] {\n display: inline-flex;\n align-items: center;\n gap: 8px;\n}\n\n.button-content[_ngcontent-%COMP%] i[_ngcontent-%COMP%] {\n font-size: 14px;\n}\n\n\n\n.badge-group[_ngcontent-%COMP%] {\n display: flex;\n gap: 8px;\n flex-wrap: wrap;\n align-items: center;\n}\n\n\n\n.custom-kendo-card[_ngcontent-%COMP%] {\n transition: all 0.3s ease;\n border: 2px solid transparent;\n}\n\n.custom-kendo-card[_ngcontent-%COMP%]:hover {\n transform: translateY(-4px);\n border-color: var(--light-blue);\n box-shadow: \n 0 8px 32px rgba(9, 35, 64, 0.12),\n 0 4px 16px rgba(0, 118, 182, 0.1);\n}\n\n.custom-kendo-card[_ngcontent-%COMP%] .k-card-header[_ngcontent-%COMP%] {\n background: var(--gray-600);\n border-bottom: 1px solid var(--gray-600);\n}\n\n.custom-kendo-card[_ngcontent-%COMP%] .k-card-header[_ngcontent-%COMP%] h4[_ngcontent-%COMP%] {\n margin: 0;\n display: flex;\n align-items: center;\n color: var(--navy);\n}\n\n\n\n.custom-grid[_ngcontent-%COMP%] {\n border-radius: var(--border-radius);\n overflow: hidden;\n}\n\n.custom-grid[_ngcontent-%COMP%] .k-grid-header[_ngcontent-%COMP%] {\n background: linear-gradient(135deg, var(--gray-600) 0%, #e8e8e8 100%);\n}\n\n.custom-grid[_ngcontent-%COMP%] .k-grid-header[_ngcontent-%COMP%] th[_ngcontent-%COMP%] {\n text-transform: uppercase;\n letter-spacing: 0.5px;\n font-weight: 600;\n}\n\n\n\n.user-cell[_ngcontent-%COMP%] {\n display: flex;\n align-items: center;\n gap: 10px;\n}\n\n.user-info[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n}\n\n.user-name[_ngcontent-%COMP%] {\n font-weight: 500;\n color: var(--navy);\n}\n\n.user-role[_ngcontent-%COMP%] {\n font-size: 12px;\n color: var(--gray-800);\n}\n\n\n\n.email-link[_ngcontent-%COMP%] {\n color: var(--mj-blue);\n text-decoration: none;\n transition: color 0.2s ease;\n}\n\n.email-link[_ngcontent-%COMP%]:hover {\n color: var(--navy);\n text-decoration: underline;\n}\n\n\n\n.status-cell[_ngcontent-%COMP%] {\n display: flex;\n align-items: center;\n gap: 4px;\n}\n\n\n\n.action-buttons[_ngcontent-%COMP%] {\n display: flex;\n gap: 4px;\n}\n\n\n\n.dropdown-item-content[_ngcontent-%COMP%] {\n display: flex;\n align-items: center;\n}\n\n.dropdown-item-content[_ngcontent-%COMP%] i[_ngcontent-%COMP%] {\n width: 20px;\n text-align: center;\n}\n\n\n\n.search-prefix-icon[_ngcontent-%COMP%] {\n color: var(--gray-800);\n margin: 0 8px;\n}\n\n\n\n.tab-title[_ngcontent-%COMP%] {\n display: flex;\n align-items: center;\n}\n\n.tab-content-wrapper[_ngcontent-%COMP%] {\n padding: 20px;\n}\n\n\n\n.checkbox-group[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n gap: 8px;\n}\n\n.checkbox-label[_ngcontent-%COMP%] {\n display: flex;\n align-items: center;\n cursor: pointer;\n}\n\n\n\n.k-button[_ngcontent-%COMP%] .fa[_ngcontent-%COMP%], \n.k-button[_ngcontent-%COMP%] .fas[_ngcontent-%COMP%] {\n font-size: 14px;\n}\n\n\n\n.k-button[_ngcontent-%COMP%] > span[_ngcontent-%COMP%] {\n display: inline-flex;\n align-items: center;\n gap: 8px;\n}\n\n\n\n.k-badge[_ngcontent-%COMP%] {\n font-weight: 600;\n text-transform: uppercase;\n letter-spacing: 0.5px;\n}\n\n\n\n.k-chip[_ngcontent-%COMP%] {\n font-weight: 500;\n transition: all 0.2s ease;\n}\n\n.k-chip[_ngcontent-%COMP%]:hover {\n transform: translateY(-1px);\n box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);\n}\n\n\n\nkendo-formfield[_ngcontent-%COMP%] {\n display: block;\n}\n\nkendo-formfield[_ngcontent-%COMP%] .k-label[_ngcontent-%COMP%] {\n font-weight: 500;\n color: var(--navy);\n margin-bottom: 0.5rem;\n}\n\n\n\n.k-dialog-wrapper[_ngcontent-%COMP%] .k-dialog[_ngcontent-%COMP%] {\n border-radius: 20px;\n overflow: hidden;\n}\n\n.k-dialog-wrapper[_ngcontent-%COMP%] .k-dialog-titlebar[_ngcontent-%COMP%] {\n background: linear-gradient(135deg, var(--gray-600) 0%, #f8f9fa 100%);\n padding: 24px 30px;\n}\n\n.k-dialog-wrapper[_ngcontent-%COMP%] .k-dialog-title[_ngcontent-%COMP%] {\n font-size: 1.5rem;\n color: var(--navy);\n}\n\n.k-dialog-wrapper[_ngcontent-%COMP%] .k-dialog-content[_ngcontent-%COMP%] {\n padding: 30px;\n}\n\n\n\n.k-progressbar[_ngcontent-%COMP%] {\n height: 8px;\n border-radius: 4px;\n background: var(--gray-600);\n}\n\n.k-progressbar[_ngcontent-%COMP%] .k-progress-status-wrap[_ngcontent-%COMP%] {\n font-weight: 500;\n}\n\n\n\n.progress-success[_ngcontent-%COMP%] .k-progressbar-progress[_ngcontent-%COMP%] {\n background-color: #28a745 !important;\n}\n\n\n\n.k-loader-container[_ngcontent-%COMP%] {\n padding: 20px;\n}\n\n\n\n.fas[_ngcontent-%COMP%], .fa[_ngcontent-%COMP%] {\n font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free', 'FontAwesome';\n font-weight: 900;\n}\n\n.far[_ngcontent-%COMP%] {\n font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free', 'FontAwesome';\n font-weight: 400;\n}\n\n\n\n.mb-0[_ngcontent-%COMP%] { margin-bottom: 0 !important; }\n.mb-1[_ngcontent-%COMP%] { margin-bottom: 0.25rem !important; }\n.mb-2[_ngcontent-%COMP%] { margin-bottom: 0.5rem !important; }\n.mb-3[_ngcontent-%COMP%] { margin-bottom: 1rem !important; }\n.mb-4[_ngcontent-%COMP%] { margin-bottom: 1.5rem !important; }\n\n.mt-0[_ngcontent-%COMP%] { margin-top: 0 !important; }\n.mt-1[_ngcontent-%COMP%] { margin-top: 0.25rem !important; }\n.mt-2[_ngcontent-%COMP%] { margin-top: 0.5rem !important; }\n.mt-3[_ngcontent-%COMP%] { margin-top: 1rem !important; }\n.mt-4[_ngcontent-%COMP%] { margin-top: 1.5rem !important; }\n\n.mr-0[_ngcontent-%COMP%] { margin-right: 0 !important; }\n.mr-1[_ngcontent-%COMP%] { margin-right: 0.25rem !important; }\n.mr-2[_ngcontent-%COMP%] { margin-right: 0.5rem !important; }\n\n.ml-0[_ngcontent-%COMP%] { margin-left: 0 !important; }\n.ml-1[_ngcontent-%COMP%] { margin-left: 0.25rem !important; }\n.ml-2[_ngcontent-%COMP%] { margin-left: 0.5rem !important; }\n\n.p-3[_ngcontent-%COMP%] { padding: 1rem !important; }\n\n\n\n.text-center[_ngcontent-%COMP%] { text-align: center !important; }\n\n\n\n.k-form-error[_ngcontent-%COMP%] {\n color: #dc3545;\n font-size: 12px;\n margin-top: 4px;\n display: block;\n}\n\n\n\n.radio-group[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n gap: 8px;\n}\n\n.radio-label[_ngcontent-%COMP%] {\n display: flex;\n align-items: center;\n cursor: pointer;\n}\n\n\n\n.bg-success[_ngcontent-%COMP%] { background-color: #28a745 !important; }\n\n\n\n.mj-modal-overlay[_ngcontent-%COMP%] {\n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n background: rgba(9, 35, 64, 0.6);\n backdrop-filter: blur(8px);\n z-index: 10000;\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 20px;\n animation: modal-overlay-appear 0.3s ease-out;\n}\n\n\n\n.mj-modal[_ngcontent-%COMP%] .k-textbox[_ngcontent-%COMP%], \n.mj-modal[_ngcontent-%COMP%] .k-dropdown[_ngcontent-%COMP%], \n.mj-modal[_ngcontent-%COMP%] .k-dropdownlist[_ngcontent-%COMP%] {\n border: 1px solid var(--gray-700) !important;\n}\n\n.mj-modal[_ngcontent-%COMP%] .k-textbox[_ngcontent-%COMP%]:focus, \n.mj-modal[_ngcontent-%COMP%] .k-dropdown[_ngcontent-%COMP%]:focus-within, \n.mj-modal[_ngcontent-%COMP%] .k-dropdownlist[_ngcontent-%COMP%]:focus-within {\n border-color: var(--mj-blue) !important;\n}\n\n\n\n\n\n\n\n\n@media (max-width: 768px) {\n .button-group[_ngcontent-%COMP%] {\n flex-direction: column;\n align-items: stretch;\n }\n \n .button-group[_ngcontent-%COMP%] .k-button[_ngcontent-%COMP%], \n .button-group[_ngcontent-%COMP%] .mj-btn[_ngcontent-%COMP%] {\n width: 100%;\n justify-content: center;\n }\n \n .mj-toolbar[_ngcontent-%COMP%] {\n flex-direction: column;\n gap: 10px;\n }\n \n .mj-toolbar-actions[_ngcontent-%COMP%] {\n width: 100%;\n flex-direction: column;\n gap: 10px;\n }\n \n .mj-toolbar-actions[_ngcontent-%COMP%] > *[_ngcontent-%COMP%] {\n width: 100%;\n }\n \n .custom-grid[_ngcontent-%COMP%] {\n font-size: 12px;\n }\n \n .k-grid[_ngcontent-%COMP%] td[_ngcontent-%COMP%], \n .k-grid[_ngcontent-%COMP%] th[_ngcontent-%COMP%] {\n padding: 8px;\n }\n \n .user-cell[_ngcontent-%COMP%] {\n flex-direction: column;\n align-items: flex-start;\n gap: 4px;\n }\n \n .k-dialog-wrapper[_ngcontent-%COMP%] .k-dialog[_ngcontent-%COMP%] {\n margin: 10px;\n width: calc(100vw - 20px) !important;\n max-width: none;\n }\n}\n\n\n\n@media print {\n .mj-header-actions[_ngcontent-%COMP%], \n .mj-toolbar-actions[_ngcontent-%COMP%], \n .mj-card-actions[_ngcontent-%COMP%], \n .action-buttons[_ngcontent-%COMP%], \n .k-grid-toolbar[_ngcontent-%COMP%], \n .button-group[_ngcontent-%COMP%] {\n display: none !important;\n }\n \n .mj-card[_ngcontent-%COMP%] {\n break-inside: avoid;\n box-shadow: none;\n border: 1px solid #ddd;\n }\n}\n\n\n\n@media (prefers-color-scheme: dark) {\n \n\n}\n\n\n\n@media (prefers-contrast: high) {\n .mj-card[_ngcontent-%COMP%], \n .custom-kendo-card[_ngcontent-%COMP%], \n .k-button[_ngcontent-%COMP%], \n .mj-btn[_ngcontent-%COMP%] {\n border-width: 2px !important;\n }\n \n .badge[_ngcontent-%COMP%], \n .k-badge[_ngcontent-%COMP%], \n .k-chip[_ngcontent-%COMP%] {\n border: 2px solid currentColor;\n }\n}\n\n\n\n@media (prefers-reduced-motion: reduce) {\n *[_ngcontent-%COMP%], \n *[_ngcontent-%COMP%]::before, \n *[_ngcontent-%COMP%]::after {\n animation-duration: 0.01ms !important;\n animation-iteration-count: 1 !important;\n transition-duration: 0.01ms !important;\n }\n \n .mj-card[_ngcontent-%COMP%]:hover, \n .custom-kendo-card[_ngcontent-%COMP%]:hover {\n transform: none !important;\n }\n}"] });
|
|
1011
|
+
}
|
|
1012
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(StyleGuideTestComponent, [{
|
|
1013
|
+
type: Component,
|
|
1014
|
+
args: [{ selector: 'mj-style-guide-test', template: "<!-- Enhanced Style Guide with Kendo UI Components and Font Awesome -->\n<div class=\"mj-page-container\">\n <!-- Page Header with Mixed Components -->\n <div class=\"mj-content-container\">\n <div class=\"mj-header\">\n <div class=\"mj-header-title\">\n <i class=\"fas fa-paint-brush mj-header-icon\"></i>\n <div>\n <h1>Kendo UI + Font Awesome Style Guide</h1>\n <div class=\"mj-header-subtitle\">\n <i class=\"fas fa-palette\"></i>\n Modern components with custom styling\n </div>\n </div>\n </div>\n <div class=\"mj-header-actions\">\n <!-- Kendo Button with Font Awesome Icon -->\n <kendo-button fillMode=\"outline\" rounded=\"medium\" themeColor=\"base\">\n <span class=\"button-content\">\n <i class=\"fas fa-download\"></i>\n Export\n </span>\n </kendo-button>\n <kendo-button themeColor=\"primary\" rounded=\"medium\">\n <span class=\"button-content\">\n <i class=\"fas fa-save\"></i>\n Save Changes\n </span>\n </kendo-button>\n </div>\n </div>\n </div>\n\n <!-- Typography Section -->\n <div class=\"mj-content-container\">\n <h2>Typography Examples</h2>\n <div class=\"typography-demo\">\n <h1>Heading 1 - Main page titles</h1>\n <h2>Heading 2 - Section headers</h2>\n <h3>Heading 3 - Subsection titles</h3>\n <h4>Heading 4 - Component titles</h4>\n <p>Body text - Regular paragraph content with good readability and proper line height for easy reading.</p>\n <p class=\"text-muted\">Muted text for secondary information</p>\n </div>\n </div>\n\n <!-- Enhanced Button Examples -->\n <div class=\"mj-content-container\">\n <h2>Button System Comparison</h2>\n \n <div class=\"mb-3\">\n <h4>Kendo Buttons with Font Awesome Icons</h4>\n <div class=\"button-group\">\n <kendo-button themeColor=\"primary\" rounded=\"medium\" size=\"large\">\n <span class=\"button-content\">\n <i class=\"fas fa-check\"></i>\n Primary Action\n </span>\n </kendo-button>\n <kendo-button themeColor=\"info\" rounded=\"medium\">\n <span class=\"button-content\">\n <i class=\"fas fa-info-circle\"></i>\n Info Button\n </span>\n </kendo-button>\n <kendo-button themeColor=\"success\" rounded=\"medium\">\n <span class=\"button-content\">\n <i class=\"fas fa-check-circle\"></i>\n Success\n </span>\n </kendo-button>\n <kendo-button themeColor=\"warning\" rounded=\"medium\">\n <span class=\"button-content\">\n <i class=\"fas fa-exclamation-triangle\"></i>\n Warning\n </span>\n </kendo-button>\n <kendo-button themeColor=\"error\" rounded=\"medium\">\n <span class=\"button-content\">\n <i class=\"fas fa-times-circle\"></i>\n Error\n </span>\n </kendo-button>\n </div>\n </div>\n\n <div class=\"mb-3\">\n <h4>Icon-Only Kendo Buttons</h4>\n <div class=\"button-group\">\n <kendo-button fillMode=\"flat\" rounded=\"full\" size=\"large\" title=\"Edit\">\n <i class=\"fas fa-edit\"></i>\n </kendo-button>\n <kendo-button fillMode=\"flat\" rounded=\"full\" size=\"large\" title=\"Delete\">\n <i class=\"fas fa-trash\"></i>\n </kendo-button>\n <kendo-button fillMode=\"flat\" rounded=\"full\" size=\"large\" title=\"Settings\">\n <i class=\"fas fa-cog\"></i>\n </kendo-button>\n <kendo-button fillMode=\"flat\" rounded=\"full\" size=\"large\" title=\"Search\">\n <i class=\"fas fa-search\"></i>\n </kendo-button>\n </div>\n </div>\n\n <div class=\"mb-3\">\n <h4>Custom MJ Buttons (For Comparison)</h4>\n <div class=\"button-group\">\n <button class=\"mj-btn mj-btn-primary\">\n <i class=\"fas fa-rocket\"></i>\n Launch\n </button>\n <button class=\"mj-btn mj-btn-secondary\">\n <i class=\"fas fa-edit\"></i>\n Edit\n </button>\n <button class=\"mj-btn mj-btn-ghost\">\n <i class=\"fas fa-times\"></i>\n Cancel\n </button>\n </div>\n </div>\n\n <div class=\"mb-3\">\n <h4>Kendo Button Group</h4>\n <kendo-buttongroup>\n <button kendoButton [toggleable]=\"true\" [selected]=\"true\">\n <i class=\"fas fa-bold\"></i>\n </button>\n <button kendoButton [toggleable]=\"true\">\n <i class=\"fas fa-italic\"></i>\n </button>\n <button kendoButton [toggleable]=\"true\">\n <i class=\"fas fa-underline\"></i>\n </button>\n </kendo-buttongroup>\n </div>\n </div>\n\n <!-- Enhanced Card System with Icon Cards -->\n <div class=\"mj-content-container\">\n <h2>Card Components</h2>\n \n <h4>Icon Cards with Hover Effects (Kendo Cards)</h4>\n <div class=\"mj-grid mj-grid-4\">\n <kendo-card class=\"mj-kendo-icon-card\" *ngFor=\"let item of sampleItems\" (click)=\"handleCardClick(item)\">\n <kendo-card-body>\n <i [class]=\"'fas ' + item.icon + ' mj-card-icon-large'\"></i>\n <h3>{{item.name}}</h3>\n <p>{{item.description}}</p>\n <kendo-chip \n [label]=\"item.color.toUpperCase()\" \n rounded=\"full\"\n [themeColor]=\"item.color\"\n size=\"small\"\n class=\"mt-2\">\n </kendo-chip>\n <div class=\"mj-card-actions\">\n <button class=\"mj-btn mj-btn-icon-only mj-btn-sm\" (click)=\"$event.stopPropagation(); handleButtonClick('edit', item)\">\n <i class=\"fas fa-edit\"></i>\n </button>\n <button class=\"mj-btn mj-btn-icon-only mj-btn-sm\" (click)=\"$event.stopPropagation(); handleButtonClick('delete', item)\">\n <i class=\"fas fa-trash\"></i>\n </button>\n </div>\n </kendo-card-body>\n </kendo-card>\n </div>\n\n <div class=\"mt-4\">\n <h4>Kendo Cards with Custom Styling</h4>\n <div class=\"mj-grid mj-grid-3\">\n <kendo-card class=\"custom-kendo-card\">\n <kendo-card-header>\n <h4>\n <i class=\"fas fa-chart-bar mr-2\"></i>\n Analytics Overview\n </h4>\n </kendo-card-header>\n <kendo-card-body>\n <p>View real-time analytics and performance metrics for your application.</p>\n <kendo-chip-list>\n <kendo-chip label=\"Real-time\" icon=\"clock\" themeColor=\"success\"></kendo-chip>\n <kendo-chip label=\"Interactive\" icon=\"filter\" themeColor=\"info\"></kendo-chip>\n </kendo-chip-list>\n </kendo-card-body>\n <kendo-card-actions orientation=\"horizontal\" layout=\"end\">\n <kendo-button fillMode=\"flat\">Details</kendo-button>\n <kendo-button themeColor=\"primary\">View Dashboard</kendo-button>\n </kendo-card-actions>\n </kendo-card>\n\n <kendo-card class=\"custom-kendo-card\">\n <kendo-card-body>\n <div class=\"text-center\">\n <kendo-avatar [imageSrc]=\"'assets/avatar-placeholder.jpg'\" shape=\"circle\" size=\"large\"></kendo-avatar>\n <h4 class=\"mt-3\">User Profile</h4>\n <p>Manage your account settings and preferences</p>\n <kendo-badge-container>\n <kendo-button themeColor=\"primary\" rounded=\"medium\">\n <span class=\"button-content\">\n <i class=\"fas fa-bell\"></i>\n Notifications\n </span>\n </kendo-button>\n <kendo-badge rounded=\"full\" themeColor=\"error\" position=\"edge\" [align]=\"badgeAlignTopEnd\">{{notificationCount}}</kendo-badge>\n </kendo-badge-container>\n </div>\n </kendo-card-body>\n </kendo-card>\n\n <kendo-card class=\"custom-kendo-card\">\n <kendo-card-body>\n <div class=\"mj-empty-state\">\n <i class=\"fas fa-inbox mj-empty-icon\"></i>\n <h3>No Data Available</h3>\n <p>Start by importing your data</p>\n <kendo-button themeColor=\"primary\" rounded=\"medium\">\n <span class=\"button-content\">\n <i class=\"fas fa-upload\"></i>\n Import Data\n </span>\n </kendo-button>\n </div>\n </kendo-card-body>\n </kendo-card>\n </div>\n </div>\n </div>\n\n <!-- Enhanced Form Elements -->\n <div class=\"mj-content-container\">\n <h2>Form Elements - Kendo vs Custom</h2>\n \n <div class=\"mj-grid mj-grid-2\">\n <div>\n <h4>Kendo Form Components</h4>\n \n <kendo-formfield orientation=\"vertical\" class=\"mb-3\">\n <kendo-label text=\"Full Name\" [for]=\"fullNameInput\"></kendo-label>\n <kendo-textbox \n #fullNameInput\n placeholder=\"Enter your full name\"\n [clearButton]=\"true\"\n [formControl]=\"fullNameControl\"\n rounded=\"medium\">\n </kendo-textbox>\n <div class=\"k-form-error\" *ngIf=\"fullNameControl.touched && fullNameControl.errors?.['required']\">\n Full name is required\n </div>\n </kendo-formfield>\n\n <kendo-formfield orientation=\"vertical\" class=\"mb-3\">\n <kendo-label text=\"Department\" [for]=\"deptDropdown\"></kendo-label>\n <kendo-dropdownlist \n #deptDropdown\n [data]=\"departments\"\n textField=\"name\"\n valueField=\"id\"\n [(ngModel)]=\"selectedDepartment\"\n rounded=\"medium\">\n <ng-template kendoDropDownListItemTemplate let-dataItem>\n <span class=\"dropdown-item-content\">\n <i [class]=\"dataItem.icon\" class=\"mr-2\"></i>\n {{ dataItem.name }}\n </span>\n </ng-template>\n </kendo-dropdownlist>\n </kendo-formfield>\n\n <kendo-formfield orientation=\"vertical\" class=\"mb-3\">\n <kendo-label text=\"Technologies\"></kendo-label>\n <kendo-multiselect \n [data]=\"technologies\"\n [(ngModel)]=\"selectedTechnologies\"\n placeholder=\"Select technologies...\"\n rounded=\"medium\">\n </kendo-multiselect>\n </kendo-formfield>\n\n <kendo-formfield orientation=\"vertical\" class=\"mb-3\">\n <kendo-label text=\"Project Date\"></kendo-label>\n <kendo-datepicker \n [(value)]=\"dateValue\"\n format=\"dd/MM/yyyy\"\n rounded=\"medium\">\n </kendo-datepicker>\n </kendo-formfield>\n </div>\n \n <div>\n <h4>Custom Form Elements</h4>\n \n <div class=\"form-group\">\n <label class=\"form-label\">\n <i class=\"fas fa-search mr-1\"></i>\n Search Field\n </label>\n <div class=\"mj-search\">\n <i class=\"fas fa-search mj-search-icon\"></i>\n <input type=\"text\" class=\"mj-search-input\" placeholder=\"Search items...\" [(ngModel)]=\"searchText\">\n </div>\n </div>\n\n <div class=\"form-group\">\n <label class=\"form-label\">\n <i class=\"fas fa-comment mr-1\"></i>\n Comments\n </label>\n <kendo-textarea \n [formControl]=\"commentsControl\"\n placeholder=\"Enter your comments...\"\n [rows]=\"4\"\n rounded=\"medium\">\n </kendo-textarea>\n </div>\n\n <div class=\"form-group\">\n <label class=\"form-label\">Options</label>\n <div class=\"checkbox-group\">\n <label class=\"checkbox-label\">\n <input type=\"checkbox\" kendoCheckBox />\n <span class=\"ml-2\">Enable notifications</span>\n </label>\n <label class=\"checkbox-label\">\n <input type=\"checkbox\" kendoCheckBox checked />\n <span class=\"ml-2\">Subscribe to newsletter</span>\n </label>\n </div>\n </div>\n\n <div class=\"form-group\">\n <label class=\"form-label\">Theme Preference</label>\n <div class=\"radio-group\">\n <label class=\"radio-label\" *ngFor=\"let option of themeOptions\">\n <input type=\"radio\" name=\"theme\" [value]=\"option\" [(ngModel)]=\"selectedTheme\" kendoRadioButton />\n <span class=\"ml-2\">{{option}}</span>\n </label>\n </div>\n </div>\n </div>\n </div>\n </div>\n\n <!-- Enhanced Kendo Grid with Font Awesome -->\n <div class=\"mj-content-container\">\n <h2>Enhanced Kendo Grid</h2>\n \n <kendo-grid \n [data]=\"gridData\" \n [height]=\"400\" \n [sortable]=\"true\"\n [filterable]=\"true\"\n [groupable]=\"false\"\n [reorderable]=\"true\"\n [resizable]=\"true\"\n [selectable]=\"{ checkboxOnly: true, mode: 'multiple' }\"\n class=\"custom-grid\">\n \n <kendo-grid-checkbox-column [width]=\"45\" [headerClass]=\"'text-center'\" [class]=\"'text-center'\"></kendo-grid-checkbox-column>\n \n <kendo-grid-column field=\"name\" title=\"Name\" [width]=\"200\">\n <ng-template kendoGridCellTemplate let-dataItem>\n <div class=\"user-cell\">\n <kendo-avatar \n [initials]=\"getInitials(dataItem.name)\" \n themeColor=\"info\"\n shape=\"circle\"\n size=\"small\">\n </kendo-avatar>\n <div class=\"user-info\">\n <div class=\"user-name\">{{ dataItem.name }}</div>\n <div class=\"user-role\">{{ dataItem.role }}</div>\n </div>\n </div>\n </ng-template>\n </kendo-grid-column>\n\n <kendo-grid-column field=\"email\" title=\"Email\" [width]=\"220\">\n <ng-template kendoGridCellTemplate let-dataItem>\n <a href=\"mailto:{{dataItem.email}}\" class=\"email-link\">\n <i class=\"fas fa-envelope mr-1\"></i>\n {{ dataItem.email }}\n </a>\n </ng-template>\n </kendo-grid-column>\n \n <kendo-grid-column field=\"department\" title=\"Department\" [width]=\"150\">\n <ng-template kendoGridCellTemplate let-dataItem>\n <kendo-chip \n [label]=\"dataItem.department\"\n rounded=\"medium\"\n fillMode=\"outline\">\n </kendo-chip>\n </ng-template>\n </kendo-grid-column>\n \n <kendo-grid-column field=\"status\" title=\"Status\" [width]=\"120\">\n <ng-template kendoGridCellTemplate let-dataItem>\n <span class=\"status-cell\">\n <i [class]=\"getStatusIcon(dataItem.status) + ' mr-1'\"></i>\n <kendo-badge \n [themeColor]=\"getStatusThemeColor(dataItem.status)\"\n rounded=\"full\"\n size=\"small\">\n {{ dataItem.status }}\n </kendo-badge>\n </span>\n </ng-template>\n </kendo-grid-column>\n\n <kendo-grid-column title=\"Actions\" [width]=\"120\" [sortable]=\"false\" [filterable]=\"false\">\n <ng-template kendoGridCellTemplate let-dataItem>\n <div class=\"action-buttons\">\n <kendo-button \n fillMode=\"flat\"\n rounded=\"full\"\n size=\"small\"\n themeColor=\"info\"\n title=\"Edit\"\n (click)=\"editItem(dataItem)\">\n <i class=\"fas fa-edit\"></i>\n </kendo-button>\n <kendo-button \n fillMode=\"flat\"\n rounded=\"full\"\n size=\"small\"\n themeColor=\"error\"\n title=\"Delete\"\n (click)=\"deleteItem(dataItem)\">\n <i class=\"fas fa-trash\"></i>\n </kendo-button>\n </div>\n </ng-template>\n </kendo-grid-column>\n </kendo-grid>\n </div>\n\n <!-- Badges and Chips -->\n <div class=\"mj-content-container\">\n <h2>Badges, Chips & Status Indicators</h2>\n \n <div class=\"mb-3\">\n <h4>Custom Badges with Font Awesome</h4>\n <div class=\"badge-group\">\n <span class=\"badge badge-success\">\n <i class=\"fas fa-check mr-1\"></i>\n Active\n </span>\n <span class=\"badge badge-danger\">\n <i class=\"fas fa-times mr-1\"></i>\n Inactive\n </span>\n <span class=\"badge badge-warning\">\n <i class=\"fas fa-clock mr-1\"></i>\n Pending\n </span>\n <span class=\"badge badge-info\">\n <i class=\"fas fa-info-circle mr-1\"></i>\n Info\n </span>\n </div>\n </div>\n\n <div class=\"mb-3\">\n <h4>Kendo Chips with Icons</h4>\n <kendo-chip-list>\n <kendo-chip label=\"Approved\" icon=\"check\" themeColor=\"success\" [removable]=\"true\"></kendo-chip>\n <kendo-chip label=\"In Progress\" icon=\"clock\" themeColor=\"warning\" [removable]=\"true\"></kendo-chip>\n <kendo-chip label=\"Rejected\" icon=\"x\" themeColor=\"error\" [removable]=\"true\"></kendo-chip>\n <kendo-chip label=\"Under Review\" icon=\"eye\" themeColor=\"info\" [removable]=\"true\"></kendo-chip>\n </kendo-chip-list>\n </div>\n\n <div class=\"mb-3\">\n <h4>Notification Badges</h4>\n <div class=\"badge-group\">\n <kendo-badge-container>\n <kendo-button themeColor=\"primary\" rounded=\"medium\">\n <i class=\"fas fa-envelope mr-2\"></i>\n Messages\n </kendo-button>\n <kendo-badge themeColor=\"error\" position=\"edge\" [align]=\"badgeAlignTopEnd\">12</kendo-badge>\n </kendo-badge-container>\n\n <kendo-badge-container>\n <kendo-button fillMode=\"flat\" rounded=\"full\" size=\"large\">\n <i class=\"fas fa-bell\"></i>\n </kendo-button>\n <kendo-badge themeColor=\"warning\" position=\"edge\" [align]=\"badgeAlignTopEnd\" rounded=\"full\">3</kendo-badge>\n </kendo-badge-container>\n\n <kendo-badge-container>\n <kendo-avatar initials=\"JD\" themeColor=\"info\"></kendo-avatar>\n <kendo-badge themeColor=\"success\" position=\"edge\" [align]=\"badgeAlignBottomEnd\" size=\"small\">\n <i class=\"fas fa-check\"></i>\n </kendo-badge>\n </kendo-badge-container>\n </div>\n </div>\n </div>\n\n <!-- Navigation Components -->\n <div class=\"mj-content-container\">\n <h2>Navigation & Layout Components</h2>\n \n <div class=\"mb-3\">\n <h4>Enhanced Toolbar with Search</h4>\n <div class=\"mj-toolbar\">\n <h3 class=\"mj-toolbar-title\">\n <i class=\"fas fa-users mr-2\"></i>\n User Management\n </h3>\n <div class=\"mj-toolbar-actions\">\n <kendo-textbox \n placeholder=\"Search users...\"\n [clearButton]=\"true\"\n [(ngModel)]=\"searchText\"\n rounded=\"medium\"\n style=\"width: 300px;\">\n <ng-template kendoTextBoxPrefixTemplate>\n <i class=\"fas fa-search search-prefix-icon\"></i>\n </ng-template>\n </kendo-textbox>\n <kendo-button fillMode=\"outline\" rounded=\"medium\">\n <span class=\"button-content\">\n <i class=\"fas fa-filter\"></i>\n Filter\n </span>\n </kendo-button>\n <kendo-button themeColor=\"primary\" rounded=\"medium\">\n <span class=\"button-content\">\n <i class=\"fas fa-user-plus\"></i>\n Add User\n </span>\n </kendo-button>\n </div>\n </div>\n </div>\n\n <div class=\"mb-3\">\n <h4>Breadcrumb Navigation</h4>\n <nav class=\"mj-breadcrumb\">\n <span class=\"mj-breadcrumb-item\">\n <i class=\"fas fa-home mr-1\"></i>\n Home\n </span>\n <i class=\"fas fa-chevron-right mj-breadcrumb-separator\"></i>\n <span class=\"mj-breadcrumb-item\">\n <i class=\"fas fa-th mr-1\"></i>\n Components\n </span>\n <i class=\"fas fa-chevron-right mj-breadcrumb-separator\"></i>\n <span class=\"mj-breadcrumb-item mj-breadcrumb-current\">\n <i class=\"fas fa-paint-brush mr-1\"></i>\n Style Guide\n </span>\n </nav>\n </div>\n\n <div>\n <h4>Kendo TabStrip with Font Awesome</h4>\n <kendo-tabstrip>\n <kendo-tabstrip-tab title=\"Overview\" [selected]=\"true\">\n <ng-template kendoTabTitle>\n <span class=\"tab-title\">\n <i class=\"fas fa-chart-pie mr-2\"></i>\n Overview\n </span>\n </ng-template>\n <ng-template kendoTabContent>\n <div class=\"tab-content-wrapper\">\n <h5>Dashboard Overview</h5>\n <p>View your application's key metrics and performance indicators.</p>\n <kendo-button themeColor=\"primary\">View Details</kendo-button>\n </div>\n </ng-template>\n </kendo-tabstrip-tab>\n \n <kendo-tabstrip-tab title=\"Settings\">\n <ng-template kendoTabTitle>\n <span class=\"tab-title\">\n <i class=\"fas fa-cog mr-2\"></i>\n Settings\n </span>\n </ng-template>\n <ng-template kendoTabContent>\n <div class=\"tab-content-wrapper\">\n <h5>Application Settings</h5>\n <p>Configure your application preferences and options.</p>\n </div>\n </ng-template>\n </kendo-tabstrip-tab>\n \n <kendo-tabstrip-tab title=\"Reports\">\n <ng-template kendoTabTitle>\n <span class=\"tab-title\">\n <i class=\"fas fa-file-alt mr-2\"></i>\n Reports\n </span>\n </ng-template>\n <ng-template kendoTabContent>\n <div class=\"tab-content-wrapper\">\n <h5>Generate Reports</h5>\n <p>Create and download various reports from your data.</p>\n </div>\n </ng-template>\n </kendo-tabstrip-tab>\n </kendo-tabstrip>\n </div>\n </div>\n\n <!-- Progress and Loading States -->\n <div class=\"mj-content-container\">\n <h2>Progress & Loading Indicators</h2>\n \n <div class=\"mb-3\">\n <h4>Kendo Progress Bars</h4>\n <kendo-progressbar \n [value]=\"progressValue\" \n [max]=\"100\"\n type=\"percent\"\n [animation]=\"true\"\n class=\"mb-2\">\n </kendo-progressbar>\n \n <kendo-progressbar \n [value]=\"progressValue\" \n [max]=\"100\"\n type=\"value\"\n class=\"mb-2 progress-success\">\n </kendo-progressbar>\n \n <kendo-progressbar \n [indeterminate]=\"true\"\n [animation]=\"true\">\n </kendo-progressbar>\n \n <kendo-button themeColor=\"primary\" (click)=\"loadData()\" class=\"mt-2\">\n <span class=\"button-content\">\n <i class=\"fas fa-sync\"></i>\n Simulate Loading\n </span>\n </kendo-button>\n </div>\n\n <div class=\"mb-3\">\n <h4>Loading States</h4>\n <div class=\"mj-grid mj-grid-4\">\n <kendo-card>\n <kendo-card-body>\n <div class=\"text-center\">\n <kendo-loader type=\"converging-spinner\" themeColor=\"primary\" size=\"medium\"></kendo-loader>\n <p class=\"mt-2 mb-0\">Converging</p>\n </div>\n </kendo-card-body>\n </kendo-card>\n \n <kendo-card>\n <kendo-card-body>\n <div class=\"text-center\">\n <kendo-loader type=\"infinite-spinner\" themeColor=\"info\" size=\"medium\"></kendo-loader>\n <p class=\"mt-2 mb-0\">Infinite</p>\n </div>\n </kendo-card-body>\n </kendo-card>\n \n <kendo-card>\n <kendo-card-body>\n <div class=\"text-center\">\n <kendo-loader type=\"pulsing\" themeColor=\"success\" size=\"medium\"></kendo-loader>\n <p class=\"mt-2 mb-0\">Pulsing</p>\n </div>\n </kendo-card-body>\n </kendo-card>\n \n <kendo-card>\n <kendo-card-body>\n <div class=\"text-center\">\n <i class=\"fas fa-spinner fa-spin\" style=\"font-size: 2rem; color: var(--mj-blue);\"></i>\n <p class=\"mt-2 mb-0\">Font Awesome</p>\n </div>\n </kendo-card-body>\n </kendo-card>\n </div>\n </div>\n </div>\n\n <!-- Modal/Dialog Examples -->\n <div class=\"mj-content-container\">\n <h2>Modals & Dialogs</h2>\n \n <div class=\"button-group\">\n <button class=\"mj-btn mj-btn-primary\" (click)=\"openModal()\">\n <i class=\"fas fa-window-maximize\"></i>\n Custom Modal\n </button>\n <kendo-button themeColor=\"info\" rounded=\"medium\" (click)=\"openKendoDialog()\">\n <span class=\"button-content\">\n <i class=\"fas fa-comment\"></i>\n Kendo Dialog\n </span>\n </kendo-button>\n <button class=\"mj-btn mj-btn-secondary\" (click)=\"openConfirmModal()\">\n <i class=\"fas fa-exclamation-triangle\"></i>\n Confirm Dialog\n </button>\n </div>\n </div>\n</div>\n\n<!-- Custom Modal -->\n<div class=\"mj-modal-overlay\" *ngIf=\"isModalOpen\" (click)=\"closeModal()\">\n <div class=\"mj-modal mj-modal-lg\" (click)=\"$event.stopPropagation()\">\n <div class=\"mj-modal-header\">\n <h3 class=\"mj-modal-title\">\n <i class=\"fas fa-cog mj-modal-icon\"></i>\n Custom Modal Example\n </h3>\n <button class=\"mj-modal-close\" (click)=\"closeModal()\">\n <i class=\"fas fa-times\"></i>\n </button>\n </div>\n <div class=\"mj-modal-body\">\n <p>This custom modal maintains your brand styling while working alongside Kendo components.</p>\n \n <div class=\"form-group\">\n <label class=\"form-label\">\n <i class=\"fas fa-user mr-1\"></i>\n Username\n </label>\n <kendo-textbox placeholder=\"Enter username\" rounded=\"medium\"></kendo-textbox>\n </div>\n \n <div class=\"form-group\">\n <label class=\"form-label\">\n <i class=\"fas fa-palette mr-1\"></i>\n Theme Preference\n </label>\n <kendo-dropdownlist \n [data]=\"themeOptions\"\n [value]=\"selectedTheme\"\n rounded=\"medium\">\n </kendo-dropdownlist>\n </div>\n </div>\n <div class=\"mj-modal-footer\">\n <kendo-button fillMode=\"outline\" (click)=\"closeModal()\">Cancel</kendo-button>\n <kendo-button themeColor=\"primary\">\n <span class=\"button-content\">\n <i class=\"fas fa-save\"></i>\n Save Changes\n </span>\n </kendo-button>\n </div>\n </div>\n</div>\n\n<!-- Confirmation Modal -->\n<div class=\"mj-modal-overlay\" *ngIf=\"isConfirmModalOpen\" (click)=\"closeConfirmModal()\">\n <div class=\"mj-modal mj-modal-confirm\" (click)=\"$event.stopPropagation()\">\n <div class=\"mj-modal-header\">\n <h3 class=\"mj-modal-title\">Confirm Delete</h3>\n <button class=\"mj-modal-close\" (click)=\"closeConfirmModal()\">\n <i class=\"fas fa-times\"></i>\n </button>\n </div>\n <div class=\"mj-modal-body\">\n <i class=\"fas fa-exclamation-triangle mj-modal-confirm-icon warning\"></i>\n <h4>Are you sure?</h4>\n <p>This action cannot be undone. All associated data will be permanently deleted.</p>\n </div>\n <div class=\"mj-modal-footer\">\n <button class=\"mj-btn mj-btn-ghost\" (click)=\"closeConfirmModal()\">Cancel</button>\n <button class=\"mj-btn mj-btn-primary\" style=\"background: #dc3545; border-color: #dc3545;\">\n <i class=\"fas fa-trash\"></i>\n Delete\n </button>\n </div>\n </div>\n</div>\n\n<!-- Kendo Dialog -->\n<kendo-dialog \n title=\"Edit User Information\" \n *ngIf=\"isKendoDialogOpen\" \n (close)=\"closeKendoDialog()\" \n [minWidth]=\"450\" \n [width]=\"600\"\n [height]=\"400\">\n \n <form [formGroup]=\"formGroup\">\n <kendo-formfield orientation=\"vertical\" class=\"mb-3\">\n <kendo-label text=\"Full Name\" [for]=\"nameField\"></kendo-label>\n <kendo-textbox \n #nameField\n formControlName=\"fullName\"\n placeholder=\"Enter full name\"\n [clearButton]=\"true\"\n rounded=\"medium\">\n <ng-template kendoTextBoxPrefixTemplate>\n <i class=\"fas fa-user search-prefix-icon\"></i>\n </ng-template>\n </kendo-textbox>\n <div class=\"k-form-error\" *ngIf=\"fullNameControl.touched && fullNameControl.errors?.['required']\">\n Name is required\n </div>\n </kendo-formfield>\n\n <kendo-formfield orientation=\"vertical\" class=\"mb-3\">\n <kendo-label text=\"Email Address\" [for]=\"emailField\"></kendo-label>\n <kendo-textbox \n #emailField\n formControlName=\"email\"\n placeholder=\"user@example.com\"\n [clearButton]=\"true\"\n rounded=\"medium\">\n <ng-template kendoTextBoxPrefixTemplate>\n <i class=\"fas fa-envelope search-prefix-icon\"></i>\n </ng-template>\n </kendo-textbox>\n <div class=\"k-form-error\" *ngIf=\"emailControl.touched && emailControl.errors?.['email']\">\n Please enter a valid email\n </div>\n </kendo-formfield>\n\n <kendo-formfield orientation=\"vertical\" class=\"mb-3\">\n <kendo-label text=\"Department\" [for]=\"deptField\"></kendo-label>\n <kendo-dropdownlist \n #deptField\n formControlName=\"department\"\n [data]=\"departments\"\n textField=\"name\"\n valueField=\"id\"\n rounded=\"medium\">\n <ng-template kendoDropDownListItemTemplate let-dataItem>\n <span class=\"dropdown-item-content\">\n <i [class]=\"dataItem.icon\" class=\"mr-2\"></i>\n {{ dataItem.name }}\n </span>\n </ng-template>\n </kendo-dropdownlist>\n </kendo-formfield>\n\n <kendo-formfield orientation=\"vertical\">\n <kendo-label text=\"Additional Notes\"></kendo-label>\n <kendo-textarea \n formControlName=\"comments\"\n placeholder=\"Enter any additional notes...\"\n [rows]=\"3\"\n rounded=\"medium\">\n </kendo-textarea>\n </kendo-formfield>\n </form>\n \n <kendo-dialog-actions>\n <kendo-button fillMode=\"outline\" (click)=\"closeKendoDialog()\">Cancel</kendo-button>\n <kendo-button themeColor=\"primary\" (click)=\"submitForm()\" [disabled]=\"!formGroup.valid\">\n <span class=\"button-content\">\n <i class=\"fas fa-save\"></i>\n Save Changes\n </span>\n </kendo-button>\n </kendo-dialog-actions>\n</kendo-dialog>\n", styles: ["/* Enhanced Style Guide Component Styles */\n/* Integrating Kendo UI with Font Awesome and Custom Cards */\n\n/* Component specific overrides and additions */\n.typography-demo h1,\n.typography-demo h2,\n.typography-demo h3,\n.typography-demo h4 {\n margin-bottom: 1rem;\n}\n\n.typography-demo p {\n margin-bottom: 0.5rem;\n}\n\n.button-group {\n display: flex;\n gap: 12px;\n flex-wrap: wrap;\n align-items: center;\n margin-bottom: 1rem;\n}\n\n/* Button content wrapper for Font Awesome icons in Kendo buttons */\n.button-content {\n display: inline-flex;\n align-items: center;\n gap: 8px;\n}\n\n.button-content i {\n font-size: 14px;\n}\n\n/* Badge and chip groups */\n.badge-group {\n display: flex;\n gap: 8px;\n flex-wrap: wrap;\n align-items: center;\n}\n\n/* Enhanced Kendo Card styling */\n.custom-kendo-card {\n transition: all 0.3s ease;\n border: 2px solid transparent;\n}\n\n.custom-kendo-card:hover {\n transform: translateY(-4px);\n border-color: var(--light-blue);\n box-shadow: \n 0 8px 32px rgba(9, 35, 64, 0.12),\n 0 4px 16px rgba(0, 118, 182, 0.1);\n}\n\n.custom-kendo-card .k-card-header {\n background: var(--gray-600);\n border-bottom: 1px solid var(--gray-600);\n}\n\n.custom-kendo-card .k-card-header h4 {\n margin: 0;\n display: flex;\n align-items: center;\n color: var(--navy);\n}\n\n/* Enhanced Grid Styling */\n.custom-grid {\n border-radius: var(--border-radius);\n overflow: hidden;\n}\n\n.custom-grid .k-grid-header {\n background: linear-gradient(135deg, var(--gray-600) 0%, #e8e8e8 100%);\n}\n\n.custom-grid .k-grid-header th {\n text-transform: uppercase;\n letter-spacing: 0.5px;\n font-weight: 600;\n}\n\n/* User cell in grid */\n.user-cell {\n display: flex;\n align-items: center;\n gap: 10px;\n}\n\n.user-info {\n display: flex;\n flex-direction: column;\n}\n\n.user-name {\n font-weight: 500;\n color: var(--navy);\n}\n\n.user-role {\n font-size: 12px;\n color: var(--gray-800);\n}\n\n/* Email link styling */\n.email-link {\n color: var(--mj-blue);\n text-decoration: none;\n transition: color 0.2s ease;\n}\n\n.email-link:hover {\n color: var(--navy);\n text-decoration: underline;\n}\n\n/* Status cell */\n.status-cell {\n display: flex;\n align-items: center;\n gap: 4px;\n}\n\n/* Action buttons in grid */\n.action-buttons {\n display: flex;\n gap: 4px;\n}\n\n/* Dropdown item with icon */\n.dropdown-item-content {\n display: flex;\n align-items: center;\n}\n\n.dropdown-item-content i {\n width: 20px;\n text-align: center;\n}\n\n/* Search prefix icon in Kendo TextBox */\n.search-prefix-icon {\n color: var(--gray-800);\n margin: 0 8px;\n}\n\n/* Tab title with icon */\n.tab-title {\n display: flex;\n align-items: center;\n}\n\n.tab-content-wrapper {\n padding: 20px;\n}\n\n/* Checkbox group styling */\n.checkbox-group {\n display: flex;\n flex-direction: column;\n gap: 8px;\n}\n\n.checkbox-label {\n display: flex;\n align-items: center;\n cursor: pointer;\n}\n\n/* Kendo overrides for better integration */\n.k-button .fa,\n.k-button .fas {\n font-size: 14px;\n}\n\n/* Ensure Kendo buttons with Font Awesome icons have proper spacing */\n.k-button > span {\n display: inline-flex;\n align-items: center;\n gap: 8px;\n}\n\n/* Kendo Badge enhancements */\n.k-badge {\n font-weight: 600;\n text-transform: uppercase;\n letter-spacing: 0.5px;\n}\n\n/* Kendo Chip enhancements */\n.k-chip {\n font-weight: 500;\n transition: all 0.2s ease;\n}\n\n.k-chip:hover {\n transform: translateY(-1px);\n box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);\n}\n\n/* Form field enhancements */\nkendo-formfield {\n display: block;\n}\n\nkendo-formfield .k-label {\n font-weight: 500;\n color: var(--navy);\n margin-bottom: 0.5rem;\n}\n\n/* Kendo Dialog enhancements */\n.k-dialog-wrapper .k-dialog {\n border-radius: 20px;\n overflow: hidden;\n}\n\n.k-dialog-wrapper .k-dialog-titlebar {\n background: linear-gradient(135deg, var(--gray-600) 0%, #f8f9fa 100%);\n padding: 24px 30px;\n}\n\n.k-dialog-wrapper .k-dialog-title {\n font-size: 1.5rem;\n color: var(--navy);\n}\n\n.k-dialog-wrapper .k-dialog-content {\n padding: 30px;\n}\n\n/* Progress bar enhancements */\n.k-progressbar {\n height: 8px;\n border-radius: 4px;\n background: var(--gray-600);\n}\n\n.k-progressbar .k-progress-status-wrap {\n font-weight: 500;\n}\n\n/* Success progress bar */\n.progress-success .k-progressbar-progress {\n background-color: #28a745 !important;\n}\n\n/* Loader container styling */\n.k-loader-container {\n padding: 20px;\n}\n\n/* Ensure Font Awesome icons display properly */\n.fas, .fa {\n font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free', 'FontAwesome';\n font-weight: 900;\n}\n\n.far {\n font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free', 'FontAwesome';\n font-weight: 400;\n}\n\n/* Utility margin classes used in template */\n.mb-0 { margin-bottom: 0 !important; }\n.mb-1 { margin-bottom: 0.25rem !important; }\n.mb-2 { margin-bottom: 0.5rem !important; }\n.mb-3 { margin-bottom: 1rem !important; }\n.mb-4 { margin-bottom: 1.5rem !important; }\n\n.mt-0 { margin-top: 0 !important; }\n.mt-1 { margin-top: 0.25rem !important; }\n.mt-2 { margin-top: 0.5rem !important; }\n.mt-3 { margin-top: 1rem !important; }\n.mt-4 { margin-top: 1.5rem !important; }\n\n.mr-0 { margin-right: 0 !important; }\n.mr-1 { margin-right: 0.25rem !important; }\n.mr-2 { margin-right: 0.5rem !important; }\n\n.ml-0 { margin-left: 0 !important; }\n.ml-1 { margin-left: 0.25rem !important; }\n.ml-2 { margin-left: 0.5rem !important; }\n\n.p-3 { padding: 1rem !important; }\n\n/* Text alignment */\n.text-center { text-align: center !important; }\n\n/* Form error styling */\n.k-form-error {\n color: #dc3545;\n font-size: 12px;\n margin-top: 4px;\n display: block;\n}\n\n/* Radio group styling */\n.radio-group {\n display: flex;\n flex-direction: column;\n gap: 8px;\n}\n\n.radio-label {\n display: flex;\n align-items: center;\n cursor: pointer;\n}\n\n/* Color utilities */\n.bg-success { background-color: #28a745 !important; }\n\n/* Modal backdrop fix for proper display */\n.mj-modal-overlay {\n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n background: rgba(9, 35, 64, 0.6);\n backdrop-filter: blur(8px);\n z-index: 10000;\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 20px;\n animation: modal-overlay-appear 0.3s ease-out;\n}\n\n/* Fix for double borders in modals */\n.mj-modal .k-textbox,\n.mj-modal .k-dropdown,\n.mj-modal .k-dropdownlist {\n border: 1px solid var(--gray-700) !important;\n}\n\n.mj-modal .k-textbox:focus,\n.mj-modal .k-dropdown:focus-within,\n.mj-modal .k-dropdownlist:focus-within {\n border-color: var(--mj-blue) !important;\n}\n\n/* Icon card styles have been moved to global _common.scss */\n/* The mj-kendo-icon-card class is now globally available */\n\n/* Responsive adjustments */\n@media (max-width: 768px) {\n .button-group {\n flex-direction: column;\n align-items: stretch;\n }\n \n .button-group .k-button,\n .button-group .mj-btn {\n width: 100%;\n justify-content: center;\n }\n \n .mj-toolbar {\n flex-direction: column;\n gap: 10px;\n }\n \n .mj-toolbar-actions {\n width: 100%;\n flex-direction: column;\n gap: 10px;\n }\n \n .mj-toolbar-actions > * {\n width: 100%;\n }\n \n .custom-grid {\n font-size: 12px;\n }\n \n .k-grid td,\n .k-grid th {\n padding: 8px;\n }\n \n .user-cell {\n flex-direction: column;\n align-items: flex-start;\n gap: 4px;\n }\n \n .k-dialog-wrapper .k-dialog {\n margin: 10px;\n width: calc(100vw - 20px) !important;\n max-width: none;\n }\n}\n\n/* Print styles */\n@media print {\n .mj-header-actions,\n .mj-toolbar-actions,\n .mj-card-actions,\n .action-buttons,\n .k-grid-toolbar,\n .button-group {\n display: none !important;\n }\n \n .mj-card {\n break-inside: avoid;\n box-shadow: none;\n border: 1px solid #ddd;\n }\n}\n\n/* Dark mode support (if needed) */\n@media (prefers-color-scheme: dark) {\n /* Add dark mode overrides here if needed */\n}\n\n/* High contrast mode support */\n@media (prefers-contrast: high) {\n .mj-card,\n .custom-kendo-card,\n .k-button,\n .mj-btn {\n border-width: 2px !important;\n }\n \n .badge,\n .k-badge,\n .k-chip {\n border: 2px solid currentColor;\n }\n}\n\n/* Reduced motion support */\n@media (prefers-reduced-motion: reduce) {\n *,\n *::before,\n *::after {\n animation-duration: 0.01ms !important;\n animation-iteration-count: 1 !important;\n transition-duration: 0.01ms !important;\n }\n \n .mj-card:hover,\n .custom-kendo-card:hover {\n transform: none !important;\n }\n}\n"] }]
|
|
1015
|
+
}], () => [], null); })();
|
|
1016
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(StyleGuideTestComponent, { className: "StyleGuideTestComponent", filePath: "src/lib/style-guide-test/style-guide-test.component.ts", lineNumber: 13 }); })();
|
|
1017
|
+
//# sourceMappingURL=style-guide-test.component.js.map
|