scu-web-components 0.0.114 → 0.0.116

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.
Files changed (36) hide show
  1. package/dist/custom-elements.json +619 -587
  2. package/dist/custom-elements.json.gz +0 -0
  3. package/dist/docs/components/ScwButton.json +2 -2
  4. package/dist/docs/components/ScwInput.json +24 -16
  5. package/dist/docs/components/ScwLink.json +3 -3
  6. package/dist/docs/components/ScwRateTable.json +25 -1
  7. package/dist/docs/components/manifest.json +48 -48
  8. package/dist/docs/config.json +5 -5
  9. package/dist/scw-components.js +74 -48
  10. package/dist/scw-components.js.gz +0 -0
  11. package/dist/scw.js +72 -46
  12. package/dist/scw.js.gz +0 -0
  13. package/dist/tokens/source/assets/graphic-apple-app-store.js +1 -1
  14. package/dist/tokens/source/assets/graphic-apple-app-store.js.gz +0 -0
  15. package/dist/tokens/source/assets/graphic-apple-app-store.svg +1 -1
  16. package/dist/tokens/source/assets/graphic-apple-app-store.svg.gz +0 -0
  17. package/dist/tokens/source/assets/graphic-ehl.js +1 -1
  18. package/dist/tokens/source/assets/graphic-ehl.js.gz +0 -0
  19. package/dist/tokens/source/assets/graphic-ehl.svg +1 -1
  20. package/dist/tokens/source/assets/graphic-ehl.svg.gz +0 -0
  21. package/dist/tokens/source/assets/graphic-google-play-store.js +1 -1
  22. package/dist/tokens/source/assets/graphic-google-play-store.js.gz +0 -0
  23. package/dist/tokens/source/assets/graphic-google-play-store.svg +1 -1
  24. package/dist/tokens/source/assets/graphic-google-play-store.svg.gz +0 -0
  25. package/dist/tokens/source/jsCss.js +1 -1
  26. package/dist/tokens/source/jsCss.js.gz +0 -0
  27. package/dist/tokens/source/jsCssGenerator.js +1 -1
  28. package/dist/tokens/source/jsCssGenerator.js.gz +0 -0
  29. package/dist/tokens/source/jsCssGeneratorSansAssets.js +1 -1
  30. package/dist/tokens/source/jsCssGeneratorSansAssets.js.gz +0 -0
  31. package/dist/tokens/source/tokens.json +3 -3
  32. package/dist/tokens/source/tokens.json.gz +0 -0
  33. package/dist-node/scw-components.js +186 -160
  34. package/dist-node/scw.js +192 -166
  35. package/package.json +1 -1
  36. package/scripts/publish/releaseNotes.mjs +12 -0
@@ -325,100 +325,125 @@
325
325
  },
326
326
  {
327
327
  "kind": "javascript-module",
328
- "path": "src/scw-alert/ScwAlert.ts",
328
+ "path": "src/scw-block/ScwBlock.ts",
329
329
  "declarations": [
330
330
  {
331
331
  "kind": "class",
332
- "description": "ScwAlert a first LitElement web component",
333
- "name": "ScwAlert",
332
+ "description": "ScwBlock",
333
+ "name": "ScwBlock",
334
334
  "members": [
335
335
  {
336
336
  "kind": "field",
337
- "name": "type",
337
+ "name": "headingLevel",
338
338
  "type": {
339
- "text": "'success' | 'info' | 'warning' | 'caution' | 'neutral'"
339
+ "text": "string"
340
340
  },
341
- "default": "'success'",
342
- "description": "(ScwAlert) Alert type",
343
- "attribute": "type",
341
+ "default": "'h2'",
342
+ "attribute": "heading-level"
343
+ },
344
+ {
345
+ "kind": "field",
346
+ "name": "heading",
347
+ "type": {
348
+ "text": "string | undefined"
349
+ },
350
+ "attribute": "heading",
344
351
  "reflects": true
345
352
  },
346
353
  {
347
354
  "kind": "field",
348
- "name": "full",
355
+ "name": "align",
349
356
  "type": {
350
- "text": "boolean"
357
+ "text": "string | undefined"
351
358
  },
352
- "default": "false",
353
- "description": "(ScwAlert) Full style alert",
354
- "attribute": "full",
359
+ "attribute": "alignment",
355
360
  "reflects": true
356
361
  },
357
362
  {
358
363
  "kind": "field",
359
- "name": "clear",
364
+ "name": "primaryLink",
360
365
  "type": {
361
- "text": "boolean"
366
+ "text": "string | undefined"
362
367
  },
363
- "default": "false",
364
- "description": "(ScwAlert) Clear style alert",
365
- "attribute": "clear",
368
+ "attribute": "primary-cta-link",
366
369
  "reflects": true
367
370
  },
368
371
  {
369
372
  "kind": "field",
370
- "name": "customIcon",
373
+ "name": "primaryLabel",
371
374
  "type": {
372
- "text": "string"
375
+ "text": "string | undefined"
373
376
  },
374
- "default": "''",
375
- "description": "(ScwAlert) Custom icon",
376
- "attribute": "custom-icon"
377
+ "attribute": "primary-cta-label",
378
+ "reflects": true
377
379
  },
378
380
  {
379
381
  "kind": "field",
380
- "name": "noIcon",
382
+ "name": "secondaryLink",
381
383
  "type": {
382
- "text": "boolean"
384
+ "text": "string | undefined"
383
385
  },
384
- "default": "false",
385
- "description": "(ScwAlert) If the alert should hide the left icon",
386
- "attribute": "no-icon",
386
+ "attribute": "secondary-cta-link",
387
387
  "reflects": true
388
388
  },
389
389
  {
390
390
  "kind": "field",
391
- "name": "showClose",
391
+ "name": "secondaryLabel",
392
392
  "type": {
393
- "text": "boolean"
393
+ "text": "string | undefined"
394
394
  },
395
- "default": "false",
396
- "description": "(ScwAlert) If the alert should show a Close button",
397
- "attribute": "show-close",
395
+ "attribute": "secondary-cta-label",
398
396
  "reflects": true
399
397
  },
400
398
  {
401
399
  "kind": "field",
402
- "name": "containerHeight",
400
+ "name": "superHeading",
403
401
  "type": {
404
- "text": "String"
402
+ "text": "string | undefined"
405
403
  },
406
- "default": "'100%'"
404
+ "attribute": "super-heading",
405
+ "reflects": true
407
406
  },
408
407
  {
409
408
  "kind": "method",
410
- "name": "close",
411
- "description": "close"
409
+ "name": "renderLink",
410
+ "return": {
411
+ "type": {
412
+ "text": "object"
413
+ }
414
+ },
415
+ "parameters": [
416
+ {
417
+ "name": "label",
418
+ "type": {
419
+ "text": "string"
420
+ }
421
+ },
422
+ {
423
+ "name": "link",
424
+ "type": {
425
+ "text": "string"
426
+ }
427
+ },
428
+ {
429
+ "name": "design",
430
+ "default": "'solid'",
431
+ "type": {
432
+ "text": "string"
433
+ }
434
+ }
435
+ ],
436
+ "description": "renderLink"
412
437
  },
413
438
  {
414
439
  "kind": "method",
415
- "name": "renderIcon",
416
- "description": "renderIcon",
440
+ "name": "renderHeading",
417
441
  "return": {
418
442
  "type": {
419
- "text": "string"
443
+ "text": "object"
420
444
  }
421
- }
445
+ },
446
+ "description": "renderHeading"
422
447
  },
423
448
  {
424
449
  "kind": "field",
@@ -555,58 +580,61 @@
555
580
  ],
556
581
  "attributes": [
557
582
  {
558
- "name": "type",
583
+ "name": "heading-level",
559
584
  "type": {
560
- "text": "'success' | 'info' | 'warning' | 'caution' | 'neutral'"
585
+ "text": "string"
561
586
  },
562
- "default": "'success'",
563
- "description": "(ScwAlert) Alert type",
564
- "fieldName": "type"
587
+ "default": "'h2'",
588
+ "fieldName": "headingLevel"
565
589
  },
566
590
  {
567
- "name": "full",
591
+ "name": "heading",
568
592
  "type": {
569
- "text": "boolean"
593
+ "text": "string | undefined"
570
594
  },
571
- "default": "false",
572
- "description": "(ScwAlert) Full style alert",
573
- "fieldName": "full"
595
+ "fieldName": "heading"
574
596
  },
575
597
  {
576
- "name": "clear",
598
+ "name": "alignment",
577
599
  "type": {
578
- "text": "boolean"
600
+ "text": "string | undefined"
579
601
  },
580
- "default": "false",
581
- "description": "(ScwAlert) Clear style alert",
582
- "fieldName": "clear"
602
+ "fieldName": "align"
583
603
  },
584
604
  {
585
- "name": "custom-icon",
605
+ "name": "primary-cta-link",
586
606
  "type": {
587
- "text": "string"
607
+ "text": "string | undefined"
588
608
  },
589
- "default": "''",
590
- "description": "(ScwAlert) Custom icon",
591
- "fieldName": "customIcon"
609
+ "fieldName": "primaryLink"
592
610
  },
593
611
  {
594
- "name": "no-icon",
612
+ "name": "primary-cta-label",
595
613
  "type": {
596
- "text": "boolean"
614
+ "text": "string | undefined"
597
615
  },
598
- "default": "false",
599
- "description": "(ScwAlert) If the alert should hide the left icon",
600
- "fieldName": "noIcon"
616
+ "fieldName": "primaryLabel"
601
617
  },
602
618
  {
603
- "name": "show-close",
619
+ "name": "secondary-cta-link",
604
620
  "type": {
605
- "text": "boolean"
621
+ "text": "string | undefined"
606
622
  },
607
- "default": "false",
608
- "description": "(ScwAlert) If the alert should show a Close button",
609
- "fieldName": "showClose"
623
+ "fieldName": "secondaryLink"
624
+ },
625
+ {
626
+ "name": "secondary-cta-label",
627
+ "type": {
628
+ "text": "string | undefined"
629
+ },
630
+ "fieldName": "secondaryLabel"
631
+ },
632
+ {
633
+ "name": "super-heading",
634
+ "type": {
635
+ "text": "string | undefined"
636
+ },
637
+ "fieldName": "superHeading"
610
638
  },
611
639
  {
612
640
  "name": "aria-label",
@@ -677,7 +705,7 @@
677
705
  "name": "ScwComponent",
678
706
  "package": "scw-component/ScwComponent"
679
707
  },
680
- "tagName": "scw-alert",
708
+ "tagName": "scw-block",
681
709
  "customElement": true
682
710
  }
683
711
  ],
@@ -686,148 +714,123 @@
686
714
  "kind": "js",
687
715
  "name": "default",
688
716
  "declaration": {
689
- "name": "ScwAlert",
690
- "module": "src/scw-alert/ScwAlert.ts"
717
+ "name": "ScwBlock",
718
+ "module": "src/scw-block/ScwBlock.ts"
691
719
  }
692
720
  }
693
721
  ]
