-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathdata-entries.routes.ts
More file actions
497 lines (496 loc) · 21.2 KB
/
Copy pathdata-entries.routes.ts
File metadata and controls
497 lines (496 loc) · 21.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
import { Routes } from '@angular/router';
import { AutocompleteBasicComponent } from './autocomplete/autocomplete/autocomplete.component';
import { MovieComponent } from './autocomplete/movie/movie.component';
import { ButtonGroupSample1Component } from './buttonGroup/button-group-sample-1/button-group-sample-1.component';
import { ButtonGroupSample2Component } from './buttonGroup/button-group-sample-2/button-group-sample-2.component';
import { ButtonGroupSample3Component } from './buttonGroup/button-group-sample-3/button-group-sample-3.component';
import { ButtonGroupSampleComponent } from './buttonGroup/button-group-sample-4/button-group-sample.component';
import { ButtonGroupSample5Component } from './buttonGroup/button-group-sample-5/button-group-sample-5.component';
import { ButtonGroupStyleComponent } from './buttonGroup/button-group-style/button-group-style.component';
import { ButtonGroupTailwindStyleComponent } from './buttonGroup/button-group-tailwind-style/button-group-tailwind-style.component';
import { ButtonsDisabledComponent } from './buttons/buttons-disabled-sample/buttons-disabled-sample';
import { ButtonsDisplayDensityComponent } from './buttons/buttons-display-density/buttons-display-density.component';
import { ButtonsRoundnessComponent } from './buttons/buttons-roundness-sample/buttons-roundness-sample';
import { ButtonsSample1Component } from './buttons/buttons-sample-1/buttons-sample-1.component';
import { ButtonsSample2Component } from './buttons/buttons-sample-2/buttons-sample-2.component';
import { ButtonsSample3Component } from './buttons/buttons-sample-3/buttons-sample-3.component';
import { ButtonsSample4Component } from './buttons/buttons-sample-4/buttons-sample-4.component';
import { ButtonsSample5Component } from './buttons/buttons-sample-5/buttons-sample-5.component';
import { ButtonsSample6Component } from './buttons/buttons-sample-6/buttons-sample-6.component';
import { ButtonsSample7Component } from './buttons/buttons-sample-7/buttons-sample-7.component';
import { ButtonsSample8Component } from './buttons/buttons-sample-8/buttons-sample-8.component';
import { ButtonsStyleComponent } from './buttons/buttons-style/buttons-style.component';
import { ButtonsTailwindStyleComponent } from './buttons/buttons-tailwind-style/buttons-tailwind-style.component';
import { CheckboxSample1Component } from './checkbox/checkbox-sample-1/checkbox-sample-1.component';
import { CheckboxSample2Component } from './checkbox/checkbox-sample-2/checkbox-sample-2.component';
import { CheckboxSample3Component } from './checkbox/checkbox-sample-3/checkbox-sample-3.component';
import { CheckboxStylingComponent } from './checkbox/checkbox-styling/checkbox-styling.component';
import { CheckboxTailwindStylingComponent } from './checkbox/checkbox-tailwind-styling/checkbox-tailwind-styling.component';
import { dataEntriesRoutesData } from './data-entries-routes-data';
import { DropDownRemoteComponent } from './dropdown/drop-down-remote-virtual/drop-down-remote.component';
import { DropDownVirtualComponent } from './dropdown/drop-down-virtual/drop-down-virtual.component';
import { DropdownMenuComponent } from './dropdown/dropdown-menu/dropdown-menu.component';
import { DropdownMultiLevelMenuComponent } from './dropdown/dropdown-multi-level-menu/dropdown-multi-level-menu.component';
import { DropDownSample1Component } from './dropdown/dropdown-sample-1/dropdown-sample-1.component';
import { DropDownSample2Component } from './dropdown/dropdown-sample-2/dropdown-sample-2.component';
import { DropDownSample3Component } from './dropdown/dropdown-sample-3/dropdown-sample-3.component';
import { DropDownSample4Component } from './dropdown/dropdown-sample-4/dropdown-sample-4.component';
import { DropDownSample5Component } from './dropdown/dropdown-sample-5/dropdown-sample-5.component';
import { DropDownStylingComponent } from './dropdown/dropdown-styling/dropdown-styling.component';
import { DropdownTreeHierarchicalSelectionComponent } from './dropdown/dropdown-tree-hierarchical-selection/dropdown-tree-hierarchical-selection.component';
import { DropdownTreeGridHierarchicalSelectionComponent } from './dropdown/dropdown-tree-grid-hierarchical-selection/dropdown-tree-grid-hierarchical-selection.component';
import { InputGroupSample1Component } from './input-group/input-group-sample-1/input-group-sample-1.component';
import { InputGroupSample2Component } from './input-group/input-group-sample-2/input-group-sample-2.component';
import { InputGroupSample3Component } from './input-group/input-group-sample-3/input-group-sample-3.component';
import { InputGroupSample4Component } from './input-group/input-group-sample-4/input-group-sample-4.component';
import { InputGroupSample5Component } from './input-group/input-group-sample-5/input-group-sample-5.component';
import { InputGroupSample6Component } from './input-group/input-group-sample-6/input-group-sample-6.component';
import { InputGroupSample7Component } from './input-group/input-group-sample-7/input-group-sample-7.component';
import { InputGroupStyleComponent } from './input-group/input-group-styling/input-group-styling.component';
import { InputGroupTailwindStyleComponent } from './input-group/input-group-tailwind-styling/input-group-tailwind-styling.component';
import { InputTextSelectionComponent } from './input-group/input-text-selection/input-text-selection.component';
import { TypedFormComponent } from './input-group/typed-form/typed-form.component';
import { ReactiveFormsSampleComponent } from '../how-to/reactive-forms/reactive-forms.component';
import { RadioGroupVerticalComponent } from './radio/radio-group-vertical/radio-group-vertical.component';
import { RadioGroupSampleComponent } from './radio/radio-group-sample/radio-group-sample.component';
import { RadioSample1Component } from './radio/radio-sample-1/radio-sample-1.component';
import { RadioSample2Component } from './radio/radio-sample-2/radio-sample-2.component';
import { RadioSample3Component } from './radio/radio-sample-3/radio-sample-3.component';
import { RadioStylingSampleComponent } from './radio/radio-styling-sample/radio-styling-sample.component';
import { RadioTailwindStylingSampleComponent } from './radio/radio-tailwind-styling-sample/radio-tailwind-styling-sample.component';
import { SelectHeaderFooterComponent } from './select/select-header-footer/select-header-footer.component';
import { SelectInputDirectivesComponent } from './select/select-input-directives/select-input-directives';
import { SelectSample1Component } from './select/select-sample-1/select-sample-1.component';
import { SelectSample2Component } from './select/select-sample-2/select-sample-2.component';
import { SelectSample4Component } from './select/select-sample-4/select-sample-4.component';
import { SelectStylingComponent } from './select/select-styling/select-styling.component';
import { SelectTailwindStylingComponent } from './select/select-tailwind-styling/select-tailwind-styling.component';
import { SwitchSample1Component } from './switch/switch-sample-1/switch-sample-1.component';
import { SwitchSample2Component } from './switch/switch-sample-2/switch-sample-2.component';
import { SwitchStylingComponent } from './switch/switch-styling/switch-styling.component';
import { SwitchTailwindStylingComponent } from './switch/switch-tailwind-styling/switch-tailwind-styling.component';
import { RatingInFormComponent } from './rating/rating-form/rating-form.component';
import { TemplateDrivenFormValidationComponent } from './input-group/template-driven-form-validation/template-driven-form-validation.component';
import { ReactiveFormValidationComponent } from './input-group/reactive-form-validation/reactive-form-validation.component';
import { ReactiveFormCustomValidationComponent } from './input-group/reactive-form-custom-validation/reactive-form-custom-validation.component';
import { IconButtonOverviewComponent } from './icon-button/icon-button-overview/icon-button-overview.component';
import { FlatIconButtonComponent } from './icon-button/flat-icon-button/flat-icon-button.component';
import { ContainedIconButtonComponent } from './icon-button/contained-icon-button/contained-icon-button.component';
import { OutlinedIconButtonComponent } from './icon-button/outlined-icon-button/outlined-icon-button.component';
import { DisabledIconButtonComponent } from './icon-button/disabled-icon-button/disabled-icon-button.component';
import { SVGIconButtonComponent } from './icon-button/svg-icon-button/svg-icon-button.component';
import { IconButtonSizeComponent } from './icon-button/icon-button-size/icon-button-size.component';
import { IconButtonStylingComponent } from './icon-button/icon-button-styling/icon-button-styling.component';
import { IconButtonTailwindStylingComponent } from './icon-button/icon-button-tailwind-styling/icon-button-tailwind-styling.component';
export const DataEntriesRoutes: Routes = [
{
component: AutocompleteBasicComponent,
data: dataEntriesRoutesData.autocomplete,
path: 'autocomplete'
},
{
component: MovieComponent,
data: dataEntriesRoutesData.movie,
path: 'movie'
},
{
component: ButtonsDisplayDensityComponent,
data: dataEntriesRoutesData['buttons-display-density'],
path: 'buttons-display-density'
},
{
component: ButtonGroupSample1Component,
data: dataEntriesRoutesData['button-group-sample-1'],
path: 'button-group-sample-1'
},
{
component: ButtonGroupSample2Component,
data: dataEntriesRoutesData['button-group-sample-2'],
path: 'button-group-sample-2'
},
{
component: ButtonGroupSample3Component,
data: dataEntriesRoutesData['button-group-sample-3'],
path: 'button-group-sample-3'
},
{
component: ButtonGroupSampleComponent,
data: dataEntriesRoutesData['button-group-sample-4'],
path: 'button-group-sample-4'
},
{
component: ButtonGroupSample5Component,
data: dataEntriesRoutesData['button-group-sample-5'],
path: 'button-group-sample-5'
},
{
component: ButtonGroupStyleComponent,
data: dataEntriesRoutesData['button-group-style'],
path: 'button-group-style'
},
{
component: ButtonGroupTailwindStyleComponent,
data: dataEntriesRoutesData['button-group-tailwind-style'],
path: 'button-group-tailwind-style'
},
{
component: ButtonsRoundnessComponent,
data: dataEntriesRoutesData['buttons-roundness-sample'],
path: 'buttons-roundness-sample'
},
{
component: ButtonsSample1Component,
data: dataEntriesRoutesData['buttons-sample-1'],
path: 'buttons-sample-1'
},
{
component: ButtonsSample2Component,
data: dataEntriesRoutesData['buttons-sample-2'],
path: 'buttons-sample-2'
},
{
component: ButtonsSample3Component,
data: dataEntriesRoutesData['buttons-sample-3'],
path: 'buttons-sample-3'
},
{
component: ButtonsSample4Component,
data: dataEntriesRoutesData['buttons-sample-4'],
path: 'buttons-sample-4'
},
{
component: ButtonsSample5Component,
data: dataEntriesRoutesData['buttons-sample-5'],
path: 'buttons-sample-5'
},
{
component: ButtonsSample6Component,
data: dataEntriesRoutesData['buttons-sample-6'],
path: 'buttons-sample-6'
},
{
component: ButtonsSample7Component,
data: dataEntriesRoutesData['buttons-sample-7'],
path: 'buttons-sample-7'
},
{
component: ButtonsSample8Component,
data: dataEntriesRoutesData['buttons-sample-8'],
path: 'buttons-sample-8'
},
{
component: ButtonsDisabledComponent,
data: dataEntriesRoutesData['buttons-disabled-sample'],
path: 'buttons-disabled-sample'
},
{
component: ButtonsStyleComponent,
data: dataEntriesRoutesData['buttons-style'],
path: 'buttons-style'
},
{
component: ButtonsTailwindStyleComponent,
data: dataEntriesRoutesData['buttons-tailwind-style'],
path: 'buttons-tailwind-style'
},
{
component: CheckboxSample1Component,
data: dataEntriesRoutesData['checkbox-sample-1'],
path: 'checkbox-sample-1'
},
{
component: CheckboxSample2Component,
data: dataEntriesRoutesData['checkbox-sample-2'],
path: 'checkbox-sample-2'
},
{
component: CheckboxSample3Component,
data: dataEntriesRoutesData['checkbox-sample-3'],
path: 'checkbox-sample-3'
},
{
component: CheckboxStylingComponent,
data: dataEntriesRoutesData['checkbox-styling'],
path: 'checkbox-styling'
},
{
component: CheckboxTailwindStylingComponent,
data: dataEntriesRoutesData['checkbox-tailwind-styling'],
path: 'checkbox-tailwind-styling'
},
{
component: DropdownMenuComponent,
data: dataEntriesRoutesData['dropdown-menu'],
path: 'dropdown-menu'
},
{
component: DropdownMultiLevelMenuComponent,
data: dataEntriesRoutesData['dropdown-multi-level-menu'],
path: 'dropdown-multi-level-menu'
},
{
component: DropDownSample1Component,
data: dataEntriesRoutesData['dropdown-sample-1'],
path: 'dropdown-sample-1'
},
{
component: DropDownSample2Component,
data: dataEntriesRoutesData['dropdown-sample-2'],
path: 'dropdown-sample-2'
},
{
component: DropDownSample3Component,
data: dataEntriesRoutesData['dropdown-sample-3'],
path: 'dropdown-sample-3'
},
{
component: DropDownSample5Component,
data: dataEntriesRoutesData['dropdown-sample-5'],
path: 'dropdown-sample-5'
},
{
component: DropDownStylingComponent,
data: dataEntriesRoutesData['dropdown-styling'],
path: 'dropdown-styling'
},
{
component: DropdownTreeHierarchicalSelectionComponent,
data: dataEntriesRoutesData['dropdown-tree-hierarchical-selection'],
path: 'dropdown-tree-hierarchical-selection'
},
{
component: DropdownTreeGridHierarchicalSelectionComponent,
data: dataEntriesRoutesData['dropdown-tree-grid-hierarchical-selection'],
path: 'dropdown-tree-grid-hierarchical-selection'
},
{
component: DropDownSample4Component,
data: dataEntriesRoutesData['dropdown-sample-4'],
path: 'dropdown-sample-4'
},
{
component: DropDownVirtualComponent,
data: dataEntriesRoutesData['dropdown-virtual'],
path: 'dropdown-virtual'
},
{
component: DropDownRemoteComponent,
data: dataEntriesRoutesData['dropdown-remote'],
path: 'dropdown-remote'
},
{
component: IconButtonOverviewComponent,
data: dataEntriesRoutesData['icon-button-overview'],
path: 'icon-button-overview'
},
{
component: FlatIconButtonComponent,
data: dataEntriesRoutesData['flat-icon-button'],
path: 'flat-icon-button'
},
{
component: ContainedIconButtonComponent,
data: dataEntriesRoutesData['contained-icon-button'],
path: 'contained-icon-button'
},
{
component: OutlinedIconButtonComponent,
data: dataEntriesRoutesData['outlined-icon-button'],
path: 'outlined-icon-button'
},
{
component: DisabledIconButtonComponent,
data: dataEntriesRoutesData['disabled-icon-button'],
path: 'disabled-icon-button'
},
{
component: SVGIconButtonComponent,
data: dataEntriesRoutesData['svg-icon-button'],
path: 'svg-icon-button'
},
{
component: IconButtonSizeComponent,
data: dataEntriesRoutesData['icon-button-size'],
path: 'icon-button-size'
},
{
component: IconButtonStylingComponent,
data: dataEntriesRoutesData['icon-button-styling'],
path: 'icon-button-styling'
},
{
component: IconButtonTailwindStylingComponent,
data: dataEntriesRoutesData['icon-button-tailwind-styling'],
path: 'icon-button-tailwind-styling'
},
{
component: InputGroupSample1Component,
data: dataEntriesRoutesData['input-group-sample-1'],
path: 'input-group-sample-1'
},
{
component: InputGroupSample2Component,
data: dataEntriesRoutesData['input-group-sample-2'],
path: 'input-group-sample-2'
},
{
component: InputGroupSample3Component,
data: dataEntriesRoutesData['input-group-sample-3'],
path: 'input-group-sample-3'
},
{
component: InputGroupSample4Component,
data: dataEntriesRoutesData['input-group-sample-4'],
path: 'input-group-sample-4'
},
{
component: InputGroupSample5Component,
data: dataEntriesRoutesData['input-group-sample-5'],
path: 'input-group-sample-5'
},
{
component: InputGroupSample6Component,
data: dataEntriesRoutesData['input-group-sample-6'],
path: 'input-group-sample-6'
},
{
component: InputGroupSample7Component,
data: dataEntriesRoutesData['input-group-sample-7'],
path: 'input-group-sample-7'
},
{
component: InputGroupStyleComponent,
data: dataEntriesRoutesData['input-group-style'],
path: 'input-group-style'
},
{
component: InputGroupTailwindStyleComponent,
data: dataEntriesRoutesData['input-group-tailwind-style'],
path: 'input-group-tailwind-style'
},
{
component: ReactiveFormsSampleComponent,
data: dataEntriesRoutesData['reactive-forms'],
path: 'reactive-forms'
},
{
component: RadioSample1Component,
data: dataEntriesRoutesData['radio-sample-1'],
path: 'radio-sample-1'
},
{
component: RadioSample2Component,
data: dataEntriesRoutesData['radio-sample-2'],
path: 'radio-sample-2'
},
{
component: RadioSample3Component,
data: dataEntriesRoutesData['radio-sample-3'],
path: 'radio-sample-3'
},
{
component: RadioGroupSampleComponent,
data: dataEntriesRoutesData['radio-group-sample'],
path: 'radio-group-sample'
},
{
component: RadioGroupVerticalComponent,
data: dataEntriesRoutesData['radio-group-vertical'],
path: 'radio-group-vertical'
},
{
component: RadioStylingSampleComponent,
data: dataEntriesRoutesData['radio-styling-sample'],
path: 'radio-styling-sample'
},
{
component: RadioTailwindStylingSampleComponent,
data: dataEntriesRoutesData['radio-tailwind-styling-sample'],
path: 'radio-tailwind-styling-sample'
},
{
component: RatingInFormComponent,
data: dataEntriesRoutesData['rating-in-form'],
path: 'rating-form'
},
{
component: SwitchSample1Component,
data: dataEntriesRoutesData['switch-sample-1'],
path: 'switch-sample-1'
},
{
component: SwitchSample2Component,
data: dataEntriesRoutesData['switch-sample-2'],
path: 'switch-sample-2'
},
{
component: SwitchStylingComponent,
data: dataEntriesRoutesData['switch-styling'],
path: 'switch-styling'
},
{
component: SwitchTailwindStylingComponent,
data: dataEntriesRoutesData['switch-tailwind-styling'],
path: 'switch-tailwind-styling'
},
{
component: SelectSample1Component,
data: dataEntriesRoutesData['select-sample-1'],
path: 'select-sample-1'
},
{
component: SelectSample2Component,
data: dataEntriesRoutesData['select-sample-2'],
path: 'select-sample-2'
},
{
component: SelectSample4Component,
data: dataEntriesRoutesData['select-sample-4'],
path: 'select-sample-4'
},
{
component: SelectStylingComponent,
data: dataEntriesRoutesData['select-styling'],
path: 'select-styling'
},
{
component: SelectTailwindStylingComponent,
data: dataEntriesRoutesData['select-tailwind-styling'],
path: 'select-tailwind-styling'
},
{
component: SelectInputDirectivesComponent,
data: dataEntriesRoutesData['select-input-directives'],
path: 'select-input-directives'
},
{
component: SelectHeaderFooterComponent,
data: dataEntriesRoutesData['select-header-footer'],
path: 'select-header-footer'
},
{
component: InputTextSelectionComponent,
data: dataEntriesRoutesData['input-text-selection'],
path: 'input-text-selection'
},
{
component: TypedFormComponent,
data: dataEntriesRoutesData['typed-form'],
path: 'typed-form'
},
{
component: TemplateDrivenFormValidationComponent,
data: dataEntriesRoutesData['template-driven-form-validation'],
path: 'template-driven-form-validation'
},
{
component: ReactiveFormValidationComponent,
data: dataEntriesRoutesData['reactive-form-validation'],
path: 'reactive-form-validation'
},
{
component: ReactiveFormCustomValidationComponent,
data: dataEntriesRoutesData['reactive-form-custom-validation'],
path: 'reactive-form-custom-validation'
}
];