-
Notifications
You must be signed in to change notification settings - Fork 0
/
documentation.json
3274 lines (3274 loc) · 212 KB
/
documentation.json
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
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"pipes": [],
"interfaces": [],
"injectables": [
{
"name": "WISEDialogService",
"id": "injectable-WISEDialogService-6b11e3b6af9b7d38d46a710f25150e25f464b6bf71d946b1f02563fde0d995266163238651200ce359ff87bc1f12333a3bd63b8283562f3709af92be0d71f641",
"file": "src/app/shared/components/actions/dialog/dialog.service.ts",
"properties": [
{
"name": "DIALOG_TITLE_PREFIX",
"defaultValue": "'wise-dialog-title-'",
"deprecated": false,
"deprecationMessage": "",
"type": "string",
"optional": false,
"description": "",
"line": 26
},
{
"name": "dialogRefs",
"defaultValue": "[]",
"deprecated": false,
"deprecationMessage": "",
"type": "ComponentRef<WISEDialog>[]",
"optional": false,
"description": "<p>A list of all open dialogs</p>\n",
"line": 30,
"rawdescription": "\n\nA list of all open dialogs\n"
}
],
"methods": [
{
"name": "closeAll",
"args": [],
"optional": false,
"returnType": "void",
"typeParameters": [],
"line": 68,
"deprecated": false,
"deprecationMessage": "",
"rawdescription": "\n\nCloses all open dialogs.\n",
"description": "<p>Closes all open dialogs.</p>\n"
},
{
"name": "initializeDialogConfig",
"args": [
{
"name": "dialogConfig",
"type": "WISEDialogConfig | undefined",
"deprecated": false,
"deprecationMessage": ""
}
],
"optional": false,
"returnType": "WISEDialogConfig",
"typeParameters": [],
"line": 56,
"deprecated": false,
"deprecationMessage": "",
"modifierKind": [
121
],
"jsdoctags": [
{
"name": "dialogConfig",
"type": "WISEDialogConfig | undefined",
"deprecated": false,
"deprecationMessage": "",
"tagName": {
"text": "param"
}
}
]
},
{
"name": "open",
"args": [
{
"name": "component",
"type": "Type<T>",
"deprecated": false,
"deprecationMessage": ""
},
{
"name": "dialogConfig",
"type": "WISEDialogConfig",
"deprecated": false,
"deprecationMessage": "",
"optional": true
}
],
"optional": false,
"returnType": "ComponentRef<WISEDialog>",
"typeParameters": [
"T"
],
"line": 38,
"deprecated": false,
"deprecationMessage": "",
"rawdescription": "\n\nOpens a dialog with the specified component and configuration.\n",
"description": "<p>Opens a dialog with the specified component and configuration.</p>\n",
"jsdoctags": [
{
"name": {
"pos": 715,
"end": 724,
"flags": 8421376,
"modifierFlagsCache": 0,
"transformFlags": 0,
"kind": 79,
"escapedText": "component"
},
"type": "Type<T>",
"deprecated": false,
"deprecationMessage": "",
"tagName": {
"pos": 699,
"end": 704,
"flags": 8421376,
"modifierFlagsCache": 0,
"transformFlags": 0,
"kind": 79,
"escapedText": "param"
},
"comment": "<p>The component to display in the dialog.</p>\n",
"typeExpression": {
"pos": 705,
"end": 714,
"flags": 8421376,
"modifierFlagsCache": 0,
"transformFlags": 0,
"kind": 312,
"type": {
"pos": 706,
"end": 713,
"flags": 8388608,
"modifierFlagsCache": 0,
"transformFlags": 1,
"kind": 180,
"typeName": {
"pos": 706,
"end": 710,
"flags": 8388608,
"modifierFlagsCache": 0,
"transformFlags": 0,
"kind": 79,
"escapedText": "Type"
},
"typeArguments": [
{
"pos": 711,
"end": 712,
"flags": 8388608,
"modifierFlagsCache": 0,
"transformFlags": 1,
"kind": 180,
"typeName": {
"pos": 711,
"end": 712,
"flags": 8388608,
"modifierFlagsCache": 0,
"transformFlags": 0,
"kind": 79,
"escapedText": "T"
}
}
]
}
}
},
{
"name": {
"pos": 796,
"end": 808,
"flags": 8421376,
"modifierFlagsCache": 0,
"transformFlags": 0,
"kind": 79,
"escapedText": "dialogConfig"
},
"type": "WISEDialogConfig",
"deprecated": false,
"deprecationMessage": "",
"optional": true,
"tagName": {
"pos": 771,
"end": 776,
"flags": 8421376,
"modifierFlagsCache": 0,
"transformFlags": 0,
"kind": 79,
"escapedText": "param"
},
"comment": "<p>Configuration options for the dialog.</p>\n",
"typeExpression": {
"pos": 777,
"end": 795,
"flags": 8421376,
"modifierFlagsCache": 0,
"transformFlags": 0,
"kind": 312,
"type": {
"pos": 778,
"end": 794,
"flags": 8388608,
"modifierFlagsCache": 0,
"transformFlags": 1,
"kind": 180,
"typeName": {
"pos": 778,
"end": 794,
"flags": 8388608,
"modifierFlagsCache": 0,
"transformFlags": 0,
"kind": 79,
"escapedText": "WISEDialogConfig"
}
}
}
},
{
"tagName": {
"pos": 853,
"end": 860,
"flags": 8421376,
"modifierFlagsCache": 0,
"transformFlags": 0,
"kind": 79,
"escapedText": "returns"
},
"comment": "<p>Reference to the newly opened dialog component.</p>\n",
"returnType": ""
}
]
}
],
"deprecated": false,
"deprecationMessage": "",
"description": "<p>Service to open WISE modal dialogs.</p>\n",
"rawdescription": "\n\nService to open WISE modal dialogs.\n",
"sourceCode": "import {\n ApplicationRef,\n ComponentRef,\n EmbeddedViewRef,\n EnvironmentInjector,\n Injectable,\n Injector,\n Type,\n createComponent,\n} from '@angular/core';\nimport { WISEDialog } from './dialog.component';\nimport { WISEDialogConfig } from './dialogConfig';\n\n/**\n * Service to open WISE modal dialogs.\n */\n@Injectable({\n providedIn: 'root',\n})\nexport class WISEDialogService {\n constructor(\n private injector: Injector,\n private appRef: ApplicationRef,\n ) {}\n\n DIALOG_TITLE_PREFIX: string = 'wise-dialog-title-';\n /**\n * A list of all open dialogs\n */\n dialogRefs: ComponentRef<WISEDialog>[] = [];\n\n /**\n * Opens a dialog with the specified component and configuration.\n * @param {Type<T>} component The component to display in the dialog.\n * @param {WISEDialogConfig} dialogConfig Configuration options for the dialog.\n * @returns {ComponentRef<WISEDialog>} Reference to the newly opened dialog component.\n */\n open<T>(component: Type<T>, dialogConfig?: WISEDialogConfig): ComponentRef<WISEDialog> {\n const dialogRef = createComponent(WISEDialog, {\n environmentInjector: this.injector as EnvironmentInjector,\n });\n this.appRef.attachView(dialogRef.hostView);\n const domElem = (dialogRef.hostView as EmbeddedViewRef<any>).rootNodes[0] as HTMLElement;\n document.body.appendChild(domElem);\n dialogRef.changeDetectorRef.detectChanges();\n dialogRef.instance.open(component, this.initializeDialogConfig(dialogConfig));\n this.dialogRefs.push(dialogRef);\n dialogRef.instance.dialogClosed.subscribe(() => {\n this.appRef.detachView(dialogRef.hostView);\n this.dialogRefs = this.dialogRefs.filter((ref) => ref !== dialogRef);\n dialogRef.destroy();\n });\n return dialogRef;\n }\n\n private initializeDialogConfig(dialogConfig: WISEDialogConfig | undefined) {\n let config: WISEDialogConfig = new WISEDialogConfig();\n config = { ...config, ...dialogConfig };\n if (!config.ariaLabelledBy && !config.ariaLabel) {\n config.ariaLabelledBy = this.DIALOG_TITLE_PREFIX + this.dialogRefs.length;\n }\n return config;\n }\n\n /**\n * Closes all open dialogs.\n */\n closeAll(): void {\n this.dialogRefs.forEach((dialogRef) => {\n dialogRef.instance.dialog.nativeElement.close();\n });\n }\n}\n",
"constructorObj": {
"name": "constructor",
"description": "",
"deprecated": false,
"deprecationMessage": "",
"args": [
{
"name": "injector",
"type": "Injector",
"deprecated": false,
"deprecationMessage": ""
},
{
"name": "appRef",
"type": "ApplicationRef",
"deprecated": false,
"deprecationMessage": ""
}
],
"line": 20,
"jsdoctags": [
{
"name": "injector",
"type": "Injector",
"deprecated": false,
"deprecationMessage": "",
"tagName": {
"text": "param"
}
},
{
"name": "appRef",
"type": "ApplicationRef",
"deprecated": false,
"deprecationMessage": "",
"tagName": {
"text": "param"
}
}
]
},
"type": "injectable"
}
],
"guards": [],
"interceptors": [],
"classes": [
{
"name": "WISEDialogConfig",
"id": "class-WISEDialogConfig-14689437a0b0fa1a2d4bec4ef8338b35a5084067cd277ff263b88eeecf318fc61900cd8ed996134b54e6b739c8e6f9d0dbad00427e50fbaf798777bd93b3de97",
"file": "src/app/shared/components/actions/dialog/dialogConfig.ts",
"deprecated": false,
"deprecationMessage": "",
"type": "class",
"sourceCode": "export class WISEDialogConfig {\n /**\n * ID of the element that describes the dialog.\n */\n ariaDescribedBy?: string | null = null;\n /**\n * ARIA label to assign to the dialog element.\n */\n ariaLabel?: string | null = null;\n /**\n * ID of the element that labels the dialog. If not set, `wise-dialog-title` will be used (if present).\n * Will be ignored if `ariaLabel` is set.\n */\n ariaLabelledBy?: string | null = null;\n /**\n * Whether the dialog is a modal dialog. Used to set the `aria-modal` attribute.\n */\n ariaModal?: boolean = true;\n /**\n * Whether the dialog should close when the backdrop is clicked.\n */\n closeOnBackdropClick?: boolean = true;\n /**\n * Whether the dialog should close when the escape key is pressed.\n */\n closeOnEscape?: boolean = true;\n /**\n * Data to be passed to the dialog content component.\n */\n data?: any = null;\n /**\n * The position of the dialog on the screen.\n */\n position?: 'top' | 'bottom' | 'middle' = 'middle';\n /**\n * The ARIA role of the dialog.\n */\n role?: 'dialog' | 'alertdialog' = 'dialog';\n /**\n * The width of the dialog.\n */\n width?: 'sm' | 'md' | 'lg' | 'xl' = 'sm';\n}\n",
"properties": [
{
"name": "ariaDescribedBy",
"defaultValue": "null",
"deprecated": false,
"deprecationMessage": "",
"type": "string | null",
"optional": true,
"description": "<p>ID of the element that describes the dialog.</p>\n",
"line": 8,
"rawdescription": "\n\nID of the element that describes the dialog.\n"
},
{
"name": "ariaLabel",
"defaultValue": "null",
"deprecated": false,
"deprecationMessage": "",
"type": "string | null",
"optional": true,
"description": "<p>ARIA label to assign to the dialog element.</p>\n",
"line": 12,
"rawdescription": "\n\nARIA label to assign to the dialog element.\n"
},
{
"name": "ariaLabelledBy",
"defaultValue": "null",
"deprecated": false,
"deprecationMessage": "",
"type": "string | null",
"optional": true,
"description": "<p>ID of the element that labels the dialog. If not set, <code>wise-dialog-title</code> will be used (if present).\nWill be ignored if <code>ariaLabel</code> is set.</p>\n",
"line": 17,
"rawdescription": "\n\nID of the element that labels the dialog. If not set, `wise-dialog-title` will be used (if present).\nWill be ignored if `ariaLabel` is set.\n"
},
{
"name": "ariaModal",
"defaultValue": "true",
"deprecated": false,
"deprecationMessage": "",
"type": "boolean",
"optional": true,
"description": "<p>Whether the dialog is a modal dialog. Used to set the <code>aria-modal</code> attribute.</p>\n",
"line": 21,
"rawdescription": "\n\nWhether the dialog is a modal dialog. Used to set the `aria-modal` attribute.\n"
},
{
"name": "closeOnBackdropClick",
"defaultValue": "true",
"deprecated": false,
"deprecationMessage": "",
"type": "boolean",
"optional": true,
"description": "<p>Whether the dialog should close when the backdrop is clicked.</p>\n",
"line": 25,
"rawdescription": "\n\nWhether the dialog should close when the backdrop is clicked.\n"
},
{
"name": "closeOnEscape",
"defaultValue": "true",
"deprecated": false,
"deprecationMessage": "",
"type": "boolean",
"optional": true,
"description": "<p>Whether the dialog should close when the escape key is pressed.</p>\n",
"line": 29,
"rawdescription": "\n\nWhether the dialog should close when the escape key is pressed.\n"
},
{
"name": "data",
"defaultValue": "null",
"deprecated": false,
"deprecationMessage": "",
"type": "any",
"optional": true,
"description": "<p>Data to be passed to the dialog content component.</p>\n",
"line": 33,
"rawdescription": "\n\nData to be passed to the dialog content component.\n"
},
{
"name": "position",
"defaultValue": "'middle'",
"deprecated": false,
"deprecationMessage": "",
"type": "\"top\" | \"bottom\" | \"middle\"",
"optional": true,
"description": "<p>The position of the dialog on the screen.</p>\n",
"line": 37,
"rawdescription": "\n\nThe position of the dialog on the screen.\n"
},
{
"name": "role",
"defaultValue": "'dialog'",
"deprecated": false,
"deprecationMessage": "",
"type": "\"dialog\" | \"alertdialog\"",
"optional": true,
"description": "<p>The ARIA role of the dialog.</p>\n",
"line": 41,
"rawdescription": "\n\nThe ARIA role of the dialog.\n"
},
{
"name": "width",
"defaultValue": "'sm'",
"deprecated": false,
"deprecationMessage": "",
"type": "\"sm\" | \"md\" | \"lg\" | \"xl\"",
"optional": true,
"description": "<p>The width of the dialog.</p>\n",
"line": 45,
"rawdescription": "\n\nThe width of the dialog.\n"
}
],
"description": "<p>Configuration for a WISE dialog.</p>\n",
"rawdescription": "\n\nConfiguration for a WISE dialog.\n",
"methods": [],
"indexSignatures": [],
"inputsClass": [],
"outputsClass": [],
"hostBindings": [],
"hostListeners": []
}
],
"directives": [],
"components": [
{
"name": "AppComponent",
"id": "component-AppComponent-1069e02ade1561c8d7015a8731c3cd5dd7e308818bf983fb0863f4d1659cccdc57e09ed1392724b36ed7336b2f36527d2e517d21daa4cfe9945e0aac869a417e",
"file": "src/app/app.component.ts",
"encapsulation": [],
"entryComponents": [],
"inputs": [],
"outputs": [],
"providers": [],
"selector": "app-root",
"styleUrls": [
"./app.component.css"
],
"styles": [],
"templateUrl": [
"./app.component.html"
],
"viewProviders": [],
"hostDirectives": [],
"inputsClass": [],
"outputsClass": [],
"propertiesClass": [
{
"name": "title",
"defaultValue": "'wise-design-daisyui'",
"deprecated": false,
"deprecationMessage": "",
"type": "string",
"optional": false,
"description": "",
"line": 10
}
],
"methodsClass": [],
"deprecated": false,
"deprecationMessage": "",
"hostBindings": [],
"hostListeners": [],
"standalone": true,
"imports": [],
"description": "",
"rawdescription": "\n",
"type": "component",
"sourceCode": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-root',\n templateUrl: './app.component.html',\n styleUrls: ['./app.component.css'],\n standalone: true\n})\nexport class AppComponent {\n title = 'wise-design-daisyui';\n}\n",
"assetsDirs": [],
"styleUrlsData": [
{
"data": "",
"styleUrl": "./app.component.css"
}
],
"stylesData": "",
"templateData": "<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->\n<!-- * * * * * * * * * * * The content below * * * * * * * * * * * -->\n<!-- * * * * * * * * * * is only a placeholder * * * * * * * * * * -->\n<!-- * * * * * * * * * * and can be replaced. * * * * * * * * * * * -->\n<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->\n<!-- * * * * * * * * * Delete the template below * * * * * * * * * * -->\n<!-- * * * * * * * to get started with your project! * * * * * * * * -->\n<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->\n\n<style>\n :host {\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto,\n Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\",\n \"Segoe UI Symbol\";\n font-size: 14px;\n color: #333;\n box-sizing: border-box;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n }\n\n h1,\n h2,\n h3,\n h4,\n h5,\n h6 {\n margin: 8px 0;\n }\n\n p {\n margin: 0;\n }\n\n .spacer {\n flex: 1;\n }\n\n .toolbar {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n height: 60px;\n display: flex;\n align-items: center;\n background-color: #1976d2;\n color: white;\n font-weight: 600;\n }\n\n .toolbar img {\n margin: 0 16px;\n }\n\n .toolbar #twitter-logo {\n height: 40px;\n margin: 0 8px;\n }\n\n .toolbar #youtube-logo {\n height: 40px;\n margin: 0 16px;\n }\n\n .toolbar #twitter-logo:hover,\n .toolbar #youtube-logo:hover {\n opacity: 0.8;\n }\n\n .content {\n display: flex;\n margin: 82px auto 32px;\n padding: 0 16px;\n max-width: 960px;\n flex-direction: column;\n align-items: center;\n }\n\n svg.material-icons {\n height: 24px;\n width: auto;\n }\n\n svg.material-icons:not(:last-child) {\n margin-right: 8px;\n }\n\n .card svg.material-icons path {\n fill: #888;\n }\n\n .card-container {\n display: flex;\n flex-wrap: wrap;\n justify-content: center;\n margin-top: 16px;\n }\n\n .card {\n all: unset;\n border-radius: 4px;\n border: 1px solid #eee;\n background-color: #fafafa;\n height: 40px;\n width: 200px;\n margin: 0 8px 16px;\n padding: 16px;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n transition: all 0.2s ease-in-out;\n line-height: 24px;\n }\n\n .card-container .card:not(:last-child) {\n margin-right: 0;\n }\n\n .card.card-small {\n height: 16px;\n width: 168px;\n }\n\n .card-container .card:not(.highlight-card) {\n cursor: pointer;\n }\n\n .card-container .card:not(.highlight-card):hover {\n transform: translateY(-3px);\n box-shadow: 0 4px 17px rgba(0, 0, 0, 0.35);\n }\n\n .card-container .card:not(.highlight-card):hover .material-icons path {\n fill: rgb(105, 103, 103);\n }\n\n .card.highlight-card {\n background-color: #1976d2;\n color: white;\n font-weight: 600;\n border: none;\n width: auto;\n min-width: 30%;\n position: relative;\n }\n\n .card.card.highlight-card span {\n margin-left: 60px;\n }\n\n svg#rocket {\n width: 80px;\n position: absolute;\n left: -10px;\n top: -24px;\n }\n\n svg#rocket-smoke {\n height: calc(100vh - 95px);\n position: absolute;\n top: 10px;\n right: 180px;\n z-index: -10;\n }\n\n a,\n a:visited,\n a:hover {\n color: #1976d2;\n text-decoration: none;\n }\n\n a:hover {\n color: #125699;\n }\n\n .terminal {\n position: relative;\n width: 80%;\n max-width: 600px;\n border-radius: 6px;\n padding-top: 45px;\n margin-top: 8px;\n overflow: hidden;\n background-color: rgb(15, 15, 16);\n }\n\n .terminal::before {\n content: \"\\2022 \\2022 \\2022\";\n position: absolute;\n top: 0;\n left: 0;\n height: 4px;\n background: rgb(58, 58, 58);\n color: #c2c3c4;\n width: 100%;\n font-size: 2rem;\n line-height: 0;\n padding: 14px 0;\n text-indent: 4px;\n }\n\n .terminal pre {\n font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;\n color: white;\n padding: 0 1rem 1rem;\n margin: 0;\n }\n\n .circle-link {\n height: 40px;\n width: 40px;\n border-radius: 40px;\n margin: 8px;\n background-color: white;\n border: 1px solid #eeeeee;\n display: flex;\n justify-content: center;\n align-items: center;\n cursor: pointer;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);\n transition: 1s ease-out;\n }\n\n .circle-link:hover {\n transform: translateY(-0.25rem);\n box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);\n }\n\n footer {\n margin-top: 8px;\n display: flex;\n align-items: center;\n line-height: 20px;\n }\n\n footer a {\n display: flex;\n align-items: center;\n }\n\n .github-star-badge {\n color: #24292e;\n display: flex;\n align-items: center;\n font-size: 12px;\n padding: 3px 10px;\n border: 1px solid rgba(27, 31, 35, 0.2);\n border-radius: 3px;\n background-image: linear-gradient(-180deg, #fafbfc, #eff3f6 90%);\n margin-left: 4px;\n font-weight: 600;\n }\n\n .github-star-badge:hover {\n background-image: linear-gradient(-180deg, #f0f3f6, #e6ebf1 90%);\n border-color: rgba(27, 31, 35, 0.35);\n background-position: -0.5em;\n }\n\n .github-star-badge .material-icons {\n height: 16px;\n width: 16px;\n margin-right: 4px;\n }\n\n svg#clouds {\n position: fixed;\n bottom: -160px;\n left: -230px;\n z-index: -10;\n width: 1920px;\n }\n\n /* Responsive Styles */\n @media screen and (max-width: 767px) {\n .card-container > *:not(.circle-link),\n .terminal {\n width: 100%;\n }\n\n .card:not(.highlight-card) {\n height: 16px;\n margin: 8px 0;\n }\n\n .card.highlight-card span {\n margin-left: 72px;\n }\n\n svg#rocket-smoke {\n right: 120px;\n transform: rotate(-5deg);\n }\n }\n\n @media screen and (max-width: 575px) {\n svg#rocket-smoke {\n display: none;\n visibility: hidden;\n }\n }\n</style>\n\n<!-- Toolbar -->\n<div class=\"toolbar\" role=\"banner\">\n <img\n width=\"40\"\n alt=\"Angular Logo\"\n src=\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNTAgMjUwIj4KICAgIDxwYXRoIGZpbGw9IiNERDAwMzEiIGQ9Ik0xMjUgMzBMMzEuOSA2My4ybDE0LjIgMTIzLjFMMTI1IDIzMGw3OC45LTQzLjcgMTQuMi0xMjMuMXoiIC8+CiAgICA8cGF0aCBmaWxsPSIjQzMwMDJGIiBkPSJNMTI1IDMwdjIyLjItLjFWMjMwbDc4LjktNDMuNyAxNC4yLTEyMy4xTDEyNSAzMHoiIC8+CiAgICA8cGF0aCAgZmlsbD0iI0ZGRkZGRiIgZD0iTTEyNSA1Mi4xTDY2LjggMTgyLjZoMjEuN2wxMS43LTI5LjJoNDkuNGwxMS43IDI5LjJIMTgzTDEyNSA1Mi4xem0xNyA4My4zaC0zNGwxNy00MC45IDE3IDQwLjl6IiAvPgogIDwvc3ZnPg==\"\n />\n <span>Welcome</span>\n <div class=\"spacer\"></div>\n <a\n aria-label=\"Angular on twitter\"\n target=\"_blank\"\n rel=\"noopener\"\n href=\"https://twitter.com/angular\"\n title=\"Twitter\"\n >\n <svg\n id=\"twitter-logo\"\n height=\"24\"\n data-name=\"Logo\"\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 400 400\"\n >\n <rect width=\"400\" height=\"400\" fill=\"none\" />\n <path\n d=\"M153.62,301.59c94.34,0,145.94-78.16,145.94-145.94,0-2.22,0-4.43-.15-6.63A104.36,104.36,0,0,0,325,122.47a102.38,102.38,0,0,1-29.46,8.07,51.47,51.47,0,0,0,22.55-28.37,102.79,102.79,0,0,1-32.57,12.45,51.34,51.34,0,0,0-87.41,46.78A145.62,145.62,0,0,1,92.4,107.81a51.33,51.33,0,0,0,15.88,68.47A50.91,50.91,0,0,1,85,169.86c0,.21,0,.43,0,.65a51.31,51.31,0,0,0,41.15,50.28,51.21,51.21,0,0,1-23.16.88,51.35,51.35,0,0,0,47.92,35.62,102.92,102.92,0,0,1-63.7,22A104.41,104.41,0,0,1,75,278.55a145.21,145.21,0,0,0,78.62,23\"\n fill=\"#fff\"\n />\n </svg>\n </a>\n <a\n aria-label=\"Angular on YouTube\"\n target=\"_blank\"\n rel=\"noopener\"\n href=\"https://youtube.com/angular\"\n title=\"YouTube\"\n >\n <svg\n id=\"youtube-logo\"\n height=\"24\"\n width=\"24\"\n data-name=\"Logo\"\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n fill=\"#fff\"\n >\n <path d=\"M0 0h24v24H0V0z\" fill=\"none\" />\n <path\n d=\"M21.58 7.19c-.23-.86-.91-1.54-1.77-1.77C18.25 5 12 5 12 5s-6.25 0-7.81.42c-.86.23-1.54.91-1.77 1.77C2 8.75 2 12 2 12s0 3.25.42 4.81c.23.86.91 1.54 1.77 1.77C5.75 19 12 19 12 19s6.25 0 7.81-.42c.86-.23 1.54-.91 1.77-1.77C22 15.25 22 12 22 12s0-3.25-.42-4.81zM10 15V9l5.2 3-5.2 3z\"\n />\n </svg>\n </a>\n</div>\n\n<div class=\"content\" role=\"main\">\n <!-- Highlight Card -->\n <div class=\"card highlight-card card-small\">\n <svg\n id=\"rocket\"\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"101.678\"\n height=\"101.678\"\n viewBox=\"0 0 101.678 101.678\"\n >\n <title>Rocket Ship</title>\n <g id=\"Group_83\" data-name=\"Group 83\" transform=\"translate(-141 -696)\">\n <circle\n id=\"Ellipse_8\"\n data-name=\"Ellipse 8\"\n cx=\"50.839\"\n cy=\"50.839\"\n r=\"50.839\"\n transform=\"translate(141 696)\"\n fill=\"#dd0031\"\n />\n <g\n id=\"Group_47\"\n data-name=\"Group 47\"\n transform=\"translate(165.185 720.185)\"\n >\n <path\n id=\"Path_33\"\n data-name=\"Path 33\"\n d=\"M3.4,42.615a3.084,3.084,0,0,0,3.553,3.553,21.419,21.419,0,0,0,12.215-6.107L9.511,30.4A21.419,21.419,0,0,0,3.4,42.615Z\"\n transform=\"translate(0.371 3.363)\"\n fill=\"#fff\"\n />\n <path\n id=\"Path_34\"\n data-name=\"Path 34\"\n d=\"M53.3,3.221A3.09,3.09,0,0,0,50.081,0,48.227,48.227,0,0,0,18.322,13.437c-6-1.666-14.991-1.221-18.322,7.218A33.892,33.892,0,0,1,9.439,25.1l-.333.666a3.013,3.013,0,0,0,.555,3.553L23.985,43.641a2.9,2.9,0,0,0,3.553.555l.666-.333A33.892,33.892,0,0,1,32.647,53.3c8.55-3.664,8.884-12.326,7.218-18.322A48.227,48.227,0,0,0,53.3,3.221ZM34.424,9.772a6.439,6.439,0,1,1,9.106,9.106,6.368,6.368,0,0,1-9.106,0A6.467,6.467,0,0,1,34.424,9.772Z\"\n transform=\"translate(0 0.005)\"\n fill=\"#fff\"\n />\n </g>\n </g>\n </svg>\n\n <span>{{ title }} app is running!</span>\n\n <svg\n id=\"rocket-smoke\"\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"516.119\"\n height=\"1083.632\"\n viewBox=\"0 0 516.119 1083.632\"\n >\n <title>Rocket Ship Smoke</title>\n <path\n id=\"Path_40\"\n data-name=\"Path 40\"\n d=\"M644.6,141S143.02,215.537,147.049,870.207s342.774,201.755,342.774,201.755S404.659,847.213,388.815,762.2c-27.116-145.51-11.551-384.124,271.9-609.1C671.15,139.365,644.6,141,644.6,141Z\"\n transform=\"translate(-147.025 -140.939)\"\n fill=\"#f5f5f5\"\n />\n </svg>\n </div>\n\n <!-- Resources -->\n <h2>Resources</h2>\n <p>Here are some links to help you get started:</p>\n\n <div class=\"card-container\">\n <a\n class=\"card\"\n target=\"_blank\"\n rel=\"noopener\"\n href=\"https://angular.io/tutorial\"\n >\n <svg\n class=\"material-icons\"\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n >\n <path\n d=\"M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82zM12 3L1 9l11 6 9-4.91V17h2V9L12 3z\"\n />\n </svg>\n <span>Learn Angular</span>\n <svg\n class=\"material-icons\"\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n >\n <path d=\"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z\" />\n </svg>\n </a>\n\n <a\n class=\"card\"\n target=\"_blank\"\n rel=\"noopener\"\n href=\"https://angular.io/cli\"\n >\n <svg\n class=\"material-icons\"\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n >\n <path\n d=\"M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z\"\n />\n </svg>\n <span>CLI Documentation</span>\n <svg\n class=\"material-icons\"\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n >\n <path d=\"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z\" />\n </svg>\n </a>\n\n <a\n class=\"card\"\n target=\"_blank\"\n rel=\"noopener\"\n href=\"https://material.angular.io\"\n >\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n style=\"margin-right: 8px\"\n width=\"21.813\"\n height=\"23.453\"\n viewBox=\"0 0 179.2 192.7\"\n >\n <path\n fill=\"#ffa726\"\n d=\"M89.4 0 0 32l13.5 118.4 75.9 42.3 76-42.3L179.2 32 89.4 0z\"\n />\n <path fill=\"#fb8c00\" d=\"M89.4 0v192.7l76-42.3L179.2 32 89.4 0z\" />\n <path\n fill=\"#ffe0b2\"\n d=\"m102.9 146.3-63.3-30.5 36.3-22.4 63.7 30.6-36.7 22.3z\"\n />\n <path\n fill=\"#fff3e0\"\n d=\"M102.9 122.8 39.6 92.2l36.3-22.3 63.7 30.6-36.7 22.3z\"\n />\n <path\n fill=\"#fff\"\n d=\"M102.9 99.3 39.6 68.7l36.3-22.4 63.7 30.6-36.7 22.4z\"\n />\n </svg>\n <span>Angular Material</span>\n <svg\n class=\"material-icons\"\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n >\n <path d=\"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z\" />\n </svg>\n </a>\n\n <a\n class=\"card\"\n target=\"_blank\"\n rel=\"noopener\"\n href=\"https://blog.angular.io/\"\n >\n <svg\n class=\"material-icons\"\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n >\n <path\n d=\"M13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM11.71 19c-1.78 0-3.22-1.4-3.22-3.14 0-1.62 1.05-2.76 2.81-3.12 1.77-.36 3.6-1.21 4.62-2.58.39 1.29.59 2.65.59 4.04 0 2.65-2.15 4.8-4.8 4.8z\"\n />\n </svg>\n <span>Angular Blog</span>\n <svg\n class=\"material-icons\"\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n >\n <path d=\"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z\" />\n </svg>\n </a>\n\n <a\n class=\"card\"\n target=\"_blank\"\n rel=\"noopener\"\n href=\"https://angular.io/devtools/\"\n >\n <svg\n class=\"material-icons\"\n xmlns=\"http://www.w3.org/2000/svg\"\n enable-background=\"new 0 0 24 24\"\n height=\"24px\"\n viewBox=\"0 0 24 24\"\n width=\"24px\"\n fill=\"#000000\"\n >\n <g><rect fill=\"none\" height=\"24\" width=\"24\" /></g>\n <g>\n <g>\n <path\n d=\"M14.73,13.31C15.52,12.24,16,10.93,16,9.5C16,5.91,13.09,3,9.5,3S3,5.91,3,9.5C3,13.09,5.91,16,9.5,16 c1.43,0,2.74-0.48,3.81-1.27L19.59,21L21,19.59L14.73,13.31z M9.5,14C7.01,14,5,11.99,5,9.5S7.01,5,9.5,5S14,7.01,14,9.5 S11.99,14,9.5,14z\"\n />\n <polygon\n points=\"10.29,8.44 9.5,6 8.71,8.44 6.25,8.44 8.26,10.03 7.49,12.5 9.5,10.97 11.51,12.5 10.74,10.03 12.75,8.44\"\n />\n </g>\n </g>\n </svg>\n <span>Angular DevTools</span>\n <svg\n class=\"material-icons\"\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n >\n <path d=\"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z\" />\n </svg>\n </a>\n </div>\n\n <!-- Next Steps -->\n <h2>Next Steps</h2>\n <p>What do you want to do next with your app?</p>\n\n <input type=\"hidden\" #selection />\n\n <div class=\"card-container\">\n <button\n class=\"card card-small\"\n (click)=\"selection.value = 'component'\"\n tabindex=\"0\"\n >\n <svg\n class=\"material-icons\"\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n >\n <path d=\"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z\" />\n </svg>\n <span>New Component</span>\n </button>\n\n <button\n class=\"card card-small\"\n (click)=\"selection.value = 'material'\"\n tabindex=\"0\"\n >\n <svg\n class=\"material-icons\"\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n >\n <path d=\"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z\" />\n </svg>\n <span>Angular Material</span>\n </button>\n\n <button\n class=\"card card-small\"\n (click)=\"selection.value = 'pwa'\"\n tabindex=\"0\"\n >\n <svg\n class=\"material-icons\"\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n >\n <path d=\"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z\" />\n </svg>\n <span>Add PWA Support</span>\n </button>\n\n <button\n class=\"card card-small\"\n (click)=\"selection.value = 'dependency'\"\n tabindex=\"0\"\n >\n <svg\n class=\"material-icons\"\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n >\n <path d=\"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z\" />\n </svg>\n <span>Add Dependency</span>\n </button>\n\n <button\n class=\"card card-small\"\n (click)=\"selection.value = 'test'\"\n tabindex=\"0\"\n >\n <svg\n class=\"material-icons\"\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n >\n <path d=\"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z\" />\n </svg>\n <span>Run and Watch Tests</span>\n </button>\n\n <button\n class=\"card card-small\"\n (click)=\"selection.value = 'build'\"\n tabindex=\"0\"\n >\n <svg\n class=\"material-icons\"\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n >\n <path d=\"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z\" />\n </svg>\n <span>Build for Production</span>\n </button>\n </div>\n\n <!-- Terminal -->\n <div class=\"terminal\" [ngSwitch]=\"selection.value\">\n <pre *ngSwitchDefault>ng generate component xyz</pre>\n <pre *ngSwitchCase=\"'material'\">ng add @angular/material</pre>\n <pre *ngSwitchCase=\"'pwa'\">ng add @angular/pwa</pre>\n <pre *ngSwitchCase=\"'dependency'\">ng add _____</pre>\n <pre *ngSwitchCase=\"'test'\">ng test</pre>\n <pre *ngSwitchCase=\"'build'\">ng build</pre>\n </div>\n\n <!-- Links -->\n <div class=\"card-container\">\n <a\n class=\"circle-link\"\n title=\"Find a Local Meetup\"\n href=\"https://www.meetup.com/find/?keywords=angular\"\n target=\"_blank\"\n rel=\"noopener\"\n >\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"24.607\"\n height=\"23.447\"\n viewBox=\"0 0 24.607 23.447\"\n >\n <title>Meetup Logo</title>\n <path\n id=\"logo--mSwarm\"\n d=\"M21.221,14.95A4.393,4.393,0,0,1,17.6,19.281a4.452,4.452,0,0,1-.8.069c-.09,0-.125.035-.154.117a2.939,2.939,0,0,1-2.506,2.091,2.868,2.868,0,0,1-2.248-.624.168.168,0,0,0-.245-.005,3.926,3.926,0,0,1-2.589.741,4.015,4.015,0,0,1-3.7-3.347,2.7,2.7,0,0,1-.043-.38c0-.106-.042-.146-.143-.166a3.524,3.524,0,0,1-1.516-.69A3.623,3.623,0,0,1,2.23,14.557a3.66,3.66,0,0,1,1.077-3.085.138.138,0,0,0,.026-.2,3.348,3.348,0,0,1-.451-1.821,3.46,3.46,0,0,1,2.749-3.28.44.44,0,0,0,.355-.281,5.072,5.072,0,0,1,3.863-3,5.028,5.028,0,0,1,3.555.666.31.31,0,0,0,.271.03A4.5,4.5,0,0,1,18.3,4.7a4.4,4.4,0,0,1,1.334,2.751,3.658,3.658,0,0,1,.022.706.131.131,0,0,0,.1.157,2.432,2.432,0,0,1,1.574,1.645,2.464,2.464,0,0,1-.7,2.616c-.065.064-.051.1-.014.166A4.321,4.321,0,0,1,21.221,14.95ZM13.4,14.607a2.09,2.09,0,0,0,1.409,1.982,4.7,4.7,0,0,0,1.275.221,1.807,1.807,0,0,0,.9-.151.542.542,0,0,0,.321-.545.558.558,0,0,0-.359-.534,1.2,1.2,0,0,0-.254-.078c-.262-.047-.526-.086-.787-.138a.674.674,0,0,1-.617-.75,3.394,3.394,0,0,1,.218-1.109c.217-.658.509-1.286.79-1.918a15.609,15.609,0,0,0,.745-1.86,1.95,1.95,0,0,0,.06-1.073,1.286,1.286,0,0,0-1.051-1.033,1.977,1.977,0,0,0-1.521.2.339.339,0,0,1-.446-.042c-.1-.092-.2-.189-.307-.284a1.214,1.214,0,0,0-1.643-.061,7.563,7.563,0,0,1-.614.512A.588.588,0,0,1,10.883,8c-.215-.115-.437-.215-.659-.316a2.153,2.153,0,0,0-.695-.248A2.091,2.091,0,0,0,7.541,8.562a9.915,9.915,0,0,0-.405.986c-.559,1.545-1.015,3.123-1.487,4.7a1.528,1.528,0,0,0,.634,1.777,1.755,1.755,0,0,0,1.5.211,1.35,1.35,0,0,0,.824-.858c.543-1.281,1.032-2.584,1.55-3.875.142-.355.28-.712.432-1.064a.548.548,0,0,1,.851-.24.622.622,0,0,1,.185.539,2.161,2.161,0,0,1-.181.621c-.337.852-.68,1.7-1.018,2.552a2.564,2.564,0,0,0-.173.528.624.624,0,0,0,.333.71,1.073,1.073,0,0,0,.814.034,1.22,1.22,0,0,0,.657-.655q.758-1.488,1.511-2.978.35-.687.709-1.37a1.073,1.073,0,0,1,.357-.434.43.43,0,0,1,.463-.016.373.373,0,0,1,.153.387.7.7,0,0,1-.057.236c-.065.157-.127.316-.2.469-.42.883-.846,1.763-1.262,2.648A2.463,2.463,0,0,0,13.4,14.607Zm5.888,6.508a1.09,1.09,0,0,0-2.179.006,1.09,1.09,0,0,0,2.179-.006ZM1.028,12.139a1.038,1.038,0,1,0,.01-2.075,1.038,1.038,0,0,0-.01,2.075ZM13.782.528a1.027,1.027,0,1,0-.011,2.055A1.027,1.027,0,0,0,13.782.528ZM22.21,6.95a.882.882,0,0,0-1.763.011A.882.882,0,0,0,22.21,6.95ZM4.153,4.439a.785.785,0,1,0,.787-.78A.766.766,0,0,0,4.153,4.439Zm8.221,18.22a.676.676,0,1,0-.677.666A.671.671,0,0,0,12.374,22.658ZM22.872,12.2a.674.674,0,0,0-.665.665.656.656,0,0,0,.655.643.634.634,0,0,0,.655-.644A.654.654,0,0,0,22.872,12.2ZM7.171-.123A.546.546,0,0,0,6.613.43a.553.553,0,1,0,1.106,0A.539.539,0,0,0,7.171-.123ZM24.119,9.234a.507.507,0,0,0-.493.488.494.494,0,0,0,.494.494.48.48,0,0,0,.487-.483A.491.491,0,0,0,24.119,9.234Zm-19.454,9.7a.5.5,0,0,0-.488-.488.491.491,0,0,0-.487.5.483.483,0,0,0,.491.479A.49.49,0,0,0,4.665,18.936Z\"\n transform=\"translate(0 0.123)\"\n fill=\"#f64060\"\n />\n </svg>\n </a>\n\n <a\n class=\"circle-link\"\n title=\"Join the Conversation on Discord\"\n href=\"https://discord.gg/angular\"\n target=\"_blank\"\n rel=\"noopener\"\n >\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"26\"\n height=\"26\"\n viewBox=\"0 0 245 240\"\n >\n <title>Discord Logo</title>\n <path\n d=\"M104.4 103.9c-5.7 0-10.2 5-10.2 11.1s4.6 11.1 10.2 11.1c5.7 0 10.2-5 10.2-11.1.1-6.1-4.5-11.1-10.2-11.1zM140.9 103.9c-5.7 0-10.2 5-10.2 11.1s4.6 11.1 10.2 11.1c5.7 0 10.2-5 10.2-11.1s-4.5-11.1-10.2-11.1z\"\n />\n <path\n d=\"M189.5 20h-134C44.2 20 35 29.2 35 40.6v135.2c0 11.4 9.2 20.6 20.5 20.6h113.4l-5.3-18.5 12.8 11.9 12.1 11.2 21.5 19V40.6c0-11.4-9.2-20.6-20.5-20.6zm-38.6 130.6s-3.6-4.3-6.6-8.1c13.1-3.7 18.1-11.9 18.1-11.9-4.1 2.7-8 4.6-11.5 5.9-5 2.1-9.8 3.5-14.5 4.3-9.6 1.8-18.4 1.3-25.9-.1-5.7-1.1-10.6-2.7-14.7-4.3-2.3-.9-4.8-2-7.3-3.4-.3-.2-.6-.3-.9-.5-.2-.1-.3-.2-.4-.3-1.8-1-2.8-1.7-2.8-1.7s4.8 8 17.5 11.8c-3 3.8-6.7 8.3-6.7 8.3-22.1-.7-30.5-15.2-30.5-15.2 0-32.2 14.4-58.3 14.4-58.3 14.4-10.8 28.1-10.5 28.1-10.5l1 1.2c-18 5.2-26.3 13.1-26.3 13.1s2.2-1.2 5.9-2.9c10.7-4.7 19.2-6 22.7-6.3.6-.1 1.1-.2 1.7-.2 6.1-.8 13-1 20.2-.2 9.5 1.1 19.7 3.9 30.1 9.6 0 0-7.9-7.5-24.9-12.7l1.4-1.6s13.7-.3 28.1 10.5c0 0 14.4 26.1 14.4 58.3 0 0-8.5 14.5-30.6 15.2z\"\n />\n </svg>\n </a>\n </div>\n\n <!-- Footer -->\n <footer>\n Love Angular? \n <a href=\"https://github.com/angular/angular\" target=\"_blank\" rel=\"noopener\">\n Give our repo a star.\n <div class=\"github-star-badge\">\n <svg\n class=\"material-icons\"\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n >\n <path d=\"M0 0h24v24H0z\" fill=\"none\" />\n <path\n d=\"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z\"\n />\n </svg>\n Star\n </div>\n </a>\n <a href=\"https://github.com/angular/angular\" target=\"_blank\" rel=\"noopener\">\n <svg\n class=\"material-icons\"\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"24\"\n height=\"24\"\n viewBox=\"0 0 24 24\"\n >\n <path\n d=\"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z\"\n fill=\"#1976d2\"\n />\n <path d=\"M0 0h24v24H0z\" fill=\"none\" />\n </svg>\n </a>\n </footer>\n\n <svg\n id=\"clouds\"\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"2611.084\"\n height=\"485.677\"\n viewBox=\"0 0 2611.084 485.677\"\n >\n <title>Gray Clouds Background</title>\n <path\n id=\"Path_39\"\n data-name=\"Path 39\"\n d=\"M2379.709,863.793c10-93-77-171-168-149-52-114-225-105-264,15-75,3-140,59-152,133-30,2.83-66.725,9.829-93.5,26.25-26.771-16.421-63.5-23.42-93.5-26.25-12-74-77-130-152-133-39-120-212-129-264-15-54.084-13.075-106.753,9.173-138.488,48.9-31.734-39.726-84.4-61.974-138.487-48.9-52-114-225-105-264,15a162.027,162.027,0,0,0-103.147,43.044c-30.633-45.365-87.1-72.091-145.206-58.044-52-114-225-105-264,15-75,3-140,59-152,133-53,5-127,23-130,83-2,42,35,72,70,86,49,20,106,18,157,5a165.625,165.625,0,0,0,120,0c47,94,178,113,251,33,61.112,8.015,113.854-5.72,150.492-29.764a165.62,165.62,0,0,0,110.861-3.236c47,94,178,113,251,33,31.385,4.116,60.563,2.495,86.487-3.311,25.924,5.806,55.1,7.427,86.488,3.311,73,80,204,61,251-33a165.625,165.625,0,0,0,120,0c51,13,108,15,157-5a147.188,147.188,0,0,0,33.5-18.694,147.217,147.217,0,0,0,33.5,18.694c49,20,106,18,157,5a165.625,165.625,0,0,0,120,0c47,94,178,113,251,33C2446.709,1093.793,2554.709,922.793,2379.709,863.793Z\"\n transform=\"translate(142.69 -634.312)\"\n fill=\"#eee\"\n />\n </svg>\n</div>\n\n<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->\n<!-- * * * * * * * * * * * The content above * * * * * * * * * * * -->\n<!-- * * * * * * * * * * is only a placeholder * * * * * * * * * * -->\n<!-- * * * * * * * * * * and can be replaced. * * * * * * * * * * * -->\n<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->\n<!-- * * * * * * * * * * End of Placeholder * * * * * * * * * * * -->\n<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->\n"
},
{
"name": "BasicDialog",
"id": "component-BasicDialog-224448799491f7cd59ad2140e722b626337a3c31b1fc44a14abd4bd865207fc53f8ae9b1c9e48fb7436da1f4a902ffcbb943a21edc21c809c4a53f90e6812836",
"file": "src/app/docs/dialog/basic-dialog/basic-dialog.component.ts",
"encapsulation": [],
"entryComponents": [],
"inputs": [],
"outputs": [],
"providers": [],
"selector": "basic-dialog",
"styleUrls": [],
"styles": [],
"templateUrl": [
"./basic-dialog.component.html"
],
"viewProviders": [],
"hostDirectives": [],
"inputsClass": [],
"outputsClass": [],
"propertiesClass": [
{
"name": "color",
"defaultValue": "''",
"deprecated": false,
"deprecationMessage": "",
"type": "string",
"optional": false,
"description": "",
"line": 23,
"modifierKind": [
121
]
},
{
"name": "name",
"defaultValue": "''",
"deprecated": false,
"deprecationMessage": "",
"type": "string",
"optional": false,
"description": "",
"line": 22,
"modifierKind": [
121
]
},
{
"name": "width",
"defaultValue": "'sm'",
"deprecated": false,
"deprecationMessage": "",
"type": "string",
"optional": false,
"description": "",
"line": 24,
"modifierKind": [
121
]
}
],
"methodsClass": [
{
"name": "openDialog",
"args": [
{
"name": "width",
"type": "\"sm\" | \"md\" | \"lg\" | \"xl\"",
"deprecated": false,
"deprecationMessage": "",
"defaultValue": "'sm'"
}
],
"optional": false,
"returnType": "void",
"typeParameters": [],
"line": 26,
"deprecated": false,
"deprecationMessage": "",
"jsdoctags": [
{
"name": "width",
"type": "\"sm\" | \"md\" | \"lg\" | \"xl\"",
"deprecated": false,
"deprecationMessage": "",
"defaultValue": "'sm'",
"tagName": {
"text": "param"
}
}
]
}
],
"deprecated": false,
"deprecationMessage": "",
"hostBindings": [],
"hostListeners": [],
"standalone": true,
"imports": [
{
"name": "FormsModule",
"type": "module"
},
{
"name": "WISEButton"
}
],
"description": "",
"rawdescription": "\n",
"type": "component",
"sourceCode": "import { Component, ComponentRef, OnInit } from '@angular/core';\nimport { WISEButton } from 'src/app/shared/components/actions/button/button.component';\nimport { WISEDialogService } from 'src/app/shared/components/actions/dialog/dialog.service';\nimport { WISEDialogConfig } from 'src/app/shared/components/actions/dialog/dialogConfig';\nimport {\n WISEDialogActions,\n WISEDialogBody,\n WISEDialogContent,\n WISEDialogTitle,\n} from '../../../shared/components/actions/dialog/dialog-content-components';\nimport { FormsModule } from '@angular/forms';\n\n@Component({\n standalone: true,\n selector: 'basic-dialog',\n imports: [FormsModule, WISEButton],\n templateUrl: './basic-dialog.component.html',\n})\nexport class BasicDialog {\n constructor(private dialogService: WISEDialogService) {}\n\n private name: string = '';\n private color: string = '';\n private width: string = 'sm';\n\n openDialog(width: 'sm' | 'md' | 'lg' | 'xl' = 'sm'): void {\n const dialogConfig: WISEDialogConfig = {\n data: {\n name: this.name,\n color: this.color,\n },\n width: width,\n };\n let dialogRef = this.dialogService.open(BasicDialogContent, dialogConfig);\n dialogRef.instance.dialogClosed.subscribe((result: any) => {\n if (result) {\n this.color = result.color;\n this.width = width;\n }\n });\n }\n}\n\n@Component({\n standalone: true,\n imports: [FormsModule, WISEButton, WISEDialogActions, WISEDialogBody, WISEDialogTitle],\n templateUrl: './basic-dialog-content.html',\n})\nexport class BasicDialogContent extends WISEDialogContent implements OnInit {\n constructor() {\n super();\n }\n\n protected color: string = '';\n\n ngOnInit(): void {\n this.color = this.data.color;\n }\n\n submit(): void {\n this.callbackData = { color: this.color };\n this.dialog.close();\n }\n}\n",
"assetsDirs": [],
"styleUrlsData": "",
"stylesData": "",
"constructorObj": {
"name": "constructor",
"description": "",
"deprecated": false,
"deprecationMessage": "",
"args": [
{
"name": "dialogService",
"type": "WISEDialogService",
"deprecated": false,
"deprecationMessage": ""
}
],
"line": 19,
"jsdoctags": [
{
"name": "dialogService",
"type": "WISEDialogService",
"deprecated": false,
"deprecationMessage": "",
"tagName": {
"text": "param"
}
}
]
},
"templateData": "<ol>\n <li>\n <label class=\"form-control pb-2\">\n <div class=\"label\">\n <span class=\"label-text\">What is your name?</span>\n </div>\n <input type=\"text\" placeholder=\"Name\" class=\"input input-bordered\" [(ngModel)]=\"name\" />\n </label>\n </li>\n <li>\n Choose one:\n <div class=\"gap-2 flex flex-wrap py-2\">\n <button wise-button (click)=\"openDialog()\">Small Dialog</button>\n <button wise-button (click)=\"openDialog('md')\">Medium Dialog</button>\n <button wise-button (click)=\"openDialog('lg')\">Large Dialog</button>\n <button wise-button (click)=\"openDialog('xl')\">XL Dialog</button>\n </div>\n </li>\n @if (color) {\n <li>\n Favorite color: <b>{{ color }}</b> | Dialog size: <b>{{ width }}</b>\n </li>\n }\n</ol>\n"
},
{
"name": "BasicDialogContent",
"id": "component-BasicDialogContent-224448799491f7cd59ad2140e722b626337a3c31b1fc44a14abd4bd865207fc53f8ae9b1c9e48fb7436da1f4a902ffcbb943a21edc21c809c4a53f90e6812836",
"file": "src/app/docs/dialog/basic-dialog/basic-dialog.component.ts",
"encapsulation": [],
"entryComponents": [],
"inputs": [],
"outputs": [],
"providers": [],
"styleUrls": [],
"styles": [],
"templateUrl": [
"./basic-dialog-content.html"
],
"viewProviders": [],
"hostDirectives": [],
"inputsClass": [
{
"name": "data",
"deprecated": false,
"deprecationMessage": "",
"line": 66,
"type": "any",
"decorators": [],
"inheritance": {
"file": "WISEDialogContent"
}
},
{
"name": "dialog",
"defaultValue": "new WISEDialog()",
"deprecated": false,
"deprecationMessage": "",
"line": 67,
"type": "WISEDialog",
"decorators": [],
"inheritance": {
"file": "WISEDialogContent"
}
}
],
"outputsClass": [],
"propertiesClass": [
{
"name": "color",
"defaultValue": "''",
"deprecated": false,
"deprecationMessage": "",
"type": "string",
"optional": false,
"description": "",
"line": 54,
"modifierKind": [
122
]
},
{
"name": "callbackData",
"deprecated": false,
"deprecationMessage": "",
"type": "any",
"optional": false,
"description": "",
"line": 69,
"modifierKind": [
122
],
"inheritance": {
"file": "WISEDialogContent"
}
}
],
"methodsClass": [
{
"name": "ngOnInit",
"args": [],
"optional": false,
"returnType": "void",
"typeParameters": [],
"line": 56,
"deprecated": false,
"deprecationMessage": ""
},
{
"name": "submit",
"args": [],
"optional": false,
"returnType": "void",
"typeParameters": [],
"line": 60,
"deprecated": false,
"deprecationMessage": ""
},
{
"name": "getCallbackData",
"args": [],
"optional": false,
"returnType": "any",
"typeParameters": [],
"line": 73,
"deprecated": false,
"deprecationMessage": "",
"inheritance": {
"file": "WISEDialogContent"
}
}
],
"deprecated": false,
"deprecationMessage": "",
"hostBindings": [],
"hostListeners": [],
"standalone": true,
"imports": [
{
"name": "FormsModule",
"type": "module"
},
{
"name": "WISEButton"
},
{
"name": "WISEDialogActions"
},
{
"name": "WISEDialogBody"
},
{
"name": "WISEDialogTitle"
}
],
"description": "",
"rawdescription": "\n",
"type": "component",
"sourceCode": "import { Component, ComponentRef, OnInit } from '@angular/core';\nimport { WISEButton } from 'src/app/shared/components/actions/button/button.component';\nimport { WISEDialogService } from 'src/app/shared/components/actions/dialog/dialog.service';\nimport { WISEDialogConfig } from 'src/app/shared/components/actions/dialog/dialogConfig';\nimport {\n WISEDialogActions,\n WISEDialogBody,\n WISEDialogContent,\n WISEDialogTitle,\n} from '../../../shared/components/actions/dialog/dialog-content-components';\nimport { FormsModule } from '@angular/forms';\n\n@Component({\n standalone: true,\n selector: 'basic-dialog',\n imports: [FormsModule, WISEButton],\n templateUrl: './basic-dialog.component.html',\n})\nexport class BasicDialog {\n constructor(private dialogService: WISEDialogService) {}\n\n private name: string = '';\n private color: string = '';\n private width: string = 'sm';\n\n openDialog(width: 'sm' | 'md' | 'lg' | 'xl' = 'sm'): void {\n const dialogConfig: WISEDialogConfig = {\n data: {\n name: this.name,\n color: this.color,\n },\n width: width,\n };\n let dialogRef = this.dialogService.open(BasicDialogContent, dialogConfig);\n dialogRef.instance.dialogClosed.subscribe((result: any) => {\n if (result) {\n this.color = result.color;\n this.width = width;\n }\n });\n }\n}\n\n@Component({\n standalone: true,\n imports: [FormsModule, WISEButton, WISEDialogActions, WISEDialogBody, WISEDialogTitle],\n templateUrl: './basic-dialog-content.html',\n})\nexport class BasicDialogContent extends WISEDialogContent implements OnInit {\n constructor() {\n super();\n }\n\n protected color: string = '';\n\n ngOnInit(): void {\n this.color = this.data.color;\n }\n\n submit(): void {\n this.callbackData = { color: this.color };\n this.dialog.close();\n }\n}\n",
"assetsDirs": [],
"styleUrlsData": "",
"stylesData": "",
"constructorObj": {
"name": "constructor",
"description": "",
"deprecated": false,
"deprecationMessage": "",
"args": [],
"line": 49
},
"extends": "WISEDialogContent",
"implements": [
"OnInit"
],
"templateData": "<div wise-dialog-title>Hello {{ data.name }}!</div>\n<div wise-dialog-body>\n <label class=\"form-control pb-2\">\n <div class=\"label\">\n <span class=\"label-text\">What is your favorite color?</span>\n </div>\n <input\n type=\"text\"\n placeholder=\"Favorite color\"\n class=\"input input-bordered w-full\"\n [(ngModel)]=\"color\"\n />\n </label>\n</div>\n<div wise-dialog-actions>\n <form method=\"dialog\">\n <button wise-button>Cancel</button>\n </form>\n <button wise-button color=\"primary\" (click)=\"submit()\">Submit</button>\n</div>\n"
},
{
"name": "TypographyComponent",
"id": "component-TypographyComponent-b6d660e90898b368b5cf5e8319191da22b26ad3f2c99c2964a7d691a61d3ecd6685f9be3a683c443eee5529d302ba238f5d91c5f51308cb4d9cad2c6ce96a606",
"file": "src/app/docs/typography/typography.component.ts",
"encapsulation": [],
"entryComponents": [],
"inputs": [],
"outputs": [],
"providers": [],
"selector": "typography",
"styleUrls": [
"./typography.component.css"
],
"styles": [],
"templateUrl": [
"./typography.component.html"
],
"viewProviders": [],
"hostDirectives": [],
"inputsClass": [],
"outputsClass": [],
"propertiesClass": [
{
"name": "bodyFontFamily",
"defaultValue": "'Open Sans'",
"deprecated": false,
"deprecationMessage": "",
"type": "string",
"optional": false,
"description": "",
"line": 11
},
{
"name": "codeSample",
"defaultValue": "`\n import { Component, HostBinding, Input } from '@angular/core';\n\n @Component({\n selector: 'button[wise-button], input[wise-button]',\n host: {\n '[attr.disabled]': '(isProcessing || isDisabled) || null',\n '[attr.tabindex]': 'isDisabled ? -1 : tabindex',\n '[class.btn-block]': 'block',\n '[class.btn-circle]': 'circle',\n ...\n `",
"deprecated": false,
"deprecationMessage": "",
"type": "string",
"optional": false,
"description": "",
"line": 13
},
{
"name": "headingFontFamily",
"defaultValue": "'Raleway'",
"deprecated": false,
"deprecationMessage": "",
"type": "string",
"optional": false,
"description": "",
"line": 12
},
{
"name": "sampleText",
"defaultValue": "$localize`Web-based Inquiry Science Environment`",
"deprecated": false,
"deprecationMessage": "",
"type": "string",
"optional": false,
"description": "",
"line": 10
}
],
"methodsClass": [],
"deprecated": false,
"deprecationMessage": "",
"hostBindings": [],
"hostListeners": [],
"standalone": true,
"imports": [],
"description": "",
"rawdescription": "\n",
"type": "component",
"sourceCode": "import { Component } from '@angular/core';\n\n@Component({\n standalone: true,\n selector: 'typography',\n templateUrl: './typography.component.html',\n styleUrls: ['./typography.component.css'],\n})\nexport class TypographyComponent {\n sampleText: string = $localize`Web-based Inquiry Science Environment`;\n bodyFontFamily: string = 'Open Sans';\n headingFontFamily: string = 'Raleway';\n codeSample: string = `\n import { Component, HostBinding, Input } from '@angular/core';\n\n @Component({\n selector: 'button[wise-button], input[wise-button]',\n host: {\n '[attr.disabled]': '(isProcessing || isDisabled) || null',\n '[attr.tabindex]': 'isDisabled ? -1 : tabindex',\n '[class.btn-block]': 'block',\n '[class.btn-circle]': 'circle',\n ...\n `;\n\n constructor() {}\n}\n",
"assetsDirs": [],
"styleUrlsData": [
{
"data": "",
"styleUrl": "./typography.component.css"
}
],
"stylesData": "",
"constructorObj": {
"name": "constructor",
"description": "",
"deprecated": false,
"deprecationMessage": "",
"args": [],
"line": 24
},
"templateData": "<article class=\"font-body\">\n <h1 i18n>Typography</h1>\n <h2 id=\"overview\" i18n>Overview</h2>\n <p i18n>\n WISE uses the\n <a href=\"https://tailwindcss.com/docs/typography-plugin\">Tailwind CSS Typography plugin</a> with\n customizations to define typography styles that are used throughout WISE applications. To\n utilize the typography styles demonstrated in this document, add the <code>wisetype</code>,\n <code>dark:wisetype-dark</code>, and <code>wisetype-neutral</code> classes to the\n <code><body></code> or a parent DOM element.\n </p>\n <p i18n>\n Typographic content can also be modified using any Tailwind CSS typography utility classes.\n Check out the <a href=\"https://tailwindcss.com/docs\">Tailwind CSS documentation</a> for more\n information.\n </p>\n <h2 id=\"font-families\" i18n>Font Families</h2>\n <p i18n>\n WISE uses two font families by default - one for body content and one for headings. They can\n also be applied to any HTML element using the following classes:\n </p>\n <table wise-table>\n <thead>\n <tr>\n <th i18n>Class name</th>\n <th i18n>Value</th>\n <th i18n>Sample</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td>\n <code>font-body</code>\n </td>\n <td>{{ bodyFontFamily }}</td>\n <td>\n <span class=\"font-body\">{{ sampleText }}</span>\n </td>\n </tr>\n <tr>\n <td>\n <code>font-heading</code>\n </td>\n <td>{{ headingFontFamily }}</td>\n <td>\n <span class=\"font-heading text-lg\">{{ sampleText }}</span>\n </td>\n </tr>\n </tbody>\n </table>\n <h2 id=\"headings\" i18n>Headings</h2>\n <table wise-table>\n <thead>\n <tr>\n <th i18n>Element</th>\n <th i18n>Font Size</th>\n <th i18n>Font Family</th>\n <th i18n>Font Weight</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td>\n <h1 class=\"toc-ignore\"><h1> Heading 1</h1>\n </td>\n <td>2.25rem (36px)</td>\n <td>{{ headingFontFamily }}</td>\n <td>800</td>\n </tr>\n <tr>\n <td>\n <h2 class=\"toc-ignore\"><h2> Heading 2</h2>\n </td>\n <td>1.75rem (28px)</td>\n <td>{{ headingFontFamily }}</td>\n <td>700</td>\n </tr>\n <tr>\n <td>\n <h3 class=\"toc-ignore\"><h3> Heading 3</h3>\n </td>\n <td>1.5rem (24px)</td>\n <td>{{ headingFontFamily }}</td>\n <td>600</td>\n </tr>\n <tr>\n <td>\n <h4 class=\"toc-ignore\"><h4> Heading 4</h4>\n </td>\n <td>1.25rem (20px)</td>\n <td>{{ headingFontFamily }}</td>\n <td>600</td>\n </tr>\n </tbody>\n </table>\n <h2 id=\"paragraphs\" i18n>Paragraphs</h2>\n <p i18n>\n The default <code>font-size</code> for body and paragraph text is <code>1rem</code> (16 px).\n </p>\n <p class=\"font-bold\" i18>Sample paragraphs:</p>\n <p>\n Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.\n Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus\n mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa\n quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.\n </p>\n <p>\n In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede\n mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate\n eleifend tellus.\n </p>\n <h2 id=\"lists\" i18n>Lists</h2>\n <p class=\"font-bold\" i18n>Unordered List:</p>\n <ul>\n <li i18n>List item #1.</li>\n <li i18n>List item #2.</li>\n <li i18n>List item #3.</li>\n <li i18n>List item #4.</li>\n </ul>\n <p class=\"font-bold\" i18n>Ordered List:</p>\n <ol>\n <li i18n>List item #1.</li>\n <li i18n>List item #2.</li>\n <li i18n>List item #3.</li>\n <li i18n>List item #4.</li>\n </ol>\n <h2 id=\"blockquotes\" i18n>Blockquotes</h2>\n <blockquote>\n Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.\n Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus\n mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.\n </blockquote>\n <h2 id=\"images\">Images</h2>\n <figure>\n <img src=\"https://picsum.photos/id/82/1500/997\" i18n-alt alt=\"Sample image\" />\n <figcaption i18n>\n This is a sample image caption that tells you something about the image above.\n </figcaption>\n </figure>\n <h2 id=\"code\" i18n>Code</h2>\n <p i18n>Inline code can be displayed using the <code><code></code> element.</p>\n <p i18n>\n Larger code blocks can be displayed using a <code><code></code> element inside a\n <code><pre></code>\n element:\n </p>\n <pre>\n <code class=\"language-js\" [innerHTML]=\"codeSample\"></code>\n </pre>\n</article>\n"
},
{
"name": "WISEAnchor",
"id": "component-WISEAnchor-d249b3d7336dd2e6a24eeb9fbf0bcb075e3c111a5621f868683ae1e490bb9587de60c92a1d8d85555874de509e8534d15bc8a9321bc25cfb23bf8b72865f7a52",
"file": "src/app/shared/components/actions/button/button.component.ts",
"encapsulation": [],
"entryComponents": [],
"host": {},
"inputs": [],
"outputs": [],
"providers": [],
"selector": "a[wise-button]",
"styleUrls": [
"./button.component.css"
],
"styles": [],
"templateUrl": [
"./button.component.html"
],
"viewProviders": [],
"hostDirectives": [],
"inputsClass": [
{
"name": "block",
"deprecated": false,
"deprecationMessage": "",
"rawdescription": "\n\nTakes up the full width of its container\n",
"description": "<p>Takes up the full width of its container</p>\n",
"line": 32,
"type": "boolean",
"decorators": [],
"inheritance": {
"file": "WISEButton"
}
},
{
"name": "circle",
"deprecated": false,
"deprecationMessage": "",
"rawdescription": "\n\nHas a circle shape\n",
"description": "<p>Has a circle shape</p>\n",
"line": 36,
"type": "boolean",
"decorators": [],
"inheritance": {
"file": "WISEButton"
}
},
{
"name": "color",
"deprecated": false,
"deprecationMessage": "",
"rawdescription": "\n\nChanges the color of the button\n",
"description": "<p>Changes the color of the button</p>\n",
"line": 40,
"type": "\"primary\" | \"neutral\" | \"secondary\" | \"accent\" | \"success\" | \"warning\"",
"decorators": [],
"inheritance": {
"file": "WISEButton"
}
},
{
"name": "disabled",
"deprecated": false,
"deprecationMessage": "",
"line": 41,
"type": "boolean",
"decorators": [],
"inheritance": {
"file": "WISEButton"
}
},
{
"name": "ghost",
"deprecated": false,
"deprecationMessage": "",
"rawdescription": "\n\nHas a transparent background except on hover\n",
"description": "<p>Has a transparent background except on hover</p>\n",
"line": 45,
"type": "boolean",
"decorators": [],
"inheritance": {
"file": "WISEButton"
}
},
{
"name": "isDisabled",
"deprecated": false,
"deprecationMessage": "",
"rawdescription": "\n\nForces button to be disabled and removes pointer events\n(Can also use the `disabled` attribute on `button` or `input`)\n",
"description": "<p>Forces button to be disabled and removes pointer events\n(Can also use the <code>disabled</code> attribute on <code>button</code> or <code>input</code>)</p>\n",
"line": 50,
"type": "boolean",
"decorators": [],
"inheritance": {
"file": "WISEButton"
}
},
{
"name": "isProcessing",
"deprecated": false,
"deprecationMessage": "",
"rawdescription": "\n\nShows a spinner and disables the button\n",
"description": "<p>Shows a spinner and disables the button</p>\n",
"line": 54,
"type": "boolean",
"decorators": [],
"inheritance": {
"file": "WISEButton"
}
},
{
"name": "outline",
"deprecated": false,
"deprecationMessage": "",
"rawdescription": "\n\nHas a border and transparent background\n",
"description": "<p>Has a border and transparent background</p>\n",
"line": 58,
"type": "boolean",
"decorators": [],
"inheritance": {
"file": "WISEButton"
}
},
{
"name": "size",
"deprecated": false,
"deprecationMessage": "",
"rawdescription": "\n\nIf not specified, size is the same as medium (\"md\")\n",
"description": "<p>If not specified, size is the same as medium ("md")</p>\n",
"line": 66,
"type": "\"xs\" | \"sm\" | \"md\" | \"lg\"",
"decorators": [],
"inheritance": {
"file": "WISEButton"
}
},
{
"name": "square",
"deprecated": false,
"deprecationMessage": "",
"rawdescription": "\n\nHas a square shape\n",