694
722
  },
695
723
  {
696
724
  "kind": "javascript-module",
697
- "path": "src/scw-alert/scw-alert.ts",
725
+ "path": "src/scw-block/scw-block.ts",
698
726
  "declarations": [],
699
727
  "exports": [
700
728
  {
701
729
  "kind": "custom-element-definition",
702
- "name": "scw-alert",
730
+ "name": "scw-block",
703
731
  "declaration": {
704
- "name": "ScwAlert",
705
- "module": "/src/scw-alert/ScwAlert.js"
732
+ "name": "ScwBlock",
733
+ "module": "/src/scw-block/ScwBlock"
706
734
  }
707
735
  }
708
736
  ]
709
737
  },
710
738
  {
711
739
  "kind": "javascript-module",
712
- "path": "src/scw-block/ScwBlock.ts",
740
+ "path": "src/scw-alert/ScwAlert.ts",
713
741
  "declarations": [
714
742
  {
715
743
  "kind": "class",
716
- "description": "ScwBlock",
717
- "name": "ScwBlock",
744
+ "description": "ScwAlert a first LitElement web component",
745
+ "name": "ScwAlert",
718
746
  "members": [
719
747
  {
720
748
  "kind": "field",
721
- "name": "headingLevel",
749
+ "name": "type",
722
750
  "type": {
723
- "text": "string"
751
+ "text": "'success' | 'info' | 'warning' | 'caution' | 'neutral'"
724
752
  },
725
- "default": "'h2'",
726
- "attribute": "heading-level"
753
+ "default": "'success'",
754
+ "description": "(ScwAlert) Alert type",
755
+ "attribute": "type",
756
+ "reflects": true
727
757
  },
728
758
  {
729
759
  "kind": "field",
730
- "name": "heading",
760
+ "name": "full",
731
761
  "type": {
732
- "text": "string | undefined"
762
+ "text": "boolean"
733
763
  },
734
- "attribute": "heading",
764
+ "default": "false",
765
+ "description": "(ScwAlert) Full style alert",
766
+ "attribute": "full",
735
767
  "reflects": true
736
768
  },
737
769
  {
738
770
  "kind": "field",
739
- "name": "align",
771
+ "name": "clear",
740
772
  "type": {
741
- "text": "string | undefined"
773
+ "text": "boolean"
742
774
  },
743
- "attribute": "alignment",
775
+ "default": "false",
776
+ "description": "(ScwAlert) Clear style alert",
777
+ "attribute": "clear",
744
778
  "reflects": true
745
779
  },
746
780
  {
747
781
  "kind": "field",
748
- "name": "primaryLink",
782
+ "name": "customIcon",
749
783
  "type": {
750
- "text": "string | undefined"
784
+ "text": "string"
751
785
  },
752
- "attribute": "primary-cta-link",
753
- "reflects": true
786
+ "default": "''",
787
+ "description": "(ScwAlert) Custom icon",
788
+ "attribute": "custom-icon"
754
789
  },
755
790
  {
756
791
  "kind": "field",
757
- "name": "primaryLabel",
792
+ "name": "noIcon",
758
793
  "type": {
759
- "text": "string | undefined"
794
+ "text": "boolean"
760
795
  },
761
- "attribute": "primary-cta-label",
796
+ "default": "false",
797
+ "description": "(ScwAlert) If the alert should hide the left icon",
798
+ "attribute": "no-icon",
762
799
  "reflects": true
763
800
  },
764
801
  {
765
802
  "kind": "field",
766
- "name": "secondaryLink",
803
+ "name": "showClose",
767
804
  "type": {
768
- "text": "string | undefined"
805
+ "text": "boolean"
769
806
  },
770
- "attribute": "secondary-cta-link",
807
+ "default": "false",
808
+ "description": "(ScwAlert) If the alert should show a Close button",
809
+ "attribute": "show-close",
771
810
  "reflects": true
772
811
  },
773
812
  {
774
813
  "kind": "field",
775
- "name": "secondaryLabel",
814
+ "name": "containerHeight",
776
815
  "type": {
777
- "text": "string | undefined"
816
+ "text": "String"
778
817
  },
779
- "attribute": "secondary-cta-label",
780
- "reflects": true
781
- },
782
- {
783
- "kind": "field",
784
- "name": "superHeading",
785
- "type": {
786
- "text": "string | undefined"
787
- },
788
- "attribute": "super-heading",
789
- "reflects": true
818
+ "default": "'100%'"
790
819
  },
791
820
  {
792
821
  "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"
822
+ "name": "close",
823
+ "description": "close"
821
824
  },
822
825
  {
823
826
  "kind": "method",
824
- "name": "renderHeading",
827
+ "name": "renderIcon",
828
+ "description": "renderIcon",
825
829
  "return": {
826
830
  "type": {
827
- "text": "object"
831
+ "text": "string"
828
832
  }
829
- },
830
- "description": "renderHeading"
833
+ }
831
834
  },
832
835
  {
833
836
  "kind": "field",
@@ -964,61 +967,58 @@
964
967
  ],
965
968
  "attributes": [
966
969
  {
967
- "name": "heading-level",
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",
970
+ "name": "type",
983
971
  "type": {
984
- "text": "string | undefined"
972
+ "text": "'success' | 'info' | 'warning' | 'caution' | 'neutral'"
985
973
  },
986
- "fieldName": "align"
974
+ "default": "'success'",
975
+ "description": "(ScwAlert) Alert type",
976
+ "fieldName": "type"
987
977
  },
988
978
  {
989
- "name": "primary-cta-link",
979
+ "name": "full",
990
980
  "type": {
991
- "text": "string | undefined"
981
+ "text": "boolean"
992
982
  },
993
- "fieldName": "primaryLink"
983
+ "default": "false",
984
+ "description": "(ScwAlert) Full style alert",
985
+ "fieldName": "full"
994
986
  },
995
987
  {
996
- "name": "primary-cta-label",
988
+ "name": "clear",
997
989
  "type": {
998
- "text": "string | undefined"
990
+ "text": "boolean"
999
991
  },
1000
- "fieldName": "primaryLabel"
992
+ "default": "false",
993
+ "description": "(ScwAlert) Clear style alert",
994
+ "fieldName": "clear"
1001
995
  },
1002
996
  {
1003
- "name": "secondary-cta-link",
997
+ "name": "custom-icon",
1004
998
  "type": {
1005
- "text": "string | undefined"
999
+ "text": "string"
1006
1000
  },
1007
- "fieldName": "secondaryLink"
1001
+ "default": "''",
1002
+ "description": "(ScwAlert) Custom icon",
1003
+ "fieldName": "customIcon"
1008
1004
  },
1009
1005
  {
1010
- "name": "secondary-cta-label",
1006
+ "name": "no-icon",
1011
1007
  "type": {
1012
- "text": "string | undefined"
1008
+ "text": "boolean"
1013
1009
  },
1014
- "fieldName": "secondaryLabel"
1010
+ "default": "false",
1011
+ "description": "(ScwAlert) If the alert should hide the left icon",
1012
+ "fieldName": "noIcon"
1015
1013
  },
1016
1014
  {
1017
- "name": "super-heading",
1015
+ "name": "show-close",
1018
1016
  "type": {
1019
- "text": "string | undefined"
1017
+ "text": "boolean"
1020
1018
  },
1021
- "fieldName": "superHeading"
1019
+ "default": "false",
1020
+ "description": "(ScwAlert) If the alert should show a Close button",
1021
+ "fieldName": "showClose"
1022
1022
  },
1023
1023
  {
1024
1024
  "name": "aria-label",
@@ -1089,7 +1089,7 @@
1089
1089
  "name": "ScwComponent",
1090
1090
  "package": "scw-component/ScwComponent"
1091
1091
  },
1092
- "tagName": "scw-block",
1092
+ "tagName": "scw-alert",
1093
1093
  "customElement": true
1094
1094
  }
1095
1095
  ],
@@ -1098,58 +1098,127 @@
1098
1098
  "kind": "js",
1099
1099
  "name": "default",
1100
1100
  "declaration": {
1101
- "name": "ScwBlock",
1102
- "module": "src/scw-block/ScwBlock.ts"
1101
+ "name": "ScwAlert",
1102
+ "module": "src/scw-alert/ScwAlert.ts"
1103
1103
  }
1104
1104
  }
1105
1105
  ]
