@staffbase/widget-sdk 3.3.5 → 3.4.0-alpha.13

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 (53) hide show
  1. package/dist/base-block.d.ts +98 -0
  2. package/{index.d.ts → dist/base-block.js} +2 -11
  3. package/{lib/block-attributes.ts → dist/block-attributes.d.ts} +2 -3
  4. package/dist/block-attributes.js +13 -0
  5. package/dist/block-definition.d.ts +91 -0
  6. package/dist/block-definition.js +13 -0
  7. package/dist/block-element.d.ts +45 -0
  8. package/dist/block-element.js +13 -0
  9. package/{lib/block-factory.ts → dist/block-factory.d.ts} +2 -6
  10. package/dist/block-factory.js +13 -0
  11. package/{lib/external-block-definition.ts → dist/external-block-definition.d.ts} +15 -19
  12. package/dist/external-block-definition.js +13 -0
  13. package/{lib → dist}/global.d.ts +6 -9
  14. package/dist/global.js +13 -0
  15. package/dist/index.d.ts +9 -0
  16. package/dist/index.js +9 -0
  17. package/{lib/widget-api-types.ts → dist/widget-api-types.d.ts} +92 -76
  18. package/dist/widget-api-types.js +21 -0
  19. package/{lib/widget-api.ts → dist/widget-api.d.ts} +18 -8
  20. package/dist/widget-api.js +13 -0
  21. package/docs/BaseBlock.md +1259 -1
  22. package/docs/BlockAttributes.md +4 -0
  23. package/docs/BlockDefinition.md +36 -0
  24. package/docs/BlockElement.md +20 -0
  25. package/docs/ColorTheme.md +32 -0
  26. package/docs/ExternalBlockDefinition.md +12 -0
  27. package/docs/Home.md +25 -0
  28. package/docs/IntegrationInformation.md +70 -0
  29. package/docs/IntegrationState.md +41 -0
  30. package/docs/IntegrationToken.md +30 -0
  31. package/docs/SBColors.md +224 -0
  32. package/docs/SBFileType.md +24 -0
  33. package/docs/SBImageEntity.md +24 -0
  34. package/docs/SBUserAvatar.md +16 -0
  35. package/docs/SBUserProfile.md +32 -0
  36. package/docs/UserListItem.md +16 -0
  37. package/docs/UserListRequestQuery.md +16 -0
  38. package/docs/UserListResponse.md +16 -0
  39. package/docs/WidgetApi.md +50 -0
  40. package/package.json +17 -12
  41. package/.commitlintrc.json +0 -28
  42. package/.github/CODEOWNERS +0 -1
  43. package/.github/workflows/ci.yaml +0 -61
  44. package/.github/workflows/dependency-update.yml +0 -24
  45. package/.husky/commit-msg +0 -6
  46. package/.releaserc +0 -38
  47. package/CHANGELOG.md +0 -295
  48. package/CONTRIBUTING.md +0 -10
  49. package/catalog-info.yaml +0 -11
  50. package/lib/base-block.ts +0 -110
  51. package/lib/block-definition.ts +0 -101
  52. package/lib/block-element.ts +0 -56
  53. package/tsconfig.json +0 -13
