scu-web-components 0.0.128 → 0.0.129
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom-elements.json +852 -844
- package/dist/custom-elements.json.gz +0 -0
- package/dist/docs/components/ScwInput.json +8 -0
- package/dist/docs/components/manifest.json +37 -37
- package/dist/docs/config.json +5 -5
- package/dist/scw-components.js +239 -239
- package/dist/scw-components.js.gz +0 -0
- package/dist/scw.js +239 -239
- package/dist/scw.js.gz +0 -0
- package/dist/tokens/source/assets/graphic-apple-app-store.js +1 -1
- package/dist/tokens/source/assets/graphic-apple-app-store.js.gz +0 -0
- package/dist/tokens/source/assets/graphic-apple-app-store.svg +1 -1
- package/dist/tokens/source/assets/graphic-apple-app-store.svg.gz +0 -0
- package/dist/tokens/source/assets/graphic-ehl.js +1 -1
- package/dist/tokens/source/assets/graphic-ehl.js.gz +0 -0
- package/dist/tokens/source/assets/graphic-ehl.svg +1 -1
- package/dist/tokens/source/assets/graphic-ehl.svg.gz +0 -0
- package/dist/tokens/source/assets/graphic-google-play-store.js +1 -1
- package/dist/tokens/source/assets/graphic-google-play-store.js.gz +0 -0
- package/dist/tokens/source/assets/graphic-google-play-store.svg +1 -1
- package/dist/tokens/source/assets/graphic-google-play-store.svg.gz +0 -0
- package/dist/tokens/source/assets/graphic-logo.js +1 -1
- package/dist/tokens/source/assets/graphic-logo.js.gz +0 -0
- package/dist/tokens/source/assets/graphic-logo.svg +1 -1
- package/dist/tokens/source/assets/graphic-logo.svg.gz +0 -0
- package/dist/tokens/source/jsCss.js +1 -1
- package/dist/tokens/source/jsCss.js.gz +0 -0
- package/dist/tokens/source/jsCssGenerator.js +1 -1
- package/dist/tokens/source/jsCssGenerator.js.gz +0 -0
- package/dist/tokens/source/jsCssGeneratorSansAssets.js +1 -1
- package/dist/tokens/source/jsCssGeneratorSansAssets.js.gz +0 -0
- package/dist/tokens/source/tokens.json +4 -4
- package/dist/tokens/source/tokens.json.gz +0 -0
- package/dist-node/scw-components.js +3 -3
- package/dist-node/scw.js +3 -3
- package/package.json +1 -1
- package/scripts/publish/releaseNotes.mjs +5 -0
|
@@ -4,73 +4,100 @@
|
|
|
4
4
|
"modules": [
|
|
5
5
|
{
|
|
6
6
|
"kind": "javascript-module",
|
|
7
|
-
"path": "src/scw-
|
|
7
|
+
"path": "src/scw-alert/ScwAlert.ts",
|
|
8
8
|
"declarations": [
|
|
9
9
|
{
|
|
10
10
|
"kind": "class",
|
|
11
|
-
"description": "
|
|
12
|
-
"name": "
|
|
11
|
+
"description": "ScwAlert a first LitElement web component",
|
|
12
|
+
"name": "ScwAlert",
|
|
13
13
|
"members": [
|
|
14
14
|
{
|
|
15
15
|
"kind": "field",
|
|
16
|
-
"name": "
|
|
16
|
+
"name": "type",
|
|
17
|
+
"type": {
|
|
18
|
+
"text": "'success' | 'info' | 'warning' | 'caution' | 'neutral' | 'light'"
|
|
19
|
+
},
|
|
20
|
+
"default": "'success'",
|
|
21
|
+
"description": "(ScwAlert) Alert type",
|
|
22
|
+
"attribute": "type",
|
|
23
|
+
"reflects": true
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"kind": "field",
|
|
27
|
+
"name": "full",
|
|
17
28
|
"type": {
|
|
18
29
|
"text": "boolean"
|
|
19
30
|
},
|
|
20
31
|
"default": "false",
|
|
21
|
-
"description": "
|
|
22
|
-
"attribute": "
|
|
32
|
+
"description": "(ScwAlert) Full style alert",
|
|
33
|
+
"attribute": "full",
|
|
23
34
|
"reflects": true
|
|
24
35
|
},
|
|
25
36
|
{
|
|
26
37
|
"kind": "field",
|
|
27
|
-
"name": "
|
|
38
|
+
"name": "clear",
|
|
39
|
+
"type": {
|
|
40
|
+
"text": "boolean"
|
|
41
|
+
},
|
|
42
|
+
"default": "false",
|
|
43
|
+
"description": "(ScwAlert) Clear style alert",
|
|
44
|
+
"attribute": "clear",
|
|
45
|
+
"reflects": true
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"kind": "field",
|
|
49
|
+
"name": "customIcon",
|
|
28
50
|
"type": {
|
|
29
51
|
"text": "string"
|
|
30
52
|
},
|
|
31
53
|
"default": "''",
|
|
32
|
-
"description": "
|
|
33
|
-
"attribute": "
|
|
54
|
+
"description": "(ScwAlert) Custom icon",
|
|
55
|
+
"attribute": "custom-icon"
|
|
34
56
|
},
|
|
35
57
|
{
|
|
36
58
|
"kind": "field",
|
|
37
|
-
"name": "
|
|
59
|
+
"name": "noIcon",
|
|
38
60
|
"type": {
|
|
39
|
-
"text": "
|
|
40
|
-
}
|
|
61
|
+
"text": "boolean"
|
|
62
|
+
},
|
|
63
|
+
"default": "false",
|
|
64
|
+
"description": "(ScwAlert) If the alert should hide the left icon",
|
|
65
|
+
"attribute": "no-icon",
|
|
66
|
+
"reflects": true
|
|
41
67
|
},
|
|
42
68
|
{
|
|
43
69
|
"kind": "field",
|
|
44
|
-
"name": "
|
|
70
|
+
"name": "showClose",
|
|
45
71
|
"type": {
|
|
46
|
-
"text": "
|
|
47
|
-
}
|
|
72
|
+
"text": "boolean"
|
|
73
|
+
},
|
|
74
|
+
"default": "false",
|
|
75
|
+
"description": "(ScwAlert) If the alert should show a Close button",
|
|
76
|
+
"attribute": "show-close",
|
|
77
|
+
"reflects": true
|
|
48
78
|
},
|
|
49
79
|
{
|
|
50
|
-
"kind": "
|
|
51
|
-
"name": "
|
|
52
|
-
"
|
|
80
|
+
"kind": "field",
|
|
81
|
+
"name": "containerHeight",
|
|
82
|
+
"type": {
|
|
83
|
+
"text": "String"
|
|
84
|
+
},
|
|
85
|
+
"default": "'100%'"
|
|
53
86
|
},
|
|
54
87
|
{
|
|
55
88
|
"kind": "method",
|
|
56
|
-
"name": "
|
|
57
|
-
"
|
|
58
|
-
"description": "updateScrollHeight"
|
|
89
|
+
"name": "close",
|
|
90
|
+
"description": "close"
|
|
59
91
|
},
|
|
60
92
|
{
|
|
61
93
|
"kind": "method",
|
|
62
|
-
"name": "
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
{
|
|
66
|
-
"
|
|
67
|
-
"type": {
|
|
68
|
-
"text": "event"
|
|
69
|
-
},
|
|
70
|
-
"description": "The slide index you want to scroll to"
|
|
94
|
+
"name": "renderIcon",
|
|
95
|
+
"description": "renderIcon",
|
|
96
|
+
"return": {
|
|
97
|
+
"type": {
|
|
98
|
+
"text": "string"
|
|
71
99
|
}
|
|
72
|
-
|
|
73
|
-
"description": "handleKeypress"
|
|
100
|
+
}
|
|
74
101
|
},
|
|
75
102
|
{
|
|
76
103
|
"kind": "field",
|
|
@@ -207,22 +234,58 @@
|
|
|
207
234
|
],
|
|
208
235
|
"attributes": [
|
|
209
236
|
{
|
|
210
|
-
"name": "
|
|
237
|
+
"name": "type",
|
|
238
|
+
"type": {
|
|
239
|
+
"text": "'success' | 'info' | 'warning' | 'caution' | 'neutral' | 'light'"
|
|
240
|
+
},
|
|
241
|
+
"default": "'success'",
|
|
242
|
+
"description": "(ScwAlert) Alert type",
|
|
243
|
+
"fieldName": "type"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"name": "full",
|
|
211
247
|
"type": {
|
|
212
248
|
"text": "boolean"
|
|
213
249
|
},
|
|
214
250
|
"default": "false",
|
|
215
|
-
"description": "
|
|
216
|
-
"fieldName": "
|
|
251
|
+
"description": "(ScwAlert) Full style alert",
|
|
252
|
+
"fieldName": "full"
|
|
217
253
|
},
|
|
218
254
|
{
|
|
219
|
-
"name": "
|
|
255
|
+
"name": "clear",
|
|
256
|
+
"type": {
|
|
257
|
+
"text": "boolean"
|
|
258
|
+
},
|
|
259
|
+
"default": "false",
|
|
260
|
+
"description": "(ScwAlert) Clear style alert",
|
|
261
|
+
"fieldName": "clear"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"name": "custom-icon",
|
|
220
265
|
"type": {
|
|
221
266
|
"text": "string"
|
|
222
267
|
},
|
|
223
268
|
"default": "''",
|
|
224
|
-
"description": "
|
|
225
|
-
"fieldName": "
|
|
269
|
+
"description": "(ScwAlert) Custom icon",
|
|
270
|
+
"fieldName": "customIcon"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"name": "no-icon",
|
|
274
|
+
"type": {
|
|
275
|
+
"text": "boolean"
|
|
276
|
+
},
|
|
277
|
+
"default": "false",
|
|
278
|
+
"description": "(ScwAlert) If the alert should hide the left icon",
|
|
279
|
+
"fieldName": "noIcon"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"name": "show-close",
|
|
283
|
+
"type": {
|
|
284
|
+
"text": "boolean"
|
|
285
|
+
},
|
|
286
|
+
"default": "false",
|
|
287
|
+
"description": "(ScwAlert) If the alert should show a Close button",
|
|
288
|
+
"fieldName": "showClose"
|
|
226
289
|
},
|
|
227
290
|
{
|
|
228
291
|
"name": "aria-label",
|
|
@@ -293,7 +356,7 @@
|
|
|
293
356
|
"name": "ScwComponent",
|
|
294
357
|
"package": "scw-component/ScwComponent"
|
|
295
358
|
},
|
|
296
|
-
"tagName": "scw-
|
|
359
|
+
"tagName": "scw-alert",
|
|
297
360
|
"customElement": true
|
|
298
361
|
}
|
|
299
362
|
],
|
|
@@ -302,123 +365,148 @@
|
|
|
302
365
|
"kind": "js",
|
|
303
366
|
"name": "default",
|
|
304
367
|
"declaration": {
|
|
305
|
-
"name": "
|
|
306
|
-
"module": "src/scw-
|
|
368
|
+
"name": "ScwAlert",
|
|
369
|
+
"module": "src/scw-alert/ScwAlert.ts"
|
|
307
370
|
}
|
|
308
371
|
}
|
|
309
372
|
]
|
|
310
373
|
},
|
|
311
374
|
{
|
|
312
375
|
"kind": "javascript-module",
|
|
313
|
-
"path": "src/scw-
|
|
376
|
+
"path": "src/scw-alert/scw-alert.ts",
|
|
314
377
|
"declarations": [],
|
|
315
378
|
"exports": [
|
|
316
379
|
{
|
|
317
380
|
"kind": "custom-element-definition",
|
|
318
|
-
"name": "scw-
|
|
381
|
+
"name": "scw-alert",
|
|
319
382
|
"declaration": {
|
|
320
|
-
"name": "
|
|
321
|
-
"module": "/src/scw-
|
|
383
|
+
"name": "ScwAlert",
|
|
384
|
+
"module": "/src/scw-alert/ScwAlert.js"
|
|
322
385
|
}
|
|
323
386
|
}
|
|
324
387
|
]
|
|
325
388
|
},
|
|
326
389
|
{
|
|
327
390
|
"kind": "javascript-module",
|
|
328
|
-
"path": "src/scw-
|
|
391
|
+
"path": "src/scw-block/ScwBlock.ts",
|
|
329
392
|
"declarations": [
|
|
330
393
|
{
|
|
331
394
|
"kind": "class",
|
|
332
|
-
"description": "
|
|
333
|
-
"name": "
|
|
395
|
+
"description": "ScwBlock",
|
|
396
|
+
"name": "ScwBlock",
|
|
334
397
|
"members": [
|
|
335
398
|
{
|
|
336
399
|
"kind": "field",
|
|
337
|
-
"name": "
|
|
400
|
+
"name": "headingLevel",
|
|
338
401
|
"type": {
|
|
339
|
-
"text": "
|
|
402
|
+
"text": "string"
|
|
340
403
|
},
|
|
341
|
-
"default": "'
|
|
342
|
-
"
|
|
343
|
-
"attribute": "type",
|
|
344
|
-
"reflects": true
|
|
404
|
+
"default": "'h2'",
|
|
405
|
+
"attribute": "heading-level"
|
|
345
406
|
},
|
|
346
407
|
{
|
|
347
408
|
"kind": "field",
|
|
348
|
-
"name": "
|
|
409
|
+
"name": "heading",
|
|
349
410
|
"type": {
|
|
350
|
-
"text": "
|
|
411
|
+
"text": "string | undefined"
|
|
351
412
|
},
|
|
352
|
-
"
|
|
353
|
-
"description": "(ScwAlert) Full style alert",
|
|
354
|
-
"attribute": "full",
|
|
413
|
+
"attribute": "heading",
|
|
355
414
|
"reflects": true
|
|
356
415
|
},
|
|
357
416
|
{
|
|
358
417
|
"kind": "field",
|
|
359
|
-
"name": "
|
|
418
|
+
"name": "align",
|
|
360
419
|
"type": {
|
|
361
|
-
"text": "
|
|
420
|
+
"text": "string | undefined"
|
|
362
421
|
},
|
|
363
|
-
"
|
|
364
|
-
"description": "(ScwAlert) Clear style alert",
|
|
365
|
-
"attribute": "clear",
|
|
422
|
+
"attribute": "alignment",
|
|
366
423
|
"reflects": true
|
|
367
424
|
},
|
|
368
425
|
{
|
|
369
426
|
"kind": "field",
|
|
370
|
-
"name": "
|
|
427
|
+
"name": "primaryLink",
|
|
371
428
|
"type": {
|
|
372
|
-
"text": "string"
|
|
429
|
+
"text": "string | undefined"
|
|
373
430
|
},
|
|
374
|
-
"
|
|
375
|
-
"
|
|
376
|
-
"attribute": "custom-icon"
|
|
431
|
+
"attribute": "primary-cta-link",
|
|
432
|
+
"reflects": true
|
|
377
433
|
},
|
|
378
434
|
{
|
|
379
435
|
"kind": "field",
|
|
380
|
-
"name": "
|
|
436
|
+
"name": "primaryLabel",
|
|
381
437
|
"type": {
|
|
382
|
-
"text": "
|
|
438
|
+
"text": "string | undefined"
|
|
383
439
|
},
|
|
384
|
-
"
|
|
385
|
-
"description": "(ScwAlert) If the alert should hide the left icon",
|
|
386
|
-
"attribute": "no-icon",
|
|
440
|
+
"attribute": "primary-cta-label",
|
|
387
441
|
"reflects": true
|
|
388
442
|
},
|
|
389
443
|
{
|
|
390
444
|
"kind": "field",
|
|
391
|
-
"name": "
|
|
445
|
+
"name": "secondaryLink",
|
|
392
446
|
"type": {
|
|
393
|
-
"text": "
|
|
447
|
+
"text": "string | undefined"
|
|
394
448
|
},
|
|
395
|
-
"
|
|
396
|
-
"description": "(ScwAlert) If the alert should show a Close button",
|
|
397
|
-
"attribute": "show-close",
|
|
449
|
+
"attribute": "secondary-cta-link",
|
|
398
450
|
"reflects": true
|
|
399
451
|
},
|
|
400
452
|
{
|
|
401
453
|
"kind": "field",
|
|
402
|
-
"name": "
|
|
454
|
+
"name": "secondaryLabel",
|
|
403
455
|
"type": {
|
|
404
|
-
"text": "
|
|
456
|
+
"text": "string | undefined"
|
|
405
457
|
},
|
|
406
|
-
"
|
|
458
|
+
"attribute": "secondary-cta-label",
|
|
459
|
+
"reflects": true
|
|
407
460
|
},
|
|
408
461
|
{
|
|
409
|
-
"kind": "
|
|
410
|
-
"name": "
|
|
411
|
-
"
|
|
462
|
+
"kind": "field",
|
|
463
|
+
"name": "superHeading",
|
|
464
|
+
"type": {
|
|
465
|
+
"text": "string | undefined"
|
|
466
|
+
},
|
|
467
|
+
"attribute": "super-heading",
|
|
468
|
+
"reflects": true
|
|
412
469
|
},
|
|
413
470
|
{
|
|
414
471
|
"kind": "method",
|
|
415
|
-
"name": "
|
|
416
|
-
"description": "renderIcon",
|
|
472
|
+
"name": "renderLink",
|
|
417
473
|
"return": {
|
|
418
474
|
"type": {
|
|
419
|
-
"text": "
|
|
475
|
+
"text": "object"
|
|
420
476
|
}
|
|
421
|
-
}
|
|
477
|
+
},
|
|
478
|
+
"parameters": [
|
|
479
|
+
{
|
|
480
|
+
"name": "label",
|
|
481
|
+
"type": {
|
|
482
|
+
"text": "string"
|
|
483
|
+
}
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
"name": "link",
|
|
487
|
+
"type": {
|
|
488
|
+
"text": "string"
|
|
489
|
+
}
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"name": "design",
|
|
493
|
+
"default": "'solid'",
|
|
494
|
+
"type": {
|
|
495
|
+
"text": "string"
|
|
496
|
+
}
|
|
497
|
+
}
|
|
498
|
+
],
|
|
499
|
+
"description": "renderLink"
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"kind": "method",
|
|
503
|
+
"name": "renderHeading",
|
|
504
|
+
"return": {
|
|
505
|
+
"type": {
|
|
506
|
+
"text": "object"
|
|
507
|
+
}
|
|
508
|
+
},
|
|
509
|
+
"description": "renderHeading"
|
|
422
510
|
},
|
|
423
511
|
{
|
|
424
512
|
"kind": "field",
|
|
@@ -555,58 +643,61 @@
|
|
|
555
643
|
],
|
|
556
644
|
"attributes": [
|
|
557
645
|
{
|
|
558
|
-
"name": "
|
|
646
|
+
"name": "heading-level",
|
|
559
647
|
"type": {
|
|
560
|
-
"text": "
|
|
648
|
+
"text": "string"
|
|
561
649
|
},
|
|
562
|
-
"default": "'
|
|
563
|
-
"
|
|
564
|
-
"fieldName": "type"
|
|
650
|
+
"default": "'h2'",
|
|
651
|
+
"fieldName": "headingLevel"
|
|
565
652
|
},
|
|
566
653
|
{
|
|
567
|
-
"name": "
|
|
654
|
+
"name": "heading",
|
|
568
655
|
"type": {
|
|
569
|
-
"text": "
|
|
656
|
+
"text": "string | undefined"
|
|
570
657
|
},
|
|
571
|
-
"
|
|
572
|
-
"description": "(ScwAlert) Full style alert",
|
|
573
|
-
"fieldName": "full"
|
|
658
|
+
"fieldName": "heading"
|
|
574
659
|
},
|
|
575
660
|
{
|
|
576
|
-
"name": "
|
|
661
|
+
"name": "alignment",
|
|
577
662
|
"type": {
|
|
578
|
-
"text": "
|
|
663
|
+
"text": "string | undefined"
|
|
579
664
|
},
|
|
580
|
-
"
|
|
581
|
-
"description": "(ScwAlert) Clear style alert",
|
|
582
|
-
"fieldName": "clear"
|
|
665
|
+
"fieldName": "align"
|
|
583
666
|
},
|
|
584
667
|
{
|
|
585
|
-
"name": "
|
|
668
|
+
"name": "primary-cta-link",
|
|
586
669
|
"type": {
|
|
587
|
-
"text": "string"
|
|
670
|
+
"text": "string | undefined"
|
|
588
671
|
},
|
|
589
|
-
"
|
|
590
|
-
"description": "(ScwAlert) Custom icon",
|
|
591
|
-
"fieldName": "customIcon"
|
|
672
|
+
"fieldName": "primaryLink"
|
|
592
673
|
},
|
|
593
674
|
{
|
|
594
|
-
"name": "
|
|
675
|
+
"name": "primary-cta-label",
|
|
595
676
|
"type": {
|
|
596
|
-
"text": "
|
|
677
|
+
"text": "string | undefined"
|
|
597
678
|
},
|
|
598
|
-
"
|
|
599
|
-
"description": "(ScwAlert) If the alert should hide the left icon",
|
|
600
|
-
"fieldName": "noIcon"
|
|
679
|
+
"fieldName": "primaryLabel"
|
|
601
680
|
},
|
|
602
681
|
{
|
|
603
|
-
"name": "
|
|
682
|
+
"name": "secondary-cta-link",
|
|
604
683
|
"type": {
|
|
605
|
-
"text": "
|
|
684
|
+
"text": "string | undefined"
|
|
606
685
|
},
|
|
607
|
-
"
|
|
608
|
-
|
|
609
|
-
|
|
686
|
+
"fieldName": "secondaryLink"
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
"name": "secondary-cta-label",
|
|
690
|
+
"type": {
|
|
691
|
+
"text": "string | undefined"
|
|
692
|
+
},
|
|
693
|
+
"fieldName": "secondaryLabel"
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
"name": "super-heading",
|
|
697
|
+
"type": {
|
|
698
|
+
"text": "string | undefined"
|
|
699
|
+
},
|
|
700
|
+
"fieldName": "superHeading"
|
|
610
701
|
},
|
|
611
702
|
{
|
|
612
703
|
"name": "aria-label",
|
|
@@ -677,7 +768,7 @@
|
|
|
677
768
|
"name": "ScwComponent",
|
|
678
769
|
"package": "scw-component/ScwComponent"
|
|
679
770
|
},
|
|
680
|
-
"tagName": "scw-
|
|
771
|
+
"tagName": "scw-block",
|
|
681
772
|
"customElement": true
|
|
682
773
|
}
|
|
683
774
|
],
|
|
@@ -686,161 +777,140 @@
|
|
|
686
777
|
"kind": "js",
|
|
687
778
|
"name": "default",
|
|
688
779
|
"declaration": {
|
|
689
|
-
"name": "
|
|
690
|
-
"module": "src/scw-
|
|
780
|
+
"name": "ScwBlock",
|
|
781
|
+
"module": "src/scw-block/ScwBlock.ts"
|
|
691
782
|
}
|
|
692
783
|
}
|
|
693
784
|
]
|
|
694
785
|
},
|
|
695
786
|
{
|
|
696
787
|
"kind": "javascript-module",
|
|
697
|
-
"path": "src/scw-
|
|
788
|
+
"path": "src/scw-block/scw-block.ts",
|
|
698
789
|
"declarations": [],
|
|
699
790
|
"exports": [
|
|
700
791
|
{
|
|
701
792
|
"kind": "custom-element-definition",
|
|
702
|
-
"name": "scw-
|
|
793
|
+
"name": "scw-block",
|
|
703
794
|
"declaration": {
|
|
704
|
-
"name": "
|
|
705
|
-
"module": "/src/scw-
|
|
795
|
+
"name": "ScwBlock",
|
|
796
|
+
"module": "/src/scw-block/ScwBlock"
|
|
706
797
|
}
|
|
707
798
|
}
|
|
708
799
|
]
|
|
709
800
|
},
|
|
710
801
|
{
|
|
711
802
|
"kind": "javascript-module",
|
|
712
|
-
"path": "src/scw-
|
|
803
|
+
"path": "src/scw-button/ScwButton.ts",
|
|
713
804
|
"declarations": [
|
|
714
805
|
{
|
|
715
806
|
"kind": "class",
|
|
716
|
-
"description": "
|
|
717
|
-
"name": "
|
|
718
|
-
"
|
|
807
|
+
"description": "ScwButton",
|
|
808
|
+
"name": "ScwButton",
|
|
809
|
+
"slots": [
|
|
719
810
|
{
|
|
720
|
-
"
|
|
721
|
-
"name": "
|
|
722
|
-
"
|
|
723
|
-
"text": "string"
|
|
724
|
-
},
|
|
725
|
-
"default": "'h2'",
|
|
726
|
-
"attribute": "heading-level"
|
|
811
|
+
"description": "(OPTIONAL) anchor (for SEO) will determine the label, href, and target.",
|
|
812
|
+
"name": "default",
|
|
813
|
+
"default": "\"<a href target />\""
|
|
727
814
|
},
|
|
728
815
|
{
|
|
729
|
-
"
|
|
730
|
-
"name": "
|
|
731
|
-
"
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
"reflects": true
|
|
736
|
-
},
|
|
816
|
+
"description": "(OPTIONAL) random content (paired with design=\"plain\") will wrap that content with a link.",
|
|
817
|
+
"name": "default",
|
|
818
|
+
"default": "\"<... />\""
|
|
819
|
+
}
|
|
820
|
+
],
|
|
821
|
+
"members": [
|
|
737
822
|
{
|
|
738
823
|
"kind": "field",
|
|
739
|
-
"name": "
|
|
824
|
+
"name": "submitType",
|
|
740
825
|
"type": {
|
|
741
|
-
"text": "
|
|
826
|
+
"text": "ScwFormComponentSubmitTypes"
|
|
742
827
|
},
|
|
743
|
-
"
|
|
828
|
+
"description": "<ScwFormComponent> the usage in a form (& scw-form a query target)",
|
|
829
|
+
"attribute": "submit-type",
|
|
744
830
|
"reflects": true
|
|
745
831
|
},
|
|
746
832
|
{
|
|
747
833
|
"kind": "field",
|
|
748
|
-
"name": "
|
|
834
|
+
"name": "element",
|
|
749
835
|
"type": {
|
|
750
|
-
"text": "string
|
|
836
|
+
"text": "string"
|
|
751
837
|
},
|
|
752
|
-
"
|
|
753
|
-
"
|
|
838
|
+
"description": "(ScwComponent) contains the root element name for each component\n(enum Components)",
|
|
839
|
+
"attribute": "element",
|
|
840
|
+
"reflects": true,
|
|
841
|
+
"inheritedFrom": {
|
|
842
|
+
"name": "ScwComponent",
|
|
843
|
+
"module": "src/scw-component/ScwComponent.ts"
|
|
844
|
+
}
|
|
754
845
|
},
|
|
755
846
|
{
|
|
756
847
|
"kind": "field",
|
|
757
|
-
"name": "
|
|
848
|
+
"name": "href",
|
|
758
849
|
"type": {
|
|
759
|
-
"text": "string
|
|
850
|
+
"text": "string"
|
|
760
851
|
},
|
|
761
|
-
"
|
|
762
|
-
"
|
|
852
|
+
"default": "'javascript:'",
|
|
853
|
+
"description": "(ScwLink) Link url",
|
|
854
|
+
"attribute": "href",
|
|
855
|
+
"inheritedFrom": {
|
|
856
|
+
"name": "ScwLink",
|
|
857
|
+
"module": "src/scw-link/ScwLink.ts"
|
|
858
|
+
}
|
|
763
859
|
},
|
|
764
860
|
{
|
|
765
861
|
"kind": "field",
|
|
766
|
-
"name": "
|
|
862
|
+
"name": "icon",
|
|
767
863
|
"type": {
|
|
768
|
-
"text": "string
|
|
864
|
+
"text": "string"
|
|
769
865
|
},
|
|
770
|
-
"
|
|
771
|
-
"
|
|
866
|
+
"default": "''",
|
|
867
|
+
"description": "(ScwLink) Design system icon",
|
|
868
|
+
"attribute": "icon",
|
|
869
|
+
"inheritedFrom": {
|
|
870
|
+
"name": "ScwLink",
|
|
871
|
+
"module": "src/scw-link/ScwLink.ts"
|
|
872
|
+
}
|
|
772
873
|
},
|
|
773
874
|
{
|
|
774
875
|
"kind": "field",
|
|
775
|
-
"name": "
|
|
876
|
+
"name": "iconSide",
|
|
776
877
|
"type": {
|
|
777
|
-
"text": "string
|
|
878
|
+
"text": "string"
|
|
778
879
|
},
|
|
779
|
-
"
|
|
780
|
-
"
|
|
880
|
+
"default": "''",
|
|
881
|
+
"description": "(ScwLink) Side you want the icon displayed",
|
|
882
|
+
"attribute": "icon-side",
|
|
883
|
+
"inheritedFrom": {
|
|
884
|
+
"name": "ScwLink",
|
|
885
|
+
"module": "src/scw-link/ScwLink.ts"
|
|
886
|
+
}
|
|
781
887
|
},
|
|
782
888
|
{
|
|
783
889
|
"kind": "field",
|
|
784
|
-
"name": "
|
|
890
|
+
"name": "design",
|
|
785
891
|
"type": {
|
|
786
|
-
"text": "
|
|
787
|
-
},
|
|
788
|
-
"attribute": "super-heading",
|
|
789
|
-
"reflects": true
|
|
790
|
-
},
|
|
791
|
-
{
|
|
792
|
-
"kind": "method",
|
|
793
|
-
"name": "renderLink",
|
|
794
|
-
"return": {
|
|
795
|
-
"type": {
|
|
796
|
-
"text": "object"
|
|
797
|
-
}
|
|
798
|
-
},
|
|
799
|
-
"parameters": [
|
|
800
|
-
{
|
|
801
|
-
"name": "label",
|
|
802
|
-
"type": {
|
|
803
|
-
"text": "string"
|
|
804
|
-
}
|
|
805
|
-
},
|
|
806
|
-
{
|
|
807
|
-
"name": "link",
|
|
808
|
-
"type": {
|
|
809
|
-
"text": "string"
|
|
810
|
-
}
|
|
811
|
-
},
|
|
812
|
-
{
|
|
813
|
-
"name": "design",
|
|
814
|
-
"default": "'solid'",
|
|
815
|
-
"type": {
|
|
816
|
-
"text": "string"
|
|
817
|
-
}
|
|
818
|
-
}
|
|
819
|
-
],
|
|
820
|
-
"description": "renderLink"
|
|
821
|
-
},
|
|
822
|
-
{
|
|
823
|
-
"kind": "method",
|
|
824
|
-
"name": "renderHeading",
|
|
825
|
-
"return": {
|
|
826
|
-
"type": {
|
|
827
|
-
"text": "object"
|
|
828
|
-
}
|
|
892
|
+
"text": "| 'solid'\n | 'outlined'\n | 'light'\n | 'white'\n | 'text'\n | 'plain'\n | 'block'\n | 'icon'\n | 'main'\n | 'solidIcon'"
|
|
829
893
|
},
|
|
830
|
-
"
|
|
894
|
+
"default": "'solid'",
|
|
895
|
+
"description": "(ScwLink) Link design",
|
|
896
|
+
"attribute": "design",
|
|
897
|
+
"reflects": true,
|
|
898
|
+
"inheritedFrom": {
|
|
899
|
+
"name": "ScwLink",
|
|
900
|
+
"module": "src/scw-link/ScwLink.ts"
|
|
901
|
+
}
|
|
831
902
|
},
|
|
832
903
|
{
|
|
833
904
|
"kind": "field",
|
|
834
|
-
"name": "
|
|
905
|
+
"name": "target",
|
|
835
906
|
"type": {
|
|
836
|
-
"text": "
|
|
907
|
+
"text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
|
|
837
908
|
},
|
|
838
|
-
"description": "(
|
|
839
|
-
"attribute": "
|
|
840
|
-
"reflects": true,
|
|
909
|
+
"description": "(ScwLink) Link target",
|
|
910
|
+
"attribute": "target",
|
|
841
911
|
"inheritedFrom": {
|
|
842
|
-
"name": "
|
|
843
|
-
"module": "src/scw-
|
|
912
|
+
"name": "ScwLink",
|
|
913
|
+
"module": "src/scw-link/ScwLink.ts"
|
|
844
914
|
}
|
|
845
915
|
},
|
|
846
916
|
{
|
|
@@ -850,7 +920,7 @@
|
|
|
850
920
|
"text": "string"
|
|
851
921
|
},
|
|
852
922
|
"default": "''",
|
|
853
|
-
"description": "(
|
|
923
|
+
"description": "(ScwLink) Link label",
|
|
854
924
|
"attribute": "aria-label",
|
|
855
925
|
"reflects": true,
|
|
856
926
|
"inheritedFrom": {
|
|
@@ -860,25 +930,107 @@
|
|
|
860
930
|
},
|
|
861
931
|
{
|
|
862
932
|
"kind": "field",
|
|
863
|
-
"name": "
|
|
933
|
+
"name": "size",
|
|
864
934
|
"type": {
|
|
865
|
-
"text": "
|
|
935
|
+
"text": "'small' | 'medium' | 'large'"
|
|
866
936
|
},
|
|
867
|
-
"default": "'
|
|
868
|
-
"description": "(
|
|
869
|
-
"attribute": "
|
|
870
|
-
"inheritedFrom": {
|
|
937
|
+
"default": "'medium'",
|
|
938
|
+
"description": "(ScwLink) Link label",
|
|
939
|
+
"attribute": "size",
|
|
940
|
+
"inheritedFrom": {
|
|
941
|
+
"name": "ScwLink",
|
|
942
|
+
"module": "src/scw-link/ScwLink.ts"
|
|
943
|
+
}
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
"kind": "field",
|
|
947
|
+
"name": "ariaDisabled",
|
|
948
|
+
"type": {
|
|
949
|
+
"text": "string"
|
|
950
|
+
},
|
|
951
|
+
"default": "'false'",
|
|
952
|
+
"description": "(ScwLink) If the link is disabled",
|
|
953
|
+
"attribute": "aria-disabled",
|
|
954
|
+
"inheritedFrom": {
|
|
871
955
|
"name": "ScwComponent",
|
|
872
956
|
"module": "src/scw-component/ScwComponent.ts"
|
|
873
957
|
}
|
|
874
958
|
},
|
|
959
|
+
{
|
|
960
|
+
"kind": "field",
|
|
961
|
+
"name": "underline",
|
|
962
|
+
"type": {
|
|
963
|
+
"text": "string"
|
|
964
|
+
},
|
|
965
|
+
"default": "'true'",
|
|
966
|
+
"description": "(ScwLink) If a regular link should be underlined",
|
|
967
|
+
"attribute": "underline",
|
|
968
|
+
"inheritedFrom": {
|
|
969
|
+
"name": "ScwLink",
|
|
970
|
+
"module": "src/scw-link/ScwLink.ts"
|
|
971
|
+
}
|
|
972
|
+
},
|
|
973
|
+
{
|
|
974
|
+
"kind": "field",
|
|
975
|
+
"name": "linkAnchor",
|
|
976
|
+
"type": {
|
|
977
|
+
"text": "HTMLAnchorElement | undefined"
|
|
978
|
+
},
|
|
979
|
+
"inheritedFrom": {
|
|
980
|
+
"name": "ScwLink",
|
|
981
|
+
"module": "src/scw-link/ScwLink.ts"
|
|
982
|
+
}
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
"kind": "method",
|
|
986
|
+
"name": "focus",
|
|
987
|
+
"return": {
|
|
988
|
+
"type": {
|
|
989
|
+
"text": "void"
|
|
990
|
+
}
|
|
991
|
+
},
|
|
992
|
+
"description": "focus",
|
|
993
|
+
"inheritedFrom": {
|
|
994
|
+
"name": "ScwLink",
|
|
995
|
+
"module": "src/scw-link/ScwLink.ts"
|
|
996
|
+
}
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
"kind": "method",
|
|
1000
|
+
"name": "renderIcon",
|
|
1001
|
+
"privacy": "private",
|
|
1002
|
+
"return": {
|
|
1003
|
+
"type": {
|
|
1004
|
+
"text": "object"
|
|
1005
|
+
}
|
|
1006
|
+
},
|
|
1007
|
+
"description": "renderIcon",
|
|
1008
|
+
"inheritedFrom": {
|
|
1009
|
+
"name": "ScwLink",
|
|
1010
|
+
"module": "src/scw-link/ScwLink.ts"
|
|
1011
|
+
}
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
"kind": "method",
|
|
1015
|
+
"name": "renderContent",
|
|
1016
|
+
"return": {
|
|
1017
|
+
"type": {
|
|
1018
|
+
"text": "object"
|
|
1019
|
+
}
|
|
1020
|
+
},
|
|
1021
|
+
"description": "renderContent",
|
|
1022
|
+
"inheritedFrom": {
|
|
1023
|
+
"name": "ScwLink",
|
|
1024
|
+
"module": "src/scw-link/ScwLink.ts"
|
|
1025
|
+
}
|
|
1026
|
+
},
|
|
875
1027
|
{
|
|
876
1028
|
"kind": "field",
|
|
877
1029
|
"name": "isLink",
|
|
878
1030
|
"type": {
|
|
879
1031
|
"text": "boolean"
|
|
880
1032
|
},
|
|
881
|
-
"default": "
|
|
1033
|
+
"default": "true",
|
|
882
1034
|
"description": "(ScwLinkBase)\nSome lookups need to know if something is a link or not...",
|
|
883
1035
|
"attribute": "is-link",
|
|
884
1036
|
"reflects": true,
|
|
@@ -964,61 +1116,76 @@
|
|
|
964
1116
|
],
|
|
965
1117
|
"attributes": [
|
|
966
1118
|
{
|
|
967
|
-
"name": "
|
|
968
|
-
"type": {
|
|
969
|
-
"text": "string"
|
|
970
|
-
},
|
|
971
|
-
"default": "'h2'",
|
|
972
|
-
"fieldName": "headingLevel"
|
|
973
|
-
},
|
|
974
|
-
{
|
|
975
|
-
"name": "heading",
|
|
976
|
-
"type": {
|
|
977
|
-
"text": "string | undefined"
|
|
978
|
-
},
|
|
979
|
-
"fieldName": "heading"
|
|
980
|
-
},
|
|
981
|
-
{
|
|
982
|
-
"name": "alignment",
|
|
1119
|
+
"name": "submit-type",
|
|
983
1120
|
"type": {
|
|
984
|
-
"text": "
|
|
1121
|
+
"text": "ScwFormComponentSubmitTypes"
|
|
985
1122
|
},
|
|
986
|
-
"
|
|
1123
|
+
"description": "<ScwFormComponent> the usage in a form (& scw-form a query target)",
|
|
1124
|
+
"fieldName": "submitType"
|
|
987
1125
|
},
|
|
988
1126
|
{
|
|
989
|
-
"name": "
|
|
1127
|
+
"name": "icon",
|
|
990
1128
|
"type": {
|
|
991
|
-
"text": "string
|
|
1129
|
+
"text": "string"
|
|
992
1130
|
},
|
|
993
|
-
"
|
|
1131
|
+
"default": "''",
|
|
1132
|
+
"description": "(ScwLink) Design system icon",
|
|
1133
|
+
"fieldName": "icon",
|
|
1134
|
+
"inheritedFrom": {
|
|
1135
|
+
"name": "ScwLink",
|
|
1136
|
+
"module": "src/scw-link/ScwLink.ts"
|
|
1137
|
+
}
|
|
994
1138
|
},
|
|
995
1139
|
{
|
|
996
|
-
"name": "
|
|
1140
|
+
"name": "icon-side",
|
|
997
1141
|
"type": {
|
|
998
|
-
"text": "string
|
|
1142
|
+
"text": "string"
|
|
999
1143
|
},
|
|
1000
|
-
"
|
|
1144
|
+
"default": "''",
|
|
1145
|
+
"description": "(ScwLink) Side you want the icon displayed",
|
|
1146
|
+
"fieldName": "iconSide",
|
|
1147
|
+
"inheritedFrom": {
|
|
1148
|
+
"name": "ScwLink",
|
|
1149
|
+
"module": "src/scw-link/ScwLink.ts"
|
|
1150
|
+
}
|
|
1001
1151
|
},
|
|
1002
1152
|
{
|
|
1003
|
-
"name": "
|
|
1153
|
+
"name": "design",
|
|
1004
1154
|
"type": {
|
|
1005
|
-
"text": "
|
|
1155
|
+
"text": "| 'solid'\n | 'outlined'\n | 'light'\n | 'white'\n | 'text'\n | 'plain'\n | 'block'\n | 'icon'\n | 'main'\n | 'solidIcon'"
|
|
1006
1156
|
},
|
|
1007
|
-
"
|
|
1157
|
+
"default": "'solid'",
|
|
1158
|
+
"description": "(ScwLink) Link design",
|
|
1159
|
+
"fieldName": "design",
|
|
1160
|
+
"inheritedFrom": {
|
|
1161
|
+
"name": "ScwLink",
|
|
1162
|
+
"module": "src/scw-link/ScwLink.ts"
|
|
1163
|
+
}
|
|
1008
1164
|
},
|
|
1009
1165
|
{
|
|
1010
|
-
"name": "
|
|
1166
|
+
"name": "href",
|
|
1011
1167
|
"type": {
|
|
1012
|
-
"text": "string
|
|
1168
|
+
"text": "string"
|
|
1013
1169
|
},
|
|
1014
|
-
"
|
|
1170
|
+
"default": "''",
|
|
1171
|
+
"description": "(ScwLink) Link url",
|
|
1172
|
+
"fieldName": "href",
|
|
1173
|
+
"inheritedFrom": {
|
|
1174
|
+
"name": "ScwLink",
|
|
1175
|
+
"module": "src/scw-link/ScwLink.ts"
|
|
1176
|
+
}
|
|
1015
1177
|
},
|
|
1016
1178
|
{
|
|
1017
|
-
"name": "
|
|
1179
|
+
"name": "target",
|
|
1018
1180
|
"type": {
|
|
1019
|
-
"text": "
|
|
1181
|
+
"text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
|
|
1020
1182
|
},
|
|
1021
|
-
"
|
|
1183
|
+
"description": "(ScwLink) Link target",
|
|
1184
|
+
"fieldName": "target",
|
|
1185
|
+
"inheritedFrom": {
|
|
1186
|
+
"name": "ScwLink",
|
|
1187
|
+
"module": "src/scw-link/ScwLink.ts"
|
|
1188
|
+
}
|
|
1022
1189
|
},
|
|
1023
1190
|
{
|
|
1024
1191
|
"name": "aria-label",
|
|
@@ -1026,26 +1193,52 @@
|
|
|
1026
1193
|
"text": "string"
|
|
1027
1194
|
},
|
|
1028
1195
|
"default": "''",
|
|
1029
|
-
"description": "(
|
|
1196
|
+
"description": "(ScwLink) Link label",
|
|
1030
1197
|
"fieldName": "ariaLabel",
|
|
1031
1198
|
"inheritedFrom": {
|
|
1032
1199
|
"name": "ScwComponent",
|
|
1033
1200
|
"module": "src/scw-component/ScwComponent.ts"
|
|
1034
1201
|
}
|
|
1035
1202
|
},
|
|
1203
|
+
{
|
|
1204
|
+
"name": "size",
|
|
1205
|
+
"type": {
|
|
1206
|
+
"text": "'small' | 'medium' | 'large'"
|
|
1207
|
+
},
|
|
1208
|
+
"default": "'medium'",
|
|
1209
|
+
"description": "(ScwLink) Link label",
|
|
1210
|
+
"fieldName": "size",
|
|
1211
|
+
"inheritedFrom": {
|
|
1212
|
+
"name": "ScwLink",
|
|
1213
|
+
"module": "src/scw-link/ScwLink.ts"
|
|
1214
|
+
}
|
|
1215
|
+
},
|
|
1036
1216
|
{
|
|
1037
1217
|
"name": "aria-disabled",
|
|
1038
1218
|
"type": {
|
|
1039
1219
|
"text": "string"
|
|
1040
1220
|
},
|
|
1041
1221
|
"default": "'false'",
|
|
1042
|
-
"description": "(
|
|
1222
|
+
"description": "(ScwLink) If the link is disabled",
|
|
1043
1223
|
"fieldName": "ariaDisabled",
|
|
1044
1224
|
"inheritedFrom": {
|
|
1045
1225
|
"name": "ScwComponent",
|
|
1046
1226
|
"module": "src/scw-component/ScwComponent.ts"
|
|
1047
1227
|
}
|
|
1048
1228
|
},
|
|
1229
|
+
{
|
|
1230
|
+
"name": "underline",
|
|
1231
|
+
"type": {
|
|
1232
|
+
"text": "string"
|
|
1233
|
+
},
|
|
1234
|
+
"default": "'true'",
|
|
1235
|
+
"description": "(ScwLink) If a regular link should be underlined",
|
|
1236
|
+
"fieldName": "underline",
|
|
1237
|
+
"inheritedFrom": {
|
|
1238
|
+
"name": "ScwLink",
|
|
1239
|
+
"module": "src/scw-link/ScwLink.ts"
|
|
1240
|
+
}
|
|
1241
|
+
},
|
|
1049
1242
|
{
|
|
1050
1243
|
"name": "is-link",
|
|
1051
1244
|
"type": {
|
|
@@ -1086,10 +1279,10 @@
|
|
|
1086
1279
|
}
|
|
1087
1280
|
],
|
|
1088
1281
|
"superclass": {
|
|
1089
|
-
"name": "
|
|
1090
|
-
"
|
|
1282
|
+
"name": "ScwLink",
|
|
1283
|
+
"module": "/src/scw-link/ScwLink"
|
|
1091
1284
|
},
|
|
1092
|
-
"tagName": "scw-
|
|
1285
|
+
"tagName": "scw-button",
|
|
1093
1286
|
"customElement": true
|
|
1094
1287
|
}
|
|
1095
1288
|
],
|
|
@@ -1098,251 +1291,168 @@
|
|
|
1098
1291
|
"kind": "js",
|
|
1099
1292
|
"name": "default",
|
|
1100
1293
|
"declaration": {
|
|
1101
|
-
"name": "
|
|
1102
|
-
"module": "src/scw-
|
|
1294
|
+
"name": "ScwButton",
|
|
1295
|
+
"module": "src/scw-button/ScwButton.ts"
|
|
1103
1296
|
}
|
|
1104
1297
|
}
|
|
1105
1298
|
]
|
|
1106
1299
|
},
|
|
1107
1300
|
{
|
|
1108
1301
|
"kind": "javascript-module",
|
|
1109
|
-
"path": "src/scw-
|
|
1302
|
+
"path": "src/scw-button/scw-button.ts",
|
|
1110
1303
|
"declarations": [],
|
|
1111
1304
|
"exports": [
|
|
1112
1305
|
{
|
|
1113
1306
|
"kind": "custom-element-definition",
|
|
1114
|
-
"name": "scw-
|
|
1307
|
+
"name": "scw-button",
|
|
1115
1308
|
"declaration": {
|
|
1116
|
-
"name": "
|
|
1117
|
-
"module": "/src/scw-
|
|
1309
|
+
"name": "ScwButton",
|
|
1310
|
+
"module": "/src/scw-button/ScwButton.js"
|
|
1118
1311
|
}
|
|
1119
1312
|
}
|
|
1120
1313
|
]
|
|
1121
1314
|
},
|
|
1122
1315
|
{
|
|
1123
1316
|
"kind": "javascript-module",
|
|
1124
|
-
"path": "src/scw-
|
|
1317
|
+
"path": "src/scw-callout/ScwCallout.ts",
|
|
1125
1318
|
"declarations": [
|
|
1126
1319
|
{
|
|
1127
1320
|
"kind": "class",
|
|
1128
|
-
"description": "
|
|
1129
|
-
"name": "
|
|
1130
|
-
"slots": [
|
|
1131
|
-
{
|
|
1132
|
-
"description": "(OPTIONAL) anchor (for SEO) will determine the label, href, and target.",
|
|
1133
|
-
"name": "default",
|
|
1134
|
-
"default": "\"<a href target />\""
|
|
1135
|
-
},
|
|
1136
|
-
{
|
|
1137
|
-
"description": "(OPTIONAL) random content (paired with design=\"plain\") will wrap that content with a link.",
|
|
1138
|
-
"name": "default",
|
|
1139
|
-
"default": "\"<... />\""
|
|
1140
|
-
}
|
|
1141
|
-
],
|
|
1321
|
+
"description": "ScwBlock",
|
|
1322
|
+
"name": "ScwCallout",
|
|
1142
1323
|
"members": [
|
|
1143
1324
|
{
|
|
1144
1325
|
"kind": "field",
|
|
1145
|
-
"name": "
|
|
1326
|
+
"name": "heading",
|
|
1146
1327
|
"type": {
|
|
1147
|
-
"text": "
|
|
1328
|
+
"text": "string | undefined"
|
|
1148
1329
|
},
|
|
1149
|
-
"description": "
|
|
1150
|
-
"attribute": "
|
|
1330
|
+
"description": "(ScwCallout) The heading",
|
|
1331
|
+
"attribute": "heading",
|
|
1151
1332
|
"reflects": true
|
|
1152
1333
|
},
|
|
1153
1334
|
{
|
|
1154
1335
|
"kind": "field",
|
|
1155
|
-
"name": "
|
|
1156
|
-
"type": {
|
|
1157
|
-
"text": "string"
|
|
1158
|
-
},
|
|
1159
|
-
"description": "(ScwComponent) contains the root element name for each component\n(enum Components)",
|
|
1160
|
-
"attribute": "element",
|
|
1161
|
-
"reflects": true,
|
|
1162
|
-
"inheritedFrom": {
|
|
1163
|
-
"name": "ScwComponent",
|
|
1164
|
-
"module": "src/scw-component/ScwComponent.ts"
|
|
1165
|
-
}
|
|
1166
|
-
},
|
|
1167
|
-
{
|
|
1168
|
-
"kind": "field",
|
|
1169
|
-
"name": "href",
|
|
1170
|
-
"type": {
|
|
1171
|
-
"text": "string"
|
|
1172
|
-
},
|
|
1173
|
-
"default": "'javascript:'",
|
|
1174
|
-
"description": "(ScwLink) Link url",
|
|
1175
|
-
"attribute": "href",
|
|
1176
|
-
"inheritedFrom": {
|
|
1177
|
-
"name": "ScwLink",
|
|
1178
|
-
"module": "src/scw-link/ScwLink.ts"
|
|
1179
|
-
}
|
|
1180
|
-
},
|
|
1181
|
-
{
|
|
1182
|
-
"kind": "field",
|
|
1183
|
-
"name": "icon",
|
|
1184
|
-
"type": {
|
|
1185
|
-
"text": "string"
|
|
1186
|
-
},
|
|
1187
|
-
"default": "''",
|
|
1188
|
-
"description": "(ScwLink) Design system icon",
|
|
1189
|
-
"attribute": "icon",
|
|
1190
|
-
"inheritedFrom": {
|
|
1191
|
-
"name": "ScwLink",
|
|
1192
|
-
"module": "src/scw-link/ScwLink.ts"
|
|
1193
|
-
}
|
|
1194
|
-
},
|
|
1195
|
-
{
|
|
1196
|
-
"kind": "field",
|
|
1197
|
-
"name": "iconSide",
|
|
1198
|
-
"type": {
|
|
1199
|
-
"text": "string"
|
|
1200
|
-
},
|
|
1201
|
-
"default": "''",
|
|
1202
|
-
"description": "(ScwLink) Side you want the icon displayed",
|
|
1203
|
-
"attribute": "icon-side",
|
|
1204
|
-
"inheritedFrom": {
|
|
1205
|
-
"name": "ScwLink",
|
|
1206
|
-
"module": "src/scw-link/ScwLink.ts"
|
|
1207
|
-
}
|
|
1208
|
-
},
|
|
1209
|
-
{
|
|
1210
|
-
"kind": "field",
|
|
1211
|
-
"name": "design",
|
|
1212
|
-
"type": {
|
|
1213
|
-
"text": "| 'solid'\n | 'outlined'\n | 'light'\n | 'white'\n | 'text'\n | 'plain'\n | 'block'\n | 'icon'\n | 'main'\n | 'solidIcon'"
|
|
1214
|
-
},
|
|
1215
|
-
"default": "'solid'",
|
|
1216
|
-
"description": "(ScwLink) Link design",
|
|
1217
|
-
"attribute": "design",
|
|
1218
|
-
"reflects": true,
|
|
1219
|
-
"inheritedFrom": {
|
|
1220
|
-
"name": "ScwLink",
|
|
1221
|
-
"module": "src/scw-link/ScwLink.ts"
|
|
1222
|
-
}
|
|
1223
|
-
},
|
|
1224
|
-
{
|
|
1225
|
-
"kind": "field",
|
|
1226
|
-
"name": "target",
|
|
1336
|
+
"name": "align",
|
|
1227
1337
|
"type": {
|
|
1228
|
-
"text": "
|
|
1338
|
+
"text": "string | undefined"
|
|
1229
1339
|
},
|
|
1230
|
-
"description": "(
|
|
1231
|
-
"attribute": "
|
|
1232
|
-
"
|
|
1233
|
-
"name": "ScwLink",
|
|
1234
|
-
"module": "src/scw-link/ScwLink.ts"
|
|
1235
|
-
}
|
|
1340
|
+
"description": "(ScwCallout) Alignment of the callout",
|
|
1341
|
+
"attribute": "alignment",
|
|
1342
|
+
"reflects": true
|
|
1236
1343
|
},
|
|
1237
1344
|
{
|
|
1238
1345
|
"kind": "field",
|
|
1239
|
-
"name": "
|
|
1346
|
+
"name": "primaryLink",
|
|
1240
1347
|
"type": {
|
|
1241
|
-
"text": "string"
|
|
1348
|
+
"text": "string | undefined"
|
|
1242
1349
|
},
|
|
1243
|
-
"
|
|
1244
|
-
"
|
|
1245
|
-
"
|
|
1246
|
-
"reflects": true,
|
|
1247
|
-
"inheritedFrom": {
|
|
1248
|
-
"name": "ScwComponent",
|
|
1249
|
-
"module": "src/scw-component/ScwComponent.ts"
|
|
1250
|
-
}
|
|
1350
|
+
"description": "(ScwCallout) Primary link href",
|
|
1351
|
+
"attribute": "primary-cta-link",
|
|
1352
|
+
"reflects": true
|
|
1251
1353
|
},
|
|
1252
1354
|
{
|
|
1253
1355
|
"kind": "field",
|
|
1254
|
-
"name": "
|
|
1356
|
+
"name": "primaryLabel",
|
|
1255
1357
|
"type": {
|
|
1256
|
-
"text": "
|
|
1358
|
+
"text": "string | undefined"
|
|
1257
1359
|
},
|
|
1258
|
-
"
|
|
1259
|
-
"
|
|
1260
|
-
"
|
|
1261
|
-
"inheritedFrom": {
|
|
1262
|
-
"name": "ScwLink",
|
|
1263
|
-
"module": "src/scw-link/ScwLink.ts"
|
|
1264
|
-
}
|
|
1360
|
+
"description": "(ScwCallout) Primary link label",
|
|
1361
|
+
"attribute": "primary-cta-label",
|
|
1362
|
+
"reflects": true
|
|
1265
1363
|
},
|
|
1266
1364
|
{
|
|
1267
1365
|
"kind": "field",
|
|
1268
|
-
"name": "
|
|
1366
|
+
"name": "secondaryLink",
|
|
1269
1367
|
"type": {
|
|
1270
|
-
"text": "string"
|
|
1368
|
+
"text": "string | undefined"
|
|
1271
1369
|
},
|
|
1272
|
-
"
|
|
1273
|
-
"
|
|
1274
|
-
"
|
|
1275
|
-
"inheritedFrom": {
|
|
1276
|
-
"name": "ScwComponent",
|
|
1277
|
-
"module": "src/scw-component/ScwComponent.ts"
|
|
1278
|
-
}
|
|
1370
|
+
"description": "(ScwCallout) Secondary link href",
|
|
1371
|
+
"attribute": "secondary-cta-link",
|
|
1372
|
+
"reflects": true
|
|
1279
1373
|
},
|
|
1280
1374
|
{
|
|
1281
1375
|
"kind": "field",
|
|
1282
|
-
"name": "
|
|
1376
|
+
"name": "secondaryLabel",
|
|
1283
1377
|
"type": {
|
|
1284
|
-
"text": "string"
|
|
1378
|
+
"text": "string | undefined"
|
|
1285
1379
|
},
|
|
1286
|
-
"
|
|
1287
|
-
"
|
|
1288
|
-
"
|
|
1289
|
-
"inheritedFrom": {
|
|
1290
|
-
"name": "ScwLink",
|
|
1291
|
-
"module": "src/scw-link/ScwLink.ts"
|
|
1292
|
-
}
|
|
1380
|
+
"description": "(ScwCallout) Secondary link label",
|
|
1381
|
+
"attribute": "secondary-cta-label",
|
|
1382
|
+
"reflects": true
|
|
1293
1383
|
},
|
|
1294
1384
|
{
|
|
1295
|
-
"kind": "
|
|
1296
|
-
"name": "
|
|
1297
|
-
"
|
|
1298
|
-
"
|
|
1385
|
+
"kind": "method",
|
|
1386
|
+
"name": "renderLink",
|
|
1387
|
+
"return": {
|
|
1388
|
+
"type": {
|
|
1389
|
+
"text": "object"
|
|
1390
|
+
}
|
|
1299
1391
|
},
|
|
1300
|
-
"
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1392
|
+
"parameters": [
|
|
1393
|
+
{
|
|
1394
|
+
"name": "label",
|
|
1395
|
+
"type": {
|
|
1396
|
+
"text": "string"
|
|
1397
|
+
}
|
|
1398
|
+
},
|
|
1399
|
+
{
|
|
1400
|
+
"name": "link",
|
|
1401
|
+
"type": {
|
|
1402
|
+
"text": "string"
|
|
1403
|
+
}
|
|
1404
|
+
},
|
|
1405
|
+
{
|
|
1406
|
+
"name": "design",
|
|
1407
|
+
"default": "'solid'",
|
|
1408
|
+
"type": {
|
|
1409
|
+
"text": "string"
|
|
1410
|
+
}
|
|
1411
|
+
}
|
|
1412
|
+
],
|
|
1413
|
+
"description": "renderLink"
|
|
1304
1414
|
},
|
|
1305
1415
|
{
|
|
1306
|
-
"kind": "
|
|
1307
|
-
"name": "
|
|
1308
|
-
"
|
|
1309
|
-
"
|
|
1310
|
-
"text": "void"
|
|
1311
|
-
}
|
|
1416
|
+
"kind": "field",
|
|
1417
|
+
"name": "element",
|
|
1418
|
+
"type": {
|
|
1419
|
+
"text": "string"
|
|
1312
1420
|
},
|
|
1313
|
-
"description": "
|
|
1421
|
+
"description": "(ScwComponent) contains the root element name for each component\n(enum Components)",
|
|
1422
|
+
"attribute": "element",
|
|
1423
|
+
"reflects": true,
|
|
1314
1424
|
"inheritedFrom": {
|
|
1315
|
-
"name": "
|
|
1316
|
-
"module": "src/scw-
|
|
1425
|
+
"name": "ScwComponent",
|
|
1426
|
+
"module": "src/scw-component/ScwComponent.ts"
|
|
1317
1427
|
}
|
|
1318
1428
|
},
|
|
1319
1429
|
{
|
|
1320
|
-
"kind": "
|
|
1321
|
-
"name": "
|
|
1322
|
-
"
|
|
1323
|
-
|
|
1324
|
-
"type": {
|
|
1325
|
-
"text": "object"
|
|
1326
|
-
}
|
|
1430
|
+
"kind": "field",
|
|
1431
|
+
"name": "ariaLabel",
|
|
1432
|
+
"type": {
|
|
1433
|
+
"text": "string"
|
|
1327
1434
|
},
|
|
1328
|
-
"
|
|
1435
|
+
"default": "''",
|
|
1436
|
+
"description": "(ScwComponent) Main text within component",
|
|
1437
|
+
"attribute": "aria-label",
|
|
1438
|
+
"reflects": true,
|
|
1329
1439
|
"inheritedFrom": {
|
|
1330
|
-
"name": "
|
|
1331
|
-
"module": "src/scw-
|
|
1440
|
+
"name": "ScwComponent",
|
|
1441
|
+
"module": "src/scw-component/ScwComponent.ts"
|
|
1332
1442
|
}
|
|
1333
1443
|
},
|
|
1334
1444
|
{
|
|
1335
|
-
"kind": "
|
|
1336
|
-
"name": "
|
|
1337
|
-
"
|
|
1338
|
-
"
|
|
1339
|
-
"text": "object"
|
|
1340
|
-
}
|
|
1445
|
+
"kind": "field",
|
|
1446
|
+
"name": "ariaDisabled",
|
|
1447
|
+
"type": {
|
|
1448
|
+
"text": "string"
|
|
1341
1449
|
},
|
|
1342
|
-
"
|
|
1450
|
+
"default": "'false'",
|
|
1451
|
+
"description": "(ScwComponent) Disables the component however it disables",
|
|
1452
|
+
"attribute": "aria-disabled",
|
|
1343
1453
|
"inheritedFrom": {
|
|
1344
|
-
"name": "
|
|
1345
|
-
"module": "src/scw-
|
|
1454
|
+
"name": "ScwComponent",
|
|
1455
|
+
"module": "src/scw-component/ScwComponent.ts"
|
|
1346
1456
|
}
|
|
1347
1457
|
},
|
|
1348
1458
|
{
|
|
@@ -1351,7 +1461,7 @@
|
|
|
1351
1461
|
"type": {
|
|
1352
1462
|
"text": "boolean"
|
|
1353
1463
|
},
|
|
1354
|
-
"default": "
|
|
1464
|
+
"default": "false",
|
|
1355
1465
|
"description": "(ScwLinkBase)\nSome lookups need to know if something is a link or not...",
|
|
1356
1466
|
"attribute": "is-link",
|
|
1357
1467
|
"reflects": true,
|
|
@@ -1437,76 +1547,52 @@
|
|
|
1437
1547
|
],
|
|
1438
1548
|
"attributes": [
|
|
1439
1549
|
{
|
|
1440
|
-
"name": "
|
|
1550
|
+
"name": "heading",
|
|
1441
1551
|
"type": {
|
|
1442
|
-
"text": "
|
|
1552
|
+
"text": "string | undefined"
|
|
1443
1553
|
},
|
|
1444
|
-
"description": "
|
|
1445
|
-
"fieldName": "
|
|
1554
|
+
"description": "(ScwCallout) The heading",
|
|
1555
|
+
"fieldName": "heading"
|
|
1446
1556
|
},
|
|
1447
1557
|
{
|
|
1448
|
-
"name": "
|
|
1558
|
+
"name": "alignment",
|
|
1449
1559
|
"type": {
|
|
1450
|
-
"text": "string"
|
|
1560
|
+
"text": "string | undefined"
|
|
1451
1561
|
},
|
|
1452
|
-
"
|
|
1453
|
-
"
|
|
1454
|
-
"fieldName": "icon",
|
|
1455
|
-
"inheritedFrom": {
|
|
1456
|
-
"name": "ScwLink",
|
|
1457
|
-
"module": "src/scw-link/ScwLink.ts"
|
|
1458
|
-
}
|
|
1562
|
+
"description": "(ScwCallout) Alignment of the callout",
|
|
1563
|
+
"fieldName": "align"
|
|
1459
1564
|
},
|
|
1460
1565
|
{
|
|
1461
|
-
"name": "
|
|
1566
|
+
"name": "primary-cta-link",
|
|
1462
1567
|
"type": {
|
|
1463
|
-
"text": "string"
|
|
1568
|
+
"text": "string | undefined"
|
|
1464
1569
|
},
|
|
1465
|
-
"
|
|
1466
|
-
"
|
|
1467
|
-
"fieldName": "iconSide",
|
|
1468
|
-
"inheritedFrom": {
|
|
1469
|
-
"name": "ScwLink",
|
|
1470
|
-
"module": "src/scw-link/ScwLink.ts"
|
|
1471
|
-
}
|
|
1570
|
+
"description": "(ScwCallout) Primary link href",
|
|
1571
|
+
"fieldName": "primaryLink"
|
|
1472
1572
|
},
|
|
1473
1573
|
{
|
|
1474
|
-
"name": "
|
|
1574
|
+
"name": "primary-cta-label",
|
|
1475
1575
|
"type": {
|
|
1476
|
-
"text": "
|
|
1576
|
+
"text": "string | undefined"
|
|
1477
1577
|
},
|
|
1478
|
-
"
|
|
1479
|
-
"
|
|
1480
|
-
"fieldName": "design",
|
|
1481
|
-
"inheritedFrom": {
|
|
1482
|
-
"name": "ScwLink",
|
|
1483
|
-
"module": "src/scw-link/ScwLink.ts"
|
|
1484
|
-
}
|
|
1578
|
+
"description": "(ScwCallout) Primary link label",
|
|
1579
|
+
"fieldName": "primaryLabel"
|
|
1485
1580
|
},
|
|
1486
1581
|
{
|
|
1487
|
-
"name": "
|
|
1582
|
+
"name": "secondary-cta-link",
|
|
1488
1583
|
"type": {
|
|
1489
|
-
"text": "string"
|
|
1584
|
+
"text": "string | undefined"
|
|
1490
1585
|
},
|
|
1491
|
-
"
|
|
1492
|
-
"
|
|
1493
|
-
"fieldName": "href",
|
|
1494
|
-
"inheritedFrom": {
|
|
1495
|
-
"name": "ScwLink",
|
|
1496
|
-
"module": "src/scw-link/ScwLink.ts"
|
|
1497
|
-
}
|
|
1586
|
+
"description": "(ScwCallout) Secondary link href",
|
|
1587
|
+
"fieldName": "secondaryLink"
|
|
1498
1588
|
},
|
|
1499
1589
|
{
|
|
1500
|
-
"name": "
|
|
1590
|
+
"name": "secondary-cta-label",
|
|
1501
1591
|
"type": {
|
|
1502
|
-
"text": "
|
|
1592
|
+
"text": "string | undefined"
|
|
1503
1593
|
},
|
|
1504
|
-
"description": "(
|
|
1505
|
-
"fieldName": "
|
|
1506
|
-
"inheritedFrom": {
|
|
1507
|
-
"name": "ScwLink",
|
|
1508
|
-
"module": "src/scw-link/ScwLink.ts"
|
|
1509
|
-
}
|
|
1594
|
+
"description": "(ScwCallout) Secondary link label",
|
|
1595
|
+
"fieldName": "secondaryLabel"
|
|
1510
1596
|
},
|
|
1511
1597
|
{
|
|
1512
1598
|
"name": "aria-label",
|
|
@@ -1514,52 +1600,26 @@
|
|
|
1514
1600
|
"text": "string"
|
|
1515
1601
|
},
|
|
1516
1602
|
"default": "''",
|
|
1517
|
-
"description": "(
|
|
1603
|
+
"description": "(ScwComponent) Main text within component",
|
|
1518
1604
|
"fieldName": "ariaLabel",
|
|
1519
1605
|
"inheritedFrom": {
|
|
1520
1606
|
"name": "ScwComponent",
|
|
1521
1607
|
"module": "src/scw-component/ScwComponent.ts"
|
|
1522
1608
|
}
|
|
1523
1609
|
},
|
|
1524
|
-
{
|
|
1525
|
-
"name": "size",
|
|
1526
|
-
"type": {
|
|
1527
|
-
"text": "'small' | 'medium' | 'large'"
|
|
1528
|
-
},
|
|
1529
|
-
"default": "'medium'",
|
|
1530
|
-
"description": "(ScwLink) Link label",
|
|
1531
|
-
"fieldName": "size",
|
|
1532
|
-
"inheritedFrom": {
|
|
1533
|
-
"name": "ScwLink",
|
|
1534
|
-
"module": "src/scw-link/ScwLink.ts"
|
|
1535
|
-
}
|
|
1536
|
-
},
|
|
1537
1610
|
{
|
|
1538
1611
|
"name": "aria-disabled",
|
|
1539
1612
|
"type": {
|
|
1540
1613
|
"text": "string"
|
|
1541
1614
|
},
|
|
1542
1615
|
"default": "'false'",
|
|
1543
|
-
"description": "(
|
|
1616
|
+
"description": "(ScwComponent) Disables the component however it disables",
|
|
1544
1617
|
"fieldName": "ariaDisabled",
|
|
1545
1618
|
"inheritedFrom": {
|
|
1546
1619
|
"name": "ScwComponent",
|
|
1547
1620
|
"module": "src/scw-component/ScwComponent.ts"
|
|
1548
1621
|
}
|
|
1549
1622
|
},
|
|
1550
|
-
{
|
|
1551
|
-
"name": "underline",
|
|
1552
|
-
"type": {
|
|
1553
|
-
"text": "string"
|
|
1554
|
-
},
|
|
1555
|
-
"default": "'true'",
|
|
1556
|
-
"description": "(ScwLink) If a regular link should be underlined",
|
|
1557
|
-
"fieldName": "underline",
|
|
1558
|
-
"inheritedFrom": {
|
|
1559
|
-
"name": "ScwLink",
|
|
1560
|
-
"module": "src/scw-link/ScwLink.ts"
|
|
1561
|
-
}
|
|
1562
|
-
},
|
|
1563
1623
|
{
|
|
1564
1624
|
"name": "is-link",
|
|
1565
1625
|
"type": {
|
|
@@ -1600,10 +1660,10 @@
|
|
|
1600
1660
|
}
|
|
1601
1661
|
],
|
|
1602
1662
|
"superclass": {
|
|
1603
|
-
"name": "
|
|
1604
|
-
"
|
|
1663
|
+
"name": "ScwComponent",
|
|
1664
|
+
"package": "scw-component/ScwComponent"
|
|
1605
1665
|
},
|
|
1606
|
-
"tagName": "scw-
|
|
1666
|
+
"tagName": "scw-callout",
|
|
1607
1667
|
"customElement": true
|
|
1608
1668
|
}
|
|
1609
1669
|
],
|
|
@@ -1612,95 +1672,168 @@
|
|
|
1612
1672
|
"kind": "js",
|
|
1613
1673
|
"name": "default",
|
|
1614
1674
|
"declaration": {
|
|
1615
|
-
"name": "
|
|
1616
|
-
"module": "src/scw-
|
|
1675
|
+
"name": "ScwCallout",
|
|
1676
|
+
"module": "src/scw-callout/ScwCallout.ts"
|
|
1617
1677
|
}
|
|
1618
1678
|
}
|
|
1619
1679
|
]
|
|
1620
1680
|
},
|
|
1621
1681
|
{
|
|
1622
1682
|
"kind": "javascript-module",
|
|
1623
|
-
"path": "src/scw-
|
|
1683
|
+
"path": "src/scw-callout/scw-callout.ts",
|
|
1624
1684
|
"declarations": [],
|
|
1625
1685
|
"exports": [
|
|
1626
1686
|
{
|
|
1627
1687
|
"kind": "custom-element-definition",
|
|
1628
|
-
"name": "scw-
|
|
1688
|
+
"name": "scw-callout",
|
|
1629
1689
|
"declaration": {
|
|
1630
|
-
"name": "
|
|
1631
|
-
"module": "/src/scw-
|
|
1690
|
+
"name": "ScwCallout",
|
|
1691
|
+
"module": "/src/scw-callout/ScwCallout"
|
|
1632
1692
|
}
|
|
1633
1693
|
}
|
|
1634
1694
|
]
|
|
1635
1695
|
},
|
|
1636
1696
|
{
|
|
1637
1697
|
"kind": "javascript-module",
|
|
1638
|
-
"path": "src/scw-
|
|
1698
|
+
"path": "src/scw-card/ScwCard.ts",
|
|
1639
1699
|
"declarations": [
|
|
1640
1700
|
{
|
|
1641
1701
|
"kind": "class",
|
|
1642
|
-
"description": "
|
|
1643
|
-
"name": "
|
|
1702
|
+
"description": "ScwCard a first LitElement web component",
|
|
1703
|
+
"name": "ScwCard",
|
|
1704
|
+
"slots": [
|
|
1705
|
+
{
|
|
1706
|
+
"description": "List of tags to display on the card",
|
|
1707
|
+
"name": "image",
|
|
1708
|
+
"default": "\"<scw-image />...\""
|
|
1709
|
+
},
|
|
1710
|
+
{
|
|
1711
|
+
"description": "List of tags to display on the card",
|
|
1712
|
+
"name": "tags",
|
|
1713
|
+
"default": "\"<scw-link design=\"link\" />...\""
|
|
1714
|
+
}
|
|
1715
|
+
],
|
|
1644
1716
|
"members": [
|
|
1645
1717
|
{
|
|
1646
1718
|
"kind": "field",
|
|
1647
|
-
"name": "heading",
|
|
1719
|
+
"name": "heading",
|
|
1720
|
+
"type": {
|
|
1721
|
+
"text": "string | undefined"
|
|
1722
|
+
},
|
|
1723
|
+
"description": "(ScwCard) Main title or header of the card",
|
|
1724
|
+
"attribute": "heading"
|
|
1725
|
+
},
|
|
1726
|
+
{
|
|
1727
|
+
"kind": "field",
|
|
1728
|
+
"name": "date",
|
|
1729
|
+
"type": {
|
|
1730
|
+
"text": "string | undefined"
|
|
1731
|
+
},
|
|
1732
|
+
"description": "(ScwCard) Date field for articles",
|
|
1733
|
+
"attribute": "date"
|
|
1734
|
+
},
|
|
1735
|
+
{
|
|
1736
|
+
"kind": "field",
|
|
1737
|
+
"name": "border",
|
|
1738
|
+
"type": {
|
|
1739
|
+
"text": "boolean | undefined"
|
|
1740
|
+
},
|
|
1741
|
+
"description": "(ScwCard) If card should have border",
|
|
1742
|
+
"attribute": "show-border"
|
|
1743
|
+
},
|
|
1744
|
+
{
|
|
1745
|
+
"kind": "field",
|
|
1746
|
+
"name": "align",
|
|
1747
|
+
"type": {
|
|
1748
|
+
"text": "string"
|
|
1749
|
+
},
|
|
1750
|
+
"default": "'vertical'",
|
|
1751
|
+
"description": "(ScwCard) Alignment of the card",
|
|
1752
|
+
"attribute": "align"
|
|
1753
|
+
},
|
|
1754
|
+
{
|
|
1755
|
+
"kind": "field",
|
|
1756
|
+
"name": "superHeading",
|
|
1757
|
+
"type": {
|
|
1758
|
+
"text": "string | undefined"
|
|
1759
|
+
},
|
|
1760
|
+
"description": "(ScwCard) Super heading, describing a category or area pertaining to\ntitle",
|
|
1761
|
+
"attribute": "super-heading"
|
|
1762
|
+
},
|
|
1763
|
+
{
|
|
1764
|
+
"kind": "field",
|
|
1765
|
+
"name": "primaryLink",
|
|
1766
|
+
"type": {
|
|
1767
|
+
"text": "string | undefined"
|
|
1768
|
+
},
|
|
1769
|
+
"description": "(ScwCard) The link for the primary button",
|
|
1770
|
+
"attribute": "primary-cta-link"
|
|
1771
|
+
},
|
|
1772
|
+
{
|
|
1773
|
+
"kind": "field",
|
|
1774
|
+
"name": "primaryLabel",
|
|
1648
1775
|
"type": {
|
|
1649
1776
|
"text": "string | undefined"
|
|
1650
1777
|
},
|
|
1651
|
-
"description": "(
|
|
1652
|
-
"attribute": "
|
|
1653
|
-
"reflects": true
|
|
1778
|
+
"description": "(ScwCard) The label for the primary button",
|
|
1779
|
+
"attribute": "primary-cta-label"
|
|
1654
1780
|
},
|
|
1655
1781
|
{
|
|
1656
1782
|
"kind": "field",
|
|
1657
|
-
"name": "
|
|
1783
|
+
"name": "secondaryLink",
|
|
1658
1784
|
"type": {
|
|
1659
1785
|
"text": "string | undefined"
|
|
1660
1786
|
},
|
|
1661
|
-
"description": "(
|
|
1662
|
-
"attribute": "
|
|
1663
|
-
"reflects": true
|
|
1787
|
+
"description": "(ScwCard) The link for the secondary button",
|
|
1788
|
+
"attribute": "secondary-cta-link"
|
|
1664
1789
|
},
|
|
1665
1790
|
{
|
|
1666
1791
|
"kind": "field",
|
|
1667
|
-
"name": "
|
|
1792
|
+
"name": "secondaryLabel",
|
|
1668
1793
|
"type": {
|
|
1669
1794
|
"text": "string | undefined"
|
|
1670
1795
|
},
|
|
1671
|
-
"description": "(
|
|
1672
|
-
"attribute": "
|
|
1673
|
-
"reflects": true
|
|
1796
|
+
"description": "(ScwCard) The label for the secondary button",
|
|
1797
|
+
"attribute": "secondary-cta-label"
|
|
1674
1798
|
},
|
|
1675
1799
|
{
|
|
1676
1800
|
"kind": "field",
|
|
1677
|
-
"name": "
|
|
1801
|
+
"name": "tags",
|
|
1678
1802
|
"type": {
|
|
1679
|
-
"text": "string
|
|
1803
|
+
"text": "string[]"
|
|
1680
1804
|
},
|
|
1681
|
-
"
|
|
1682
|
-
"
|
|
1683
|
-
"
|
|
1805
|
+
"default": "[]",
|
|
1806
|
+
"description": "(ScwCard) An array of tag labels",
|
|
1807
|
+
"attribute": "tag-name"
|
|
1684
1808
|
},
|
|
1685
1809
|
{
|
|
1686
1810
|
"kind": "field",
|
|
1687
|
-
"name": "
|
|
1811
|
+
"name": "tagUrl",
|
|
1688
1812
|
"type": {
|
|
1689
|
-
"text": "string | undefined"
|
|
1813
|
+
"text": "string[] | undefined"
|
|
1690
1814
|
},
|
|
1691
|
-
"description": "(
|
|
1692
|
-
"attribute": "
|
|
1693
|
-
"reflects": true
|
|
1815
|
+
"description": "(ScwCard) An array of tag urls",
|
|
1816
|
+
"attribute": "tag-url"
|
|
1694
1817
|
},
|
|
1695
1818
|
{
|
|
1696
1819
|
"kind": "field",
|
|
1697
|
-
"name": "
|
|
1820
|
+
"name": "linkCard",
|
|
1698
1821
|
"type": {
|
|
1699
|
-
"text": "
|
|
1822
|
+
"text": "boolean"
|
|
1700
1823
|
},
|
|
1701
|
-
"
|
|
1702
|
-
"
|
|
1703
|
-
"
|
|
1824
|
+
"default": "false",
|
|
1825
|
+
"description": "(ScwCard) If the card should be the link, hides CTA buttons",
|
|
1826
|
+
"attribute": "link-card"
|
|
1827
|
+
},
|
|
1828
|
+
{
|
|
1829
|
+
"kind": "field",
|
|
1830
|
+
"name": "hideBody",
|
|
1831
|
+
"type": {
|
|
1832
|
+
"text": "boolean"
|
|
1833
|
+
},
|
|
1834
|
+
"default": "false",
|
|
1835
|
+
"description": "(ScwCard) If the body should be removed",
|
|
1836
|
+
"attribute": "hide-body"
|
|
1704
1837
|
},
|
|
1705
1838
|
{
|
|
1706
1839
|
"kind": "method",
|
|
@@ -1733,6 +1866,16 @@
|
|
|
1733
1866
|
],
|
|
1734
1867
|
"description": "renderLink"
|
|
1735
1868
|
},
|
|
1869
|
+
{
|
|
1870
|
+
"kind": "method",
|
|
1871
|
+
"name": "renderTags",
|
|
1872
|
+
"return": {
|
|
1873
|
+
"type": {
|
|
1874
|
+
"text": "object"
|
|
1875
|
+
}
|
|
1876
|
+
},
|
|
1877
|
+
"description": "render tag"
|
|
1878
|
+
},
|
|
1736
1879
|
{
|
|
1737
1880
|
"kind": "field",
|
|
1738
1881
|
"name": "element",
|
|
@@ -1872,23 +2015,48 @@
|
|
|
1872
2015
|
"type": {
|
|
1873
2016
|
"text": "string | undefined"
|
|
1874
2017
|
},
|
|
1875
|
-
"description": "(
|
|
2018
|
+
"description": "(ScwCard) Main title or header of the card",
|
|
1876
2019
|
"fieldName": "heading"
|
|
1877
2020
|
},
|
|
1878
2021
|
{
|
|
1879
|
-
"name": "
|
|
2022
|
+
"name": "date",
|
|
1880
2023
|
"type": {
|
|
1881
2024
|
"text": "string | undefined"
|
|
1882
2025
|
},
|
|
1883
|
-
"description": "(
|
|
2026
|
+
"description": "(ScwCard) Date field for articles",
|
|
2027
|
+
"fieldName": "date"
|
|
2028
|
+
},
|
|
2029
|
+
{
|
|
2030
|
+
"name": "show-border",
|
|
2031
|
+
"type": {
|
|
2032
|
+
"text": "boolean | undefined"
|
|
2033
|
+
},
|
|
2034
|
+
"description": "(ScwCard) If card should have border",
|
|
2035
|
+
"fieldName": "border"
|
|
2036
|
+
},
|
|
2037
|
+
{
|
|
2038
|
+
"name": "align",
|
|
2039
|
+
"type": {
|
|
2040
|
+
"text": "string"
|
|
2041
|
+
},
|
|
2042
|
+
"default": "'vertical'",
|
|
2043
|
+
"description": "(ScwCard) Alignment of the card",
|
|
1884
2044
|
"fieldName": "align"
|
|
1885
2045
|
},
|
|
2046
|
+
{
|
|
2047
|
+
"name": "super-heading",
|
|
2048
|
+
"type": {
|
|
2049
|
+
"text": "string | undefined"
|
|
2050
|
+
},
|
|
2051
|
+
"description": "(ScwCard) Super heading, describing a category or area pertaining to\ntitle",
|
|
2052
|
+
"fieldName": "superHeading"
|
|
2053
|
+
},
|
|
1886
2054
|
{
|
|
1887
2055
|
"name": "primary-cta-link",
|
|
1888
2056
|
"type": {
|
|
1889
2057
|
"text": "string | undefined"
|
|
1890
2058
|
},
|
|
1891
|
-
"description": "(
|
|
2059
|
+
"description": "(ScwCard) The link for the primary button",
|
|
1892
2060
|
"fieldName": "primaryLink"
|
|
1893
2061
|
},
|
|
1894
2062
|
{
|
|
@@ -1896,7 +2064,7 @@
|
|
|
1896
2064
|
"type": {
|
|
1897
2065
|
"text": "string | undefined"
|
|
1898
2066
|
},
|
|
1899
|
-
"description": "(
|
|
2067
|
+
"description": "(ScwCard) The label for the primary button",
|
|
1900
2068
|
"fieldName": "primaryLabel"
|
|
1901
2069
|
},
|
|
1902
2070
|
{
|
|
@@ -1904,7 +2072,7 @@
|
|
|
1904
2072
|
"type": {
|
|
1905
2073
|
"text": "string | undefined"
|
|
1906
2074
|
},
|
|
1907
|
-
"description": "(
|
|
2075
|
+
"description": "(ScwCard) The link for the secondary button",
|
|
1908
2076
|
"fieldName": "secondaryLink"
|
|
1909
2077
|
},
|
|
1910
2078
|
{
|
|
@@ -1912,9 +2080,44 @@
|
|
|
1912
2080
|
"type": {
|
|
1913
2081
|
"text": "string | undefined"
|
|
1914
2082
|
},
|
|
1915
|
-
"description": "(
|
|
2083
|
+
"description": "(ScwCard) The label for the secondary button",
|
|
1916
2084
|
"fieldName": "secondaryLabel"
|
|
1917
2085
|
},
|
|
2086
|
+
{
|
|
2087
|
+
"name": "tag-name",
|
|
2088
|
+
"type": {
|
|
2089
|
+
"text": "string[]"
|
|
2090
|
+
},
|
|
2091
|
+
"default": "[]",
|
|
2092
|
+
"description": "(ScwCard) An array of tag labels",
|
|
2093
|
+
"fieldName": "tags"
|
|
2094
|
+
},
|
|
2095
|
+
{
|
|
2096
|
+
"name": "tag-url",
|
|
2097
|
+
"type": {
|
|
2098
|
+
"text": "string[] | undefined"
|
|
2099
|
+
},
|
|
2100
|
+
"description": "(ScwCard) An array of tag urls",
|
|
2101
|
+
"fieldName": "tagUrl"
|
|
2102
|
+
},
|
|
2103
|
+
{
|
|
2104
|
+
"name": "link-card",
|
|
2105
|
+
"type": {
|
|
2106
|
+
"text": "boolean"
|
|
2107
|
+
},
|
|
2108
|
+
"default": "false",
|
|
2109
|
+
"description": "(ScwCard) If the card should be the link, hides CTA buttons",
|
|
2110
|
+
"fieldName": "linkCard"
|
|
2111
|
+
},
|
|
2112
|
+
{
|
|
2113
|
+
"name": "hide-body",
|
|
2114
|
+
"type": {
|
|
2115
|
+
"text": "boolean"
|
|
2116
|
+
},
|
|
2117
|
+
"default": "false",
|
|
2118
|
+
"description": "(ScwCard) If the body should be removed",
|
|
2119
|
+
"fieldName": "hideBody"
|
|
2120
|
+
},
|
|
1918
2121
|
{
|
|
1919
2122
|
"name": "aria-label",
|
|
1920
2123
|
"type": {
|
|
@@ -1982,9 +2185,9 @@
|
|
|
1982
2185
|
],
|
|
1983
2186
|
"superclass": {
|
|
1984
2187
|
"name": "ScwComponent",
|
|
1985
|
-
"
|
|
2188
|
+
"module": "/src/scw-component/ScwComponent"
|
|
1986
2189
|
},
|
|
1987
|
-
"tagName": "scw-
|
|
2190
|
+
"tagName": "scw-card",
|
|
1988
2191
|
"customElement": true
|
|
1989
2192
|
}
|
|
1990
2193
|
],
|
|
@@ -1993,209 +2196,96 @@
|
|
|
1993
2196
|
"kind": "js",
|
|
1994
2197
|
"name": "default",
|
|
1995
2198
|
"declaration": {
|
|
1996
|
-
"name": "
|
|
1997
|
-
"module": "src/scw-
|
|
1998
|
-
}
|
|
1999
|
-
}
|
|
2000
|
-
]
|
|
2001
|
-
},
|
|
2002
|
-
{
|
|
2003
|
-
"kind": "javascript-module",
|
|
2004
|
-
"path": "src/scw-
|
|
2005
|
-
"declarations": [],
|
|
2006
|
-
"exports": [
|
|
2007
|
-
{
|
|
2008
|
-
"kind": "custom-element-definition",
|
|
2009
|
-
"name": "scw-
|
|
2010
|
-
"declaration": {
|
|
2011
|
-
"name": "
|
|
2012
|
-
"module": "/src/scw-
|
|
2013
|
-
}
|
|
2014
|
-
}
|
|
2015
|
-
]
|
|
2016
|
-
},
|
|
2017
|
-
{
|
|
2018
|
-
"kind": "javascript-module",
|
|
2019
|
-
"path": "src/scw-
|
|
2020
|
-
"declarations": [
|
|
2021
|
-
{
|
|
2022
|
-
"kind": "class",
|
|
2023
|
-
"description": "
|
|
2024
|
-
"name": "
|
|
2025
|
-
"
|
|
2026
|
-
{
|
|
2027
|
-
"description": "List of tags to display on the card",
|
|
2028
|
-
"name": "image",
|
|
2029
|
-
"default": "\"<scw-image />...\""
|
|
2030
|
-
},
|
|
2031
|
-
{
|
|
2032
|
-
"description": "List of tags to display on the card",
|
|
2033
|
-
"name": "tags",
|
|
2034
|
-
"default": "\"<scw-link design=\"link\" />...\""
|
|
2035
|
-
}
|
|
2036
|
-
],
|
|
2037
|
-
"members": [
|
|
2038
|
-
{
|
|
2039
|
-
"kind": "field",
|
|
2040
|
-
"name": "heading",
|
|
2041
|
-
"type": {
|
|
2042
|
-
"text": "string | undefined"
|
|
2043
|
-
},
|
|
2044
|
-
"description": "(ScwCard) Main title or header of the card",
|
|
2045
|
-
"attribute": "heading"
|
|
2046
|
-
},
|
|
2047
|
-
{
|
|
2048
|
-
"kind": "field",
|
|
2049
|
-
"name": "date",
|
|
2050
|
-
"type": {
|
|
2051
|
-
"text": "string | undefined"
|
|
2052
|
-
},
|
|
2053
|
-
"description": "(ScwCard) Date field for articles",
|
|
2054
|
-
"attribute": "date"
|
|
2055
|
-
},
|
|
2056
|
-
{
|
|
2057
|
-
"kind": "field",
|
|
2058
|
-
"name": "border",
|
|
2059
|
-
"type": {
|
|
2060
|
-
"text": "boolean | undefined"
|
|
2061
|
-
},
|
|
2062
|
-
"description": "(ScwCard) If card should have border",
|
|
2063
|
-
"attribute": "show-border"
|
|
2064
|
-
},
|
|
2065
|
-
{
|
|
2066
|
-
"kind": "field",
|
|
2067
|
-
"name": "align",
|
|
2068
|
-
"type": {
|
|
2069
|
-
"text": "string"
|
|
2070
|
-
},
|
|
2071
|
-
"default": "'vertical'",
|
|
2072
|
-
"description": "(ScwCard) Alignment of the card",
|
|
2073
|
-
"attribute": "align"
|
|
2074
|
-
},
|
|
2075
|
-
{
|
|
2076
|
-
"kind": "field",
|
|
2077
|
-
"name": "superHeading",
|
|
2078
|
-
"type": {
|
|
2079
|
-
"text": "string | undefined"
|
|
2080
|
-
},
|
|
2081
|
-
"description": "(ScwCard) Super heading, describing a category or area pertaining to\ntitle",
|
|
2082
|
-
"attribute": "super-heading"
|
|
2083
|
-
},
|
|
2084
|
-
{
|
|
2085
|
-
"kind": "field",
|
|
2086
|
-
"name": "primaryLink",
|
|
2087
|
-
"type": {
|
|
2088
|
-
"text": "string | undefined"
|
|
2089
|
-
},
|
|
2090
|
-
"description": "(ScwCard) The link for the primary button",
|
|
2091
|
-
"attribute": "primary-cta-link"
|
|
2092
|
-
},
|
|
2093
|
-
{
|
|
2094
|
-
"kind": "field",
|
|
2095
|
-
"name": "primaryLabel",
|
|
2096
|
-
"type": {
|
|
2097
|
-
"text": "string | undefined"
|
|
2098
|
-
},
|
|
2099
|
-
"description": "(ScwCard) The label for the primary button",
|
|
2100
|
-
"attribute": "primary-cta-label"
|
|
2101
|
-
},
|
|
2199
|
+
"name": "ScwCard",
|
|
2200
|
+
"module": "src/scw-card/ScwCard.ts"
|
|
2201
|
+
}
|
|
2202
|
+
}
|
|
2203
|
+
]
|
|
2204
|
+
},
|
|
2205
|
+
{
|
|
2206
|
+
"kind": "javascript-module",
|
|
2207
|
+
"path": "src/scw-card/scw-card.ts",
|
|
2208
|
+
"declarations": [],
|
|
2209
|
+
"exports": [
|
|
2210
|
+
{
|
|
2211
|
+
"kind": "custom-element-definition",
|
|
2212
|
+
"name": "scw-card",
|
|
2213
|
+
"declaration": {
|
|
2214
|
+
"name": "ScwCard",
|
|
2215
|
+
"module": "/src/scw-card/ScwCard"
|
|
2216
|
+
}
|
|
2217
|
+
}
|
|
2218
|
+
]
|
|
2219
|
+
},
|
|
2220
|
+
{
|
|
2221
|
+
"kind": "javascript-module",
|
|
2222
|
+
"path": "src/scw-accordion/ScwAccordion.ts",
|
|
2223
|
+
"declarations": [
|
|
2224
|
+
{
|
|
2225
|
+
"kind": "class",
|
|
2226
|
+
"description": "ScwSlider",
|
|
2227
|
+
"name": "ScwAccordion",
|
|
2228
|
+
"members": [
|
|
2102
2229
|
{
|
|
2103
2230
|
"kind": "field",
|
|
2104
|
-
"name": "
|
|
2231
|
+
"name": "open",
|
|
2105
2232
|
"type": {
|
|
2106
|
-
"text": "
|
|
2233
|
+
"text": "boolean"
|
|
2107
2234
|
},
|
|
2108
|
-
"
|
|
2109
|
-
"
|
|
2235
|
+
"default": "false",
|
|
2236
|
+
"description": "Shows if the accordion is open",
|
|
2237
|
+
"attribute": "open",
|
|
2238
|
+
"reflects": true
|
|
2110
2239
|
},
|
|
2111
2240
|
{
|
|
2112
2241
|
"kind": "field",
|
|
2113
|
-
"name": "
|
|
2242
|
+
"name": "heading",
|
|
2114
2243
|
"type": {
|
|
2115
|
-
"text": "string
|
|
2244
|
+
"text": "string"
|
|
2116
2245
|
},
|
|
2117
|
-
"
|
|
2118
|
-
"
|
|
2246
|
+
"default": "''",
|
|
2247
|
+
"description": "The main heading text of the accordion",
|
|
2248
|
+
"attribute": "heading"
|
|
2119
2249
|
},
|
|
2120
2250
|
{
|
|
2121
2251
|
"kind": "field",
|
|
2122
|
-
"name": "
|
|
2252
|
+
"name": "container",
|
|
2123
2253
|
"type": {
|
|
2124
|
-
"text": "
|
|
2125
|
-
}
|
|
2126
|
-
"default": "[]",
|
|
2127
|
-
"description": "(ScwCard) An array of tag labels",
|
|
2128
|
-
"attribute": "tag-name"
|
|
2254
|
+
"text": "HTMLElement"
|
|
2255
|
+
}
|
|
2129
2256
|
},
|
|
2130
2257
|
{
|
|
2131
2258
|
"kind": "field",
|
|
2132
|
-
"name": "
|
|
2259
|
+
"name": "containerHeight",
|
|
2133
2260
|
"type": {
|
|
2134
|
-
"text": "
|
|
2135
|
-
}
|
|
2136
|
-
"description": "(ScwCard) An array of tag urls",
|
|
2137
|
-
"attribute": "tag-url"
|
|
2261
|
+
"text": "String"
|
|
2262
|
+
}
|
|
2138
2263
|
},
|
|
2139
2264
|
{
|
|
2140
|
-
"kind": "
|
|
2141
|
-
"name": "
|
|
2142
|
-
"
|
|
2143
|
-
"text": "boolean"
|
|
2144
|
-
},
|
|
2145
|
-
"default": "false",
|
|
2146
|
-
"description": "(ScwCard) If the card should be the link, hides CTA buttons",
|
|
2147
|
-
"attribute": "link-card"
|
|
2265
|
+
"kind": "method",
|
|
2266
|
+
"name": "toggleOpen",
|
|
2267
|
+
"description": "toggleOpen"
|
|
2148
2268
|
},
|
|
2149
2269
|
{
|
|
2150
|
-
"kind": "
|
|
2151
|
-
"name": "
|
|
2152
|
-
"
|
|
2153
|
-
|
|
2154
|
-
},
|
|
2155
|
-
"default": "false",
|
|
2156
|
-
"description": "(ScwCard) If the body should be removed",
|
|
2157
|
-
"attribute": "hide-body"
|
|
2270
|
+
"kind": "method",
|
|
2271
|
+
"name": "updateScrollHeight",
|
|
2272
|
+
"privacy": "private",
|
|
2273
|
+
"description": "updateScrollHeight"
|
|
2158
2274
|
},
|
|
2159
2275
|
{
|
|
2160
2276
|
"kind": "method",
|
|
2161
|
-
"name": "
|
|
2162
|
-
"
|
|
2163
|
-
"type": {
|
|
2164
|
-
"text": "object"
|
|
2165
|
-
}
|
|
2166
|
-
},
|
|
2277
|
+
"name": "handleKeypress",
|
|
2278
|
+
"privacy": "private",
|
|
2167
2279
|
"parameters": [
|
|
2168
2280
|
{
|
|
2169
|
-
"name": "
|
|
2170
|
-
"type": {
|
|
2171
|
-
"text": "string"
|
|
2172
|
-
}
|
|
2173
|
-
},
|
|
2174
|
-
{
|
|
2175
|
-
"name": "link",
|
|
2176
|
-
"type": {
|
|
2177
|
-
"text": "string"
|
|
2178
|
-
}
|
|
2179
|
-
},
|
|
2180
|
-
{
|
|
2181
|
-
"name": "design",
|
|
2182
|
-
"default": "'solid'",
|
|
2281
|
+
"name": "e",
|
|
2183
2282
|
"type": {
|
|
2184
|
-
"text": "
|
|
2185
|
-
}
|
|
2283
|
+
"text": "event"
|
|
2284
|
+
},
|
|
2285
|
+
"description": "The slide index you want to scroll to"
|
|
2186
2286
|
}
|
|
2187
2287
|
],
|
|
2188
|
-
"description": "
|
|
2189
|
-
},
|
|
2190
|
-
{
|
|
2191
|
-
"kind": "method",
|
|
2192
|
-
"name": "renderTags",
|
|
2193
|
-
"return": {
|
|
2194
|
-
"type": {
|
|
2195
|
-
"text": "object"
|
|
2196
|
-
}
|
|
2197
|
-
},
|
|
2198
|
-
"description": "render tag"
|
|
2288
|
+
"description": "handleKeypress"
|
|
2199
2289
|
},
|
|
2200
2290
|
{
|
|
2201
2291
|
"kind": "field",
|
|
@@ -2332,112 +2422,22 @@
|
|
|
2332
2422
|
],
|
|
2333
2423
|
"attributes": [
|
|
2334
2424
|
{
|
|
2335
|
-
"name": "
|
|
2336
|
-
"type": {
|
|
2337
|
-
"text": "string | undefined"
|
|
2338
|
-
},
|
|
2339
|
-
"description": "(ScwCard) Main title or header of the card",
|
|
2340
|
-
"fieldName": "heading"
|
|
2341
|
-
},
|
|
2342
|
-
{
|
|
2343
|
-
"name": "date",
|
|
2344
|
-
"type": {
|
|
2345
|
-
"text": "string | undefined"
|
|
2346
|
-
},
|
|
2347
|
-
"description": "(ScwCard) Date field for articles",
|
|
2348
|
-
"fieldName": "date"
|
|
2349
|
-
},
|
|
2350
|
-
{
|
|
2351
|
-
"name": "show-border",
|
|
2352
|
-
"type": {
|
|
2353
|
-
"text": "boolean | undefined"
|
|
2354
|
-
},
|
|
2355
|
-
"description": "(ScwCard) If card should have border",
|
|
2356
|
-
"fieldName": "border"
|
|
2357
|
-
},
|
|
2358
|
-
{
|
|
2359
|
-
"name": "align",
|
|
2360
|
-
"type": {
|
|
2361
|
-
"text": "string"
|
|
2362
|
-
},
|
|
2363
|
-
"default": "'vertical'",
|
|
2364
|
-
"description": "(ScwCard) Alignment of the card",
|
|
2365
|
-
"fieldName": "align"
|
|
2366
|
-
},
|
|
2367
|
-
{
|
|
2368
|
-
"name": "super-heading",
|
|
2369
|
-
"type": {
|
|
2370
|
-
"text": "string | undefined"
|
|
2371
|
-
},
|
|
2372
|
-
"description": "(ScwCard) Super heading, describing a category or area pertaining to\ntitle",
|
|
2373
|
-
"fieldName": "superHeading"
|
|
2374
|
-
},
|
|
2375
|
-
{
|
|
2376
|
-
"name": "primary-cta-link",
|
|
2377
|
-
"type": {
|
|
2378
|
-
"text": "string | undefined"
|
|
2379
|
-
},
|
|
2380
|
-
"description": "(ScwCard) The link for the primary button",
|
|
2381
|
-
"fieldName": "primaryLink"
|
|
2382
|
-
},
|
|
2383
|
-
{
|
|
2384
|
-
"name": "primary-cta-label",
|
|
2385
|
-
"type": {
|
|
2386
|
-
"text": "string | undefined"
|
|
2387
|
-
},
|
|
2388
|
-
"description": "(ScwCard) The label for the primary button",
|
|
2389
|
-
"fieldName": "primaryLabel"
|
|
2390
|
-
},
|
|
2391
|
-
{
|
|
2392
|
-
"name": "secondary-cta-link",
|
|
2393
|
-
"type": {
|
|
2394
|
-
"text": "string | undefined"
|
|
2395
|
-
},
|
|
2396
|
-
"description": "(ScwCard) The link for the secondary button",
|
|
2397
|
-
"fieldName": "secondaryLink"
|
|
2398
|
-
},
|
|
2399
|
-
{
|
|
2400
|
-
"name": "secondary-cta-label",
|
|
2401
|
-
"type": {
|
|
2402
|
-
"text": "string | undefined"
|
|
2403
|
-
},
|
|
2404
|
-
"description": "(ScwCard) The label for the secondary button",
|
|
2405
|
-
"fieldName": "secondaryLabel"
|
|
2406
|
-
},
|
|
2407
|
-
{
|
|
2408
|
-
"name": "tag-name",
|
|
2409
|
-
"type": {
|
|
2410
|
-
"text": "string[]"
|
|
2411
|
-
},
|
|
2412
|
-
"default": "[]",
|
|
2413
|
-
"description": "(ScwCard) An array of tag labels",
|
|
2414
|
-
"fieldName": "tags"
|
|
2415
|
-
},
|
|
2416
|
-
{
|
|
2417
|
-
"name": "tag-url",
|
|
2418
|
-
"type": {
|
|
2419
|
-
"text": "string[] | undefined"
|
|
2420
|
-
},
|
|
2421
|
-
"description": "(ScwCard) An array of tag urls",
|
|
2422
|
-
"fieldName": "tagUrl"
|
|
2423
|
-
},
|
|
2424
|
-
{
|
|
2425
|
-
"name": "link-card",
|
|
2425
|
+
"name": "open",
|
|
2426
2426
|
"type": {
|
|
2427
2427
|
"text": "boolean"
|
|
2428
2428
|
},
|
|
2429
2429
|
"default": "false",
|
|
2430
|
-
"description": "
|
|
2431
|
-
"fieldName": "
|
|
2430
|
+
"description": "Shows if the accordion is open",
|
|
2431
|
+
"fieldName": "open"
|
|
2432
2432
|
},
|
|
2433
2433
|
{
|
|
2434
|
-
"name": "
|
|
2434
|
+
"name": "heading",
|
|
2435
2435
|
"type": {
|
|
2436
|
-
"text": "
|
|
2436
|
+
"text": "string"
|
|
2437
2437
|
},
|
|
2438
|
-
"default": "
|
|
2439
|
-
"description": "
|
|
2440
|
-
"fieldName": "
|
|
2438
|
+
"default": "''",
|
|
2439
|
+
"description": "The main heading text of the accordion",
|
|
2440
|
+
"fieldName": "heading"
|
|
2441
2441
|
},
|
|
2442
2442
|
{
|
|
2443
2443
|
"name": "aria-label",
|
|
@@ -2506,9 +2506,9 @@
|
|
|
2506
2506
|
],
|
|
2507
2507
|
"superclass": {
|
|
2508
2508
|
"name": "ScwComponent",
|
|
2509
|
-
"
|
|
2509
|
+
"package": "scw-component/ScwComponent"
|
|
2510
2510
|
},
|
|
2511
|
-
"tagName": "scw-
|
|
2511
|
+
"tagName": "scw-accordion",
|
|
2512
2512
|
"customElement": true
|
|
2513
2513
|
}
|
|
2514
2514
|
],
|
|
@@ -2517,23 +2517,23 @@
|
|
|
2517
2517
|
"kind": "js",
|
|
2518
2518
|
"name": "default",
|
|
2519
2519
|
"declaration": {
|
|
2520
|
-
"name": "
|
|
2521
|
-
"module": "src/scw-
|
|
2520
|
+
"name": "ScwAccordion",
|
|
2521
|
+
"module": "src/scw-accordion/ScwAccordion.ts"
|
|
2522
2522
|
}
|
|
2523
2523
|
}
|
|
2524
2524
|
]
|
|
2525
2525
|
},
|
|
2526
2526
|
{
|
|
2527
2527
|
"kind": "javascript-module",
|
|
2528
|
-
"path": "src/scw-
|
|
2528
|
+
"path": "src/scw-accordion/scw-accordion.ts",
|
|
2529
2529
|
"declarations": [],
|
|
2530
2530
|
"exports": [
|
|
2531
2531
|
{
|
|
2532
2532
|
"kind": "custom-element-definition",
|
|
2533
|
-
"name": "scw-
|
|
2533
|
+
"name": "scw-accordion",
|
|
2534
2534
|
"declaration": {
|
|
2535
|
-
"name": "
|
|
2536
|
-
"module": "/src/scw-
|
|
2535
|
+
"name": "ScwAccordion",
|
|
2536
|
+
"module": "/src/scw-accordion/ScwAccordion"
|
|
2537
2537
|
}
|
|
2538
2538
|
}
|
|
2539
2539
|
]
|
|
@@ -11448,6 +11448,14 @@
|
|
|
11448
11448
|
},
|
|
11449
11449
|
"default": "true"
|
|
11450
11450
|
},
|
|
11451
|
+
{
|
|
11452
|
+
"kind": "field",
|
|
11453
|
+
"name": "showClear",
|
|
11454
|
+
"type": {
|
|
11455
|
+
"text": "boolean"
|
|
11456
|
+
},
|
|
11457
|
+
"default": "false"
|
|
11458
|
+
},
|
|
11451
11459
|
{
|
|
11452
11460
|
"kind": "field",
|
|
11453
11461
|
"name": "boundOutsideClickHandler",
|