1106
1106
  },
1107
1107
  {
1108
1108
  "kind": "javascript-module",
1109
- "path": "src/scw-block/scw-block.ts",
1109
+ "path": "src/scw-alert/scw-alert.ts",
1110
1110
  "declarations": [],
1111
1111
  "exports": [
1112
1112
  {
1113
1113
  "kind": "custom-element-definition",
1114
- "name": "scw-block",
1114
+ "name": "scw-alert",
1115
1115
  "declaration": {
1116
- "name": "ScwBlock",
1117
- "module": "/src/scw-block/ScwBlock"
1116
+ "name": "ScwAlert",
1117
+ "module": "/src/scw-alert/ScwAlert.js"
1118
1118
  }
1119
1119
  }
1120
1120
  ]
1121
1121
  },
1122
1122
  {
1123
1123
  "kind": "javascript-module",
1124
- "path": "src/scw-button/ScwButton.ts",
1124
+ "path": "src/scw-callout/ScwCallout.ts",
1125
1125
  "declarations": [
1126
1126
  {
1127
1127
  "kind": "class",
1128
- "description": "ScwButton",
1129
- "name": "ScwButton",
1130
- "slots": [
1128
+ "description": "ScwBlock",
1129
+ "name": "ScwCallout",
1130
+ "members": [
1131
1131
  {
1132
- "description": "(OPTIONAL) anchor (for SEO) will determine the label, href, and target.",
1133
- "name": "default",
1134
- "default": "\"<a href target />\""
1132
+ "kind": "field",
1133
+ "name": "heading",
1134
+ "type": {
1135
+ "text": "string | undefined"
1136
+ },
1137
+ "description": "(ScwCallout) The heading",
1138
+ "attribute": "heading",
1139
+ "reflects": true
1135
1140
  },
1136
1141
  {
1137
- "description": "(OPTIONAL) random content (paired with design=\"plain\") will wrap that content with a link.",
1138
- "name": "default",
1139
- "default": "\"<... />\""
1140
- }
1141
- ],
1142
- "members": [
1142
+ "kind": "field",
1143
+ "name": "align",
1144
+ "type": {
1145
+ "text": "string | undefined"
1146
+ },
1147
+ "description": "(ScwCallout) Alignment of the callout",
1148
+ "attribute": "alignment",
1149
+ "reflects": true
1150
+ },
1143
1151
  {
1144
1152
  "kind": "field",
1145
- "name": "submitType",
1153
+ "name": "primaryLink",
1146
1154
  "type": {
1147
- "text": "ScwFormComponentSubmitTypes"
1155
+ "text": "string | undefined"
1148
1156
  },
1149
- "description": "<ScwFormComponent> the usage in a form (& scw-form a query target)",
1150
- "attribute": "submit-type",
1157
+ "description": "(ScwCallout) Primary link href",
1158
+ "attribute": "primary-cta-link",
1151
1159
  "reflects": true
1152
1160
  },
1161
+ {
1162
+ "kind": "field",
1163
+ "name": "primaryLabel",
1164
+ "type": {
1165
+ "text": "string | undefined"
1166
+ },
1167
+ "description": "(ScwCallout) Primary link label",
1168
+ "attribute": "primary-cta-label",
1169
+ "reflects": true
1170
+ },
1171
+ {
1172
+ "kind": "field",
1173
+ "name": "secondaryLink",
1174
+ "type": {
1175
+ "text": "string | undefined"
1176
+ },
1177
+ "description": "(ScwCallout) Secondary link href",
1178
+ "attribute": "secondary-cta-link",
1179
+ "reflects": true
1180
+ },
1181
+ {
1182
+ "kind": "field",
1183
+ "name": "secondaryLabel",
1184
+ "type": {
1185
+ "text": "string | undefined"
1186
+ },
1187
+ "description": "(ScwCallout) Secondary link label",
1188
+ "attribute": "secondary-cta-label",
1189
+ "reflects": true
1190
+ },
1191
+ {
1192
+ "kind": "method",
1193
+ "name": "renderLink",
1194
+ "return": {
1195
+ "type": {
1196
+ "text": "object"
1197
+ }
1198
+ },
1199
+ "parameters": [
1200
+ {
1201
+ "name": "label",
1202
+ "type": {
1203
+ "text": "string"
1204
+ }
1205
+ },
1206
+ {
1207
+ "name": "link",
1208
+ "type": {
1209
+ "text": "string"
1210
+ }
1211
+ },
1212
+ {
1213
+ "name": "design",
1214
+ "default": "'solid'",
1215
+ "type": {
1216
+ "text": "string"
1217
+ }
1218
+ }
1219
+ ],
1220
+ "description": "renderLink"
1221
+ },
1153
1222
  {
1154
1223
  "kind": "field",
1155
1224
  "name": "element",
@@ -1166,191 +1235,40 @@
1166
1235
  },
1167
1236
  {
1168
1237
  "kind": "field",
1169
- "name": "href",
1238
+ "name": "ariaLabel",
1170
1239
  "type": {
1171
1240
  "text": "string"
1172
1241
  },
1173
- "default": "'javascript:'",
1174
- "description": "(ScwLink) Link url",
1175
- "attribute": "href",
1242
+ "default": "''",
1243
+ "description": "(ScwComponent) Main text within component",
1244
+ "attribute": "aria-label",
1245
+ "reflects": true,
1176
1246
  "inheritedFrom": {
1177
- "name": "ScwLink",
1178
- "module": "src/scw-link/ScwLink.ts"
1247
+ "name": "ScwComponent",
1248
+ "module": "src/scw-component/ScwComponent.ts"
1179
1249
  }
1180
1250
  },
1181
1251
  {
1182
1252
  "kind": "field",
1183
- "name": "icon",
1253
+ "name": "ariaDisabled",
1184
1254
  "type": {
1185
1255
  "text": "string"
1186
1256
  },
1187
- "default": "''",
1188
- "description": "(ScwLink) Design system icon",
1189
- "attribute": "icon",
1257
+ "default": "'false'",
1258
+ "description": "(ScwComponent) Disables the component however it disables",
1259
+ "attribute": "aria-disabled",
1190
1260
  "inheritedFrom": {
1191
- "name": "ScwLink",
1192
- "module": "src/scw-link/ScwLink.ts"
1261
+ "name": "ScwComponent",
1262
+ "module": "src/scw-component/ScwComponent.ts"
1193
1263
  }
1194
1264
  },
1195
1265
  {
1196
1266
  "kind": "field",
1197
- "name": "iconSide",
1267
+ "name": "isLink",
1198
1268
  "type": {
1199
- "text": "string"
1269
+ "text": "boolean"
1200
1270
  },
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 | 'text'\n | 'plain'\n | 'block'\n | 'icon'\n | 'main'\n | 'solidIcon'"
1214
- },
1215
- "default": "'solid'",
1216
- "description": "(ScwLink) Link design",
1217
- "attribute": "design",
1218
- "inheritedFrom": {
1219
- "name": "ScwLink",
1220
- "module": "src/scw-link/ScwLink.ts"
1221
- }
1222
- },
1223
- {
1224
- "kind": "field",
1225
- "name": "target",
1226
- "type": {
1227
- "text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
1228
- },
1229
- "description": "(ScwLink) Link target",
1230
- "attribute": "target",
1231
- "inheritedFrom": {
1232
- "name": "ScwLink",
1233
- "module": "src/scw-link/ScwLink.ts"
1234
- }
1235
- },
1236
- {
1237
- "kind": "field",
1238
- "name": "ariaLabel",
1239
- "type": {
1240
- "text": "string"
1241
- },
1242
- "default": "''",
1243
- "description": "(ScwLink) Link label",
1244
- "attribute": "aria-label",
1245
- "reflects": true,
1246
- "inheritedFrom": {
1247
- "name": "ScwComponent",
1248
- "module": "src/scw-component/ScwComponent.ts"
1249
- }
1250
- },
1251
- {
1252
- "kind": "field",
1253
- "name": "size",
1254
- "type": {
1255
- "text": "'small' | 'medium' | 'large'"
1256
- },
1257
- "default": "'medium'",
1258
- "description": "(ScwLink) Link label",
1259
- "attribute": "size",
1260
- "inheritedFrom": {
1261
- "name": "ScwLink",
1262
- "module": "src/scw-link/ScwLink.ts"
1263
- }
1264
- },
1265
- {
1266
- "kind": "field",
1267
- "name": "ariaDisabled",
1268
- "type": {
1269
- "text": "string"
1270
- },
1271
- "default": "'false'",
1272
- "description": "(ScwLink) If the link is disabled",
1273
- "attribute": "aria-disabled",
1274
- "inheritedFrom": {
1275
- "name": "ScwComponent",
1276
- "module": "src/scw-component/ScwComponent.ts"
1277
- }
1278
- },
1279
- {
1280
- "kind": "field",
1281
- "name": "underline",
1282
- "type": {
1283
- "text": "string"
1284
- },
1285
- "default": "'true'",
1286
- "description": "(ScwLink) If a regular link should be underlined",
1287
- "attribute": "underline",
1288
- "inheritedFrom": {
1289
- "name": "ScwLink",
1290
- "module": "src/scw-link/ScwLink.ts"
1291
- }
1292
- },
1293
- {
1294
- "kind": "field",
1295
- "name": "linkAnchor",
1296
- "type": {
1297
- "text": "HTMLAnchorElement | undefined"
1298
- },
1299
- "inheritedFrom": {
1300
- "name": "ScwLink",
1301
- "module": "src/scw-link/ScwLink.ts"
1302
- }
1303
- },
1304
- {
1305
- "kind": "method",
1306
- "name": "focus",
1307
- "return": {
1308
- "type": {
1309
- "text": "void"
1310
- }
1311
- },
1312
- "description": "focus",
1313
- "inheritedFrom": {
1314
- "name": "ScwLink",
1315
- "module": "src/scw-link/ScwLink.ts"
1316
- }
1317
- },
1318
- {
1319
- "kind": "method",
1320
- "name": "renderIcon",
1321
- "privacy": "private",
1322
- "return": {
1323
- "type": {
1324
- "text": "object"
1325
- }
1326
- },
1327
- "description": "renderIcon",
1328
- "inheritedFrom": {
1329
- "name": "ScwLink",
1330
- "module": "src/scw-link/ScwLink.ts"
1331
- }
1332
- },
1333
- {
1334
- "kind": "method",
1335
- "name": "renderContent",
1336
- "return": {
1337
- "type": {
1338
- "text": "object"
1339
- }
1340
- },
1341
- "description": "renderContent",
1342
- "inheritedFrom": {
1343
- "name": "ScwLink",
1344
- "module": "src/scw-link/ScwLink.ts"
1345
- }
1346
- },
1347
- {
1348
- "kind": "field",
1349
- "name": "isLink",
1350
- "type": {
1351
- "text": "boolean"
1352
- },
1353
- "default": "true",
1271
+ "default": "false",
1354
1272
  "description": "(ScwLinkBase)\nSome lookups need to know if something is a link or not...",
1355
1273
  "attribute": "is-link",
1356
1274
  "reflects": true,
@@ -1436,76 +1354,52 @@
1436
1354
  ],
1437
1355
  "attributes": [
1438
1356
  {
1439
- "name": "submit-type",
1357
+ "name": "heading",
1440
1358
  "type": {
1441
- "text": "ScwFormComponentSubmitTypes"
1359
+ "text": "string | undefined"
1442
1360
  },
1443
- "description": "<ScwFormComponent> the usage in a form (& scw-form a query target)",
1444
- "fieldName": "submitType"
1361
+ "description": "(ScwCallout) The heading",
1362
+ "fieldName": "heading"
1445
1363
  },
1446
1364
  {
1447
- "name": "icon",
1365
+ "name": "alignment",
1448
1366
  "type": {
1449
- "text": "string"
1367
+ "text": "string | undefined"
1450
1368
  },
1451
- "default": "''",
1452
- "description": "(ScwLink) Design system icon",
1453
- "fieldName": "icon",
1454
- "inheritedFrom": {
1455
- "name": "ScwLink",
1456
- "module": "src/scw-link/ScwLink.ts"
1457
- }
1369
+ "description": "(ScwCallout) Alignment of the callout",
1370
+ "fieldName": "align"
1458
1371
  },
1459
1372
  {
1460
- "name": "icon-side",
1373
+ "name": "primary-cta-link",
1461
1374
  "type": {
1462
- "text": "string"
1375
+ "text": "string | undefined"
1463
1376
  },
1464
- "default": "''",
1465
- "description": "(ScwLink) Side you want the icon displayed",
1466
- "fieldName": "iconSide",
1467
- "inheritedFrom": {
1468
- "name": "ScwLink",
1469
- "module": "src/scw-link/ScwLink.ts"
1470
- }
1377
+ "description": "(ScwCallout) Primary link href",
1378
+ "fieldName": "primaryLink"
1471
1379
  },
1472
1380
  {
1473
- "name": "design",
1381
+ "name": "primary-cta-label",
1474
1382
  "type": {
1475
- "text": "| 'solid'\n | 'outlined'\n | 'light'\n | 'text'\n | 'plain'\n | 'block'\n | 'icon'\n | 'main'\n | 'solidIcon'"
1383
+ "text": "string | undefined"
1476
1384
  },
1477
- "default": "'solid'",
1478
- "description": "(ScwLink) Link design",
1479
- "fieldName": "design",
1480
- "inheritedFrom": {
1481
- "name": "ScwLink",
1482
- "module": "src/scw-link/ScwLink.ts"
1483
- }
1385
+ "description": "(ScwCallout) Primary link label",
1386
+ "fieldName": "primaryLabel"
1484
1387
  },
1485
1388
  {
1486
- "name": "href",
1389
+ "name": "secondary-cta-link",
1487
1390
  "type": {
1488
- "text": "string"
1391
+ "text": "string | undefined"
1489
1392
  },
1490
- "default": "''",
1491
- "description": "(ScwLink) Link url",
1492
- "fieldName": "href",
1493
- "inheritedFrom": {
1494
- "name": "ScwLink",
1495
- "module": "src/scw-link/ScwLink.ts"
1496
- }
1393
+ "description": "(ScwCallout) Secondary link href",
1394
+ "fieldName": "secondaryLink"
1497
1395
  },
1498
1396
  {
1499
- "name": "target",
1397
+ "name": "secondary-cta-label",
1500
1398
  "type": {
1501
- "text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
1399
+ "text": "string | undefined"
1502
1400
  },
1503
- "description": "(ScwLink) Link target",
1504
- "fieldName": "target",
1505
- "inheritedFrom": {
1506
- "name": "ScwLink",
1507
- "module": "src/scw-link/ScwLink.ts"
1508
- }
1401
+ "description": "(ScwCallout) Secondary link label",
1402
+ "fieldName": "secondaryLabel"
1509
1403
  },
1510
1404
  {
1511
1405
  "name": "aria-label",
@@ -1513,52 +1407,26 @@
1513
1407
  "text": "string"
1514
1408
  },
1515
1409
  "default": "''",
1516
- "description": "(ScwLink) Link label",
1410
+ "description": "(ScwComponent) Main text within component",
1517
1411
  "fieldName": "ariaLabel",
1518
1412
  "inheritedFrom": {
1519
1413
  "name": "ScwComponent",
1520
1414
  "module": "src/scw-component/ScwComponent.ts"
1521
1415
  }
1522
1416
  },
1523
- {
1524
- "name": "size",
1525
- "type": {
1526
- "text": "'small' | 'medium' | 'large'"
1527
- },
1528
- "default": "'medium'",
1529
- "description": "(ScwLink) Link label",
1530
- "fieldName": "size",
1531
- "inheritedFrom": {
1532
- "name": "ScwLink",
1533
- "module": "src/scw-link/ScwLink.ts"
1534
- }
1535
- },
1536
1417
  {
1537
1418
  "name": "aria-disabled",
1538
1419
  "type": {
1539
1420
  "text": "string"
1540
1421
  },
1541
1422
  "default": "'false'",
1542
- "description": "(ScwLink) If the link is disabled",
1423
+ "description": "(ScwComponent) Disables the component however it disables",
1543
1424
  "fieldName": "ariaDisabled",
1544
1425
  "inheritedFrom": {
1545
1426
  "name": "ScwComponent",
1546
1427
  "module": "src/scw-component/ScwComponent.ts"
1547
1428
  }
1548
1429
  },
1549
- {
1550
- "name": "underline",
1551
- "type": {
1552
- "text": "string"
1553
- },
1554
- "default": "'true'",
1555
- "description": "(ScwLink) If a regular link should be underlined",
1556
- "fieldName": "underline",
1557
- "inheritedFrom": {
1558
- "name": "ScwLink",
1559
- "module": "src/scw-link/ScwLink.ts"
1560
- }
1561
- },
1562
1430
  {
1563
1431
  "name": "is-link",
1564
1432
  "type": {
@@ -1599,10 +1467,10 @@
1599
1467
  }
1600
1468
  ],
1601
1469
  "superclass": {
1602
- "name": "ScwLink",
1603
- "module": "/src/scw-link/ScwLink"
1470
+ "name": "ScwComponent",
1471
+ "package": "scw-component/ScwComponent"
1604
1472
  },
1605
- "tagName": "scw-button",
1473
+ "tagName": "scw-callout",
1606
1474
  "customElement": true
1607
1475
  }
1608
1476
  ],
@@ -1611,136 +1479,179 @@
1611
1479
  "kind": "js",
1612
1480
  "name": "default",
1613
1481
  "declaration": {
1614
- "name": "ScwButton",
1615
- "module": "src/scw-button/ScwButton.ts"
1482
+ "name": "ScwCallout",
1483
+ "module": "src/scw-callout/ScwCallout.ts"
1616
1484
  }
1617
1485
  }