package/docs/BaseBlock.md CHANGED
@@ -74,6 +74,7 @@ Provides common editing and render capabilities for Staffbase widgets.
74
74
  - [assignedSlot](../wiki/BaseBlock#assignedslot)
75
75
  - [attributes](../wiki/BaseBlock#attributes)
76
76
  - [autocapitalize](../wiki/BaseBlock#autocapitalize)
77
+ - [autofocus](../wiki/BaseBlock#autofocus)
77
78
  - [baseURI](../wiki/BaseBlock#baseuri)
78
79
  - [childElementCount](../wiki/BaseBlock#childelementcount)
79
80
  - [childNodes](../wiki/BaseBlock#childnodes)
@@ -237,6 +238,7 @@ Provides common editing and render capabilities for Staffbase widgets.
237
238
  - [animate](../wiki/BaseBlock#animate)
238
239
  - [append](../wiki/BaseBlock#append)
239
240
  - [appendChild](../wiki/BaseBlock#appendchild)
241
+ - [attachInternals](../wiki/BaseBlock#attachinternals)
240
242
  - [attachShadow](../wiki/BaseBlock#attachshadow)
241
243
  - [attributeChangedCallback](../wiki/BaseBlock#attributechangedcallback)
242
244
  - [before](../wiki/BaseBlock#before)
@@ -318,6 +320,10 @@ Provides common editing and render capabilities for Staffbase widgets.
318
320
 
319
321
  HTMLElement.ATTRIBUTE\_NODE
320
322
 
323
+ #### Defined in
324
+
325
+ node_modules/typescript/lib/lib.dom.d.ts:9696
326
+
321
327
  ___
322
328
 
323
329
  ### CDATA\_SECTION\_NODE
@@ -330,6 +336,10 @@ node is a CDATASection node.
330
336
 
331
337
  HTMLElement.CDATA\_SECTION\_NODE
332
338
 
339
+ #### Defined in
340
+
341
+ node_modules/typescript/lib/lib.dom.d.ts:9698
342
+
333
343
  ___
334
344
 
335
345
  ### COMMENT\_NODE
@@ -342,6 +352,10 @@ node is a Comment node.
342
352
 
343
353
  HTMLElement.COMMENT\_NODE
344
354
 
355
+ #### Defined in
356
+
357
+ node_modules/typescript/lib/lib.dom.d.ts:9700
358
+
345
359
  ___
346
360
 
347
361
  ### DOCUMENT\_FRAGMENT\_NODE
@@ -354,6 +368,10 @@ node is a DocumentFragment node.
354
368
 
355
369
  HTMLElement.DOCUMENT\_FRAGMENT\_NODE
356
370
 
371
+ #### Defined in
372
+
373
+ node_modules/typescript/lib/lib.dom.d.ts:9702
374
+
357
375
  ___
358
376
 
359
377
  ### DOCUMENT\_NODE
@@ -366,6 +384,10 @@ node is a document.
366
384
 
367
385
  HTMLElement.DOCUMENT\_NODE
368
386
 
387
+ #### Defined in
388
+
389
+ node_modules/typescript/lib/lib.dom.d.ts:9704
390
+
369
391
  ___
370
392
 
371
393
  ### DOCUMENT\_POSITION\_CONTAINED\_BY
@@ -378,6 +400,10 @@ Set when other is a descendant of node.
378
400
 
379
401
  HTMLElement.DOCUMENT\_POSITION\_CONTAINED\_BY
380
402
 
403
+ #### Defined in
404
+
405
+ node_modules/typescript/lib/lib.dom.d.ts:9706
406
+
381
407
  ___
382
408
 
383
409
  ### DOCUMENT\_POSITION\_CONTAINS
@@ -390,6 +416,10 @@ Set when other is an ancestor of node.
390
416
 
391
417
  HTMLElement.DOCUMENT\_POSITION\_CONTAINS
392
418
 
419
+ #### Defined in
420
+
421
+ node_modules/typescript/lib/lib.dom.d.ts:9708
422
+
393
423
  ___
394
424
 
395
425
  ### DOCUMENT\_POSITION\_DISCONNECTED
@@ -402,6 +432,10 @@ Set when node and other are not in the same tree.
402
432
 
403
433
  HTMLElement.DOCUMENT\_POSITION\_DISCONNECTED
404
434
 
435
+ #### Defined in
436
+
437
+ node_modules/typescript/lib/lib.dom.d.ts:9710
438
+
405
439
  ___
406
440
 
407
441
  ### DOCUMENT\_POSITION\_FOLLOWING
@@ -414,6 +448,10 @@ Set when other is following node.
414
448
 
415
449
  HTMLElement.DOCUMENT\_POSITION\_FOLLOWING
416
450
 
451
+ #### Defined in
452
+
453
+ node_modules/typescript/lib/lib.dom.d.ts:9712
454
+
417
455
  ___
418
456
 
419
457
  ### DOCUMENT\_POSITION\_IMPLEMENTATION\_SPECIFIC
@@ -424,6 +462,10 @@ ___
424
462
 
425
463
  HTMLElement.DOCUMENT\_POSITION\_IMPLEMENTATION\_SPECIFIC
426
464
 
465
+ #### Defined in
466
+
467
+ node_modules/typescript/lib/lib.dom.d.ts:9713
468
+
427
469
  ___
428
470
 
429
471
  ### DOCUMENT\_POSITION\_PRECEDING
@@ -436,6 +478,10 @@ Set when other is preceding node.
436
478
 
437
479
  HTMLElement.DOCUMENT\_POSITION\_PRECEDING
438
480
 
481
+ #### Defined in
482
+
483
+ node_modules/typescript/lib/lib.dom.d.ts:9715
484
+
439
485
  ___
440
486
 
441
487
  ### DOCUMENT\_TYPE\_NODE
@@ -448,6 +494,10 @@ node is a doctype.
448
494
 
449
495
  HTMLElement.DOCUMENT\_TYPE\_NODE
450
496
 
497
+ #### Defined in
498
+
499
+ node_modules/typescript/lib/lib.dom.d.ts:9717
500
+
451
501
  ___
452
502
 
453
503
  ### ELEMENT\_NODE
@@ -460,6 +510,10 @@ node is an element.
460
510
 
461
511
  HTMLElement.ELEMENT\_NODE
462
512
 
513
+ #### Defined in
514
+
515
+ node_modules/typescript/lib/lib.dom.d.ts:9719
516
+
463
517
  ___
464
518
 
465
519
  ### ENTITY\_NODE
@@ -470,6 +524,10 @@ ___
470
524
 
471
525
  HTMLElement.ENTITY\_NODE
472
526
 
527
+ #### Defined in
528
+
529
+ node_modules/typescript/lib/lib.dom.d.ts:9720
530
+
473
531
  ___
474
532
 
475
533
  ### ENTITY\_REFERENCE\_NODE
@@ -480,6 +538,10 @@ ___
480
538
 
481
539
  HTMLElement.ENTITY\_REFERENCE\_NODE
482
540
 
541
+ #### Defined in
542
+
543
+ node_modules/typescript/lib/lib.dom.d.ts:9721
544
+
483
545
  ___
484
546
 
485
547
  ### NOTATION\_NODE
@@ -490,6 +552,10 @@ ___
490
552
 
491
553
  HTMLElement.NOTATION\_NODE
492
554
 
555
+ #### Defined in
556
+
557
+ node_modules/typescript/lib/lib.dom.d.ts:9722
558
+
493
559
  ___
494
560
 
495
561
  ### PROCESSING\_INSTRUCTION\_NODE
@@ -502,6 +568,10 @@ node is a ProcessingInstruction node.
502
568
 
503
569
  HTMLElement.PROCESSING\_INSTRUCTION\_NODE
504
570
 
571
+ #### Defined in
572
+
573
+ node_modules/typescript/lib/lib.dom.d.ts:9724
574
+
505
575
  ___
506
576
 
507
577
  ### TEXT\_NODE
@@ -514,6 +584,10 @@ node is a Text node.
514
584
 
515
585
  HTMLElement.TEXT\_NODE
516
586
 
587
+ #### Defined in
588
+
589
+ node_modules/typescript/lib/lib.dom.d.ts:9726
590
+
517
591
  ___
518
592
 
519
593
  ### accessKey
@@ -524,6 +598,10 @@ ___
524
598
 
525
599
  HTMLElement.accessKey
526
600
 
601
+ #### Defined in
602
+
603
+ node_modules/typescript/lib/lib.dom.d.ts:6133
604
+
527
605
  ___
528
606
 
529
607
  ### accessKeyLabel
@@ -534,6 +612,10 @@ ___
534
612
 
535
613
  HTMLElement.accessKeyLabel
536
614
 
615
+ #### Defined in
616
+
617
+ node_modules/typescript/lib/lib.dom.d.ts:6134
618
+
537
619
  ___
538
620
 
539
621
  ### ariaAtomic
@@ -544,6 +626,10 @@ ___
544
626
 
545
627
  HTMLElement.ariaAtomic
546
628
 
629
+ #### Defined in
630
+
631
+ node_modules/typescript/lib/lib.dom.d.ts:1827
632
+
547
633
  ___
548
634
 
549
635
  ### ariaAutoComplete
@@ -554,6 +640,10 @@ ___
554
640
 
555
641
  HTMLElement.ariaAutoComplete
556
642
 
643
+ #### Defined in
644
+
645
+ node_modules/typescript/lib/lib.dom.d.ts:1828
646
+
557
647
  ___
558
648
 
559
649
  ### ariaBusy
@@ -564,6 +654,10 @@ ___
564
654
 
565
655
  HTMLElement.ariaBusy
566
656
 
657
+ #### Defined in
658
+
659
+ node_modules/typescript/lib/lib.dom.d.ts:1829
660
+
567
661
  ___
568
662
 
569
663
  ### ariaChecked
@@ -574,6 +668,10 @@ ___
574
668
 
575
669
  HTMLElement.ariaChecked
576
670
 
671
+ #### Defined in
672
+
673
+ node_modules/typescript/lib/lib.dom.d.ts:1830
674
+
577
675
  ___
578
676
 
579
677
  ### ariaColCount
@@ -584,6 +682,10 @@ ___
584
682
 
585
683
  HTMLElement.ariaColCount
586
684
 
685
+ #### Defined in
686
+
687
+ node_modules/typescript/lib/lib.dom.d.ts:1831
688
+
587
689
  ___
588
690
 
589
691
  ### ariaColIndex
@@ -594,6 +696,10 @@ ___
594
696
 
595
697
  HTMLElement.ariaColIndex
596
698
 
699
+ #### Defined in
700
+
701
+ node_modules/typescript/lib/lib.dom.d.ts:1832
702
+
597
703
  ___
598
704
 
599
705
  ### ariaColSpan
@@ -604,6 +710,10 @@ ___
604
710
 
605
711
  HTMLElement.ariaColSpan
606
712
 
713
+ #### Defined in
714
+
715
+ node_modules/typescript/lib/lib.dom.d.ts:1833
716
+
607
717
  ___
608
718
 
609
719
  ### ariaCurrent
@@ -614,6 +724,10 @@ ___
614
724
 
615
725
  HTMLElement.ariaCurrent
616
726
 
727
+ #### Defined in
728
+
729
+ node_modules/typescript/lib/lib.dom.d.ts:1834
730
+
617
731
  ___
618
732
 
619
733
  ### ariaDisabled
@@ -624,6 +738,10 @@ ___
624
738
 
625
739
  HTMLElement.ariaDisabled
626
740
 
741
+ #### Defined in
742
+
743
+ node_modules/typescript/lib/lib.dom.d.ts:1835
744
+
627
745
  ___
628
746
 
629
747
  ### ariaExpanded
@@ -634,6 +752,10 @@ ___
634
752
 
635
753
  HTMLElement.ariaExpanded
636
754
 
755
+ #### Defined in
756
+
757
+ node_modules/typescript/lib/lib.dom.d.ts:1836
758
+
637
759
  ___
638
760
 
639
761
  ### ariaHasPopup
@@ -644,6 +766,10 @@ ___
644
766
 
645
767
  HTMLElement.ariaHasPopup
646
768
 
769
+ #### Defined in
770
+
771
+ node_modules/typescript/lib/lib.dom.d.ts:1837
772
+
647
773
  ___
648
774
 
649
775
  ### ariaHidden
@@ -654,6 +780,10 @@ ___
654
780
 
655
781
  HTMLElement.ariaHidden
656
782
 
783
+ #### Defined in
784
+
785
+ node_modules/typescript/lib/lib.dom.d.ts:1838
786
+
657
787
  ___
658
788
 
659
789
  ### ariaKeyShortcuts
@@ -664,6 +794,10 @@ ___
664
794
 
665
795
  HTMLElement.ariaKeyShortcuts
666
796
 
797
+ #### Defined in
798
+
799
+ node_modules/typescript/lib/lib.dom.d.ts:1839
800
+
667
801
  ___
668
802
 
669
803
  ### ariaLabel
@@ -674,6 +808,10 @@ ___
674
808
 
675
809
  HTMLElement.ariaLabel
676
810
 
811
+ #### Defined in
812
+
813
+ node_modules/typescript/lib/lib.dom.d.ts:1840
814
+
677
815
  ___
678
816
 
679
817
  ### ariaLevel
@@ -684,6 +822,10 @@ ___
684
822
 
685
823
  HTMLElement.ariaLevel
686
824
 
825
+ #### Defined in
826
+
827
+ node_modules/typescript/lib/lib.dom.d.ts:1841
828
+
687
829
  ___
688
830
 
689
831
  ### ariaLive
@@ -694,6 +836,10 @@ ___
694
836
 
695
837
  HTMLElement.ariaLive
696
838
 
839
+ #### Defined in
840
+
841
+ node_modules/typescript/lib/lib.dom.d.ts:1842
842
+
697
843
  ___
698
844
 
699
845
  ### ariaModal
@@ -704,6 +850,10 @@ ___
704
850
 
705
851
  HTMLElement.ariaModal
706
852
 
853
+ #### Defined in
854
+
855
+ node_modules/typescript/lib/lib.dom.d.ts:1843
856
+
707
857
  ___
708
858
 
709
859
  ### ariaMultiLine
@@ -714,6 +864,10 @@ ___
714
864
 
715
865
  HTMLElement.ariaMultiLine
716
866
 
867
+ #### Defined in
868
+
869
+ node_modules/typescript/lib/lib.dom.d.ts:1844
870
+
717
871
  ___
718
872
 
719
873
  ### ariaMultiSelectable
@@ -724,6 +878,10 @@ ___
724
878
 
725
879
  HTMLElement.ariaMultiSelectable
726
880
 
881
+ #### Defined in
882
+
883
+ node_modules/typescript/lib/lib.dom.d.ts:1845
884
+
727
885
  ___
728
886
 
729
887
  ### ariaOrientation
@@ -734,6 +892,10 @@ ___
734
892
 
735
893
  HTMLElement.ariaOrientation
736
894
 
895
+ #### Defined in
896
+
897
+ node_modules/typescript/lib/lib.dom.d.ts:1846
898
+
737
899
  ___
738
900
 
739
901
  ### ariaPlaceholder
@@ -744,6 +906,10 @@ ___
744
906
 
745
907
  HTMLElement.ariaPlaceholder
746
908
 
909
+ #### Defined in
910
+
911
+ node_modules/typescript/lib/lib.dom.d.ts:1847
912
+
747
913
  ___
748
914
 
749
915
  ### ariaPosInSet
@@ -754,6 +920,10 @@ ___
754
920
 
755
921
  HTMLElement.ariaPosInSet
756
922
 
923
+ #### Defined in
924
+
925
+ node_modules/typescript/lib/lib.dom.d.ts:1848
926
+
757
927
  ___
758
928
 
759
929
  ### ariaPressed
@@ -764,6 +934,10 @@ ___
764
934
 
765
935
  HTMLElement.ariaPressed
766
936
 
937
+ #### Defined in
938
+
939
+ node_modules/typescript/lib/lib.dom.d.ts:1849
940
+
767
941
  ___
768
942
 
769
943
  ### ariaReadOnly
@@ -774,6 +948,10 @@ ___
774
948
 
775
949
  HTMLElement.ariaReadOnly
776
950
 
951
+ #### Defined in
952
+
953
+ node_modules/typescript/lib/lib.dom.d.ts:1850
954
+
777
955
  ___
778
956
 
779
957
  ### ariaRequired
@@ -784,6 +962,10 @@ ___
784
962
 
785
963
  HTMLElement.ariaRequired
786
964
 
965
+ #### Defined in
966
+
967
+ node_modules/typescript/lib/lib.dom.d.ts:1851
968
+
787
969
  ___
788
970
 
789
971
  ### ariaRoleDescription
@@ -794,6 +976,10 @@ ___
794
976
 
795
977
  HTMLElement.ariaRoleDescription
796
978
 
979
+ #### Defined in
980
+
981
+ node_modules/typescript/lib/lib.dom.d.ts:1852
982
+
797
983
  ___
798
984
 
799
985
  ### ariaRowCount
@@ -804,6 +990,10 @@ ___
804
990
 
805
991
  HTMLElement.ariaRowCount
806
992
 
993
+ #### Defined in
994
+
995
+ node_modules/typescript/lib/lib.dom.d.ts:1853
996
+
807
997
  ___
808
998
 
809
999
  ### ariaRowIndex
@@ -814,6 +1004,10 @@ ___
814
1004
 
815
1005
  HTMLElement.ariaRowIndex
816
1006
 
1007
+ #### Defined in
1008
+
1009
+ node_modules/typescript/lib/lib.dom.d.ts:1854
1010
+
817
1011
  ___
818
1012
 
819
1013
  ### ariaRowSpan
@@ -824,6 +1018,10 @@ ___
824
1018
 
825
1019
  HTMLElement.ariaRowSpan
826
1020
 
1021
+ #### Defined in
1022
+
1023
+ node_modules/typescript/lib/lib.dom.d.ts:1855
1024
+
827
1025
  ___
828
1026
 
829
1027
  ### ariaSelected
@@ -834,6 +1032,10 @@ ___
834
1032
 
835
1033
  HTMLElement.ariaSelected
836
1034
 
1035
+ #### Defined in
1036
+
1037
+ node_modules/typescript/lib/lib.dom.d.ts:1856
1038
+
837
1039
  ___
838
1040
 
839
1041
  ### ariaSetSize
@@ -844,6 +1046,10 @@ ___
844
1046
 
845
1047
  HTMLElement.ariaSetSize
846
1048
 
1049
+ #### Defined in
1050
+
1051
+ node_modules/typescript/lib/lib.dom.d.ts:1857
1052
+
847
1053
  ___
848
1054
 
849
1055
  ### ariaSort
@@ -854,6 +1060,10 @@ ___
854
1060
 
855
1061
  HTMLElement.ariaSort
856
1062
 
1063
+ #### Defined in
1064
+
1065
+ node_modules/typescript/lib/lib.dom.d.ts:1858
1066
+
857
1067
  ___
858
1068
 
859
1069
  ### ariaValueMax
@@ -864,6 +1074,10 @@ ___
864
1074
 
865
1075
  HTMLElement.ariaValueMax
866
1076
 
1077
+ #### Defined in
1078
+
1079
+ node_modules/typescript/lib/lib.dom.d.ts:1859
1080
+
867
1081
  ___
868
1082
 
869
1083
  ### ariaValueMin
@@ -874,6 +1088,10 @@ ___
874
1088
 
875
1089
  HTMLElement.ariaValueMin
876
1090
 
1091
+ #### Defined in
1092
+
1093
+ node_modules/typescript/lib/lib.dom.d.ts:1860
1094
+
877
1095
  ___
878
1096
 
879
1097
  ### ariaValueNow
@@ -884,6 +1102,10 @@ ___
884
1102
 
885
1103
  HTMLElement.ariaValueNow
886
1104
 
1105
+ #### Defined in
1106
+
1107
+ node_modules/typescript/lib/lib.dom.d.ts:1861
1108
+
887
1109
  ___
888
1110
 
889
1111
  ### ariaValueText
@@ -894,6 +1116,10 @@ ___
894
1116
 
895
1117
  HTMLElement.ariaValueText
896
1118
 
1119
+ #### Defined in
1120
+
1121
+ node_modules/typescript/lib/lib.dom.d.ts:1862
1122
+
897
1123
  ___
898
1124
 
899
1125
  ### assignedSlot
@@ -904,6 +1130,10 @@ ___
904
1130
 
905
1131
  HTMLElement.assignedSlot
906
1132
 
1133
+ #### Defined in
1134
+
1135
+ node_modules/typescript/lib/lib.dom.d.ts:13103
1136
+
907
1137
  ___
908
1138
 
909
1139
  ### attributes
@@ -914,6 +1144,10 @@ ___
914
1144
 
915
1145
  HTMLElement.attributes
916
1146
 
1147
+ #### Defined in
1148
+
1149
+ node_modules/typescript/lib/lib.dom.d.ts:4720
1150
+
917
1151
  ___
918
1152
 
919
1153
  ### autocapitalize
@@ -924,6 +1158,24 @@ ___
924
1158
 
925
1159
  HTMLElement.autocapitalize
926
1160
 
1161
+ #### Defined in
1162
+
1163
+ node_modules/typescript/lib/lib.dom.d.ts:6135
1164
+
1165
+ ___
1166
+
1167
+ ### autofocus
1168
+
1169
+ • **autofocus**: `boolean`
1170
+
1171
+ #### Inherited from
1172
+
1173
+ HTMLElement.autofocus
1174
+
1175
+ #### Defined in
1176
+
1177
+ node_modules/typescript/lib/lib.dom.d.ts:7335
1178
+
927
1179
  ___
928
1180
 
929
1181
  ### baseURI
@@ -936,6 +1188,10 @@ Returns node's node document's document base URL.
936
1188
 
937
1189
  HTMLElement.baseURI
938
1190
 
1191
+ #### Defined in
1192
+
1193
+ node_modules/typescript/lib/lib.dom.d.ts:9649
1194
+
939
1195
  ___
940
1196
 
941
1197
  ### childElementCount
@@ -946,6 +1202,10 @@ ___
946
1202
 
947
1203
  HTMLElement.childElementCount
948
1204
 
1205
+ #### Defined in
1206
+
1207
+ node_modules/typescript/lib/lib.dom.d.ts:10014
1208
+
949
1209
  ___
950
1210
 
951
1211
  ### childNodes
@@ -958,6 +1218,10 @@ Returns the children.
958
1218
 
959
1219
  HTMLElement.childNodes
960
1220
 
1221
+ #### Defined in
1222
+
1223
+ node_modules/typescript/lib/lib.dom.d.ts:9651
1224
+
961
1225
  ___
962
1226
 
963
1227
  ### children
@@ -970,6 +1234,10 @@ Returns the child elements.
970
1234
 
971
1235
  HTMLElement.children
972
1236
 
1237
+ #### Defined in
1238
+
1239
+ node_modules/typescript/lib/lib.dom.d.ts:10016
1240
+
973
1241
  ___
974
1242
 
975
1243
  ### classList
@@ -982,6 +1250,10 @@ Allows for manipulation of element's class content attribute as a set of whitesp
982
1250
 
983
1251
  HTMLElement.classList
984
1252
 
1253
+ #### Defined in
1254
+
1255
+ node_modules/typescript/lib/lib.dom.d.ts:4722
1256
+
985
1257
  ___
986
1258
 
987
1259
  ### className
@@ -994,6 +1266,10 @@ Returns the value of element's class content attribute. Can be set to change it.
994
1266
 
995
1267
  HTMLElement.className
996
1268
 
1269
+ #### Defined in
1270
+
1271
+ node_modules/typescript/lib/lib.dom.d.ts:4724
1272
+
997
1273
  ___
998
1274
 
999
1275
  ### clientHeight
@@ -1004,6 +1280,10 @@ ___
1004
1280
 
1005
1281
  HTMLElement.clientHeight
1006
1282
 
1283
+ #### Defined in
1284
+
1285
+ node_modules/typescript/lib/lib.dom.d.ts:4725
1286
+
1007
1287
  ___
1008
1288
 
1009
1289
  ### clientLeft
@@ -1014,6 +1294,10 @@ ___
1014
1294
 
1015
1295
  HTMLElement.clientLeft
1016
1296
 
1297
+ #### Defined in
1298
+
1299
+ node_modules/typescript/lib/lib.dom.d.ts:4726
1300
+
1017
1301
  ___
1018
1302
 
1019
1303
  ### clientTop
@@ -1024,6 +1308,10 @@ ___
1024
1308
 
1025
1309
  HTMLElement.clientTop
1026
1310
 
1311
+ #### Defined in
1312
+
1313
+ node_modules/typescript/lib/lib.dom.d.ts:4727
1314
+
1027
1315
  ___
1028
1316
 
1029
1317
  ### clientWidth
@@ -1034,6 +1322,10 @@ ___
1034
1322
 
1035
1323
  HTMLElement.clientWidth
1036
1324
 
1325
+ #### Defined in
1326
+
1327
+ node_modules/typescript/lib/lib.dom.d.ts:4728
1328
+
1037
1329
  ___
1038
1330
 
1039
1331
  ### contentEditable
@@ -1044,6 +1336,10 @@ ___
1044
1336
 
1045
1337
  HTMLElement.contentEditable
1046
1338
 
1339
+ #### Defined in
1340
+
1341
+ node_modules/typescript/lib/lib.dom.d.ts:4839
1342
+
1047
1343
  ___
1048
1344
 
1049
1345
  ### contentLanguage
@@ -1057,6 +1353,10 @@ NOTE: This is not necessarily the same as the UI language, which is defined by t
1057
1353
  When a widget is added to a specific content, the content-language attribute gets automatically set
1058
1354
  to that language.
1059
1355
 
1356
+ #### Defined in
1357
+
1358
+ [lib/base-block.ts:108](https://github.com/Staffbase/widget-sdk/blob/7bb16cc/lib/base-block.ts#L108)
1359
+
1060
1360
  ___
1061
1361
 
1062
1362
  ### dataset
@@ -1067,6 +1367,10 @@ ___
1067
1367
 
1068
1368
  HTMLElement.dataset
1069
1369
 
1370
+ #### Defined in
1371
+
1372
+ node_modules/typescript/lib/lib.dom.d.ts:7336
1373
+
1070
1374
  ___
1071
1375
 
1072
1376
  ### dir
@@ -1077,6 +1381,10 @@ ___
1077
1381
 
1078
1382
  HTMLElement.dir
1079
1383
 
1384
+ #### Defined in
1385
+
1386
+ node_modules/typescript/lib/lib.dom.d.ts:6136
1387
+
1080
1388
  ___
1081
1389
 
1082
1390
  ### draggable
@@ -1087,6 +1395,10 @@ ___
1087
1395
 
1088
1396
  HTMLElement.draggable
1089
1397
 
1398
+ #### Defined in
1399
+
1400
+ node_modules/typescript/lib/lib.dom.d.ts:6137
1401
+
1090
1402
  ___
1091
1403
 
1092
1404
  ### enterKeyHint
@@ -1097,6 +1409,10 @@ ___
1097
1409
 
1098
1410
  HTMLElement.enterKeyHint
1099
1411
 
1412
+ #### Defined in
1413
+
1414
+ node_modules/typescript/lib/lib.dom.d.ts:4840
1415
+
1100
1416
  ___
1101
1417
 
1102
1418
  ### firstChild
@@ -1109,6 +1425,10 @@ Returns the first child.
1109
1425
 
1110
1426
  HTMLElement.firstChild
1111
1427
 
1428
+ #### Defined in
1429
+
1430
+ node_modules/typescript/lib/lib.dom.d.ts:9653
1431
+
1112
1432
  ___
1113
1433
 
1114
1434
  ### firstElementChild
@@ -1121,6 +1441,10 @@ Returns the first child that is an element, and null otherwise.
1121
1441
 
1122
1442
  HTMLElement.firstElementChild
1123
1443
 
1444
+ #### Defined in
1445
+
1446
+ node_modules/typescript/lib/lib.dom.d.ts:10018
1447
+
1124
1448
  ___
1125
1449
 
1126
1450
  ### hidden
@@ -1131,6 +1455,10 @@ ___
1131
1455
 
1132
1456
  HTMLElement.hidden
1133
1457
 
1458
+ #### Defined in
1459
+
1460
+ node_modules/typescript/lib/lib.dom.d.ts:6138
1461
+
1134
1462
  ___
1135
1463
 
1136
1464
  ### id
@@ -1143,6 +1471,10 @@ Returns the value of element's id content attribute. Can be set to change it.
1143
1471
 
1144
1472
  HTMLElement.id
1145
1473
 
1474
+ #### Defined in
1475
+
1476
+ node_modules/typescript/lib/lib.dom.d.ts:4730
1477
+
1146
1478
  ___
1147
1479
 
1148
1480
  ### innerHTML
@@ -1153,6 +1485,10 @@ ___
1153
1485
 
1154
1486
  HTMLElement.innerHTML
1155
1487
 
1488
+ #### Defined in
1489
+
1490
+ node_modules/typescript/lib/lib.dom.d.ts:8682
1491
+
1156
1492
  ___
1157
1493
 
1158
1494
  ### innerText
@@ -1163,6 +1499,10 @@ ___
1163
1499
 
1164
1500
  HTMLElement.innerText
1165
1501
 
1502
+ #### Defined in
1503
+
1504
+ node_modules/typescript/lib/lib.dom.d.ts:6139
1505
+
1166
1506
  ___
1167
1507
 
1168
1508
  ### inputMode
@@ -1173,6 +1513,10 @@ ___
1173
1513
 
1174
1514
  HTMLElement.inputMode
1175
1515
 
1516
+ #### Defined in
1517
+
1518
+ node_modules/typescript/lib/lib.dom.d.ts:4841
1519
+
1176
1520
  ___
1177
1521
 
1178
1522
  ### isConnected
@@ -1185,6 +1529,10 @@ Returns true if node is connected and false otherwise.
1185
1529
 
1186
1530
  HTMLElement.isConnected
1187
1531
 
1532
+ #### Defined in
1533
+
1534
+ node_modules/typescript/lib/lib.dom.d.ts:9655
1535
+
1188
1536
  ___
1189
1537
 
1190
1538
  ### isContentEditable
@@ -1195,6 +1543,10 @@ ___
1195
1543
 
1196
1544
  HTMLElement.isContentEditable
1197
1545
 
1546
+ #### Defined in
1547
+
1548
+ node_modules/typescript/lib/lib.dom.d.ts:4842
1549
+
1198
1550
  ___
1199
1551
 
1200
1552
  ### lang
@@ -1205,6 +1557,10 @@ ___
1205
1557
 
1206
1558
  HTMLElement.lang
1207
1559
 
1560
+ #### Defined in
1561
+
1562
+ node_modules/typescript/lib/lib.dom.d.ts:6140
1563
+
1208
1564
  ___
1209
1565
 
1210
1566
  ### lastChild
@@ -1217,6 +1573,10 @@ Returns the last child.
1217
1573
 
1218
1574
  HTMLElement.lastChild
1219
1575
 
1576
+ #### Defined in
1577
+
1578
+ node_modules/typescript/lib/lib.dom.d.ts:9657
1579
+
1220
1580
  ___
1221
1581
 
1222
1582
  ### lastElementChild
@@ -1229,6 +1589,10 @@ Returns the last child that is an element, and null otherwise.
1229
1589
 
1230
1590
  HTMLElement.lastElementChild
1231
1591
 
1592
+ #### Defined in
1593
+
1594
+ node_modules/typescript/lib/lib.dom.d.ts:10020
1595
+
1232
1596
  ___
1233
1597
 
1234
1598
  ### localName
@@ -1241,6 +1605,10 @@ Returns the local name.
1241
1605
 
1242
1606
  HTMLElement.localName
1243
1607
 
1608
+ #### Defined in
1609
+
1610
+ node_modules/typescript/lib/lib.dom.d.ts:4732
1611
+
1244
1612
  ___
1245
1613
 
1246
1614
  ### namespaceURI
@@ -1253,6 +1621,10 @@ Returns the namespace.
1253
1621
 
1254
1622
  HTMLElement.namespaceURI
1255
1623
 
1624
+ #### Defined in
1625
+
1626
+ node_modules/typescript/lib/lib.dom.d.ts:4734
1627
+
1256
1628
  ___
1257
1629
 
1258
1630
  ### nextElementSibling
@@ -1265,6 +1637,10 @@ Returns the first following sibling that is an element, and null otherwise.
1265
1637
 
1266
1638
  HTMLElement.nextElementSibling
1267
1639
 
1640
+ #### Defined in
1641
+
1642
+ node_modules/typescript/lib/lib.dom.d.ts:9816
1643
+
1268
1644
  ___
1269
1645
 
1270
1646
  ### nextSibling
@@ -1277,6 +1653,10 @@ Returns the next sibling.
1277
1653
 
1278
1654
  HTMLElement.nextSibling
1279
1655
 
1656
+ #### Defined in
1657
+
1658
+ node_modules/typescript/lib/lib.dom.d.ts:9659
1659
+
1280
1660
  ___
1281
1661
 
1282
1662
  ### nodeName
@@ -1289,6 +1669,10 @@ Returns a string appropriate for the type of node.
1289
1669
 
1290
1670
  HTMLElement.nodeName
1291
1671
 
1672
+ #### Defined in
1673
+
1674
+ node_modules/typescript/lib/lib.dom.d.ts:9661
1675
+
1292
1676
  ___
1293
1677
 
1294
1678
  ### nodeType
@@ -1301,6 +1685,10 @@ Returns the type of node.
1301
1685
 
1302
1686
  HTMLElement.nodeType
1303
1687
 
1688
+ #### Defined in
1689
+
1690
+ node_modules/typescript/lib/lib.dom.d.ts:9663
1691
+
1304
1692
  ___
1305
1693
 
1306
1694
  ### nodeValue
@@ -1311,6 +1699,10 @@ ___
1311
1699
 
1312
1700
  HTMLElement.nodeValue
1313
1701
 
1702
+ #### Defined in
1703
+
1704
+ node_modules/typescript/lib/lib.dom.d.ts:9664
1705
+
1314
1706
  ___
1315
1707
 
1316
1708
  ### nonce
@@ -1321,6 +1713,10 @@ ___
1321
1713
 
1322
1714
  HTMLElement.nonce
1323
1715
 
1716
+ #### Defined in
1717
+
1718
+ node_modules/typescript/lib/lib.dom.d.ts:7337
1719
+
1324
1720
  ___
1325
1721
 
1326
1722
  ### offsetHeight
@@ -1331,6 +1727,10 @@ ___
1331
1727
 
1332
1728
  HTMLElement.offsetHeight
1333
1729
 
1730
+ #### Defined in
1731
+
1732
+ node_modules/typescript/lib/lib.dom.d.ts:6141
1733
+
1334
1734
  ___
1335
1735
 
1336
1736
  ### offsetLeft
@@ -1341,6 +1741,10 @@ ___
1341
1741
 
1342
1742
  HTMLElement.offsetLeft
1343
1743
 
1744
+ #### Defined in
1745
+
1746
+ node_modules/typescript/lib/lib.dom.d.ts:6142
1747
+
1344
1748
  ___
1345
1749
 
1346
1750
  ### offsetParent
@@ -1351,6 +1755,10 @@ ___
1351
1755
 
1352
1756
  HTMLElement.offsetParent
1353
1757
 
1758
+ #### Defined in
1759
+
1760
+ node_modules/typescript/lib/lib.dom.d.ts:6143
1761
+
1354
1762
  ___
1355
1763
 
1356
1764
  ### offsetTop
@@ -1361,6 +1769,10 @@ ___
1361
1769
 
1362
1770
  HTMLElement.offsetTop
1363
1771
 
1772
+ #### Defined in
1773
+
1774
+ node_modules/typescript/lib/lib.dom.d.ts:6144
1775
+
1364
1776
  ___
1365
1777
 
1366
1778
  ### offsetWidth
@@ -1371,6 +1783,10 @@ ___
1371
1783
 
1372
1784
  HTMLElement.offsetWidth
1373
1785
 
1786
+ #### Defined in
1787
+
1788
+ node_modules/typescript/lib/lib.dom.d.ts:6145
1789
+
1374
1790
  ___
1375
1791
 
1376
1792
  ### onabort
@@ -1385,6 +1801,10 @@ Fires when the user aborts the download.
1385
1801
 
1386
1802
  HTMLElement.onabort
1387
1803
 
1804
+ #### Defined in
1805
+
1806
+ node_modules/typescript/lib/lib.dom.d.ts:5454
1807
+
1388
1808
  ___
1389
1809
 
1390
1810
  ### onanimationcancel
@@ -1395,6 +1815,10 @@ ___
1395
1815
 
1396
1816
  HTMLElement.onanimationcancel
1397
1817
 
1818
+ #### Defined in
1819
+
1820
+ node_modules/typescript/lib/lib.dom.d.ts:5455
1821
+
1398
1822
  ___
1399
1823
 
1400
1824
  ### onanimationend
@@ -1405,6 +1829,10 @@ ___
1405
1829
 
1406
1830
  HTMLElement.onanimationend
1407
1831
 
1832
+ #### Defined in
1833
+
1834
+ node_modules/typescript/lib/lib.dom.d.ts:5456
1835
+
1408
1836
  ___
1409
1837
 
1410
1838
  ### onanimationiteration
@@ -1415,6 +1843,10 @@ ___
1415
1843
 
1416
1844
  HTMLElement.onanimationiteration
1417
1845
 
1846
+ #### Defined in
1847
+
1848
+ node_modules/typescript/lib/lib.dom.d.ts:5457
1849
+
1418
1850
  ___
1419
1851
 
1420
1852
  ### onanimationstart
@@ -1425,6 +1857,10 @@ ___
1425
1857
 
1426
1858
  HTMLElement.onanimationstart
1427
1859
 
1860
+ #### Defined in
1861
+
1862
+ node_modules/typescript/lib/lib.dom.d.ts:5458
1863
+
1428
1864
  ___
1429
1865
 
1430
1866
  ### onauxclick
@@ -1435,6 +1871,10 @@ ___
1435
1871
 
1436
1872
  HTMLElement.onauxclick
1437
1873
 
1874
+ #### Defined in
1875
+
1876
+ node_modules/typescript/lib/lib.dom.d.ts:5459
1877
+
1438
1878
  ___
1439
1879
 
1440
1880
  ### onblur
@@ -1449,6 +1889,10 @@ Fires when the object loses the input focus.
1449
1889
 
1450
1890
  HTMLElement.onblur
1451
1891
 
1892
+ #### Defined in
1893
+
1894
+ node_modules/typescript/lib/lib.dom.d.ts:5464
1895
+
1452
1896
  ___
1453
1897
 
1454
1898
  ### oncanplay
@@ -1463,6 +1907,10 @@ Occurs when playback is possible, but would require further buffering.
1463
1907
 
1464
1908
  HTMLElement.oncanplay
1465
1909
 
1910
+ #### Defined in
1911
+
1912
+ node_modules/typescript/lib/lib.dom.d.ts:5469
1913
+
1466
1914
  ___
1467
1915
 
1468
1916
  ### oncanplaythrough
@@ -1473,6 +1921,10 @@ ___
1473
1921
 
1474
1922
  HTMLElement.oncanplaythrough
1475
1923
 
1924
+ #### Defined in
1925
+
1926
+ node_modules/typescript/lib/lib.dom.d.ts:5470
1927
+
1476
1928
  ___
1477
1929
 
1478
1930
  ### onchange
@@ -1487,6 +1939,10 @@ Fires when the contents of the object or selection have changed.
1487
1939
 
1488
1940
  HTMLElement.onchange
1489
1941
 
1942
+ #### Defined in
1943
+
1944
+ node_modules/typescript/lib/lib.dom.d.ts:5475
1945
+
1490
1946
  ___
1491
1947
 
1492
1948
  ### onclick
@@ -1501,6 +1957,10 @@ Fires when the user clicks the left mouse button on the object
1501
1957
 
1502
1958
  HTMLElement.onclick
1503
1959
 
1960
+ #### Defined in
1961
+
1962
+ node_modules/typescript/lib/lib.dom.d.ts:5480
1963
+
1504
1964
  ___
1505
1965
 
1506
1966
  ### onclose
@@ -1511,6 +1971,10 @@ ___
1511
1971
 
1512
1972
  HTMLElement.onclose
1513
1973
 
1974
+ #### Defined in
1975
+
1976
+ node_modules/typescript/lib/lib.dom.d.ts:5481
1977
+
1514
1978
  ___
1515
1979
 
1516
1980
  ### oncontextmenu
@@ -1525,6 +1989,10 @@ Fires when the user clicks the right mouse button in the client area, opening th
1525
1989
 
1526
1990
  HTMLElement.oncontextmenu
1527
1991
 
1992
+ #### Defined in
1993
+
1994
+ node_modules/typescript/lib/lib.dom.d.ts:5486
1995
+
1528
1996
  ___
1529
1997
 
1530
1998
  ### oncopy
@@ -1535,6 +2003,10 @@ ___
1535
2003
 
1536
2004
  HTMLElement.oncopy
1537
2005
 
2006
+ #### Defined in
2007
+
2008
+ node_modules/typescript/lib/lib.dom.d.ts:4576
2009
+
1538
2010
  ___
1539
2011
 
1540
2012
  ### oncuechange
@@ -1545,6 +2017,10 @@ ___
1545
2017
 
1546
2018
  HTMLElement.oncuechange
1547
2019
 
2020
+ #### Defined in
2021
+
2022
+ node_modules/typescript/lib/lib.dom.d.ts:5487
2023
+
1548
2024
  ___
1549
2025
 
1550
2026
  ### oncut
@@ -1555,6 +2031,10 @@ ___
1555
2031
 
1556
2032
  HTMLElement.oncut
1557
2033
 
2034
+ #### Defined in
2035
+
2036
+ node_modules/typescript/lib/lib.dom.d.ts:4577
2037
+
1558
2038
  ___
1559
2039
 
1560
2040
  ### ondblclick
@@ -1569,6 +2049,10 @@ Fires when the user double-clicks the object.
1569
2049
 
1570
2050
  HTMLElement.ondblclick
1571
2051
 
2052
+ #### Defined in
2053
+
2054
+ node_modules/typescript/lib/lib.dom.d.ts:5492
2055
+
1572
2056
  ___
1573
2057
 
1574
2058
  ### ondrag
@@ -1583,6 +2067,10 @@ Fires on the source object continuously during a drag operation.
1583
2067
 
1584
2068
  HTMLElement.ondrag
1585
2069
 
2070
+ #### Defined in
2071
+
2072
+ node_modules/typescript/lib/lib.dom.d.ts:5497
2073
+
1586
2074
  ___
1587
2075
 
1588
2076
  ### ondragend
@@ -1597,6 +2085,10 @@ Fires on the source object when the user releases the mouse at the close of a dr
1597
2085
 
1598
2086
  HTMLElement.ondragend
1599
2087
 
2088
+ #### Defined in
2089
+
2090
+ node_modules/typescript/lib/lib.dom.d.ts:5502
2091
+
1600
2092
  ___
1601
2093
 
1602
2094
  ### ondragenter
@@ -1611,6 +2103,10 @@ Fires on the target element when the user drags the object to a valid drop targe
1611
2103
 
1612
2104
  HTMLElement.ondragenter
1613
2105
 
2106
+ #### Defined in
2107
+
2108
+ node_modules/typescript/lib/lib.dom.d.ts:5507
2109
+
1614
2110
  ___
1615
2111
 
1616
2112
  ### ondragleave
@@ -1625,6 +2121,10 @@ Fires on the target object when the user moves the mouse out of a valid drop tar
1625
2121
 
1626
2122
  HTMLElement.ondragleave
1627
2123
 
2124
+ #### Defined in
2125
+
2126
+ node_modules/typescript/lib/lib.dom.d.ts:5512
2127
+
1628
2128
  ___
1629
2129
 
1630
2130
  ### ondragover
@@ -1639,6 +2139,10 @@ Fires on the target element continuously while the user drags the object over a
1639
2139
 
1640
2140
  HTMLElement.ondragover
1641
2141
 
2142
+ #### Defined in
2143
+
2144
+ node_modules/typescript/lib/lib.dom.d.ts:5517
2145
+
1642
2146
  ___
1643
2147
 
1644
2148
  ### ondragstart
@@ -1653,6 +2157,10 @@ Fires on the source object when the user starts to drag a text selection or sele
1653
2157
 
1654
2158
  HTMLElement.ondragstart
1655
2159
 
2160
+ #### Defined in
2161
+
2162
+ node_modules/typescript/lib/lib.dom.d.ts:5522
2163
+
1656
2164
  ___
1657
2165
 
1658
2166
  ### ondrop
@@ -1663,6 +2171,10 @@ ___
1663
2171
 
1664
2172
  HTMLElement.ondrop
1665
2173
 
2174
+ #### Defined in
2175
+
2176
+ node_modules/typescript/lib/lib.dom.d.ts:5523
2177
+
1666
2178
  ___
1667
2179
 
1668
2180
  ### ondurationchange
@@ -1677,6 +2189,10 @@ Occurs when the duration attribute is updated.
1677
2189
 
1678
2190
  HTMLElement.ondurationchange
1679
2191
 
2192
+ #### Defined in
2193
+
2194
+ node_modules/typescript/lib/lib.dom.d.ts:5528
2195
+
1680
2196
  ___
1681
2197
 
1682
2198
  ### onemptied
@@ -1691,6 +2207,10 @@ Occurs when the media element is reset to its initial state.
1691
2207
 
1692
2208
  HTMLElement.onemptied
1693
2209
 
2210
+ #### Defined in
2211
+
2212
+ node_modules/typescript/lib/lib.dom.d.ts:5533
2213
+
1694
2214
  ___
1695
2215
 
1696
2216
  ### onended
@@ -1705,6 +2225,10 @@ Occurs when the end of playback is reached.
1705
2225
 
1706
2226
  HTMLElement.onended
1707
2227
 
2228
+ #### Defined in
2229
+
2230
+ node_modules/typescript/lib/lib.dom.d.ts:5538
2231
+
1708
2232
  ___
1709
2233
 
1710
2234
  ### onerror
@@ -1719,6 +2243,10 @@ Fires when an error occurs during object loading.
1719
2243
 
1720
2244
  HTMLElement.onerror
1721
2245
 
2246
+ #### Defined in
2247
+
2248
+ node_modules/typescript/lib/lib.dom.d.ts:5543
2249
+
1722
2250
  ___
1723
2251
 
1724
2252
  ### onfocus
@@ -1733,6 +2261,10 @@ Fires when the object receives focus.
1733
2261
 
1734
2262
  HTMLElement.onfocus
1735
2263
 
2264
+ #### Defined in
2265
+
2266
+ node_modules/typescript/lib/lib.dom.d.ts:5548
2267
+
1736
2268
  ___
1737
2269
 
1738
2270
  ### onformdata
@@ -1743,6 +2275,10 @@ ___
1743
2275
 
1744
2276
  HTMLElement.onformdata
1745
2277
 
2278
+ #### Defined in
2279
+
2280
+ node_modules/typescript/lib/lib.dom.d.ts:5549
2281
+
1746
2282
  ___
1747
2283
 
1748
2284
  ### onfullscreenchange
@@ -1753,6 +2289,10 @@ ___
1753
2289
 
1754
2290
  HTMLElement.onfullscreenchange
1755
2291
 
2292
+ #### Defined in
2293
+
2294
+ node_modules/typescript/lib/lib.dom.d.ts:4735
2295
+
1756
2296
  ___
1757
2297
 
1758
2298
  ### onfullscreenerror
@@ -1763,6 +2303,10 @@ ___
1763
2303
 
1764
2304
  HTMLElement.onfullscreenerror
1765
2305
 
2306
+ #### Defined in
2307
+
2308
+ node_modules/typescript/lib/lib.dom.d.ts:4736
2309
+
1766
2310
  ___
1767
2311
 
1768
2312
  ### ongotpointercapture
@@ -1773,6 +2317,10 @@ ___
1773
2317
 
1774
2318
  HTMLElement.ongotpointercapture
1775
2319
 
2320
+ #### Defined in
2321
+
2322
+ node_modules/typescript/lib/lib.dom.d.ts:5550
2323
+
1776
2324
  ___
1777
2325
 
1778
2326
  ### oninput
@@ -1783,6 +2331,10 @@ ___
1783
2331
 
1784
2332
  HTMLElement.oninput
1785
2333
 
2334
+ #### Defined in
2335
+
2336
+ node_modules/typescript/lib/lib.dom.d.ts:5551
2337
+
1786
2338
  ___
1787
2339
 
1788
2340
  ### oninvalid
@@ -1793,6 +2345,10 @@ ___
1793
2345
 
1794
2346
  HTMLElement.oninvalid
1795
2347
 
2348
+ #### Defined in
2349
+
2350
+ node_modules/typescript/lib/lib.dom.d.ts:5552
2351
+
1796
2352
  ___
1797
2353
 
1798
2354
  ### onkeydown
@@ -1807,6 +2363,10 @@ Fires when the user presses a key.
1807
2363
 
1808
2364
  HTMLElement.onkeydown
1809
2365
 
2366
+ #### Defined in
2367
+
2368
+ node_modules/typescript/lib/lib.dom.d.ts:5557
2369
+
1810
2370
  ___
1811
2371
 
1812
2372
  ### onkeypress
@@ -1823,6 +2383,10 @@ Fires when the user presses an alphanumeric key.
1823
2383
 
1824
2384
  HTMLElement.onkeypress
1825
2385
 
2386
+ #### Defined in
2387
+
2388
+ node_modules/typescript/lib/lib.dom.d.ts:5563
2389
+
1826
2390
  ___
1827
2391
 
1828
2392
  ### onkeyup
@@ -1837,6 +2401,10 @@ Fires when the user releases a key.
1837
2401
 
1838
2402
  HTMLElement.onkeyup
1839
2403
 
2404
+ #### Defined in
2405
+
2406
+ node_modules/typescript/lib/lib.dom.d.ts:5568
2407
+
1840
2408
  ___
1841
2409
 
1842
2410
  ### onload
@@ -1851,6 +2419,10 @@ Fires immediately after the browser loads the object.
1851
2419
 
1852
2420
  HTMLElement.onload
1853
2421
 
2422
+ #### Defined in
2423
+
2424
+ node_modules/typescript/lib/lib.dom.d.ts:5573
2425
+
1854
2426
  ___
1855
2427
 
1856
2428
  ### onloadeddata
@@ -1865,6 +2437,10 @@ Occurs when media data is loaded at the current playback position.
1865
2437
 
1866
2438
  HTMLElement.onloadeddata
1867
2439
 
2440
+ #### Defined in
2441
+
2442
+ node_modules/typescript/lib/lib.dom.d.ts:5578
2443
+
1868
2444
  ___
1869
2445
 
1870
2446
  ### onloadedmetadata
@@ -1879,6 +2455,10 @@ Occurs when the duration and dimensions of the media have been determined.
1879
2455
 
1880
2456
  HTMLElement.onloadedmetadata
1881
2457
 
2458
+ #### Defined in
2459
+
2460
+ node_modules/typescript/lib/lib.dom.d.ts:5583
2461
+
1882
2462
  ___
1883
2463
 
1884
2464
  ### onloadstart
@@ -1893,6 +2473,10 @@ Occurs when Internet Explorer begins looking for media data.
1893
2473
 
1894
2474
  HTMLElement.onloadstart
1895
2475
 
2476
+ #### Defined in
2477
+
2478
+ node_modules/typescript/lib/lib.dom.d.ts:5588
2479
+
1896
2480
  ___
1897
2481
 
1898
2482
  ### onlostpointercapture
@@ -1903,6 +2487,10 @@ ___
1903
2487
 
1904
2488
  HTMLElement.onlostpointercapture
1905
2489
 
2490
+ #### Defined in
2491
+
2492
+ node_modules/typescript/lib/lib.dom.d.ts:5589
2493
+
1906
2494
  ___
1907
2495
 
1908
2496
  ### onmousedown
@@ -1917,6 +2505,10 @@ Fires when the user clicks the object with either mouse button.
1917
2505
 
1918
2506
  HTMLElement.onmousedown
1919
2507
 
2508
+ #### Defined in
2509
+
2510
+ node_modules/typescript/lib/lib.dom.d.ts:5594
2511
+
1920
2512
  ___
1921
2513
 
1922
2514
  ### onmouseenter
@@ -1927,6 +2519,10 @@ ___
1927
2519
 
1928
2520
  HTMLElement.onmouseenter
1929
2521
 
2522
+ #### Defined in
2523
+
2524
+ node_modules/typescript/lib/lib.dom.d.ts:5595
2525
+
1930
2526
  ___
1931
2527
 
1932
2528
  ### onmouseleave
@@ -1937,6 +2533,10 @@ ___
1937
2533
 
1938
2534
  HTMLElement.onmouseleave
1939
2535
 
2536
+ #### Defined in
2537
+
2538
+ node_modules/typescript/lib/lib.dom.d.ts:5596
2539
+
1940
2540
  ___
1941
2541
 
1942
2542
  ### onmousemove
@@ -1951,6 +2551,10 @@ Fires when the user moves the mouse over the object.
1951
2551
 
1952
2552
  HTMLElement.onmousemove
1953
2553
 
2554
+ #### Defined in
2555
+
2556
+ node_modules/typescript/lib/lib.dom.d.ts:5601
2557
+
1954
2558
  ___
1955
2559
 
1956
2560
  ### onmouseout
@@ -1965,6 +2569,10 @@ Fires when the user moves the mouse pointer outside the boundaries of the object
1965
2569
 
1966
2570
  HTMLElement.onmouseout
1967
2571
 
2572
+ #### Defined in
2573
+
2574
+ node_modules/typescript/lib/lib.dom.d.ts:5606
2575
+
1968
2576
  ___
1969
2577
 
1970
2578
  ### onmouseover
@@ -1979,6 +2587,10 @@ Fires when the user moves the mouse pointer into the object.
1979
2587
 
1980
2588
  HTMLElement.onmouseover
1981
2589
 
2590
+ #### Defined in
2591
+
2592
+ node_modules/typescript/lib/lib.dom.d.ts:5611
2593
+
1982
2594
  ___
1983
2595
 
1984
2596
  ### onmouseup
@@ -1993,6 +2605,10 @@ Fires when the user releases a mouse button while the mouse is over the object.
1993
2605
 
1994
2606
  HTMLElement.onmouseup
1995
2607
 
2608
+ #### Defined in
2609
+
2610
+ node_modules/typescript/lib/lib.dom.d.ts:5616
2611
+
1996
2612
  ___
1997
2613
 
1998
2614
  ### onpaste
@@ -2003,6 +2619,10 @@ ___
2003
2619
 
2004
2620
  HTMLElement.onpaste
2005
2621
 
2622
+ #### Defined in
2623
+
2624
+ node_modules/typescript/lib/lib.dom.d.ts:4578
2625
+
2006
2626
  ___
2007
2627
 
2008
2628
  ### onpause
@@ -2017,6 +2637,10 @@ Occurs when playback is paused.
2017
2637
 
2018
2638
  HTMLElement.onpause
2019
2639
 
2640
+ #### Defined in
2641
+
2642
+ node_modules/typescript/lib/lib.dom.d.ts:5621
2643
+
2020
2644
  ___
2021
2645
 
2022
2646
  ### onplay
@@ -2031,6 +2655,10 @@ Occurs when the play method is requested.
2031
2655
 
2032
2656
  HTMLElement.onplay
2033
2657
 
2658
+ #### Defined in
2659
+
2660
+ node_modules/typescript/lib/lib.dom.d.ts:5626
2661
+
2034
2662
  ___
2035
2663
 
2036
2664
  ### onplaying
@@ -2045,6 +2673,10 @@ Occurs when the audio or video has started playing.
2045
2673
 
2046
2674
  HTMLElement.onplaying
2047
2675
 
2676
+ #### Defined in
2677
+
2678
+ node_modules/typescript/lib/lib.dom.d.ts:5631
2679
+
2048
2680
  ___
2049
2681
 
2050
2682
  ### onpointercancel
@@ -2055,6 +2687,10 @@ ___
2055
2687
 
2056
2688
  HTMLElement.onpointercancel
2057
2689
 
2690
+ #### Defined in
2691
+
2692
+ node_modules/typescript/lib/lib.dom.d.ts:5632
2693
+
2058
2694
  ___
2059
2695
 
2060
2696
  ### onpointerdown
@@ -2065,6 +2701,10 @@ ___
2065
2701
 
2066
2702
  HTMLElement.onpointerdown
2067
2703
 
2704
+ #### Defined in
2705
+
2706
+ node_modules/typescript/lib/lib.dom.d.ts:5633
2707
+
2068
2708
  ___
2069
2709
 
2070
2710
  ### onpointerenter
@@ -2075,6 +2715,10 @@ ___
2075
2715
 
2076
2716
  HTMLElement.onpointerenter
2077
2717
 
2718
+ #### Defined in
2719
+
2720
+ node_modules/typescript/lib/lib.dom.d.ts:5634
2721
+
2078
2722
  ___
2079
2723
 
2080
2724
  ### onpointerleave
@@ -2085,6 +2729,10 @@ ___
2085
2729
 
2086
2730
  HTMLElement.onpointerleave
2087
2731
 
2732
+ #### Defined in
2733
+
2734
+ node_modules/typescript/lib/lib.dom.d.ts:5635
2735
+
2088
2736
  ___
2089
2737
 
2090
2738
  ### onpointermove
@@ -2095,6 +2743,10 @@ ___
2095
2743
 
2096
2744
  HTMLElement.onpointermove
2097
2745
 
2746
+ #### Defined in
2747
+
2748
+ node_modules/typescript/lib/lib.dom.d.ts:5636
2749
+
2098
2750
  ___
2099
2751
 
2100
2752
  ### onpointerout
@@ -2105,6 +2757,10 @@ ___
2105
2757
 
2106
2758
  HTMLElement.onpointerout
2107
2759
 
2760
+ #### Defined in
2761
+
2762
+ node_modules/typescript/lib/lib.dom.d.ts:5637
2763
+
2108
2764
  ___
2109
2765
 
2110
2766
  ### onpointerover
@@ -2115,6 +2771,10 @@ ___
2115
2771
 
2116
2772
  HTMLElement.onpointerover
2117
2773
 
2774
+ #### Defined in
2775
+
2776
+ node_modules/typescript/lib/lib.dom.d.ts:5638
2777
+
2118
2778
  ___
2119
2779
 
2120
2780
  ### onpointerup
@@ -2125,6 +2785,10 @@ ___
2125
2785
 
2126
2786
  HTMLElement.onpointerup
2127
2787
 
2788
+ #### Defined in
2789
+
2790
+ node_modules/typescript/lib/lib.dom.d.ts:5639
2791
+
2128
2792
  ___
2129
2793
 
2130
2794
  ### onprogress
@@ -2139,6 +2803,10 @@ Occurs to indicate progress while downloading media data.
2139
2803
 
2140
2804
  HTMLElement.onprogress
2141
2805
 
2806
+ #### Defined in
2807
+
2808
+ node_modules/typescript/lib/lib.dom.d.ts:5644
2809
+
2142
2810
  ___
2143
2811
 
2144
2812
  ### onratechange
@@ -2153,6 +2821,10 @@ Occurs when the playback rate is increased or decreased.
2153
2821
 
2154
2822
  HTMLElement.onratechange
2155
2823
 
2824
+ #### Defined in
2825
+
2826
+ node_modules/typescript/lib/lib.dom.d.ts:5649
2827
+
2156
2828
  ___
2157
2829
 
2158
2830
  ### onreset
@@ -2167,6 +2839,10 @@ Fires when the user resets a form.
2167
2839
 
2168
2840
  HTMLElement.onreset
2169
2841
 
2842
+ #### Defined in
2843
+
2844
+ node_modules/typescript/lib/lib.dom.d.ts:5654
2845
+
2170
2846
  ___
2171
2847
 
2172
2848
  ### onresize
@@ -2177,6 +2853,10 @@ ___
2177
2853
 
2178
2854
  HTMLElement.onresize
2179
2855
 
2856
+ #### Defined in
2857
+
2858
+ node_modules/typescript/lib/lib.dom.d.ts:5655
2859
+
2180
2860
  ___
2181
2861
 
2182
2862
  ### onscroll
@@ -2191,6 +2871,10 @@ Fires when the user repositions the scroll box in the scroll bar on the object.
2191
2871
 
2192
2872
  HTMLElement.onscroll
2193
2873
 
2874
+ #### Defined in
2875
+
2876
+ node_modules/typescript/lib/lib.dom.d.ts:5660
2877
+
2194
2878
  ___
2195
2879
 
2196
2880
  ### onseeked
@@ -2205,6 +2889,10 @@ Occurs when the seek operation ends.
2205
2889
 
2206
2890
  HTMLElement.onseeked
2207
2891
 
2892
+ #### Defined in
2893
+
2894
+ node_modules/typescript/lib/lib.dom.d.ts:5665
2895
+
2208
2896
  ___
2209
2897
 
2210
2898
  ### onseeking
@@ -2219,6 +2907,10 @@ Occurs when the current playback position is moved.
2219
2907
 
2220
2908
  HTMLElement.onseeking
2221
2909
 
2910
+ #### Defined in
2911
+
2912
+ node_modules/typescript/lib/lib.dom.d.ts:5670
2913
+
2222
2914
  ___
2223
2915
 
2224
2916
  ### onselect
@@ -2233,6 +2925,10 @@ Fires when the current selection changes.
2233
2925
 
2234
2926
  HTMLElement.onselect
2235
2927
 
2928
+ #### Defined in
2929
+
2930
+ node_modules/typescript/lib/lib.dom.d.ts:5675
2931
+
2236
2932
  ___
2237
2933
 
2238
2934
  ### onselectionchange
@@ -2243,6 +2939,10 @@ ___
2243
2939
 
2244
2940
  HTMLElement.onselectionchange
2245
2941
 
2942
+ #### Defined in
2943
+
2944
+ node_modules/typescript/lib/lib.dom.d.ts:5676
2945
+
2246
2946
  ___
2247
2947
 
2248
2948
  ### onselectstart
@@ -2253,6 +2953,10 @@ ___
2253
2953
 
2254
2954
  HTMLElement.onselectstart
2255
2955
 
2956
+ #### Defined in
2957
+
2958
+ node_modules/typescript/lib/lib.dom.d.ts:5677
2959
+
2256
2960
  ___
2257
2961
 
2258
2962
  ### onstalled
@@ -2267,16 +2971,24 @@ Occurs when the download has stopped.
2267
2971
 
2268
2972
  HTMLElement.onstalled
2269
2973
 
2974
+ #### Defined in
2975
+
2976
+ node_modules/typescript/lib/lib.dom.d.ts:5682
2977
+
2270
2978
  ___
2271
2979
 
2272
2980
  ### onsubmit
2273
2981
 
2274
- • **onsubmit**: ``null`` \| (`ev`: `Event`) => `any`
2982
+ • **onsubmit**: ``null`` \| (`ev`: `SubmitEvent`) => `any`
2275
2983
 
2276
2984
  #### Inherited from
2277
2985
 
2278
2986
  HTMLElement.onsubmit
2279
2987
 
2988
+ #### Defined in
2989
+
2990
+ node_modules/typescript/lib/lib.dom.d.ts:5683
2991
+
2280
2992
  ___
2281
2993
 
2282
2994
  ### onsuspend
@@ -2291,6 +3003,10 @@ Occurs if the load operation has been intentionally halted.
2291
3003
 
2292
3004
  HTMLElement.onsuspend
2293
3005
 
3006
+ #### Defined in
3007
+
3008
+ node_modules/typescript/lib/lib.dom.d.ts:5688
3009
+
2294
3010
  ___
2295
3011
 
2296
3012
  ### ontimeupdate
@@ -2305,6 +3021,10 @@ Occurs to indicate the current playback position.
2305
3021
 
2306
3022
  HTMLElement.ontimeupdate
2307
3023
 
3024
+ #### Defined in
3025
+
3026
+ node_modules/typescript/lib/lib.dom.d.ts:5693
3027
+
2308
3028
  ___
2309
3029
 
2310
3030
  ### ontoggle
@@ -2315,6 +3035,10 @@ ___
2315
3035
 
2316
3036
  HTMLElement.ontoggle
2317
3037
 
3038
+ #### Defined in
3039
+
3040
+ node_modules/typescript/lib/lib.dom.d.ts:5694
3041
+
2318
3042
  ___
2319
3043
 
2320
3044
  ### ontouchcancel
@@ -2325,6 +3049,10 @@ ___
2325
3049
 
2326
3050
  HTMLElement.ontouchcancel
2327
3051
 
3052
+ #### Defined in
3053
+
3054
+ node_modules/typescript/lib/lib.dom.d.ts:5695
3055
+
2328
3056
  ___
2329
3057
 
2330
3058
  ### ontouchend
@@ -2335,6 +3063,10 @@ ___
2335
3063
 
2336
3064
  HTMLElement.ontouchend
2337
3065
 
3066
+ #### Defined in
3067
+
3068
+ node_modules/typescript/lib/lib.dom.d.ts:5696
3069
+
2338
3070
  ___
2339
3071
 
2340
3072
  ### ontouchmove
@@ -2345,6 +3077,10 @@ ___
2345
3077
 
2346
3078
  HTMLElement.ontouchmove
2347
3079
 
3080
+ #### Defined in
3081
+
3082
+ node_modules/typescript/lib/lib.dom.d.ts:5697
3083
+
2348
3084
  ___
2349
3085
 
2350
3086
  ### ontouchstart
@@ -2355,6 +3091,10 @@ ___
2355
3091
 
2356
3092
  HTMLElement.ontouchstart
2357
3093
 
3094
+ #### Defined in
3095
+
3096
+ node_modules/typescript/lib/lib.dom.d.ts:5698
3097
+
2358
3098
  ___
2359
3099
 
2360
3100
  ### ontransitioncancel
@@ -2365,6 +3105,10 @@ ___
2365
3105
 
2366
3106
  HTMLElement.ontransitioncancel
2367
3107
 
3108
+ #### Defined in
3109
+
3110
+ node_modules/typescript/lib/lib.dom.d.ts:5699
3111
+
2368
3112
  ___
2369
3113
 
2370
3114
  ### ontransitionend
@@ -2375,6 +3119,10 @@ ___
2375
3119
 
2376
3120
  HTMLElement.ontransitionend
2377
3121
 
3122
+ #### Defined in
3123
+
3124
+ node_modules/typescript/lib/lib.dom.d.ts:5700
3125
+
2378
3126
  ___
2379
3127
 
2380
3128
  ### ontransitionrun
@@ -2385,6 +3133,10 @@ ___
2385
3133
 
2386
3134
  HTMLElement.ontransitionrun
2387
3135
 
3136
+ #### Defined in
3137
+
3138
+ node_modules/typescript/lib/lib.dom.d.ts:5701
3139
+
2388
3140
  ___
2389
3141
 
2390
3142
  ### ontransitionstart
@@ -2395,6 +3147,10 @@ ___
2395
3147
 
2396
3148
  HTMLElement.ontransitionstart
2397
3149
 
3150
+ #### Defined in
3151
+
3152
+ node_modules/typescript/lib/lib.dom.d.ts:5702
3153
+
2398
3154
  ___
2399
3155
 
2400
3156
  ### onvolumechange
@@ -2409,6 +3165,10 @@ Occurs when the volume is changed, or playback is muted or unmuted.
2409
3165
 
2410
3166
  HTMLElement.onvolumechange
2411
3167
 
3168
+ #### Defined in
3169
+
3170
+ node_modules/typescript/lib/lib.dom.d.ts:5707
3171
+
2412
3172
  ___
2413
3173
 
2414
3174
  ### onwaiting
@@ -2423,46 +3183,74 @@ Occurs when playback stops because the next frame of a video resource is not ava
2423
3183
 
2424
3184
  HTMLElement.onwaiting
2425
3185
 
3186
+ #### Defined in
3187
+
3188
+ node_modules/typescript/lib/lib.dom.d.ts:5712
3189
+
2426
3190
  ___
2427
3191
 
2428
3192
  ### onwebkitanimationend
2429
3193
 
2430
3194
  • **onwebkitanimationend**: ``null`` \| (`ev`: `Event`) => `any`
2431
3195
 
3196
+ **`deprecated`** This is a legacy alias of `onanimationend`.
3197
+
2432
3198
  #### Inherited from
2433
3199
 
2434
3200
  HTMLElement.onwebkitanimationend
2435
3201
 
3202
+ #### Defined in
3203
+
3204
+ node_modules/typescript/lib/lib.dom.d.ts:5714
3205
+
2436
3206
  ___
2437
3207
 
2438
3208
  ### onwebkitanimationiteration
2439
3209
 
2440
3210
  • **onwebkitanimationiteration**: ``null`` \| (`ev`: `Event`) => `any`
2441
3211
 
3212
+ **`deprecated`** This is a legacy alias of `onanimationiteration`.
3213
+
2442
3214
  #### Inherited from
2443
3215
 
2444
3216
  HTMLElement.onwebkitanimationiteration
2445
3217
 
3218
+ #### Defined in
3219
+
3220
+ node_modules/typescript/lib/lib.dom.d.ts:5716
3221
+
2446
3222
  ___
2447
3223
 
2448
3224
  ### onwebkitanimationstart
2449
3225
 
2450
3226
  • **onwebkitanimationstart**: ``null`` \| (`ev`: `Event`) => `any`
2451
3227
 
3228
+ **`deprecated`** This is a legacy alias of `onanimationstart`.
3229
+
2452
3230
  #### Inherited from
2453
3231
 
2454
3232
  HTMLElement.onwebkitanimationstart
2455
3233
 
3234
+ #### Defined in
3235
+
3236
+ node_modules/typescript/lib/lib.dom.d.ts:5718
3237
+
2456
3238
  ___
2457
3239
 
2458
3240
  ### onwebkittransitionend
2459
3241
 
2460
3242
  • **onwebkittransitionend**: ``null`` \| (`ev`: `Event`) => `any`
2461
3243
 
3244
+ **`deprecated`** This is a legacy alias of `ontransitionend`.
3245
+
2462
3246
  #### Inherited from
2463
3247
 
2464
3248
  HTMLElement.onwebkittransitionend
2465
3249
 
3250
+ #### Defined in
3251
+
3252
+ node_modules/typescript/lib/lib.dom.d.ts:5720
3253
+
2466
3254
  ___
2467
3255
 
2468
3256
  ### onwheel
@@ -2473,6 +3261,10 @@ ___
2473
3261
 
2474
3262
  HTMLElement.onwheel
2475
3263
 
3264
+ #### Defined in
3265
+
3266
+ node_modules/typescript/lib/lib.dom.d.ts:5721
3267
+
2476
3268
  ___
2477
3269
 
2478
3270
  ### outerHTML
@@ -2483,6 +3275,10 @@ ___
2483
3275
 
2484
3276
  HTMLElement.outerHTML
2485
3277
 
3278
+ #### Defined in
3279
+
3280
+ node_modules/typescript/lib/lib.dom.d.ts:4737
3281
+
2486
3282
  ___
2487
3283
 
2488
3284
  ### outerText
@@ -2493,6 +3289,10 @@ ___
2493
3289
 
2494
3290
  HTMLElement.outerText
2495
3291
 
3292
+ #### Defined in
3293
+
3294
+ node_modules/typescript/lib/lib.dom.d.ts:6146
3295
+
2496
3296
  ___
2497
3297
 
2498
3298
  ### ownerDocument
@@ -2503,6 +3303,10 @@ ___
2503
3303
 
2504
3304
  HTMLElement.ownerDocument
2505
3305
 
3306
+ #### Defined in
3307
+
3308
+ node_modules/typescript/lib/lib.dom.d.ts:4738
3309
+
2506
3310
  ___
2507
3311
 
2508
3312
  ### parentElement
@@ -2515,6 +3319,10 @@ Returns the parent element.
2515
3319
 
2516
3320
  HTMLElement.parentElement
2517
3321
 
3322
+ #### Defined in
3323
+
3324
+ node_modules/typescript/lib/lib.dom.d.ts:9668
3325
+
2518
3326
  ___
2519
3327
 
2520
3328
  ### parentNode
@@ -2527,6 +3335,10 @@ Returns the parent.
2527
3335
 
2528
3336
  HTMLElement.parentNode
2529
3337
 
3338
+ #### Defined in
3339
+
3340
+ node_modules/typescript/lib/lib.dom.d.ts:9670
3341
+
2530
3342
  ___
2531
3343
 
2532
3344
  ### part
@@ -2537,6 +3349,10 @@ ___
2537
3349
 
2538
3350
  HTMLElement.part
2539
3351
 
3352
+ #### Defined in
3353
+
3354
+ node_modules/typescript/lib/lib.dom.d.ts:4739
3355
+
2540
3356
  ___
2541
3357
 
2542
3358
  ### prefix
@@ -2549,6 +3365,10 @@ Returns the namespace prefix.
2549
3365
 
2550
3366
  HTMLElement.prefix
2551
3367
 
3368
+ #### Defined in
3369
+
3370
+ node_modules/typescript/lib/lib.dom.d.ts:4741
3371
+
2552
3372
  ___
2553
3373
 
2554
3374
  ### previousElementSibling
@@ -2561,6 +3381,10 @@ Returns the first preceding sibling that is an element, and null otherwise.
2561
3381
 
2562
3382
  HTMLElement.previousElementSibling
2563
3383
 
3384
+ #### Defined in
3385
+
3386
+ node_modules/typescript/lib/lib.dom.d.ts:9818
3387
+
2564
3388
  ___
2565
3389
 
2566
3390
  ### previousSibling
@@ -2573,6 +3397,10 @@ Returns the previous sibling.
2573
3397
 
2574
3398
  HTMLElement.previousSibling
2575
3399
 
3400
+ #### Defined in
3401
+
3402
+ node_modules/typescript/lib/lib.dom.d.ts:9672
3403
+
2576
3404
  ___
2577
3405
 
2578
3406
  ### scrollHeight
@@ -2583,6 +3411,10 @@ ___
2583
3411
 
2584
3412
  HTMLElement.scrollHeight
2585
3413
 
3414
+ #### Defined in
3415
+
3416
+ node_modules/typescript/lib/lib.dom.d.ts:4742
3417
+
2586
3418
  ___
2587
3419
 
2588
3420
  ### scrollLeft
@@ -2593,6 +3425,10 @@ ___
2593
3425
 
2594
3426
  HTMLElement.scrollLeft
2595
3427
 
3428
+ #### Defined in
3429
+
3430
+ node_modules/typescript/lib/lib.dom.d.ts:4743
3431
+
2596
3432
  ___
2597
3433
 
2598
3434
  ### scrollTop
@@ -2603,6 +3439,10 @@ ___
2603
3439
 
2604
3440
  HTMLElement.scrollTop
2605
3441
 
3442
+ #### Defined in
3443
+
3444
+ node_modules/typescript/lib/lib.dom.d.ts:4744
3445
+
2606
3446
  ___
2607
3447
 
2608
3448
  ### scrollWidth
@@ -2613,6 +3453,10 @@ ___
2613
3453
 
2614
3454
  HTMLElement.scrollWidth
2615
3455
 
3456
+ #### Defined in
3457
+
3458
+ node_modules/typescript/lib/lib.dom.d.ts:4745
3459
+
2616
3460
  ___
2617
3461
 
2618
3462
  ### shadowRoot
@@ -2625,6 +3469,10 @@ Returns element's shadow root, if any, and if shadow root's mode is "open", and
2625
3469
 
2626
3470
  HTMLElement.shadowRoot
2627
3471
 
3472
+ #### Defined in
3473
+
3474
+ node_modules/typescript/lib/lib.dom.d.ts:4747
3475
+
2628
3476
  ___
2629
3477
 
2630
3478
  ### slot
@@ -2637,6 +3485,10 @@ Returns the value of element's slot content attribute. Can be set to change it.
2637
3485
 
2638
3486
  HTMLElement.slot
2639
3487
 
3488
+ #### Defined in
3489
+
3490
+ node_modules/typescript/lib/lib.dom.d.ts:4749
3491
+
2640
3492
  ___
2641
3493
 
2642
3494
  ### spellcheck
@@ -2647,6 +3499,10 @@ ___
2647
3499
 
2648
3500
  HTMLElement.spellcheck
2649
3501
 
3502
+ #### Defined in
3503
+
3504
+ node_modules/typescript/lib/lib.dom.d.ts:6147
3505
+
2650
3506
  ___
2651
3507
 
2652
3508
  ### style
@@ -2657,6 +3513,10 @@ ___
2657
3513
 
2658
3514
  HTMLElement.style
2659
3515
 
3516
+ #### Defined in
3517
+
3518
+ node_modules/typescript/lib/lib.dom.d.ts:4835
3519
+
2660
3520
  ___
2661
3521
 
2662
3522
  ### tabIndex
@@ -2667,6 +3527,10 @@ ___
2667
3527
 
2668
3528
  HTMLElement.tabIndex
2669
3529
 
3530
+ #### Defined in
3531
+
3532
+ node_modules/typescript/lib/lib.dom.d.ts:7338
3533
+
2670
3534
  ___
2671
3535
 
2672
3536
  ### tagName
@@ -2679,6 +3543,10 @@ Returns the HTML-uppercased qualified name.
2679
3543
 
2680
3544
  HTMLElement.tagName
2681
3545
 
3546
+ #### Defined in
3547
+
3548
+ node_modules/typescript/lib/lib.dom.d.ts:4751
3549
+
2682
3550
  ___
2683
3551
 
2684
3552
  ### textContent
@@ -2689,6 +3557,10 @@ ___
2689
3557
 
2690
3558
  HTMLElement.textContent
2691
3559
 
3560
+ #### Defined in
3561
+
3562
+ node_modules/typescript/lib/lib.dom.d.ts:9673
3563
+
2692
3564
  ___
2693
3565
 
2694
3566
  ### title
@@ -2699,6 +3571,10 @@ ___
2699
3571
 
2700
3572
  HTMLElement.title
2701
3573
 
3574
+ #### Defined in
3575
+
3576
+ node_modules/typescript/lib/lib.dom.d.ts:6148
3577
+
2702
3578
  ___
2703
3579
 
2704
3580
  ### translate
@@ -2709,6 +3585,10 @@ ___
2709
3585
 
2710
3586
  HTMLElement.translate
2711
3587
 
3588
+ #### Defined in
3589
+
3590
+ node_modules/typescript/lib/lib.dom.d.ts:6149
3591
+
2712
3592
  ## Methods
2713
3593
 
2714
3594
  ### addEventListener
@@ -2737,6 +3617,10 @@ HTMLElement.translate
2737
3617
 
2738
3618
  HTMLElement.addEventListener
2739
3619
 
3620
+ #### Defined in
3621
+
3622
+ node_modules/typescript/lib/lib.dom.d.ts:6152
3623
+
2740
3624
  ▸ **addEventListener**(`type`, `listener`, `options?`): `void`
2741
3625
 
2742
3626
  #### Parameters
@@ -2755,6 +3639,10 @@ HTMLElement.addEventListener
2755
3639
 
2756
3640
  HTMLElement.addEventListener
2757
3641
 
3642
+ #### Defined in
3643
+
3644
+ node_modules/typescript/lib/lib.dom.d.ts:6153
3645
+
2758
3646
  ___
2759
3647
 
2760
3648
  ### after
@@ -2779,6 +3667,10 @@ Throws a "HierarchyRequestError" DOMException if the constraints of the node tre
2779
3667
 
2780
3668
  HTMLElement.after
2781
3669
 
3670
+ #### Defined in
3671
+
3672
+ node_modules/typescript/lib/lib.dom.d.ts:3451
3673
+
2782
3674
  ___
2783
3675
 
2784
3676
  ### animate
@@ -2800,6 +3692,10 @@ ___
2800
3692
 
2801
3693
  HTMLElement.animate
2802
3694
 
3695
+ #### Defined in
3696
+
3697
+ node_modules/typescript/lib/lib.dom.d.ts:1948
3698
+
2803
3699
  ___
2804
3700
 
2805
3701
  ### append
@@ -2824,6 +3720,10 @@ Throws a "HierarchyRequestError" DOMException if the constraints of the node tre
2824
3720
 
2825
3721
  HTMLElement.append
2826
3722
 
3723
+ #### Defined in
3724
+
3725
+ node_modules/typescript/lib/lib.dom.d.ts:10026
3726
+
2827
3727
  ___
2828
3728
 
2829
3729
  ### appendChild
@@ -2850,6 +3750,28 @@ ___
2850
3750
 
2851
3751
  HTMLElement.appendChild
2852
3752
 
3753
+ #### Defined in
3754
+
3755
+ node_modules/typescript/lib/lib.dom.d.ts:9674
3756
+
3757
+ ___
3758
+
3759
+ ### attachInternals
3760
+
3761
+ ▸ **attachInternals**(): `ElementInternals`
3762
+
3763
+ #### Returns
3764
+
3765
+ `ElementInternals`
3766
+
3767
+ #### Inherited from
3768
+
3769
+ HTMLElement.attachInternals
3770
+
3771
+ #### Defined in
3772
+
3773
+ node_modules/typescript/lib/lib.dom.d.ts:6150
3774
+
2853
3775
  ___
2854
3776
 
2855
3777
  ### attachShadow
@@ -2872,6 +3794,10 @@ Creates a shadow root for element and returns it.
2872
3794
 
2873
3795
  HTMLElement.attachShadow
2874
3796
 
3797
+ #### Defined in
3798
+
3799
+ node_modules/typescript/lib/lib.dom.d.ts:4753
3800
+
2875
3801
  ___
2876
3802
 
2877
3803
  ### attributeChangedCallback
@@ -2899,6 +3825,10 @@ order to let the base class know about the arguments that it might be interested
2899
3825
 
2900
3826
  `void`
2901
3827
 
3828
+ #### Defined in
3829
+
3830
+ [lib/base-block.ts:65](https://github.com/Staffbase/widget-sdk/blob/7bb16cc/lib/base-block.ts#L65)
3831
+
2902
3832
  ___
2903
3833
 
2904
3834
  ### before
@@ -2923,6 +3853,10 @@ Throws a "HierarchyRequestError" DOMException if the constraints of the node tre
2923
3853
 
2924
3854
  HTMLElement.before
2925
3855
 
3856
+ #### Defined in
3857
+
3858
+ node_modules/typescript/lib/lib.dom.d.ts:3457
3859
+
2926
3860
  ___
2927
3861
 
2928
3862
  ### blur
@@ -2937,6 +3871,10 @@ ___
2937
3871
 
2938
3872
  HTMLElement.blur
2939
3873
 
3874
+ #### Defined in
3875
+
3876
+ node_modules/typescript/lib/lib.dom.d.ts:7339
3877
+
2940
3878
  ___
2941
3879
 
2942
3880
  ### click
@@ -2951,6 +3889,10 @@ ___
2951
3889
 
2952
3890
  HTMLElement.click
2953
3891
 
3892
+ #### Defined in
3893
+
3894
+ node_modules/typescript/lib/lib.dom.d.ts:6151
3895
+
2954
3896
  ___
2955
3897
 
2956
3898
  ### cloneNode
@@ -2973,6 +3915,10 @@ Returns a copy of node. If deep is true, the copy also includes the node's desce
2973
3915
 
2974
3916
  HTMLElement.cloneNode
2975
3917
 
3918
+ #### Defined in
3919
+
3920
+ node_modules/typescript/lib/lib.dom.d.ts:9676
3921
+
2976
3922
  ___
2977
3923
 
2978
3924
  ### closest
@@ -3001,6 +3947,10 @@ Returns the first (starting at element) inclusive ancestor that matches selector
3001
3947
 
3002
3948
  HTMLElement.closest
3003
3949
 
3950
+ #### Defined in
3951
+
3952
+ node_modules/typescript/lib/lib.dom.d.ts:4755
3953
+
3004
3954
  ▸ **closest**<`K`\>(`selector`): ``null`` \| `SVGElementTagNameMap`[`K`]
3005
3955
 
3006
3956
  #### Type parameters
@@ -3023,6 +3973,10 @@ HTMLElement.closest
3023
3973
 
3024
3974
  HTMLElement.closest
3025
3975
 
3976
+ #### Defined in
3977
+
3978
+ node_modules/typescript/lib/lib.dom.d.ts:4756
3979
+
3026
3980
  ▸ **closest**<`E`\>(`selectors`): ``null`` \| `E`
3027
3981
 
3028
3982
  #### Type parameters
@@ -3045,6 +3999,10 @@ HTMLElement.closest
3045
3999
 
3046
4000
  HTMLElement.closest
3047
4001
 
4002
+ #### Defined in
4003
+
4004
+ node_modules/typescript/lib/lib.dom.d.ts:4757
4005
+
3048
4006
  ___
3049
4007
 
3050
4008
  ### compareDocumentPosition
@@ -3067,6 +4025,10 @@ Returns a bitmask indicating the position of other relative to node.
3067
4025
 
3068
4026
  HTMLElement.compareDocumentPosition
3069
4027
 
4028
+ #### Defined in
4029
+
4030
+ node_modules/typescript/lib/lib.dom.d.ts:9678
4031
+
3070
4032
  ___
3071
4033
 
3072
4034
  ### contains
@@ -3089,6 +4051,10 @@ Returns true if other is an inclusive descendant of node, and false otherwise.
3089
4051
 
3090
4052
  HTMLElement.contains
3091
4053
 
4054
+ #### Defined in
4055
+
4056
+ node_modules/typescript/lib/lib.dom.d.ts:9680
4057
+
3092
4058
  ___
3093
4059
 
3094
4060
  ### dispatchEvent
@@ -3111,6 +4077,10 @@ Dispatches a synthetic event event to target and returns true if either event's
3111
4077
 
3112
4078
  HTMLElement.dispatchEvent
3113
4079
 
4080
+ #### Defined in
4081
+
4082
+ node_modules/typescript/lib/lib.dom.d.ts:4983
4083
+
3114
4084
  ___
3115
4085
 
3116
4086
  ### focus
@@ -3131,6 +4101,10 @@ ___
3131
4101
 
3132
4102
  HTMLElement.focus
3133
4103
 
4104
+ #### Defined in
4105
+
4106
+ node_modules/typescript/lib/lib.dom.d.ts:7340
4107
+
3134
4108
  ___
3135
4109
 
3136
4110
  ### getAnimations
@@ -3151,6 +4125,10 @@ ___
3151
4125
 
3152
4126
  HTMLElement.getAnimations
3153
4127
 
4128
+ #### Defined in
4129
+
4130
+ node_modules/typescript/lib/lib.dom.d.ts:1949
4131
+
3154
4132
  ___
3155
4133
 
3156
4134
  ### getAttribute
@@ -3173,6 +4151,10 @@ Returns element's first attribute whose qualified name is qualifiedName, and nul
3173
4151
 
3174
4152
  HTMLElement.getAttribute
3175
4153
 
4154
+ #### Defined in
4155
+
4156
+ node_modules/typescript/lib/lib.dom.d.ts:4759
4157
+
3176
4158
  ___
3177
4159
 
3178
4160
  ### getAttributeNS
@@ -3196,6 +4178,10 @@ Returns element's attribute whose namespace is namespace and local name is local
3196
4178
 
3197
4179
  HTMLElement.getAttributeNS
3198
4180
 
4181
+ #### Defined in
4182
+
4183
+ node_modules/typescript/lib/lib.dom.d.ts:4761
4184
+
3199
4185
  ___
3200
4186
 
3201
4187
  ### getAttributeNames
@@ -3212,6 +4198,10 @@ Returns the qualified names of all element's attributes. Can contain duplicates.
3212
4198
 
3213
4199
  HTMLElement.getAttributeNames
3214
4200
 
4201
+ #### Defined in
4202
+
4203
+ node_modules/typescript/lib/lib.dom.d.ts:4763
4204
+
3215
4205
  ___
3216
4206
 
3217
4207
  ### getAttributeNode
@@ -3232,6 +4222,10 @@ ___
3232
4222
 
3233
4223
  HTMLElement.getAttributeNode
3234
4224
 
4225
+ #### Defined in
4226
+
4227
+ node_modules/typescript/lib/lib.dom.d.ts:4764
4228
+
3235
4229
  ___
3236
4230
 
3237
4231
  ### getAttributeNodeNS
@@ -3253,6 +4247,10 @@ ___
3253
4247
 
3254
4248
  HTMLElement.getAttributeNodeNS
3255
4249
 
4250
+ #### Defined in
4251
+
4252
+ node_modules/typescript/lib/lib.dom.d.ts:4765
4253
+
3256
4254
  ___
3257
4255
 
3258
4256
  ### getBoundingClientRect
@@ -3267,6 +4265,10 @@ ___
3267
4265
 
3268
4266
  HTMLElement.getBoundingClientRect
3269
4267
 
4268
+ #### Defined in
4269
+
4270
+ node_modules/typescript/lib/lib.dom.d.ts:4766
4271
+
3270
4272
  ___
3271
4273
 
3272
4274
  ### getClientRects
@@ -3281,6 +4283,10 @@ ___
3281
4283
 
3282
4284
  HTMLElement.getClientRects
3283
4285
 
4286
+ #### Defined in
4287
+
4288
+ node_modules/typescript/lib/lib.dom.d.ts:4767
4289
+
3284
4290
  ___
3285
4291
 
3286
4292
  ### getElementsByClassName
@@ -3303,6 +4309,10 @@ Returns a HTMLCollection of the elements in the object on which the method was i
3303
4309
 
3304
4310
  HTMLElement.getElementsByClassName
3305
4311
 
4312
+ #### Defined in
4313
+
4314
+ node_modules/typescript/lib/lib.dom.d.ts:4769
4315
+
3306
4316
  ___
3307
4317
 
3308
4318
  ### getElementsByTagName
@@ -3329,6 +4339,10 @@ ___
3329
4339
 
3330
4340
  HTMLElement.getElementsByTagName
3331
4341
 
4342
+ #### Defined in
4343
+
4344
+ node_modules/typescript/lib/lib.dom.d.ts:4770
4345
+
3332
4346
  ▸ **getElementsByTagName**<`K`\>(`qualifiedName`): `HTMLCollectionOf`<`SVGElementTagNameMap`[`K`]\>
3333
4347
 
3334
4348
  #### Type parameters
@@ -3351,6 +4365,10 @@ HTMLElement.getElementsByTagName
3351
4365
 
3352
4366
  HTMLElement.getElementsByTagName
3353
4367
 
4368
+ #### Defined in
4369
+
4370
+ node_modules/typescript/lib/lib.dom.d.ts:4771
4371
+
3354
4372
  ▸ **getElementsByTagName**(`qualifiedName`): `HTMLCollectionOf`<`Element`\>
3355
4373
 
3356
4374
  #### Parameters
@@ -3367,6 +4385,10 @@ HTMLElement.getElementsByTagName
3367
4385
 
3368
4386
  HTMLElement.getElementsByTagName
3369
4387
 
4388
+ #### Defined in
4389
+
4390
+ node_modules/typescript/lib/lib.dom.d.ts:4772
4391
+
3370
4392
  ___
3371
4393
 
3372
4394
  ### getElementsByTagNameNS
@@ -3388,6 +4410,10 @@ ___
3388
4410
 
3389
4411
  HTMLElement.getElementsByTagNameNS
3390
4412
 
4413
+ #### Defined in
4414
+
4415
+ node_modules/typescript/lib/lib.dom.d.ts:4773
4416
+
3391
4417
  ▸ **getElementsByTagNameNS**(`namespaceURI`, `localName`): `HTMLCollectionOf`<`SVGElement`\>
3392
4418
 
3393
4419
  #### Parameters
@@ -3405,6 +4431,10 @@ HTMLElement.getElementsByTagNameNS
3405
4431
 
3406
4432
  HTMLElement.getElementsByTagNameNS
3407
4433
 
4434
+ #### Defined in
4435
+
4436
+ node_modules/typescript/lib/lib.dom.d.ts:4774
4437
+
3408
4438
  ▸ **getElementsByTagNameNS**(`namespace`, `localName`): `HTMLCollectionOf`<`Element`\>
3409
4439
 
3410
4440
  #### Parameters
@@ -3422,6 +4452,10 @@ HTMLElement.getElementsByTagNameNS
3422
4452
 
3423
4453
  HTMLElement.getElementsByTagNameNS
3424
4454
 
4455
+ #### Defined in
4456
+
4457
+ node_modules/typescript/lib/lib.dom.d.ts:4775
4458
+
3425
4459
  ___
3426
4460
 
3427
4461
  ### getRootNode
@@ -3444,6 +4478,10 @@ Returns node's root.
3444
4478
 
3445
4479
  HTMLElement.getRootNode
3446
4480
 
4481
+ #### Defined in
4482
+
4483
+ node_modules/typescript/lib/lib.dom.d.ts:9682
4484
+
3447
4485
  ___
3448
4486
 
3449
4487
  ### hasAttribute
@@ -3466,6 +4504,10 @@ Returns true if element has an attribute whose qualified name is qualifiedName,
3466
4504
 
3467
4505
  HTMLElement.hasAttribute
3468
4506
 
4507
+ #### Defined in
4508
+
4509
+ node_modules/typescript/lib/lib.dom.d.ts:4777
4510
+
3469
4511
  ___
3470
4512
 
3471
4513
  ### hasAttributeNS
@@ -3489,6 +4531,10 @@ Returns true if element has an attribute whose namespace is namespace and local
3489
4531
 
3490
4532
  HTMLElement.hasAttributeNS
3491
4533
 
4534
+ #### Defined in
4535
+
4536
+ node_modules/typescript/lib/lib.dom.d.ts:4779
4537
+
3492
4538
  ___
3493
4539
 
3494
4540
  ### hasAttributes
@@ -3505,6 +4551,10 @@ Returns true if element has attributes, and false otherwise.
3505
4551
 
3506
4552
  HTMLElement.hasAttributes
3507
4553
 
4554
+ #### Defined in
4555
+
4556
+ node_modules/typescript/lib/lib.dom.d.ts:4781
4557
+
3508
4558
  ___
3509
4559
 
3510
4560
  ### hasChildNodes
@@ -3521,6 +4571,10 @@ Returns whether node has children.
3521
4571
 
3522
4572
  HTMLElement.hasChildNodes
3523
4573
 
4574
+ #### Defined in
4575
+
4576
+ node_modules/typescript/lib/lib.dom.d.ts:9684
4577
+
3524
4578
  ___
3525
4579
 
3526
4580
  ### hasPointerCapture
@@ -3541,6 +4595,10 @@ ___
3541
4595
 
3542
4596
  HTMLElement.hasPointerCapture
3543
4597
 
4598
+ #### Defined in
4599
+
4600
+ node_modules/typescript/lib/lib.dom.d.ts:4782
4601
+
3544
4602
  ___
3545
4603
 
3546
4604
  ### insertAdjacentElement
@@ -3562,6 +4620,10 @@ ___
3562
4620
 
3563
4621
  HTMLElement.insertAdjacentElement
3564
4622
 
4623
+ #### Defined in
4624
+
4625
+ node_modules/typescript/lib/lib.dom.d.ts:4783
4626
+
3565
4627
  ___
3566
4628
 
3567
4629
  ### insertAdjacentHTML
@@ -3583,6 +4645,10 @@ ___
3583
4645
 
3584
4646
  HTMLElement.insertAdjacentHTML
3585
4647
 
4648
+ #### Defined in
4649
+
4650
+ node_modules/typescript/lib/lib.dom.d.ts:4784
4651
+
3586
4652
  ___
3587
4653
 
3588
4654
  ### insertAdjacentText
@@ -3604,6 +4670,10 @@ ___
3604
4670
 
3605
4671
  HTMLElement.insertAdjacentText
3606
4672
 
4673
+ #### Defined in
4674
+
4675
+ node_modules/typescript/lib/lib.dom.d.ts:4785
4676
+
3607
4677
  ___
3608
4678
 
3609
4679
  ### insertBefore
@@ -3631,6 +4701,10 @@ ___
3631
4701
 
3632
4702
  HTMLElement.insertBefore
3633
4703
 
4704
+ #### Defined in
4705
+
4706
+ node_modules/typescript/lib/lib.dom.d.ts:9685
4707
+
3634
4708
  ___
3635
4709
 
3636
4710
  ### isDefaultNamespace
@@ -3651,6 +4725,10 @@ ___
3651
4725
 
3652
4726
  HTMLElement.isDefaultNamespace
3653
4727
 
4728
+ #### Defined in
4729
+
4730
+ node_modules/typescript/lib/lib.dom.d.ts:9686
4731
+
3654
4732
  ___
3655
4733
 
3656
4734
  ### isEqualNode
@@ -3673,6 +4751,10 @@ Returns whether node and otherNode have the same properties.
3673
4751
 
3674
4752
  HTMLElement.isEqualNode
3675
4753
 
4754
+ #### Defined in
4755
+
4756
+ node_modules/typescript/lib/lib.dom.d.ts:9688
4757
+
3676
4758
  ___
3677
4759
 
3678
4760
  ### isSameNode
@@ -3693,6 +4775,10 @@ ___
3693
4775
 
3694
4776
  HTMLElement.isSameNode
3695
4777
 
4778
+ #### Defined in
4779
+
4780
+ node_modules/typescript/lib/lib.dom.d.ts:9689
4781
+
3696
4782
  ___
3697
4783
 
3698
4784
  ### lookupNamespaceURI
@@ -3713,6 +4799,10 @@ ___
3713
4799
 
3714
4800
  HTMLElement.lookupNamespaceURI
3715
4801
 
4802
+ #### Defined in
4803
+
4804
+ node_modules/typescript/lib/lib.dom.d.ts:9690
4805
+
3716
4806
  ___
3717
4807
 
3718
4808
  ### lookupPrefix
@@ -3733,6 +4823,10 @@ ___
3733
4823
 
3734
4824
  HTMLElement.lookupPrefix
3735
4825
 
4826
+ #### Defined in
4827
+
4828
+ node_modules/typescript/lib/lib.dom.d.ts:9691
4829
+
3736
4830
  ___
3737
4831
 
3738
4832
  ### matches
@@ -3755,6 +4849,10 @@ Returns true if matching selectors against element's root yields element, and fa
3755
4849
 
3756
4850
  HTMLElement.matches
3757
4851
 
4852
+ #### Defined in
4853
+
4854
+ node_modules/typescript/lib/lib.dom.d.ts:4787
4855
+
3758
4856
  ___
3759
4857
 
3760
4858
  ### normalize
@@ -3771,6 +4869,10 @@ Removes empty exclusive Text nodes and concatenates the data of remaining contig
3771
4869
 
3772
4870
  HTMLElement.normalize
3773
4871
 
4872
+ #### Defined in
4873
+
4874
+ node_modules/typescript/lib/lib.dom.d.ts:9693
4875
+
3774
4876
  ___
3775
4877
 
3776
4878
  ### parseAttributes
@@ -3800,6 +4902,10 @@ and parses the data uris to the arrays and objects. Dates are remaining a string
3800
4902
 
3801
4903
  `T`
3802
4904
 
4905
+ #### Defined in
4906
+
4907
+ [lib/base-block.ts:98](https://github.com/Staffbase/widget-sdk/blob/7bb16cc/lib/base-block.ts#L98)
4908
+
3803
4909
  ___
3804
4910
 
3805
4911
  ### parseConfig
@@ -3826,6 +4932,10 @@ Override this if the attributes are handled with a different logic then the defa
3826
4932
 
3827
4933
  `Record`<`string`, `string`\>
3828
4934
 
4935
+ #### Defined in
4936
+
4937
+ [lib/base-block.ts:82](https://github.com/Staffbase/widget-sdk/blob/7bb16cc/lib/base-block.ts#L82)
4938
+
3829
4939
  ___
3830
4940
 
3831
4941
  ### prepend
@@ -3850,6 +4960,10 @@ Throws a "HierarchyRequestError" DOMException if the constraints of the node tre
3850
4960
 
3851
4961
  HTMLElement.prepend
3852
4962
 
4963
+ #### Defined in
4964
+
4965
+ node_modules/typescript/lib/lib.dom.d.ts:10032
4966
+
3853
4967
  ___
3854
4968
 
3855
4969
  ### querySelector
@@ -3878,6 +4992,10 @@ Returns the first element that is a descendant of node that matches selectors.
3878
4992
 
3879
4993
  HTMLElement.querySelector
3880
4994
 
4995
+ #### Defined in
4996
+
4997
+ node_modules/typescript/lib/lib.dom.d.ts:10034
4998
+
3881
4999
  ▸ **querySelector**<`K`\>(`selectors`): ``null`` \| `SVGElementTagNameMap`[`K`]
3882
5000
 
3883
5001
  #### Type parameters
@@ -3900,6 +5018,10 @@ HTMLElement.querySelector
3900
5018
 
3901
5019
  HTMLElement.querySelector
3902
5020
 
5021
+ #### Defined in
5022
+
5023
+ node_modules/typescript/lib/lib.dom.d.ts:10035
5024
+
3903
5025
  ▸ **querySelector**<`E`\>(`selectors`): ``null`` \| `E`
3904
5026
 
3905
5027
  #### Type parameters
@@ -3922,6 +5044,10 @@ HTMLElement.querySelector
3922
5044
 
3923
5045
  HTMLElement.querySelector
3924
5046
 
5047
+ #### Defined in
5048
+
5049
+ node_modules/typescript/lib/lib.dom.d.ts:10036
5050
+
3925
5051
  ___
3926
5052
 
3927
5053
  ### querySelectorAll
@@ -3950,6 +5076,10 @@ Returns all element descendants of node that match selectors.
3950
5076
 
3951
5077
  HTMLElement.querySelectorAll
3952
5078
 
5079
+ #### Defined in
5080
+
5081
+ node_modules/typescript/lib/lib.dom.d.ts:10038
5082
+
3953
5083
  ▸ **querySelectorAll**<`K`\>(`selectors`): `NodeListOf`<`SVGElementTagNameMap`[`K`]\>
3954
5084
 
3955
5085
  #### Type parameters
@@ -3972,6 +5102,10 @@ HTMLElement.querySelectorAll
3972
5102
 
3973
5103
  HTMLElement.querySelectorAll
3974
5104
 
5105
+ #### Defined in
5106
+
5107
+ node_modules/typescript/lib/lib.dom.d.ts:10039
5108
+
3975
5109
  ▸ **querySelectorAll**<`E`\>(`selectors`): `NodeListOf`<`E`\>
3976
5110
 
3977
5111
  #### Type parameters
@@ -3994,6 +5128,10 @@ HTMLElement.querySelectorAll
3994
5128
 
3995
5129
  HTMLElement.querySelectorAll
3996
5130
 
5131
+ #### Defined in
5132
+
5133
+ node_modules/typescript/lib/lib.dom.d.ts:10040
5134
+
3997
5135
  ___
3998
5136
 
3999
5137
  ### releasePointerCapture
@@ -4014,6 +5152,10 @@ ___
4014
5152
 
4015
5153
  HTMLElement.releasePointerCapture
4016
5154
 
5155
+ #### Defined in
5156
+
5157
+ node_modules/typescript/lib/lib.dom.d.ts:4788
5158
+
4017
5159
  ___
4018
5160
 
4019
5161
  ### remove
@@ -4030,6 +5172,10 @@ Removes node.
4030
5172
 
4031
5173
  HTMLElement.remove
4032
5174
 
5175
+ #### Defined in
5176
+
5177
+ node_modules/typescript/lib/lib.dom.d.ts:3459
5178
+
4033
5179
  ___
4034
5180
 
4035
5181
  ### removeAttribute
@@ -4052,6 +5198,10 @@ Removes element's first attribute whose qualified name is qualifiedName.
4052
5198
 
4053
5199
  HTMLElement.removeAttribute
4054
5200
 
5201
+ #### Defined in
5202
+
5203
+ node_modules/typescript/lib/lib.dom.d.ts:4790
5204
+
4055
5205
  ___
4056
5206
 
4057
5207
  ### removeAttributeNS
@@ -4075,6 +5225,10 @@ Removes element's attribute whose namespace is namespace and local name is local
4075
5225
 
4076
5226
  HTMLElement.removeAttributeNS
4077
5227
 
5228
+ #### Defined in
5229
+
5230
+ node_modules/typescript/lib/lib.dom.d.ts:4792
5231
+
4078
5232
  ___
4079
5233
 
4080
5234
  ### removeAttributeNode
@@ -4095,6 +5249,10 @@ ___
4095
5249
 
4096
5250
  HTMLElement.removeAttributeNode
4097
5251
 
5252
+ #### Defined in
5253
+
5254
+ node_modules/typescript/lib/lib.dom.d.ts:4793
5255
+
4098
5256
  ___
4099
5257
 
4100
5258
  ### removeChild
@@ -4121,6 +5279,10 @@ ___
4121
5279
 
4122
5280
  HTMLElement.removeChild
4123
5281
 
5282
+ #### Defined in
5283
+
5284
+ node_modules/typescript/lib/lib.dom.d.ts:9694
5285
+
4124
5286
  ___
4125
5287
 
4126
5288
  ### removeEventListener
@@ -4149,6 +5311,10 @@ ___
4149
5311
 
4150
5312
  HTMLElement.removeEventListener
4151
5313
 
5314
+ #### Defined in
5315
+
5316
+ node_modules/typescript/lib/lib.dom.d.ts:6154
5317
+
4152
5318
  ▸ **removeEventListener**(`type`, `listener`, `options?`): `void`
4153
5319
 
4154
5320
  #### Parameters
@@ -4167,6 +5333,10 @@ HTMLElement.removeEventListener
4167
5333
 
4168
5334
  HTMLElement.removeEventListener
4169
5335
 
5336
+ #### Defined in
5337
+
5338
+ node_modules/typescript/lib/lib.dom.d.ts:6155
5339
+
4170
5340
  ___
4171
5341
 
4172
5342
  ### renderBlock
@@ -4188,6 +5358,10 @@ Default implementation is a noop.
4188
5358
 
4189
5359
  `void`
4190
5360
 
5361
+ #### Defined in
5362
+
5363
+ [lib/base-block.ts:31](https://github.com/Staffbase/widget-sdk/blob/7bb16cc/lib/base-block.ts#L31)
5364
+
4191
5365
  ___
4192
5366
 
4193
5367
  ### renderBlockInEditor
@@ -4210,6 +5384,10 @@ with the widget name and icon.
4210
5384
 
4211
5385
  `void`
4212
5386
 
5387
+ #### Defined in
5388
+
5389
+ [lib/base-block.ts:44](https://github.com/Staffbase/widget-sdk/blob/7bb16cc/lib/base-block.ts#L44)
5390
+
4213
5391
  ___
4214
5392
 
4215
5393
  ### replaceChild
@@ -4237,6 +5415,10 @@ ___
4237
5415
 
4238
5416
  HTMLElement.replaceChild
4239
5417
 
5418
+ #### Defined in
5419
+
5420
+ node_modules/typescript/lib/lib.dom.d.ts:9695
5421
+
4240
5422
  ___
4241
5423
 
4242
5424
  ### replaceChildren
@@ -4261,6 +5443,10 @@ Throws a "HierarchyRequestError" DOMException if the constraints of the node tre
4261
5443
 
4262
5444
  HTMLElement.replaceChildren
4263
5445
 
5446
+ #### Defined in
5447
+
5448
+ node_modules/typescript/lib/lib.dom.d.ts:10046
5449
+
4264
5450
  ___
4265
5451
 
4266
5452
  ### replaceWith
@@ -4285,6 +5471,10 @@ Throws a "HierarchyRequestError" DOMException if the constraints of the node tre
4285
5471
 
4286
5472
  HTMLElement.replaceWith
4287
5473
 
5474
+ #### Defined in
5475
+
5476
+ node_modules/typescript/lib/lib.dom.d.ts:3465
5477
+
4288
5478
  ___
4289
5479
 
4290
5480
  ### requestFullscreen
@@ -4309,6 +5499,10 @@ When supplied, options's navigationUI member indicates whether showing navigatio
4309
5499
 
4310
5500
  HTMLElement.requestFullscreen
4311
5501
 
5502
+ #### Defined in
5503
+
5504
+ node_modules/typescript/lib/lib.dom.d.ts:4799
5505
+
4312
5506
  ___
4313
5507
 
4314
5508
  ### requestPointerLock
@@ -4323,6 +5517,10 @@ ___
4323
5517
 
4324
5518
  HTMLElement.requestPointerLock
4325
5519
 
5520
+ #### Defined in
5521
+
5522
+ node_modules/typescript/lib/lib.dom.d.ts:4800
5523
+
4326
5524
  ___
4327
5525
 
4328
5526
  ### scroll
@@ -4343,6 +5541,10 @@ ___
4343
5541
 
4344
5542
  HTMLElement.scroll
4345
5543
 
5544
+ #### Defined in
5545
+
5546
+ node_modules/typescript/lib/lib.dom.d.ts:4801
5547
+
4346
5548
  ▸ **scroll**(`x`, `y`): `void`
4347
5549
 
4348
5550
  #### Parameters
@@ -4360,6 +5562,10 @@ HTMLElement.scroll
4360
5562
 
4361
5563
  HTMLElement.scroll
4362
5564
 
5565
+ #### Defined in
5566
+
5567
+ node_modules/typescript/lib/lib.dom.d.ts:4802
5568
+
4363
5569
  ___
4364
5570
 
4365
5571
  ### scrollBy
@@ -4380,6 +5586,10 @@ ___
4380
5586
 
4381
5587
  HTMLElement.scrollBy
4382
5588
 
5589
+ #### Defined in
5590
+
5591
+ node_modules/typescript/lib/lib.dom.d.ts:4803
5592
+
4383
5593
  ▸ **scrollBy**(`x`, `y`): `void`
4384
5594
 
4385
5595
  #### Parameters
@@ -4397,6 +5607,10 @@ HTMLElement.scrollBy
4397
5607
 
4398
5608
  HTMLElement.scrollBy
4399
5609
 
5610
+ #### Defined in
5611
+
5612
+ node_modules/typescript/lib/lib.dom.d.ts:4804
5613
+
4400
5614
  ___
4401
5615
 
4402
5616
  ### scrollIntoView
@@ -4417,6 +5631,10 @@ ___
4417
5631
 
4418
5632
  HTMLElement.scrollIntoView
4419
5633
 
5634
+ #### Defined in
5635
+
5636
+ node_modules/typescript/lib/lib.dom.d.ts:4805
5637
+
4420
5638
  ___
4421
5639
 
4422
5640
  ### scrollTo
@@ -4437,6 +5655,10 @@ ___
4437
5655
 
4438
5656
  HTMLElement.scrollTo
4439
5657
 
5658
+ #### Defined in
5659
+
5660
+ node_modules/typescript/lib/lib.dom.d.ts:4806
5661
+
4440
5662
  ▸ **scrollTo**(`x`, `y`): `void`
4441
5663
 
4442
5664
  #### Parameters
@@ -4454,6 +5676,10 @@ HTMLElement.scrollTo
4454
5676
 
4455
5677
  HTMLElement.scrollTo
4456
5678
 
5679
+ #### Defined in
5680
+
5681
+ node_modules/typescript/lib/lib.dom.d.ts:4807
5682
+
4457
5683
  ___
4458
5684
 
4459
5685
  ### setAttribute
@@ -4477,6 +5703,10 @@ Sets the value of element's first attribute whose qualified name is qualifiedNam
4477
5703
 
4478
5704
  HTMLElement.setAttribute
4479
5705
 
5706
+ #### Defined in
5707
+
5708
+ node_modules/typescript/lib/lib.dom.d.ts:4809
5709
+
4480
5710
  ___
4481
5711
 
4482
5712
  ### setAttributeNS
@@ -4501,6 +5731,10 @@ Sets the value of element's attribute whose namespace is namespace and local nam
4501
5731
 
4502
5732
  HTMLElement.setAttributeNS
4503
5733
 
5734
+ #### Defined in
5735
+
5736
+ node_modules/typescript/lib/lib.dom.d.ts:4811
5737
+
4504
5738
  ___
4505
5739
 
4506
5740
  ### setAttributeNode
@@ -4521,6 +5755,10 @@ ___
4521
5755
 
4522
5756
  HTMLElement.setAttributeNode
4523
5757
 
5758
+ #### Defined in
5759
+
5760
+ node_modules/typescript/lib/lib.dom.d.ts:4812
5761
+
4524
5762
  ___
4525
5763
 
4526
5764
  ### setAttributeNodeNS
@@ -4541,6 +5779,10 @@ ___
4541
5779
 
4542
5780
  HTMLElement.setAttributeNodeNS
4543
5781
 
5782
+ #### Defined in
5783
+
5784
+ node_modules/typescript/lib/lib.dom.d.ts:4813
5785
+
4544
5786
  ___
4545
5787
 
4546
5788
  ### setPointerCapture
@@ -4561,6 +5803,10 @@ ___
4561
5803
 
4562
5804
  HTMLElement.setPointerCapture
4563
5805
 
5806
+ #### Defined in
5807
+
5808
+ node_modules/typescript/lib/lib.dom.d.ts:4814
5809
+
4564
5810
  ___
4565
5811
 
4566
5812
  ### toggleAttribute
@@ -4586,6 +5832,10 @@ Returns true if qualifiedName is now present, and false otherwise.
4586
5832
 
4587
5833
  HTMLElement.toggleAttribute
4588
5834
 
5835
+ #### Defined in
5836
+
5837
+ node_modules/typescript/lib/lib.dom.d.ts:4820
5838
+
4589
5839
  ___
4590
5840
 
4591
5841
  ### unmountBlock
@@ -4606,6 +5856,10 @@ Override this in order to implement your unmount logic.
4606
5856
 
4607
5857
  `void`
4608
5858
 
5859
+ #### Defined in
5860
+
5861
+ [lib/base-block.ts:53](https://github.com/Staffbase/widget-sdk/blob/7bb16cc/lib/base-block.ts#L53)
5862
+
4609
5863
  ___
4610
5864
 
4611
5865
  ### webkitMatchesSelector
@@ -4627,3 +5881,7 @@ ___
4627
5881
  #### Inherited from
4628
5882
 
4629
5883
  HTMLElement.webkitMatchesSelector
5884
+
5885
+ #### Defined in
5886
+
5887
+ node_modules/typescript/lib/lib.dom.d.ts:4822