@openremote/or-mwc-components 1.6.0 → 1.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/custom-elements.json +927 -400
- package/lib/or-mwc-input.d.ts +8 -0
- package/lib/or-mwc-input.js +6 -5
- package/lib/or-mwc-input.js.map +1 -1
- package/lib/or-mwc-menu.d.ts +2 -1
- package/lib/or-mwc-menu.js +3 -3
- package/lib/or-mwc-menu.js.map +1 -1
- package/package.json +6 -6
- package/src/or-mwc-input.ts +18 -0
- package/src/or-mwc-menu.ts +35 -2
- package/tsconfig.tsbuildinfo +1 -1
package/custom-elements.json
CHANGED
|
@@ -172,19 +172,14 @@
|
|
|
172
172
|
"static": true,
|
|
173
173
|
"description": "Can be set by apps to control where in the DOM dialogs are added"
|
|
174
174
|
},
|
|
175
|
-
{
|
|
176
|
-
"kind": "field",
|
|
177
|
-
"name": "styles",
|
|
178
|
-
"static": true,
|
|
179
|
-
"readonly": true
|
|
180
|
-
},
|
|
181
175
|
{
|
|
182
176
|
"kind": "field",
|
|
183
177
|
"name": "heading",
|
|
184
178
|
"type": {
|
|
185
179
|
"text": "string | TemplateResult | undefined"
|
|
186
180
|
},
|
|
187
|
-
"privacy": "public"
|
|
181
|
+
"privacy": "public",
|
|
182
|
+
"attribute": "heading"
|
|
188
183
|
},
|
|
189
184
|
{
|
|
190
185
|
"kind": "field",
|
|
@@ -216,15 +211,8 @@
|
|
|
216
211
|
"type": {
|
|
217
212
|
"text": "boolean | undefined"
|
|
218
213
|
},
|
|
219
|
-
"privacy": "public"
|
|
220
|
-
|
|
221
|
-
{
|
|
222
|
-
"kind": "field",
|
|
223
|
-
"name": "styles",
|
|
224
|
-
"type": {
|
|
225
|
-
"text": "TemplateResult | string | undefined"
|
|
226
|
-
},
|
|
227
|
-
"privacy": "public"
|
|
214
|
+
"privacy": "public",
|
|
215
|
+
"attribute": "avatar"
|
|
228
216
|
},
|
|
229
217
|
{
|
|
230
218
|
"kind": "field",
|
|
@@ -407,24 +395,6 @@
|
|
|
407
395
|
}
|
|
408
396
|
]
|
|
409
397
|
},
|
|
410
|
-
{
|
|
411
|
-
"kind": "method",
|
|
412
|
-
"name": "render",
|
|
413
|
-
"privacy": "protected"
|
|
414
|
-
},
|
|
415
|
-
{
|
|
416
|
-
"kind": "method",
|
|
417
|
-
"name": "updated",
|
|
418
|
-
"privacy": "protected",
|
|
419
|
-
"parameters": [
|
|
420
|
-
{
|
|
421
|
-
"name": "_changedProperties",
|
|
422
|
-
"type": {
|
|
423
|
-
"text": "PropertyValues"
|
|
424
|
-
}
|
|
425
|
-
}
|
|
426
|
-
]
|
|
427
|
-
},
|
|
428
398
|
{
|
|
429
399
|
"kind": "method",
|
|
430
400
|
"name": "_onDialogOpened",
|
|
@@ -472,10 +442,32 @@
|
|
|
472
442
|
}
|
|
473
443
|
}
|
|
474
444
|
],
|
|
445
|
+
"attributes": [
|
|
446
|
+
{
|
|
447
|
+
"name": "heading",
|
|
448
|
+
"type": {
|
|
449
|
+
"text": "string | TemplateResult | undefined"
|
|
450
|
+
},
|
|
451
|
+
"fieldName": "heading"
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
"name": "avatar",
|
|
455
|
+
"type": {
|
|
456
|
+
"text": "boolean | undefined"
|
|
457
|
+
},
|
|
458
|
+
"fieldName": "avatar"
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"name": "styles",
|
|
462
|
+
"readonly": true,
|
|
463
|
+
"fieldName": "styles"
|
|
464
|
+
}
|
|
465
|
+
],
|
|
475
466
|
"superclass": {
|
|
476
467
|
"name": "LitElement",
|
|
477
468
|
"package": "lit"
|
|
478
469
|
},
|
|
470
|
+
"tagName": "or-mwc-dialog",
|
|
479
471
|
"customElement": true
|
|
480
472
|
}
|
|
481
473
|
],
|
|
@@ -535,6 +527,14 @@
|
|
|
535
527
|
"name": "OrMwcDialog",
|
|
536
528
|
"module": "src/or-mwc-dialog.ts"
|
|
537
529
|
}
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
"kind": "custom-element-definition",
|
|
533
|
+
"name": "or-mwc-dialog",
|
|
534
|
+
"declaration": {
|
|
535
|
+
"name": "OrMwcDialog",
|
|
536
|
+
"module": "src/or-mwc-dialog.ts"
|
|
537
|
+
}
|
|
538
538
|
}
|
|
539
539
|
]
|
|
540
540
|
},
|
|
@@ -569,13 +569,6 @@
|
|
|
569
569
|
"description": "",
|
|
570
570
|
"name": "OrMwcDrawer",
|
|
571
571
|
"members": [
|
|
572
|
-
{
|
|
573
|
-
"kind": "field",
|
|
574
|
-
"name": "styles",
|
|
575
|
-
"privacy": "public",
|
|
576
|
-
"static": true,
|
|
577
|
-
"readonly": true
|
|
578
|
-
},
|
|
579
572
|
{
|
|
580
573
|
"kind": "field",
|
|
581
574
|
"name": "header",
|
|
@@ -591,7 +584,8 @@
|
|
|
591
584
|
"text": "boolean"
|
|
592
585
|
},
|
|
593
586
|
"privacy": "public",
|
|
594
|
-
"default": "false"
|
|
587
|
+
"default": "false",
|
|
588
|
+
"attribute": "dismissible"
|
|
595
589
|
},
|
|
596
590
|
{
|
|
597
591
|
"kind": "field",
|
|
@@ -600,7 +594,8 @@
|
|
|
600
594
|
"text": "boolean"
|
|
601
595
|
},
|
|
602
596
|
"privacy": "public",
|
|
603
|
-
"default": "false"
|
|
597
|
+
"default": "false",
|
|
598
|
+
"attribute": "rightSided"
|
|
604
599
|
},
|
|
605
600
|
{
|
|
606
601
|
"kind": "field",
|
|
@@ -609,7 +604,8 @@
|
|
|
609
604
|
"text": "boolean"
|
|
610
605
|
},
|
|
611
606
|
"privacy": "public",
|
|
612
|
-
"default": "false"
|
|
607
|
+
"default": "false",
|
|
608
|
+
"attribute": "transparent"
|
|
613
609
|
},
|
|
614
610
|
{
|
|
615
611
|
"kind": "field",
|
|
@@ -618,7 +614,8 @@
|
|
|
618
614
|
"text": "boolean"
|
|
619
615
|
},
|
|
620
616
|
"privacy": "public",
|
|
621
|
-
"default": "false"
|
|
617
|
+
"default": "false",
|
|
618
|
+
"attribute": "open"
|
|
622
619
|
},
|
|
623
620
|
{
|
|
624
621
|
"kind": "field",
|
|
@@ -657,16 +654,6 @@
|
|
|
657
654
|
"name": "toggle",
|
|
658
655
|
"privacy": "public"
|
|
659
656
|
},
|
|
660
|
-
{
|
|
661
|
-
"kind": "method",
|
|
662
|
-
"name": "render",
|
|
663
|
-
"privacy": "protected"
|
|
664
|
-
},
|
|
665
|
-
{
|
|
666
|
-
"kind": "method",
|
|
667
|
-
"name": "updated",
|
|
668
|
-
"privacy": "protected"
|
|
669
|
-
},
|
|
670
657
|
{
|
|
671
658
|
"kind": "method",
|
|
672
659
|
"name": "dispatchChangedEvent",
|
|
@@ -679,11 +666,6 @@
|
|
|
679
666
|
}
|
|
680
667
|
}
|
|
681
668
|
]
|
|
682
|
-
},
|
|
683
|
-
{
|
|
684
|
-
"kind": "method",
|
|
685
|
-
"name": "firstUpdated",
|
|
686
|
-
"privacy": "protected"
|
|
687
669
|
}
|
|
688
670
|
],
|
|
689
671
|
"events": [
|
|
@@ -694,10 +676,45 @@
|
|
|
694
676
|
}
|
|
695
677
|
}
|
|
696
678
|
],
|
|
679
|
+
"attributes": [
|
|
680
|
+
{
|
|
681
|
+
"name": "dismissible",
|
|
682
|
+
"type": {
|
|
683
|
+
"text": "boolean"
|
|
684
|
+
},
|
|
685
|
+
"default": "false",
|
|
686
|
+
"fieldName": "dismissible"
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
"name": "rightSided",
|
|
690
|
+
"type": {
|
|
691
|
+
"text": "boolean"
|
|
692
|
+
},
|
|
693
|
+
"default": "false",
|
|
694
|
+
"fieldName": "rightSided"
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"name": "transparent",
|
|
698
|
+
"type": {
|
|
699
|
+
"text": "boolean"
|
|
700
|
+
},
|
|
701
|
+
"default": "false",
|
|
702
|
+
"fieldName": "transparent"
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
"name": "open",
|
|
706
|
+
"type": {
|
|
707
|
+
"text": "boolean"
|
|
708
|
+
},
|
|
709
|
+
"default": "false",
|
|
710
|
+
"fieldName": "open"
|
|
711
|
+
}
|
|
712
|
+
],
|
|
697
713
|
"superclass": {
|
|
698
714
|
"name": "LitElement",
|
|
699
715
|
"package": "lit"
|
|
700
716
|
},
|
|
717
|
+
"tagName": "or-mwc-drawer",
|
|
701
718
|
"customElement": true
|
|
702
719
|
}
|
|
703
720
|
],
|
|
@@ -717,6 +734,14 @@
|
|
|
717
734
|
"name": "OrMwcDrawer",
|
|
718
735
|
"module": "src/or-mwc-drawer.ts"
|
|
719
736
|
}
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
"kind": "custom-element-definition",
|
|
740
|
+
"name": "or-mwc-drawer",
|
|
741
|
+
"declaration": {
|
|
742
|
+
"name": "OrMwcDrawer",
|
|
743
|
+
"module": "src/or-mwc-drawer.ts"
|
|
744
|
+
}
|
|
720
745
|
}
|
|
721
746
|
]
|
|
722
747
|
},
|
|
@@ -775,19 +800,14 @@
|
|
|
775
800
|
"description": "",
|
|
776
801
|
"name": "OrMwcInput",
|
|
777
802
|
"members": [
|
|
778
|
-
{
|
|
779
|
-
"kind": "field",
|
|
780
|
-
"name": "styles",
|
|
781
|
-
"static": true,
|
|
782
|
-
"readonly": true
|
|
783
|
-
},
|
|
784
803
|
{
|
|
785
804
|
"kind": "field",
|
|
786
805
|
"name": "focused",
|
|
787
806
|
"type": {
|
|
788
807
|
"text": "boolean | undefined"
|
|
789
808
|
},
|
|
790
|
-
"privacy": "public"
|
|
809
|
+
"privacy": "public",
|
|
810
|
+
"attribute": "focused"
|
|
791
811
|
},
|
|
792
812
|
{
|
|
793
813
|
"kind": "field",
|
|
@@ -795,7 +815,8 @@
|
|
|
795
815
|
"type": {
|
|
796
816
|
"text": "any | undefined"
|
|
797
817
|
},
|
|
798
|
-
"privacy": "public"
|
|
818
|
+
"privacy": "public",
|
|
819
|
+
"attribute": "value"
|
|
799
820
|
},
|
|
800
821
|
{
|
|
801
822
|
"kind": "field",
|
|
@@ -803,7 +824,8 @@
|
|
|
803
824
|
"type": {
|
|
804
825
|
"text": "InputType | undefined"
|
|
805
826
|
},
|
|
806
|
-
"privacy": "public"
|
|
827
|
+
"privacy": "public",
|
|
828
|
+
"attribute": "type"
|
|
807
829
|
},
|
|
808
830
|
{
|
|
809
831
|
"kind": "field",
|
|
@@ -811,7 +833,8 @@
|
|
|
811
833
|
"type": {
|
|
812
834
|
"text": "String | undefined"
|
|
813
835
|
},
|
|
814
|
-
"privacy": "public"
|
|
836
|
+
"privacy": "public",
|
|
837
|
+
"attribute": "name"
|
|
815
838
|
},
|
|
816
839
|
{
|
|
817
840
|
"kind": "field",
|
|
@@ -820,7 +843,8 @@
|
|
|
820
843
|
"text": "boolean"
|
|
821
844
|
},
|
|
822
845
|
"privacy": "public",
|
|
823
|
-
"default": "false"
|
|
846
|
+
"default": "false",
|
|
847
|
+
"attribute": "readonly"
|
|
824
848
|
},
|
|
825
849
|
{
|
|
826
850
|
"kind": "field",
|
|
@@ -829,7 +853,8 @@
|
|
|
829
853
|
"text": "boolean"
|
|
830
854
|
},
|
|
831
855
|
"privacy": "public",
|
|
832
|
-
"default": "false"
|
|
856
|
+
"default": "false",
|
|
857
|
+
"attribute": "required"
|
|
833
858
|
},
|
|
834
859
|
{
|
|
835
860
|
"kind": "field",
|
|
@@ -837,7 +862,8 @@
|
|
|
837
862
|
"type": {
|
|
838
863
|
"text": "any | undefined"
|
|
839
864
|
},
|
|
840
|
-
"privacy": "public"
|
|
865
|
+
"privacy": "public",
|
|
866
|
+
"attribute": "max"
|
|
841
867
|
},
|
|
842
868
|
{
|
|
843
869
|
"kind": "field",
|
|
@@ -845,7 +871,8 @@
|
|
|
845
871
|
"type": {
|
|
846
872
|
"text": "any | undefined"
|
|
847
873
|
},
|
|
848
|
-
"privacy": "public"
|
|
874
|
+
"privacy": "public",
|
|
875
|
+
"attribute": "min"
|
|
849
876
|
},
|
|
850
877
|
{
|
|
851
878
|
"kind": "field",
|
|
@@ -853,7 +880,8 @@
|
|
|
853
880
|
"type": {
|
|
854
881
|
"text": "number | undefined"
|
|
855
882
|
},
|
|
856
|
-
"privacy": "public"
|
|
883
|
+
"privacy": "public",
|
|
884
|
+
"attribute": "step"
|
|
857
885
|
},
|
|
858
886
|
{
|
|
859
887
|
"kind": "field",
|
|
@@ -862,7 +890,8 @@
|
|
|
862
890
|
"text": "boolean"
|
|
863
891
|
},
|
|
864
892
|
"privacy": "public",
|
|
865
|
-
"default": "false"
|
|
893
|
+
"default": "false",
|
|
894
|
+
"attribute": "checked"
|
|
866
895
|
},
|
|
867
896
|
{
|
|
868
897
|
"kind": "field",
|
|
@@ -871,7 +900,8 @@
|
|
|
871
900
|
"text": "boolean"
|
|
872
901
|
},
|
|
873
902
|
"privacy": "public",
|
|
874
|
-
"default": "false"
|
|
903
|
+
"default": "false",
|
|
904
|
+
"attribute": "indeterminate"
|
|
875
905
|
},
|
|
876
906
|
{
|
|
877
907
|
"kind": "field",
|
|
@@ -879,7 +909,8 @@
|
|
|
879
909
|
"type": {
|
|
880
910
|
"text": "number | undefined"
|
|
881
911
|
},
|
|
882
|
-
"privacy": "public"
|
|
912
|
+
"privacy": "public",
|
|
913
|
+
"attribute": "maxLength"
|
|
883
914
|
},
|
|
884
915
|
{
|
|
885
916
|
"kind": "field",
|
|
@@ -887,7 +918,8 @@
|
|
|
887
918
|
"type": {
|
|
888
919
|
"text": "number | undefined"
|
|
889
920
|
},
|
|
890
|
-
"privacy": "public"
|
|
921
|
+
"privacy": "public",
|
|
922
|
+
"attribute": "minLength"
|
|
891
923
|
},
|
|
892
924
|
{
|
|
893
925
|
"kind": "field",
|
|
@@ -895,7 +927,8 @@
|
|
|
895
927
|
"type": {
|
|
896
928
|
"text": "number | undefined"
|
|
897
929
|
},
|
|
898
|
-
"privacy": "public"
|
|
930
|
+
"privacy": "public",
|
|
931
|
+
"attribute": "rows"
|
|
899
932
|
},
|
|
900
933
|
{
|
|
901
934
|
"kind": "field",
|
|
@@ -903,7 +936,8 @@
|
|
|
903
936
|
"type": {
|
|
904
937
|
"text": "number | undefined"
|
|
905
938
|
},
|
|
906
|
-
"privacy": "public"
|
|
939
|
+
"privacy": "public",
|
|
940
|
+
"attribute": "cols"
|
|
907
941
|
},
|
|
908
942
|
{
|
|
909
943
|
"kind": "field",
|
|
@@ -912,7 +946,8 @@
|
|
|
912
946
|
"text": "boolean"
|
|
913
947
|
},
|
|
914
948
|
"privacy": "public",
|
|
915
|
-
"default": "false"
|
|
949
|
+
"default": "false",
|
|
950
|
+
"attribute": "multiple"
|
|
916
951
|
},
|
|
917
952
|
{
|
|
918
953
|
"kind": "field",
|
|
@@ -920,7 +955,8 @@
|
|
|
920
955
|
"type": {
|
|
921
956
|
"text": "string | undefined"
|
|
922
957
|
},
|
|
923
|
-
"privacy": "public"
|
|
958
|
+
"privacy": "public",
|
|
959
|
+
"attribute": "pattern"
|
|
924
960
|
},
|
|
925
961
|
{
|
|
926
962
|
"kind": "field",
|
|
@@ -928,7 +964,8 @@
|
|
|
928
964
|
"type": {
|
|
929
965
|
"text": "string | undefined"
|
|
930
966
|
},
|
|
931
|
-
"privacy": "public"
|
|
967
|
+
"privacy": "public",
|
|
968
|
+
"attribute": "placeHolder"
|
|
932
969
|
},
|
|
933
970
|
{
|
|
934
971
|
"kind": "field",
|
|
@@ -936,7 +973,8 @@
|
|
|
936
973
|
"type": {
|
|
937
974
|
"text": "any[] | any | undefined"
|
|
938
975
|
},
|
|
939
|
-
"privacy": "public"
|
|
976
|
+
"privacy": "public",
|
|
977
|
+
"attribute": "options"
|
|
940
978
|
},
|
|
941
979
|
{
|
|
942
980
|
"kind": "field",
|
|
@@ -944,7 +982,8 @@
|
|
|
944
982
|
"type": {
|
|
945
983
|
"text": "boolean | undefined"
|
|
946
984
|
},
|
|
947
|
-
"privacy": "public"
|
|
985
|
+
"privacy": "public",
|
|
986
|
+
"attribute": "autoSelect"
|
|
948
987
|
},
|
|
949
988
|
{
|
|
950
989
|
"kind": "field",
|
|
@@ -952,7 +991,8 @@
|
|
|
952
991
|
"type": {
|
|
953
992
|
"text": "(search?: string) => Promise<[any, string][]> | undefined"
|
|
954
993
|
},
|
|
955
|
-
"privacy": "public"
|
|
994
|
+
"privacy": "public",
|
|
995
|
+
"attribute": "searchProvider"
|
|
956
996
|
},
|
|
957
997
|
{
|
|
958
998
|
"kind": "field",
|
|
@@ -961,7 +1001,8 @@
|
|
|
961
1001
|
"text": "string"
|
|
962
1002
|
},
|
|
963
1003
|
"privacy": "public",
|
|
964
|
-
"default": "\"search\""
|
|
1004
|
+
"default": "\"search\"",
|
|
1005
|
+
"attribute": "searchLabel"
|
|
965
1006
|
},
|
|
966
1007
|
{
|
|
967
1008
|
"kind": "field",
|
|
@@ -969,7 +1010,8 @@
|
|
|
969
1010
|
"type": {
|
|
970
1011
|
"text": "string | undefined"
|
|
971
1012
|
},
|
|
972
|
-
"privacy": "public"
|
|
1013
|
+
"privacy": "public",
|
|
1014
|
+
"attribute": "icon"
|
|
973
1015
|
},
|
|
974
1016
|
{
|
|
975
1017
|
"kind": "field",
|
|
@@ -977,7 +1019,8 @@
|
|
|
977
1019
|
"type": {
|
|
978
1020
|
"text": "string | undefined"
|
|
979
1021
|
},
|
|
980
|
-
"privacy": "public"
|
|
1022
|
+
"privacy": "public",
|
|
1023
|
+
"attribute": "iconColor"
|
|
981
1024
|
},
|
|
982
1025
|
{
|
|
983
1026
|
"kind": "field",
|
|
@@ -985,7 +1028,8 @@
|
|
|
985
1028
|
"type": {
|
|
986
1029
|
"text": "string | undefined"
|
|
987
1030
|
},
|
|
988
|
-
"privacy": "public"
|
|
1031
|
+
"privacy": "public",
|
|
1032
|
+
"attribute": "iconOn"
|
|
989
1033
|
},
|
|
990
1034
|
{
|
|
991
1035
|
"kind": "field",
|
|
@@ -993,7 +1037,8 @@
|
|
|
993
1037
|
"type": {
|
|
994
1038
|
"text": "string | undefined"
|
|
995
1039
|
},
|
|
996
|
-
"privacy": "public"
|
|
1040
|
+
"privacy": "public",
|
|
1041
|
+
"attribute": "iconTrailing"
|
|
997
1042
|
},
|
|
998
1043
|
{
|
|
999
1044
|
"kind": "field",
|
|
@@ -1002,7 +1047,8 @@
|
|
|
1002
1047
|
"text": "boolean"
|
|
1003
1048
|
},
|
|
1004
1049
|
"privacy": "public",
|
|
1005
|
-
"default": "false"
|
|
1050
|
+
"default": "false",
|
|
1051
|
+
"attribute": "compact"
|
|
1006
1052
|
},
|
|
1007
1053
|
{
|
|
1008
1054
|
"kind": "field",
|
|
@@ -1011,7 +1057,8 @@
|
|
|
1011
1057
|
"text": "boolean"
|
|
1012
1058
|
},
|
|
1013
1059
|
"privacy": "public",
|
|
1014
|
-
"default": "false"
|
|
1060
|
+
"default": "false",
|
|
1061
|
+
"attribute": "comfortable"
|
|
1015
1062
|
},
|
|
1016
1063
|
{
|
|
1017
1064
|
"kind": "field",
|
|
@@ -1020,7 +1067,8 @@
|
|
|
1020
1067
|
"text": "boolean"
|
|
1021
1068
|
},
|
|
1022
1069
|
"privacy": "public",
|
|
1023
|
-
"default": "false"
|
|
1070
|
+
"default": "false",
|
|
1071
|
+
"attribute": "raised"
|
|
1024
1072
|
},
|
|
1025
1073
|
{
|
|
1026
1074
|
"kind": "field",
|
|
@@ -1029,7 +1077,8 @@
|
|
|
1029
1077
|
"text": "boolean"
|
|
1030
1078
|
},
|
|
1031
1079
|
"privacy": "public",
|
|
1032
|
-
"default": "false"
|
|
1080
|
+
"default": "false",
|
|
1081
|
+
"attribute": "action"
|
|
1033
1082
|
},
|
|
1034
1083
|
{
|
|
1035
1084
|
"kind": "field",
|
|
@@ -1038,7 +1087,8 @@
|
|
|
1038
1087
|
"text": "boolean"
|
|
1039
1088
|
},
|
|
1040
1089
|
"privacy": "public",
|
|
1041
|
-
"default": "false"
|
|
1090
|
+
"default": "false",
|
|
1091
|
+
"attribute": "unElevated"
|
|
1042
1092
|
},
|
|
1043
1093
|
{
|
|
1044
1094
|
"kind": "field",
|
|
@@ -1047,7 +1097,8 @@
|
|
|
1047
1097
|
"text": "boolean"
|
|
1048
1098
|
},
|
|
1049
1099
|
"privacy": "public",
|
|
1050
|
-
"default": "false"
|
|
1100
|
+
"default": "false",
|
|
1101
|
+
"attribute": "outlined"
|
|
1051
1102
|
},
|
|
1052
1103
|
{
|
|
1053
1104
|
"kind": "field",
|
|
@@ -1056,7 +1107,8 @@
|
|
|
1056
1107
|
"text": "boolean"
|
|
1057
1108
|
},
|
|
1058
1109
|
"privacy": "public",
|
|
1059
|
-
"default": "false"
|
|
1110
|
+
"default": "false",
|
|
1111
|
+
"attribute": "rounded"
|
|
1060
1112
|
},
|
|
1061
1113
|
{
|
|
1062
1114
|
"kind": "field",
|
|
@@ -1064,7 +1116,8 @@
|
|
|
1064
1116
|
"type": {
|
|
1065
1117
|
"text": "ValueFormat | undefined"
|
|
1066
1118
|
},
|
|
1067
|
-
"privacy": "public"
|
|
1119
|
+
"privacy": "public",
|
|
1120
|
+
"attribute": "format"
|
|
1068
1121
|
},
|
|
1069
1122
|
{
|
|
1070
1123
|
"kind": "field",
|
|
@@ -1073,7 +1126,8 @@
|
|
|
1073
1126
|
"text": "boolean"
|
|
1074
1127
|
},
|
|
1075
1128
|
"privacy": "public",
|
|
1076
|
-
"default": "false"
|
|
1129
|
+
"default": "false",
|
|
1130
|
+
"attribute": "disableSliderNumberInput"
|
|
1077
1131
|
},
|
|
1078
1132
|
{
|
|
1079
1133
|
"kind": "field",
|
|
@@ -1082,7 +1136,8 @@
|
|
|
1082
1136
|
"text": "boolean"
|
|
1083
1137
|
},
|
|
1084
1138
|
"privacy": "public",
|
|
1085
|
-
"default": "false"
|
|
1139
|
+
"default": "false",
|
|
1140
|
+
"attribute": "fullWidth"
|
|
1086
1141
|
},
|
|
1087
1142
|
{
|
|
1088
1143
|
"kind": "field",
|
|
@@ -1090,7 +1145,8 @@
|
|
|
1090
1145
|
"type": {
|
|
1091
1146
|
"text": "string | undefined"
|
|
1092
1147
|
},
|
|
1093
|
-
"privacy": "public"
|
|
1148
|
+
"privacy": "public",
|
|
1149
|
+
"attribute": "helperText"
|
|
1094
1150
|
},
|
|
1095
1151
|
{
|
|
1096
1152
|
"kind": "field",
|
|
@@ -1099,7 +1155,8 @@
|
|
|
1099
1155
|
"text": "boolean"
|
|
1100
1156
|
},
|
|
1101
1157
|
"privacy": "public",
|
|
1102
|
-
"default": "false"
|
|
1158
|
+
"default": "false",
|
|
1159
|
+
"attribute": "helperPersistent"
|
|
1103
1160
|
},
|
|
1104
1161
|
{
|
|
1105
1162
|
"kind": "field",
|
|
@@ -1107,7 +1164,8 @@
|
|
|
1107
1164
|
"type": {
|
|
1108
1165
|
"text": "string | undefined"
|
|
1109
1166
|
},
|
|
1110
|
-
"privacy": "public"
|
|
1167
|
+
"privacy": "public",
|
|
1168
|
+
"attribute": "validationMessage"
|
|
1111
1169
|
},
|
|
1112
1170
|
{
|
|
1113
1171
|
"kind": "field",
|
|
@@ -1116,7 +1174,8 @@
|
|
|
1116
1174
|
"text": "boolean"
|
|
1117
1175
|
},
|
|
1118
1176
|
"privacy": "public",
|
|
1119
|
-
"default": "false"
|
|
1177
|
+
"default": "false",
|
|
1178
|
+
"attribute": "autoValidate"
|
|
1120
1179
|
},
|
|
1121
1180
|
{
|
|
1122
1181
|
"kind": "field",
|
|
@@ -1125,7 +1184,8 @@
|
|
|
1125
1184
|
"text": "boolean"
|
|
1126
1185
|
},
|
|
1127
1186
|
"privacy": "public",
|
|
1128
|
-
"default": "false"
|
|
1187
|
+
"default": "false",
|
|
1188
|
+
"attribute": "charCounter"
|
|
1129
1189
|
},
|
|
1130
1190
|
{
|
|
1131
1191
|
"kind": "field",
|
|
@@ -1133,7 +1193,8 @@
|
|
|
1133
1193
|
"type": {
|
|
1134
1194
|
"text": "string | undefined"
|
|
1135
1195
|
},
|
|
1136
|
-
"privacy": "public"
|
|
1196
|
+
"privacy": "public",
|
|
1197
|
+
"attribute": "label"
|
|
1137
1198
|
},
|
|
1138
1199
|
{
|
|
1139
1200
|
"kind": "field",
|
|
@@ -1142,7 +1203,8 @@
|
|
|
1142
1203
|
"text": "boolean"
|
|
1143
1204
|
},
|
|
1144
1205
|
"privacy": "public",
|
|
1145
|
-
"default": "false"
|
|
1206
|
+
"default": "false",
|
|
1207
|
+
"attribute": "disabled"
|
|
1146
1208
|
},
|
|
1147
1209
|
{
|
|
1148
1210
|
"kind": "field",
|
|
@@ -1151,7 +1213,8 @@
|
|
|
1151
1213
|
"text": "boolean"
|
|
1152
1214
|
},
|
|
1153
1215
|
"privacy": "public",
|
|
1154
|
-
"default": "false"
|
|
1216
|
+
"default": "false",
|
|
1217
|
+
"attribute": "continuous"
|
|
1155
1218
|
},
|
|
1156
1219
|
{
|
|
1157
1220
|
"kind": "field",
|
|
@@ -1160,7 +1223,31 @@
|
|
|
1160
1223
|
"text": "boolean"
|
|
1161
1224
|
},
|
|
1162
1225
|
"privacy": "public",
|
|
1163
|
-
"default": "false"
|
|
1226
|
+
"default": "false",
|
|
1227
|
+
"attribute": "resizeVertical"
|
|
1228
|
+
},
|
|
1229
|
+
{
|
|
1230
|
+
"kind": "field",
|
|
1231
|
+
"name": "censored",
|
|
1232
|
+
"type": {
|
|
1233
|
+
"text": "boolean"
|
|
1234
|
+
},
|
|
1235
|
+
"privacy": "public",
|
|
1236
|
+
"default": "false",
|
|
1237
|
+
"description": "Always censure text fields (like a password), and do not allow toggling",
|
|
1238
|
+
"attribute": "censored"
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
"kind": "field",
|
|
1242
|
+
"name": "advertised",
|
|
1243
|
+
"type": {
|
|
1244
|
+
"text": "boolean"
|
|
1245
|
+
},
|
|
1246
|
+
"privacy": "public",
|
|
1247
|
+
"default": "false",
|
|
1248
|
+
"description": "Toggles visibility state of the password InputType (true = shown, false = hidden)",
|
|
1249
|
+
"attribute": "advertised",
|
|
1250
|
+
"reflects": true
|
|
1164
1251
|
},
|
|
1165
1252
|
{
|
|
1166
1253
|
"kind": "field",
|
|
@@ -1237,29 +1324,11 @@
|
|
|
1237
1324
|
},
|
|
1238
1325
|
"privacy": "protected"
|
|
1239
1326
|
},
|
|
1240
|
-
{
|
|
1241
|
-
"kind": "method",
|
|
1242
|
-
"name": "shouldUpdate",
|
|
1243
|
-
"privacy": "protected",
|
|
1244
|
-
"parameters": [
|
|
1245
|
-
{
|
|
1246
|
-
"name": "_changedProperties",
|
|
1247
|
-
"type": {
|
|
1248
|
-
"text": "PropertyValues"
|
|
1249
|
-
}
|
|
1250
|
-
}
|
|
1251
|
-
]
|
|
1252
|
-
},
|
|
1253
1327
|
{
|
|
1254
1328
|
"kind": "method",
|
|
1255
1329
|
"name": "focus",
|
|
1256
1330
|
"privacy": "public"
|
|
1257
1331
|
},
|
|
1258
|
-
{
|
|
1259
|
-
"kind": "method",
|
|
1260
|
-
"name": "render",
|
|
1261
|
-
"privacy": "protected"
|
|
1262
|
-
},
|
|
1263
1332
|
{
|
|
1264
1333
|
"kind": "method",
|
|
1265
1334
|
"name": "_getFormat",
|
|
@@ -1270,48 +1339,6 @@
|
|
|
1270
1339
|
}
|
|
1271
1340
|
}
|
|
1272
1341
|
},
|
|
1273
|
-
{
|
|
1274
|
-
"kind": "method",
|
|
1275
|
-
"name": "update",
|
|
1276
|
-
"parameters": [
|
|
1277
|
-
{
|
|
1278
|
-
"name": "_changedProperties",
|
|
1279
|
-
"type": {
|
|
1280
|
-
"text": "PropertyValues"
|
|
1281
|
-
}
|
|
1282
|
-
}
|
|
1283
|
-
]
|
|
1284
|
-
},
|
|
1285
|
-
{
|
|
1286
|
-
"kind": "method",
|
|
1287
|
-
"name": "firstUpdated",
|
|
1288
|
-
"parameters": [
|
|
1289
|
-
{
|
|
1290
|
-
"name": "_changedProperties",
|
|
1291
|
-
"type": {
|
|
1292
|
-
"text": "PropertyValues"
|
|
1293
|
-
}
|
|
1294
|
-
}
|
|
1295
|
-
]
|
|
1296
|
-
},
|
|
1297
|
-
{
|
|
1298
|
-
"kind": "method",
|
|
1299
|
-
"name": "updated",
|
|
1300
|
-
"privacy": "protected",
|
|
1301
|
-
"return": {
|
|
1302
|
-
"type": {
|
|
1303
|
-
"text": "void"
|
|
1304
|
-
}
|
|
1305
|
-
},
|
|
1306
|
-
"parameters": [
|
|
1307
|
-
{
|
|
1308
|
-
"name": "_changedProperties",
|
|
1309
|
-
"type": {
|
|
1310
|
-
"text": "PropertyValues"
|
|
1311
|
-
}
|
|
1312
|
-
}
|
|
1313
|
-
]
|
|
1314
|
-
},
|
|
1315
1342
|
{
|
|
1316
1343
|
"kind": "method",
|
|
1317
1344
|
"name": "renderOutlined",
|
|
@@ -1453,20 +1480,377 @@
|
|
|
1453
1480
|
}
|
|
1454
1481
|
}
|
|
1455
1482
|
],
|
|
1456
|
-
"
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1483
|
+
"attributes": [
|
|
1484
|
+
{
|
|
1485
|
+
"name": "focused",
|
|
1486
|
+
"type": {
|
|
1487
|
+
"text": "boolean | undefined"
|
|
1488
|
+
},
|
|
1489
|
+
"fieldName": "focused"
|
|
1490
|
+
},
|
|
1491
|
+
{
|
|
1492
|
+
"name": "value",
|
|
1493
|
+
"type": {
|
|
1494
|
+
"text": "any | undefined"
|
|
1495
|
+
},
|
|
1496
|
+
"fieldName": "value"
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
"name": "type",
|
|
1500
|
+
"type": {
|
|
1501
|
+
"text": "InputType | undefined"
|
|
1502
|
+
},
|
|
1503
|
+
"fieldName": "type"
|
|
1504
|
+
},
|
|
1505
|
+
{
|
|
1506
|
+
"name": "name",
|
|
1507
|
+
"type": {
|
|
1508
|
+
"text": "String | undefined"
|
|
1509
|
+
},
|
|
1510
|
+
"fieldName": "name"
|
|
1511
|
+
},
|
|
1512
|
+
{
|
|
1513
|
+
"name": "readonly",
|
|
1514
|
+
"type": {
|
|
1515
|
+
"text": "boolean"
|
|
1516
|
+
},
|
|
1517
|
+
"default": "false",
|
|
1518
|
+
"fieldName": "readonly"
|
|
1519
|
+
},
|
|
1520
|
+
{
|
|
1521
|
+
"name": "required",
|
|
1522
|
+
"type": {
|
|
1523
|
+
"text": "boolean"
|
|
1524
|
+
},
|
|
1525
|
+
"default": "false",
|
|
1526
|
+
"fieldName": "required"
|
|
1527
|
+
},
|
|
1528
|
+
{
|
|
1529
|
+
"name": "max",
|
|
1530
|
+
"type": {
|
|
1531
|
+
"text": "any | undefined"
|
|
1532
|
+
},
|
|
1533
|
+
"fieldName": "max"
|
|
1534
|
+
},
|
|
1535
|
+
{
|
|
1536
|
+
"name": "min",
|
|
1537
|
+
"type": {
|
|
1538
|
+
"text": "any | undefined"
|
|
1539
|
+
},
|
|
1540
|
+
"fieldName": "min"
|
|
1541
|
+
},
|
|
1542
|
+
{
|
|
1543
|
+
"name": "step",
|
|
1544
|
+
"type": {
|
|
1545
|
+
"text": "number | undefined"
|
|
1546
|
+
},
|
|
1547
|
+
"fieldName": "step"
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
"name": "checked",
|
|
1551
|
+
"type": {
|
|
1552
|
+
"text": "boolean"
|
|
1553
|
+
},
|
|
1554
|
+
"default": "false",
|
|
1555
|
+
"fieldName": "checked"
|
|
1556
|
+
},
|
|
1557
|
+
{
|
|
1558
|
+
"name": "indeterminate",
|
|
1559
|
+
"type": {
|
|
1560
|
+
"text": "boolean"
|
|
1561
|
+
},
|
|
1562
|
+
"default": "false",
|
|
1563
|
+
"fieldName": "indeterminate"
|
|
1564
|
+
},
|
|
1565
|
+
{
|
|
1566
|
+
"name": "maxLength",
|
|
1567
|
+
"type": {
|
|
1568
|
+
"text": "number | undefined"
|
|
1569
|
+
},
|
|
1570
|
+
"fieldName": "maxLength"
|
|
1571
|
+
},
|
|
1572
|
+
{
|
|
1573
|
+
"name": "minLength",
|
|
1574
|
+
"type": {
|
|
1575
|
+
"text": "number | undefined"
|
|
1576
|
+
},
|
|
1577
|
+
"fieldName": "minLength"
|
|
1578
|
+
},
|
|
1579
|
+
{
|
|
1580
|
+
"name": "rows",
|
|
1581
|
+
"type": {
|
|
1582
|
+
"text": "number | undefined"
|
|
1583
|
+
},
|
|
1584
|
+
"fieldName": "rows"
|
|
1585
|
+
},
|
|
1586
|
+
{
|
|
1587
|
+
"name": "cols",
|
|
1588
|
+
"type": {
|
|
1589
|
+
"text": "number | undefined"
|
|
1590
|
+
},
|
|
1591
|
+
"fieldName": "cols"
|
|
1592
|
+
},
|
|
1593
|
+
{
|
|
1594
|
+
"name": "multiple",
|
|
1595
|
+
"type": {
|
|
1596
|
+
"text": "boolean"
|
|
1597
|
+
},
|
|
1598
|
+
"default": "false",
|
|
1599
|
+
"fieldName": "multiple"
|
|
1600
|
+
},
|
|
1601
|
+
{
|
|
1602
|
+
"name": "pattern",
|
|
1603
|
+
"type": {
|
|
1604
|
+
"text": "string | undefined"
|
|
1605
|
+
},
|
|
1606
|
+
"fieldName": "pattern"
|
|
1607
|
+
},
|
|
1608
|
+
{
|
|
1609
|
+
"name": "placeHolder",
|
|
1610
|
+
"type": {
|
|
1611
|
+
"text": "string | undefined"
|
|
1612
|
+
},
|
|
1613
|
+
"fieldName": "placeHolder"
|
|
1614
|
+
},
|
|
1615
|
+
{
|
|
1616
|
+
"name": "options",
|
|
1617
|
+
"type": {
|
|
1618
|
+
"text": "any[] | any | undefined"
|
|
1619
|
+
},
|
|
1620
|
+
"fieldName": "options"
|
|
1621
|
+
},
|
|
1622
|
+
{
|
|
1623
|
+
"name": "autoSelect",
|
|
1624
|
+
"type": {
|
|
1625
|
+
"text": "boolean | undefined"
|
|
1626
|
+
},
|
|
1627
|
+
"fieldName": "autoSelect"
|
|
1628
|
+
},
|
|
1629
|
+
{
|
|
1630
|
+
"name": "searchProvider",
|
|
1631
|
+
"type": {
|
|
1632
|
+
"text": "(search?: string) => Promise<[any, string][]> | undefined"
|
|
1633
|
+
},
|
|
1634
|
+
"fieldName": "searchProvider"
|
|
1635
|
+
},
|
|
1636
|
+
{
|
|
1637
|
+
"name": "searchLabel",
|
|
1638
|
+
"type": {
|
|
1639
|
+
"text": "string"
|
|
1640
|
+
},
|
|
1641
|
+
"default": "\"search\"",
|
|
1642
|
+
"fieldName": "searchLabel"
|
|
1643
|
+
},
|
|
1644
|
+
{
|
|
1645
|
+
"name": "icon",
|
|
1646
|
+
"type": {
|
|
1647
|
+
"text": "string | undefined"
|
|
1648
|
+
},
|
|
1649
|
+
"fieldName": "icon"
|
|
1650
|
+
},
|
|
1651
|
+
{
|
|
1652
|
+
"name": "iconColor",
|
|
1653
|
+
"type": {
|
|
1654
|
+
"text": "string | undefined"
|
|
1655
|
+
},
|
|
1656
|
+
"fieldName": "iconColor"
|
|
1657
|
+
},
|
|
1658
|
+
{
|
|
1659
|
+
"name": "iconOn",
|
|
1660
|
+
"type": {
|
|
1661
|
+
"text": "string | undefined"
|
|
1662
|
+
},
|
|
1663
|
+
"fieldName": "iconOn"
|
|
1664
|
+
},
|
|
1665
|
+
{
|
|
1666
|
+
"name": "iconTrailing",
|
|
1667
|
+
"type": {
|
|
1668
|
+
"text": "string | undefined"
|
|
1669
|
+
},
|
|
1670
|
+
"fieldName": "iconTrailing"
|
|
1671
|
+
},
|
|
1672
|
+
{
|
|
1673
|
+
"name": "compact",
|
|
1674
|
+
"type": {
|
|
1675
|
+
"text": "boolean"
|
|
1676
|
+
},
|
|
1677
|
+
"default": "false",
|
|
1678
|
+
"fieldName": "compact"
|
|
1679
|
+
},
|
|
1680
|
+
{
|
|
1681
|
+
"name": "comfortable",
|
|
1682
|
+
"type": {
|
|
1683
|
+
"text": "boolean"
|
|
1684
|
+
},
|
|
1685
|
+
"default": "false",
|
|
1686
|
+
"fieldName": "comfortable"
|
|
1687
|
+
},
|
|
1688
|
+
{
|
|
1689
|
+
"name": "raised",
|
|
1690
|
+
"type": {
|
|
1691
|
+
"text": "boolean"
|
|
1692
|
+
},
|
|
1693
|
+
"default": "false",
|
|
1694
|
+
"fieldName": "raised"
|
|
1695
|
+
},
|
|
1696
|
+
{
|
|
1697
|
+
"name": "action",
|
|
1698
|
+
"type": {
|
|
1699
|
+
"text": "boolean"
|
|
1700
|
+
},
|
|
1701
|
+
"default": "false",
|
|
1702
|
+
"fieldName": "action"
|
|
1703
|
+
},
|
|
1704
|
+
{
|
|
1705
|
+
"name": "unElevated",
|
|
1706
|
+
"type": {
|
|
1707
|
+
"text": "boolean"
|
|
1708
|
+
},
|
|
1709
|
+
"default": "false",
|
|
1710
|
+
"fieldName": "unElevated"
|
|
1711
|
+
},
|
|
1712
|
+
{
|
|
1713
|
+
"name": "outlined",
|
|
1714
|
+
"type": {
|
|
1715
|
+
"text": "boolean"
|
|
1716
|
+
},
|
|
1717
|
+
"default": "false",
|
|
1718
|
+
"fieldName": "outlined"
|
|
1719
|
+
},
|
|
1720
|
+
{
|
|
1721
|
+
"name": "rounded",
|
|
1722
|
+
"type": {
|
|
1723
|
+
"text": "boolean"
|
|
1724
|
+
},
|
|
1725
|
+
"default": "false",
|
|
1726
|
+
"fieldName": "rounded"
|
|
1727
|
+
},
|
|
1728
|
+
{
|
|
1729
|
+
"name": "format",
|
|
1730
|
+
"type": {
|
|
1731
|
+
"text": "ValueFormat | undefined"
|
|
1732
|
+
},
|
|
1733
|
+
"fieldName": "format"
|
|
1734
|
+
},
|
|
1735
|
+
{
|
|
1736
|
+
"name": "disableSliderNumberInput",
|
|
1737
|
+
"type": {
|
|
1738
|
+
"text": "boolean"
|
|
1739
|
+
},
|
|
1740
|
+
"default": "false",
|
|
1741
|
+
"fieldName": "disableSliderNumberInput"
|
|
1742
|
+
},
|
|
1743
|
+
{
|
|
1744
|
+
"name": "fullWidth",
|
|
1745
|
+
"type": {
|
|
1746
|
+
"text": "boolean"
|
|
1747
|
+
},
|
|
1748
|
+
"default": "false",
|
|
1749
|
+
"fieldName": "fullWidth"
|
|
1750
|
+
},
|
|
1751
|
+
{
|
|
1752
|
+
"name": "helperText",
|
|
1753
|
+
"type": {
|
|
1754
|
+
"text": "string | undefined"
|
|
1755
|
+
},
|
|
1756
|
+
"fieldName": "helperText"
|
|
1757
|
+
},
|
|
1758
|
+
{
|
|
1759
|
+
"name": "helperPersistent",
|
|
1760
|
+
"type": {
|
|
1761
|
+
"text": "boolean"
|
|
1762
|
+
},
|
|
1763
|
+
"default": "false",
|
|
1764
|
+
"fieldName": "helperPersistent"
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
"name": "validationMessage",
|
|
1768
|
+
"type": {
|
|
1769
|
+
"text": "string | undefined"
|
|
1770
|
+
},
|
|
1771
|
+
"fieldName": "validationMessage"
|
|
1772
|
+
},
|
|
1773
|
+
{
|
|
1774
|
+
"name": "autoValidate",
|
|
1775
|
+
"type": {
|
|
1776
|
+
"text": "boolean"
|
|
1777
|
+
},
|
|
1778
|
+
"default": "false",
|
|
1779
|
+
"fieldName": "autoValidate"
|
|
1780
|
+
},
|
|
1781
|
+
{
|
|
1782
|
+
"name": "charCounter",
|
|
1783
|
+
"type": {
|
|
1784
|
+
"text": "boolean"
|
|
1785
|
+
},
|
|
1786
|
+
"default": "false",
|
|
1787
|
+
"fieldName": "charCounter"
|
|
1788
|
+
},
|
|
1789
|
+
{
|
|
1790
|
+
"name": "label",
|
|
1791
|
+
"type": {
|
|
1792
|
+
"text": "string | undefined"
|
|
1793
|
+
},
|
|
1794
|
+
"fieldName": "label"
|
|
1795
|
+
},
|
|
1796
|
+
{
|
|
1797
|
+
"name": "disabled",
|
|
1798
|
+
"type": {
|
|
1799
|
+
"text": "boolean"
|
|
1800
|
+
},
|
|
1801
|
+
"default": "false",
|
|
1802
|
+
"fieldName": "disabled"
|
|
1803
|
+
},
|
|
1804
|
+
{
|
|
1805
|
+
"name": "continuous",
|
|
1806
|
+
"type": {
|
|
1807
|
+
"text": "boolean"
|
|
1808
|
+
},
|
|
1809
|
+
"default": "false",
|
|
1810
|
+
"fieldName": "continuous"
|
|
1811
|
+
},
|
|
1812
|
+
{
|
|
1813
|
+
"name": "resizeVertical",
|
|
1814
|
+
"type": {
|
|
1815
|
+
"text": "boolean"
|
|
1816
|
+
},
|
|
1817
|
+
"default": "false",
|
|
1818
|
+
"fieldName": "resizeVertical"
|
|
1819
|
+
},
|
|
1820
|
+
{
|
|
1821
|
+
"name": "censored",
|
|
1822
|
+
"type": {
|
|
1823
|
+
"text": "boolean"
|
|
1824
|
+
},
|
|
1825
|
+
"default": "false",
|
|
1826
|
+
"description": "Always censure text fields (like a password), and do not allow toggling",
|
|
1827
|
+
"fieldName": "censored"
|
|
1828
|
+
},
|
|
1829
|
+
{
|
|
1830
|
+
"name": "advertised",
|
|
1831
|
+
"type": {
|
|
1832
|
+
"text": "boolean"
|
|
1833
|
+
},
|
|
1834
|
+
"default": "false",
|
|
1835
|
+
"description": "Toggles visibility state of the password InputType (true = shown, false = hidden)",
|
|
1836
|
+
"fieldName": "advertised"
|
|
1837
|
+
}
|
|
1838
|
+
],
|
|
1839
|
+
"superclass": {
|
|
1840
|
+
"name": "LitElement",
|
|
1841
|
+
"package": "lit"
|
|
1842
|
+
},
|
|
1843
|
+
"tagName": "or-mwc-input",
|
|
1844
|
+
"customElement": true
|
|
1845
|
+
}
|
|
1846
|
+
],
|
|
1847
|
+
"exports": [
|
|
1848
|
+
{
|
|
1849
|
+
"kind": "js",
|
|
1850
|
+
"name": "OrInputChangedEvent",
|
|
1851
|
+
"declaration": {
|
|
1852
|
+
"name": "OrInputChangedEvent",
|
|
1853
|
+
"module": "src/or-mwc-input.ts"
|
|
1470
1854
|
}
|
|
1471
1855
|
},
|
|
1472
1856
|
{
|
|
@@ -1484,6 +1868,14 @@
|
|
|
1484
1868
|
"name": "OrMwcInput",
|
|
1485
1869
|
"module": "src/or-mwc-input.ts"
|
|
1486
1870
|
}
|
|
1871
|
+
},
|
|
1872
|
+
{
|
|
1873
|
+
"kind": "custom-element-definition",
|
|
1874
|
+
"name": "or-mwc-input",
|
|
1875
|
+
"declaration": {
|
|
1876
|
+
"name": "OrMwcInput",
|
|
1877
|
+
"module": "src/or-mwc-input.ts"
|
|
1878
|
+
}
|
|
1487
1879
|
}
|
|
1488
1880
|
]
|
|
1489
1881
|
},
|
|
@@ -1623,19 +2015,14 @@
|
|
|
1623
2015
|
"description": "",
|
|
1624
2016
|
"name": "OrMwcList",
|
|
1625
2017
|
"members": [
|
|
1626
|
-
{
|
|
1627
|
-
"kind": "field",
|
|
1628
|
-
"name": "styles",
|
|
1629
|
-
"static": true,
|
|
1630
|
-
"readonly": true
|
|
1631
|
-
},
|
|
1632
2018
|
{
|
|
1633
2019
|
"kind": "field",
|
|
1634
2020
|
"name": "listItems",
|
|
1635
2021
|
"type": {
|
|
1636
2022
|
"text": "(ListItem | null)[] | undefined"
|
|
1637
2023
|
},
|
|
1638
|
-
"privacy": "public"
|
|
2024
|
+
"privacy": "public",
|
|
2025
|
+
"attribute": "listItems"
|
|
1639
2026
|
},
|
|
1640
2027
|
{
|
|
1641
2028
|
"kind": "field",
|
|
@@ -1643,7 +2030,8 @@
|
|
|
1643
2030
|
"type": {
|
|
1644
2031
|
"text": "string[] | string | undefined"
|
|
1645
2032
|
},
|
|
1646
|
-
"privacy": "public"
|
|
2033
|
+
"privacy": "public",
|
|
2034
|
+
"attribute": "values"
|
|
1647
2035
|
},
|
|
1648
2036
|
{
|
|
1649
2037
|
"kind": "field",
|
|
@@ -1651,7 +2039,8 @@
|
|
|
1651
2039
|
"type": {
|
|
1652
2040
|
"text": "ListType"
|
|
1653
2041
|
},
|
|
1654
|
-
"privacy": "public"
|
|
2042
|
+
"privacy": "public",
|
|
2043
|
+
"attribute": "type"
|
|
1655
2044
|
},
|
|
1656
2045
|
{
|
|
1657
2046
|
"kind": "field",
|
|
@@ -1677,47 +2066,6 @@
|
|
|
1677
2066
|
},
|
|
1678
2067
|
"privacy": "protected"
|
|
1679
2068
|
},
|
|
1680
|
-
{
|
|
1681
|
-
"kind": "method",
|
|
1682
|
-
"name": "shouldUpdate",
|
|
1683
|
-
"privacy": "protected",
|
|
1684
|
-
"return": {
|
|
1685
|
-
"type": {
|
|
1686
|
-
"text": "boolean"
|
|
1687
|
-
}
|
|
1688
|
-
},
|
|
1689
|
-
"parameters": [
|
|
1690
|
-
{
|
|
1691
|
-
"name": "_changedProperties",
|
|
1692
|
-
"type": {
|
|
1693
|
-
"text": "PropertyValues"
|
|
1694
|
-
}
|
|
1695
|
-
}
|
|
1696
|
-
]
|
|
1697
|
-
},
|
|
1698
|
-
{
|
|
1699
|
-
"kind": "method",
|
|
1700
|
-
"name": "render",
|
|
1701
|
-
"privacy": "protected"
|
|
1702
|
-
},
|
|
1703
|
-
{
|
|
1704
|
-
"kind": "method",
|
|
1705
|
-
"name": "firstUpdated",
|
|
1706
|
-
"privacy": "protected",
|
|
1707
|
-
"return": {
|
|
1708
|
-
"type": {
|
|
1709
|
-
"text": "void"
|
|
1710
|
-
}
|
|
1711
|
-
},
|
|
1712
|
-
"parameters": [
|
|
1713
|
-
{
|
|
1714
|
-
"name": "_changedProperties",
|
|
1715
|
-
"type": {
|
|
1716
|
-
"text": "PropertyValues"
|
|
1717
|
-
}
|
|
1718
|
-
}
|
|
1719
|
-
]
|
|
1720
|
-
},
|
|
1721
2069
|
{
|
|
1722
2070
|
"kind": "field",
|
|
1723
2071
|
"name": "selectedItems",
|
|
@@ -1761,10 +2109,34 @@
|
|
|
1761
2109
|
}
|
|
1762
2110
|
}
|
|
1763
2111
|
],
|
|
2112
|
+
"attributes": [
|
|
2113
|
+
{
|
|
2114
|
+
"name": "listItems",
|
|
2115
|
+
"type": {
|
|
2116
|
+
"text": "(ListItem | null)[] | undefined"
|
|
2117
|
+
},
|
|
2118
|
+
"fieldName": "listItems"
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
"name": "values",
|
|
2122
|
+
"type": {
|
|
2123
|
+
"text": "string[] | string | undefined"
|
|
2124
|
+
},
|
|
2125
|
+
"fieldName": "values"
|
|
2126
|
+
},
|
|
2127
|
+
{
|
|
2128
|
+
"name": "type",
|
|
2129
|
+
"type": {
|
|
2130
|
+
"text": "ListType"
|
|
2131
|
+
},
|
|
2132
|
+
"fieldName": "type"
|
|
2133
|
+
}
|
|
2134
|
+
],
|
|
1764
2135
|
"superclass": {
|
|
1765
2136
|
"name": "LitElement",
|
|
1766
2137
|
"package": "lit"
|
|
1767
2138
|
},
|
|
2139
|
+
"tagName": "or-mwc-list",
|
|
1768
2140
|
"customElement": true
|
|
1769
2141
|
}
|
|
1770
2142
|
],
|
|
@@ -1816,6 +2188,14 @@
|
|
|
1816
2188
|
"name": "OrMwcList",
|
|
1817
2189
|
"module": "src/or-mwc-list.ts"
|
|
1818
2190
|
}
|
|
2191
|
+
},
|
|
2192
|
+
{
|
|
2193
|
+
"kind": "custom-element-definition",
|
|
2194
|
+
"name": "or-mwc-list",
|
|
2195
|
+
"declaration": {
|
|
2196
|
+
"name": "OrMwcList",
|
|
2197
|
+
"module": "src/or-mwc-list.ts"
|
|
2198
|
+
}
|
|
1819
2199
|
}
|
|
1820
2200
|
]
|
|
1821
2201
|
},
|
|
@@ -1867,6 +2247,30 @@
|
|
|
1867
2247
|
"module": "src/or-mwc-menu.ts"
|
|
1868
2248
|
}
|
|
1869
2249
|
},
|
|
2250
|
+
{
|
|
2251
|
+
"kind": "function",
|
|
2252
|
+
"name": "positionMenuAtElement",
|
|
2253
|
+
"return": {
|
|
2254
|
+
"type": {
|
|
2255
|
+
"text": "T"
|
|
2256
|
+
}
|
|
2257
|
+
},
|
|
2258
|
+
"parameters": [
|
|
2259
|
+
{
|
|
2260
|
+
"name": "menu",
|
|
2261
|
+
"type": {
|
|
2262
|
+
"text": "T"
|
|
2263
|
+
}
|
|
2264
|
+
},
|
|
2265
|
+
{
|
|
2266
|
+
"name": "hostElement",
|
|
2267
|
+
"optional": true,
|
|
2268
|
+
"type": {
|
|
2269
|
+
"text": "HTMLElement"
|
|
2270
|
+
}
|
|
2271
|
+
}
|
|
2272
|
+
]
|
|
2273
|
+
},
|
|
1870
2274
|
{
|
|
1871
2275
|
"kind": "function",
|
|
1872
2276
|
"name": "getContentWithMenuTemplate",
|
|
@@ -1922,6 +2326,14 @@
|
|
|
1922
2326
|
{
|
|
1923
2327
|
"name": "fullWidth",
|
|
1924
2328
|
"default": "false"
|
|
2329
|
+
},
|
|
2330
|
+
{
|
|
2331
|
+
"name": "menuId",
|
|
2332
|
+
"default": "\"menu\""
|
|
2333
|
+
},
|
|
2334
|
+
{
|
|
2335
|
+
"name": "fixedToHost",
|
|
2336
|
+
"default": "false"
|
|
1925
2337
|
}
|
|
1926
2338
|
]
|
|
1927
2339
|
},
|
|
@@ -1930,19 +2342,14 @@
|
|
|
1930
2342
|
"description": "",
|
|
1931
2343
|
"name": "OrMwcMenu",
|
|
1932
2344
|
"members": [
|
|
1933
|
-
{
|
|
1934
|
-
"kind": "field",
|
|
1935
|
-
"name": "styles",
|
|
1936
|
-
"static": true,
|
|
1937
|
-
"readonly": true
|
|
1938
|
-
},
|
|
1939
2345
|
{
|
|
1940
2346
|
"kind": "field",
|
|
1941
2347
|
"name": "menuItems",
|
|
1942
2348
|
"type": {
|
|
1943
2349
|
"text": "(ListItem | ListItem[] | null)[] | undefined"
|
|
1944
2350
|
},
|
|
1945
|
-
"privacy": "public"
|
|
2351
|
+
"privacy": "public",
|
|
2352
|
+
"attribute": "menuItems"
|
|
1946
2353
|
},
|
|
1947
2354
|
{
|
|
1948
2355
|
"kind": "field",
|
|
@@ -1950,7 +2357,8 @@
|
|
|
1950
2357
|
"type": {
|
|
1951
2358
|
"text": "any[] | any | undefined"
|
|
1952
2359
|
},
|
|
1953
|
-
"privacy": "public"
|
|
2360
|
+
"privacy": "public",
|
|
2361
|
+
"attribute": "values"
|
|
1954
2362
|
},
|
|
1955
2363
|
{
|
|
1956
2364
|
"kind": "field",
|
|
@@ -1958,7 +2366,8 @@
|
|
|
1958
2366
|
"type": {
|
|
1959
2367
|
"text": "boolean | undefined"
|
|
1960
2368
|
},
|
|
1961
|
-
"privacy": "public"
|
|
2369
|
+
"privacy": "public",
|
|
2370
|
+
"attribute": "multiSelect"
|
|
1962
2371
|
},
|
|
1963
2372
|
{
|
|
1964
2373
|
"kind": "field",
|
|
@@ -1966,7 +2375,8 @@
|
|
|
1966
2375
|
"type": {
|
|
1967
2376
|
"text": "boolean | undefined"
|
|
1968
2377
|
},
|
|
1969
|
-
"privacy": "public"
|
|
2378
|
+
"privacy": "public",
|
|
2379
|
+
"attribute": "visible"
|
|
1970
2380
|
},
|
|
1971
2381
|
{
|
|
1972
2382
|
"kind": "field",
|
|
@@ -1974,7 +2384,8 @@
|
|
|
1974
2384
|
"type": {
|
|
1975
2385
|
"text": "boolean | undefined"
|
|
1976
2386
|
},
|
|
1977
|
-
"privacy": "public"
|
|
2387
|
+
"privacy": "public",
|
|
2388
|
+
"attribute": "translateValues"
|
|
1978
2389
|
},
|
|
1979
2390
|
{
|
|
1980
2391
|
"kind": "field",
|
|
@@ -2021,11 +2432,6 @@
|
|
|
2021
2432
|
"name": "open",
|
|
2022
2433
|
"privacy": "public"
|
|
2023
2434
|
},
|
|
2024
|
-
{
|
|
2025
|
-
"kind": "method",
|
|
2026
|
-
"name": "render",
|
|
2027
|
-
"privacy": "protected"
|
|
2028
|
-
},
|
|
2029
2435
|
{
|
|
2030
2436
|
"kind": "method",
|
|
2031
2437
|
"name": "getItemsTemplate",
|
|
@@ -2051,42 +2457,6 @@
|
|
|
2051
2457
|
}
|
|
2052
2458
|
]
|
|
2053
2459
|
},
|
|
2054
|
-
{
|
|
2055
|
-
"kind": "method",
|
|
2056
|
-
"name": "firstUpdated",
|
|
2057
|
-
"privacy": "protected",
|
|
2058
|
-
"return": {
|
|
2059
|
-
"type": {
|
|
2060
|
-
"text": "void"
|
|
2061
|
-
}
|
|
2062
|
-
},
|
|
2063
|
-
"parameters": [
|
|
2064
|
-
{
|
|
2065
|
-
"name": "_changedProperties",
|
|
2066
|
-
"type": {
|
|
2067
|
-
"text": "PropertyValues"
|
|
2068
|
-
}
|
|
2069
|
-
}
|
|
2070
|
-
]
|
|
2071
|
-
},
|
|
2072
|
-
{
|
|
2073
|
-
"kind": "method",
|
|
2074
|
-
"name": "updated",
|
|
2075
|
-
"privacy": "protected",
|
|
2076
|
-
"return": {
|
|
2077
|
-
"type": {
|
|
2078
|
-
"text": "void"
|
|
2079
|
-
}
|
|
2080
|
-
},
|
|
2081
|
-
"parameters": [
|
|
2082
|
-
{
|
|
2083
|
-
"name": "_changedProperties",
|
|
2084
|
-
"type": {
|
|
2085
|
-
"text": "PropertyValues"
|
|
2086
|
-
}
|
|
2087
|
-
}
|
|
2088
|
-
]
|
|
2089
|
-
},
|
|
2090
2460
|
{
|
|
2091
2461
|
"kind": "method",
|
|
2092
2462
|
"name": "_onMenuClosed",
|
|
@@ -2119,10 +2489,48 @@
|
|
|
2119
2489
|
}
|
|
2120
2490
|
}
|
|
2121
2491
|
],
|
|
2492
|
+
"attributes": [
|
|
2493
|
+
{
|
|
2494
|
+
"name": "menuItems",
|
|
2495
|
+
"type": {
|
|
2496
|
+
"text": "(ListItem | ListItem[] | null)[] | undefined"
|
|
2497
|
+
},
|
|
2498
|
+
"fieldName": "menuItems"
|
|
2499
|
+
},
|
|
2500
|
+
{
|
|
2501
|
+
"name": "values",
|
|
2502
|
+
"type": {
|
|
2503
|
+
"text": "any[] | any | undefined"
|
|
2504
|
+
},
|
|
2505
|
+
"fieldName": "values"
|
|
2506
|
+
},
|
|
2507
|
+
{
|
|
2508
|
+
"name": "multiSelect",
|
|
2509
|
+
"type": {
|
|
2510
|
+
"text": "boolean | undefined"
|
|
2511
|
+
},
|
|
2512
|
+
"fieldName": "multiSelect"
|
|
2513
|
+
},
|
|
2514
|
+
{
|
|
2515
|
+
"name": "visible",
|
|
2516
|
+
"type": {
|
|
2517
|
+
"text": "boolean | undefined"
|
|
2518
|
+
},
|
|
2519
|
+
"fieldName": "visible"
|
|
2520
|
+
},
|
|
2521
|
+
{
|
|
2522
|
+
"name": "translateValues",
|
|
2523
|
+
"type": {
|
|
2524
|
+
"text": "boolean | undefined"
|
|
2525
|
+
},
|
|
2526
|
+
"fieldName": "translateValues"
|
|
2527
|
+
}
|
|
2528
|
+
],
|
|
2122
2529
|
"superclass": {
|
|
2123
2530
|
"name": "LitElement",
|
|
2124
2531
|
"package": "lit"
|
|
2125
2532
|
},
|
|
2533
|
+
"tagName": "or-mwc-menu",
|
|
2126
2534
|
"customElement": true
|
|
2127
2535
|
}
|
|
2128
2536
|
],
|
|
@@ -2143,6 +2551,14 @@
|
|
|
2143
2551
|
"module": "src/or-mwc-menu.ts"
|
|
2144
2552
|
}
|
|
2145
2553
|
},
|
|
2554
|
+
{
|
|
2555
|
+
"kind": "js",
|
|
2556
|
+
"name": "positionMenuAtElement",
|
|
2557
|
+
"declaration": {
|
|
2558
|
+
"name": "positionMenuAtElement",
|
|
2559
|
+
"module": "src/or-mwc-menu.ts"
|
|
2560
|
+
}
|
|
2561
|
+
},
|
|
2146
2562
|
{
|
|
2147
2563
|
"kind": "js",
|
|
2148
2564
|
"name": "getContentWithMenuTemplate",
|
|
@@ -2158,6 +2574,14 @@
|
|
|
2158
2574
|
"name": "OrMwcMenu",
|
|
2159
2575
|
"module": "src/or-mwc-menu.ts"
|
|
2160
2576
|
}
|
|
2577
|
+
},
|
|
2578
|
+
{
|
|
2579
|
+
"kind": "custom-element-definition",
|
|
2580
|
+
"name": "or-mwc-menu",
|
|
2581
|
+
"declaration": {
|
|
2582
|
+
"name": "OrMwcMenu",
|
|
2583
|
+
"module": "src/or-mwc-menu.ts"
|
|
2584
|
+
}
|
|
2161
2585
|
}
|
|
2162
2586
|
]
|
|
2163
2587
|
},
|
|
@@ -2239,13 +2663,6 @@
|
|
|
2239
2663
|
"static": true,
|
|
2240
2664
|
"description": "Can be set by apps to control where in the DOM snackbars are added"
|
|
2241
2665
|
},
|
|
2242
|
-
{
|
|
2243
|
-
"kind": "field",
|
|
2244
|
-
"name": "styles",
|
|
2245
|
-
"privacy": "public",
|
|
2246
|
-
"static": true,
|
|
2247
|
-
"readonly": true
|
|
2248
|
-
},
|
|
2249
2666
|
{
|
|
2250
2667
|
"kind": "field",
|
|
2251
2668
|
"name": "text",
|
|
@@ -2260,7 +2677,8 @@
|
|
|
2260
2677
|
"type": {
|
|
2261
2678
|
"text": "string | undefined"
|
|
2262
2679
|
},
|
|
2263
|
-
"privacy": "public"
|
|
2680
|
+
"privacy": "public",
|
|
2681
|
+
"attribute": "buttonText"
|
|
2264
2682
|
},
|
|
2265
2683
|
{
|
|
2266
2684
|
"kind": "field",
|
|
@@ -2276,7 +2694,8 @@
|
|
|
2276
2694
|
"type": {
|
|
2277
2695
|
"text": "number | undefined"
|
|
2278
2696
|
},
|
|
2279
|
-
"privacy": "public"
|
|
2697
|
+
"privacy": "public",
|
|
2698
|
+
"attribute": "timeout"
|
|
2280
2699
|
},
|
|
2281
2700
|
{
|
|
2282
2701
|
"kind": "field",
|
|
@@ -2285,7 +2704,8 @@
|
|
|
2285
2704
|
"text": "boolean"
|
|
2286
2705
|
},
|
|
2287
2706
|
"privacy": "public",
|
|
2288
|
-
"default": "false"
|
|
2707
|
+
"default": "false",
|
|
2708
|
+
"attribute": "_open"
|
|
2289
2709
|
},
|
|
2290
2710
|
{
|
|
2291
2711
|
"kind": "field",
|
|
@@ -2327,24 +2747,6 @@
|
|
|
2327
2747
|
}
|
|
2328
2748
|
]
|
|
2329
2749
|
},
|
|
2330
|
-
{
|
|
2331
|
-
"kind": "method",
|
|
2332
|
-
"name": "render",
|
|
2333
|
-
"privacy": "protected"
|
|
2334
|
-
},
|
|
2335
|
-
{
|
|
2336
|
-
"kind": "method",
|
|
2337
|
-
"name": "updated",
|
|
2338
|
-
"privacy": "protected",
|
|
2339
|
-
"parameters": [
|
|
2340
|
-
{
|
|
2341
|
-
"name": "_changedProperties",
|
|
2342
|
-
"type": {
|
|
2343
|
-
"text": "PropertyValues"
|
|
2344
|
-
}
|
|
2345
|
-
}
|
|
2346
|
-
]
|
|
2347
|
-
},
|
|
2348
2750
|
{
|
|
2349
2751
|
"kind": "method",
|
|
2350
2752
|
"name": "onClose",
|
|
@@ -2385,10 +2787,35 @@
|
|
|
2385
2787
|
}
|
|
2386
2788
|
}
|
|
2387
2789
|
],
|
|
2790
|
+
"attributes": [
|
|
2791
|
+
{
|
|
2792
|
+
"name": "buttonText",
|
|
2793
|
+
"type": {
|
|
2794
|
+
"text": "string | undefined"
|
|
2795
|
+
},
|
|
2796
|
+
"fieldName": "buttonText"
|
|
2797
|
+
},
|
|
2798
|
+
{
|
|
2799
|
+
"name": "timeout",
|
|
2800
|
+
"type": {
|
|
2801
|
+
"text": "number | undefined"
|
|
2802
|
+
},
|
|
2803
|
+
"fieldName": "timeout"
|
|
2804
|
+
},
|
|
2805
|
+
{
|
|
2806
|
+
"name": "_open",
|
|
2807
|
+
"type": {
|
|
2808
|
+
"text": "boolean"
|
|
2809
|
+
},
|
|
2810
|
+
"default": "false",
|
|
2811
|
+
"fieldName": "_open"
|
|
2812
|
+
}
|
|
2813
|
+
],
|
|
2388
2814
|
"superclass": {
|
|
2389
2815
|
"name": "LitElement",
|
|
2390
2816
|
"package": "lit"
|
|
2391
2817
|
},
|
|
2818
|
+
"tagName": "or-mwc-snackbar",
|
|
2392
2819
|
"customElement": true
|
|
2393
2820
|
}
|
|
2394
2821
|
],
|
|
@@ -2416,6 +2843,14 @@
|
|
|
2416
2843
|
"name": "OrMwcSnackbar",
|
|
2417
2844
|
"module": "src/or-mwc-snackbar.ts"
|
|
2418
2845
|
}
|
|
2846
|
+
},
|
|
2847
|
+
{
|
|
2848
|
+
"kind": "custom-element-definition",
|
|
2849
|
+
"name": "or-mwc-snackbar",
|
|
2850
|
+
"declaration": {
|
|
2851
|
+
"name": "OrMwcSnackbar",
|
|
2852
|
+
"module": "src/or-mwc-snackbar.ts"
|
|
2853
|
+
}
|
|
2419
2854
|
}
|
|
2420
2855
|
]
|
|
2421
2856
|
},
|
|
@@ -2472,19 +2907,14 @@
|
|
|
2472
2907
|
"description": "",
|
|
2473
2908
|
"name": "OrMwcTable",
|
|
2474
2909
|
"members": [
|
|
2475
|
-
{
|
|
2476
|
-
"kind": "field",
|
|
2477
|
-
"name": "styles",
|
|
2478
|
-
"static": true,
|
|
2479
|
-
"readonly": true
|
|
2480
|
-
},
|
|
2481
2910
|
{
|
|
2482
2911
|
"kind": "field",
|
|
2483
2912
|
"name": "columns",
|
|
2484
2913
|
"type": {
|
|
2485
2914
|
"text": "TableColumn[] | string[] | undefined"
|
|
2486
2915
|
},
|
|
2487
|
-
"privacy": "public"
|
|
2916
|
+
"privacy": "public",
|
|
2917
|
+
"attribute": "columns"
|
|
2488
2918
|
},
|
|
2489
2919
|
{
|
|
2490
2920
|
"kind": "field",
|
|
@@ -2492,7 +2922,8 @@
|
|
|
2492
2922
|
"type": {
|
|
2493
2923
|
"text": "TemplateResult | undefined"
|
|
2494
2924
|
},
|
|
2495
|
-
"privacy": "protected"
|
|
2925
|
+
"privacy": "protected",
|
|
2926
|
+
"attribute": "columnsTemplate"
|
|
2496
2927
|
},
|
|
2497
2928
|
{
|
|
2498
2929
|
"kind": "field",
|
|
@@ -2500,7 +2931,8 @@
|
|
|
2500
2931
|
"type": {
|
|
2501
2932
|
"text": "TableRow[] | string[][] | undefined"
|
|
2502
2933
|
},
|
|
2503
|
-
"privacy": "public"
|
|
2934
|
+
"privacy": "public",
|
|
2935
|
+
"attribute": "rows"
|
|
2504
2936
|
},
|
|
2505
2937
|
{
|
|
2506
2938
|
"kind": "field",
|
|
@@ -2508,7 +2940,8 @@
|
|
|
2508
2940
|
"type": {
|
|
2509
2941
|
"text": "TemplateResult | undefined"
|
|
2510
2942
|
},
|
|
2511
|
-
"privacy": "protected"
|
|
2943
|
+
"privacy": "protected",
|
|
2944
|
+
"attribute": "rowsTemplate"
|
|
2512
2945
|
},
|
|
2513
2946
|
{
|
|
2514
2947
|
"kind": "field",
|
|
@@ -2517,7 +2950,8 @@
|
|
|
2517
2950
|
"text": "TableConfig"
|
|
2518
2951
|
},
|
|
2519
2952
|
"privacy": "protected",
|
|
2520
|
-
"default": "{ columnFilter: [], stickyFirstColumn: true, fullHeight: false, pagination: { enable: false } }"
|
|
2953
|
+
"default": "{ columnFilter: [], stickyFirstColumn: true, fullHeight: false, pagination: { enable: false } }",
|
|
2954
|
+
"attribute": "config"
|
|
2521
2955
|
},
|
|
2522
2956
|
{
|
|
2523
2957
|
"kind": "field",
|
|
@@ -2526,7 +2960,8 @@
|
|
|
2526
2960
|
"text": "number"
|
|
2527
2961
|
},
|
|
2528
2962
|
"privacy": "protected",
|
|
2529
|
-
"default": "0"
|
|
2963
|
+
"default": "0",
|
|
2964
|
+
"attribute": "paginationIndex"
|
|
2530
2965
|
},
|
|
2531
2966
|
{
|
|
2532
2967
|
"kind": "field",
|
|
@@ -2535,7 +2970,8 @@
|
|
|
2535
2970
|
"text": "number"
|
|
2536
2971
|
},
|
|
2537
2972
|
"privacy": "public",
|
|
2538
|
-
"default": "10"
|
|
2973
|
+
"default": "10",
|
|
2974
|
+
"attribute": "paginationSize"
|
|
2539
2975
|
},
|
|
2540
2976
|
{
|
|
2541
2977
|
"kind": "field",
|
|
@@ -2552,7 +2988,8 @@
|
|
|
2552
2988
|
"text": "'ASC' | 'DESC'"
|
|
2553
2989
|
},
|
|
2554
2990
|
"privacy": "protected",
|
|
2555
|
-
"default": "'ASC'"
|
|
2991
|
+
"default": "'ASC'",
|
|
2992
|
+
"attribute": "sortDirection"
|
|
2556
2993
|
},
|
|
2557
2994
|
{
|
|
2558
2995
|
"kind": "field",
|
|
@@ -2561,7 +2998,8 @@
|
|
|
2561
2998
|
"text": "number | undefined"
|
|
2562
2999
|
},
|
|
2563
3000
|
"privacy": "protected",
|
|
2564
|
-
"default": "-1"
|
|
3001
|
+
"default": "-1",
|
|
3002
|
+
"attribute": "sortIndex"
|
|
2565
3003
|
},
|
|
2566
3004
|
{
|
|
2567
3005
|
"kind": "field",
|
|
@@ -2570,38 +3008,8 @@
|
|
|
2570
3008
|
"text": "TableRow[] | string[][] | any[] | undefined"
|
|
2571
3009
|
},
|
|
2572
3010
|
"privacy": "public",
|
|
2573
|
-
"default": "[]"
|
|
2574
|
-
|
|
2575
|
-
{
|
|
2576
|
-
"kind": "method",
|
|
2577
|
-
"name": "firstUpdated",
|
|
2578
|
-
"privacy": "protected",
|
|
2579
|
-
"parameters": [
|
|
2580
|
-
{
|
|
2581
|
-
"name": "changedProperties",
|
|
2582
|
-
"type": {
|
|
2583
|
-
"text": "Map<string, any>"
|
|
2584
|
-
}
|
|
2585
|
-
}
|
|
2586
|
-
]
|
|
2587
|
-
},
|
|
2588
|
-
{
|
|
2589
|
-
"kind": "method",
|
|
2590
|
-
"name": "updated",
|
|
2591
|
-
"privacy": "protected",
|
|
2592
|
-
"parameters": [
|
|
2593
|
-
{
|
|
2594
|
-
"name": "changedProperties",
|
|
2595
|
-
"type": {
|
|
2596
|
-
"text": "Map<string, any>"
|
|
2597
|
-
}
|
|
2598
|
-
}
|
|
2599
|
-
]
|
|
2600
|
-
},
|
|
2601
|
-
{
|
|
2602
|
-
"kind": "method",
|
|
2603
|
-
"name": "render",
|
|
2604
|
-
"privacy": "protected"
|
|
3011
|
+
"default": "[]",
|
|
3012
|
+
"attribute": "selectedRows"
|
|
2605
3013
|
},
|
|
2606
3014
|
{
|
|
2607
3015
|
"kind": "method",
|
|
@@ -3010,10 +3418,89 @@
|
|
|
3010
3418
|
}
|
|
3011
3419
|
}
|
|
3012
3420
|
],
|
|
3421
|
+
"attributes": [
|
|
3422
|
+
{
|
|
3423
|
+
"name": "columns",
|
|
3424
|
+
"type": {
|
|
3425
|
+
"text": "TableColumn[] | string[] | undefined"
|
|
3426
|
+
},
|
|
3427
|
+
"fieldName": "columns"
|
|
3428
|
+
},
|
|
3429
|
+
{
|
|
3430
|
+
"name": "columnsTemplate",
|
|
3431
|
+
"type": {
|
|
3432
|
+
"text": "TemplateResult | undefined"
|
|
3433
|
+
},
|
|
3434
|
+
"fieldName": "columnsTemplate"
|
|
3435
|
+
},
|
|
3436
|
+
{
|
|
3437
|
+
"name": "rows",
|
|
3438
|
+
"type": {
|
|
3439
|
+
"text": "TableRow[] | string[][] | undefined"
|
|
3440
|
+
},
|
|
3441
|
+
"fieldName": "rows"
|
|
3442
|
+
},
|
|
3443
|
+
{
|
|
3444
|
+
"name": "rowsTemplate",
|
|
3445
|
+
"type": {
|
|
3446
|
+
"text": "TemplateResult | undefined"
|
|
3447
|
+
},
|
|
3448
|
+
"fieldName": "rowsTemplate"
|
|
3449
|
+
},
|
|
3450
|
+
{
|
|
3451
|
+
"name": "config",
|
|
3452
|
+
"type": {
|
|
3453
|
+
"text": "TableConfig"
|
|
3454
|
+
},
|
|
3455
|
+
"default": "{ columnFilter: [], stickyFirstColumn: true, fullHeight: false, pagination: { enable: false } }",
|
|
3456
|
+
"fieldName": "config"
|
|
3457
|
+
},
|
|
3458
|
+
{
|
|
3459
|
+
"name": "paginationIndex",
|
|
3460
|
+
"type": {
|
|
3461
|
+
"text": "number"
|
|
3462
|
+
},
|
|
3463
|
+
"default": "0",
|
|
3464
|
+
"fieldName": "paginationIndex"
|
|
3465
|
+
},
|
|
3466
|
+
{
|
|
3467
|
+
"name": "paginationSize",
|
|
3468
|
+
"type": {
|
|
3469
|
+
"text": "number"
|
|
3470
|
+
},
|
|
3471
|
+
"default": "10",
|
|
3472
|
+
"fieldName": "paginationSize"
|
|
3473
|
+
},
|
|
3474
|
+
{
|
|
3475
|
+
"name": "sortDirection",
|
|
3476
|
+
"type": {
|
|
3477
|
+
"text": "'ASC' | 'DESC'"
|
|
3478
|
+
},
|
|
3479
|
+
"default": "'ASC'",
|
|
3480
|
+
"fieldName": "sortDirection"
|
|
3481
|
+
},
|
|
3482
|
+
{
|
|
3483
|
+
"name": "sortIndex",
|
|
3484
|
+
"type": {
|
|
3485
|
+
"text": "number | undefined"
|
|
3486
|
+
},
|
|
3487
|
+
"default": "-1",
|
|
3488
|
+
"fieldName": "sortIndex"
|
|
3489
|
+
},
|
|
3490
|
+
{
|
|
3491
|
+
"name": "selectedRows",
|
|
3492
|
+
"type": {
|
|
3493
|
+
"text": "TableRow[] | string[][] | any[] | undefined"
|
|
3494
|
+
},
|
|
3495
|
+
"default": "[]",
|
|
3496
|
+
"fieldName": "selectedRows"
|
|
3497
|
+
}
|
|
3498
|
+
],
|
|
3013
3499
|
"superclass": {
|
|
3014
3500
|
"name": "LitElement",
|
|
3015
3501
|
"package": "lit"
|
|
3016
3502
|
},
|
|
3503
|
+
"tagName": "or-mwc-table",
|
|
3017
3504
|
"customElement": true
|
|
3018
3505
|
}
|
|
3019
3506
|
],
|
|
@@ -3041,6 +3528,14 @@
|
|
|
3041
3528
|
"name": "OrMwcTable",
|
|
3042
3529
|
"module": "src/or-mwc-table.ts"
|
|
3043
3530
|
}
|
|
3531
|
+
},
|
|
3532
|
+
{
|
|
3533
|
+
"kind": "custom-element-definition",
|
|
3534
|
+
"name": "or-mwc-table",
|
|
3535
|
+
"declaration": {
|
|
3536
|
+
"name": "OrMwcTable",
|
|
3537
|
+
"module": "src/or-mwc-table.ts"
|
|
3538
|
+
}
|
|
3044
3539
|
}
|
|
3045
3540
|
]
|
|
3046
3541
|
},
|
|
@@ -3053,19 +3548,14 @@
|
|
|
3053
3548
|
"description": "",
|
|
3054
3549
|
"name": "OrMwcTabs",
|
|
3055
3550
|
"members": [
|
|
3056
|
-
{
|
|
3057
|
-
"kind": "field",
|
|
3058
|
-
"name": "styles",
|
|
3059
|
-
"static": true,
|
|
3060
|
-
"readonly": true
|
|
3061
|
-
},
|
|
3062
3551
|
{
|
|
3063
3552
|
"kind": "field",
|
|
3064
3553
|
"name": "index",
|
|
3065
3554
|
"type": {
|
|
3066
3555
|
"text": "number | undefined"
|
|
3067
3556
|
},
|
|
3068
|
-
"privacy": "protected"
|
|
3557
|
+
"privacy": "protected",
|
|
3558
|
+
"attribute": "index"
|
|
3069
3559
|
},
|
|
3070
3560
|
{
|
|
3071
3561
|
"kind": "field",
|
|
@@ -3073,7 +3563,8 @@
|
|
|
3073
3563
|
"type": {
|
|
3074
3564
|
"text": "OrMwcTabItem[] | undefined"
|
|
3075
3565
|
},
|
|
3076
|
-
"privacy": "protected"
|
|
3566
|
+
"privacy": "protected",
|
|
3567
|
+
"attribute": "items"
|
|
3077
3568
|
},
|
|
3078
3569
|
{
|
|
3079
3570
|
"kind": "field",
|
|
@@ -3081,7 +3572,8 @@
|
|
|
3081
3572
|
"type": {
|
|
3082
3573
|
"text": "\"left\" | \"top\" | undefined"
|
|
3083
3574
|
},
|
|
3084
|
-
"privacy": "protected"
|
|
3575
|
+
"privacy": "protected",
|
|
3576
|
+
"attribute": "iconPosition"
|
|
3085
3577
|
},
|
|
3086
3578
|
{
|
|
3087
3579
|
"kind": "field",
|
|
@@ -3089,7 +3581,8 @@
|
|
|
3089
3581
|
"type": {
|
|
3090
3582
|
"text": "boolean | undefined"
|
|
3091
3583
|
},
|
|
3092
|
-
"privacy": "protected"
|
|
3584
|
+
"privacy": "protected",
|
|
3585
|
+
"attribute": "noScroll"
|
|
3093
3586
|
},
|
|
3094
3587
|
{
|
|
3095
3588
|
"kind": "field",
|
|
@@ -3097,7 +3590,8 @@
|
|
|
3097
3590
|
"type": {
|
|
3098
3591
|
"text": "string | undefined"
|
|
3099
3592
|
},
|
|
3100
|
-
"privacy": "protected"
|
|
3593
|
+
"privacy": "protected",
|
|
3594
|
+
"attribute": "bgColor"
|
|
3101
3595
|
},
|
|
3102
3596
|
{
|
|
3103
3597
|
"kind": "field",
|
|
@@ -3105,15 +3599,8 @@
|
|
|
3105
3599
|
"type": {
|
|
3106
3600
|
"text": "string | undefined"
|
|
3107
3601
|
},
|
|
3108
|
-
"privacy": "protected"
|
|
3109
|
-
|
|
3110
|
-
{
|
|
3111
|
-
"kind": "field",
|
|
3112
|
-
"name": "styles",
|
|
3113
|
-
"type": {
|
|
3114
|
-
"text": "CSSResult | string | undefined"
|
|
3115
|
-
},
|
|
3116
|
-
"privacy": "protected"
|
|
3602
|
+
"privacy": "protected",
|
|
3603
|
+
"attribute": "color"
|
|
3117
3604
|
},
|
|
3118
3605
|
{
|
|
3119
3606
|
"kind": "field",
|
|
@@ -3122,24 +3609,6 @@
|
|
|
3122
3609
|
"text": "MDCTabBar | undefined"
|
|
3123
3610
|
},
|
|
3124
3611
|
"privacy": "private"
|
|
3125
|
-
},
|
|
3126
|
-
{
|
|
3127
|
-
"kind": "method",
|
|
3128
|
-
"name": "updated",
|
|
3129
|
-
"privacy": "protected",
|
|
3130
|
-
"parameters": [
|
|
3131
|
-
{
|
|
3132
|
-
"name": "changedProperties",
|
|
3133
|
-
"type": {
|
|
3134
|
-
"text": "Map<string, any>"
|
|
3135
|
-
}
|
|
3136
|
-
}
|
|
3137
|
-
]
|
|
3138
|
-
},
|
|
3139
|
-
{
|
|
3140
|
-
"kind": "method",
|
|
3141
|
-
"name": "render",
|
|
3142
|
-
"privacy": "protected"
|
|
3143
3612
|
}
|
|
3144
3613
|
],
|
|
3145
3614
|
"events": [
|
|
@@ -3150,10 +3619,60 @@
|
|
|
3150
3619
|
}
|
|
3151
3620
|
}
|
|
3152
3621
|
],
|
|
3622
|
+
"attributes": [
|
|
3623
|
+
{
|
|
3624
|
+
"name": "index",
|
|
3625
|
+
"type": {
|
|
3626
|
+
"text": "number | undefined"
|
|
3627
|
+
},
|
|
3628
|
+
"fieldName": "index"
|
|
3629
|
+
},
|
|
3630
|
+
{
|
|
3631
|
+
"name": "items",
|
|
3632
|
+
"type": {
|
|
3633
|
+
"text": "OrMwcTabItem[] | undefined"
|
|
3634
|
+
},
|
|
3635
|
+
"fieldName": "items"
|
|
3636
|
+
},
|
|
3637
|
+
{
|
|
3638
|
+
"name": "iconPosition",
|
|
3639
|
+
"type": {
|
|
3640
|
+
"text": "\"left\" | \"top\" | undefined"
|
|
3641
|
+
},
|
|
3642
|
+
"fieldName": "iconPosition"
|
|
3643
|
+
},
|
|
3644
|
+
{
|
|
3645
|
+
"name": "noScroll",
|
|
3646
|
+
"type": {
|
|
3647
|
+
"text": "boolean | undefined"
|
|
3648
|
+
},
|
|
3649
|
+
"fieldName": "noScroll"
|
|
3650
|
+
},
|
|
3651
|
+
{
|
|
3652
|
+
"name": "bgColor",
|
|
3653
|
+
"type": {
|
|
3654
|
+
"text": "string | undefined"
|
|
3655
|
+
},
|
|
3656
|
+
"fieldName": "bgColor"
|
|
3657
|
+
},
|
|
3658
|
+
{
|
|
3659
|
+
"name": "color",
|
|
3660
|
+
"type": {
|
|
3661
|
+
"text": "string | undefined"
|
|
3662
|
+
},
|
|
3663
|
+
"fieldName": "color"
|
|
3664
|
+
},
|
|
3665
|
+
{
|
|
3666
|
+
"name": "styles",
|
|
3667
|
+
"readonly": true,
|
|
3668
|
+
"fieldName": "styles"
|
|
3669
|
+
}
|
|
3670
|
+
],
|
|
3153
3671
|
"superclass": {
|
|
3154
3672
|
"name": "LitElement",
|
|
3155
3673
|
"package": "lit"
|
|
3156
3674
|
},
|
|
3675
|
+
"tagName": "or-mwc-tabs",
|
|
3157
3676
|
"customElement": true
|
|
3158
3677
|
}
|
|
3159
3678
|
],
|
|
@@ -3165,6 +3684,14 @@
|
|
|
3165
3684
|
"name": "OrMwcTabs",
|
|
3166
3685
|
"module": "src/or-mwc-tabs.ts"
|
|
3167
3686
|
}
|
|
3687
|
+
},
|
|
3688
|
+
{
|
|
3689
|
+
"kind": "custom-element-definition",
|
|
3690
|
+
"name": "or-mwc-tabs",
|
|
3691
|
+
"declaration": {
|
|
3692
|
+
"name": "OrMwcTabs",
|
|
3693
|
+
"module": "src/or-mwc-tabs.ts"
|
|
3694
|
+
}
|
|
3168
3695
|
}
|
|
3169
3696
|
]
|
|
3170
3697
|
},
|