1618
1486
  ]
1619
1487
  },
1620
1488
  {
1621
1489
  "kind": "javascript-module",
1622
- "path": "src/scw-button/scw-button.ts",
1490
+ "path": "src/scw-callout/scw-callout.ts",
1623
1491
  "declarations": [],
1624
1492
  "exports": [
1625
1493
  {
1626
1494
  "kind": "custom-element-definition",
1627
- "name": "scw-button",
1495
+ "name": "scw-callout",
1628
1496
  "declaration": {
1629
- "name": "ScwButton",
1630
- "module": "/src/scw-button/ScwButton.js"
1497
+ "name": "ScwCallout",
1498
+ "module": "/src/scw-callout/ScwCallout"
1631
1499
  }
1632
1500
  }
1633
1501
  ]
1634
1502
  },
1635
1503
  {
1636
1504
  "kind": "javascript-module",
1637
- "path": "src/scw-callout/ScwCallout.ts",
1505
+ "path": "src/scw-button/ScwButton.ts",
1638
1506
  "declarations": [
1639
1507
  {
1640
1508
  "kind": "class",
1641
- "description": "ScwBlock",
1642
- "name": "ScwCallout",
1509
+ "description": "ScwButton",
1510
+ "name": "ScwButton",
1511
+ "slots": [
1512
+ {
1513
+ "description": "(OPTIONAL) anchor (for SEO) will determine the label, href, and target.",
1514
+ "name": "default",
1515
+ "default": "\"<a href target />\""
1516
+ },
1517
+ {
1518
+ "description": "(OPTIONAL) random content (paired with design=\"plain\") will wrap that content with a link.",
1519
+ "name": "default",
1520
+ "default": "\"<... />\""
1521
+ }
1522
+ ],
1643
1523
  "members": [
1644
1524
  {
1645
1525
  "kind": "field",
1646
- "name": "heading",
1526
+ "name": "submitType",
1647
1527
  "type": {
1648
- "text": "string | undefined"
1528
+ "text": "ScwFormComponentSubmitTypes"
1649
1529
  },
1650
- "description": "(ScwCallout) The heading",
1651
- "attribute": "heading",
1530
+ "description": "<ScwFormComponent> the usage in a form (& scw-form a query target)",
1531
+ "attribute": "submit-type",
1652
1532
  "reflects": true
1653
1533
  },
1654
1534
  {
1655
1535
  "kind": "field",
1656
- "name": "align",
1536
+ "name": "element",
1657
1537
  "type": {
1658
- "text": "string | undefined"
1538
+ "text": "string"
1659
1539
  },
1660
- "description": "(ScwCallout) Alignment of the callout",
1661
- "attribute": "alignment",
1662
- "reflects": true
1540
+ "description": "(ScwComponent) contains the root element name for each component\n(enum Components)",
1541
+ "attribute": "element",
1542
+ "reflects": true,
1543
+ "inheritedFrom": {
1544
+ "name": "ScwComponent",
1545
+ "module": "src/scw-component/ScwComponent.ts"
1546
+ }
1663
1547
  },
1664
1548
  {
1665
1549
  "kind": "field",
1666
- "name": "primaryLink",
1550
+ "name": "href",
1667
1551
  "type": {
1668
- "text": "string | undefined"
1552
+ "text": "string"
1669
1553
  },
1670
- "description": "(ScwCallout) Primary link href",
1671
- "attribute": "primary-cta-link",
1672
- "reflects": true
1554
+ "default": "'javascript:'",
1555
+ "description": "(ScwLink) Link url",
1556
+ "attribute": "href",
1557
+ "inheritedFrom": {
1558
+ "name": "ScwLink",
1559
+ "module": "src/scw-link/ScwLink.ts"
1560
+ }
1673
1561
  },
1674
1562
  {
1675
1563
  "kind": "field",
1676
- "name": "primaryLabel",
1564
+ "name": "icon",
1677
1565
  "type": {
1678
- "text": "string | undefined"
1566
+ "text": "string"
1679
1567
  },
1680
- "description": "(ScwCallout) Primary link label",
1681
- "attribute": "primary-cta-label",
1682
- "reflects": true
1568
+ "default": "''",
1569
+ "description": "(ScwLink) Design system icon",
1570
+ "attribute": "icon",
1571
+ "inheritedFrom": {
1572
+ "name": "ScwLink",
1573
+ "module": "src/scw-link/ScwLink.ts"
1574
+ }
1683
1575
  },
1684
1576
  {
1685
1577
  "kind": "field",
1686
- "name": "secondaryLink",
1578
+ "name": "iconSide",
1687
1579
  "type": {
1688
- "text": "string | undefined"
1580
+ "text": "string"
1689
1581
  },
1690
- "description": "(ScwCallout) Secondary link href",
1691
- "attribute": "secondary-cta-link",
1692
- "reflects": true
1582
+ "default": "''",
1583
+ "description": "(ScwLink) Side you want the icon displayed",
1584
+ "attribute": "icon-side",
1585
+ "inheritedFrom": {
1586
+ "name": "ScwLink",
1587
+ "module": "src/scw-link/ScwLink.ts"
1588
+ }
1693
1589
  },
1694
1590
  {
1695
1591
  "kind": "field",
1696
- "name": "secondaryLabel",
1592
+ "name": "design",
1697
1593
  "type": {
1698
- "text": "string | undefined"
1594
+ "text": "| 'solid'\n | 'outlined'\n | 'light'\n | 'white'\n | 'text'\n | 'plain'\n | 'block'\n | 'icon'\n | 'main'\n | 'solidIcon'"
1699
1595
  },
1700
- "description": "(ScwCallout) Secondary link label",
1701
- "attribute": "secondary-cta-label",
1702
- "reflects": true
1596
+ "default": "'solid'",
1597
+ "description": "(ScwLink) Link design",
1598
+ "attribute": "design",
1599
+ "inheritedFrom": {
1600
+ "name": "ScwLink",
1601
+ "module": "src/scw-link/ScwLink.ts"
1602
+ }
1703
1603
  },
1704
1604
  {
1705
- "kind": "method",
1706
- "name": "renderLink",
1707
- "return": {
1708
- "type": {
1709
- "text": "object"
1710
- }
1605
+ "kind": "field",
1606
+ "name": "target",
1607
+ "type": {
1608
+ "text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
1711
1609
  },
1712
- "parameters": [
1713
- {
1714
- "name": "label",
1715
- "type": {
1716
- "text": "string"
1717
- }
1718
- },
1719
- {
1720
- "name": "link",
1721
- "type": {
1722
- "text": "string"
1723
- }
1724
- },
1725
- {
1726
- "name": "design",
1727
- "default": "'solid'",
1728
- "type": {
1729
- "text": "string"
1730
- }
1731
- }
1732
- ],
1733
- "description": "renderLink"
1610
+ "description": "(ScwLink) Link target",
1611
+ "attribute": "target",
1612
+ "inheritedFrom": {
1613
+ "name": "ScwLink",
1614
+ "module": "src/scw-link/ScwLink.ts"
1615
+ }
1616
+ },
1617
+ {
1618
+ "kind": "field",
1619
+ "name": "ariaLabel",
1620
+ "type": {
1621
+ "text": "string"
1622
+ },
1623
+ "default": "''",
1624
+ "description": "(ScwLink) Link label",
1625
+ "attribute": "aria-label",
1626
+ "reflects": true,
1627
+ "inheritedFrom": {
1628
+ "name": "ScwComponent",
1629
+ "module": "src/scw-component/ScwComponent.ts"
1630
+ }
1631
+ },
1632
+ {
1633
+ "kind": "field",
1634
+ "name": "size",
1635
+ "type": {
1636
+ "text": "'small' | 'medium' | 'large'"
1637
+ },
1638
+ "default": "'medium'",
1639
+ "description": "(ScwLink) Link label",
1640
+ "attribute": "size",
1641
+ "inheritedFrom": {
1642
+ "name": "ScwLink",
1643
+ "module": "src/scw-link/ScwLink.ts"
1644
+ }
1734
1645
  },
1735
1646
  {
1736
1647
  "kind": "field",
1737
- "name": "element",
1648
+ "name": "ariaDisabled",
1738
1649
  "type": {
1739
1650
  "text": "string"
1740
1651
  },
1741
- "description": "(ScwComponent) contains the root element name for each component\n(enum Components)",
1742
- "attribute": "element",
1743
- "reflects": true,
1652
+ "default": "'false'",
1653
+ "description": "(ScwLink) If the link is disabled",
1654
+ "attribute": "aria-disabled",
1744
1655
  "inheritedFrom": {
1745
1656
  "name": "ScwComponent",
1746
1657
  "module": "src/scw-component/ScwComponent.ts"
@@ -1748,31 +1659,70 @@
1748
1659
  },
1749
1660
  {
1750
1661
  "kind": "field",
1751
- "name": "ariaLabel",
1662
+ "name": "underline",
1752
1663
  "type": {
1753
1664
  "text": "string"
1754
1665
  },
1755
- "default": "''",
1756
- "description": "(ScwComponent) Main text within component",
1757
- "attribute": "aria-label",
1758
- "reflects": true,
1666
+ "default": "'true'",
1667
+ "description": "(ScwLink) If a regular link should be underlined",
1668
+ "attribute": "underline",
1759
1669
  "inheritedFrom": {
1760
- "name": "ScwComponent",
1761
- "module": "src/scw-component/ScwComponent.ts"
1670
+ "name": "ScwLink",
1671
+ "module": "src/scw-link/ScwLink.ts"
1762
1672
  }
1763
1673
  },
1764
1674
  {
1765
1675
  "kind": "field",
1766
- "name": "ariaDisabled",
1676
+ "name": "linkAnchor",
1767
1677
  "type": {
1768
- "text": "string"
1678
+ "text": "HTMLAnchorElement | undefined"
1769
1679
  },
1770
- "default": "'false'",
1771
- "description": "(ScwComponent) Disables the component however it disables",
1772
- "attribute": "aria-disabled",
1773
1680
  "inheritedFrom": {
1774
- "name": "ScwComponent",
1775
- "module": "src/scw-component/ScwComponent.ts"
1681
+ "name": "ScwLink",
1682
+ "module": "src/scw-link/ScwLink.ts"
1683
+ }
1684
+ },
1685
+ {
1686
+ "kind": "method",
1687
+ "name": "focus",
1688
+ "return": {
1689
+ "type": {
1690
+ "text": "void"
1691
+ }
1692
+ },
1693
+ "description": "focus",
1694
+ "inheritedFrom": {
1695
+ "name": "ScwLink",
1696
+ "module": "src/scw-link/ScwLink.ts"
1697
+ }
1698
+ },
1699
+ {
1700
+ "kind": "method",
1701
+ "name": "renderIcon",
1702
+ "privacy": "private",
1703
+ "return": {
1704
+ "type": {
1705
+ "text": "object"
1706
+ }
1707
+ },
1708
+ "description": "renderIcon",
1709
+ "inheritedFrom": {
1710
+ "name": "ScwLink",
1711
+ "module": "src/scw-link/ScwLink.ts"
1712
+ }
1713
+ },
1714
+ {
1715
+ "kind": "method",
1716
+ "name": "renderContent",
1717
+ "return": {
1718
+ "type": {
1719
+ "text": "object"
1720
+ }
1721
+ },
1722
+ "description": "renderContent",
1723
+ "inheritedFrom": {
1724
+ "name": "ScwLink",
1725
+ "module": "src/scw-link/ScwLink.ts"
1776
1726
  }
1777
1727
  },
1778
1728
  {
@@ -1781,7 +1731,7 @@
1781
1731
  "type": {
1782
1732
  "text": "boolean"
1783
1733
  },
1784
- "default": "false",
1734
+ "default": "true",
1785
1735
  "description": "(ScwLinkBase)\nSome lookups need to know if something is a link or not...",
1786
1736
  "attribute": "is-link",
1787
1737
  "reflects": true,
@@ -1867,52 +1817,76 @@
1867
1817
  ],
1868
1818
  "attributes": [
1869
1819
  {
1870
- "name": "heading",
1820
+ "name": "submit-type",
1871
1821
  "type": {
1872
- "text": "string | undefined"
1822
+ "text": "ScwFormComponentSubmitTypes"
1873
1823
  },
1874
- "description": "(ScwCallout) The heading",
1875
- "fieldName": "heading"
1824
+ "description": "<ScwFormComponent> the usage in a form (& scw-form a query target)",
1825
+ "fieldName": "submitType"
1876
1826
  },
1877
1827
  {
1878
- "name": "alignment",
1828
+ "name": "icon",
1879
1829
  "type": {
1880
- "text": "string | undefined"
1830
+ "text": "string"
1881
1831
  },
1882
- "description": "(ScwCallout) Alignment of the callout",
1883
- "fieldName": "align"
1832
+ "default": "''",
1833
+ "description": "(ScwLink) Design system icon",
1834
+ "fieldName": "icon",
1835
+ "inheritedFrom": {
1836
+ "name": "ScwLink",
1837
+ "module": "src/scw-link/ScwLink.ts"
1838
+ }
1884
1839
  },
1885
1840
  {
1886
- "name": "primary-cta-link",
1841
+ "name": "icon-side",
1887
1842
  "type": {
1888
- "text": "string | undefined"
1843
+ "text": "string"
1889
1844
  },
1890
- "description": "(ScwCallout) Primary link href",
1891
- "fieldName": "primaryLink"
1845
+ "default": "''",
1846
+ "description": "(ScwLink) Side you want the icon displayed",
1847
+ "fieldName": "iconSide",
1848
+ "inheritedFrom": {
1849
+ "name": "ScwLink",
1850
+ "module": "src/scw-link/ScwLink.ts"
1851
+ }
1892
1852
  },
1893
1853
  {
1894
- "name": "primary-cta-label",
1854
+ "name": "design",
1895
1855
  "type": {
1896
- "text": "string | undefined"
1856
+ "text": "| 'solid'\n | 'outlined'\n | 'light'\n | 'white'\n | 'text'\n | 'plain'\n | 'block'\n | 'icon'\n | 'main'\n | 'solidIcon'"
1897
1857
  },
1898
- "description": "(ScwCallout) Primary link label",
1899
- "fieldName": "primaryLabel"
1858
+ "default": "'solid'",
1859
+ "description": "(ScwLink) Link design",
1860
+ "fieldName": "design",
1861
+ "inheritedFrom": {
1862
+ "name": "ScwLink",
1863
+ "module": "src/scw-link/ScwLink.ts"
1864
+ }
1900
1865
  },
1901
1866
  {
1902
- "name": "secondary-cta-link",
1867
+ "name": "href",
1903
1868
  "type": {
1904
- "text": "string | undefined"
1869
+ "text": "string"
1905
1870
  },
1906
- "description": "(ScwCallout) Secondary link href",
1907
- "fieldName": "secondaryLink"
1871
+ "default": "''",
1872
+ "description": "(ScwLink) Link url",
1873
+ "fieldName": "href",
1874
+ "inheritedFrom": {
1875
+ "name": "ScwLink",
1876
+ "module": "src/scw-link/ScwLink.ts"
1877
+ }
1908
1878
  },
1909
1879
  {
1910
- "name": "secondary-cta-label",
1880
+ "name": "target",
1911
1881
  "type": {
1912
- "text": "string | undefined"
1882
+ "text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
1913
1883
  },
1914
- "description": "(ScwCallout) Secondary link label",
1915
- "fieldName": "secondaryLabel"
1884
+ "description": "(ScwLink) Link target",
1885
+ "fieldName": "target",
1886
+ "inheritedFrom": {
1887
+ "name": "ScwLink",
1888
+ "module": "src/scw-link/ScwLink.ts"
1889
+ }
1916
1890
  },
1917
1891
  {
1918
1892
  "name": "aria-label",
@@ -1920,26 +1894,52 @@
1920
1894
  "text": "string"
1921
1895
  },
1922
1896
  "default": "''",
1923
- "description": "(ScwComponent) Main text within component",
1897
+ "description": "(ScwLink) Link label",
1924
1898
  "fieldName": "ariaLabel",
1925
1899
  "inheritedFrom": {
1926
1900
  "name": "ScwComponent",
1927
1901
  "module": "src/scw-component/ScwComponent.ts"
1928
1902
  }
1929
1903
  },
1904
+ {
1905
+ "name": "size",
1906
+ "type": {
1907
+ "text": "'small' | 'medium' | 'large'"
1908
+ },
1909
+ "default": "'medium'",
1910
+ "description": "(ScwLink) Link label",
1911
+ "fieldName": "size",
1912
+ "inheritedFrom": {
1913
+ "name": "ScwLink",
1914
+ "module": "src/scw-link/ScwLink.ts"
1915
+ }
1916
+ },
1930
1917
  {
1931
1918
  "name": "aria-disabled",
1932
1919
  "type": {
1933
1920
  "text": "string"
1934
1921
  },
1935
1922
  "default": "'false'",
1936
- "description": "(ScwComponent) Disables the component however it disables",
1923
+ "description": "(ScwLink) If the link is disabled",
1937
1924
  "fieldName": "ariaDisabled",
1938
1925
  "inheritedFrom": {
1939
1926
  "name": "ScwComponent",
1940
1927
  "module": "src/scw-component/ScwComponent.ts"
1941
1928
  }
1942
1929
  },
1930
+ {
1931
+ "name": "underline",
1932
+ "type": {
1933
+ "text": "string"
1934
+ },
1935
+ "default": "'true'",
1936
+ "description": "(ScwLink) If a regular link should be underlined",
1937
+ "fieldName": "underline",
1938
+ "inheritedFrom": {
1939
+ "name": "ScwLink",
1940
+ "module": "src/scw-link/ScwLink.ts"
1941
+ }
1942
+ },
1943
1943
  {
1944
1944
  "name": "is-link",
1945
1945
  "type": {
@@ -1980,10 +1980,10 @@
1980
1980
  }
1981
1981
  ],
1982
1982
  "superclass": {
1983
- "name": "ScwComponent",
1984
- "package": "scw-component/ScwComponent"
1983
+ "name": "ScwLink",
1984
+ "module": "/src/scw-link/ScwLink"
1985
1985
  },
1986
- "tagName": "scw-callout",
1986
+ "tagName": "scw-button",
1987
1987
  "customElement": true
1988
1988
  }
1989
1989
  ],
@@ -1992,23 +1992,23 @@
1992
1992
  "kind": "js",
1993
1993
  "name": "default",
1994
1994
  "declaration": {
1995
- "name": "ScwCallout",
1996
- "module": "src/scw-callout/ScwCallout.ts"
1995
+ "name": "ScwButton",
1996
+ "module": "src/scw-button/ScwButton.ts"
1997
1997
  }
1998
1998
  }
1999
1999
  ]
2000
2000
  },
2001
2001
  {
2002
2002
  "kind": "javascript-module",
2003
- "path": "src/scw-callout/scw-callout.ts",
2003
+ "path": "src/scw-button/scw-button.ts",
2004
2004
  "declarations": [],
2005
2005
  "exports": [
2006
2006
  {
2007
2007
  "kind": "custom-element-definition",
2008
- "name": "scw-callout",
2008
+ "name": "scw-button",
2009
2009
  "declaration": {
2010
- "name": "ScwCallout",
2011
- "module": "/src/scw-callout/ScwCallout"
2010
+ "name": "ScwButton",
2011
+ "module": "/src/scw-button/ScwButton.js"
2012
2012
  }
2013
2013
  }
2014
2014
  ]
@@ -11175,6 +11175,16 @@
11175
11175
  },
11176
11176
  "default": "false"
11177
11177
  },
