@tuki-io/tuki-widgets 0.0.219-dev.20 → 0.0.219-dev.22
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/esm2020/shared/public-api.mjs +4 -0
- package/esm2020/shared/src/ui/material.module.mjs +188 -0
- package/esm2020/shared/src/ui/shared.module.mjs +36 -0
- package/esm2020/shared/src/ui/tk-page-section/tk-page-section.component.mjs +13 -0
- package/esm2020/shared/src/ui/tk-page-section-row/tk-page-section-row.component.mjs +13 -0
- package/esm2020/shared/src/ui/ui.module.mjs +37 -0
- package/esm2020/shared/tuki-io-tuki-widgets-shared.mjs +5 -0
- package/esm2020/user-device-manage/src/user-device-manage.module.mjs +1 -4
- package/esm2020/user-manage/src/device-list/device-list.component.mjs +7 -4
- package/esm2020/user-manage/src/device-list/device-row/device-row.component.mjs +4 -3
- package/esm2020/user-manage/src/services/user.service.mjs +11 -12
- package/esm2020/user-manage/src/user-calling/user-calling.component.mjs +3 -3
- package/esm2020/user-manage/src/user-manage-widget.component.mjs +9 -8
- package/esm2020/user-manage/src/user-manage.module.mjs +7 -3
- package/esm2020/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.mjs +14 -3
- package/esm2020/users-list/src/move-user-wizard/move-user-wizard.component.mjs +5 -3
- package/esm2020/users-list/src/users-list.component.mjs +4 -3
- package/fesm2015/tuki-io-tuki-widgets-shared.mjs +280 -0
- package/fesm2015/tuki-io-tuki-widgets-shared.mjs.map +1 -0
- package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs +0 -13
- package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -1
- package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs +31 -24
- package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs +21 -6
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-shared.mjs +280 -0
- package/fesm2020/tuki-io-tuki-widgets-shared.mjs.map +1 -0
- package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs +0 -13
- package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs +31 -24
- package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs +20 -6
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
- package/package.json +9 -1
- package/shared/index.d.ts +5 -0
- package/shared/public-api.d.ts +3 -0
- package/shared/src/ui/material.module.d.ts +28 -0
- package/shared/src/ui/shared.module.d.ts +10 -0
- package/{user-device-manage/src/shared/tk-page-section/page-section.component.d.ts → shared/src/ui/tk-page-section/tk-page-section.component.d.ts} +1 -1
- package/shared/src/ui/tk-page-section-row/tk-page-section-row.component.d.ts +6 -0
- package/shared/src/ui/ui.module.d.ts +11 -0
- package/user-device-manage/src/user-device-manage.module.d.ts +9 -10
- package/user-manage/src/device-list/device-list.component.d.ts +2 -0
- package/user-manage/src/user-manage.module.d.ts +2 -1
- package/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.d.ts +3 -1
- package/users-list/src/move-user-wizard/move-user-wizard.component.d.ts +2 -1
- package/esm2020/user-device-manage/src/shared/tk-page-section/page-section.component.mjs +0 -13
|
@@ -0,0 +1,280 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component, Input, NgModule } from '@angular/core';
|
|
3
|
+
import { CommonModule } from '@angular/common';
|
|
4
|
+
import { MatExpansionModule } from '@angular/material/expansion';
|
|
5
|
+
import { MatDatepickerModule } from '@angular/material/datepicker';
|
|
6
|
+
import { MatAutocompleteModule } from '@angular/material/autocomplete';
|
|
7
|
+
import { MatChipsModule } from '@angular/material/chips';
|
|
8
|
+
import { MatListModule } from '@angular/material/list';
|
|
9
|
+
import { MatSidenavModule } from '@angular/material/sidenav';
|
|
10
|
+
import { MatTreeModule } from '@angular/material/tree';
|
|
11
|
+
import { DragDropModule } from '@angular/cdk/drag-drop';
|
|
12
|
+
import { MatButtonModule } from '@angular/material/button';
|
|
13
|
+
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
|
14
|
+
import { MatInputModule } from '@angular/material/input';
|
|
15
|
+
import { MatNativeDateModule } from '@angular/material/core';
|
|
16
|
+
import { MatTooltipModule } from '@angular/material/tooltip';
|
|
17
|
+
import { MatFormFieldModule } from '@angular/material/form-field';
|
|
18
|
+
import { MatStepperModule } from '@angular/material/stepper';
|
|
19
|
+
import { MatTabsModule } from '@angular/material/tabs';
|
|
20
|
+
import { MatCardModule } from '@angular/material/card';
|
|
21
|
+
import { MatSelectModule } from '@angular/material/select';
|
|
22
|
+
import { MatCheckboxModule } from '@angular/material/checkbox';
|
|
23
|
+
import { MatSlideToggleModule } from '@angular/material/slide-toggle';
|
|
24
|
+
import { MatTableModule } from '@angular/material/table';
|
|
25
|
+
import { MatPaginatorModule } from '@angular/material/paginator';
|
|
26
|
+
import { NgApexchartsModule } from 'ng-apexcharts';
|
|
27
|
+
import { HttpClientModule } from '@angular/common/http';
|
|
28
|
+
|
|
29
|
+
class PageSectionComponent {
|
|
30
|
+
}
|
|
31
|
+
PageSectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PageSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
32
|
+
PageSectionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PageSectionComponent, selector: "tk-page-section", inputs: { heading: "heading" }, ngImport: i0, template: "<div class=\"page-section-wrapper\">\r\n <h2>{{ heading }}</h2>\r\n <div class=\"page-section__content-wrapper\">\r\n <ng-content select=\"content\" />\r\n </div>\r\n</div>", styles: ["@import\"https://fonts.googleapis.com/css?family=Poppins:400,100,200,300,500,600,800,700,900\";.page-section-wrapper{background:white;display:flex;align-self:baseline;gap:2rem;border-radius:8px;border:rgba(0,0,0,.2) 1px solid;padding:24px;font-weight:400;font-size:14px}h2{display:flex;flex:1;font-weight:500;font-size:16px;max-inline-size:11.25rem;color:#000000f2;margin:0;font-family:Poppins,Poppins,sans-serif}.page-section__content-wrapper{display:flex;flex-direction:column;gap:.25rem;flex:1}\n"] });
|
|
33
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PageSectionComponent, decorators: [{
|
|
34
|
+
type: Component,
|
|
35
|
+
args: [{ selector: 'tk-page-section', template: "<div class=\"page-section-wrapper\">\r\n <h2>{{ heading }}</h2>\r\n <div class=\"page-section__content-wrapper\">\r\n <ng-content select=\"content\" />\r\n </div>\r\n</div>", styles: ["@import\"https://fonts.googleapis.com/css?family=Poppins:400,100,200,300,500,600,800,700,900\";.page-section-wrapper{background:white;display:flex;align-self:baseline;gap:2rem;border-radius:8px;border:rgba(0,0,0,.2) 1px solid;padding:24px;font-weight:400;font-size:14px}h2{display:flex;flex:1;font-weight:500;font-size:16px;max-inline-size:11.25rem;color:#000000f2;margin:0;font-family:Poppins,Poppins,sans-serif}.page-section__content-wrapper{display:flex;flex-direction:column;gap:.25rem;flex:1}\n"] }]
|
|
36
|
+
}], propDecorators: { heading: [{
|
|
37
|
+
type: Input
|
|
38
|
+
}] } });
|
|
39
|
+
|
|
40
|
+
class PageSectionRowComponent {
|
|
41
|
+
}
|
|
42
|
+
PageSectionRowComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PageSectionRowComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
43
|
+
PageSectionRowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PageSectionRowComponent, selector: "tk-page-section-row", inputs: { label: "label" }, ngImport: i0, template: "<div class=\"page-section-row-wrapper\">\r\n <div class=\"page-section-row__label\">\r\n <span>{{ label }}</span>\r\n </div>\r\n <div class=\"page-section-row__field\">\r\n <ng-content />\r\n </div>\r\n</div>", styles: [".page-section-row-wrapper{display:flex;gap:1.5rem;font-size:.75rem;line-height:1.25;align-items:center}.page-section-row__label{font-weight:500!important;font-size:14px!important;flex-basis:12rem}.page-section-row__field{display:flex;flex:1}:host ::ng-deep .mat-form-field{border:.0625rem solid rgba(0,0,0,.5019607843)!important;border-radius:.5rem;color:#000000f2;font-weight:400;font-size:.875rem;max-inline-size:18rem;padding:0}:host ::ng-deep .mat-form-field .mat-form-field-wrapper{margin:0!important;padding-bottom:0!important}:host ::ng-deep .mat-form-field .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-outline-end{border:none!important}:host ::ng-deep .mat-form-field .mat-form-field-wrapper .mat-form-field-flex:hover .mat-form-field-outline-start{border:none!important}:host ::ng-deep .mat-form-field .mat-form-field-wrapper .mat-form-field-flex:hover .mat-form-field-outline-end{border:none!important}:host ::ng-deep .mat-form-field:hover{background-color:#00000012!important;border:.0625rem solid rgba(0,0,0,.5019607843)!important}:host ::ng-deep .mat-form-field.mat-focused .mat-form-field-outline-start{display:none}\n"] });
|
|
44
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PageSectionRowComponent, decorators: [{
|
|
45
|
+
type: Component,
|
|
46
|
+
args: [{ selector: 'tk-page-section-row', template: "<div class=\"page-section-row-wrapper\">\r\n <div class=\"page-section-row__label\">\r\n <span>{{ label }}</span>\r\n </div>\r\n <div class=\"page-section-row__field\">\r\n <ng-content />\r\n </div>\r\n</div>", styles: [".page-section-row-wrapper{display:flex;gap:1.5rem;font-size:.75rem;line-height:1.25;align-items:center}.page-section-row__label{font-weight:500!important;font-size:14px!important;flex-basis:12rem}.page-section-row__field{display:flex;flex:1}:host ::ng-deep .mat-form-field{border:.0625rem solid rgba(0,0,0,.5019607843)!important;border-radius:.5rem;color:#000000f2;font-weight:400;font-size:.875rem;max-inline-size:18rem;padding:0}:host ::ng-deep .mat-form-field .mat-form-field-wrapper{margin:0!important;padding-bottom:0!important}:host ::ng-deep .mat-form-field .mat-form-field-wrapper .mat-form-field-flex .mat-form-field-outline-end{border:none!important}:host ::ng-deep .mat-form-field .mat-form-field-wrapper .mat-form-field-flex:hover .mat-form-field-outline-start{border:none!important}:host ::ng-deep .mat-form-field .mat-form-field-wrapper .mat-form-field-flex:hover .mat-form-field-outline-end{border:none!important}:host ::ng-deep .mat-form-field:hover{background-color:#00000012!important;border:.0625rem solid rgba(0,0,0,.5019607843)!important}:host ::ng-deep .mat-form-field.mat-focused .mat-form-field-outline-start{display:none}\n"] }]
|
|
47
|
+
}], propDecorators: { label: [{
|
|
48
|
+
type: Input
|
|
49
|
+
}] } });
|
|
50
|
+
|
|
51
|
+
class MaterialModule {
|
|
52
|
+
}
|
|
53
|
+
MaterialModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MaterialModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
54
|
+
MaterialModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: MaterialModule, imports: [DragDropModule,
|
|
55
|
+
MatButtonModule,
|
|
56
|
+
MatListModule,
|
|
57
|
+
MatProgressSpinnerModule,
|
|
58
|
+
MatExpansionModule,
|
|
59
|
+
MatInputModule,
|
|
60
|
+
MatInputModule,
|
|
61
|
+
MatListModule,
|
|
62
|
+
MatTreeModule,
|
|
63
|
+
MatTreeModule,
|
|
64
|
+
MatNativeDateModule,
|
|
65
|
+
MatDatepickerModule,
|
|
66
|
+
MatTooltipModule,
|
|
67
|
+
MatAutocompleteModule,
|
|
68
|
+
MatChipsModule,
|
|
69
|
+
MatSidenavModule,
|
|
70
|
+
MatFormFieldModule,
|
|
71
|
+
MatStepperModule,
|
|
72
|
+
MatTabsModule,
|
|
73
|
+
MatCardModule,
|
|
74
|
+
MatSelectModule,
|
|
75
|
+
MatCheckboxModule,
|
|
76
|
+
MatSlideToggleModule,
|
|
77
|
+
MatTableModule,
|
|
78
|
+
MatPaginatorModule], exports: [DragDropModule,
|
|
79
|
+
MatButtonModule,
|
|
80
|
+
MatListModule,
|
|
81
|
+
MatProgressSpinnerModule,
|
|
82
|
+
MatExpansionModule,
|
|
83
|
+
MatInputModule,
|
|
84
|
+
MatInputModule,
|
|
85
|
+
MatListModule,
|
|
86
|
+
MatTreeModule,
|
|
87
|
+
MatTreeModule,
|
|
88
|
+
MatNativeDateModule,
|
|
89
|
+
MatDatepickerModule,
|
|
90
|
+
MatTooltipModule,
|
|
91
|
+
MatAutocompleteModule,
|
|
92
|
+
MatChipsModule,
|
|
93
|
+
MatSidenavModule,
|
|
94
|
+
MatFormFieldModule,
|
|
95
|
+
MatStepperModule,
|
|
96
|
+
MatTabsModule,
|
|
97
|
+
MatCardModule,
|
|
98
|
+
MatCheckboxModule,
|
|
99
|
+
MatSelectModule,
|
|
100
|
+
MatSlideToggleModule,
|
|
101
|
+
MatProgressSpinnerModule,
|
|
102
|
+
MatTableModule,
|
|
103
|
+
MatPaginatorModule] });
|
|
104
|
+
MaterialModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MaterialModule, imports: [DragDropModule,
|
|
105
|
+
MatButtonModule,
|
|
106
|
+
MatListModule,
|
|
107
|
+
MatProgressSpinnerModule,
|
|
108
|
+
MatExpansionModule,
|
|
109
|
+
MatInputModule,
|
|
110
|
+
MatInputModule,
|
|
111
|
+
MatListModule,
|
|
112
|
+
MatTreeModule,
|
|
113
|
+
MatTreeModule,
|
|
114
|
+
MatNativeDateModule,
|
|
115
|
+
MatDatepickerModule,
|
|
116
|
+
MatTooltipModule,
|
|
117
|
+
MatAutocompleteModule,
|
|
118
|
+
MatChipsModule,
|
|
119
|
+
MatSidenavModule,
|
|
120
|
+
MatFormFieldModule,
|
|
121
|
+
MatStepperModule,
|
|
122
|
+
MatTabsModule,
|
|
123
|
+
MatCardModule,
|
|
124
|
+
MatSelectModule,
|
|
125
|
+
MatCheckboxModule,
|
|
126
|
+
MatSlideToggleModule,
|
|
127
|
+
MatTableModule,
|
|
128
|
+
MatPaginatorModule, DragDropModule,
|
|
129
|
+
MatButtonModule,
|
|
130
|
+
MatListModule,
|
|
131
|
+
MatProgressSpinnerModule,
|
|
132
|
+
MatExpansionModule,
|
|
133
|
+
MatInputModule,
|
|
134
|
+
MatInputModule,
|
|
135
|
+
MatListModule,
|
|
136
|
+
MatTreeModule,
|
|
137
|
+
MatTreeModule,
|
|
138
|
+
MatNativeDateModule,
|
|
139
|
+
MatDatepickerModule,
|
|
140
|
+
MatTooltipModule,
|
|
141
|
+
MatAutocompleteModule,
|
|
142
|
+
MatChipsModule,
|
|
143
|
+
MatSidenavModule,
|
|
144
|
+
MatFormFieldModule,
|
|
145
|
+
MatStepperModule,
|
|
146
|
+
MatTabsModule,
|
|
147
|
+
MatCardModule,
|
|
148
|
+
MatCheckboxModule,
|
|
149
|
+
MatSelectModule,
|
|
150
|
+
MatSlideToggleModule,
|
|
151
|
+
MatProgressSpinnerModule,
|
|
152
|
+
MatTableModule,
|
|
153
|
+
MatPaginatorModule] });
|
|
154
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MaterialModule, decorators: [{
|
|
155
|
+
type: NgModule,
|
|
156
|
+
args: [{
|
|
157
|
+
imports: [
|
|
158
|
+
DragDropModule,
|
|
159
|
+
MatButtonModule,
|
|
160
|
+
MatListModule,
|
|
161
|
+
MatProgressSpinnerModule,
|
|
162
|
+
MatExpansionModule,
|
|
163
|
+
MatInputModule,
|
|
164
|
+
MatInputModule,
|
|
165
|
+
MatListModule,
|
|
166
|
+
MatTreeModule,
|
|
167
|
+
MatTreeModule,
|
|
168
|
+
MatNativeDateModule,
|
|
169
|
+
MatDatepickerModule,
|
|
170
|
+
MatTooltipModule,
|
|
171
|
+
MatAutocompleteModule,
|
|
172
|
+
MatChipsModule,
|
|
173
|
+
MatSidenavModule,
|
|
174
|
+
MatFormFieldModule,
|
|
175
|
+
MatStepperModule,
|
|
176
|
+
MatTabsModule,
|
|
177
|
+
MatCardModule,
|
|
178
|
+
MatSelectModule,
|
|
179
|
+
MatCheckboxModule,
|
|
180
|
+
MatSlideToggleModule,
|
|
181
|
+
MatTableModule,
|
|
182
|
+
MatPaginatorModule
|
|
183
|
+
],
|
|
184
|
+
exports: [
|
|
185
|
+
DragDropModule,
|
|
186
|
+
MatButtonModule,
|
|
187
|
+
MatListModule,
|
|
188
|
+
MatProgressSpinnerModule,
|
|
189
|
+
MatExpansionModule,
|
|
190
|
+
MatInputModule,
|
|
191
|
+
MatInputModule,
|
|
192
|
+
MatListModule,
|
|
193
|
+
MatTreeModule,
|
|
194
|
+
MatTreeModule,
|
|
195
|
+
MatNativeDateModule,
|
|
196
|
+
MatDatepickerModule,
|
|
197
|
+
MatTooltipModule,
|
|
198
|
+
MatAutocompleteModule,
|
|
199
|
+
MatChipsModule,
|
|
200
|
+
MatSidenavModule,
|
|
201
|
+
MatFormFieldModule,
|
|
202
|
+
MatStepperModule,
|
|
203
|
+
MatTabsModule,
|
|
204
|
+
MatCardModule,
|
|
205
|
+
MatCheckboxModule,
|
|
206
|
+
MatSelectModule,
|
|
207
|
+
MatSlideToggleModule,
|
|
208
|
+
MatProgressSpinnerModule,
|
|
209
|
+
MatTableModule,
|
|
210
|
+
MatPaginatorModule
|
|
211
|
+
],
|
|
212
|
+
}]
|
|
213
|
+
}] });
|
|
214
|
+
|
|
215
|
+
class SharedModule {
|
|
216
|
+
}
|
|
217
|
+
SharedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
218
|
+
SharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, imports: [CommonModule,
|
|
219
|
+
MaterialModule,
|
|
220
|
+
NgApexchartsModule,
|
|
221
|
+
HttpClientModule], exports: [CommonModule,
|
|
222
|
+
MaterialModule] });
|
|
223
|
+
SharedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, imports: [CommonModule,
|
|
224
|
+
MaterialModule,
|
|
225
|
+
NgApexchartsModule,
|
|
226
|
+
HttpClientModule, CommonModule,
|
|
227
|
+
MaterialModule] });
|
|
228
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, decorators: [{
|
|
229
|
+
type: NgModule,
|
|
230
|
+
args: [{
|
|
231
|
+
declarations: [],
|
|
232
|
+
imports: [
|
|
233
|
+
CommonModule,
|
|
234
|
+
MaterialModule,
|
|
235
|
+
NgApexchartsModule,
|
|
236
|
+
HttpClientModule
|
|
237
|
+
],
|
|
238
|
+
exports: [
|
|
239
|
+
CommonModule,
|
|
240
|
+
MaterialModule
|
|
241
|
+
]
|
|
242
|
+
}]
|
|
243
|
+
}] });
|
|
244
|
+
|
|
245
|
+
class UIModule {
|
|
246
|
+
}
|
|
247
|
+
UIModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UIModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
248
|
+
UIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: UIModule, declarations: [PageSectionComponent,
|
|
249
|
+
PageSectionRowComponent], imports: [CommonModule,
|
|
250
|
+
SharedModule,
|
|
251
|
+
MaterialModule], exports: [PageSectionComponent,
|
|
252
|
+
PageSectionRowComponent] });
|
|
253
|
+
UIModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UIModule, imports: [CommonModule,
|
|
254
|
+
SharedModule,
|
|
255
|
+
MaterialModule] });
|
|
256
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UIModule, decorators: [{
|
|
257
|
+
type: NgModule,
|
|
258
|
+
args: [{
|
|
259
|
+
declarations: [
|
|
260
|
+
PageSectionComponent,
|
|
261
|
+
PageSectionRowComponent
|
|
262
|
+
],
|
|
263
|
+
imports: [
|
|
264
|
+
CommonModule,
|
|
265
|
+
SharedModule,
|
|
266
|
+
MaterialModule
|
|
267
|
+
],
|
|
268
|
+
exports: [
|
|
269
|
+
PageSectionComponent,
|
|
270
|
+
PageSectionRowComponent
|
|
271
|
+
]
|
|
272
|
+
}]
|
|
273
|
+
}] });
|
|
274
|
+
|
|
275
|
+
/**
|
|
276
|
+
* Generated bundle index. Do not edit.
|
|
277
|
+
*/
|
|
278
|
+
|
|
279
|
+
export { PageSectionComponent, PageSectionRowComponent, UIModule };
|
|
280
|
+
//# sourceMappingURL=tuki-io-tuki-widgets-shared.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tuki-io-tuki-widgets-shared.mjs","sources":["../../../../projects/tuki/widgets/shared/src/ui/tk-page-section/tk-page-section.component.ts","../../../../projects/tuki/widgets/shared/src/ui/tk-page-section/tk-page-section.component.html","../../../../projects/tuki/widgets/shared/src/ui/tk-page-section-row/tk-page-section-row.component.ts","../../../../projects/tuki/widgets/shared/src/ui/tk-page-section-row/tk-page-section-row.component.html","../../../../projects/tuki/widgets/shared/src/ui/material.module.ts","../../../../projects/tuki/widgets/shared/src/ui/shared.module.ts","../../../../projects/tuki/widgets/shared/src/ui/ui.module.ts","../../../../projects/tuki/widgets/shared/tuki-io-tuki-widgets-shared.ts"],"sourcesContent":["import { Component, Input } from \"@angular/core\";\r\n\r\n@Component({\r\n selector: 'tk-page-section',\r\n templateUrl: './tk-page-section.component.html',\r\n styleUrls: ['./tk-page-section.component.scss']\r\n})\r\nexport class PageSectionComponent {\r\n @Input() heading!: string;\r\n}","<div class=\"page-section-wrapper\">\r\n <h2>{{ heading }}</h2>\r\n <div class=\"page-section__content-wrapper\">\r\n <ng-content select=\"content\" />\r\n </div>\r\n</div>","import { Component, Input } from \"@angular/core\";\r\n\r\n@Component({\r\n selector: 'tk-page-section-row',\r\n templateUrl: './tk-page-section-row.component.html',\r\n styleUrls: ['./tk-page-section-row.component.scss']\r\n})\r\nexport class PageSectionRowComponent {\r\n @Input() label!: string;\r\n}","<div class=\"page-section-row-wrapper\">\r\n <div class=\"page-section-row__label\">\r\n <span>{{ label }}</span>\r\n </div>\r\n <div class=\"page-section-row__field\">\r\n <ng-content />\r\n </div>\r\n</div>","import { NgModule } from '@angular/core';\r\n\r\nimport { MatExpansionModule } from '@angular/material/expansion';\r\nimport { MatDatepickerModule } from '@angular/material/datepicker';\r\nimport { MatAutocompleteModule } from '@angular/material/autocomplete';\r\nimport { MatChipsModule } from '@angular/material/chips';\r\nimport { MatListModule } from '@angular/material/list';\r\nimport { MatSidenavModule } from '@angular/material/sidenav';\r\nimport { MatTreeModule } from '@angular/material/tree';\r\nimport { DragDropModule } from '@angular/cdk/drag-drop';\r\nimport { MatButtonModule } from '@angular/material/button';\r\nimport { MatProgressSpinnerModule } from '@angular/material/progress-spinner';\r\nimport { MatInputModule } from '@angular/material/input';\r\nimport { MatNativeDateModule } from '@angular/material/core';\r\nimport { MatTooltipModule } from '@angular/material/tooltip';\r\nimport { MatFormFieldModule } from '@angular/material/form-field';\r\nimport { MatStepperModule } from '@angular/material/stepper';\r\nimport { MatTabsModule } from '@angular/material/tabs';\r\nimport { MatCardModule } from '@angular/material/card';\r\nimport { MatSelectModule } from '@angular/material/select';\r\nimport { MatCheckboxModule } from '@angular/material/checkbox';\r\nimport { MatSlideToggleModule } from '@angular/material/slide-toggle';\r\nimport { MatTableModule } from '@angular/material/table';\r\nimport { MatPaginatorModule } from '@angular/material/paginator';\r\n\r\n\r\n@NgModule({\r\n imports: [\r\n DragDropModule,\r\n MatButtonModule,\r\n MatListModule,\r\n MatProgressSpinnerModule,\r\n MatExpansionModule,\r\n MatInputModule,\r\n MatInputModule,\r\n MatListModule,\r\n MatTreeModule,\r\n MatTreeModule,\r\n MatNativeDateModule,\r\n MatDatepickerModule,\r\n MatTooltipModule,\r\n MatAutocompleteModule,\r\n MatChipsModule,\r\n MatSidenavModule,\r\n MatFormFieldModule,\r\n MatStepperModule,\r\n MatTabsModule,\r\n MatCardModule,\r\n MatSelectModule,\r\n MatCheckboxModule,\r\n MatSlideToggleModule,\r\n MatTableModule,\r\n MatPaginatorModule\r\n ],\r\n exports: [\r\n DragDropModule,\r\n MatButtonModule,\r\n MatListModule,\r\n MatProgressSpinnerModule,\r\n MatExpansionModule,\r\n MatInputModule,\r\n MatInputModule,\r\n MatListModule,\r\n MatTreeModule,\r\n MatTreeModule,\r\n MatNativeDateModule,\r\n MatDatepickerModule,\r\n MatTooltipModule,\r\n MatAutocompleteModule,\r\n MatChipsModule,\r\n MatSidenavModule,\r\n MatFormFieldModule,\r\n MatStepperModule,\r\n MatTabsModule,\r\n MatCardModule,\r\n MatCheckboxModule,\r\n MatSelectModule,\r\n MatSlideToggleModule,\r\n MatProgressSpinnerModule,\r\n MatTableModule,\r\n MatPaginatorModule\r\n ],\r\n})\r\nexport class MaterialModule { }\r\n","import { NgModule } from \"@angular/core\";\r\nimport { CommonModule } from \"@angular/common\";\r\nimport { MaterialModule } from \"./material.module\";\r\nimport { NgApexchartsModule } from \"ng-apexcharts\"\r\nimport { HttpClientModule } from \"@angular/common/http\";\r\n\r\n@NgModule({\r\n declarations: [],\r\n imports: [\r\n CommonModule,\r\n MaterialModule,\r\n NgApexchartsModule,\r\n HttpClientModule\r\n ],\r\n exports: [\r\n CommonModule,\r\n MaterialModule\r\n ]\r\n})\r\nexport class SharedModule {}","import { NgModule } from \"@angular/core\";\r\nimport { PageSectionComponent } from \"./tk-page-section/tk-page-section.component\";\r\nimport { PageSectionRowComponent } from \"./tk-page-section-row/tk-page-section-row.component\";\r\nimport { SharedModule } from \"./shared.module\";\r\nimport { CommonModule } from \"@angular/common\";\r\nimport { MaterialModule } from \"./material.module\";\r\n\r\n@NgModule({\r\n declarations: [\r\n PageSectionComponent,\r\n PageSectionRowComponent\r\n ],\r\n imports: [\r\n CommonModule,\r\n SharedModule,\r\n MaterialModule\r\n ],\r\n exports: [\r\n PageSectionComponent,\r\n PageSectionRowComponent\r\n ]\r\n})\r\nexport class UIModule {}","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
|
@@ -3389,17 +3389,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3389
3389
|
class InfoDialogConfig {
|
|
3390
3390
|
}
|
|
3391
3391
|
|
|
3392
|
-
class PageSectionComponent {
|
|
3393
|
-
}
|
|
3394
|
-
PageSectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PageSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3395
|
-
PageSectionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PageSectionComponent, selector: "lib-page-section", inputs: { heading: "heading" }, ngImport: i0, template: "<section class=\"wrapper\">\r\n <div class=\"section__left-header\">\r\n <div class=\"heading-wrapper\">\r\n <h2 class=\"heading\">{{ heading }}</h2>\r\n <div class=\"heading-icon\">\r\n <ng-content select=\"heading-icon\"></ng-content>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"section__content\">\r\n <ng-content select=\"content\"></ng-content>\r\n </div>\r\n</section>", styles: [".wrapper{color:#000000f2;border:1px solid rgba(0,0,0,.2);border-radius:.5rem;width:100%;padding:1.5rem;display:flex}.section__left-header{display:flex;align-items:left;justify-content:center;flex-direction:column;gap:1rem;background-color:red;flex:1;max-width:11rem}.section__left-header .heading-wrapper{display:flex;align-items:center;justify-content:left;gap:.5rem}.section__left-header .heading{font-size:16px;font-weight:500}.section__left-header .heading-icon{display:flex;align-items:center;justify-content:center}.section__content{display:flex;align-items:center;justify-content:center;gap:.5rem}\n"] });
|
|
3396
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PageSectionComponent, decorators: [{
|
|
3397
|
-
type: Component,
|
|
3398
|
-
args: [{ selector: 'lib-page-section', template: "<section class=\"wrapper\">\r\n <div class=\"section__left-header\">\r\n <div class=\"heading-wrapper\">\r\n <h2 class=\"heading\">{{ heading }}</h2>\r\n <div class=\"heading-icon\">\r\n <ng-content select=\"heading-icon\"></ng-content>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"section__content\">\r\n <ng-content select=\"content\"></ng-content>\r\n </div>\r\n</section>", styles: [".wrapper{color:#000000f2;border:1px solid rgba(0,0,0,.2);border-radius:.5rem;width:100%;padding:1.5rem;display:flex}.section__left-header{display:flex;align-items:left;justify-content:center;flex-direction:column;gap:1rem;background-color:red;flex:1;max-width:11rem}.section__left-header .heading-wrapper{display:flex;align-items:center;justify-content:left;gap:.5rem}.section__left-header .heading{font-size:16px;font-weight:500}.section__left-header .heading-icon{display:flex;align-items:center;justify-content:center}.section__content{display:flex;align-items:center;justify-content:center;gap:.5rem}\n"] }]
|
|
3399
|
-
}], propDecorators: { heading: [{
|
|
3400
|
-
type: Input
|
|
3401
|
-
}] } });
|
|
3402
|
-
|
|
3403
3392
|
class UserDeviceManageModule {
|
|
3404
3393
|
}
|
|
3405
3394
|
UserDeviceManageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UserDeviceManageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -3413,7 +3402,6 @@ UserDeviceManageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
3413
3402
|
DeviceAssociatedLineDetailsBoxComponent,
|
|
3414
3403
|
AssociatedLineRowComponent,
|
|
3415
3404
|
InfoDialogComponent,
|
|
3416
|
-
PageSectionComponent,
|
|
3417
3405
|
DeviceInfoComponent,
|
|
3418
3406
|
MacAddressPipe], imports: [CommonModule,
|
|
3419
3407
|
BrowserModule,
|
|
@@ -3454,7 +3442,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3454
3442
|
DeviceAssociatedLineDetailsBoxComponent,
|
|
3455
3443
|
AssociatedLineRowComponent,
|
|
3456
3444
|
InfoDialogComponent,
|
|
3457
|
-
PageSectionComponent,
|
|
3458
3445
|
DeviceInfoComponent,
|
|
3459
3446
|
MacAddressPipe,
|
|
3460
3447
|
],
|