@skyux/layout 7.0.0-beta.1 → 7.0.0-beta.2
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/documentation.json +1355 -781
- package/esm2020/index.mjs +1 -2
- package/esm2020/lib/modules/action-button/action-button-container.component.mjs +2 -2
- package/esm2020/lib/modules/card/card.component.mjs +38 -11
- package/esm2020/lib/modules/definition-list/definition-list-label.component.mjs +1 -1
- package/esm2020/lib/modules/definition-list/definition-list-value.component.mjs +3 -3
- package/esm2020/lib/modules/definition-list/definition-list.component.mjs +1 -1
- package/esm2020/lib/modules/definition-list/definition-list.service.mjs +1 -1
- package/esm2020/lib/modules/description-list/description-list-adapter-service.mjs +26 -22
- package/esm2020/lib/modules/description-list/description-list-content.component.mjs +2 -2
- package/esm2020/lib/modules/description-list/description-list-description.component.mjs +16 -11
- package/esm2020/lib/modules/description-list/description-list-term.component.mjs +1 -1
- package/esm2020/lib/modules/description-list/description-list.component.mjs +25 -16
- package/esm2020/lib/modules/fluid-grid/column.component.mjs +19 -1
- package/esm2020/lib/modules/fluid-grid/fluid-grid.component.mjs +15 -35
- package/esm2020/lib/modules/fluid-grid/row.component.mjs +1 -1
- package/esm2020/lib/modules/fluid-grid/types/fluid-grid-gutter-size-type.mjs +1 -1
- package/esm2020/lib/modules/format/format.component.mjs +34 -26
- package/esm2020/lib/modules/inline-delete/inline-delete-adapter.service.mjs +91 -83
- package/esm2020/lib/modules/inline-delete/inline-delete.component.mjs +15 -9
- package/esm2020/lib/modules/page/page-theme-adapter.service.mjs +14 -8
- package/esm2020/lib/modules/page/page.component.mjs +8 -4
- package/esm2020/lib/modules/page-summary/page-summary-adapter.service.mjs +1 -1
- package/esm2020/lib/modules/page-summary/page-summary.component.mjs +40 -16
- package/esm2020/lib/modules/text-expand/text-expand-adapter.service.mjs +8 -10
- package/esm2020/lib/modules/text-expand/text-expand-modal-context-token.mjs +6 -0
- package/esm2020/lib/modules/text-expand/text-expand-modal-context.mjs +2 -6
- package/esm2020/lib/modules/text-expand/text-expand-modal.component.mjs +12 -10
- package/esm2020/lib/modules/text-expand/text-expand.component.mjs +188 -127
- package/esm2020/lib/modules/text-expand-repeater/text-expand-repeater-adapter.service.mjs +10 -12
- package/esm2020/lib/modules/text-expand-repeater/text-expand-repeater.component.mjs +139 -95
- package/esm2020/lib/modules/toolbar/toolbar.component.mjs +2 -2
- package/esm2020/testing/action-button-fixture.mjs +12 -6
- package/esm2020/testing/card-fixture.mjs +19 -16
- package/esm2020/testing/page-summary-fixture.mjs +9 -5
- package/fesm2015/skyux-layout-testing.mjs +35 -24
- package/fesm2015/skyux-layout-testing.mjs.map +1 -1
- package/fesm2015/skyux-layout.mjs +675 -506
- package/fesm2015/skyux-layout.mjs.map +1 -1
- package/fesm2020/skyux-layout-testing.mjs +35 -24
- package/fesm2020/skyux-layout-testing.mjs.map +1 -1
- package/fesm2020/skyux-layout.mjs +669 -506
- package/fesm2020/skyux-layout.mjs.map +1 -1
- package/index.d.ts +0 -1
- package/lib/modules/card/card.component.d.ts +7 -6
- package/lib/modules/definition-list/definition-list-label.component.d.ts +1 -1
- package/lib/modules/definition-list/definition-list-value.component.d.ts +1 -1
- package/lib/modules/definition-list/definition-list.component.d.ts +2 -2
- package/lib/modules/definition-list/definition-list.service.d.ts +2 -2
- package/lib/modules/description-list/description-list-adapter-service.d.ts +1 -2
- package/lib/modules/description-list/description-list-content.component.d.ts +2 -2
- package/lib/modules/description-list/description-list-description.component.d.ts +5 -7
- package/lib/modules/description-list/description-list-term.component.d.ts +1 -1
- package/lib/modules/description-list/description-list.component.d.ts +6 -7
- package/lib/modules/fluid-grid/column.component.d.ts +7 -5
- package/lib/modules/fluid-grid/fluid-grid.component.d.ts +3 -9
- package/lib/modules/fluid-grid/row.component.d.ts +1 -1
- package/lib/modules/fluid-grid/types/fluid-grid-gutter-size-type.d.ts +1 -1
- package/lib/modules/format/format.component.d.ts +5 -7
- package/lib/modules/inline-delete/inline-delete-adapter.service.d.ts +1 -11
- package/lib/modules/inline-delete/inline-delete.component.d.ts +3 -5
- package/lib/modules/page/page-theme-adapter.service.d.ts +1 -1
- package/lib/modules/page/page.component.d.ts +1 -1
- package/lib/modules/page-summary/page-summary.component.d.ts +8 -9
- package/lib/modules/text-expand/text-expand-adapter.service.d.ts +3 -4
- package/lib/modules/text-expand/text-expand-modal-context-token.d.ts +6 -0
- package/lib/modules/text-expand/text-expand-modal-context.d.ts +1 -1
- package/lib/modules/text-expand/text-expand.component.d.ts +18 -25
- package/lib/modules/text-expand-repeater/text-expand-repeater-adapter.service.d.ts +4 -5
- package/lib/modules/text-expand-repeater/text-expand-repeater.component.d.ts +13 -21
- package/package.json +9 -9
- package/testing/action-button-fixture.d.ts +4 -4
- package/testing/card-fixture.d.ts +3 -5
- package/testing/page-summary-fixture.d.ts +4 -4
- package/esm2020/lib/modules/fluid-grid/fluid-grid-gutter-size.mjs +0 -20
- package/lib/modules/fluid-grid/fluid-grid-gutter-size.d.ts +0 -18
package/documentation.json
CHANGED
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"originalName": "",
|
|
75
75
|
"children": [
|
|
76
76
|
{
|
|
77
|
-
"id":
|
|
77
|
+
"id": 529,
|
|
78
78
|
"name": "SkyBackToTopMessageType",
|
|
79
79
|
"kind": 8,
|
|
80
80
|
"kindString": "Enumeration",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
},
|
|
85
85
|
"children": [
|
|
86
86
|
{
|
|
87
|
-
"id":
|
|
87
|
+
"id": 530,
|
|
88
88
|
"name": "BackToTop",
|
|
89
89
|
"kind": 16,
|
|
90
90
|
"kindString": "Enumeration member",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
"title": "Enumeration members",
|
|
108
108
|
"kind": 16,
|
|
109
109
|
"children": [
|
|
110
|
-
|
|
110
|
+
530
|
|
111
111
|
]
|
|
112
112
|
}
|
|
113
113
|
],
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
]
|
|
121
121
|
},
|
|
122
122
|
{
|
|
123
|
-
"id":
|
|
123
|
+
"id": 517,
|
|
124
124
|
"name": "SkyActionButtonModule",
|
|
125
125
|
"kind": 128,
|
|
126
126
|
"kindString": "Class",
|
|
@@ -145,7 +145,7 @@
|
|
|
145
145
|
"title": "Constructors",
|
|
146
146
|
"kind": 512,
|
|
147
147
|
"children": [
|
|
148
|
-
|
|
148
|
+
518
|
|
149
149
|
]
|
|
150
150
|
}
|
|
151
151
|
],
|
|
@@ -158,7 +158,7 @@
|
|
|
158
158
|
]
|
|
159
159
|
},
|
|
160
160
|
{
|
|
161
|
-
"id":
|
|
161
|
+
"id": 524,
|
|
162
162
|
"name": "SkyBackToTopModule",
|
|
163
163
|
"kind": 128,
|
|
164
164
|
"kindString": "Class",
|
|
@@ -183,7 +183,7 @@
|
|
|
183
183
|
"title": "Constructors",
|
|
184
184
|
"kind": 512,
|
|
185
185
|
"children": [
|
|
186
|
-
|
|
186
|
+
525
|
|
187
187
|
]
|
|
188
188
|
}
|
|
189
189
|
],
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
]
|
|
197
197
|
},
|
|
198
198
|
{
|
|
199
|
-
"id":
|
|
199
|
+
"id": 533,
|
|
200
200
|
"name": "SkyBoxModule",
|
|
201
201
|
"kind": 128,
|
|
202
202
|
"kindString": "Class",
|
|
@@ -221,7 +221,7 @@
|
|
|
221
221
|
"title": "Constructors",
|
|
222
222
|
"kind": 512,
|
|
223
223
|
"children": [
|
|
224
|
-
|
|
224
|
+
534
|
|
225
225
|
]
|
|
226
226
|
}
|
|
227
227
|
],
|
|
@@ -234,7 +234,7 @@
|
|
|
234
234
|
]
|
|
235
235
|
},
|
|
236
236
|
{
|
|
237
|
-
"id":
|
|
237
|
+
"id": 536,
|
|
238
238
|
"name": "SkyCardModule",
|
|
239
239
|
"kind": 128,
|
|
240
240
|
"kindString": "Class",
|
|
@@ -267,7 +267,7 @@
|
|
|
267
267
|
"title": "Constructors",
|
|
268
268
|
"kind": 512,
|
|
269
269
|
"children": [
|
|
270
|
-
|
|
270
|
+
537
|
|
271
271
|
]
|
|
272
272
|
}
|
|
273
273
|
],
|
|
@@ -280,7 +280,7 @@
|
|
|
280
280
|
]
|
|
281
281
|
},
|
|
282
282
|
{
|
|
283
|
-
"id":
|
|
283
|
+
"id": 539,
|
|
284
284
|
"name": "SkyDefinitionListModule",
|
|
285
285
|
"kind": 128,
|
|
286
286
|
"kindString": "Class",
|
|
@@ -313,7 +313,7 @@
|
|
|
313
313
|
"title": "Constructors",
|
|
314
314
|
"kind": 512,
|
|
315
315
|
"children": [
|
|
316
|
-
|
|
316
|
+
540
|
|
317
317
|
]
|
|
318
318
|
}
|
|
319
319
|
],
|
|
@@ -326,7 +326,7 @@
|
|
|
326
326
|
]
|
|
327
327
|
},
|
|
328
328
|
{
|
|
329
|
-
"id":
|
|
329
|
+
"id": 542,
|
|
330
330
|
"name": "SkyDescriptionListModule",
|
|
331
331
|
"kind": 128,
|
|
332
332
|
"kindString": "Class",
|
|
@@ -351,7 +351,7 @@
|
|
|
351
351
|
"title": "Constructors",
|
|
352
352
|
"kind": 512,
|
|
353
353
|
"children": [
|
|
354
|
-
|
|
354
|
+
543
|
|
355
355
|
]
|
|
356
356
|
}
|
|
357
357
|
],
|
|
@@ -364,7 +364,7 @@
|
|
|
364
364
|
]
|
|
365
365
|
},
|
|
366
366
|
{
|
|
367
|
-
"id":
|
|
367
|
+
"id": 550,
|
|
368
368
|
"name": "SkyFluidGridModule",
|
|
369
369
|
"kind": 128,
|
|
370
370
|
"kindString": "Class",
|
|
@@ -389,7 +389,7 @@
|
|
|
389
389
|
"title": "Constructors",
|
|
390
390
|
"kind": 512,
|
|
391
391
|
"children": [
|
|
392
|
-
|
|
392
|
+
551
|
|
393
393
|
]
|
|
394
394
|
}
|
|
395
395
|
],
|
|
@@ -402,7 +402,7 @@
|
|
|
402
402
|
]
|
|
403
403
|
},
|
|
404
404
|
{
|
|
405
|
-
"id":
|
|
405
|
+
"id": 557,
|
|
406
406
|
"name": "SkyFormatModule",
|
|
407
407
|
"kind": 128,
|
|
408
408
|
"kindString": "Class",
|
|
@@ -427,7 +427,7 @@
|
|
|
427
427
|
"title": "Constructors",
|
|
428
428
|
"kind": 512,
|
|
429
429
|
"children": [
|
|
430
|
-
|
|
430
|
+
558
|
|
431
431
|
]
|
|
432
432
|
}
|
|
433
433
|
],
|
|
@@ -440,7 +440,7 @@
|
|
|
440
440
|
]
|
|
441
441
|
},
|
|
442
442
|
{
|
|
443
|
-
"id":
|
|
443
|
+
"id": 563,
|
|
444
444
|
"name": "SkyInlineDeleteModule",
|
|
445
445
|
"kind": 128,
|
|
446
446
|
"kindString": "Class",
|
|
@@ -465,7 +465,7 @@
|
|
|
465
465
|
"title": "Constructors",
|
|
466
466
|
"kind": 512,
|
|
467
467
|
"children": [
|
|
468
|
-
|
|
468
|
+
564
|
|
469
469
|
]
|
|
470
470
|
}
|
|
471
471
|
],
|
|
@@ -478,7 +478,7 @@
|
|
|
478
478
|
]
|
|
479
479
|
},
|
|
480
480
|
{
|
|
481
|
-
"id":
|
|
481
|
+
"id": 566,
|
|
482
482
|
"name": "SkyPageModule",
|
|
483
483
|
"kind": 128,
|
|
484
484
|
"kindString": "Class",
|
|
@@ -503,7 +503,7 @@
|
|
|
503
503
|
"title": "Constructors",
|
|
504
504
|
"kind": 512,
|
|
505
505
|
"children": [
|
|
506
|
-
|
|
506
|
+
567
|
|
507
507
|
]
|
|
508
508
|
}
|
|
509
509
|
],
|
|
@@ -516,7 +516,7 @@
|
|
|
516
516
|
]
|
|
517
517
|
},
|
|
518
518
|
{
|
|
519
|
-
"id":
|
|
519
|
+
"id": 569,
|
|
520
520
|
"name": "SkyPageSummaryModule",
|
|
521
521
|
"kind": 128,
|
|
522
522
|
"kindString": "Class",
|
|
@@ -549,7 +549,7 @@
|
|
|
549
549
|
"title": "Constructors",
|
|
550
550
|
"kind": 512,
|
|
551
551
|
"children": [
|
|
552
|
-
|
|
552
|
+
570
|
|
553
553
|
]
|
|
554
554
|
}
|
|
555
555
|
],
|
|
@@ -562,7 +562,7 @@
|
|
|
562
562
|
]
|
|
563
563
|
},
|
|
564
564
|
{
|
|
565
|
-
"id":
|
|
565
|
+
"id": 572,
|
|
566
566
|
"name": "SkyTextExpandModule",
|
|
567
567
|
"kind": 128,
|
|
568
568
|
"kindString": "Class",
|
|
@@ -587,7 +587,7 @@
|
|
|
587
587
|
"title": "Constructors",
|
|
588
588
|
"kind": 512,
|
|
589
589
|
"children": [
|
|
590
|
-
|
|
590
|
+
573
|
|
591
591
|
]
|
|
592
592
|
}
|
|
593
593
|
],
|
|
@@ -600,7 +600,7 @@
|
|
|
600
600
|
]
|
|
601
601
|
},
|
|
602
602
|
{
|
|
603
|
-
"id":
|
|
603
|
+
"id": 576,
|
|
604
604
|
"name": "SkyTextExpandRepeaterModule",
|
|
605
605
|
"kind": 128,
|
|
606
606
|
"kindString": "Class",
|
|
@@ -625,7 +625,7 @@
|
|
|
625
625
|
"title": "Constructors",
|
|
626
626
|
"kind": 512,
|
|
627
627
|
"children": [
|
|
628
|
-
|
|
628
|
+
577
|
|
629
629
|
]
|
|
630
630
|
}
|
|
631
631
|
],
|
|
@@ -638,7 +638,7 @@
|
|
|
638
638
|
]
|
|
639
639
|
},
|
|
640
640
|
{
|
|
641
|
-
"id":
|
|
641
|
+
"id": 579,
|
|
642
642
|
"name": "SkyToolbarModule",
|
|
643
643
|
"kind": 128,
|
|
644
644
|
"kindString": "Class",
|
|
@@ -663,7 +663,7 @@
|
|
|
663
663
|
"title": "Constructors",
|
|
664
664
|
"kind": 512,
|
|
665
665
|
"children": [
|
|
666
|
-
|
|
666
|
+
580
|
|
667
667
|
]
|
|
668
668
|
}
|
|
669
669
|
],
|
|
@@ -865,7 +865,7 @@
|
|
|
865
865
|
],
|
|
866
866
|
"type": {
|
|
867
867
|
"type": "reference",
|
|
868
|
-
"id":
|
|
868
|
+
"id": 511,
|
|
869
869
|
"name": "SkyActionButtonPermalink"
|
|
870
870
|
}
|
|
871
871
|
},
|
|
@@ -1006,7 +1006,7 @@
|
|
|
1006
1006
|
]
|
|
1007
1007
|
},
|
|
1008
1008
|
{
|
|
1009
|
-
"id":
|
|
1009
|
+
"id": 174,
|
|
1010
1010
|
"name": "SkyCardActionsComponent",
|
|
1011
1011
|
"kind": 128,
|
|
1012
1012
|
"kindString": "Class",
|
|
@@ -1040,7 +1040,7 @@
|
|
|
1040
1040
|
"title": "Constructors",
|
|
1041
1041
|
"kind": 512,
|
|
1042
1042
|
"children": [
|
|
1043
|
-
|
|
1043
|
+
175
|
|
1044
1044
|
]
|
|
1045
1045
|
}
|
|
1046
1046
|
],
|
|
@@ -1053,7 +1053,7 @@
|
|
|
1053
1053
|
]
|
|
1054
1054
|
},
|
|
1055
1055
|
{
|
|
1056
|
-
"id":
|
|
1056
|
+
"id": 177,
|
|
1057
1057
|
"name": "SkyCardContentComponent",
|
|
1058
1058
|
"kind": 128,
|
|
1059
1059
|
"kindString": "Class",
|
|
@@ -1087,7 +1087,7 @@
|
|
|
1087
1087
|
"title": "Constructors",
|
|
1088
1088
|
"kind": 512,
|
|
1089
1089
|
"children": [
|
|
1090
|
-
|
|
1090
|
+
178
|
|
1091
1091
|
]
|
|
1092
1092
|
}
|
|
1093
1093
|
],
|
|
@@ -1100,7 +1100,7 @@
|
|
|
1100
1100
|
]
|
|
1101
1101
|
},
|
|
1102
1102
|
{
|
|
1103
|
-
"id":
|
|
1103
|
+
"id": 180,
|
|
1104
1104
|
"name": "SkyCardTitleComponent",
|
|
1105
1105
|
"kind": 128,
|
|
1106
1106
|
"kindString": "Class",
|
|
@@ -1134,7 +1134,7 @@
|
|
|
1134
1134
|
"title": "Constructors",
|
|
1135
1135
|
"kind": 512,
|
|
1136
1136
|
"children": [
|
|
1137
|
-
|
|
1137
|
+
181
|
|
1138
1138
|
]
|
|
1139
1139
|
}
|
|
1140
1140
|
],
|
|
@@ -1147,7 +1147,7 @@
|
|
|
1147
1147
|
]
|
|
1148
1148
|
},
|
|
1149
1149
|
{
|
|
1150
|
-
"id":
|
|
1150
|
+
"id": 183,
|
|
1151
1151
|
"name": "SkyDefinitionListComponent",
|
|
1152
1152
|
"kind": 128,
|
|
1153
1153
|
"kindString": "Class",
|
|
@@ -1171,7 +1171,7 @@
|
|
|
1171
1171
|
],
|
|
1172
1172
|
"children": [
|
|
1173
1173
|
{
|
|
1174
|
-
"id":
|
|
1174
|
+
"id": 184,
|
|
1175
1175
|
"name": "constructor",
|
|
1176
1176
|
"kind": 512,
|
|
1177
1177
|
"kindString": "Constructor",
|
|
@@ -1185,14 +1185,14 @@
|
|
|
1185
1185
|
],
|
|
1186
1186
|
"signatures": [
|
|
1187
1187
|
{
|
|
1188
|
-
"id":
|
|
1188
|
+
"id": 185,
|
|
1189
1189
|
"name": "SkyDefinitionListComponent",
|
|
1190
1190
|
"kind": 16384,
|
|
1191
1191
|
"kindString": "Constructor signature",
|
|
1192
1192
|
"flags": {},
|
|
1193
1193
|
"parameters": [
|
|
1194
1194
|
{
|
|
1195
|
-
"id":
|
|
1195
|
+
"id": 186,
|
|
1196
1196
|
"name": "service",
|
|
1197
1197
|
"kind": 32768,
|
|
1198
1198
|
"kindString": "Parameter",
|
|
@@ -1203,7 +1203,7 @@
|
|
|
1203
1203
|
}
|
|
1204
1204
|
},
|
|
1205
1205
|
{
|
|
1206
|
-
"id":
|
|
1206
|
+
"id": 187,
|
|
1207
1207
|
"name": "logger",
|
|
1208
1208
|
"kind": 32768,
|
|
1209
1209
|
"kindString": "Parameter",
|
|
@@ -1216,14 +1216,14 @@
|
|
|
1216
1216
|
],
|
|
1217
1217
|
"type": {
|
|
1218
1218
|
"type": "reference",
|
|
1219
|
-
"id":
|
|
1219
|
+
"id": 183,
|
|
1220
1220
|
"name": "SkyDefinitionListComponent"
|
|
1221
1221
|
}
|
|
1222
1222
|
}
|
|
1223
1223
|
]
|
|
1224
1224
|
},
|
|
1225
1225
|
{
|
|
1226
|
-
"id":
|
|
1226
|
+
"id": 191,
|
|
1227
1227
|
"name": "defaultValue",
|
|
1228
1228
|
"kind": 262144,
|
|
1229
1229
|
"kindString": "Accessor",
|
|
@@ -1251,7 +1251,7 @@
|
|
|
1251
1251
|
],
|
|
1252
1252
|
"setSignature": [
|
|
1253
1253
|
{
|
|
1254
|
-
"id":
|
|
1254
|
+
"id": 192,
|
|
1255
1255
|
"name": "defaultValue",
|
|
1256
1256
|
"kind": 1048576,
|
|
1257
1257
|
"kindString": "Set signature",
|
|
@@ -1267,7 +1267,7 @@
|
|
|
1267
1267
|
},
|
|
1268
1268
|
"parameters": [
|
|
1269
1269
|
{
|
|
1270
|
-
"id":
|
|
1270
|
+
"id": 193,
|
|
1271
1271
|
"name": "value",
|
|
1272
1272
|
"kind": 32768,
|
|
1273
1273
|
"kindString": "Parameter",
|
|
@@ -1286,7 +1286,7 @@
|
|
|
1286
1286
|
]
|
|
1287
1287
|
},
|
|
1288
1288
|
{
|
|
1289
|
-
"id":
|
|
1289
|
+
"id": 188,
|
|
1290
1290
|
"name": "labelWidth",
|
|
1291
1291
|
"kind": 262144,
|
|
1292
1292
|
"kindString": "Accessor",
|
|
@@ -1314,7 +1314,7 @@
|
|
|
1314
1314
|
],
|
|
1315
1315
|
"setSignature": [
|
|
1316
1316
|
{
|
|
1317
|
-
"id":
|
|
1317
|
+
"id": 189,
|
|
1318
1318
|
"name": "labelWidth",
|
|
1319
1319
|
"kind": 1048576,
|
|
1320
1320
|
"kindString": "Set signature",
|
|
@@ -1330,7 +1330,7 @@
|
|
|
1330
1330
|
},
|
|
1331
1331
|
"parameters": [
|
|
1332
1332
|
{
|
|
1333
|
-
"id":
|
|
1333
|
+
"id": 190,
|
|
1334
1334
|
"name": "value",
|
|
1335
1335
|
"kind": 32768,
|
|
1336
1336
|
"kindString": "Parameter",
|
|
@@ -1354,22 +1354,22 @@
|
|
|
1354
1354
|
"title": "Constructors",
|
|
1355
1355
|
"kind": 512,
|
|
1356
1356
|
"children": [
|
|
1357
|
-
|
|
1357
|
+
184
|
|
1358
1358
|
]
|
|
1359
1359
|
},
|
|
1360
1360
|
{
|
|
1361
1361
|
"title": "Properties",
|
|
1362
1362
|
"kind": 1024,
|
|
1363
1363
|
"children": [
|
|
1364
|
-
|
|
1364
|
+
194
|
|
1365
1365
|
]
|
|
1366
1366
|
},
|
|
1367
1367
|
{
|
|
1368
1368
|
"title": "Accessors",
|
|
1369
1369
|
"kind": 262144,
|
|
1370
1370
|
"children": [
|
|
1371
|
-
|
|
1372
|
-
|
|
1371
|
+
191,
|
|
1372
|
+
188
|
|
1373
1373
|
]
|
|
1374
1374
|
}
|
|
1375
1375
|
],
|
|
@@ -1382,7 +1382,7 @@
|
|
|
1382
1382
|
]
|
|
1383
1383
|
},
|
|
1384
1384
|
{
|
|
1385
|
-
"id":
|
|
1385
|
+
"id": 195,
|
|
1386
1386
|
"name": "SkyDefinitionListContentComponent",
|
|
1387
1387
|
"kind": 128,
|
|
1388
1388
|
"kindString": "Class",
|
|
@@ -1410,7 +1410,7 @@
|
|
|
1410
1410
|
"title": "Constructors",
|
|
1411
1411
|
"kind": 512,
|
|
1412
1412
|
"children": [
|
|
1413
|
-
|
|
1413
|
+
196
|
|
1414
1414
|
]
|
|
1415
1415
|
}
|
|
1416
1416
|
],
|
|
@@ -1423,7 +1423,7 @@
|
|
|
1423
1423
|
]
|
|
1424
1424
|
},
|
|
1425
1425
|
{
|
|
1426
|
-
"id":
|
|
1426
|
+
"id": 198,
|
|
1427
1427
|
"name": "SkyDefinitionListHeadingComponent",
|
|
1428
1428
|
"kind": 128,
|
|
1429
1429
|
"kindString": "Class",
|
|
@@ -1451,7 +1451,7 @@
|
|
|
1451
1451
|
"title": "Constructors",
|
|
1452
1452
|
"kind": 512,
|
|
1453
1453
|
"children": [
|
|
1454
|
-
|
|
1454
|
+
199
|
|
1455
1455
|
]
|
|
1456
1456
|
}
|
|
1457
1457
|
],
|
|
@@ -1464,7 +1464,7 @@
|
|
|
1464
1464
|
]
|
|
1465
1465
|
},
|
|
1466
1466
|
{
|
|
1467
|
-
"id":
|
|
1467
|
+
"id": 201,
|
|
1468
1468
|
"name": "SkyDefinitionListLabelComponent",
|
|
1469
1469
|
"kind": 128,
|
|
1470
1470
|
"kindString": "Class",
|
|
@@ -1488,7 +1488,7 @@
|
|
|
1488
1488
|
],
|
|
1489
1489
|
"children": [
|
|
1490
1490
|
{
|
|
1491
|
-
"id":
|
|
1491
|
+
"id": 202,
|
|
1492
1492
|
"name": "constructor",
|
|
1493
1493
|
"kind": 512,
|
|
1494
1494
|
"kindString": "Constructor",
|
|
@@ -1502,14 +1502,14 @@
|
|
|
1502
1502
|
],
|
|
1503
1503
|
"signatures": [
|
|
1504
1504
|
{
|
|
1505
|
-
"id":
|
|
1505
|
+
"id": 203,
|
|
1506
1506
|
"name": "SkyDefinitionListLabelComponent",
|
|
1507
1507
|
"kind": 16384,
|
|
1508
1508
|
"kindString": "Constructor signature",
|
|
1509
1509
|
"flags": {},
|
|
1510
1510
|
"parameters": [
|
|
1511
1511
|
{
|
|
1512
|
-
"id":
|
|
1512
|
+
"id": 204,
|
|
1513
1513
|
"name": "service",
|
|
1514
1514
|
"kind": 32768,
|
|
1515
1515
|
"kindString": "Parameter",
|
|
@@ -1522,14 +1522,14 @@
|
|
|
1522
1522
|
],
|
|
1523
1523
|
"type": {
|
|
1524
1524
|
"type": "reference",
|
|
1525
|
-
"id":
|
|
1525
|
+
"id": 201,
|
|
1526
1526
|
"name": "SkyDefinitionListLabelComponent"
|
|
1527
1527
|
}
|
|
1528
1528
|
}
|
|
1529
1529
|
]
|
|
1530
1530
|
},
|
|
1531
1531
|
{
|
|
1532
|
-
"id":
|
|
1532
|
+
"id": 205,
|
|
1533
1533
|
"name": "labelWidth",
|
|
1534
1534
|
"kind": 1024,
|
|
1535
1535
|
"kindString": "Property",
|
|
@@ -1554,15 +1554,15 @@
|
|
|
1554
1554
|
"title": "Constructors",
|
|
1555
1555
|
"kind": 512,
|
|
1556
1556
|
"children": [
|
|
1557
|
-
|
|
1557
|
+
202
|
|
1558
1558
|
]
|
|
1559
1559
|
},
|
|
1560
1560
|
{
|
|
1561
1561
|
"title": "Properties",
|
|
1562
1562
|
"kind": 1024,
|
|
1563
1563
|
"children": [
|
|
1564
|
-
|
|
1565
|
-
|
|
1564
|
+
205,
|
|
1565
|
+
206
|
|
1566
1566
|
]
|
|
1567
1567
|
}
|
|
1568
1568
|
],
|
|
@@ -1575,7 +1575,7 @@
|
|
|
1575
1575
|
]
|
|
1576
1576
|
},
|
|
1577
1577
|
{
|
|
1578
|
-
"id":
|
|
1578
|
+
"id": 207,
|
|
1579
1579
|
"name": "SkyDefinitionListValueComponent",
|
|
1580
1580
|
"kind": 128,
|
|
1581
1581
|
"kindString": "Class",
|
|
@@ -1599,7 +1599,7 @@
|
|
|
1599
1599
|
],
|
|
1600
1600
|
"children": [
|
|
1601
1601
|
{
|
|
1602
|
-
"id":
|
|
1602
|
+
"id": 208,
|
|
1603
1603
|
"name": "constructor",
|
|
1604
1604
|
"kind": 512,
|
|
1605
1605
|
"kindString": "Constructor",
|
|
@@ -1613,14 +1613,14 @@
|
|
|
1613
1613
|
],
|
|
1614
1614
|
"signatures": [
|
|
1615
1615
|
{
|
|
1616
|
-
"id":
|
|
1616
|
+
"id": 209,
|
|
1617
1617
|
"name": "SkyDefinitionListValueComponent",
|
|
1618
1618
|
"kind": 16384,
|
|
1619
1619
|
"kindString": "Constructor signature",
|
|
1620
1620
|
"flags": {},
|
|
1621
1621
|
"parameters": [
|
|
1622
1622
|
{
|
|
1623
|
-
"id":
|
|
1623
|
+
"id": 210,
|
|
1624
1624
|
"name": "service",
|
|
1625
1625
|
"kind": 32768,
|
|
1626
1626
|
"kindString": "Parameter",
|
|
@@ -1633,14 +1633,14 @@
|
|
|
1633
1633
|
],
|
|
1634
1634
|
"type": {
|
|
1635
1635
|
"type": "reference",
|
|
1636
|
-
"id":
|
|
1636
|
+
"id": 207,
|
|
1637
1637
|
"name": "SkyDefinitionListValueComponent"
|
|
1638
1638
|
}
|
|
1639
1639
|
}
|
|
1640
1640
|
]
|
|
1641
1641
|
},
|
|
1642
1642
|
{
|
|
1643
|
-
"id":
|
|
1643
|
+
"id": 211,
|
|
1644
1644
|
"name": "defaultValue",
|
|
1645
1645
|
"kind": 1024,
|
|
1646
1646
|
"kindString": "Property",
|
|
@@ -1665,15 +1665,15 @@
|
|
|
1665
1665
|
"title": "Constructors",
|
|
1666
1666
|
"kind": 512,
|
|
1667
1667
|
"children": [
|
|
1668
|
-
|
|
1668
|
+
208
|
|
1669
1669
|
]
|
|
1670
1670
|
},
|
|
1671
1671
|
{
|
|
1672
1672
|
"title": "Properties",
|
|
1673
1673
|
"kind": 1024,
|
|
1674
1674
|
"children": [
|
|
1675
|
-
|
|
1676
|
-
|
|
1675
|
+
211,
|
|
1676
|
+
212
|
|
1677
1677
|
]
|
|
1678
1678
|
}
|
|
1679
1679
|
],
|
|
@@ -1686,7 +1686,7 @@
|
|
|
1686
1686
|
]
|
|
1687
1687
|
},
|
|
1688
1688
|
{
|
|
1689
|
-
"id":
|
|
1689
|
+
"id": 213,
|
|
1690
1690
|
"name": "SkyDescriptionListComponent",
|
|
1691
1691
|
"kind": 128,
|
|
1692
1692
|
"kindString": "Class",
|
|
@@ -1710,7 +1710,7 @@
|
|
|
1710
1710
|
],
|
|
1711
1711
|
"children": [
|
|
1712
1712
|
{
|
|
1713
|
-
"id":
|
|
1713
|
+
"id": 214,
|
|
1714
1714
|
"name": "constructor",
|
|
1715
1715
|
"kind": 512,
|
|
1716
1716
|
"kindString": "Constructor",
|
|
@@ -1718,20 +1718,20 @@
|
|
|
1718
1718
|
"sources": [
|
|
1719
1719
|
{
|
|
1720
1720
|
"fileName": "projects/layout/src/modules/description-list/description-list.component.ts",
|
|
1721
|
-
"line":
|
|
1721
|
+
"line": 81,
|
|
1722
1722
|
"character": 2
|
|
1723
1723
|
}
|
|
1724
1724
|
],
|
|
1725
1725
|
"signatures": [
|
|
1726
1726
|
{
|
|
1727
|
-
"id":
|
|
1727
|
+
"id": 215,
|
|
1728
1728
|
"name": "SkyDescriptionListComponent",
|
|
1729
1729
|
"kind": 16384,
|
|
1730
1730
|
"kindString": "Constructor signature",
|
|
1731
1731
|
"flags": {},
|
|
1732
1732
|
"parameters": [
|
|
1733
1733
|
{
|
|
1734
|
-
"id":
|
|
1734
|
+
"id": 216,
|
|
1735
1735
|
"name": "adapterService",
|
|
1736
1736
|
"kind": 32768,
|
|
1737
1737
|
"kindString": "Parameter",
|
|
@@ -1742,7 +1742,7 @@
|
|
|
1742
1742
|
}
|
|
1743
1743
|
},
|
|
1744
1744
|
{
|
|
1745
|
-
"id":
|
|
1745
|
+
"id": 217,
|
|
1746
1746
|
"name": "changeDetector",
|
|
1747
1747
|
"kind": 32768,
|
|
1748
1748
|
"kindString": "Parameter",
|
|
@@ -1755,7 +1755,7 @@
|
|
|
1755
1755
|
}
|
|
1756
1756
|
},
|
|
1757
1757
|
{
|
|
1758
|
-
"id":
|
|
1758
|
+
"id": 218,
|
|
1759
1759
|
"name": "descriptionListService",
|
|
1760
1760
|
"kind": 32768,
|
|
1761
1761
|
"kindString": "Parameter",
|
|
@@ -1768,14 +1768,14 @@
|
|
|
1768
1768
|
],
|
|
1769
1769
|
"type": {
|
|
1770
1770
|
"type": "reference",
|
|
1771
|
-
"id":
|
|
1771
|
+
"id": 213,
|
|
1772
1772
|
"name": "SkyDescriptionListComponent"
|
|
1773
1773
|
}
|
|
1774
1774
|
}
|
|
1775
1775
|
]
|
|
1776
1776
|
},
|
|
1777
1777
|
{
|
|
1778
|
-
"id":
|
|
1778
|
+
"id": 227,
|
|
1779
1779
|
"name": "contentComponents",
|
|
1780
1780
|
"kind": 1024,
|
|
1781
1781
|
"kindString": "Property",
|
|
@@ -1808,7 +1808,7 @@
|
|
|
1808
1808
|
"typeArguments": [
|
|
1809
1809
|
{
|
|
1810
1810
|
"type": "reference",
|
|
1811
|
-
"id":
|
|
1811
|
+
"id": 260,
|
|
1812
1812
|
"name": "SkyDescriptionListContentComponent"
|
|
1813
1813
|
}
|
|
1814
1814
|
],
|
|
@@ -1818,7 +1818,50 @@
|
|
|
1818
1818
|
}
|
|
1819
1819
|
},
|
|
1820
1820
|
{
|
|
1821
|
-
"id":
|
|
1821
|
+
"id": 228,
|
|
1822
|
+
"name": "elementRef",
|
|
1823
|
+
"kind": 1024,
|
|
1824
|
+
"kindString": "Property",
|
|
1825
|
+
"flags": {
|
|
1826
|
+
"isPublic": true
|
|
1827
|
+
},
|
|
1828
|
+
"decorators": [
|
|
1829
|
+
{
|
|
1830
|
+
"name": "ViewChild",
|
|
1831
|
+
"type": {
|
|
1832
|
+
"type": "reference",
|
|
1833
|
+
"qualifiedName": "ViewChildDecorator",
|
|
1834
|
+
"package": "@angular/core",
|
|
1835
|
+
"name": "ViewChild"
|
|
1836
|
+
},
|
|
1837
|
+
"arguments": {
|
|
1838
|
+
"selector": "'descriptionListElement'",
|
|
1839
|
+
"opts": "{\n read: ElementRef,\n static: true,\n }"
|
|
1840
|
+
}
|
|
1841
|
+
}
|
|
1842
|
+
],
|
|
1843
|
+
"sources": [
|
|
1844
|
+
{
|
|
1845
|
+
"fileName": "projects/layout/src/modules/description-list/description-list.component.ts",
|
|
1846
|
+
"line": 76,
|
|
1847
|
+
"character": 9
|
|
1848
|
+
}
|
|
1849
|
+
],
|
|
1850
|
+
"type": {
|
|
1851
|
+
"type": "reference",
|
|
1852
|
+
"typeArguments": [
|
|
1853
|
+
{
|
|
1854
|
+
"type": "intrinsic",
|
|
1855
|
+
"name": "any"
|
|
1856
|
+
}
|
|
1857
|
+
],
|
|
1858
|
+
"qualifiedName": "ElementRef",
|
|
1859
|
+
"package": "@angular/core",
|
|
1860
|
+
"name": "ElementRef"
|
|
1861
|
+
}
|
|
1862
|
+
},
|
|
1863
|
+
{
|
|
1864
|
+
"id": 222,
|
|
1822
1865
|
"name": "listItemWidth",
|
|
1823
1866
|
"kind": 1024,
|
|
1824
1867
|
"kindString": "Property",
|
|
@@ -1853,7 +1896,7 @@
|
|
|
1853
1896
|
}
|
|
1854
1897
|
},
|
|
1855
1898
|
{
|
|
1856
|
-
"id":
|
|
1899
|
+
"id": 219,
|
|
1857
1900
|
"name": "defaultDescription",
|
|
1858
1901
|
"kind": 262144,
|
|
1859
1902
|
"kindString": "Accessor",
|
|
@@ -1881,7 +1924,7 @@
|
|
|
1881
1924
|
],
|
|
1882
1925
|
"setSignature": [
|
|
1883
1926
|
{
|
|
1884
|
-
"id":
|
|
1927
|
+
"id": 220,
|
|
1885
1928
|
"name": "defaultDescription",
|
|
1886
1929
|
"kind": 1048576,
|
|
1887
1930
|
"kindString": "Set signature",
|
|
@@ -1897,7 +1940,7 @@
|
|
|
1897
1940
|
},
|
|
1898
1941
|
"parameters": [
|
|
1899
1942
|
{
|
|
1900
|
-
"id":
|
|
1943
|
+
"id": 221,
|
|
1901
1944
|
"name": "value",
|
|
1902
1945
|
"kind": 32768,
|
|
1903
1946
|
"kindString": "Parameter",
|
|
@@ -1916,7 +1959,7 @@
|
|
|
1916
1959
|
]
|
|
1917
1960
|
},
|
|
1918
1961
|
{
|
|
1919
|
-
"id":
|
|
1962
|
+
"id": 223,
|
|
1920
1963
|
"name": "mode",
|
|
1921
1964
|
"kind": 262144,
|
|
1922
1965
|
"kindString": "Accessor",
|
|
@@ -1944,7 +1987,7 @@
|
|
|
1944
1987
|
],
|
|
1945
1988
|
"getSignature": [
|
|
1946
1989
|
{
|
|
1947
|
-
"id":
|
|
1990
|
+
"id": 224,
|
|
1948
1991
|
"name": "mode",
|
|
1949
1992
|
"kind": 524288,
|
|
1950
1993
|
"kindString": "Get signature",
|
|
@@ -1960,14 +2003,14 @@
|
|
|
1960
2003
|
},
|
|
1961
2004
|
"type": {
|
|
1962
2005
|
"type": "reference",
|
|
1963
|
-
"id":
|
|
2006
|
+
"id": 549,
|
|
1964
2007
|
"name": "SkyDescriptionListModeType"
|
|
1965
2008
|
}
|
|
1966
2009
|
}
|
|
1967
2010
|
],
|
|
1968
2011
|
"setSignature": [
|
|
1969
2012
|
{
|
|
1970
|
-
"id":
|
|
2013
|
+
"id": 225,
|
|
1971
2014
|
"name": "mode",
|
|
1972
2015
|
"kind": 1048576,
|
|
1973
2016
|
"kindString": "Set signature",
|
|
@@ -1983,14 +2026,14 @@
|
|
|
1983
2026
|
},
|
|
1984
2027
|
"parameters": [
|
|
1985
2028
|
{
|
|
1986
|
-
"id":
|
|
2029
|
+
"id": 226,
|
|
1987
2030
|
"name": "value",
|
|
1988
2031
|
"kind": 32768,
|
|
1989
2032
|
"kindString": "Parameter",
|
|
1990
2033
|
"flags": {},
|
|
1991
2034
|
"type": {
|
|
1992
2035
|
"type": "reference",
|
|
1993
|
-
"id":
|
|
2036
|
+
"id": 549,
|
|
1994
2037
|
"name": "SkyDescriptionListModeType"
|
|
1995
2038
|
}
|
|
1996
2039
|
}
|
|
@@ -2003,7 +2046,7 @@
|
|
|
2003
2046
|
]
|
|
2004
2047
|
},
|
|
2005
2048
|
{
|
|
2006
|
-
"id":
|
|
2049
|
+
"id": 231,
|
|
2007
2050
|
"name": "ngAfterContentInit",
|
|
2008
2051
|
"kind": 2048,
|
|
2009
2052
|
"kindString": "Method",
|
|
@@ -2013,13 +2056,13 @@
|
|
|
2013
2056
|
"sources": [
|
|
2014
2057
|
{
|
|
2015
2058
|
"fileName": "projects/layout/src/modules/description-list/description-list.component.ts",
|
|
2016
|
-
"line":
|
|
2059
|
+
"line": 87,
|
|
2017
2060
|
"character": 9
|
|
2018
2061
|
}
|
|
2019
2062
|
],
|
|
2020
2063
|
"signatures": [
|
|
2021
2064
|
{
|
|
2022
|
-
"id":
|
|
2065
|
+
"id": 232,
|
|
2023
2066
|
"name": "ngAfterContentInit",
|
|
2024
2067
|
"kind": 4096,
|
|
2025
2068
|
"kindString": "Call signature",
|
|
@@ -2040,7 +2083,7 @@
|
|
|
2040
2083
|
}
|
|
2041
2084
|
},
|
|
2042
2085
|
{
|
|
2043
|
-
"id":
|
|
2086
|
+
"id": 233,
|
|
2044
2087
|
"name": "ngOnDestroy",
|
|
2045
2088
|
"kind": 2048,
|
|
2046
2089
|
"kindString": "Method",
|
|
@@ -2050,13 +2093,13 @@
|
|
|
2050
2093
|
"sources": [
|
|
2051
2094
|
{
|
|
2052
2095
|
"fileName": "projects/layout/src/modules/description-list/description-list.component.ts",
|
|
2053
|
-
"line":
|
|
2096
|
+
"line": 103,
|
|
2054
2097
|
"character": 9
|
|
2055
2098
|
}
|
|
2056
2099
|
],
|
|
2057
2100
|
"signatures": [
|
|
2058
2101
|
{
|
|
2059
|
-
"id":
|
|
2102
|
+
"id": 234,
|
|
2060
2103
|
"name": "ngOnDestroy",
|
|
2061
2104
|
"kind": 4096,
|
|
2062
2105
|
"kindString": "Call signature",
|
|
@@ -2077,7 +2120,7 @@
|
|
|
2077
2120
|
}
|
|
2078
2121
|
},
|
|
2079
2122
|
{
|
|
2080
|
-
"id":
|
|
2123
|
+
"id": 235,
|
|
2081
2124
|
"name": "onWindowResize",
|
|
2082
2125
|
"kind": 2048,
|
|
2083
2126
|
"kindString": "Method",
|
|
@@ -2101,13 +2144,13 @@
|
|
|
2101
2144
|
"sources": [
|
|
2102
2145
|
{
|
|
2103
2146
|
"fileName": "projects/layout/src/modules/description-list/description-list.component.ts",
|
|
2104
|
-
"line":
|
|
2147
|
+
"line": 109,
|
|
2105
2148
|
"character": 9
|
|
2106
2149
|
}
|
|
2107
2150
|
],
|
|
2108
2151
|
"signatures": [
|
|
2109
2152
|
{
|
|
2110
|
-
"id":
|
|
2153
|
+
"id": 236,
|
|
2111
2154
|
"name": "onWindowResize",
|
|
2112
2155
|
"kind": 4096,
|
|
2113
2156
|
"kindString": "Call signature",
|
|
@@ -2125,32 +2168,33 @@
|
|
|
2125
2168
|
"title": "Constructors",
|
|
2126
2169
|
"kind": 512,
|
|
2127
2170
|
"children": [
|
|
2128
|
-
|
|
2171
|
+
214
|
|
2129
2172
|
]
|
|
2130
2173
|
},
|
|
2131
2174
|
{
|
|
2132
2175
|
"title": "Properties",
|
|
2133
2176
|
"kind": 1024,
|
|
2134
2177
|
"children": [
|
|
2135
|
-
|
|
2136
|
-
|
|
2178
|
+
227,
|
|
2179
|
+
228,
|
|
2180
|
+
222
|
|
2137
2181
|
]
|
|
2138
2182
|
},
|
|
2139
2183
|
{
|
|
2140
2184
|
"title": "Accessors",
|
|
2141
2185
|
"kind": 262144,
|
|
2142
2186
|
"children": [
|
|
2143
|
-
|
|
2144
|
-
|
|
2187
|
+
219,
|
|
2188
|
+
223
|
|
2145
2189
|
]
|
|
2146
2190
|
},
|
|
2147
2191
|
{
|
|
2148
2192
|
"title": "Methods",
|
|
2149
2193
|
"kind": 2048,
|
|
2150
2194
|
"children": [
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2195
|
+
231,
|
|
2196
|
+
233,
|
|
2197
|
+
235
|
|
2154
2198
|
]
|
|
2155
2199
|
}
|
|
2156
2200
|
],
|
|
@@ -2177,7 +2221,7 @@
|
|
|
2177
2221
|
]
|
|
2178
2222
|
},
|
|
2179
2223
|
{
|
|
2180
|
-
"id":
|
|
2224
|
+
"id": 239,
|
|
2181
2225
|
"name": "SkyDescriptionListTermComponent",
|
|
2182
2226
|
"kind": 128,
|
|
2183
2227
|
"kindString": "Class",
|
|
@@ -2201,7 +2245,7 @@
|
|
|
2201
2245
|
],
|
|
2202
2246
|
"children": [
|
|
2203
2247
|
{
|
|
2204
|
-
"id":
|
|
2248
|
+
"id": 242,
|
|
2205
2249
|
"name": "templateRef",
|
|
2206
2250
|
"kind": 1024,
|
|
2207
2251
|
"kindString": "Property",
|
|
@@ -2249,14 +2293,14 @@
|
|
|
2249
2293
|
"title": "Constructors",
|
|
2250
2294
|
"kind": 512,
|
|
2251
2295
|
"children": [
|
|
2252
|
-
|
|
2296
|
+
240
|
|
2253
2297
|
]
|
|
2254
2298
|
},
|
|
2255
2299
|
{
|
|
2256
2300
|
"title": "Properties",
|
|
2257
2301
|
"kind": 1024,
|
|
2258
2302
|
"children": [
|
|
2259
|
-
|
|
2303
|
+
242
|
|
2260
2304
|
]
|
|
2261
2305
|
}
|
|
2262
2306
|
],
|
|
@@ -2538,7 +2582,7 @@
|
|
|
2538
2582
|
},
|
|
2539
2583
|
"type": {
|
|
2540
2584
|
"type": "reference",
|
|
2541
|
-
"id":
|
|
2585
|
+
"id": 523,
|
|
2542
2586
|
"name": "SkyActionButtonContainerAlignItemsType"
|
|
2543
2587
|
}
|
|
2544
2588
|
}
|
|
@@ -2568,7 +2612,7 @@
|
|
|
2568
2612
|
"flags": {},
|
|
2569
2613
|
"type": {
|
|
2570
2614
|
"type": "reference",
|
|
2571
|
-
"id":
|
|
2615
|
+
"id": 523,
|
|
2572
2616
|
"name": "SkyActionButtonContainerAlignItemsType"
|
|
2573
2617
|
}
|
|
2574
2618
|
}
|
|
@@ -2828,7 +2872,7 @@
|
|
|
2828
2872
|
]
|
|
2829
2873
|
},
|
|
2830
2874
|
{
|
|
2831
|
-
"id":
|
|
2875
|
+
"id": 243,
|
|
2832
2876
|
"name": "SkyDescriptionListDescriptionComponent",
|
|
2833
2877
|
"kind": 128,
|
|
2834
2878
|
"kindString": "Class",
|
|
@@ -2852,7 +2896,7 @@
|
|
|
2852
2896
|
],
|
|
2853
2897
|
"children": [
|
|
2854
2898
|
{
|
|
2855
|
-
"id":
|
|
2899
|
+
"id": 244,
|
|
2856
2900
|
"name": "constructor",
|
|
2857
2901
|
"kind": 512,
|
|
2858
2902
|
"kindString": "Constructor",
|
|
@@ -2860,20 +2904,20 @@
|
|
|
2860
2904
|
"sources": [
|
|
2861
2905
|
{
|
|
2862
2906
|
"fileName": "projects/layout/src/modules/description-list/description-list-description.component.ts",
|
|
2863
|
-
"line":
|
|
2907
|
+
"line": 44,
|
|
2864
2908
|
"character": 2
|
|
2865
2909
|
}
|
|
2866
2910
|
],
|
|
2867
2911
|
"signatures": [
|
|
2868
2912
|
{
|
|
2869
|
-
"id":
|
|
2913
|
+
"id": 245,
|
|
2870
2914
|
"name": "SkyDescriptionListDescriptionComponent",
|
|
2871
2915
|
"kind": 16384,
|
|
2872
2916
|
"kindString": "Constructor signature",
|
|
2873
2917
|
"flags": {},
|
|
2874
2918
|
"parameters": [
|
|
2875
2919
|
{
|
|
2876
|
-
"id":
|
|
2920
|
+
"id": 246,
|
|
2877
2921
|
"name": "service",
|
|
2878
2922
|
"kind": 32768,
|
|
2879
2923
|
"kindString": "Parameter",
|
|
@@ -2884,8 +2928,8 @@
|
|
|
2884
2928
|
}
|
|
2885
2929
|
},
|
|
2886
2930
|
{
|
|
2887
|
-
"id":
|
|
2888
|
-
"name": "
|
|
2931
|
+
"id": 247,
|
|
2932
|
+
"name": "changeDetector",
|
|
2889
2933
|
"kind": 32768,
|
|
2890
2934
|
"kindString": "Parameter",
|
|
2891
2935
|
"flags": {},
|
|
@@ -2897,7 +2941,7 @@
|
|
|
2897
2941
|
}
|
|
2898
2942
|
},
|
|
2899
2943
|
{
|
|
2900
|
-
"id":
|
|
2944
|
+
"id": 248,
|
|
2901
2945
|
"name": "themeSvc",
|
|
2902
2946
|
"kind": 32768,
|
|
2903
2947
|
"kindString": "Parameter",
|
|
@@ -2924,14 +2968,14 @@
|
|
|
2924
2968
|
],
|
|
2925
2969
|
"type": {
|
|
2926
2970
|
"type": "reference",
|
|
2927
|
-
"id":
|
|
2971
|
+
"id": 243,
|
|
2928
2972
|
"name": "SkyDescriptionListDescriptionComponent"
|
|
2929
2973
|
}
|
|
2930
2974
|
}
|
|
2931
2975
|
]
|
|
2932
2976
|
},
|
|
2933
2977
|
{
|
|
2934
|
-
"id":
|
|
2978
|
+
"id": 249,
|
|
2935
2979
|
"name": "defaultDescription",
|
|
2936
2980
|
"kind": 1024,
|
|
2937
2981
|
"kindString": "Property",
|
|
@@ -2951,7 +2995,7 @@
|
|
|
2951
2995
|
}
|
|
2952
2996
|
},
|
|
2953
2997
|
{
|
|
2954
|
-
"id":
|
|
2998
|
+
"id": 251,
|
|
2955
2999
|
"name": "templateRef",
|
|
2956
3000
|
"kind": 1024,
|
|
2957
3001
|
"kindString": "Property",
|
|
@@ -2994,7 +3038,7 @@
|
|
|
2994
3038
|
}
|
|
2995
3039
|
},
|
|
2996
3040
|
{
|
|
2997
|
-
"id":
|
|
3041
|
+
"id": 250,
|
|
2998
3042
|
"name": "themeName",
|
|
2999
3043
|
"kind": 1024,
|
|
3000
3044
|
"kindString": "Property",
|
|
@@ -3014,7 +3058,7 @@
|
|
|
3014
3058
|
}
|
|
3015
3059
|
},
|
|
3016
3060
|
{
|
|
3017
|
-
"id":
|
|
3061
|
+
"id": 258,
|
|
3018
3062
|
"name": "ngOnDestroy",
|
|
3019
3063
|
"kind": 2048,
|
|
3020
3064
|
"kindString": "Method",
|
|
@@ -3024,13 +3068,13 @@
|
|
|
3024
3068
|
"sources": [
|
|
3025
3069
|
{
|
|
3026
3070
|
"fileName": "projects/layout/src/modules/description-list/description-list-description.component.ts",
|
|
3027
|
-
"line":
|
|
3071
|
+
"line": 65,
|
|
3028
3072
|
"character": 9
|
|
3029
3073
|
}
|
|
3030
3074
|
],
|
|
3031
3075
|
"signatures": [
|
|
3032
3076
|
{
|
|
3033
|
-
"id":
|
|
3077
|
+
"id": 259,
|
|
3034
3078
|
"name": "ngOnDestroy",
|
|
3035
3079
|
"kind": 4096,
|
|
3036
3080
|
"kindString": "Call signature",
|
|
@@ -3051,7 +3095,7 @@
|
|
|
3051
3095
|
}
|
|
3052
3096
|
},
|
|
3053
3097
|
{
|
|
3054
|
-
"id":
|
|
3098
|
+
"id": 256,
|
|
3055
3099
|
"name": "ngOnInit",
|
|
3056
3100
|
"kind": 2048,
|
|
3057
3101
|
"kindString": "Method",
|
|
@@ -3061,13 +3105,13 @@
|
|
|
3061
3105
|
"sources": [
|
|
3062
3106
|
{
|
|
3063
3107
|
"fileName": "projects/layout/src/modules/description-list/description-list-description.component.ts",
|
|
3064
|
-
"line":
|
|
3108
|
+
"line": 53,
|
|
3065
3109
|
"character": 9
|
|
3066
3110
|
}
|
|
3067
3111
|
],
|
|
3068
3112
|
"signatures": [
|
|
3069
3113
|
{
|
|
3070
|
-
"id":
|
|
3114
|
+
"id": 257,
|
|
3071
3115
|
"name": "ngOnInit",
|
|
3072
3116
|
"kind": 4096,
|
|
3073
3117
|
"kindString": "Call signature",
|
|
@@ -3093,25 +3137,25 @@
|
|
|
3093
3137
|
"title": "Constructors",
|
|
3094
3138
|
"kind": 512,
|
|
3095
3139
|
"children": [
|
|
3096
|
-
|
|
3140
|
+
244
|
|
3097
3141
|
]
|
|
3098
3142
|
},
|
|
3099
3143
|
{
|
|
3100
3144
|
"title": "Properties",
|
|
3101
3145
|
"kind": 1024,
|
|
3102
3146
|
"children": [
|
|
3103
|
-
|
|
3104
|
-
|
|
3105
|
-
|
|
3106
|
-
|
|
3147
|
+
249,
|
|
3148
|
+
255,
|
|
3149
|
+
251,
|
|
3150
|
+
250
|
|
3107
3151
|
]
|
|
3108
3152
|
},
|
|
3109
3153
|
{
|
|
3110
3154
|
"title": "Methods",
|
|
3111
3155
|
"kind": 2048,
|
|
3112
3156
|
"children": [
|
|
3113
|
-
|
|
3114
|
-
|
|
3157
|
+
258,
|
|
3158
|
+
256
|
|
3115
3159
|
]
|
|
3116
3160
|
}
|
|
3117
3161
|
],
|
|
@@ -3138,7 +3182,7 @@
|
|
|
3138
3182
|
]
|
|
3139
3183
|
},
|
|
3140
3184
|
{
|
|
3141
|
-
"id":
|
|
3185
|
+
"id": 260,
|
|
3142
3186
|
"name": "SkyDescriptionListContentComponent",
|
|
3143
3187
|
"kind": 128,
|
|
3144
3188
|
"kindString": "Class",
|
|
@@ -3162,7 +3206,7 @@
|
|
|
3162
3206
|
],
|
|
3163
3207
|
"children": [
|
|
3164
3208
|
{
|
|
3165
|
-
"id":
|
|
3209
|
+
"id": 264,
|
|
3166
3210
|
"name": "descriptionComponents",
|
|
3167
3211
|
"kind": 1024,
|
|
3168
3212
|
"kindString": "Property",
|
|
@@ -3195,7 +3239,7 @@
|
|
|
3195
3239
|
"typeArguments": [
|
|
3196
3240
|
{
|
|
3197
3241
|
"type": "reference",
|
|
3198
|
-
"id":
|
|
3242
|
+
"id": 243,
|
|
3199
3243
|
"name": "SkyDescriptionListDescriptionComponent"
|
|
3200
3244
|
}
|
|
3201
3245
|
],
|
|
@@ -3205,7 +3249,7 @@
|
|
|
3205
3249
|
}
|
|
3206
3250
|
},
|
|
3207
3251
|
{
|
|
3208
|
-
"id":
|
|
3252
|
+
"id": 263,
|
|
3209
3253
|
"name": "termComponents",
|
|
3210
3254
|
"kind": 1024,
|
|
3211
3255
|
"kindString": "Property",
|
|
@@ -3238,7 +3282,7 @@
|
|
|
3238
3282
|
"typeArguments": [
|
|
3239
3283
|
{
|
|
3240
3284
|
"type": "reference",
|
|
3241
|
-
"id":
|
|
3285
|
+
"id": 239,
|
|
3242
3286
|
"name": "SkyDescriptionListTermComponent"
|
|
3243
3287
|
}
|
|
3244
3288
|
],
|
|
@@ -3253,15 +3297,15 @@
|
|
|
3253
3297
|
"title": "Constructors",
|
|
3254
3298
|
"kind": 512,
|
|
3255
3299
|
"children": [
|
|
3256
|
-
|
|
3300
|
+
261
|
|
3257
3301
|
]
|
|
3258
3302
|
},
|
|
3259
3303
|
{
|
|
3260
3304
|
"title": "Properties",
|
|
3261
3305
|
"kind": 1024,
|
|
3262
3306
|
"children": [
|
|
3263
|
-
|
|
3264
|
-
|
|
3307
|
+
264,
|
|
3308
|
+
263
|
|
3265
3309
|
]
|
|
3266
3310
|
}
|
|
3267
3311
|
],
|
|
@@ -3274,7 +3318,7 @@
|
|
|
3274
3318
|
]
|
|
3275
3319
|
},
|
|
3276
3320
|
{
|
|
3277
|
-
"id":
|
|
3321
|
+
"id": 265,
|
|
3278
3322
|
"name": "SkyFluidGridComponent",
|
|
3279
3323
|
"kind": 128,
|
|
3280
3324
|
"kindString": "Class",
|
|
@@ -3298,13 +3342,22 @@
|
|
|
3298
3342
|
],
|
|
3299
3343
|
"children": [
|
|
3300
3344
|
{
|
|
3301
|
-
"id":
|
|
3345
|
+
"id": 268,
|
|
3302
3346
|
"name": "disableMargin",
|
|
3303
|
-
"kind":
|
|
3304
|
-
"kindString": "
|
|
3347
|
+
"kind": 1024,
|
|
3348
|
+
"kindString": "Property",
|
|
3305
3349
|
"flags": {
|
|
3306
3350
|
"isPublic": true
|
|
3307
3351
|
},
|
|
3352
|
+
"comment": {
|
|
3353
|
+
"shortText": "Disables the outer left and right margin of the fluid grid container.",
|
|
3354
|
+
"tags": [
|
|
3355
|
+
{
|
|
3356
|
+
"tag": "default",
|
|
3357
|
+
"text": "false\n"
|
|
3358
|
+
}
|
|
3359
|
+
]
|
|
3360
|
+
},
|
|
3308
3361
|
"decorators": [
|
|
3309
3362
|
{
|
|
3310
3363
|
"name": "Input",
|
|
@@ -3320,70 +3373,18 @@
|
|
|
3320
3373
|
"sources": [
|
|
3321
3374
|
{
|
|
3322
3375
|
"fileName": "projects/layout/src/modules/fluid-grid/fluid-grid.component.ts",
|
|
3323
|
-
"line":
|
|
3324
|
-
"character":
|
|
3325
|
-
}
|
|
3326
|
-
],
|
|
3327
|
-
"getSignature": [
|
|
3328
|
-
{
|
|
3329
|
-
"id": 260,
|
|
3330
|
-
"name": "disableMargin",
|
|
3331
|
-
"kind": 524288,
|
|
3332
|
-
"kindString": "Get signature",
|
|
3333
|
-
"flags": {},
|
|
3334
|
-
"comment": {
|
|
3335
|
-
"shortText": "Disables the outer left and right margin of the fluid grid container.",
|
|
3336
|
-
"tags": [
|
|
3337
|
-
{
|
|
3338
|
-
"tag": "default",
|
|
3339
|
-
"text": "false\n"
|
|
3340
|
-
}
|
|
3341
|
-
]
|
|
3342
|
-
},
|
|
3343
|
-
"type": {
|
|
3344
|
-
"type": "intrinsic",
|
|
3345
|
-
"name": "boolean"
|
|
3346
|
-
}
|
|
3376
|
+
"line": 20,
|
|
3377
|
+
"character": 9
|
|
3347
3378
|
}
|
|
3348
3379
|
],
|
|
3349
|
-
"
|
|
3350
|
-
|
|
3351
|
-
|
|
3352
|
-
|
|
3353
|
-
|
|
3354
|
-
"kindString": "Set signature",
|
|
3355
|
-
"flags": {},
|
|
3356
|
-
"comment": {
|
|
3357
|
-
"shortText": "Disables the outer left and right margin of the fluid grid container.",
|
|
3358
|
-
"tags": [
|
|
3359
|
-
{
|
|
3360
|
-
"tag": "default",
|
|
3361
|
-
"text": "false\n"
|
|
3362
|
-
}
|
|
3363
|
-
]
|
|
3364
|
-
},
|
|
3365
|
-
"parameters": [
|
|
3366
|
-
{
|
|
3367
|
-
"id": 262,
|
|
3368
|
-
"name": "value",
|
|
3369
|
-
"kind": 32768,
|
|
3370
|
-
"kindString": "Parameter",
|
|
3371
|
-
"flags": {},
|
|
3372
|
-
"type": {
|
|
3373
|
-
"type": "intrinsic",
|
|
3374
|
-
"name": "boolean"
|
|
3375
|
-
}
|
|
3376
|
-
}
|
|
3377
|
-
],
|
|
3378
|
-
"type": {
|
|
3379
|
-
"type": "intrinsic",
|
|
3380
|
-
"name": "void"
|
|
3381
|
-
}
|
|
3382
|
-
}
|
|
3383
|
-
]
|
|
3380
|
+
"type": {
|
|
3381
|
+
"type": "intrinsic",
|
|
3382
|
+
"name": "boolean"
|
|
3383
|
+
},
|
|
3384
|
+
"defaultValue": "false"
|
|
3384
3385
|
},
|
|
3385
3386
|
{
|
|
3386
|
-
"id":
|
|
3387
|
+
"id": 269,
|
|
3387
3388
|
"name": "gutterSize",
|
|
3388
3389
|
"kind": 262144,
|
|
3389
3390
|
"kindString": "Accessor",
|
|
@@ -3405,13 +3406,13 @@
|
|
|
3405
3406
|
"sources": [
|
|
3406
3407
|
{
|
|
3407
3408
|
"fileName": "projects/layout/src/modules/fluid-grid/fluid-grid.component.ts",
|
|
3408
|
-
"line":
|
|
3409
|
+
"line": 28,
|
|
3409
3410
|
"character": 13
|
|
3410
3411
|
}
|
|
3411
3412
|
],
|
|
3412
3413
|
"getSignature": [
|
|
3413
3414
|
{
|
|
3414
|
-
"id":
|
|
3415
|
+
"id": 270,
|
|
3415
3416
|
"name": "gutterSize",
|
|
3416
3417
|
"kind": 524288,
|
|
3417
3418
|
"kindString": "Get signature",
|
|
@@ -3427,14 +3428,14 @@
|
|
|
3427
3428
|
},
|
|
3428
3429
|
"type": {
|
|
3429
3430
|
"type": "reference",
|
|
3430
|
-
"id":
|
|
3431
|
+
"id": 553,
|
|
3431
3432
|
"name": "SkyFluidGridGutterSizeType"
|
|
3432
3433
|
}
|
|
3433
3434
|
}
|
|
3434
3435
|
],
|
|
3435
3436
|
"setSignature": [
|
|
3436
3437
|
{
|
|
3437
|
-
"id":
|
|
3438
|
+
"id": 271,
|
|
3438
3439
|
"name": "gutterSize",
|
|
3439
3440
|
"kind": 1048576,
|
|
3440
3441
|
"kindString": "Set signature",
|
|
@@ -3450,14 +3451,14 @@
|
|
|
3450
3451
|
},
|
|
3451
3452
|
"parameters": [
|
|
3452
3453
|
{
|
|
3453
|
-
"id":
|
|
3454
|
+
"id": 272,
|
|
3454
3455
|
"name": "value",
|
|
3455
3456
|
"kind": 32768,
|
|
3456
3457
|
"kindString": "Parameter",
|
|
3457
3458
|
"flags": {},
|
|
3458
3459
|
"type": {
|
|
3459
3460
|
"type": "reference",
|
|
3460
|
-
"id":
|
|
3461
|
+
"id": 553,
|
|
3461
3462
|
"name": "SkyFluidGridGutterSizeType"
|
|
3462
3463
|
}
|
|
3463
3464
|
}
|
|
@@ -3475,28 +3476,34 @@
|
|
|
3475
3476
|
"title": "Constructors",
|
|
3476
3477
|
"kind": 512,
|
|
3477
3478
|
"children": [
|
|
3478
|
-
|
|
3479
|
+
266
|
|
3480
|
+
]
|
|
3481
|
+
},
|
|
3482
|
+
{
|
|
3483
|
+
"title": "Properties",
|
|
3484
|
+
"kind": 1024,
|
|
3485
|
+
"children": [
|
|
3486
|
+
268
|
|
3479
3487
|
]
|
|
3480
3488
|
},
|
|
3481
3489
|
{
|
|
3482
3490
|
"title": "Accessors",
|
|
3483
3491
|
"kind": 262144,
|
|
3484
3492
|
"children": [
|
|
3485
|
-
|
|
3486
|
-
263
|
|
3493
|
+
269
|
|
3487
3494
|
]
|
|
3488
3495
|
}
|
|
3489
3496
|
],
|
|
3490
3497
|
"sources": [
|
|
3491
3498
|
{
|
|
3492
3499
|
"fileName": "projects/layout/src/modules/fluid-grid/fluid-grid.component.ts",
|
|
3493
|
-
"line":
|
|
3500
|
+
"line": 14,
|
|
3494
3501
|
"character": 13
|
|
3495
3502
|
}
|
|
3496
3503
|
]
|
|
3497
3504
|
},
|
|
3498
3505
|
{
|
|
3499
|
-
"id":
|
|
3506
|
+
"id": 274,
|
|
3500
3507
|
"name": "SkyRowComponent",
|
|
3501
3508
|
"kind": 128,
|
|
3502
3509
|
"kindString": "Class",
|
|
@@ -3520,7 +3527,7 @@
|
|
|
3520
3527
|
],
|
|
3521
3528
|
"children": [
|
|
3522
3529
|
{
|
|
3523
|
-
"id":
|
|
3530
|
+
"id": 277,
|
|
3524
3531
|
"name": "reverseColumnOrder",
|
|
3525
3532
|
"kind": 1024,
|
|
3526
3533
|
"kindString": "Property",
|
|
@@ -3567,14 +3574,14 @@
|
|
|
3567
3574
|
"title": "Constructors",
|
|
3568
3575
|
"kind": 512,
|
|
3569
3576
|
"children": [
|
|
3570
|
-
|
|
3577
|
+
275
|
|
3571
3578
|
]
|
|
3572
3579
|
},
|
|
3573
3580
|
{
|
|
3574
3581
|
"title": "Properties",
|
|
3575
3582
|
"kind": 1024,
|
|
3576
3583
|
"children": [
|
|
3577
|
-
|
|
3584
|
+
277
|
|
3578
3585
|
]
|
|
3579
3586
|
}
|
|
3580
3587
|
],
|
|
@@ -3587,7 +3594,7 @@
|
|
|
3587
3594
|
]
|
|
3588
3595
|
},
|
|
3589
3596
|
{
|
|
3590
|
-
"id":
|
|
3597
|
+
"id": 278,
|
|
3591
3598
|
"name": "SkyColumnComponent",
|
|
3592
3599
|
"kind": 128,
|
|
3593
3600
|
"kindString": "Class",
|
|
@@ -3611,7 +3618,7 @@
|
|
|
3611
3618
|
],
|
|
3612
3619
|
"children": [
|
|
3613
3620
|
{
|
|
3614
|
-
"id":
|
|
3621
|
+
"id": 288,
|
|
3615
3622
|
"name": "classnames",
|
|
3616
3623
|
"kind": 1024,
|
|
3617
3624
|
"kindString": "Property",
|
|
@@ -3635,7 +3642,7 @@
|
|
|
3635
3642
|
"sources": [
|
|
3636
3643
|
{
|
|
3637
3644
|
"fileName": "projects/layout/src/modules/fluid-grid/column.component.ts",
|
|
3638
|
-
"line":
|
|
3645
|
+
"line": 61,
|
|
3639
3646
|
"character": 9
|
|
3640
3647
|
}
|
|
3641
3648
|
],
|
|
@@ -3645,7 +3652,7 @@
|
|
|
3645
3652
|
}
|
|
3646
3653
|
},
|
|
3647
3654
|
{
|
|
3648
|
-
"id":
|
|
3655
|
+
"id": 287,
|
|
3649
3656
|
"name": "screenLarge",
|
|
3650
3657
|
"kind": 1024,
|
|
3651
3658
|
"kindString": "Property",
|
|
@@ -3670,7 +3677,7 @@
|
|
|
3670
3677
|
"sources": [
|
|
3671
3678
|
{
|
|
3672
3679
|
"fileName": "projects/layout/src/modules/fluid-grid/column.component.ts",
|
|
3673
|
-
"line":
|
|
3680
|
+
"line": 58,
|
|
3674
3681
|
"character": 9
|
|
3675
3682
|
}
|
|
3676
3683
|
],
|
|
@@ -3680,7 +3687,7 @@
|
|
|
3680
3687
|
}
|
|
3681
3688
|
},
|
|
3682
3689
|
{
|
|
3683
|
-
"id":
|
|
3690
|
+
"id": 286,
|
|
3684
3691
|
"name": "screenMedium",
|
|
3685
3692
|
"kind": 1024,
|
|
3686
3693
|
"kindString": "Property",
|
|
@@ -3705,7 +3712,7 @@
|
|
|
3705
3712
|
"sources": [
|
|
3706
3713
|
{
|
|
3707
3714
|
"fileName": "projects/layout/src/modules/fluid-grid/column.component.ts",
|
|
3708
|
-
"line":
|
|
3715
|
+
"line": 50,
|
|
3709
3716
|
"character": 9
|
|
3710
3717
|
}
|
|
3711
3718
|
],
|
|
@@ -3715,7 +3722,7 @@
|
|
|
3715
3722
|
}
|
|
3716
3723
|
},
|
|
3717
3724
|
{
|
|
3718
|
-
"id":
|
|
3725
|
+
"id": 285,
|
|
3719
3726
|
"name": "screenSmall",
|
|
3720
3727
|
"kind": 1024,
|
|
3721
3728
|
"kindString": "Property",
|
|
@@ -3740,7 +3747,7 @@
|
|
|
3740
3747
|
"sources": [
|
|
3741
3748
|
{
|
|
3742
3749
|
"fileName": "projects/layout/src/modules/fluid-grid/column.component.ts",
|
|
3743
|
-
"line":
|
|
3750
|
+
"line": 42,
|
|
3744
3751
|
"character": 9
|
|
3745
3752
|
}
|
|
3746
3753
|
],
|
|
@@ -3750,22 +3757,13 @@
|
|
|
3750
3757
|
}
|
|
3751
3758
|
},
|
|
3752
3759
|
{
|
|
3753
|
-
"id":
|
|
3760
|
+
"id": 281,
|
|
3754
3761
|
"name": "screenXSmall",
|
|
3755
|
-
"kind":
|
|
3756
|
-
"kindString": "
|
|
3762
|
+
"kind": 262144,
|
|
3763
|
+
"kindString": "Accessor",
|
|
3757
3764
|
"flags": {
|
|
3758
3765
|
"isPublic": true
|
|
3759
3766
|
},
|
|
3760
|
-
"comment": {
|
|
3761
|
-
"shortText": "Specifies the number of columns (1-12) to use on extra-small screens\n(less than 768px). If you do not specify a value, the fluid grid displays\nthe column at the full width of the screen.",
|
|
3762
|
-
"tags": [
|
|
3763
|
-
{
|
|
3764
|
-
"tag": "default",
|
|
3765
|
-
"text": "12\n"
|
|
3766
|
-
}
|
|
3767
|
-
]
|
|
3768
|
-
},
|
|
3769
3767
|
"decorators": [
|
|
3770
3768
|
{
|
|
3771
3769
|
"name": "Input",
|
|
@@ -3782,16 +3780,69 @@
|
|
|
3782
3780
|
{
|
|
3783
3781
|
"fileName": "projects/layout/src/modules/fluid-grid/column.component.ts",
|
|
3784
3782
|
"line": 28,
|
|
3785
|
-
"character":
|
|
3783
|
+
"character": 13
|
|
3786
3784
|
}
|
|
3787
3785
|
],
|
|
3788
|
-
"
|
|
3789
|
-
|
|
3790
|
-
|
|
3791
|
-
|
|
3786
|
+
"getSignature": [
|
|
3787
|
+
{
|
|
3788
|
+
"id": 282,
|
|
3789
|
+
"name": "screenXSmall",
|
|
3790
|
+
"kind": 524288,
|
|
3791
|
+
"kindString": "Get signature",
|
|
3792
|
+
"flags": {},
|
|
3793
|
+
"comment": {
|
|
3794
|
+
"shortText": "Specifies the number of columns (1-12) to use on extra-small screens\n(less than 768px). If you do not specify a value, the fluid grid displays\nthe column at the full width of the screen.",
|
|
3795
|
+
"tags": [
|
|
3796
|
+
{
|
|
3797
|
+
"tag": "default",
|
|
3798
|
+
"text": "12\n"
|
|
3799
|
+
}
|
|
3800
|
+
]
|
|
3801
|
+
},
|
|
3802
|
+
"type": {
|
|
3803
|
+
"type": "intrinsic",
|
|
3804
|
+
"name": "number"
|
|
3805
|
+
}
|
|
3806
|
+
}
|
|
3807
|
+
],
|
|
3808
|
+
"setSignature": [
|
|
3809
|
+
{
|
|
3810
|
+
"id": 283,
|
|
3811
|
+
"name": "screenXSmall",
|
|
3812
|
+
"kind": 1048576,
|
|
3813
|
+
"kindString": "Set signature",
|
|
3814
|
+
"flags": {},
|
|
3815
|
+
"comment": {
|
|
3816
|
+
"shortText": "Specifies the number of columns (1-12) to use on extra-small screens\n(less than 768px). If you do not specify a value, the fluid grid displays\nthe column at the full width of the screen.",
|
|
3817
|
+
"tags": [
|
|
3818
|
+
{
|
|
3819
|
+
"tag": "default",
|
|
3820
|
+
"text": "12\n"
|
|
3821
|
+
}
|
|
3822
|
+
]
|
|
3823
|
+
},
|
|
3824
|
+
"parameters": [
|
|
3825
|
+
{
|
|
3826
|
+
"id": 284,
|
|
3827
|
+
"name": "value",
|
|
3828
|
+
"kind": 32768,
|
|
3829
|
+
"kindString": "Parameter",
|
|
3830
|
+
"flags": {},
|
|
3831
|
+
"type": {
|
|
3832
|
+
"type": "intrinsic",
|
|
3833
|
+
"name": "number"
|
|
3834
|
+
}
|
|
3835
|
+
}
|
|
3836
|
+
],
|
|
3837
|
+
"type": {
|
|
3838
|
+
"type": "intrinsic",
|
|
3839
|
+
"name": "void"
|
|
3840
|
+
}
|
|
3841
|
+
}
|
|
3842
|
+
]
|
|
3792
3843
|
},
|
|
3793
3844
|
{
|
|
3794
|
-
"id":
|
|
3845
|
+
"id": 293,
|
|
3795
3846
|
"name": "getClassNames",
|
|
3796
3847
|
"kind": 2048,
|
|
3797
3848
|
"kindString": "Method",
|
|
@@ -3801,13 +3852,13 @@
|
|
|
3801
3852
|
"sources": [
|
|
3802
3853
|
{
|
|
3803
3854
|
"fileName": "projects/layout/src/modules/fluid-grid/column.component.ts",
|
|
3804
|
-
"line":
|
|
3855
|
+
"line": 77,
|
|
3805
3856
|
"character": 9
|
|
3806
3857
|
}
|
|
3807
3858
|
],
|
|
3808
3859
|
"signatures": [
|
|
3809
3860
|
{
|
|
3810
|
-
"id":
|
|
3861
|
+
"id": 294,
|
|
3811
3862
|
"name": "getClassNames",
|
|
3812
3863
|
"kind": 4096,
|
|
3813
3864
|
"kindString": "Call signature",
|
|
@@ -3820,7 +3871,7 @@
|
|
|
3820
3871
|
]
|
|
3821
3872
|
},
|
|
3822
3873
|
{
|
|
3823
|
-
"id":
|
|
3874
|
+
"id": 290,
|
|
3824
3875
|
"name": "ngOnChanges",
|
|
3825
3876
|
"kind": 2048,
|
|
3826
3877
|
"kindString": "Method",
|
|
@@ -3830,20 +3881,20 @@
|
|
|
3830
3881
|
"sources": [
|
|
3831
3882
|
{
|
|
3832
3883
|
"fileName": "projects/layout/src/modules/fluid-grid/column.component.ts",
|
|
3833
|
-
"line":
|
|
3884
|
+
"line": 65,
|
|
3834
3885
|
"character": 9
|
|
3835
3886
|
}
|
|
3836
3887
|
],
|
|
3837
3888
|
"signatures": [
|
|
3838
3889
|
{
|
|
3839
|
-
"id":
|
|
3890
|
+
"id": 291,
|
|
3840
3891
|
"name": "ngOnChanges",
|
|
3841
3892
|
"kind": 4096,
|
|
3842
3893
|
"kindString": "Call signature",
|
|
3843
3894
|
"flags": {},
|
|
3844
3895
|
"parameters": [
|
|
3845
3896
|
{
|
|
3846
|
-
"id":
|
|
3897
|
+
"id": 292,
|
|
3847
3898
|
"name": "changes",
|
|
3848
3899
|
"kind": 32768,
|
|
3849
3900
|
"kindString": "Parameter",
|
|
@@ -3872,7 +3923,7 @@
|
|
|
3872
3923
|
}
|
|
3873
3924
|
},
|
|
3874
3925
|
{
|
|
3875
|
-
"id":
|
|
3926
|
+
"id": 295,
|
|
3876
3927
|
"name": "ngOnInit",
|
|
3877
3928
|
"kind": 2048,
|
|
3878
3929
|
"kindString": "Method",
|
|
@@ -3882,13 +3933,13 @@
|
|
|
3882
3933
|
"sources": [
|
|
3883
3934
|
{
|
|
3884
3935
|
"fileName": "projects/layout/src/modules/fluid-grid/column.component.ts",
|
|
3885
|
-
"line":
|
|
3936
|
+
"line": 99,
|
|
3886
3937
|
"character": 9
|
|
3887
3938
|
}
|
|
3888
3939
|
],
|
|
3889
3940
|
"signatures": [
|
|
3890
3941
|
{
|
|
3891
|
-
"id":
|
|
3942
|
+
"id": 296,
|
|
3892
3943
|
"name": "ngOnInit",
|
|
3893
3944
|
"kind": 4096,
|
|
3894
3945
|
"kindString": "Call signature",
|
|
@@ -3914,27 +3965,33 @@
|
|
|
3914
3965
|
"title": "Constructors",
|
|
3915
3966
|
"kind": 512,
|
|
3916
3967
|
"children": [
|
|
3917
|
-
|
|
3968
|
+
279
|
|
3918
3969
|
]
|
|
3919
3970
|
},
|
|
3920
3971
|
{
|
|
3921
3972
|
"title": "Properties",
|
|
3922
3973
|
"kind": 1024,
|
|
3923
3974
|
"children": [
|
|
3924
|
-
|
|
3925
|
-
|
|
3926
|
-
|
|
3927
|
-
|
|
3928
|
-
278
|
|
3975
|
+
288,
|
|
3976
|
+
287,
|
|
3977
|
+
286,
|
|
3978
|
+
285
|
|
3929
3979
|
]
|
|
3930
3980
|
},
|
|
3931
3981
|
{
|
|
3932
|
-
"title": "
|
|
3933
|
-
"kind":
|
|
3982
|
+
"title": "Accessors",
|
|
3983
|
+
"kind": 262144,
|
|
3934
3984
|
"children": [
|
|
3935
|
-
|
|
3936
|
-
|
|
3937
|
-
|
|
3985
|
+
281
|
|
3986
|
+
]
|
|
3987
|
+
},
|
|
3988
|
+
{
|
|
3989
|
+
"title": "Methods",
|
|
3990
|
+
"kind": 2048,
|
|
3991
|
+
"children": [
|
|
3992
|
+
293,
|
|
3993
|
+
290,
|
|
3994
|
+
295
|
|
3938
3995
|
]
|
|
3939
3996
|
}
|
|
3940
3997
|
],
|
|
@@ -3961,7 +4018,7 @@
|
|
|
3961
4018
|
]
|
|
3962
4019
|
},
|
|
3963
4020
|
{
|
|
3964
|
-
"id":
|
|
4021
|
+
"id": 297,
|
|
3965
4022
|
"name": "SkyFormatComponent",
|
|
3966
4023
|
"kind": 128,
|
|
3967
4024
|
"kindString": "Class",
|
|
@@ -3982,7 +4039,7 @@
|
|
|
3982
4039
|
],
|
|
3983
4040
|
"children": [
|
|
3984
4041
|
{
|
|
3985
|
-
"id":
|
|
4042
|
+
"id": 300,
|
|
3986
4043
|
"name": "itemsForDisplay",
|
|
3987
4044
|
"kind": 1024,
|
|
3988
4045
|
"kindString": "Property",
|
|
@@ -4002,10 +4059,11 @@
|
|
|
4002
4059
|
"type": "reference",
|
|
4003
4060
|
"name": "SkyFormatItem"
|
|
4004
4061
|
}
|
|
4005
|
-
}
|
|
4062
|
+
},
|
|
4063
|
+
"defaultValue": "[]"
|
|
4006
4064
|
},
|
|
4007
4065
|
{
|
|
4008
|
-
"id":
|
|
4066
|
+
"id": 305,
|
|
4009
4067
|
"name": "args",
|
|
4010
4068
|
"kind": 262144,
|
|
4011
4069
|
"kindString": "Accessor",
|
|
@@ -4033,7 +4091,7 @@
|
|
|
4033
4091
|
],
|
|
4034
4092
|
"getSignature": [
|
|
4035
4093
|
{
|
|
4036
|
-
"id":
|
|
4094
|
+
"id": 306,
|
|
4037
4095
|
"name": "args",
|
|
4038
4096
|
"kind": 524288,
|
|
4039
4097
|
"kindString": "Get signature",
|
|
@@ -4060,7 +4118,7 @@
|
|
|
4060
4118
|
],
|
|
4061
4119
|
"setSignature": [
|
|
4062
4120
|
{
|
|
4063
|
-
"id":
|
|
4121
|
+
"id": 307,
|
|
4064
4122
|
"name": "args",
|
|
4065
4123
|
"kind": 1048576,
|
|
4066
4124
|
"kindString": "Set signature",
|
|
@@ -4070,7 +4128,7 @@
|
|
|
4070
4128
|
},
|
|
4071
4129
|
"parameters": [
|
|
4072
4130
|
{
|
|
4073
|
-
"id":
|
|
4131
|
+
"id": 308,
|
|
4074
4132
|
"name": "value",
|
|
4075
4133
|
"kind": 32768,
|
|
4076
4134
|
"kindString": "Parameter",
|
|
@@ -4100,7 +4158,7 @@
|
|
|
4100
4158
|
]
|
|
4101
4159
|
},
|
|
4102
4160
|
{
|
|
4103
|
-
"id":
|
|
4161
|
+
"id": 301,
|
|
4104
4162
|
"name": "text",
|
|
4105
4163
|
"kind": 262144,
|
|
4106
4164
|
"kindString": "Accessor",
|
|
@@ -4128,7 +4186,7 @@
|
|
|
4128
4186
|
],
|
|
4129
4187
|
"getSignature": [
|
|
4130
4188
|
{
|
|
4131
|
-
"id":
|
|
4189
|
+
"id": 302,
|
|
4132
4190
|
"name": "text",
|
|
4133
4191
|
"kind": 524288,
|
|
4134
4192
|
"kindString": "Get signature",
|
|
@@ -4144,7 +4202,7 @@
|
|
|
4144
4202
|
],
|
|
4145
4203
|
"setSignature": [
|
|
4146
4204
|
{
|
|
4147
|
-
"id":
|
|
4205
|
+
"id": 303,
|
|
4148
4206
|
"name": "text",
|
|
4149
4207
|
"kind": 1048576,
|
|
4150
4208
|
"kindString": "Set signature",
|
|
@@ -4154,7 +4212,7 @@
|
|
|
4154
4212
|
},
|
|
4155
4213
|
"parameters": [
|
|
4156
4214
|
{
|
|
4157
|
-
"id":
|
|
4215
|
+
"id": 304,
|
|
4158
4216
|
"name": "value",
|
|
4159
4217
|
"kind": 32768,
|
|
4160
4218
|
"kindString": "Parameter",
|
|
@@ -4178,22 +4236,22 @@
|
|
|
4178
4236
|
"title": "Constructors",
|
|
4179
4237
|
"kind": 512,
|
|
4180
4238
|
"children": [
|
|
4181
|
-
|
|
4239
|
+
298
|
|
4182
4240
|
]
|
|
4183
4241
|
},
|
|
4184
4242
|
{
|
|
4185
4243
|
"title": "Properties",
|
|
4186
4244
|
"kind": 1024,
|
|
4187
4245
|
"children": [
|
|
4188
|
-
|
|
4246
|
+
300
|
|
4189
4247
|
]
|
|
4190
4248
|
},
|
|
4191
4249
|
{
|
|
4192
4250
|
"title": "Accessors",
|
|
4193
4251
|
"kind": 262144,
|
|
4194
4252
|
"children": [
|
|
4195
|
-
|
|
4196
|
-
|
|
4253
|
+
305,
|
|
4254
|
+
301
|
|
4197
4255
|
]
|
|
4198
4256
|
}
|
|
4199
4257
|
],
|
|
@@ -4206,7 +4264,7 @@
|
|
|
4206
4264
|
]
|
|
4207
4265
|
},
|
|
4208
4266
|
{
|
|
4209
|
-
"id":
|
|
4267
|
+
"id": 313,
|
|
4210
4268
|
"name": "SkyPageComponent",
|
|
4211
4269
|
"kind": 128,
|
|
4212
4270
|
"kindString": "Class",
|
|
@@ -4230,7 +4288,7 @@
|
|
|
4230
4288
|
],
|
|
4231
4289
|
"children": [
|
|
4232
4290
|
{
|
|
4233
|
-
"id":
|
|
4291
|
+
"id": 314,
|
|
4234
4292
|
"name": "constructor",
|
|
4235
4293
|
"kind": 512,
|
|
4236
4294
|
"kindString": "Constructor",
|
|
@@ -4238,20 +4296,20 @@
|
|
|
4238
4296
|
"sources": [
|
|
4239
4297
|
{
|
|
4240
4298
|
"fileName": "projects/layout/src/modules/page/page.component.ts",
|
|
4241
|
-
"line":
|
|
4299
|
+
"line": 16,
|
|
4242
4300
|
"character": 2
|
|
4243
4301
|
}
|
|
4244
4302
|
],
|
|
4245
4303
|
"signatures": [
|
|
4246
4304
|
{
|
|
4247
|
-
"id":
|
|
4305
|
+
"id": 315,
|
|
4248
4306
|
"name": "SkyPageComponent",
|
|
4249
4307
|
"kind": 16384,
|
|
4250
4308
|
"kindString": "Constructor signature",
|
|
4251
4309
|
"flags": {},
|
|
4252
4310
|
"parameters": [
|
|
4253
4311
|
{
|
|
4254
|
-
"id":
|
|
4312
|
+
"id": 316,
|
|
4255
4313
|
"name": "themeAdapter",
|
|
4256
4314
|
"kind": 32768,
|
|
4257
4315
|
"kindString": "Parameter",
|
|
@@ -4264,14 +4322,14 @@
|
|
|
4264
4322
|
],
|
|
4265
4323
|
"type": {
|
|
4266
4324
|
"type": "reference",
|
|
4267
|
-
"id":
|
|
4325
|
+
"id": 313,
|
|
4268
4326
|
"name": "SkyPageComponent"
|
|
4269
4327
|
}
|
|
4270
4328
|
}
|
|
4271
4329
|
]
|
|
4272
4330
|
},
|
|
4273
4331
|
{
|
|
4274
|
-
"id":
|
|
4332
|
+
"id": 320,
|
|
4275
4333
|
"name": "ngOnDestroy",
|
|
4276
4334
|
"kind": 2048,
|
|
4277
4335
|
"kindString": "Method",
|
|
@@ -4281,13 +4339,13 @@
|
|
|
4281
4339
|
"sources": [
|
|
4282
4340
|
{
|
|
4283
4341
|
"fileName": "projects/layout/src/modules/page/page.component.ts",
|
|
4284
|
-
"line":
|
|
4342
|
+
"line": 24,
|
|
4285
4343
|
"character": 9
|
|
4286
4344
|
}
|
|
4287
4345
|
],
|
|
4288
4346
|
"signatures": [
|
|
4289
4347
|
{
|
|
4290
|
-
"id":
|
|
4348
|
+
"id": 321,
|
|
4291
4349
|
"name": "ngOnDestroy",
|
|
4292
4350
|
"kind": 4096,
|
|
4293
4351
|
"kindString": "Call signature",
|
|
@@ -4308,7 +4366,7 @@
|
|
|
4308
4366
|
}
|
|
4309
4367
|
},
|
|
4310
4368
|
{
|
|
4311
|
-
"id":
|
|
4369
|
+
"id": 318,
|
|
4312
4370
|
"name": "ngOnInit",
|
|
4313
4371
|
"kind": 2048,
|
|
4314
4372
|
"kindString": "Method",
|
|
@@ -4318,13 +4376,13 @@
|
|
|
4318
4376
|
"sources": [
|
|
4319
4377
|
{
|
|
4320
4378
|
"fileName": "projects/layout/src/modules/page/page.component.ts",
|
|
4321
|
-
"line":
|
|
4379
|
+
"line": 20,
|
|
4322
4380
|
"character": 9
|
|
4323
4381
|
}
|
|
4324
4382
|
],
|
|
4325
4383
|
"signatures": [
|
|
4326
4384
|
{
|
|
4327
|
-
"id":
|
|
4385
|
+
"id": 319,
|
|
4328
4386
|
"name": "ngOnInit",
|
|
4329
4387
|
"kind": 4096,
|
|
4330
4388
|
"kindString": "Call signature",
|
|
@@ -4350,15 +4408,15 @@
|
|
|
4350
4408
|
"title": "Constructors",
|
|
4351
4409
|
"kind": 512,
|
|
4352
4410
|
"children": [
|
|
4353
|
-
|
|
4411
|
+
314
|
|
4354
4412
|
]
|
|
4355
4413
|
},
|
|
4356
4414
|
{
|
|
4357
4415
|
"title": "Methods",
|
|
4358
4416
|
"kind": 2048,
|
|
4359
4417
|
"children": [
|
|
4360
|
-
|
|
4361
|
-
|
|
4418
|
+
320,
|
|
4419
|
+
318
|
|
4362
4420
|
]
|
|
4363
4421
|
}
|
|
4364
4422
|
],
|
|
@@ -4385,7 +4443,7 @@
|
|
|
4385
4443
|
]
|
|
4386
4444
|
},
|
|
4387
4445
|
{
|
|
4388
|
-
"id":
|
|
4446
|
+
"id": 322,
|
|
4389
4447
|
"name": "SkyPageSummaryComponent",
|
|
4390
4448
|
"kind": 128,
|
|
4391
4449
|
"kindString": "Class",
|
|
@@ -4415,7 +4473,7 @@
|
|
|
4415
4473
|
],
|
|
4416
4474
|
"children": [
|
|
4417
4475
|
{
|
|
4418
|
-
"id":
|
|
4476
|
+
"id": 323,
|
|
4419
4477
|
"name": "constructor",
|
|
4420
4478
|
"kind": 512,
|
|
4421
4479
|
"kindString": "Constructor",
|
|
@@ -4423,20 +4481,20 @@
|
|
|
4423
4481
|
"sources": [
|
|
4424
4482
|
{
|
|
4425
4483
|
"fileName": "projects/layout/src/modules/page-summary/page-summary.component.ts",
|
|
4426
|
-
"line":
|
|
4484
|
+
"line": 53,
|
|
4427
4485
|
"character": 2
|
|
4428
4486
|
}
|
|
4429
4487
|
],
|
|
4430
4488
|
"signatures": [
|
|
4431
4489
|
{
|
|
4432
|
-
"id":
|
|
4490
|
+
"id": 324,
|
|
4433
4491
|
"name": "SkyPageSummaryComponent",
|
|
4434
4492
|
"kind": 16384,
|
|
4435
4493
|
"kindString": "Constructor signature",
|
|
4436
4494
|
"flags": {},
|
|
4437
4495
|
"parameters": [
|
|
4438
4496
|
{
|
|
4439
|
-
"id":
|
|
4497
|
+
"id": 325,
|
|
4440
4498
|
"name": "elRef",
|
|
4441
4499
|
"kind": 32768,
|
|
4442
4500
|
"kindString": "Parameter",
|
|
@@ -4455,7 +4513,7 @@
|
|
|
4455
4513
|
}
|
|
4456
4514
|
},
|
|
4457
4515
|
{
|
|
4458
|
-
"id":
|
|
4516
|
+
"id": 326,
|
|
4459
4517
|
"name": "adapter",
|
|
4460
4518
|
"kind": 32768,
|
|
4461
4519
|
"kindString": "Parameter",
|
|
@@ -4466,7 +4524,7 @@
|
|
|
4466
4524
|
}
|
|
4467
4525
|
},
|
|
4468
4526
|
{
|
|
4469
|
-
"id":
|
|
4527
|
+
"id": 327,
|
|
4470
4528
|
"name": "mediaQueryService",
|
|
4471
4529
|
"kind": 32768,
|
|
4472
4530
|
"kindString": "Parameter",
|
|
@@ -4477,7 +4535,7 @@
|
|
|
4477
4535
|
}
|
|
4478
4536
|
},
|
|
4479
4537
|
{
|
|
4480
|
-
"id":
|
|
4538
|
+
"id": 328,
|
|
4481
4539
|
"name": "logger",
|
|
4482
4540
|
"kind": 32768,
|
|
4483
4541
|
"kindString": "Parameter",
|
|
@@ -4486,47 +4544,133 @@
|
|
|
4486
4544
|
"type": "reference",
|
|
4487
4545
|
"name": "SkyLogService"
|
|
4488
4546
|
}
|
|
4547
|
+
},
|
|
4548
|
+
{
|
|
4549
|
+
"id": 329,
|
|
4550
|
+
"name": "changeDetector",
|
|
4551
|
+
"kind": 32768,
|
|
4552
|
+
"kindString": "Parameter",
|
|
4553
|
+
"flags": {},
|
|
4554
|
+
"type": {
|
|
4555
|
+
"type": "reference",
|
|
4556
|
+
"qualifiedName": "ChangeDetectorRef",
|
|
4557
|
+
"package": "@angular/core",
|
|
4558
|
+
"name": "ChangeDetectorRef"
|
|
4559
|
+
}
|
|
4489
4560
|
}
|
|
4490
4561
|
],
|
|
4491
4562
|
"type": {
|
|
4492
4563
|
"type": "reference",
|
|
4493
|
-
"id":
|
|
4564
|
+
"id": 322,
|
|
4494
4565
|
"name": "SkyPageSummaryComponent"
|
|
4495
4566
|
}
|
|
4496
4567
|
}
|
|
4497
4568
|
]
|
|
4498
4569
|
},
|
|
4499
4570
|
{
|
|
4500
|
-
"id":
|
|
4571
|
+
"id": 330,
|
|
4501
4572
|
"name": "hasKeyInfo",
|
|
4502
|
-
"kind":
|
|
4503
|
-
"kindString": "
|
|
4573
|
+
"kind": 1024,
|
|
4574
|
+
"kindString": "Property",
|
|
4504
4575
|
"flags": {
|
|
4505
4576
|
"isPublic": true
|
|
4506
4577
|
},
|
|
4507
4578
|
"sources": [
|
|
4508
4579
|
{
|
|
4509
4580
|
"fileName": "projects/layout/src/modules/page-summary/page-summary.component.ts",
|
|
4510
|
-
"line":
|
|
4511
|
-
"character":
|
|
4581
|
+
"line": 36,
|
|
4582
|
+
"character": 9
|
|
4512
4583
|
}
|
|
4513
4584
|
],
|
|
4514
|
-
"
|
|
4585
|
+
"type": {
|
|
4586
|
+
"type": "intrinsic",
|
|
4587
|
+
"name": "boolean"
|
|
4588
|
+
},
|
|
4589
|
+
"defaultValue": "false"
|
|
4590
|
+
},
|
|
4591
|
+
{
|
|
4592
|
+
"id": 331,
|
|
4593
|
+
"name": "keyInfoComponents",
|
|
4594
|
+
"kind": 1024,
|
|
4595
|
+
"kindString": "Property",
|
|
4596
|
+
"flags": {
|
|
4597
|
+
"isPublic": true
|
|
4598
|
+
},
|
|
4599
|
+
"decorators": [
|
|
4515
4600
|
{
|
|
4516
|
-
"
|
|
4517
|
-
"
|
|
4518
|
-
|
|
4519
|
-
|
|
4601
|
+
"name": "ContentChildren",
|
|
4602
|
+
"type": {
|
|
4603
|
+
"type": "reference",
|
|
4604
|
+
"qualifiedName": "ContentChildrenDecorator",
|
|
4605
|
+
"package": "@angular/core",
|
|
4606
|
+
"name": "ContentChildren"
|
|
4607
|
+
},
|
|
4608
|
+
"arguments": {
|
|
4609
|
+
"selector": "SkyPageSummaryKeyInfoComponent",
|
|
4610
|
+
"opts": "{\n read: SkyPageSummaryKeyInfoComponent,\n }"
|
|
4611
|
+
}
|
|
4612
|
+
}
|
|
4613
|
+
],
|
|
4614
|
+
"sources": [
|
|
4615
|
+
{
|
|
4616
|
+
"fileName": "projects/layout/src/modules/page-summary/page-summary.component.ts",
|
|
4617
|
+
"line": 41,
|
|
4618
|
+
"character": 9
|
|
4619
|
+
}
|
|
4620
|
+
],
|
|
4621
|
+
"type": {
|
|
4622
|
+
"type": "reference",
|
|
4623
|
+
"typeArguments": [
|
|
4624
|
+
{
|
|
4625
|
+
"type": "reference",
|
|
4626
|
+
"id": 353,
|
|
4627
|
+
"name": "SkyPageSummaryKeyInfoComponent"
|
|
4628
|
+
}
|
|
4629
|
+
],
|
|
4630
|
+
"qualifiedName": "QueryList",
|
|
4631
|
+
"package": "@angular/core",
|
|
4632
|
+
"name": "QueryList"
|
|
4633
|
+
}
|
|
4634
|
+
},
|
|
4635
|
+
{
|
|
4636
|
+
"id": 340,
|
|
4637
|
+
"name": "ngAfterContentInit",
|
|
4638
|
+
"kind": 2048,
|
|
4639
|
+
"kindString": "Method",
|
|
4640
|
+
"flags": {
|
|
4641
|
+
"isPublic": true
|
|
4642
|
+
},
|
|
4643
|
+
"sources": [
|
|
4644
|
+
{
|
|
4645
|
+
"fileName": "projects/layout/src/modules/page-summary/page-summary.component.ts",
|
|
4646
|
+
"line": 84,
|
|
4647
|
+
"character": 9
|
|
4648
|
+
}
|
|
4649
|
+
],
|
|
4650
|
+
"signatures": [
|
|
4651
|
+
{
|
|
4652
|
+
"id": 341,
|
|
4653
|
+
"name": "ngAfterContentInit",
|
|
4654
|
+
"kind": 4096,
|
|
4655
|
+
"kindString": "Call signature",
|
|
4520
4656
|
"flags": {},
|
|
4521
4657
|
"type": {
|
|
4522
4658
|
"type": "intrinsic",
|
|
4523
|
-
"name": "
|
|
4659
|
+
"name": "void"
|
|
4660
|
+
},
|
|
4661
|
+
"implementationOf": {
|
|
4662
|
+
"type": "reference",
|
|
4663
|
+
"name": "AfterContentInit.ngAfterContentInit"
|
|
4524
4664
|
}
|
|
4525
4665
|
}
|
|
4526
|
-
]
|
|
4666
|
+
],
|
|
4667
|
+
"implementationOf": {
|
|
4668
|
+
"type": "reference",
|
|
4669
|
+
"name": "AfterContentInit.ngAfterContentInit"
|
|
4670
|
+
}
|
|
4527
4671
|
},
|
|
4528
4672
|
{
|
|
4529
|
-
"id":
|
|
4673
|
+
"id": 338,
|
|
4530
4674
|
"name": "ngAfterViewInit",
|
|
4531
4675
|
"kind": 2048,
|
|
4532
4676
|
"kindString": "Method",
|
|
@@ -4536,13 +4680,13 @@
|
|
|
4536
4680
|
"sources": [
|
|
4537
4681
|
{
|
|
4538
4682
|
"fileName": "projects/layout/src/modules/page-summary/page-summary.component.ts",
|
|
4539
|
-
"line":
|
|
4683
|
+
"line": 73,
|
|
4540
4684
|
"character": 9
|
|
4541
4685
|
}
|
|
4542
4686
|
],
|
|
4543
4687
|
"signatures": [
|
|
4544
4688
|
{
|
|
4545
|
-
"id":
|
|
4689
|
+
"id": 339,
|
|
4546
4690
|
"name": "ngAfterViewInit",
|
|
4547
4691
|
"kind": 4096,
|
|
4548
4692
|
"kindString": "Call signature",
|
|
@@ -4563,7 +4707,7 @@
|
|
|
4563
4707
|
}
|
|
4564
4708
|
},
|
|
4565
4709
|
{
|
|
4566
|
-
"id":
|
|
4710
|
+
"id": 342,
|
|
4567
4711
|
"name": "ngOnDestroy",
|
|
4568
4712
|
"kind": 2048,
|
|
4569
4713
|
"kindString": "Method",
|
|
@@ -4573,13 +4717,13 @@
|
|
|
4573
4717
|
"sources": [
|
|
4574
4718
|
{
|
|
4575
4719
|
"fileName": "projects/layout/src/modules/page-summary/page-summary.component.ts",
|
|
4576
|
-
"line":
|
|
4720
|
+
"line": 98,
|
|
4577
4721
|
"character": 9
|
|
4578
4722
|
}
|
|
4579
4723
|
],
|
|
4580
4724
|
"signatures": [
|
|
4581
4725
|
{
|
|
4582
|
-
"id":
|
|
4726
|
+
"id": 343,
|
|
4583
4727
|
"name": "ngOnDestroy",
|
|
4584
4728
|
"kind": 4096,
|
|
4585
4729
|
"kindString": "Call signature",
|
|
@@ -4605,49 +4749,57 @@
|
|
|
4605
4749
|
"title": "Constructors",
|
|
4606
4750
|
"kind": 512,
|
|
4607
4751
|
"children": [
|
|
4608
|
-
|
|
4752
|
+
323
|
|
4609
4753
|
]
|
|
4610
4754
|
},
|
|
4611
4755
|
{
|
|
4612
|
-
"title": "
|
|
4613
|
-
"kind":
|
|
4756
|
+
"title": "Properties",
|
|
4757
|
+
"kind": 1024,
|
|
4614
4758
|
"children": [
|
|
4615
|
-
|
|
4759
|
+
330,
|
|
4760
|
+
331
|
|
4616
4761
|
]
|
|
4617
4762
|
},
|
|
4618
4763
|
{
|
|
4619
4764
|
"title": "Methods",
|
|
4620
4765
|
"kind": 2048,
|
|
4621
4766
|
"children": [
|
|
4622
|
-
|
|
4623
|
-
|
|
4767
|
+
340,
|
|
4768
|
+
338,
|
|
4769
|
+
342
|
|
4624
4770
|
]
|
|
4625
4771
|
}
|
|
4626
4772
|
],
|
|
4627
4773
|
"sources": [
|
|
4628
4774
|
{
|
|
4629
4775
|
"fileName": "projects/layout/src/modules/page-summary/page-summary.component.ts",
|
|
4630
|
-
"line":
|
|
4776
|
+
"line": 33,
|
|
4631
4777
|
"character": 13
|
|
4632
4778
|
}
|
|
4633
4779
|
],
|
|
4634
4780
|
"implementedTypes": [
|
|
4635
4781
|
{
|
|
4636
4782
|
"type": "reference",
|
|
4637
|
-
"qualifiedName": "
|
|
4783
|
+
"qualifiedName": "AfterContentInit",
|
|
4638
4784
|
"package": "@angular/core",
|
|
4639
|
-
"name": "
|
|
4785
|
+
"name": "AfterContentInit"
|
|
4640
4786
|
},
|
|
4641
4787
|
{
|
|
4642
4788
|
"type": "reference",
|
|
4643
4789
|
"qualifiedName": "AfterViewInit",
|
|
4644
4790
|
"package": "@angular/core",
|
|
4645
4791
|
"name": "AfterViewInit"
|
|
4792
|
+
},
|
|
4793
|
+
{
|
|
4794
|
+
"type": "reference",
|
|
4795
|
+
"qualifiedName": "OnDestroy",
|
|
4796
|
+
"package": "@angular/core",
|
|
4797
|
+
"name": "OnDestroy"
|
|
4646
4798
|
}
|
|
4647
4799
|
]
|
|
4648
4800
|
},
|
|
4649
4801
|
{
|
|
4650
|
-
"id":
|
|
4802
|
+
"id": 344,
|
|
4651
4803
|
"name": "SkyPageSummaryAlertComponent",
|
|
4652
4804
|
"kind": 128,
|
|
4653
4805
|
"kindString": "Class",
|
|
@@ -4681,7 +4833,7 @@
|
|
|
4681
4833
|
"title": "Constructors",
|
|
4682
4834
|
"kind": 512,
|
|
4683
4835
|
"children": [
|
|
4684
|
-
|
|
4836
|
+
345
|
|
4685
4837
|
]
|
|
4686
4838
|
}
|
|
4687
4839
|
],
|
|
@@ -4694,7 +4846,7 @@
|
|
|
4694
4846
|
]
|
|
4695
4847
|
},
|
|
4696
4848
|
{
|
|
4697
|
-
"id":
|
|
4849
|
+
"id": 347,
|
|
4698
4850
|
"name": "SkyPageSummaryContentComponent",
|
|
4699
4851
|
"kind": 128,
|
|
4700
4852
|
"kindString": "Class",
|
|
@@ -4728,7 +4880,7 @@
|
|
|
4728
4880
|
"title": "Constructors",
|
|
4729
4881
|
"kind": 512,
|
|
4730
4882
|
"children": [
|
|
4731
|
-
|
|
4883
|
+
348
|
|
4732
4884
|
]
|
|
4733
4885
|
}
|
|
4734
4886
|
],
|
|
@@ -4782,7 +4934,7 @@
|
|
|
4782
4934
|
]
|
|
4783
4935
|
},
|
|
4784
4936
|
{
|
|
4785
|
-
"id":
|
|
4937
|
+
"id": 350,
|
|
4786
4938
|
"name": "SkyPageSummaryImageComponent",
|
|
4787
4939
|
"kind": 128,
|
|
4788
4940
|
"kindString": "Class",
|
|
@@ -4816,7 +4968,7 @@
|
|
|
4816
4968
|
"title": "Constructors",
|
|
4817
4969
|
"kind": 512,
|
|
4818
4970
|
"children": [
|
|
4819
|
-
|
|
4971
|
+
351
|
|
4820
4972
|
]
|
|
4821
4973
|
}
|
|
4822
4974
|
],
|
|
@@ -4829,7 +4981,7 @@
|
|
|
4829
4981
|
]
|
|
4830
4982
|
},
|
|
4831
4983
|
{
|
|
4832
|
-
"id":
|
|
4984
|
+
"id": 353,
|
|
4833
4985
|
"name": "SkyPageSummaryKeyInfoComponent",
|
|
4834
4986
|
"kind": 128,
|
|
4835
4987
|
"kindString": "Class",
|
|
@@ -4863,7 +5015,7 @@
|
|
|
4863
5015
|
"title": "Constructors",
|
|
4864
5016
|
"kind": 512,
|
|
4865
5017
|
"children": [
|
|
4866
|
-
|
|
5018
|
+
354
|
|
4867
5019
|
]
|
|
4868
5020
|
}
|
|
4869
5021
|
],
|
|
@@ -4876,7 +5028,7 @@
|
|
|
4876
5028
|
]
|
|
4877
5029
|
},
|
|
4878
5030
|
{
|
|
4879
|
-
"id":
|
|
5031
|
+
"id": 356,
|
|
4880
5032
|
"name": "SkyPageSummaryStatusComponent",
|
|
4881
5033
|
"kind": 128,
|
|
4882
5034
|
"kindString": "Class",
|
|
@@ -4910,7 +5062,7 @@
|
|
|
4910
5062
|
"title": "Constructors",
|
|
4911
5063
|
"kind": 512,
|
|
4912
5064
|
"children": [
|
|
4913
|
-
|
|
5065
|
+
357
|
|
4914
5066
|
]
|
|
4915
5067
|
}
|
|
4916
5068
|
],
|
|
@@ -4923,7 +5075,7 @@
|
|
|
4923
5075
|
]
|
|
4924
5076
|
},
|
|
4925
5077
|
{
|
|
4926
|
-
"id":
|
|
5078
|
+
"id": 359,
|
|
4927
5079
|
"name": "SkyPageSummarySubtitleComponent",
|
|
4928
5080
|
"kind": 128,
|
|
4929
5081
|
"kindString": "Class",
|
|
@@ -4957,7 +5109,7 @@
|
|
|
4957
5109
|
"title": "Constructors",
|
|
4958
5110
|
"kind": 512,
|
|
4959
5111
|
"children": [
|
|
4960
|
-
|
|
5112
|
+
360
|
|
4961
5113
|
]
|
|
4962
5114
|
}
|
|
4963
5115
|
],
|
|
@@ -4970,7 +5122,7 @@
|
|
|
4970
5122
|
]
|
|
4971
5123
|
},
|
|
4972
5124
|
{
|
|
4973
|
-
"id":
|
|
5125
|
+
"id": 362,
|
|
4974
5126
|
"name": "SkyPageSummaryTitleComponent",
|
|
4975
5127
|
"kind": 128,
|
|
4976
5128
|
"kindString": "Class",
|
|
@@ -5004,7 +5156,7 @@
|
|
|
5004
5156
|
"title": "Constructors",
|
|
5005
5157
|
"kind": 512,
|
|
5006
5158
|
"children": [
|
|
5007
|
-
|
|
5159
|
+
363
|
|
5008
5160
|
]
|
|
5009
5161
|
}
|
|
5010
5162
|
],
|
|
@@ -5017,7 +5169,7 @@
|
|
|
5017
5169
|
]
|
|
5018
5170
|
},
|
|
5019
5171
|
{
|
|
5020
|
-
"id":
|
|
5172
|
+
"id": 365,
|
|
5021
5173
|
"name": "SkyTextExpandComponent",
|
|
5022
5174
|
"kind": 128,
|
|
5023
5175
|
"kindString": "Class",
|
|
@@ -5032,13 +5184,13 @@
|
|
|
5032
5184
|
"name": "Component"
|
|
5033
5185
|
},
|
|
5034
5186
|
"arguments": {
|
|
5035
|
-
"obj": "{\n selector: 'sky-text-expand',\n templateUrl: './text-expand.component.html',\n styleUrls: ['./text-expand.component.scss'],\n providers: [SkyTextExpandAdapterService],\n}"
|
|
5187
|
+
"obj": "{\n animations: [\n trigger('expansionAnimation', [\n transition(':enter', []),\n state(\n 'true',\n style({\n maxHeight: '{{transitionHeight}}px',\n }),\n { params: { transitionHeight: 0 } }\n ),\n state(\n 'false',\n style({\n maxHeight: '{{transitionHeight}}px',\n }),\n { params: { transitionHeight: 0 } }\n ),\n transition('true => false', animate('250ms ease')),\n transition('false => true', animate('250ms ease')),\n transition('void => *', []),\n ]),\n ],\n selector: 'sky-text-expand',\n templateUrl: './text-expand.component.html',\n styleUrls: ['./text-expand.component.scss'],\n providers: [SkyTextExpandAdapterService],\n}"
|
|
5036
5188
|
}
|
|
5037
5189
|
}
|
|
5038
5190
|
],
|
|
5039
5191
|
"children": [
|
|
5040
5192
|
{
|
|
5041
|
-
"id":
|
|
5193
|
+
"id": 366,
|
|
5042
5194
|
"name": "constructor",
|
|
5043
5195
|
"kind": 512,
|
|
5044
5196
|
"kindString": "Constructor",
|
|
@@ -5046,20 +5198,20 @@
|
|
|
5046
5198
|
"sources": [
|
|
5047
5199
|
{
|
|
5048
5200
|
"fileName": "projects/layout/src/modules/text-expand/text-expand.component.ts",
|
|
5049
|
-
"line":
|
|
5201
|
+
"line": 200,
|
|
5050
5202
|
"character": 2
|
|
5051
5203
|
}
|
|
5052
5204
|
],
|
|
5053
5205
|
"signatures": [
|
|
5054
5206
|
{
|
|
5055
|
-
"id":
|
|
5207
|
+
"id": 367,
|
|
5056
5208
|
"name": "SkyTextExpandComponent",
|
|
5057
5209
|
"kind": 16384,
|
|
5058
5210
|
"kindString": "Constructor signature",
|
|
5059
5211
|
"flags": {},
|
|
5060
5212
|
"parameters": [
|
|
5061
5213
|
{
|
|
5062
|
-
"id":
|
|
5214
|
+
"id": 368,
|
|
5063
5215
|
"name": "resources",
|
|
5064
5216
|
"kind": 32768,
|
|
5065
5217
|
"kindString": "Parameter",
|
|
@@ -5070,8 +5222,8 @@
|
|
|
5070
5222
|
}
|
|
5071
5223
|
},
|
|
5072
5224
|
{
|
|
5073
|
-
"id":
|
|
5074
|
-
"name": "
|
|
5225
|
+
"id": 369,
|
|
5226
|
+
"name": "modalSvc",
|
|
5075
5227
|
"kind": 32768,
|
|
5076
5228
|
"kindString": "Parameter",
|
|
5077
5229
|
"flags": {},
|
|
@@ -5081,7 +5233,7 @@
|
|
|
5081
5233
|
}
|
|
5082
5234
|
},
|
|
5083
5235
|
{
|
|
5084
|
-
"id":
|
|
5236
|
+
"id": 370,
|
|
5085
5237
|
"name": "textExpandAdapter",
|
|
5086
5238
|
"kind": 32768,
|
|
5087
5239
|
"kindString": "Parameter",
|
|
@@ -5094,14 +5246,14 @@
|
|
|
5094
5246
|
],
|
|
5095
5247
|
"type": {
|
|
5096
5248
|
"type": "reference",
|
|
5097
|
-
"id":
|
|
5249
|
+
"id": 365,
|
|
5098
5250
|
"name": "SkyTextExpandComponent"
|
|
5099
5251
|
}
|
|
5100
5252
|
}
|
|
5101
5253
|
]
|
|
5102
5254
|
},
|
|
5103
5255
|
{
|
|
5104
|
-
"id":
|
|
5256
|
+
"id": 389,
|
|
5105
5257
|
"name": "buttonText",
|
|
5106
5258
|
"kind": 1024,
|
|
5107
5259
|
"kindString": "Property",
|
|
@@ -5111,17 +5263,61 @@
|
|
|
5111
5263
|
"sources": [
|
|
5112
5264
|
{
|
|
5113
5265
|
"fileName": "projects/layout/src/modules/text-expand/text-expand.component.ts",
|
|
5114
|
-
"line":
|
|
5266
|
+
"line": 145,
|
|
5115
5267
|
"character": 9
|
|
5116
5268
|
}
|
|
5117
5269
|
],
|
|
5118
5270
|
"type": {
|
|
5119
5271
|
"type": "intrinsic",
|
|
5120
5272
|
"name": "string"
|
|
5273
|
+
},
|
|
5274
|
+
"defaultValue": "''"
|
|
5275
|
+
},
|
|
5276
|
+
{
|
|
5277
|
+
"id": 395,
|
|
5278
|
+
"name": "containerEl",
|
|
5279
|
+
"kind": 1024,
|
|
5280
|
+
"kindString": "Property",
|
|
5281
|
+
"flags": {
|
|
5282
|
+
"isPublic": true
|
|
5283
|
+
},
|
|
5284
|
+
"decorators": [
|
|
5285
|
+
{
|
|
5286
|
+
"name": "ViewChild",
|
|
5287
|
+
"type": {
|
|
5288
|
+
"type": "reference",
|
|
5289
|
+
"qualifiedName": "ViewChildDecorator",
|
|
5290
|
+
"package": "@angular/core",
|
|
5291
|
+
"name": "ViewChild"
|
|
5292
|
+
},
|
|
5293
|
+
"arguments": {
|
|
5294
|
+
"selector": "'container'",
|
|
5295
|
+
"opts": "{\n read: ElementRef,\n static: true,\n }"
|
|
5296
|
+
}
|
|
5297
|
+
}
|
|
5298
|
+
],
|
|
5299
|
+
"sources": [
|
|
5300
|
+
{
|
|
5301
|
+
"fileName": "projects/layout/src/modules/text-expand/text-expand.component.ts",
|
|
5302
|
+
"line": 161,
|
|
5303
|
+
"character": 9
|
|
5304
|
+
}
|
|
5305
|
+
],
|
|
5306
|
+
"type": {
|
|
5307
|
+
"type": "reference",
|
|
5308
|
+
"typeArguments": [
|
|
5309
|
+
{
|
|
5310
|
+
"type": "intrinsic",
|
|
5311
|
+
"name": "any"
|
|
5312
|
+
}
|
|
5313
|
+
],
|
|
5314
|
+
"qualifiedName": "ElementRef",
|
|
5315
|
+
"package": "@angular/core",
|
|
5316
|
+
"name": "ElementRef"
|
|
5121
5317
|
}
|
|
5122
5318
|
},
|
|
5123
5319
|
{
|
|
5124
|
-
"id":
|
|
5320
|
+
"id": 390,
|
|
5125
5321
|
"name": "contentSectionId",
|
|
5126
5322
|
"kind": 1024,
|
|
5127
5323
|
"kindString": "Property",
|
|
@@ -5131,7 +5327,7 @@
|
|
|
5131
5327
|
"sources": [
|
|
5132
5328
|
{
|
|
5133
5329
|
"fileName": "projects/layout/src/modules/text-expand/text-expand.component.ts",
|
|
5134
|
-
"line":
|
|
5330
|
+
"line": 147,
|
|
5135
5331
|
"character": 9
|
|
5136
5332
|
}
|
|
5137
5333
|
],
|
|
@@ -5142,7 +5338,7 @@
|
|
|
5142
5338
|
"defaultValue": "..."
|
|
5143
5339
|
},
|
|
5144
5340
|
{
|
|
5145
|
-
"id":
|
|
5341
|
+
"id": 371,
|
|
5146
5342
|
"name": "expandModalTitle",
|
|
5147
5343
|
"kind": 1024,
|
|
5148
5344
|
"kindString": "Property",
|
|
@@ -5173,7 +5369,7 @@
|
|
|
5173
5369
|
"sources": [
|
|
5174
5370
|
{
|
|
5175
5371
|
"fileName": "projects/layout/src/modules/text-expand/text-expand.component.ts",
|
|
5176
|
-
"line":
|
|
5372
|
+
"line": 64,
|
|
5177
5373
|
"character": 9
|
|
5178
5374
|
}
|
|
5179
5375
|
],
|
|
@@ -5183,7 +5379,7 @@
|
|
|
5183
5379
|
}
|
|
5184
5380
|
},
|
|
5185
5381
|
{
|
|
5186
|
-
"id":
|
|
5382
|
+
"id": 391,
|
|
5187
5383
|
"name": "expandable",
|
|
5188
5384
|
"kind": 1024,
|
|
5189
5385
|
"kindString": "Property",
|
|
@@ -5193,27 +5389,7 @@
|
|
|
5193
5389
|
"sources": [
|
|
5194
5390
|
{
|
|
5195
5391
|
"fileName": "projects/layout/src/modules/text-expand/text-expand.component.ts",
|
|
5196
|
-
"line":
|
|
5197
|
-
"character": 9
|
|
5198
|
-
}
|
|
5199
|
-
],
|
|
5200
|
-
"type": {
|
|
5201
|
-
"type": "intrinsic",
|
|
5202
|
-
"name": "boolean"
|
|
5203
|
-
}
|
|
5204
|
-
},
|
|
5205
|
-
{
|
|
5206
|
-
"id": 370,
|
|
5207
|
-
"name": "isExpanded",
|
|
5208
|
-
"kind": 1024,
|
|
5209
|
-
"kindString": "Property",
|
|
5210
|
-
"flags": {
|
|
5211
|
-
"isPublic": true
|
|
5212
|
-
},
|
|
5213
|
-
"sources": [
|
|
5214
|
-
{
|
|
5215
|
-
"fileName": "projects/layout/src/modules/text-expand/text-expand.component.ts",
|
|
5216
|
-
"line": 96,
|
|
5392
|
+
"line": 149,
|
|
5217
5393
|
"character": 9
|
|
5218
5394
|
}
|
|
5219
5395
|
],
|
|
@@ -5224,8 +5400,8 @@
|
|
|
5224
5400
|
"defaultValue": "false"
|
|
5225
5401
|
},
|
|
5226
5402
|
{
|
|
5227
|
-
"id":
|
|
5228
|
-
"name": "
|
|
5403
|
+
"id": 392,
|
|
5404
|
+
"name": "isExpanded",
|
|
5229
5405
|
"kind": 1024,
|
|
5230
5406
|
"kindString": "Property",
|
|
5231
5407
|
"flags": {
|
|
@@ -5234,7 +5410,7 @@
|
|
|
5234
5410
|
"sources": [
|
|
5235
5411
|
{
|
|
5236
5412
|
"fileName": "projects/layout/src/modules/text-expand/text-expand.component.ts",
|
|
5237
|
-
"line":
|
|
5413
|
+
"line": 151,
|
|
5238
5414
|
"character": 9
|
|
5239
5415
|
}
|
|
5240
5416
|
],
|
|
@@ -5244,68 +5420,38 @@
|
|
|
5244
5420
|
}
|
|
5245
5421
|
},
|
|
5246
5422
|
{
|
|
5247
|
-
"id":
|
|
5248
|
-
"name": "
|
|
5423
|
+
"id": 393,
|
|
5424
|
+
"name": "isModal",
|
|
5249
5425
|
"kind": 1024,
|
|
5250
5426
|
"kindString": "Property",
|
|
5251
5427
|
"flags": {
|
|
5252
5428
|
"isPublic": true
|
|
5253
5429
|
},
|
|
5254
|
-
"comment": {
|
|
5255
|
-
"shortText": "Specifies the maximum number of text characters to display inline when users select the link\nto expand the full text. If the text exceeds this limit, then the component expands\nthe full text in a modal instead."
|
|
5256
|
-
},
|
|
5257
|
-
"decorators": [
|
|
5258
|
-
{
|
|
5259
|
-
"name": "Input",
|
|
5260
|
-
"type": {
|
|
5261
|
-
"type": "reference",
|
|
5262
|
-
"qualifiedName": "InputDecorator",
|
|
5263
|
-
"package": "@angular/core",
|
|
5264
|
-
"name": "Input"
|
|
5265
|
-
},
|
|
5266
|
-
"arguments": {}
|
|
5267
|
-
}
|
|
5268
|
-
],
|
|
5269
5430
|
"sources": [
|
|
5270
5431
|
{
|
|
5271
5432
|
"fileName": "projects/layout/src/modules/text-expand/text-expand.component.ts",
|
|
5272
|
-
"line":
|
|
5433
|
+
"line": 153,
|
|
5273
5434
|
"character": 9
|
|
5274
5435
|
}
|
|
5275
5436
|
],
|
|
5276
5437
|
"type": {
|
|
5277
5438
|
"type": "intrinsic",
|
|
5278
|
-
"name": "
|
|
5439
|
+
"name": "boolean"
|
|
5279
5440
|
},
|
|
5280
|
-
"defaultValue": "
|
|
5441
|
+
"defaultValue": "false"
|
|
5281
5442
|
},
|
|
5282
5443
|
{
|
|
5283
|
-
"id":
|
|
5284
|
-
"name": "
|
|
5444
|
+
"id": 394,
|
|
5445
|
+
"name": "transitionHeight",
|
|
5285
5446
|
"kind": 1024,
|
|
5286
5447
|
"kindString": "Property",
|
|
5287
5448
|
"flags": {
|
|
5288
5449
|
"isPublic": true
|
|
5289
5450
|
},
|
|
5290
|
-
"comment": {
|
|
5291
|
-
"shortText": "Specifies the maximum number of newline characters to display inline when users select\nthe link to expand the full text. If the text exceeds this limit, then\nthe component expands the full text in a modal view instead."
|
|
5292
|
-
},
|
|
5293
|
-
"decorators": [
|
|
5294
|
-
{
|
|
5295
|
-
"name": "Input",
|
|
5296
|
-
"type": {
|
|
5297
|
-
"type": "reference",
|
|
5298
|
-
"qualifiedName": "InputDecorator",
|
|
5299
|
-
"package": "@angular/core",
|
|
5300
|
-
"name": "Input"
|
|
5301
|
-
},
|
|
5302
|
-
"arguments": {}
|
|
5303
|
-
}
|
|
5304
|
-
],
|
|
5305
5451
|
"sources": [
|
|
5306
5452
|
{
|
|
5307
5453
|
"fileName": "projects/layout/src/modules/text-expand/text-expand.component.ts",
|
|
5308
|
-
"line":
|
|
5454
|
+
"line": 155,
|
|
5309
5455
|
"character": 9
|
|
5310
5456
|
}
|
|
5311
5457
|
],
|
|
@@ -5313,10 +5459,10 @@
|
|
|
5313
5459
|
"type": "intrinsic",
|
|
5314
5460
|
"name": "number"
|
|
5315
5461
|
},
|
|
5316
|
-
"defaultValue": "
|
|
5462
|
+
"defaultValue": "1"
|
|
5317
5463
|
},
|
|
5318
5464
|
{
|
|
5319
|
-
"id":
|
|
5465
|
+
"id": 388,
|
|
5320
5466
|
"name": "truncateNewlines",
|
|
5321
5467
|
"kind": 1024,
|
|
5322
5468
|
"kindString": "Property",
|
|
@@ -5341,7 +5487,7 @@
|
|
|
5341
5487
|
"sources": [
|
|
5342
5488
|
{
|
|
5343
5489
|
"fileName": "projects/layout/src/modules/text-expand/text-expand.component.ts",
|
|
5344
|
-
"line":
|
|
5490
|
+
"line": 143,
|
|
5345
5491
|
"character": 9
|
|
5346
5492
|
}
|
|
5347
5493
|
],
|
|
@@ -5352,8 +5498,8 @@
|
|
|
5352
5498
|
"defaultValue": "true"
|
|
5353
5499
|
},
|
|
5354
5500
|
{
|
|
5355
|
-
"id":
|
|
5356
|
-
"name": "
|
|
5501
|
+
"id": 372,
|
|
5502
|
+
"name": "maxExpandedLength",
|
|
5357
5503
|
"kind": 262144,
|
|
5358
5504
|
"kindString": "Accessor",
|
|
5359
5505
|
"flags": {
|
|
@@ -5374,23 +5520,23 @@
|
|
|
5374
5520
|
"sources": [
|
|
5375
5521
|
{
|
|
5376
5522
|
"fileName": "projects/layout/src/modules/text-expand/text-expand.component.ts",
|
|
5377
|
-
"line":
|
|
5523
|
+
"line": 73,
|
|
5378
5524
|
"character": 13
|
|
5379
5525
|
}
|
|
5380
5526
|
],
|
|
5381
5527
|
"getSignature": [
|
|
5382
5528
|
{
|
|
5383
|
-
"id":
|
|
5384
|
-
"name": "
|
|
5529
|
+
"id": 373,
|
|
5530
|
+
"name": "maxExpandedLength",
|
|
5385
5531
|
"kind": 524288,
|
|
5386
5532
|
"kindString": "Get signature",
|
|
5387
5533
|
"flags": {},
|
|
5388
5534
|
"comment": {
|
|
5389
|
-
"shortText": "Specifies the number of text characters to display
|
|
5535
|
+
"shortText": "Specifies the maximum number of text characters to display inline when users select the link\nto expand the full text. If the text exceeds this limit, then the component expands\nthe full text in a modal instead.",
|
|
5390
5536
|
"tags": [
|
|
5391
5537
|
{
|
|
5392
5538
|
"tag": "default",
|
|
5393
|
-
"text": "
|
|
5539
|
+
"text": "600\n"
|
|
5394
5540
|
}
|
|
5395
5541
|
]
|
|
5396
5542
|
},
|
|
@@ -5402,8 +5548,178 @@
|
|
|
5402
5548
|
],
|
|
5403
5549
|
"setSignature": [
|
|
5404
5550
|
{
|
|
5405
|
-
"id":
|
|
5406
|
-
"name": "
|
|
5551
|
+
"id": 374,
|
|
5552
|
+
"name": "maxExpandedLength",
|
|
5553
|
+
"kind": 1048576,
|
|
5554
|
+
"kindString": "Set signature",
|
|
5555
|
+
"flags": {},
|
|
5556
|
+
"comment": {
|
|
5557
|
+
"shortText": "Specifies the maximum number of text characters to display inline when users select the link\nto expand the full text. If the text exceeds this limit, then the component expands\nthe full text in a modal instead.",
|
|
5558
|
+
"tags": [
|
|
5559
|
+
{
|
|
5560
|
+
"tag": "default",
|
|
5561
|
+
"text": "600\n"
|
|
5562
|
+
}
|
|
5563
|
+
]
|
|
5564
|
+
},
|
|
5565
|
+
"parameters": [
|
|
5566
|
+
{
|
|
5567
|
+
"id": 375,
|
|
5568
|
+
"name": "value",
|
|
5569
|
+
"kind": 32768,
|
|
5570
|
+
"kindString": "Parameter",
|
|
5571
|
+
"flags": {},
|
|
5572
|
+
"type": {
|
|
5573
|
+
"type": "intrinsic",
|
|
5574
|
+
"name": "number"
|
|
5575
|
+
}
|
|
5576
|
+
}
|
|
5577
|
+
],
|
|
5578
|
+
"type": {
|
|
5579
|
+
"type": "intrinsic",
|
|
5580
|
+
"name": "void"
|
|
5581
|
+
}
|
|
5582
|
+
}
|
|
5583
|
+
]
|
|
5584
|
+
},
|
|
5585
|
+
{
|
|
5586
|
+
"id": 376,
|
|
5587
|
+
"name": "maxExpandedNewlines",
|
|
5588
|
+
"kind": 262144,
|
|
5589
|
+
"kindString": "Accessor",
|
|
5590
|
+
"flags": {
|
|
5591
|
+
"isPublic": true
|
|
5592
|
+
},
|
|
5593
|
+
"decorators": [
|
|
5594
|
+
{
|
|
5595
|
+
"name": "Input",
|
|
5596
|
+
"type": {
|
|
5597
|
+
"type": "reference",
|
|
5598
|
+
"qualifiedName": "InputDecorator",
|
|
5599
|
+
"package": "@angular/core",
|
|
5600
|
+
"name": "Input"
|
|
5601
|
+
},
|
|
5602
|
+
"arguments": {}
|
|
5603
|
+
}
|
|
5604
|
+
],
|
|
5605
|
+
"sources": [
|
|
5606
|
+
{
|
|
5607
|
+
"fileName": "projects/layout/src/modules/text-expand/text-expand.component.ts",
|
|
5608
|
+
"line": 93,
|
|
5609
|
+
"character": 13
|
|
5610
|
+
}
|
|
5611
|
+
],
|
|
5612
|
+
"getSignature": [
|
|
5613
|
+
{
|
|
5614
|
+
"id": 377,
|
|
5615
|
+
"name": "maxExpandedNewlines",
|
|
5616
|
+
"kind": 524288,
|
|
5617
|
+
"kindString": "Get signature",
|
|
5618
|
+
"flags": {},
|
|
5619
|
+
"comment": {
|
|
5620
|
+
"shortText": "Specifies the maximum number of newline characters to display inline when users select\nthe link to expand the full text. If the text exceeds this limit, then\nthe component expands the full text in a modal view instead.",
|
|
5621
|
+
"tags": [
|
|
5622
|
+
{
|
|
5623
|
+
"tag": "default",
|
|
5624
|
+
"text": "2\n"
|
|
5625
|
+
}
|
|
5626
|
+
]
|
|
5627
|
+
},
|
|
5628
|
+
"type": {
|
|
5629
|
+
"type": "intrinsic",
|
|
5630
|
+
"name": "number"
|
|
5631
|
+
}
|
|
5632
|
+
}
|
|
5633
|
+
],
|
|
5634
|
+
"setSignature": [
|
|
5635
|
+
{
|
|
5636
|
+
"id": 378,
|
|
5637
|
+
"name": "maxExpandedNewlines",
|
|
5638
|
+
"kind": 1048576,
|
|
5639
|
+
"kindString": "Set signature",
|
|
5640
|
+
"flags": {},
|
|
5641
|
+
"comment": {
|
|
5642
|
+
"shortText": "Specifies the maximum number of newline characters to display inline when users select\nthe link to expand the full text. If the text exceeds this limit, then\nthe component expands the full text in a modal view instead.",
|
|
5643
|
+
"tags": [
|
|
5644
|
+
{
|
|
5645
|
+
"tag": "default",
|
|
5646
|
+
"text": "2\n"
|
|
5647
|
+
}
|
|
5648
|
+
]
|
|
5649
|
+
},
|
|
5650
|
+
"parameters": [
|
|
5651
|
+
{
|
|
5652
|
+
"id": 379,
|
|
5653
|
+
"name": "value",
|
|
5654
|
+
"kind": 32768,
|
|
5655
|
+
"kindString": "Parameter",
|
|
5656
|
+
"flags": {},
|
|
5657
|
+
"type": {
|
|
5658
|
+
"type": "intrinsic",
|
|
5659
|
+
"name": "number"
|
|
5660
|
+
}
|
|
5661
|
+
}
|
|
5662
|
+
],
|
|
5663
|
+
"type": {
|
|
5664
|
+
"type": "intrinsic",
|
|
5665
|
+
"name": "void"
|
|
5666
|
+
}
|
|
5667
|
+
}
|
|
5668
|
+
]
|
|
5669
|
+
},
|
|
5670
|
+
{
|
|
5671
|
+
"id": 380,
|
|
5672
|
+
"name": "maxLength",
|
|
5673
|
+
"kind": 262144,
|
|
5674
|
+
"kindString": "Accessor",
|
|
5675
|
+
"flags": {
|
|
5676
|
+
"isPublic": true
|
|
5677
|
+
},
|
|
5678
|
+
"decorators": [
|
|
5679
|
+
{
|
|
5680
|
+
"name": "Input",
|
|
5681
|
+
"type": {
|
|
5682
|
+
"type": "reference",
|
|
5683
|
+
"qualifiedName": "InputDecorator",
|
|
5684
|
+
"package": "@angular/core",
|
|
5685
|
+
"name": "Input"
|
|
5686
|
+
},
|
|
5687
|
+
"arguments": {}
|
|
5688
|
+
}
|
|
5689
|
+
],
|
|
5690
|
+
"sources": [
|
|
5691
|
+
{
|
|
5692
|
+
"fileName": "projects/layout/src/modules/text-expand/text-expand.component.ts",
|
|
5693
|
+
"line": 113,
|
|
5694
|
+
"character": 13
|
|
5695
|
+
}
|
|
5696
|
+
],
|
|
5697
|
+
"getSignature": [
|
|
5698
|
+
{
|
|
5699
|
+
"id": 381,
|
|
5700
|
+
"name": "maxLength",
|
|
5701
|
+
"kind": 524288,
|
|
5702
|
+
"kindString": "Get signature",
|
|
5703
|
+
"flags": {},
|
|
5704
|
+
"comment": {
|
|
5705
|
+
"shortText": "Specifies the number of text characters to display before truncating the text.\nTo avoid truncating text in the middle of a word, the component looks for a space\nin the 10 characters before the last character.",
|
|
5706
|
+
"tags": [
|
|
5707
|
+
{
|
|
5708
|
+
"tag": "default",
|
|
5709
|
+
"text": "200\n"
|
|
5710
|
+
}
|
|
5711
|
+
]
|
|
5712
|
+
},
|
|
5713
|
+
"type": {
|
|
5714
|
+
"type": "intrinsic",
|
|
5715
|
+
"name": "number"
|
|
5716
|
+
}
|
|
5717
|
+
}
|
|
5718
|
+
],
|
|
5719
|
+
"setSignature": [
|
|
5720
|
+
{
|
|
5721
|
+
"id": 382,
|
|
5722
|
+
"name": "maxLength",
|
|
5407
5723
|
"kind": 1048576,
|
|
5408
5724
|
"kindString": "Set signature",
|
|
5409
5725
|
"flags": {},
|
|
@@ -5418,7 +5734,7 @@
|
|
|
5418
5734
|
},
|
|
5419
5735
|
"parameters": [
|
|
5420
5736
|
{
|
|
5421
|
-
"id":
|
|
5737
|
+
"id": 383,
|
|
5422
5738
|
"name": "value",
|
|
5423
5739
|
"kind": 32768,
|
|
5424
5740
|
"kindString": "Parameter",
|
|
@@ -5437,7 +5753,7 @@
|
|
|
5437
5753
|
]
|
|
5438
5754
|
},
|
|
5439
5755
|
{
|
|
5440
|
-
"id":
|
|
5756
|
+
"id": 384,
|
|
5441
5757
|
"name": "text",
|
|
5442
5758
|
"kind": 262144,
|
|
5443
5759
|
"kindString": "Accessor",
|
|
@@ -5459,13 +5775,29 @@
|
|
|
5459
5775
|
"sources": [
|
|
5460
5776
|
{
|
|
5461
5777
|
"fileName": "projects/layout/src/modules/text-expand/text-expand.component.ts",
|
|
5462
|
-
"line":
|
|
5778
|
+
"line": 130,
|
|
5463
5779
|
"character": 13
|
|
5464
5780
|
}
|
|
5465
5781
|
],
|
|
5782
|
+
"getSignature": [
|
|
5783
|
+
{
|
|
5784
|
+
"id": 385,
|
|
5785
|
+
"name": "text",
|
|
5786
|
+
"kind": 524288,
|
|
5787
|
+
"kindString": "Get signature",
|
|
5788
|
+
"flags": {},
|
|
5789
|
+
"comment": {
|
|
5790
|
+
"shortText": "Specifies the text to truncate."
|
|
5791
|
+
},
|
|
5792
|
+
"type": {
|
|
5793
|
+
"type": "intrinsic",
|
|
5794
|
+
"name": "string"
|
|
5795
|
+
}
|
|
5796
|
+
}
|
|
5797
|
+
],
|
|
5466
5798
|
"setSignature": [
|
|
5467
5799
|
{
|
|
5468
|
-
"id":
|
|
5800
|
+
"id": 386,
|
|
5469
5801
|
"name": "text",
|
|
5470
5802
|
"kind": 1048576,
|
|
5471
5803
|
"kindString": "Set signature",
|
|
@@ -5475,7 +5807,7 @@
|
|
|
5475
5807
|
},
|
|
5476
5808
|
"parameters": [
|
|
5477
5809
|
{
|
|
5478
|
-
"id":
|
|
5810
|
+
"id": 387,
|
|
5479
5811
|
"name": "value",
|
|
5480
5812
|
"kind": 32768,
|
|
5481
5813
|
"kindString": "Parameter",
|
|
@@ -5494,7 +5826,93 @@
|
|
|
5494
5826
|
]
|
|
5495
5827
|
},
|
|
5496
5828
|
{
|
|
5497
|
-
"id":
|
|
5829
|
+
"id": 396,
|
|
5830
|
+
"name": "textEl",
|
|
5831
|
+
"kind": 262144,
|
|
5832
|
+
"kindString": "Accessor",
|
|
5833
|
+
"flags": {
|
|
5834
|
+
"isPublic": true
|
|
5835
|
+
},
|
|
5836
|
+
"decorators": [
|
|
5837
|
+
{
|
|
5838
|
+
"name": "ViewChild",
|
|
5839
|
+
"type": {
|
|
5840
|
+
"type": "reference",
|
|
5841
|
+
"qualifiedName": "ViewChildDecorator",
|
|
5842
|
+
"package": "@angular/core",
|
|
5843
|
+
"name": "ViewChild"
|
|
5844
|
+
},
|
|
5845
|
+
"arguments": {
|
|
5846
|
+
"selector": "'text'",
|
|
5847
|
+
"opts": "{\n read: ElementRef,\n static: true,\n }"
|
|
5848
|
+
}
|
|
5849
|
+
}
|
|
5850
|
+
],
|
|
5851
|
+
"sources": [
|
|
5852
|
+
{
|
|
5853
|
+
"fileName": "projects/layout/src/modules/text-expand/text-expand.component.ts",
|
|
5854
|
+
"line": 167,
|
|
5855
|
+
"character": 13
|
|
5856
|
+
}
|
|
5857
|
+
],
|
|
5858
|
+
"getSignature": [
|
|
5859
|
+
{
|
|
5860
|
+
"id": 397,
|
|
5861
|
+
"name": "textEl",
|
|
5862
|
+
"kind": 524288,
|
|
5863
|
+
"kindString": "Get signature",
|
|
5864
|
+
"flags": {},
|
|
5865
|
+
"type": {
|
|
5866
|
+
"type": "reference",
|
|
5867
|
+
"typeArguments": [
|
|
5868
|
+
{
|
|
5869
|
+
"type": "intrinsic",
|
|
5870
|
+
"name": "any"
|
|
5871
|
+
}
|
|
5872
|
+
],
|
|
5873
|
+
"qualifiedName": "ElementRef",
|
|
5874
|
+
"package": "@angular/core",
|
|
5875
|
+
"name": "ElementRef"
|
|
5876
|
+
}
|
|
5877
|
+
}
|
|
5878
|
+
],
|
|
5879
|
+
"setSignature": [
|
|
5880
|
+
{
|
|
5881
|
+
"id": 398,
|
|
5882
|
+
"name": "textEl",
|
|
5883
|
+
"kind": 1048576,
|
|
5884
|
+
"kindString": "Set signature",
|
|
5885
|
+
"flags": {},
|
|
5886
|
+
"parameters": [
|
|
5887
|
+
{
|
|
5888
|
+
"id": 399,
|
|
5889
|
+
"name": "value",
|
|
5890
|
+
"kind": 32768,
|
|
5891
|
+
"kindString": "Parameter",
|
|
5892
|
+
"flags": {},
|
|
5893
|
+
"type": {
|
|
5894
|
+
"type": "reference",
|
|
5895
|
+
"typeArguments": [
|
|
5896
|
+
{
|
|
5897
|
+
"type": "intrinsic",
|
|
5898
|
+
"name": "any"
|
|
5899
|
+
}
|
|
5900
|
+
],
|
|
5901
|
+
"qualifiedName": "ElementRef",
|
|
5902
|
+
"package": "@angular/core",
|
|
5903
|
+
"name": "ElementRef"
|
|
5904
|
+
}
|
|
5905
|
+
}
|
|
5906
|
+
],
|
|
5907
|
+
"type": {
|
|
5908
|
+
"type": "intrinsic",
|
|
5909
|
+
"name": "void"
|
|
5910
|
+
}
|
|
5911
|
+
}
|
|
5912
|
+
]
|
|
5913
|
+
},
|
|
5914
|
+
{
|
|
5915
|
+
"id": 415,
|
|
5498
5916
|
"name": "animationEnd",
|
|
5499
5917
|
"kind": 2048,
|
|
5500
5918
|
"kindString": "Method",
|
|
@@ -5504,13 +5922,13 @@
|
|
|
5504
5922
|
"sources": [
|
|
5505
5923
|
{
|
|
5506
5924
|
"fileName": "projects/layout/src/modules/text-expand/text-expand.component.ts",
|
|
5507
|
-
"line":
|
|
5925
|
+
"line": 236,
|
|
5508
5926
|
"character": 9
|
|
5509
5927
|
}
|
|
5510
5928
|
],
|
|
5511
5929
|
"signatures": [
|
|
5512
5930
|
{
|
|
5513
|
-
"id":
|
|
5931
|
+
"id": 416,
|
|
5514
5932
|
"name": "animationEnd",
|
|
5515
5933
|
"kind": 4096,
|
|
5516
5934
|
"kindString": "Call signature",
|
|
@@ -5523,7 +5941,7 @@
|
|
|
5523
5941
|
]
|
|
5524
5942
|
},
|
|
5525
5943
|
{
|
|
5526
|
-
"id":
|
|
5944
|
+
"id": 417,
|
|
5527
5945
|
"name": "ngAfterContentInit",
|
|
5528
5946
|
"kind": 2048,
|
|
5529
5947
|
"kindString": "Method",
|
|
@@ -5533,13 +5951,13 @@
|
|
|
5533
5951
|
"sources": [
|
|
5534
5952
|
{
|
|
5535
5953
|
"fileName": "projects/layout/src/modules/text-expand/text-expand.component.ts",
|
|
5536
|
-
"line":
|
|
5954
|
+
"line": 250,
|
|
5537
5955
|
"character": 9
|
|
5538
5956
|
}
|
|
5539
5957
|
],
|
|
5540
5958
|
"signatures": [
|
|
5541
5959
|
{
|
|
5542
|
-
"id":
|
|
5960
|
+
"id": 418,
|
|
5543
5961
|
"name": "ngAfterContentInit",
|
|
5544
5962
|
"kind": 4096,
|
|
5545
5963
|
"kindString": "Call signature",
|
|
@@ -5560,7 +5978,7 @@
|
|
|
5560
5978
|
}
|
|
5561
5979
|
},
|
|
5562
5980
|
{
|
|
5563
|
-
"id":
|
|
5981
|
+
"id": 413,
|
|
5564
5982
|
"name": "textExpand",
|
|
5565
5983
|
"kind": 2048,
|
|
5566
5984
|
"kindString": "Method",
|
|
@@ -5570,13 +5988,13 @@
|
|
|
5570
5988
|
"sources": [
|
|
5571
5989
|
{
|
|
5572
5990
|
"fileName": "projects/layout/src/modules/text-expand/text-expand.component.ts",
|
|
5573
|
-
"line":
|
|
5991
|
+
"line": 210,
|
|
5574
5992
|
"character": 9
|
|
5575
5993
|
}
|
|
5576
5994
|
],
|
|
5577
5995
|
"signatures": [
|
|
5578
5996
|
{
|
|
5579
|
-
"id":
|
|
5997
|
+
"id": 414,
|
|
5580
5998
|
"name": "textExpand",
|
|
5581
5999
|
"kind": 4096,
|
|
5582
6000
|
"kindString": "Call signature",
|
|
@@ -5594,46 +6012,49 @@
|
|
|
5594
6012
|
"title": "Constructors",
|
|
5595
6013
|
"kind": 512,
|
|
5596
6014
|
"children": [
|
|
5597
|
-
|
|
6015
|
+
366
|
|
5598
6016
|
]
|
|
5599
6017
|
},
|
|
5600
6018
|
{
|
|
5601
6019
|
"title": "Properties",
|
|
5602
6020
|
"kind": 1024,
|
|
5603
6021
|
"children": [
|
|
5604
|
-
|
|
5605
|
-
|
|
5606
|
-
|
|
5607
|
-
369,
|
|
5608
|
-
370,
|
|
6022
|
+
389,
|
|
6023
|
+
395,
|
|
6024
|
+
390,
|
|
5609
6025
|
371,
|
|
5610
|
-
|
|
5611
|
-
|
|
5612
|
-
|
|
6026
|
+
391,
|
|
6027
|
+
392,
|
|
6028
|
+
393,
|
|
6029
|
+
394,
|
|
6030
|
+
388
|
|
5613
6031
|
]
|
|
5614
6032
|
},
|
|
5615
6033
|
{
|
|
5616
6034
|
"title": "Accessors",
|
|
5617
6035
|
"kind": 262144,
|
|
5618
6036
|
"children": [
|
|
5619
|
-
|
|
5620
|
-
|
|
6037
|
+
372,
|
|
6038
|
+
376,
|
|
6039
|
+
380,
|
|
6040
|
+
384,
|
|
6041
|
+
396
|
|
5621
6042
|
]
|
|
5622
6043
|
},
|
|
5623
6044
|
{
|
|
5624
6045
|
"title": "Methods",
|
|
5625
6046
|
"kind": 2048,
|
|
5626
6047
|
"children": [
|
|
5627
|
-
|
|
5628
|
-
|
|
5629
|
-
|
|
6048
|
+
415,
|
|
6049
|
+
417,
|
|
6050
|
+
413
|
|
5630
6051
|
]
|
|
5631
6052
|
}
|
|
5632
6053
|
],
|
|
5633
6054
|
"sources": [
|
|
5634
6055
|
{
|
|
5635
6056
|
"fileName": "projects/layout/src/modules/text-expand/text-expand.component.ts",
|
|
5636
|
-
"line":
|
|
6057
|
+
"line": 58,
|
|
5637
6058
|
"character": 13
|
|
5638
6059
|
}
|
|
5639
6060
|
],
|
|
@@ -5647,7 +6068,7 @@
|
|
|
5647
6068
|
]
|
|
5648
6069
|
},
|
|
5649
6070
|
{
|
|
5650
|
-
"id":
|
|
6071
|
+
"id": 432,
|
|
5651
6072
|
"name": "SkyTextExpandRepeaterComponent",
|
|
5652
6073
|
"kind": 128,
|
|
5653
6074
|
"kindString": "Class",
|
|
@@ -5662,13 +6083,13 @@
|
|
|
5662
6083
|
"name": "Component"
|
|
5663
6084
|
},
|
|
5664
6085
|
"arguments": {
|
|
5665
|
-
"obj": "{\n selector: 'sky-text-expand-repeater',\n templateUrl: './text-expand-repeater.component.html',\n styleUrls: ['./text-expand-repeater.component.scss'],\n providers: [SkyTextExpandRepeaterAdapterService],\n}"
|
|
6086
|
+
"obj": "{\n animations: [\n trigger('expansionAnimation', [\n transition(':enter', []),\n state(\n 'true',\n style({\n maxHeight: '{{transitionHeight}}px',\n }),\n { params: { transitionHeight: 0 } }\n ),\n state(\n 'false',\n style({\n maxHeight: '{{transitionHeight}}px',\n }),\n { params: { transitionHeight: 0 } }\n ),\n transition('true => false', animate('250ms ease')),\n transition('false => true', animate('250ms ease')),\n transition('void => *', []),\n ]),\n ],\n selector: 'sky-text-expand-repeater',\n templateUrl: './text-expand-repeater.component.html',\n styleUrls: ['./text-expand-repeater.component.scss'],\n providers: [SkyTextExpandRepeaterAdapterService],\n}"
|
|
5666
6087
|
}
|
|
5667
6088
|
}
|
|
5668
6089
|
],
|
|
5669
6090
|
"children": [
|
|
5670
6091
|
{
|
|
5671
|
-
"id":
|
|
6092
|
+
"id": 433,
|
|
5672
6093
|
"name": "constructor",
|
|
5673
6094
|
"kind": 512,
|
|
5674
6095
|
"kindString": "Constructor",
|
|
@@ -5676,20 +6097,20 @@
|
|
|
5676
6097
|
"sources": [
|
|
5677
6098
|
{
|
|
5678
6099
|
"fileName": "projects/layout/src/modules/text-expand-repeater/text-expand-repeater.component.ts",
|
|
5679
|
-
"line":
|
|
6100
|
+
"line": 130,
|
|
5680
6101
|
"character": 2
|
|
5681
6102
|
}
|
|
5682
6103
|
],
|
|
5683
6104
|
"signatures": [
|
|
5684
6105
|
{
|
|
5685
|
-
"id":
|
|
6106
|
+
"id": 434,
|
|
5686
6107
|
"name": "SkyTextExpandRepeaterComponent",
|
|
5687
6108
|
"kind": 16384,
|
|
5688
6109
|
"kindString": "Constructor signature",
|
|
5689
6110
|
"flags": {},
|
|
5690
6111
|
"parameters": [
|
|
5691
6112
|
{
|
|
5692
|
-
"id":
|
|
6113
|
+
"id": 435,
|
|
5693
6114
|
"name": "resources",
|
|
5694
6115
|
"kind": 32768,
|
|
5695
6116
|
"kindString": "Parameter",
|
|
@@ -5700,7 +6121,7 @@
|
|
|
5700
6121
|
}
|
|
5701
6122
|
},
|
|
5702
6123
|
{
|
|
5703
|
-
"id":
|
|
6124
|
+
"id": 436,
|
|
5704
6125
|
"name": "elRef",
|
|
5705
6126
|
"kind": 32768,
|
|
5706
6127
|
"kindString": "Parameter",
|
|
@@ -5719,7 +6140,7 @@
|
|
|
5719
6140
|
}
|
|
5720
6141
|
},
|
|
5721
6142
|
{
|
|
5722
|
-
"id":
|
|
6143
|
+
"id": 437,
|
|
5723
6144
|
"name": "textExpandRepeaterAdapter",
|
|
5724
6145
|
"kind": 32768,
|
|
5725
6146
|
"kindString": "Parameter",
|
|
@@ -5730,7 +6151,7 @@
|
|
|
5730
6151
|
}
|
|
5731
6152
|
},
|
|
5732
6153
|
{
|
|
5733
|
-
"id":
|
|
6154
|
+
"id": 438,
|
|
5734
6155
|
"name": "changeDetector",
|
|
5735
6156
|
"kind": 32768,
|
|
5736
6157
|
"kindString": "Parameter",
|
|
@@ -5745,14 +6166,14 @@
|
|
|
5745
6166
|
],
|
|
5746
6167
|
"type": {
|
|
5747
6168
|
"type": "reference",
|
|
5748
|
-
"id":
|
|
6169
|
+
"id": 432,
|
|
5749
6170
|
"name": "SkyTextExpandRepeaterComponent"
|
|
5750
6171
|
}
|
|
5751
6172
|
}
|
|
5752
6173
|
]
|
|
5753
6174
|
},
|
|
5754
6175
|
{
|
|
5755
|
-
"id":
|
|
6176
|
+
"id": 449,
|
|
5756
6177
|
"name": "buttonText",
|
|
5757
6178
|
"kind": 1024,
|
|
5758
6179
|
"kindString": "Property",
|
|
@@ -5762,40 +6183,61 @@
|
|
|
5762
6183
|
"sources": [
|
|
5763
6184
|
{
|
|
5764
6185
|
"fileName": "projects/layout/src/modules/text-expand-repeater/text-expand-repeater.component.ts",
|
|
5765
|
-
"line":
|
|
6186
|
+
"line": 104,
|
|
5766
6187
|
"character": 9
|
|
5767
6188
|
}
|
|
5768
6189
|
],
|
|
5769
6190
|
"type": {
|
|
5770
6191
|
"type": "intrinsic",
|
|
5771
6192
|
"name": "string"
|
|
5772
|
-
}
|
|
6193
|
+
},
|
|
6194
|
+
"defaultValue": "''"
|
|
5773
6195
|
},
|
|
5774
6196
|
{
|
|
5775
|
-
"id":
|
|
5776
|
-
"name": "
|
|
6197
|
+
"id": 456,
|
|
6198
|
+
"name": "containerEl",
|
|
5777
6199
|
"kind": 1024,
|
|
5778
6200
|
"kindString": "Property",
|
|
5779
6201
|
"flags": {
|
|
5780
6202
|
"isPublic": true
|
|
5781
6203
|
},
|
|
6204
|
+
"decorators": [
|
|
6205
|
+
{
|
|
6206
|
+
"name": "ViewChild",
|
|
6207
|
+
"type": {
|
|
6208
|
+
"type": "reference",
|
|
6209
|
+
"qualifiedName": "ViewChildDecorator",
|
|
6210
|
+
"package": "@angular/core",
|
|
6211
|
+
"name": "ViewChild"
|
|
6212
|
+
},
|
|
6213
|
+
"arguments": {
|
|
6214
|
+
"selector": "'container'",
|
|
6215
|
+
"opts": "{\n read: ElementRef,\n static: false,\n }"
|
|
6216
|
+
}
|
|
6217
|
+
}
|
|
6218
|
+
],
|
|
5782
6219
|
"sources": [
|
|
5783
6220
|
{
|
|
5784
6221
|
"fileName": "projects/layout/src/modules/text-expand-repeater/text-expand-repeater.component.ts",
|
|
5785
|
-
"line":
|
|
6222
|
+
"line": 118,
|
|
5786
6223
|
"character": 9
|
|
5787
6224
|
}
|
|
5788
6225
|
],
|
|
5789
6226
|
"type": {
|
|
5790
|
-
"type": "
|
|
5791
|
-
"
|
|
5792
|
-
|
|
5793
|
-
|
|
5794
|
-
|
|
6227
|
+
"type": "reference",
|
|
6228
|
+
"typeArguments": [
|
|
6229
|
+
{
|
|
6230
|
+
"type": "intrinsic",
|
|
6231
|
+
"name": "any"
|
|
6232
|
+
}
|
|
6233
|
+
],
|
|
6234
|
+
"qualifiedName": "ElementRef",
|
|
6235
|
+
"package": "@angular/core",
|
|
6236
|
+
"name": "ElementRef"
|
|
5795
6237
|
}
|
|
5796
6238
|
},
|
|
5797
6239
|
{
|
|
5798
|
-
"id":
|
|
6240
|
+
"id": 451,
|
|
5799
6241
|
"name": "contentSectionId",
|
|
5800
6242
|
"kind": 1024,
|
|
5801
6243
|
"kindString": "Property",
|
|
@@ -5805,7 +6247,7 @@
|
|
|
5805
6247
|
"sources": [
|
|
5806
6248
|
{
|
|
5807
6249
|
"fileName": "projects/layout/src/modules/text-expand-repeater/text-expand-repeater.component.ts",
|
|
5808
|
-
"line":
|
|
6250
|
+
"line": 106,
|
|
5809
6251
|
"character": 9
|
|
5810
6252
|
}
|
|
5811
6253
|
],
|
|
@@ -5816,45 +6258,7 @@
|
|
|
5816
6258
|
"defaultValue": "..."
|
|
5817
6259
|
},
|
|
5818
6260
|
{
|
|
5819
|
-
"id":
|
|
5820
|
-
"name": "data",
|
|
5821
|
-
"kind": 1024,
|
|
5822
|
-
"kindString": "Property",
|
|
5823
|
-
"flags": {
|
|
5824
|
-
"isPublic": true
|
|
5825
|
-
},
|
|
5826
|
-
"comment": {
|
|
5827
|
-
"shortText": "Specifies the data to truncate."
|
|
5828
|
-
},
|
|
5829
|
-
"decorators": [
|
|
5830
|
-
{
|
|
5831
|
-
"name": "Input",
|
|
5832
|
-
"type": {
|
|
5833
|
-
"type": "reference",
|
|
5834
|
-
"qualifiedName": "InputDecorator",
|
|
5835
|
-
"package": "@angular/core",
|
|
5836
|
-
"name": "Input"
|
|
5837
|
-
},
|
|
5838
|
-
"arguments": {}
|
|
5839
|
-
}
|
|
5840
|
-
],
|
|
5841
|
-
"sources": [
|
|
5842
|
-
{
|
|
5843
|
-
"fileName": "projects/layout/src/modules/text-expand-repeater/text-expand-repeater.component.ts",
|
|
5844
|
-
"line": 38,
|
|
5845
|
-
"character": 9
|
|
5846
|
-
}
|
|
5847
|
-
],
|
|
5848
|
-
"type": {
|
|
5849
|
-
"type": "array",
|
|
5850
|
-
"elementType": {
|
|
5851
|
-
"type": "intrinsic",
|
|
5852
|
-
"name": "any"
|
|
5853
|
-
}
|
|
5854
|
-
}
|
|
5855
|
-
},
|
|
5856
|
-
{
|
|
5857
|
-
"id": 417,
|
|
6261
|
+
"id": 450,
|
|
5858
6262
|
"name": "expandable",
|
|
5859
6263
|
"kind": 1024,
|
|
5860
6264
|
"kindString": "Property",
|
|
@@ -5864,17 +6268,18 @@
|
|
|
5864
6268
|
"sources": [
|
|
5865
6269
|
{
|
|
5866
6270
|
"fileName": "projects/layout/src/modules/text-expand-repeater/text-expand-repeater.component.ts",
|
|
5867
|
-
"line":
|
|
6271
|
+
"line": 105,
|
|
5868
6272
|
"character": 9
|
|
5869
6273
|
}
|
|
5870
6274
|
],
|
|
5871
6275
|
"type": {
|
|
5872
6276
|
"type": "intrinsic",
|
|
5873
6277
|
"name": "boolean"
|
|
5874
|
-
}
|
|
6278
|
+
},
|
|
6279
|
+
"defaultValue": "false"
|
|
5875
6280
|
},
|
|
5876
6281
|
{
|
|
5877
|
-
"id":
|
|
6282
|
+
"id": 452,
|
|
5878
6283
|
"name": "isExpanded",
|
|
5879
6284
|
"kind": 1024,
|
|
5880
6285
|
"kindString": "Property",
|
|
@@ -5884,18 +6289,17 @@
|
|
|
5884
6289
|
"sources": [
|
|
5885
6290
|
{
|
|
5886
6291
|
"fileName": "projects/layout/src/modules/text-expand-repeater/text-expand-repeater.component.ts",
|
|
5887
|
-
"line":
|
|
6292
|
+
"line": 108,
|
|
5888
6293
|
"character": 9
|
|
5889
6294
|
}
|
|
5890
6295
|
],
|
|
5891
6296
|
"type": {
|
|
5892
6297
|
"type": "intrinsic",
|
|
5893
6298
|
"name": "boolean"
|
|
5894
|
-
}
|
|
5895
|
-
"defaultValue": "false"
|
|
6299
|
+
}
|
|
5896
6300
|
},
|
|
5897
6301
|
{
|
|
5898
|
-
"id":
|
|
6302
|
+
"id": 443,
|
|
5899
6303
|
"name": "itemTemplate",
|
|
5900
6304
|
"kind": 1024,
|
|
5901
6305
|
"kindString": "Property",
|
|
@@ -5920,7 +6324,7 @@
|
|
|
5920
6324
|
"sources": [
|
|
5921
6325
|
{
|
|
5922
6326
|
"fileName": "projects/layout/src/modules/text-expand-repeater/text-expand-repeater.component.ts",
|
|
5923
|
-
"line":
|
|
6327
|
+
"line": 81,
|
|
5924
6328
|
"character": 9
|
|
5925
6329
|
}
|
|
5926
6330
|
],
|
|
@@ -5938,7 +6342,7 @@
|
|
|
5938
6342
|
}
|
|
5939
6343
|
},
|
|
5940
6344
|
{
|
|
5941
|
-
"id":
|
|
6345
|
+
"id": 444,
|
|
5942
6346
|
"name": "listStyle",
|
|
5943
6347
|
"kind": 1024,
|
|
5944
6348
|
"kindString": "Property",
|
|
@@ -5969,27 +6373,45 @@
|
|
|
5969
6373
|
"sources": [
|
|
5970
6374
|
{
|
|
5971
6375
|
"fileName": "projects/layout/src/modules/text-expand-repeater/text-expand-repeater.component.ts",
|
|
5972
|
-
"line":
|
|
6376
|
+
"line": 88,
|
|
5973
6377
|
"character": 9
|
|
5974
6378
|
}
|
|
5975
6379
|
],
|
|
5976
6380
|
"type": {
|
|
5977
6381
|
"type": "reference",
|
|
5978
|
-
"id":
|
|
6382
|
+
"id": 575,
|
|
5979
6383
|
"name": "SkyTextExpandRepeaterListStyleType"
|
|
5980
6384
|
},
|
|
5981
6385
|
"defaultValue": "'unordered'"
|
|
5982
6386
|
},
|
|
5983
6387
|
{
|
|
5984
|
-
"id":
|
|
5985
|
-
"name": "
|
|
6388
|
+
"id": 453,
|
|
6389
|
+
"name": "transitionHeight",
|
|
5986
6390
|
"kind": 1024,
|
|
5987
6391
|
"kindString": "Property",
|
|
5988
6392
|
"flags": {
|
|
5989
6393
|
"isPublic": true
|
|
5990
6394
|
},
|
|
5991
|
-
"
|
|
5992
|
-
|
|
6395
|
+
"sources": [
|
|
6396
|
+
{
|
|
6397
|
+
"fileName": "projects/layout/src/modules/text-expand-repeater/text-expand-repeater.component.ts",
|
|
6398
|
+
"line": 109,
|
|
6399
|
+
"character": 9
|
|
6400
|
+
}
|
|
6401
|
+
],
|
|
6402
|
+
"type": {
|
|
6403
|
+
"type": "intrinsic",
|
|
6404
|
+
"name": "number"
|
|
6405
|
+
},
|
|
6406
|
+
"defaultValue": "1"
|
|
6407
|
+
},
|
|
6408
|
+
{
|
|
6409
|
+
"id": 439,
|
|
6410
|
+
"name": "data",
|
|
6411
|
+
"kind": 262144,
|
|
6412
|
+
"kindString": "Accessor",
|
|
6413
|
+
"flags": {
|
|
6414
|
+
"isPublic": true
|
|
5993
6415
|
},
|
|
5994
6416
|
"decorators": [
|
|
5995
6417
|
{
|
|
@@ -6006,37 +6428,128 @@
|
|
|
6006
6428
|
"sources": [
|
|
6007
6429
|
{
|
|
6008
6430
|
"fileName": "projects/layout/src/modules/text-expand-repeater/text-expand-repeater.component.ts",
|
|
6009
|
-
"line":
|
|
6010
|
-
"character":
|
|
6431
|
+
"line": 63,
|
|
6432
|
+
"character": 13
|
|
6011
6433
|
}
|
|
6012
6434
|
],
|
|
6013
|
-
"
|
|
6014
|
-
|
|
6015
|
-
|
|
6016
|
-
|
|
6435
|
+
"getSignature": [
|
|
6436
|
+
{
|
|
6437
|
+
"id": 440,
|
|
6438
|
+
"name": "data",
|
|
6439
|
+
"kind": 524288,
|
|
6440
|
+
"kindString": "Get signature",
|
|
6441
|
+
"flags": {},
|
|
6442
|
+
"comment": {
|
|
6443
|
+
"shortText": "Specifies the data to truncate."
|
|
6444
|
+
},
|
|
6445
|
+
"type": {
|
|
6446
|
+
"type": "array",
|
|
6447
|
+
"elementType": {
|
|
6448
|
+
"type": "intrinsic",
|
|
6449
|
+
"name": "any"
|
|
6450
|
+
}
|
|
6451
|
+
}
|
|
6452
|
+
}
|
|
6453
|
+
],
|
|
6454
|
+
"setSignature": [
|
|
6455
|
+
{
|
|
6456
|
+
"id": 441,
|
|
6457
|
+
"name": "data",
|
|
6458
|
+
"kind": 1048576,
|
|
6459
|
+
"kindString": "Set signature",
|
|
6460
|
+
"flags": {},
|
|
6461
|
+
"comment": {
|
|
6462
|
+
"shortText": "Specifies the data to truncate."
|
|
6463
|
+
},
|
|
6464
|
+
"parameters": [
|
|
6465
|
+
{
|
|
6466
|
+
"id": 442,
|
|
6467
|
+
"name": "value",
|
|
6468
|
+
"kind": 32768,
|
|
6469
|
+
"kindString": "Parameter",
|
|
6470
|
+
"flags": {},
|
|
6471
|
+
"type": {
|
|
6472
|
+
"type": "array",
|
|
6473
|
+
"elementType": {
|
|
6474
|
+
"type": "intrinsic",
|
|
6475
|
+
"name": "any"
|
|
6476
|
+
}
|
|
6477
|
+
}
|
|
6478
|
+
}
|
|
6479
|
+
],
|
|
6480
|
+
"type": {
|
|
6481
|
+
"type": "intrinsic",
|
|
6482
|
+
"name": "void"
|
|
6483
|
+
}
|
|
6484
|
+
}
|
|
6485
|
+
]
|
|
6017
6486
|
},
|
|
6018
6487
|
{
|
|
6019
|
-
"id":
|
|
6020
|
-
"name": "
|
|
6021
|
-
"kind":
|
|
6022
|
-
"kindString": "
|
|
6488
|
+
"id": 445,
|
|
6489
|
+
"name": "maxItems",
|
|
6490
|
+
"kind": 262144,
|
|
6491
|
+
"kindString": "Accessor",
|
|
6023
6492
|
"flags": {
|
|
6024
6493
|
"isPublic": true
|
|
6025
6494
|
},
|
|
6495
|
+
"decorators": [
|
|
6496
|
+
{
|
|
6497
|
+
"name": "Input",
|
|
6498
|
+
"type": {
|
|
6499
|
+
"type": "reference",
|
|
6500
|
+
"qualifiedName": "InputDecorator",
|
|
6501
|
+
"package": "@angular/core",
|
|
6502
|
+
"name": "Input"
|
|
6503
|
+
},
|
|
6504
|
+
"arguments": {}
|
|
6505
|
+
}
|
|
6506
|
+
],
|
|
6026
6507
|
"sources": [
|
|
6027
6508
|
{
|
|
6028
6509
|
"fileName": "projects/layout/src/modules/text-expand-repeater/text-expand-repeater.component.ts",
|
|
6029
|
-
"line":
|
|
6030
|
-
"character":
|
|
6510
|
+
"line": 95,
|
|
6511
|
+
"character": 13
|
|
6031
6512
|
}
|
|
6032
6513
|
],
|
|
6033
|
-
"
|
|
6514
|
+
"getSignature": [
|
|
6034
6515
|
{
|
|
6035
|
-
"id":
|
|
6036
|
-
"name": "
|
|
6037
|
-
"kind":
|
|
6038
|
-
"kindString": "
|
|
6516
|
+
"id": 446,
|
|
6517
|
+
"name": "maxItems",
|
|
6518
|
+
"kind": 524288,
|
|
6519
|
+
"kindString": "Get signature",
|
|
6039
6520
|
"flags": {},
|
|
6521
|
+
"comment": {
|
|
6522
|
+
"shortText": "Specifies the number of items to display before truncating the list. If not supplied, all items are shown."
|
|
6523
|
+
},
|
|
6524
|
+
"type": {
|
|
6525
|
+
"type": "intrinsic",
|
|
6526
|
+
"name": "number"
|
|
6527
|
+
}
|
|
6528
|
+
}
|
|
6529
|
+
],
|
|
6530
|
+
"setSignature": [
|
|
6531
|
+
{
|
|
6532
|
+
"id": 447,
|
|
6533
|
+
"name": "maxItems",
|
|
6534
|
+
"kind": 1048576,
|
|
6535
|
+
"kindString": "Set signature",
|
|
6536
|
+
"flags": {},
|
|
6537
|
+
"comment": {
|
|
6538
|
+
"shortText": "Specifies the number of items to display before truncating the list. If not supplied, all items are shown."
|
|
6539
|
+
},
|
|
6540
|
+
"parameters": [
|
|
6541
|
+
{
|
|
6542
|
+
"id": 448,
|
|
6543
|
+
"name": "value",
|
|
6544
|
+
"kind": 32768,
|
|
6545
|
+
"kindString": "Parameter",
|
|
6546
|
+
"flags": {},
|
|
6547
|
+
"type": {
|
|
6548
|
+
"type": "intrinsic",
|
|
6549
|
+
"name": "number"
|
|
6550
|
+
}
|
|
6551
|
+
}
|
|
6552
|
+
],
|
|
6040
6553
|
"type": {
|
|
6041
6554
|
"type": "intrinsic",
|
|
6042
6555
|
"name": "void"
|
|
@@ -6045,8 +6558,8 @@
|
|
|
6045
6558
|
]
|
|
6046
6559
|
},
|
|
6047
6560
|
{
|
|
6048
|
-
"id":
|
|
6049
|
-
"name": "
|
|
6561
|
+
"id": 466,
|
|
6562
|
+
"name": "animationEnd",
|
|
6050
6563
|
"kind": 2048,
|
|
6051
6564
|
"kindString": "Method",
|
|
6052
6565
|
"flags": {
|
|
@@ -6055,35 +6568,27 @@
|
|
|
6055
6568
|
"sources": [
|
|
6056
6569
|
{
|
|
6057
6570
|
"fileName": "projects/layout/src/modules/text-expand-repeater/text-expand-repeater.component.ts",
|
|
6058
|
-
"line":
|
|
6571
|
+
"line": 162,
|
|
6059
6572
|
"character": 9
|
|
6060
6573
|
}
|
|
6061
6574
|
],
|
|
6062
6575
|
"signatures": [
|
|
6063
6576
|
{
|
|
6064
|
-
"id":
|
|
6065
|
-
"name": "
|
|
6577
|
+
"id": 467,
|
|
6578
|
+
"name": "animationEnd",
|
|
6066
6579
|
"kind": 4096,
|
|
6067
6580
|
"kindString": "Call signature",
|
|
6068
6581
|
"flags": {},
|
|
6069
6582
|
"type": {
|
|
6070
6583
|
"type": "intrinsic",
|
|
6071
6584
|
"name": "void"
|
|
6072
|
-
},
|
|
6073
|
-
"implementationOf": {
|
|
6074
|
-
"type": "reference",
|
|
6075
|
-
"name": "AfterViewInit.ngAfterViewInit"
|
|
6076
6585
|
}
|
|
6077
6586
|
}
|
|
6078
|
-
]
|
|
6079
|
-
"implementationOf": {
|
|
6080
|
-
"type": "reference",
|
|
6081
|
-
"name": "AfterViewInit.ngAfterViewInit"
|
|
6082
|
-
}
|
|
6587
|
+
]
|
|
6083
6588
|
},
|
|
6084
6589
|
{
|
|
6085
|
-
"id":
|
|
6086
|
-
"name": "
|
|
6590
|
+
"id": 464,
|
|
6591
|
+
"name": "ngAfterViewInit",
|
|
6087
6592
|
"kind": 2048,
|
|
6088
6593
|
"kindString": "Method",
|
|
6089
6594
|
"flags": {
|
|
@@ -6092,49 +6597,34 @@
|
|
|
6092
6597
|
"sources": [
|
|
6093
6598
|
{
|
|
6094
6599
|
"fileName": "projects/layout/src/modules/text-expand-repeater/text-expand-repeater.component.ts",
|
|
6095
|
-
"line":
|
|
6600
|
+
"line": 142,
|
|
6096
6601
|
"character": 9
|
|
6097
6602
|
}
|
|
6098
6603
|
],
|
|
6099
6604
|
"signatures": [
|
|
6100
6605
|
{
|
|
6101
|
-
"id":
|
|
6102
|
-
"name": "
|
|
6606
|
+
"id": 465,
|
|
6607
|
+
"name": "ngAfterViewInit",
|
|
6103
6608
|
"kind": 4096,
|
|
6104
6609
|
"kindString": "Call signature",
|
|
6105
6610
|
"flags": {},
|
|
6106
|
-
"parameters": [
|
|
6107
|
-
{
|
|
6108
|
-
"id": 428,
|
|
6109
|
-
"name": "changes",
|
|
6110
|
-
"kind": 32768,
|
|
6111
|
-
"kindString": "Parameter",
|
|
6112
|
-
"flags": {},
|
|
6113
|
-
"type": {
|
|
6114
|
-
"type": "reference",
|
|
6115
|
-
"qualifiedName": "SimpleChanges",
|
|
6116
|
-
"package": "@angular/core",
|
|
6117
|
-
"name": "SimpleChanges"
|
|
6118
|
-
}
|
|
6119
|
-
}
|
|
6120
|
-
],
|
|
6121
6611
|
"type": {
|
|
6122
6612
|
"type": "intrinsic",
|
|
6123
6613
|
"name": "void"
|
|
6124
6614
|
},
|
|
6125
6615
|
"implementationOf": {
|
|
6126
6616
|
"type": "reference",
|
|
6127
|
-
"name": "
|
|
6617
|
+
"name": "AfterViewInit.ngAfterViewInit"
|
|
6128
6618
|
}
|
|
6129
6619
|
}
|
|
6130
6620
|
],
|
|
6131
6621
|
"implementationOf": {
|
|
6132
6622
|
"type": "reference",
|
|
6133
|
-
"name": "
|
|
6623
|
+
"name": "AfterViewInit.ngAfterViewInit"
|
|
6134
6624
|
}
|
|
6135
6625
|
},
|
|
6136
6626
|
{
|
|
6137
|
-
"id":
|
|
6627
|
+
"id": 468,
|
|
6138
6628
|
"name": "repeaterExpand",
|
|
6139
6629
|
"kind": 2048,
|
|
6140
6630
|
"kindString": "Method",
|
|
@@ -6144,13 +6634,13 @@
|
|
|
6144
6634
|
"sources": [
|
|
6145
6635
|
{
|
|
6146
6636
|
"fileName": "projects/layout/src/modules/text-expand-repeater/text-expand-repeater.component.ts",
|
|
6147
|
-
"line":
|
|
6637
|
+
"line": 179,
|
|
6148
6638
|
"character": 9
|
|
6149
6639
|
}
|
|
6150
6640
|
],
|
|
6151
6641
|
"signatures": [
|
|
6152
6642
|
{
|
|
6153
|
-
"id":
|
|
6643
|
+
"id": 469,
|
|
6154
6644
|
"name": "repeaterExpand",
|
|
6155
6645
|
"kind": 4096,
|
|
6156
6646
|
"kindString": "Call signature",
|
|
@@ -6168,39 +6658,45 @@
|
|
|
6168
6658
|
"title": "Constructors",
|
|
6169
6659
|
"kind": 512,
|
|
6170
6660
|
"children": [
|
|
6171
|
-
|
|
6661
|
+
433
|
|
6172
6662
|
]
|
|
6173
6663
|
},
|
|
6174
6664
|
{
|
|
6175
6665
|
"title": "Properties",
|
|
6176
6666
|
"kind": 1024,
|
|
6177
6667
|
"children": [
|
|
6178
|
-
|
|
6179
|
-
|
|
6180
|
-
|
|
6181
|
-
|
|
6182
|
-
|
|
6183
|
-
|
|
6184
|
-
|
|
6185
|
-
|
|
6186
|
-
|
|
6668
|
+
449,
|
|
6669
|
+
456,
|
|
6670
|
+
451,
|
|
6671
|
+
450,
|
|
6672
|
+
452,
|
|
6673
|
+
443,
|
|
6674
|
+
444,
|
|
6675
|
+
453
|
|
6676
|
+
]
|
|
6677
|
+
},
|
|
6678
|
+
{
|
|
6679
|
+
"title": "Accessors",
|
|
6680
|
+
"kind": 262144,
|
|
6681
|
+
"children": [
|
|
6682
|
+
439,
|
|
6683
|
+
445
|
|
6187
6684
|
]
|
|
6188
6685
|
},
|
|
6189
6686
|
{
|
|
6190
6687
|
"title": "Methods",
|
|
6191
6688
|
"kind": 2048,
|
|
6192
6689
|
"children": [
|
|
6193
|
-
|
|
6194
|
-
|
|
6195
|
-
|
|
6196
|
-
431
|
|
6690
|
+
466,
|
|
6691
|
+
464,
|
|
6692
|
+
468
|
|
6197
6693
|
]
|
|
6198
6694
|
}
|
|
6199
6695
|
],
|
|
6200
6696
|
"sources": [
|
|
6201
6697
|
{
|
|
6202
6698
|
"fileName": "projects/layout/src/modules/text-expand-repeater/text-expand-repeater.component.ts",
|
|
6203
|
-
"line":
|
|
6699
|
+
"line": 58,
|
|
6204
6700
|
"character": 13
|
|
6205
6701
|
}
|
|
6206
6702
|
],
|
|
@@ -6210,17 +6706,11 @@
|
|
|
6210
6706
|
"qualifiedName": "AfterViewInit",
|
|
6211
6707
|
"package": "@angular/core",
|
|
6212
6708
|
"name": "AfterViewInit"
|
|
6213
|
-
},
|
|
6214
|
-
{
|
|
6215
|
-
"type": "reference",
|
|
6216
|
-
"qualifiedName": "OnChanges",
|
|
6217
|
-
"package": "@angular/core",
|
|
6218
|
-
"name": "OnChanges"
|
|
6219
6709
|
}
|
|
6220
6710
|
]
|
|
6221
6711
|
},
|
|
6222
6712
|
{
|
|
6223
|
-
"id":
|
|
6713
|
+
"id": 480,
|
|
6224
6714
|
"name": "SkyToolbarComponent",
|
|
6225
6715
|
"kind": 128,
|
|
6226
6716
|
"kindString": "Class",
|
|
@@ -6244,7 +6734,7 @@
|
|
|
6244
6734
|
],
|
|
6245
6735
|
"children": [
|
|
6246
6736
|
{
|
|
6247
|
-
"id":
|
|
6737
|
+
"id": 483,
|
|
6248
6738
|
"name": "hasSections",
|
|
6249
6739
|
"kind": 1024,
|
|
6250
6740
|
"kindString": "Property",
|
|
@@ -6265,7 +6755,7 @@
|
|
|
6265
6755
|
"defaultValue": "false"
|
|
6266
6756
|
},
|
|
6267
6757
|
{
|
|
6268
|
-
"id":
|
|
6758
|
+
"id": 484,
|
|
6269
6759
|
"name": "sectionComponents",
|
|
6270
6760
|
"kind": 262144,
|
|
6271
6761
|
"kindString": "Accessor",
|
|
@@ -6296,14 +6786,14 @@
|
|
|
6296
6786
|
],
|
|
6297
6787
|
"setSignature": [
|
|
6298
6788
|
{
|
|
6299
|
-
"id":
|
|
6789
|
+
"id": 485,
|
|
6300
6790
|
"name": "sectionComponents",
|
|
6301
6791
|
"kind": 1048576,
|
|
6302
6792
|
"kindString": "Set signature",
|
|
6303
6793
|
"flags": {},
|
|
6304
6794
|
"parameters": [
|
|
6305
6795
|
{
|
|
6306
|
-
"id":
|
|
6796
|
+
"id": 486,
|
|
6307
6797
|
"name": "value",
|
|
6308
6798
|
"kind": 32768,
|
|
6309
6799
|
"kindString": "Parameter",
|
|
@@ -6313,7 +6803,7 @@
|
|
|
6313
6803
|
"typeArguments": [
|
|
6314
6804
|
{
|
|
6315
6805
|
"type": "reference",
|
|
6316
|
-
"id":
|
|
6806
|
+
"id": 487,
|
|
6317
6807
|
"name": "SkyToolbarSectionComponent"
|
|
6318
6808
|
}
|
|
6319
6809
|
],
|
|
@@ -6336,21 +6826,21 @@
|
|
|
6336
6826
|
"title": "Constructors",
|
|
6337
6827
|
"kind": 512,
|
|
6338
6828
|
"children": [
|
|
6339
|
-
|
|
6829
|
+
481
|
|
6340
6830
|
]
|
|
6341
6831
|
},
|
|
6342
6832
|
{
|
|
6343
6833
|
"title": "Properties",
|
|
6344
6834
|
"kind": 1024,
|
|
6345
6835
|
"children": [
|
|
6346
|
-
|
|
6836
|
+
483
|
|
6347
6837
|
]
|
|
6348
6838
|
},
|
|
6349
6839
|
{
|
|
6350
6840
|
"title": "Accessors",
|
|
6351
6841
|
"kind": 262144,
|
|
6352
6842
|
"children": [
|
|
6353
|
-
|
|
6843
|
+
484
|
|
6354
6844
|
]
|
|
6355
6845
|
}
|
|
6356
6846
|
],
|
|
@@ -6363,7 +6853,7 @@
|
|
|
6363
6853
|
]
|
|
6364
6854
|
},
|
|
6365
6855
|
{
|
|
6366
|
-
"id":
|
|
6856
|
+
"id": 487,
|
|
6367
6857
|
"name": "SkyToolbarSectionComponent",
|
|
6368
6858
|
"kind": 128,
|
|
6369
6859
|
"kindString": "Class",
|
|
@@ -6391,7 +6881,7 @@
|
|
|
6391
6881
|
"title": "Constructors",
|
|
6392
6882
|
"kind": 512,
|
|
6393
6883
|
"children": [
|
|
6394
|
-
|
|
6884
|
+
488
|
|
6395
6885
|
]
|
|
6396
6886
|
}
|
|
6397
6887
|
],
|
|
@@ -6404,7 +6894,7 @@
|
|
|
6404
6894
|
]
|
|
6405
6895
|
},
|
|
6406
6896
|
{
|
|
6407
|
-
"id":
|
|
6897
|
+
"id": 490,
|
|
6408
6898
|
"name": "SkyToolbarItemComponent",
|
|
6409
6899
|
"kind": 128,
|
|
6410
6900
|
"kindString": "Class",
|
|
@@ -6432,7 +6922,7 @@
|
|
|
6432
6922
|
"title": "Constructors",
|
|
6433
6923
|
"kind": 512,
|
|
6434
6924
|
"children": [
|
|
6435
|
-
|
|
6925
|
+
491
|
|
6436
6926
|
]
|
|
6437
6927
|
}
|
|
6438
6928
|
],
|
|
@@ -6486,7 +6976,7 @@
|
|
|
6486
6976
|
]
|
|
6487
6977
|
},
|
|
6488
6978
|
{
|
|
6489
|
-
"id":
|
|
6979
|
+
"id": 493,
|
|
6490
6980
|
"name": "SkyToolbarViewActionsComponent",
|
|
6491
6981
|
"kind": 128,
|
|
6492
6982
|
"kindString": "Class",
|
|
@@ -6514,7 +7004,7 @@
|
|
|
6514
7004
|
"title": "Constructors",
|
|
6515
7005
|
"kind": 512,
|
|
6516
7006
|
"children": [
|
|
6517
|
-
|
|
7007
|
+
494
|
|
6518
7008
|
]
|
|
6519
7009
|
}
|
|
6520
7010
|
],
|
|
@@ -6527,7 +7017,7 @@
|
|
|
6527
7017
|
]
|
|
6528
7018
|
},
|
|
6529
7019
|
{
|
|
6530
|
-
"id":
|
|
7020
|
+
"id": 496,
|
|
6531
7021
|
"name": "SkyBoxComponent",
|
|
6532
7022
|
"kind": 128,
|
|
6533
7023
|
"kindString": "Class",
|
|
@@ -6551,7 +7041,7 @@
|
|
|
6551
7041
|
],
|
|
6552
7042
|
"children": [
|
|
6553
7043
|
{
|
|
6554
|
-
"id":
|
|
7044
|
+
"id": 499,
|
|
6555
7045
|
"name": "ariaLabel",
|
|
6556
7046
|
"kind": 1024,
|
|
6557
7047
|
"kindString": "Property",
|
|
@@ -6586,7 +7076,7 @@
|
|
|
6586
7076
|
}
|
|
6587
7077
|
},
|
|
6588
7078
|
{
|
|
6589
|
-
"id":
|
|
7079
|
+
"id": 500,
|
|
6590
7080
|
"name": "ariaLabelledBy",
|
|
6591
7081
|
"kind": 1024,
|
|
6592
7082
|
"kindString": "Property",
|
|
@@ -6621,7 +7111,7 @@
|
|
|
6621
7111
|
}
|
|
6622
7112
|
},
|
|
6623
7113
|
{
|
|
6624
|
-
"id":
|
|
7114
|
+
"id": 501,
|
|
6625
7115
|
"name": "ariaRole",
|
|
6626
7116
|
"kind": 1024,
|
|
6627
7117
|
"kindString": "Property",
|
|
@@ -6661,16 +7151,16 @@
|
|
|
6661
7151
|
"title": "Constructors",
|
|
6662
7152
|
"kind": 512,
|
|
6663
7153
|
"children": [
|
|
6664
|
-
|
|
7154
|
+
497
|
|
6665
7155
|
]
|
|
6666
7156
|
},
|
|
6667
7157
|
{
|
|
6668
7158
|
"title": "Properties",
|
|
6669
7159
|
"kind": 1024,
|
|
6670
7160
|
"children": [
|
|
6671
|
-
|
|
6672
|
-
|
|
6673
|
-
|
|
7161
|
+
499,
|
|
7162
|
+
500,
|
|
7163
|
+
501
|
|
6674
7164
|
]
|
|
6675
7165
|
}
|
|
6676
7166
|
],
|
|
@@ -6683,7 +7173,7 @@
|
|
|
6683
7173
|
]
|
|
6684
7174
|
},
|
|
6685
7175
|
{
|
|
6686
|
-
"id":
|
|
7176
|
+
"id": 502,
|
|
6687
7177
|
"name": "SkyBoxHeaderComponent",
|
|
6688
7178
|
"kind": 128,
|
|
6689
7179
|
"kindString": "Class",
|
|
@@ -6711,7 +7201,7 @@
|
|
|
6711
7201
|
"title": "Constructors",
|
|
6712
7202
|
"kind": 512,
|
|
6713
7203
|
"children": [
|
|
6714
|
-
|
|
7204
|
+
503
|
|
6715
7205
|
]
|
|
6716
7206
|
}
|
|
6717
7207
|
],
|
|
@@ -6724,7 +7214,7 @@
|
|
|
6724
7214
|
]
|
|
6725
7215
|
},
|
|
6726
7216
|
{
|
|
6727
|
-
"id":
|
|
7217
|
+
"id": 505,
|
|
6728
7218
|
"name": "SkyBoxContentComponent",
|
|
6729
7219
|
"kind": 128,
|
|
6730
7220
|
"kindString": "Class",
|
|
@@ -6752,7 +7242,7 @@
|
|
|
6752
7242
|
"title": "Constructors",
|
|
6753
7243
|
"kind": 512,
|
|
6754
7244
|
"children": [
|
|
6755
|
-
|
|
7245
|
+
506
|
|
6756
7246
|
]
|
|
6757
7247
|
}
|
|
6758
7248
|
],
|
|
@@ -6765,7 +7255,7 @@
|
|
|
6765
7255
|
]
|
|
6766
7256
|
},
|
|
6767
7257
|
{
|
|
6768
|
-
"id":
|
|
7258
|
+
"id": 508,
|
|
6769
7259
|
"name": "SkyBoxControlsComponent",
|
|
6770
7260
|
"kind": 128,
|
|
6771
7261
|
"kindString": "Class",
|
|
@@ -6793,7 +7283,7 @@
|
|
|
6793
7283
|
"title": "Constructors",
|
|
6794
7284
|
"kind": 512,
|
|
6795
7285
|
"children": [
|
|
6796
|
-
|
|
7286
|
+
509
|
|
6797
7287
|
]
|
|
6798
7288
|
}
|
|
6799
7289
|
],
|
|
@@ -7145,7 +7635,7 @@
|
|
|
7145
7635
|
"flags": {},
|
|
7146
7636
|
"type": {
|
|
7147
7637
|
"type": "reference",
|
|
7148
|
-
"id":
|
|
7638
|
+
"id": 531,
|
|
7149
7639
|
"name": "SkyBackToTopOptions"
|
|
7150
7640
|
}
|
|
7151
7641
|
}
|
|
@@ -7206,7 +7696,7 @@
|
|
|
7206
7696
|
"typeArguments": [
|
|
7207
7697
|
{
|
|
7208
7698
|
"type": "reference",
|
|
7209
|
-
"id":
|
|
7699
|
+
"id": 527,
|
|
7210
7700
|
"name": "SkyBackToTopMessage"
|
|
7211
7701
|
}
|
|
7212
7702
|
],
|
|
@@ -7375,7 +7865,7 @@
|
|
|
7375
7865
|
"sources": [
|
|
7376
7866
|
{
|
|
7377
7867
|
"fileName": "projects/layout/src/modules/inline-delete/inline-delete.component.ts",
|
|
7378
|
-
"line":
|
|
7868
|
+
"line": 121,
|
|
7379
7869
|
"character": 2
|
|
7380
7870
|
}
|
|
7381
7871
|
],
|
|
@@ -7525,6 +8015,49 @@
|
|
|
7525
8015
|
},
|
|
7526
8016
|
"defaultValue": "..."
|
|
7527
8017
|
},
|
|
8018
|
+
{
|
|
8019
|
+
"id": 131,
|
|
8020
|
+
"name": "deleteButton",
|
|
8021
|
+
"kind": 1024,
|
|
8022
|
+
"kindString": "Property",
|
|
8023
|
+
"flags": {
|
|
8024
|
+
"isPublic": true
|
|
8025
|
+
},
|
|
8026
|
+
"decorators": [
|
|
8027
|
+
{
|
|
8028
|
+
"name": "ViewChild",
|
|
8029
|
+
"type": {
|
|
8030
|
+
"type": "reference",
|
|
8031
|
+
"qualifiedName": "ViewChildDecorator",
|
|
8032
|
+
"package": "@angular/core",
|
|
8033
|
+
"name": "ViewChild"
|
|
8034
|
+
},
|
|
8035
|
+
"arguments": {
|
|
8036
|
+
"selector": "'delete'",
|
|
8037
|
+
"opts": "{\n read: ElementRef,\n static: false,\n }"
|
|
8038
|
+
}
|
|
8039
|
+
}
|
|
8040
|
+
],
|
|
8041
|
+
"sources": [
|
|
8042
|
+
{
|
|
8043
|
+
"fileName": "projects/layout/src/modules/inline-delete/inline-delete.component.ts",
|
|
8044
|
+
"line": 115,
|
|
8045
|
+
"character": 9
|
|
8046
|
+
}
|
|
8047
|
+
],
|
|
8048
|
+
"type": {
|
|
8049
|
+
"type": "reference",
|
|
8050
|
+
"typeArguments": [
|
|
8051
|
+
{
|
|
8052
|
+
"type": "intrinsic",
|
|
8053
|
+
"name": "any"
|
|
8054
|
+
}
|
|
8055
|
+
],
|
|
8056
|
+
"qualifiedName": "ElementRef",
|
|
8057
|
+
"package": "@angular/core",
|
|
8058
|
+
"name": "ElementRef"
|
|
8059
|
+
}
|
|
8060
|
+
},
|
|
7528
8061
|
{
|
|
7529
8062
|
"id": 127,
|
|
7530
8063
|
"name": "deleteTriggered",
|
|
@@ -7648,6 +8181,7 @@
|
|
|
7648
8181
|
128,
|
|
7649
8182
|
129,
|
|
7650
8183
|
126,
|
|
8184
|
+
131,
|
|
7651
8185
|
127,
|
|
7652
8186
|
125,
|
|
7653
8187
|
130
|
|
@@ -7677,7 +8211,7 @@
|
|
|
7677
8211
|
]
|
|
7678
8212
|
},
|
|
7679
8213
|
{
|
|
7680
|
-
"id":
|
|
8214
|
+
"id": 149,
|
|
7681
8215
|
"name": "SkyCardComponent",
|
|
7682
8216
|
"kind": 128,
|
|
7683
8217
|
"kindString": "Class",
|
|
@@ -7707,7 +8241,7 @@
|
|
|
7707
8241
|
],
|
|
7708
8242
|
"children": [
|
|
7709
8243
|
{
|
|
7710
|
-
"id":
|
|
8244
|
+
"id": 150,
|
|
7711
8245
|
"name": "constructor",
|
|
7712
8246
|
"kind": 512,
|
|
7713
8247
|
"kindString": "Constructor",
|
|
@@ -7715,20 +8249,20 @@
|
|
|
7715
8249
|
"sources": [
|
|
7716
8250
|
{
|
|
7717
8251
|
"fileName": "projects/layout/src/modules/card/card.component.ts",
|
|
7718
|
-
"line":
|
|
8252
|
+
"line": 76,
|
|
7719
8253
|
"character": 2
|
|
7720
8254
|
}
|
|
7721
8255
|
],
|
|
7722
8256
|
"signatures": [
|
|
7723
8257
|
{
|
|
7724
|
-
"id":
|
|
8258
|
+
"id": 151,
|
|
7725
8259
|
"name": "SkyCardComponent",
|
|
7726
8260
|
"kind": 16384,
|
|
7727
8261
|
"kindString": "Constructor signature",
|
|
7728
8262
|
"flags": {},
|
|
7729
8263
|
"parameters": [
|
|
7730
8264
|
{
|
|
7731
|
-
"id":
|
|
8265
|
+
"id": 152,
|
|
7732
8266
|
"name": "logger",
|
|
7733
8267
|
"kind": 32768,
|
|
7734
8268
|
"kindString": "Parameter",
|
|
@@ -7741,14 +8275,14 @@
|
|
|
7741
8275
|
],
|
|
7742
8276
|
"type": {
|
|
7743
8277
|
"type": "reference",
|
|
7744
|
-
"id":
|
|
8278
|
+
"id": 149,
|
|
7745
8279
|
"name": "SkyCardComponent"
|
|
7746
8280
|
}
|
|
7747
8281
|
}
|
|
7748
8282
|
]
|
|
7749
8283
|
},
|
|
7750
8284
|
{
|
|
7751
|
-
"id":
|
|
8285
|
+
"id": 160,
|
|
7752
8286
|
"name": "inlineDeleteComponent",
|
|
7753
8287
|
"kind": 1024,
|
|
7754
8288
|
"kindString": "Property",
|
|
@@ -7772,7 +8306,7 @@
|
|
|
7772
8306
|
"sources": [
|
|
7773
8307
|
{
|
|
7774
8308
|
"fileName": "projects/layout/src/modules/card/card.component.ts",
|
|
7775
|
-
"line":
|
|
8309
|
+
"line": 66,
|
|
7776
8310
|
"character": 9
|
|
7777
8311
|
}
|
|
7778
8312
|
],
|
|
@@ -7791,7 +8325,7 @@
|
|
|
7791
8325
|
}
|
|
7792
8326
|
},
|
|
7793
8327
|
{
|
|
7794
|
-
"id":
|
|
8328
|
+
"id": 157,
|
|
7795
8329
|
"name": "selectable",
|
|
7796
8330
|
"kind": 1024,
|
|
7797
8331
|
"kindString": "Property",
|
|
@@ -7822,17 +8356,18 @@
|
|
|
7822
8356
|
"sources": [
|
|
7823
8357
|
{
|
|
7824
8358
|
"fileName": "projects/layout/src/modules/card/card.component.ts",
|
|
7825
|
-
"line":
|
|
8359
|
+
"line": 49,
|
|
7826
8360
|
"character": 9
|
|
7827
8361
|
}
|
|
7828
8362
|
],
|
|
7829
8363
|
"type": {
|
|
7830
8364
|
"type": "intrinsic",
|
|
7831
8365
|
"name": "boolean"
|
|
7832
|
-
}
|
|
8366
|
+
},
|
|
8367
|
+
"defaultValue": "false"
|
|
7833
8368
|
},
|
|
7834
8369
|
{
|
|
7835
|
-
"id":
|
|
8370
|
+
"id": 158,
|
|
7836
8371
|
"name": "selected",
|
|
7837
8372
|
"kind": 1024,
|
|
7838
8373
|
"kindString": "Property",
|
|
@@ -7863,17 +8398,18 @@
|
|
|
7863
8398
|
"sources": [
|
|
7864
8399
|
{
|
|
7865
8400
|
"fileName": "projects/layout/src/modules/card/card.component.ts",
|
|
7866
|
-
"line":
|
|
8401
|
+
"line": 57,
|
|
7867
8402
|
"character": 9
|
|
7868
8403
|
}
|
|
7869
8404
|
],
|
|
7870
8405
|
"type": {
|
|
7871
8406
|
"type": "intrinsic",
|
|
7872
8407
|
"name": "boolean"
|
|
7873
|
-
}
|
|
8408
|
+
},
|
|
8409
|
+
"defaultValue": "false"
|
|
7874
8410
|
},
|
|
7875
8411
|
{
|
|
7876
|
-
"id":
|
|
8412
|
+
"id": 159,
|
|
7877
8413
|
"name": "selectedChange",
|
|
7878
8414
|
"kind": 1024,
|
|
7879
8415
|
"kindString": "Property",
|
|
@@ -7898,7 +8434,7 @@
|
|
|
7898
8434
|
"sources": [
|
|
7899
8435
|
{
|
|
7900
8436
|
"fileName": "projects/layout/src/modules/card/card.component.ts",
|
|
7901
|
-
"line":
|
|
8437
|
+
"line": 63,
|
|
7902
8438
|
"character": 9
|
|
7903
8439
|
}
|
|
7904
8440
|
],
|
|
@@ -7917,7 +8453,7 @@
|
|
|
7917
8453
|
"defaultValue": "..."
|
|
7918
8454
|
},
|
|
7919
8455
|
{
|
|
7920
|
-
"id":
|
|
8456
|
+
"id": 162,
|
|
7921
8457
|
"name": "showTitle",
|
|
7922
8458
|
"kind": 1024,
|
|
7923
8459
|
"kindString": "Property",
|
|
@@ -7927,7 +8463,7 @@
|
|
|
7927
8463
|
"sources": [
|
|
7928
8464
|
{
|
|
7929
8465
|
"fileName": "projects/layout/src/modules/card/card.component.ts",
|
|
7930
|
-
"line":
|
|
8466
|
+
"line": 71,
|
|
7931
8467
|
"character": 9
|
|
7932
8468
|
}
|
|
7933
8469
|
],
|
|
@@ -7938,91 +8474,135 @@
|
|
|
7938
8474
|
"defaultValue": "true"
|
|
7939
8475
|
},
|
|
7940
8476
|
{
|
|
7941
|
-
"id":
|
|
7942
|
-
"name": "
|
|
8477
|
+
"id": 161,
|
|
8478
|
+
"name": "titleComponent",
|
|
7943
8479
|
"kind": 1024,
|
|
7944
8480
|
"kindString": "Property",
|
|
7945
8481
|
"flags": {
|
|
7946
8482
|
"isPublic": true
|
|
7947
8483
|
},
|
|
7948
|
-
"comment": {
|
|
7949
|
-
"shortText": "Specifies the size of the card. The valid options are `\"large\"` and `\"small\"`.",
|
|
7950
|
-
"tags": [
|
|
7951
|
-
{
|
|
7952
|
-
"tag": "default",
|
|
7953
|
-
"text": "\"large\"\n"
|
|
7954
|
-
}
|
|
7955
|
-
]
|
|
7956
|
-
},
|
|
7957
8484
|
"decorators": [
|
|
7958
8485
|
{
|
|
7959
|
-
"name": "
|
|
8486
|
+
"name": "ContentChildren",
|
|
7960
8487
|
"type": {
|
|
7961
8488
|
"type": "reference",
|
|
7962
|
-
"qualifiedName": "
|
|
8489
|
+
"qualifiedName": "ContentChildrenDecorator",
|
|
7963
8490
|
"package": "@angular/core",
|
|
7964
|
-
"name": "
|
|
8491
|
+
"name": "ContentChildren"
|
|
7965
8492
|
},
|
|
7966
|
-
"arguments": {
|
|
8493
|
+
"arguments": {
|
|
8494
|
+
"selector": "SkyCardTitleComponent"
|
|
8495
|
+
}
|
|
7967
8496
|
}
|
|
7968
8497
|
],
|
|
7969
8498
|
"sources": [
|
|
7970
8499
|
{
|
|
7971
8500
|
"fileName": "projects/layout/src/modules/card/card.component.ts",
|
|
7972
|
-
"line":
|
|
8501
|
+
"line": 69,
|
|
7973
8502
|
"character": 9
|
|
7974
8503
|
}
|
|
7975
8504
|
],
|
|
7976
8505
|
"type": {
|
|
7977
|
-
"type": "
|
|
7978
|
-
"
|
|
8506
|
+
"type": "reference",
|
|
8507
|
+
"typeArguments": [
|
|
8508
|
+
{
|
|
8509
|
+
"type": "reference",
|
|
8510
|
+
"id": 180,
|
|
8511
|
+
"name": "SkyCardTitleComponent"
|
|
8512
|
+
}
|
|
8513
|
+
],
|
|
8514
|
+
"qualifiedName": "QueryList",
|
|
8515
|
+
"package": "@angular/core",
|
|
8516
|
+
"name": "QueryList"
|
|
7979
8517
|
}
|
|
7980
8518
|
},
|
|
7981
8519
|
{
|
|
7982
|
-
"id":
|
|
7983
|
-
"name": "
|
|
7984
|
-
"kind":
|
|
7985
|
-
"kindString": "
|
|
8520
|
+
"id": 153,
|
|
8521
|
+
"name": "size",
|
|
8522
|
+
"kind": 262144,
|
|
8523
|
+
"kindString": "Accessor",
|
|
7986
8524
|
"flags": {
|
|
7987
8525
|
"isPublic": true
|
|
7988
8526
|
},
|
|
7989
8527
|
"decorators": [
|
|
7990
8528
|
{
|
|
7991
|
-
"name": "
|
|
8529
|
+
"name": "Input",
|
|
7992
8530
|
"type": {
|
|
7993
8531
|
"type": "reference",
|
|
7994
|
-
"qualifiedName": "
|
|
8532
|
+
"qualifiedName": "InputDecorator",
|
|
7995
8533
|
"package": "@angular/core",
|
|
7996
|
-
"name": "
|
|
8534
|
+
"name": "Input"
|
|
7997
8535
|
},
|
|
7998
|
-
"arguments": {
|
|
7999
|
-
"selector": "SkyCardTitleComponent"
|
|
8000
|
-
}
|
|
8536
|
+
"arguments": {}
|
|
8001
8537
|
}
|
|
8002
8538
|
],
|
|
8003
8539
|
"sources": [
|
|
8004
8540
|
{
|
|
8005
8541
|
"fileName": "projects/layout/src/modules/card/card.component.ts",
|
|
8006
|
-
"line":
|
|
8007
|
-
"character":
|
|
8542
|
+
"line": 35,
|
|
8543
|
+
"character": 13
|
|
8008
8544
|
}
|
|
8009
8545
|
],
|
|
8010
|
-
"
|
|
8011
|
-
|
|
8012
|
-
|
|
8013
|
-
|
|
8014
|
-
|
|
8015
|
-
|
|
8016
|
-
|
|
8546
|
+
"getSignature": [
|
|
8547
|
+
{
|
|
8548
|
+
"id": 154,
|
|
8549
|
+
"name": "size",
|
|
8550
|
+
"kind": 524288,
|
|
8551
|
+
"kindString": "Get signature",
|
|
8552
|
+
"flags": {},
|
|
8553
|
+
"comment": {
|
|
8554
|
+
"shortText": "Specifies the size of the card. The valid options are `\"large\"` and `\"small\"`.",
|
|
8555
|
+
"tags": [
|
|
8556
|
+
{
|
|
8557
|
+
"tag": "default",
|
|
8558
|
+
"text": "\"large\"\n"
|
|
8559
|
+
}
|
|
8560
|
+
]
|
|
8561
|
+
},
|
|
8562
|
+
"type": {
|
|
8563
|
+
"type": "intrinsic",
|
|
8564
|
+
"name": "string"
|
|
8017
8565
|
}
|
|
8018
|
-
|
|
8019
|
-
|
|
8020
|
-
|
|
8021
|
-
|
|
8022
|
-
|
|
8566
|
+
}
|
|
8567
|
+
],
|
|
8568
|
+
"setSignature": [
|
|
8569
|
+
{
|
|
8570
|
+
"id": 155,
|
|
8571
|
+
"name": "size",
|
|
8572
|
+
"kind": 1048576,
|
|
8573
|
+
"kindString": "Set signature",
|
|
8574
|
+
"flags": {},
|
|
8575
|
+
"comment": {
|
|
8576
|
+
"shortText": "Specifies the size of the card. The valid options are `\"large\"` and `\"small\"`.",
|
|
8577
|
+
"tags": [
|
|
8578
|
+
{
|
|
8579
|
+
"tag": "default",
|
|
8580
|
+
"text": "\"large\"\n"
|
|
8581
|
+
}
|
|
8582
|
+
]
|
|
8583
|
+
},
|
|
8584
|
+
"parameters": [
|
|
8585
|
+
{
|
|
8586
|
+
"id": 156,
|
|
8587
|
+
"name": "value",
|
|
8588
|
+
"kind": 32768,
|
|
8589
|
+
"kindString": "Parameter",
|
|
8590
|
+
"flags": {},
|
|
8591
|
+
"type": {
|
|
8592
|
+
"type": "intrinsic",
|
|
8593
|
+
"name": "string"
|
|
8594
|
+
}
|
|
8595
|
+
}
|
|
8596
|
+
],
|
|
8597
|
+
"type": {
|
|
8598
|
+
"type": "intrinsic",
|
|
8599
|
+
"name": "void"
|
|
8600
|
+
}
|
|
8601
|
+
}
|
|
8602
|
+
]
|
|
8023
8603
|
},
|
|
8024
8604
|
{
|
|
8025
|
-
"id":
|
|
8605
|
+
"id": 167,
|
|
8026
8606
|
"name": "contentClick",
|
|
8027
8607
|
"kind": 2048,
|
|
8028
8608
|
"kindString": "Method",
|
|
@@ -8032,13 +8612,13 @@
|
|
|
8032
8612
|
"sources": [
|
|
8033
8613
|
{
|
|
8034
8614
|
"fileName": "projects/layout/src/modules/card/card.component.ts",
|
|
8035
|
-
"line":
|
|
8615
|
+
"line": 104,
|
|
8036
8616
|
"character": 9
|
|
8037
8617
|
}
|
|
8038
8618
|
],
|
|
8039
8619
|
"signatures": [
|
|
8040
8620
|
{
|
|
8041
|
-
"id":
|
|
8621
|
+
"id": 168,
|
|
8042
8622
|
"name": "contentClick",
|
|
8043
8623
|
"kind": 4096,
|
|
8044
8624
|
"kindString": "Call signature",
|
|
@@ -8051,7 +8631,7 @@
|
|
|
8051
8631
|
]
|
|
8052
8632
|
},
|
|
8053
8633
|
{
|
|
8054
|
-
"id":
|
|
8634
|
+
"id": 165,
|
|
8055
8635
|
"name": "ngAfterContentInit",
|
|
8056
8636
|
"kind": 2048,
|
|
8057
8637
|
"kindString": "Method",
|
|
@@ -8061,13 +8641,13 @@
|
|
|
8061
8641
|
"sources": [
|
|
8062
8642
|
{
|
|
8063
8643
|
"fileName": "projects/layout/src/modules/card/card.component.ts",
|
|
8064
|
-
"line":
|
|
8644
|
+
"line": 86,
|
|
8065
8645
|
"character": 9
|
|
8066
8646
|
}
|
|
8067
8647
|
],
|
|
8068
8648
|
"signatures": [
|
|
8069
8649
|
{
|
|
8070
|
-
"id":
|
|
8650
|
+
"id": 166,
|
|
8071
8651
|
"name": "ngAfterContentInit",
|
|
8072
8652
|
"kind": 4096,
|
|
8073
8653
|
"kindString": "Call signature",
|
|
@@ -8088,7 +8668,7 @@
|
|
|
8088
8668
|
}
|
|
8089
8669
|
},
|
|
8090
8670
|
{
|
|
8091
|
-
"id":
|
|
8671
|
+
"id": 172,
|
|
8092
8672
|
"name": "ngOnDestroy",
|
|
8093
8673
|
"kind": 2048,
|
|
8094
8674
|
"kindString": "Method",
|
|
@@ -8098,13 +8678,13 @@
|
|
|
8098
8678
|
"sources": [
|
|
8099
8679
|
{
|
|
8100
8680
|
"fileName": "projects/layout/src/modules/card/card.component.ts",
|
|
8101
|
-
"line":
|
|
8681
|
+
"line": 118,
|
|
8102
8682
|
"character": 9
|
|
8103
8683
|
}
|
|
8104
8684
|
],
|
|
8105
8685
|
"signatures": [
|
|
8106
8686
|
{
|
|
8107
|
-
"id":
|
|
8687
|
+
"id": 173,
|
|
8108
8688
|
"name": "ngOnDestroy",
|
|
8109
8689
|
"kind": 4096,
|
|
8110
8690
|
"kindString": "Call signature",
|
|
@@ -8125,7 +8705,7 @@
|
|
|
8125
8705
|
}
|
|
8126
8706
|
},
|
|
8127
8707
|
{
|
|
8128
|
-
"id":
|
|
8708
|
+
"id": 169,
|
|
8129
8709
|
"name": "onCheckboxChange",
|
|
8130
8710
|
"kind": 2048,
|
|
8131
8711
|
"kindString": "Method",
|
|
@@ -8135,20 +8715,20 @@
|
|
|
8135
8715
|
"sources": [
|
|
8136
8716
|
{
|
|
8137
8717
|
"fileName": "projects/layout/src/modules/card/card.component.ts",
|
|
8138
|
-
"line":
|
|
8718
|
+
"line": 111,
|
|
8139
8719
|
"character": 9
|
|
8140
8720
|
}
|
|
8141
8721
|
],
|
|
8142
8722
|
"signatures": [
|
|
8143
8723
|
{
|
|
8144
|
-
"id":
|
|
8724
|
+
"id": 170,
|
|
8145
8725
|
"name": "onCheckboxChange",
|
|
8146
8726
|
"kind": 4096,
|
|
8147
8727
|
"kindString": "Call signature",
|
|
8148
8728
|
"flags": {},
|
|
8149
8729
|
"parameters": [
|
|
8150
8730
|
{
|
|
8151
|
-
"id":
|
|
8731
|
+
"id": 171,
|
|
8152
8732
|
"name": "newValue",
|
|
8153
8733
|
"kind": 32768,
|
|
8154
8734
|
"kindString": "Parameter",
|
|
@@ -8172,30 +8752,36 @@
|
|
|
8172
8752
|
"title": "Constructors",
|
|
8173
8753
|
"kind": 512,
|
|
8174
8754
|
"children": [
|
|
8175
|
-
|
|
8755
|
+
150
|
|
8176
8756
|
]
|
|
8177
8757
|
},
|
|
8178
8758
|
{
|
|
8179
8759
|
"title": "Properties",
|
|
8180
8760
|
"kind": 1024,
|
|
8181
8761
|
"children": [
|
|
8182
|
-
|
|
8183
|
-
|
|
8184
|
-
|
|
8185
|
-
|
|
8186
|
-
|
|
8187
|
-
|
|
8188
|
-
|
|
8762
|
+
160,
|
|
8763
|
+
157,
|
|
8764
|
+
158,
|
|
8765
|
+
159,
|
|
8766
|
+
162,
|
|
8767
|
+
161
|
|
8768
|
+
]
|
|
8769
|
+
},
|
|
8770
|
+
{
|
|
8771
|
+
"title": "Accessors",
|
|
8772
|
+
"kind": 262144,
|
|
8773
|
+
"children": [
|
|
8774
|
+
153
|
|
8189
8775
|
]
|
|
8190
8776
|
},
|
|
8191
8777
|
{
|
|
8192
8778
|
"title": "Methods",
|
|
8193
8779
|
"kind": 2048,
|
|
8194
8780
|
"children": [
|
|
8195
|
-
|
|
8196
|
-
158,
|
|
8781
|
+
167,
|
|
8197
8782
|
165,
|
|
8198
|
-
|
|
8783
|
+
172,
|
|
8784
|
+
169
|
|
8199
8785
|
]
|
|
8200
8786
|
}
|
|
8201
8787
|
],
|
|
@@ -8222,7 +8808,7 @@
|
|
|
8222
8808
|
]
|
|
8223
8809
|
},
|
|
8224
8810
|
{
|
|
8225
|
-
"id":
|
|
8811
|
+
"id": 511,
|
|
8226
8812
|
"name": "SkyActionButtonPermalink",
|
|
8227
8813
|
"kind": 256,
|
|
8228
8814
|
"kindString": "Interface",
|
|
@@ -8232,7 +8818,7 @@
|
|
|
8232
8818
|
},
|
|
8233
8819
|
"children": [
|
|
8234
8820
|
{
|
|
8235
|
-
"id":
|
|
8821
|
+
"id": 512,
|
|
8236
8822
|
"name": "route",
|
|
8237
8823
|
"kind": 1024,
|
|
8238
8824
|
"kindString": "Property",
|
|
@@ -8252,14 +8838,14 @@
|
|
|
8252
8838
|
"type": {
|
|
8253
8839
|
"type": "reflection",
|
|
8254
8840
|
"declaration": {
|
|
8255
|
-
"id":
|
|
8841
|
+
"id": 513,
|
|
8256
8842
|
"name": "__type",
|
|
8257
8843
|
"kind": 65536,
|
|
8258
8844
|
"kindString": "Type literal",
|
|
8259
8845
|
"flags": {},
|
|
8260
8846
|
"children": [
|
|
8261
8847
|
{
|
|
8262
|
-
"id":
|
|
8848
|
+
"id": 514,
|
|
8263
8849
|
"name": "commands",
|
|
8264
8850
|
"kind": 1024,
|
|
8265
8851
|
"kindString": "Property",
|
|
@@ -8280,7 +8866,7 @@
|
|
|
8280
8866
|
}
|
|
8281
8867
|
},
|
|
8282
8868
|
{
|
|
8283
|
-
"id":
|
|
8869
|
+
"id": 515,
|
|
8284
8870
|
"name": "extras",
|
|
8285
8871
|
"kind": 1024,
|
|
8286
8872
|
"kindString": "Property",
|
|
@@ -8307,8 +8893,8 @@
|
|
|
8307
8893
|
"title": "Properties",
|
|
8308
8894
|
"kind": 1024,
|
|
8309
8895
|
"children": [
|
|
8310
|
-
|
|
8311
|
-
|
|
8896
|
+
514,
|
|
8897
|
+
515
|
|
8312
8898
|
]
|
|
8313
8899
|
}
|
|
8314
8900
|
]
|
|
@@ -8316,7 +8902,7 @@
|
|
|
8316
8902
|
}
|
|
8317
8903
|
},
|
|
8318
8904
|
{
|
|
8319
|
-
"id":
|
|
8905
|
+
"id": 516,
|
|
8320
8906
|
"name": "url",
|
|
8321
8907
|
"kind": 1024,
|
|
8322
8908
|
"kindString": "Property",
|
|
@@ -8344,8 +8930,8 @@
|
|
|
8344
8930
|
"title": "Properties",
|
|
8345
8931
|
"kind": 1024,
|
|
8346
8932
|
"children": [
|
|
8347
|
-
|
|
8348
|
-
|
|
8933
|
+
512,
|
|
8934
|
+
516
|
|
8349
8935
|
]
|
|
8350
8936
|
}
|
|
8351
8937
|
],
|
|
@@ -8358,7 +8944,7 @@
|
|
|
8358
8944
|
]
|
|
8359
8945
|
},
|
|
8360
8946
|
{
|
|
8361
|
-
"id":
|
|
8947
|
+
"id": 527,
|
|
8362
8948
|
"name": "SkyBackToTopMessage",
|
|
8363
8949
|
"kind": 256,
|
|
8364
8950
|
"kindString": "Interface",
|
|
@@ -8368,7 +8954,7 @@
|
|
|
8368
8954
|
},
|
|
8369
8955
|
"children": [
|
|
8370
8956
|
{
|
|
8371
|
-
"id":
|
|
8957
|
+
"id": 528,
|
|
8372
8958
|
"name": "type",
|
|
8373
8959
|
"kind": 1024,
|
|
8374
8960
|
"kindString": "Property",
|
|
@@ -8387,7 +8973,7 @@
|
|
|
8387
8973
|
],
|
|
8388
8974
|
"type": {
|
|
8389
8975
|
"type": "reference",
|
|
8390
|
-
"id":
|
|
8976
|
+
"id": 530,
|
|
8391
8977
|
"name": "BackToTop"
|
|
8392
8978
|
}
|
|
8393
8979
|
}
|
|
@@ -8397,7 +8983,7 @@
|
|
|
8397
8983
|
"title": "Properties",
|
|
8398
8984
|
"kind": 1024,
|
|
8399
8985
|
"children": [
|
|
8400
|
-
|
|
8986
|
+
528
|
|
8401
8987
|
]
|
|
8402
8988
|
}
|
|
8403
8989
|
],
|
|
@@ -8410,7 +8996,7 @@
|
|
|
8410
8996
|
]
|
|
8411
8997
|
},
|
|
8412
8998
|
{
|
|
8413
|
-
"id":
|
|
8999
|
+
"id": 531,
|
|
8414
9000
|
"name": "SkyBackToTopOptions",
|
|
8415
9001
|
"kind": 256,
|
|
8416
9002
|
"kindString": "Interface",
|
|
@@ -8420,7 +9006,7 @@
|
|
|
8420
9006
|
},
|
|
8421
9007
|
"children": [
|
|
8422
9008
|
{
|
|
8423
|
-
"id":
|
|
9009
|
+
"id": 532,
|
|
8424
9010
|
"name": "buttonHidden",
|
|
8425
9011
|
"kind": 1024,
|
|
8426
9012
|
"kindString": "Property",
|
|
@@ -8454,7 +9040,7 @@
|
|
|
8454
9040
|
"title": "Properties",
|
|
8455
9041
|
"kind": 1024,
|
|
8456
9042
|
"children": [
|
|
8457
|
-
|
|
9043
|
+
532
|
|
8458
9044
|
]
|
|
8459
9045
|
}
|
|
8460
9046
|
],
|
|
@@ -8467,7 +9053,7 @@
|
|
|
8467
9053
|
]
|
|
8468
9054
|
},
|
|
8469
9055
|
{
|
|
8470
|
-
"id":
|
|
9056
|
+
"id": 523,
|
|
8471
9057
|
"name": "SkyActionButtonContainerAlignItemsType",
|
|
8472
9058
|
"kind": 4194304,
|
|
8473
9059
|
"kindString": "Type alias",
|
|
@@ -8494,7 +9080,7 @@
|
|
|
8494
9080
|
}
|
|
8495
9081
|
},
|
|
8496
9082
|
{
|
|
8497
|
-
"id":
|
|
9083
|
+
"id": 549,
|
|
8498
9084
|
"name": "SkyDescriptionListModeType",
|
|
8499
9085
|
"kind": 4194304,
|
|
8500
9086
|
"kindString": "Type alias",
|
|
@@ -8528,7 +9114,7 @@
|
|
|
8528
9114
|
}
|
|
8529
9115
|
},
|
|
8530
9116
|
{
|
|
8531
|
-
"id":
|
|
9117
|
+
"id": 553,
|
|
8532
9118
|
"name": "SkyFluidGridGutterSizeType",
|
|
8533
9119
|
"kind": 4194304,
|
|
8534
9120
|
"kindString": "Type alias",
|
|
@@ -8543,18 +9129,6 @@
|
|
|
8543
9129
|
"type": {
|
|
8544
9130
|
"type": "union",
|
|
8545
9131
|
"types": [
|
|
8546
|
-
{
|
|
8547
|
-
"type": "literal",
|
|
8548
|
-
"value": 0
|
|
8549
|
-
},
|
|
8550
|
-
{
|
|
8551
|
-
"type": "literal",
|
|
8552
|
-
"value": 1
|
|
8553
|
-
},
|
|
8554
|
-
{
|
|
8555
|
-
"type": "literal",
|
|
8556
|
-
"value": 2
|
|
8557
|
-
},
|
|
8558
9132
|
{
|
|
8559
9133
|
"type": "literal",
|
|
8560
9134
|
"value": "small"
|
|
@@ -8571,7 +9145,7 @@
|
|
|
8571
9145
|
}
|
|
8572
9146
|
},
|
|
8573
9147
|
{
|
|
8574
|
-
"id":
|
|
9148
|
+
"id": 575,
|
|
8575
9149
|
"name": "SkyTextExpandRepeaterListStyleType",
|
|
8576
9150
|
"kind": 4194304,
|
|
8577
9151
|
"kindString": "Type alias",
|
|
@@ -8902,7 +9476,7 @@
|
|
|
8902
9476
|
{
|
|
8903
9477
|
"fileName": "text-expand-demo.component.ts",
|
|
8904
9478
|
"filePath": "/projects/layout/documentation/code-examples/text-expand/inline/text-expand-demo.component.ts",
|
|
8905
|
-
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-text-expand-demo',\n templateUrl: './text-expand-demo.component.html',\n})\nexport class TextExpandDemoComponent {\n public longText =\n 'The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.';\n}\n"
|
|
9479
|
+
"rawContents": "import { Component } from '@angular/core';\n\n@Component({\n selector: 'app-text-expand-demo',\n templateUrl: './text-expand-demo.component.html',\n})\nexport class TextExpandDemoComponent {\n public longText =\n 'The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.The text expand component truncates long blocks of text with an ellipsis and a link to expand the text. Users select the link to expand the full text inline unless it exceeds limits on text characters or newline characters. If the text exceeds those limits, then it expands in a modal view instead. The component does not truncate text that is shorter than a specified threshold, and by default, it removes newline characters from truncated text.';\n}\n"
|
|
8906
9480
|
},
|
|
8907
9481
|
{
|
|
8908
9482
|
"fileName": "text-expand-demo.module.ts",
|