11178
+ {
11179
+ "kind": "method",
11180
+ "name": "formatValue",
11181
+ "description": "Formats value"
11182
+ },
11183
+ {
11184
+ "kind": "method",
11185
+ "name": "handleChange",
11186
+ "description": "handleChange"
11187
+ },
11178
11188
  {
11179
11189
  "kind": "method",
11180
11190
  "name": "valueHandler",
@@ -11194,21 +11204,6 @@
11194
11204
  }
11195
11205
  ]
11196
11206
  },
11197
- {
11198
- "kind": "method",
11199
- "name": "formatValue",
11200
- "description": "Formats value"
11201
- },
11202
- {
11203
- "kind": "method",
11204
- "name": "handleChange",
11205
- "description": "handleChange"
11206
- },
11207
- {
11208
- "kind": "method",
11209
- "name": "valueChangeHandler",
11210
- "description": "valueChangeHandler"
11211
- },
11212
11207
  {
11213
11208
  "kind": "method",
11214
11209
  "name": "handleShowPassword",
@@ -11227,6 +11222,19 @@
11227
11222
  ],
11228
11223
  "description": "handleInteraction"
11229
11224
  },
11225
+ {
11226
+ "kind": "method",
11227
+ "name": "handleKeydown",
11228
+ "parameters": [
11229
+ {
11230
+ "name": "e",
11231
+ "type": {
11232
+ "text": "KeyboardEvent"
11233
+ }
11234
+ }
11235
+ ],
11236
+ "description": "handleKeydown"
11237
+ },
11230
11238
  {
11231
11239
  "kind": "method",
11232
11240
  "name": "handleCancel",
@@ -12303,7 +12311,7 @@
12303
12311
  "kind": "field",
12304
12312
  "name": "design",
12305
12313
  "type": {
12306
- "text": "| 'solid'\n | 'outlined'\n | 'light'\n | 'text'\n | 'plain'\n | 'block'\n | 'icon'\n | 'main'\n | 'solidIcon'"
12314
+ "text": "| 'solid'\n | 'outlined'\n | 'light'\n | 'white'\n | 'text'\n | 'plain'\n | 'block'\n | 'icon'\n | 'main'\n | 'solidIcon'"
12307
12315
  },
12308
12316
  "default": "'solid'",
12309
12317
  "description": "(ScwLink) Link design",
@@ -12541,7 +12549,7 @@
12541
12549
  {
12542
12550
  "name": "design",
12543
12551
  "type": {
12544
- "text": "| 'solid'\n | 'outlined'\n | 'light'\n | 'text'\n | 'plain'\n | 'block'\n | 'icon'\n | 'main'\n | 'solidIcon'"
12552
+ "text": "| 'solid'\n | 'outlined'\n | 'light'\n | 'white'\n | 'text'\n | 'plain'\n | 'block'\n | 'icon'\n | 'main'\n | 'solidIcon'"
12545
12553
  },
12546
12554
  "default": "'solid'",
12547
12555
  "description": "(ScwLink) Link design",
@@ -19028,6 +19036,30 @@
19028
19036
  }
19029
19037
  }
19030
19038
  },
19039
+ {
19040
+ "kind": "method",
19041
+ "name": "renderCell",
19042
+ "parameters": [
19043
+ {
19044
+ "name": "value",
19045
+ "type": {
19046
+ "text": "string"
19047
+ }
19048
+ },
19049
+ {
19050
+ "name": "disclosures",
19051
+ "type": {
19052
+ "text": "object"
19053
+ }
19054
+ }
19055
+ ],
19056
+ "description": "renderCell",
19057
+ "return": {
19058
+ "type": {
19059
+ "text": "object"
19060
+ }
19061
+ }
19062
+ },
19031
19063
  {
19032
19064
  "kind": "method",
19033
19065
  "name": "renderLink",