@openremote/or-mwc-components 1.6.0-snapshot.20250512145140 → 1.6.0-snapshot.20250512155842

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.
@@ -0,0 +1,3193 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "src/or-mwc-dialog.ts",
8
+ "declarations": [
9
+ {
10
+ "kind": "class",
11
+ "description": "",
12
+ "name": "OrMwcDialogOpenedEvent",
13
+ "members": [
14
+ {
15
+ "kind": "field",
16
+ "name": "NAME",
17
+ "type": {
18
+ "text": "string"
19
+ },
20
+ "privacy": "public",
21
+ "static": true,
22
+ "readonly": true,
23
+ "default": "\"or-mwc-dialog-opened\""
24
+ }
25
+ ],
26
+ "superclass": {
27
+ "name": "CustomEvent",
28
+ "module": "src/or-mwc-dialog.ts"
29
+ }
30
+ },
31
+ {
32
+ "kind": "class",
33
+ "description": "",
34
+ "name": "OrMwcDialogClosedEvent",
35
+ "members": [
36
+ {
37
+ "kind": "field",
38
+ "name": "NAME",
39
+ "type": {
40
+ "text": "string"
41
+ },
42
+ "privacy": "public",
43
+ "static": true,
44
+ "readonly": true,
45
+ "default": "\"or-mwc-dialog-closed\""
46
+ }
47
+ ],
48
+ "superclass": {
49
+ "name": "CustomEvent",
50
+ "module": "src/or-mwc-dialog.ts"
51
+ }
52
+ },
53
+ {
54
+ "kind": "function",
55
+ "name": "showErrorDialog",
56
+ "parameters": [
57
+ {
58
+ "name": "errorMessage",
59
+ "type": {
60
+ "text": "string"
61
+ }
62
+ },
63
+ {
64
+ "name": "hostElement",
65
+ "optional": true,
66
+ "type": {
67
+ "text": "HTMLElement"
68
+ }
69
+ }
70
+ ]
71
+ },
72
+ {
73
+ "kind": "function",
74
+ "name": "showOkCancelDialog",
75
+ "parameters": [
76
+ {
77
+ "name": "title",
78
+ "type": {
79
+ "text": "string"
80
+ }
81
+ },
82
+ {
83
+ "name": "content",
84
+ "type": {
85
+ "text": "string | TemplateResult"
86
+ }
87
+ },
88
+ {
89
+ "name": "okText",
90
+ "optional": true,
91
+ "type": {
92
+ "text": "string"
93
+ }
94
+ },
95
+ {
96
+ "name": "hostElement",
97
+ "optional": true,
98
+ "type": {
99
+ "text": "HTMLElement"
100
+ }
101
+ }
102
+ ]
103
+ },
104
+ {
105
+ "kind": "function",
106
+ "name": "showOkDialog",
107
+ "parameters": [
108
+ {
109
+ "name": "title",
110
+ "type": {
111
+ "text": "string"
112
+ }
113
+ },
114
+ {
115
+ "name": "content",
116
+ "type": {
117
+ "text": "string | TemplateResult"
118
+ }
119
+ },
120
+ {
121
+ "name": "okText",
122
+ "optional": true,
123
+ "type": {
124
+ "text": "string"
125
+ }
126
+ },
127
+ {
128
+ "name": "hostElement",
129
+ "optional": true,
130
+ "type": {
131
+ "text": "HTMLElement"
132
+ }
133
+ }
134
+ ]
135
+ },
136
+ {
137
+ "kind": "function",
138
+ "name": "showDialog",
139
+ "return": {
140
+ "type": {
141
+ "text": "T"
142
+ }
143
+ },
144
+ "parameters": [
145
+ {
146
+ "name": "dialog",
147
+ "type": {
148
+ "text": "T"
149
+ }
150
+ },
151
+ {
152
+ "name": "hostElement",
153
+ "optional": true,
154
+ "type": {
155
+ "text": "HTMLElement"
156
+ }
157
+ }
158
+ ]
159
+ },
160
+ {
161
+ "kind": "class",
162
+ "description": "",
163
+ "name": "OrMwcDialog",
164
+ "members": [
165
+ {
166
+ "kind": "field",
167
+ "name": "DialogHostElement",
168
+ "type": {
169
+ "text": "HTMLElement"
170
+ },
171
+ "privacy": "public",
172
+ "static": true,
173
+ "description": "Can be set by apps to control where in the DOM dialogs are added"
174
+ },
175
+ {
176
+ "kind": "field",
177
+ "name": "styles",
178
+ "static": true,
179
+ "readonly": true
180
+ },
181
+ {
182
+ "kind": "field",
183
+ "name": "heading",
184
+ "type": {
185
+ "text": "string | TemplateResult | undefined"
186
+ },
187
+ "privacy": "public"
188
+ },
189
+ {
190
+ "kind": "field",
191
+ "name": "content",
192
+ "type": {
193
+ "text": "TemplateResult | (() => TemplateResult) | undefined"
194
+ },
195
+ "privacy": "public"
196
+ },
197
+ {
198
+ "kind": "field",
199
+ "name": "actions",
200
+ "type": {
201
+ "text": "DialogAction[] | undefined"
202
+ },
203
+ "privacy": "public"
204
+ },
205
+ {
206
+ "kind": "field",
207
+ "name": "dismissAction",
208
+ "type": {
209
+ "text": "DialogActionBase | null | undefined"
210
+ },
211
+ "privacy": "public"
212
+ },
213
+ {
214
+ "kind": "field",
215
+ "name": "avatar",
216
+ "type": {
217
+ "text": "boolean | undefined"
218
+ },
219
+ "privacy": "public"
220
+ },
221
+ {
222
+ "kind": "field",
223
+ "name": "styles",
224
+ "type": {
225
+ "text": "TemplateResult | string | undefined"
226
+ },
227
+ "privacy": "public"
228
+ },
229
+ {
230
+ "kind": "field",
231
+ "name": "_open",
232
+ "type": {
233
+ "text": "boolean"
234
+ },
235
+ "privacy": "protected",
236
+ "default": "false"
237
+ },
238
+ {
239
+ "kind": "field",
240
+ "name": "_mdcElem",
241
+ "type": {
242
+ "text": "HTMLElement"
243
+ },
244
+ "privacy": "protected"
245
+ },
246
+ {
247
+ "kind": "field",
248
+ "name": "_mdcComponent",
249
+ "type": {
250
+ "text": "MDCDialog | undefined"
251
+ },
252
+ "privacy": "protected"
253
+ },
254
+ {
255
+ "kind": "field",
256
+ "name": "_popstateEventBind",
257
+ "privacy": "protected"
258
+ },
259
+ {
260
+ "kind": "field",
261
+ "name": "isOpen",
262
+ "privacy": "public",
263
+ "readonly": true
264
+ },
265
+ {
266
+ "kind": "method",
267
+ "name": "setOpen",
268
+ "privacy": "public",
269
+ "return": {
270
+ "type": {
271
+ "text": "OrMwcDialog"
272
+ }
273
+ },
274
+ "parameters": [
275
+ {
276
+ "name": "isOpen",
277
+ "type": {
278
+ "text": "boolean"
279
+ }
280
+ }
281
+ ]
282
+ },
283
+ {
284
+ "kind": "method",
285
+ "name": "setHeading",
286
+ "privacy": "public",
287
+ "return": {
288
+ "type": {
289
+ "text": "OrMwcDialog"
290
+ }
291
+ },
292
+ "parameters": [
293
+ {
294
+ "name": "heading",
295
+ "type": {
296
+ "text": "TemplateResult | string | undefined"
297
+ }
298
+ }
299
+ ]
300
+ },
301
+ {
302
+ "kind": "method",
303
+ "name": "setContent",
304
+ "privacy": "public",
305
+ "return": {
306
+ "type": {
307
+ "text": "OrMwcDialog"
308
+ }
309
+ },
310
+ "parameters": [
311
+ {
312
+ "name": "content",
313
+ "type": {
314
+ "text": "TemplateResult | (() => TemplateResult) | undefined"
315
+ }
316
+ }
317
+ ]
318
+ },
319
+ {
320
+ "kind": "method",
321
+ "name": "setActions",
322
+ "privacy": "public",
323
+ "return": {
324
+ "type": {
325
+ "text": "OrMwcDialog"
326
+ }
327
+ },
328
+ "parameters": [
329
+ {
330
+ "name": "actions",
331
+ "type": {
332
+ "text": "DialogAction[] | undefined"
333
+ }
334
+ }
335
+ ]
336
+ },
337
+ {
338
+ "kind": "method",
339
+ "name": "setDismissAction",
340
+ "privacy": "public",
341
+ "return": {
342
+ "type": {
343
+ "text": "OrMwcDialog"
344
+ }
345
+ },
346
+ "parameters": [
347
+ {
348
+ "name": "action",
349
+ "type": {
350
+ "text": "DialogActionBase | null | undefined"
351
+ }
352
+ }
353
+ ]
354
+ },
355
+ {
356
+ "kind": "method",
357
+ "name": "setStyles",
358
+ "privacy": "public",
359
+ "return": {
360
+ "type": {
361
+ "text": "OrMwcDialog"
362
+ }
363
+ },
364
+ "parameters": [
365
+ {
366
+ "name": "styles",
367
+ "type": {
368
+ "text": "string | TemplateResult | undefined"
369
+ }
370
+ }
371
+ ]
372
+ },
373
+ {
374
+ "kind": "method",
375
+ "name": "setAvatar",
376
+ "privacy": "public",
377
+ "return": {
378
+ "type": {
379
+ "text": "OrMwcDialog"
380
+ }
381
+ },
382
+ "parameters": [
383
+ {
384
+ "name": "avatar",
385
+ "type": {
386
+ "text": "boolean | undefined"
387
+ }
388
+ }
389
+ ]
390
+ },
391
+ {
392
+ "kind": "method",
393
+ "name": "open",
394
+ "privacy": "public"
395
+ },
396
+ {
397
+ "kind": "method",
398
+ "name": "close",
399
+ "privacy": "public",
400
+ "parameters": [
401
+ {
402
+ "name": "action",
403
+ "optional": true,
404
+ "type": {
405
+ "text": "string"
406
+ }
407
+ }
408
+ ]
409
+ },
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
+ {
429
+ "kind": "method",
430
+ "name": "_onDialogOpened",
431
+ "privacy": "protected"
432
+ },
433
+ {
434
+ "kind": "method",
435
+ "name": "_onDialogClosed",
436
+ "privacy": "protected",
437
+ "parameters": [
438
+ {
439
+ "name": "action",
440
+ "optional": true,
441
+ "type": {
442
+ "text": "string"
443
+ }
444
+ }
445
+ ]
446
+ },
447
+ {
448
+ "kind": "method",
449
+ "name": "_onBrowserNavigate",
450
+ "privacy": "protected",
451
+ "parameters": [
452
+ {
453
+ "name": "ev",
454
+ "type": {
455
+ "text": "PopStateEvent"
456
+ }
457
+ }
458
+ ],
459
+ "description": "Function callback for when the browser window navigates to another place.\nWe attempt to close the dialog when this occurs."
460
+ }
461
+ ],
462
+ "events": [
463
+ {
464
+ "type": {
465
+ "text": "OrMwcDialogOpenedEvent"
466
+ }
467
+ },
468
+ {
469
+ "name": "action",
470
+ "type": {
471
+ "text": "OrMwcDialogClosedEvent"
472
+ }
473
+ }
474
+ ],
475
+ "superclass": {
476
+ "name": "LitElement",
477
+ "package": "lit"
478
+ },
479
+ "customElement": true
480
+ }
481
+ ],
482
+ "exports": [
483
+ {
484
+ "kind": "js",
485
+ "name": "OrMwcDialogOpenedEvent",
486
+ "declaration": {
487
+ "name": "OrMwcDialogOpenedEvent",
488
+ "module": "src/or-mwc-dialog.ts"
489
+ }
490
+ },
491
+ {
492
+ "kind": "js",
493
+ "name": "OrMwcDialogClosedEvent",
494
+ "declaration": {
495
+ "name": "OrMwcDialogClosedEvent",
496
+ "module": "src/or-mwc-dialog.ts"
497
+ }
498
+ },
499
+ {
500
+ "kind": "js",
501
+ "name": "showErrorDialog",
502
+ "declaration": {
503
+ "name": "showErrorDialog",
504
+ "module": "src/or-mwc-dialog.ts"
505
+ }
506
+ },
507
+ {
508
+ "kind": "js",
509
+ "name": "showOkCancelDialog",
510
+ "declaration": {
511
+ "name": "showOkCancelDialog",
512
+ "module": "src/or-mwc-dialog.ts"
513
+ }
514
+ },
515
+ {
516
+ "kind": "js",
517
+ "name": "showOkDialog",
518
+ "declaration": {
519
+ "name": "showOkDialog",
520
+ "module": "src/or-mwc-dialog.ts"
521
+ }
522
+ },
523
+ {
524
+ "kind": "js",
525
+ "name": "showDialog",
526
+ "declaration": {
527
+ "name": "showDialog",
528
+ "module": "src/or-mwc-dialog.ts"
529
+ }
530
+ },
531
+ {
532
+ "kind": "js",
533
+ "name": "OrMwcDialog",
534
+ "declaration": {
535
+ "name": "OrMwcDialog",
536
+ "module": "src/or-mwc-dialog.ts"
537
+ }
538
+ }
539
+ ]
540
+ },
541
+ {
542
+ "kind": "javascript-module",
543
+ "path": "src/or-mwc-drawer.ts",
544
+ "declarations": [
545
+ {
546
+ "kind": "class",
547
+ "description": "",
548
+ "name": "OrMwcDrawerChangedEvent",
549
+ "members": [
550
+ {
551
+ "kind": "field",
552
+ "name": "NAME",
553
+ "type": {
554
+ "text": "string"
555
+ },
556
+ "privacy": "public",
557
+ "static": true,
558
+ "readonly": true,
559
+ "default": "\"or-mwc-drawer-changed\""
560
+ }
561
+ ],
562
+ "superclass": {
563
+ "name": "CustomEvent",
564
+ "module": "src/or-mwc-drawer.ts"
565
+ }
566
+ },
567
+ {
568
+ "kind": "class",
569
+ "description": "",
570
+ "name": "OrMwcDrawer",
571
+ "members": [
572
+ {
573
+ "kind": "field",
574
+ "name": "styles",
575
+ "privacy": "public",
576
+ "static": true,
577
+ "readonly": true
578
+ },
579
+ {
580
+ "kind": "field",
581
+ "name": "header",
582
+ "type": {
583
+ "text": "TemplateResult"
584
+ },
585
+ "privacy": "public"
586
+ },
587
+ {
588
+ "kind": "field",
589
+ "name": "dismissible",
590
+ "type": {
591
+ "text": "boolean"
592
+ },
593
+ "privacy": "public",
594
+ "default": "false"
595
+ },
596
+ {
597
+ "kind": "field",
598
+ "name": "rightSided",
599
+ "type": {
600
+ "text": "boolean"
601
+ },
602
+ "privacy": "public",
603
+ "default": "false"
604
+ },
605
+ {
606
+ "kind": "field",
607
+ "name": "transparent",
608
+ "type": {
609
+ "text": "boolean"
610
+ },
611
+ "privacy": "public",
612
+ "default": "false"
613
+ },
614
+ {
615
+ "kind": "field",
616
+ "name": "open",
617
+ "type": {
618
+ "text": "boolean"
619
+ },
620
+ "privacy": "public",
621
+ "default": "false"
622
+ },
623
+ {
624
+ "kind": "field",
625
+ "name": "appContent",
626
+ "type": {
627
+ "text": "HTMLElement"
628
+ },
629
+ "privacy": "public"
630
+ },
631
+ {
632
+ "kind": "field",
633
+ "name": "topBar",
634
+ "type": {
635
+ "text": "HTMLElement"
636
+ },
637
+ "privacy": "public"
638
+ },
639
+ {
640
+ "kind": "field",
641
+ "name": "drawerElement",
642
+ "type": {
643
+ "text": "HTMLElement"
644
+ },
645
+ "privacy": "protected"
646
+ },
647
+ {
648
+ "kind": "field",
649
+ "name": "drawer",
650
+ "type": {
651
+ "text": "MDCDrawer | undefined"
652
+ },
653
+ "privacy": "protected"
654
+ },
655
+ {
656
+ "kind": "method",
657
+ "name": "toggle",
658
+ "privacy": "public"
659
+ },
660
+ {
661
+ "kind": "method",
662
+ "name": "render",
663
+ "privacy": "protected"
664
+ },
665
+ {
666
+ "kind": "method",
667
+ "name": "updated",
668
+ "privacy": "protected"
669
+ },
670
+ {
671
+ "kind": "method",
672
+ "name": "dispatchChangedEvent",
673
+ "privacy": "protected",
674
+ "parameters": [
675
+ {
676
+ "name": "value",
677
+ "type": {
678
+ "text": "boolean"
679
+ }
680
+ }
681
+ ]
682
+ },
683
+ {
684
+ "kind": "method",
685
+ "name": "firstUpdated",
686
+ "privacy": "protected"
687
+ }
688
+ ],
689
+ "events": [
690
+ {
691
+ "name": "value",
692
+ "type": {
693
+ "text": "OrMwcDrawerChangedEvent"
694
+ }
695
+ }
696
+ ],
697
+ "superclass": {
698
+ "name": "LitElement",
699
+ "package": "lit"
700
+ },
701
+ "customElement": true
702
+ }
703
+ ],
704
+ "exports": [
705
+ {
706
+ "kind": "js",
707
+ "name": "OrMwcDrawerChangedEvent",
708
+ "declaration": {
709
+ "name": "OrMwcDrawerChangedEvent",
710
+ "module": "src/or-mwc-drawer.ts"
711
+ }
712
+ },
713
+ {
714
+ "kind": "js",
715
+ "name": "OrMwcDrawer",
716
+ "declaration": {
717
+ "name": "OrMwcDrawer",
718
+ "module": "src/or-mwc-drawer.ts"
719
+ }
720
+ }
721
+ ]
722
+ },
723
+ {
724
+ "kind": "javascript-module",
725
+ "path": "src/or-mwc-input.ts",
726
+ "declarations": [
727
+ {
728
+ "kind": "class",
729
+ "description": "",
730
+ "name": "OrInputChangedEvent",
731
+ "members": [
732
+ {
733
+ "kind": "field",
734
+ "name": "NAME",
735
+ "type": {
736
+ "text": "string"
737
+ },
738
+ "privacy": "public",
739
+ "static": true,
740
+ "readonly": true,
741
+ "default": "\"or-mwc-input-changed\""
742
+ }
743
+ ],
744
+ "superclass": {
745
+ "name": "CustomEvent",
746
+ "module": "src/or-mwc-input.ts"
747
+ }
748
+ },
749
+ {
750
+ "kind": "function",
751
+ "name": "getValueHolderInputTemplateProvider",
752
+ "parameters": [
753
+ {
754
+ "name": "assetDescriptor"
755
+ },
756
+ {
757
+ "name": "valueHolder"
758
+ },
759
+ {
760
+ "name": "valueHolderDescriptor"
761
+ },
762
+ {
763
+ "name": "valueDescriptor"
764
+ },
765
+ {
766
+ "name": "valueChangeNotifier"
767
+ },
768
+ {
769
+ "name": "options"
770
+ }
771
+ ]
772
+ },
773
+ {
774
+ "kind": "class",
775
+ "description": "",
776
+ "name": "OrMwcInput",
777
+ "members": [
778
+ {
779
+ "kind": "field",
780
+ "name": "styles",
781
+ "static": true,
782
+ "readonly": true
783
+ },
784
+ {
785
+ "kind": "field",
786
+ "name": "focused",
787
+ "type": {
788
+ "text": "boolean | undefined"
789
+ },
790
+ "privacy": "public"
791
+ },
792
+ {
793
+ "kind": "field",
794
+ "name": "value",
795
+ "type": {
796
+ "text": "any | undefined"
797
+ },
798
+ "privacy": "public"
799
+ },
800
+ {
801
+ "kind": "field",
802
+ "name": "type",
803
+ "type": {
804
+ "text": "InputType | undefined"
805
+ },
806
+ "privacy": "public"
807
+ },
808
+ {
809
+ "kind": "field",
810
+ "name": "name",
811
+ "type": {
812
+ "text": "String | undefined"
813
+ },
814
+ "privacy": "public"
815
+ },
816
+ {
817
+ "kind": "field",
818
+ "name": "readonly",
819
+ "type": {
820
+ "text": "boolean"
821
+ },
822
+ "privacy": "public",
823
+ "default": "false"
824
+ },
825
+ {
826
+ "kind": "field",
827
+ "name": "required",
828
+ "type": {
829
+ "text": "boolean"
830
+ },
831
+ "privacy": "public",
832
+ "default": "false"
833
+ },
834
+ {
835
+ "kind": "field",
836
+ "name": "max",
837
+ "type": {
838
+ "text": "any | undefined"
839
+ },
840
+ "privacy": "public"
841
+ },
842
+ {
843
+ "kind": "field",
844
+ "name": "min",
845
+ "type": {
846
+ "text": "any | undefined"
847
+ },
848
+ "privacy": "public"
849
+ },
850
+ {
851
+ "kind": "field",
852
+ "name": "step",
853
+ "type": {
854
+ "text": "number | undefined"
855
+ },
856
+ "privacy": "public"
857
+ },
858
+ {
859
+ "kind": "field",
860
+ "name": "checked",
861
+ "type": {
862
+ "text": "boolean"
863
+ },
864
+ "privacy": "public",
865
+ "default": "false"
866
+ },
867
+ {
868
+ "kind": "field",
869
+ "name": "indeterminate",
870
+ "type": {
871
+ "text": "boolean"
872
+ },
873
+ "privacy": "public",
874
+ "default": "false"
875
+ },
876
+ {
877
+ "kind": "field",
878
+ "name": "maxLength",
879
+ "type": {
880
+ "text": "number | undefined"
881
+ },
882
+ "privacy": "public"
883
+ },
884
+ {
885
+ "kind": "field",
886
+ "name": "minLength",
887
+ "type": {
888
+ "text": "number | undefined"
889
+ },
890
+ "privacy": "public"
891
+ },
892
+ {
893
+ "kind": "field",
894
+ "name": "rows",
895
+ "type": {
896
+ "text": "number | undefined"
897
+ },
898
+ "privacy": "public"
899
+ },
900
+ {
901
+ "kind": "field",
902
+ "name": "cols",
903
+ "type": {
904
+ "text": "number | undefined"
905
+ },
906
+ "privacy": "public"
907
+ },
908
+ {
909
+ "kind": "field",
910
+ "name": "multiple",
911
+ "type": {
912
+ "text": "boolean"
913
+ },
914
+ "privacy": "public",
915
+ "default": "false"
916
+ },
917
+ {
918
+ "kind": "field",
919
+ "name": "pattern",
920
+ "type": {
921
+ "text": "string | undefined"
922
+ },
923
+ "privacy": "public"
924
+ },
925
+ {
926
+ "kind": "field",
927
+ "name": "placeHolder",
928
+ "type": {
929
+ "text": "string | undefined"
930
+ },
931
+ "privacy": "public"
932
+ },
933
+ {
934
+ "kind": "field",
935
+ "name": "options",
936
+ "type": {
937
+ "text": "any[] | any | undefined"
938
+ },
939
+ "privacy": "public"
940
+ },
941
+ {
942
+ "kind": "field",
943
+ "name": "autoSelect",
944
+ "type": {
945
+ "text": "boolean | undefined"
946
+ },
947
+ "privacy": "public"
948
+ },
949
+ {
950
+ "kind": "field",
951
+ "name": "searchProvider",
952
+ "type": {
953
+ "text": "(search?: string) => Promise<[any, string][]> | undefined"
954
+ },
955
+ "privacy": "public"
956
+ },
957
+ {
958
+ "kind": "field",
959
+ "name": "searchLabel",
960
+ "type": {
961
+ "text": "string"
962
+ },
963
+ "privacy": "public",
964
+ "default": "\"search\""
965
+ },
966
+ {
967
+ "kind": "field",
968
+ "name": "icon",
969
+ "type": {
970
+ "text": "string | undefined"
971
+ },
972
+ "privacy": "public"
973
+ },
974
+ {
975
+ "kind": "field",
976
+ "name": "iconColor",
977
+ "type": {
978
+ "text": "string | undefined"
979
+ },
980
+ "privacy": "public"
981
+ },
982
+ {
983
+ "kind": "field",
984
+ "name": "iconOn",
985
+ "type": {
986
+ "text": "string | undefined"
987
+ },
988
+ "privacy": "public"
989
+ },
990
+ {
991
+ "kind": "field",
992
+ "name": "iconTrailing",
993
+ "type": {
994
+ "text": "string | undefined"
995
+ },
996
+ "privacy": "public"
997
+ },
998
+ {
999
+ "kind": "field",
1000
+ "name": "compact",
1001
+ "type": {
1002
+ "text": "boolean"
1003
+ },
1004
+ "privacy": "public",
1005
+ "default": "false"
1006
+ },
1007
+ {
1008
+ "kind": "field",
1009
+ "name": "comfortable",
1010
+ "type": {
1011
+ "text": "boolean"
1012
+ },
1013
+ "privacy": "public",
1014
+ "default": "false"
1015
+ },
1016
+ {
1017
+ "kind": "field",
1018
+ "name": "raised",
1019
+ "type": {
1020
+ "text": "boolean"
1021
+ },
1022
+ "privacy": "public",
1023
+ "default": "false"
1024
+ },
1025
+ {
1026
+ "kind": "field",
1027
+ "name": "action",
1028
+ "type": {
1029
+ "text": "boolean"
1030
+ },
1031
+ "privacy": "public",
1032
+ "default": "false"
1033
+ },
1034
+ {
1035
+ "kind": "field",
1036
+ "name": "unElevated",
1037
+ "type": {
1038
+ "text": "boolean"
1039
+ },
1040
+ "privacy": "public",
1041
+ "default": "false"
1042
+ },
1043
+ {
1044
+ "kind": "field",
1045
+ "name": "outlined",
1046
+ "type": {
1047
+ "text": "boolean"
1048
+ },
1049
+ "privacy": "public",
1050
+ "default": "false"
1051
+ },
1052
+ {
1053
+ "kind": "field",
1054
+ "name": "rounded",
1055
+ "type": {
1056
+ "text": "boolean"
1057
+ },
1058
+ "privacy": "public",
1059
+ "default": "false"
1060
+ },
1061
+ {
1062
+ "kind": "field",
1063
+ "name": "format",
1064
+ "type": {
1065
+ "text": "ValueFormat | undefined"
1066
+ },
1067
+ "privacy": "public"
1068
+ },
1069
+ {
1070
+ "kind": "field",
1071
+ "name": "disableSliderNumberInput",
1072
+ "type": {
1073
+ "text": "boolean"
1074
+ },
1075
+ "privacy": "public",
1076
+ "default": "false"
1077
+ },
1078
+ {
1079
+ "kind": "field",
1080
+ "name": "fullWidth",
1081
+ "type": {
1082
+ "text": "boolean"
1083
+ },
1084
+ "privacy": "public",
1085
+ "default": "false"
1086
+ },
1087
+ {
1088
+ "kind": "field",
1089
+ "name": "helperText",
1090
+ "type": {
1091
+ "text": "string | undefined"
1092
+ },
1093
+ "privacy": "public"
1094
+ },
1095
+ {
1096
+ "kind": "field",
1097
+ "name": "helperPersistent",
1098
+ "type": {
1099
+ "text": "boolean"
1100
+ },
1101
+ "privacy": "public",
1102
+ "default": "false"
1103
+ },
1104
+ {
1105
+ "kind": "field",
1106
+ "name": "validationMessage",
1107
+ "type": {
1108
+ "text": "string | undefined"
1109
+ },
1110
+ "privacy": "public"
1111
+ },
1112
+ {
1113
+ "kind": "field",
1114
+ "name": "autoValidate",
1115
+ "type": {
1116
+ "text": "boolean"
1117
+ },
1118
+ "privacy": "public",
1119
+ "default": "false"
1120
+ },
1121
+ {
1122
+ "kind": "field",
1123
+ "name": "charCounter",
1124
+ "type": {
1125
+ "text": "boolean"
1126
+ },
1127
+ "privacy": "public",
1128
+ "default": "false"
1129
+ },
1130
+ {
1131
+ "kind": "field",
1132
+ "name": "label",
1133
+ "type": {
1134
+ "text": "string | undefined"
1135
+ },
1136
+ "privacy": "public"
1137
+ },
1138
+ {
1139
+ "kind": "field",
1140
+ "name": "disabled",
1141
+ "type": {
1142
+ "text": "boolean"
1143
+ },
1144
+ "privacy": "public",
1145
+ "default": "false"
1146
+ },
1147
+ {
1148
+ "kind": "field",
1149
+ "name": "continuous",
1150
+ "type": {
1151
+ "text": "boolean"
1152
+ },
1153
+ "privacy": "public",
1154
+ "default": "false"
1155
+ },
1156
+ {
1157
+ "kind": "field",
1158
+ "name": "resizeVertical",
1159
+ "type": {
1160
+ "text": "boolean"
1161
+ },
1162
+ "privacy": "public",
1163
+ "default": "false"
1164
+ },
1165
+ {
1166
+ "kind": "field",
1167
+ "name": "nativeValue",
1168
+ "type": {
1169
+ "text": "any"
1170
+ },
1171
+ "privacy": "public",
1172
+ "readonly": true
1173
+ },
1174
+ {
1175
+ "kind": "field",
1176
+ "name": "_mdcComponent",
1177
+ "type": {
1178
+ "text": "MDCComponent<any> | undefined"
1179
+ },
1180
+ "privacy": "protected"
1181
+ },
1182
+ {
1183
+ "kind": "field",
1184
+ "name": "_mdcComponent2",
1185
+ "type": {
1186
+ "text": "MDCComponent<any> | undefined"
1187
+ },
1188
+ "privacy": "protected"
1189
+ },
1190
+ {
1191
+ "kind": "field",
1192
+ "name": "_selectedIndex",
1193
+ "type": {
1194
+ "text": "number"
1195
+ },
1196
+ "privacy": "protected",
1197
+ "default": "-1"
1198
+ },
1199
+ {
1200
+ "kind": "field",
1201
+ "name": "_menuObserver",
1202
+ "type": {
1203
+ "text": "IntersectionObserver | undefined"
1204
+ },
1205
+ "privacy": "protected"
1206
+ },
1207
+ {
1208
+ "kind": "field",
1209
+ "name": "_tempValue",
1210
+ "type": {
1211
+ "text": "any"
1212
+ },
1213
+ "privacy": "protected"
1214
+ },
1215
+ {
1216
+ "kind": "field",
1217
+ "name": "isUiValid",
1218
+ "type": {
1219
+ "text": "boolean"
1220
+ },
1221
+ "privacy": "protected",
1222
+ "default": "true"
1223
+ },
1224
+ {
1225
+ "kind": "field",
1226
+ "name": "searchableValue",
1227
+ "type": {
1228
+ "text": "string | undefined"
1229
+ },
1230
+ "privacy": "public"
1231
+ },
1232
+ {
1233
+ "kind": "field",
1234
+ "name": "errorMessage",
1235
+ "type": {
1236
+ "text": "string | undefined"
1237
+ },
1238
+ "privacy": "protected"
1239
+ },
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
+ {
1254
+ "kind": "method",
1255
+ "name": "focus",
1256
+ "privacy": "public"
1257
+ },
1258
+ {
1259
+ "kind": "method",
1260
+ "name": "render",
1261
+ "privacy": "protected"
1262
+ },
1263
+ {
1264
+ "kind": "method",
1265
+ "name": "_getFormat",
1266
+ "privacy": "protected",
1267
+ "return": {
1268
+ "type": {
1269
+ "text": "ValueFormat | undefined"
1270
+ }
1271
+ }
1272
+ },
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
+ {
1316
+ "kind": "method",
1317
+ "name": "renderOutlined",
1318
+ "privacy": "protected",
1319
+ "parameters": [
1320
+ {
1321
+ "name": "labelTemplate",
1322
+ "type": {
1323
+ "text": "TemplateResult | undefined"
1324
+ }
1325
+ }
1326
+ ]
1327
+ },
1328
+ {
1329
+ "kind": "method",
1330
+ "name": "setCustomValidity",
1331
+ "privacy": "public",
1332
+ "parameters": [
1333
+ {
1334
+ "name": "msg",
1335
+ "type": {
1336
+ "text": "string | undefined"
1337
+ }
1338
+ }
1339
+ ]
1340
+ },
1341
+ {
1342
+ "kind": "method",
1343
+ "name": "checkValidity",
1344
+ "privacy": "public",
1345
+ "return": {
1346
+ "type": {
1347
+ "text": "boolean"
1348
+ }
1349
+ }
1350
+ },
1351
+ {
1352
+ "kind": "method",
1353
+ "name": "reportValidity",
1354
+ "privacy": "public",
1355
+ "return": {
1356
+ "type": {
1357
+ "text": "boolean"
1358
+ }
1359
+ }
1360
+ },
1361
+ {
1362
+ "kind": "method",
1363
+ "name": "onValueChange",
1364
+ "privacy": "protected",
1365
+ "parameters": [
1366
+ {
1367
+ "name": "elem",
1368
+ "type": {
1369
+ "text": "HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement | undefined"
1370
+ }
1371
+ },
1372
+ {
1373
+ "name": "newValue",
1374
+ "type": {
1375
+ "text": "any | undefined"
1376
+ }
1377
+ },
1378
+ {
1379
+ "name": "enterPressed",
1380
+ "optional": true,
1381
+ "type": {
1382
+ "text": "boolean"
1383
+ }
1384
+ }
1385
+ ]
1386
+ },
1387
+ {
1388
+ "kind": "field",
1389
+ "name": "valid",
1390
+ "type": {
1391
+ "text": "boolean"
1392
+ },
1393
+ "privacy": "public",
1394
+ "readonly": true
1395
+ },
1396
+ {
1397
+ "kind": "field",
1398
+ "name": "currentValue",
1399
+ "type": {
1400
+ "text": "any"
1401
+ },
1402
+ "privacy": "public",
1403
+ "readonly": true
1404
+ },
1405
+ {
1406
+ "kind": "method",
1407
+ "name": "resolveOptions",
1408
+ "privacy": "protected",
1409
+ "return": {
1410
+ "type": {
1411
+ "text": "[any, string][] | undefined"
1412
+ }
1413
+ },
1414
+ "parameters": [
1415
+ {
1416
+ "name": "options",
1417
+ "type": {
1418
+ "text": "any[] | undefined"
1419
+ }
1420
+ }
1421
+ ]
1422
+ },
1423
+ {
1424
+ "kind": "method",
1425
+ "name": "getSelectedTextValue",
1426
+ "privacy": "protected",
1427
+ "return": {
1428
+ "type": {
1429
+ "text": "string"
1430
+ }
1431
+ },
1432
+ "parameters": [
1433
+ {
1434
+ "name": "options",
1435
+ "optional": true,
1436
+ "type": {
1437
+ "text": "[string, string][] | undefined"
1438
+ }
1439
+ }
1440
+ ]
1441
+ }
1442
+ ],
1443
+ "events": [
1444
+ {
1445
+ "type": {
1446
+ "text": "OrInputChangedEvent"
1447
+ }
1448
+ },
1449
+ {
1450
+ "name": "newValue",
1451
+ "type": {
1452
+ "text": "OrInputChangedEvent"
1453
+ }
1454
+ }
1455
+ ],
1456
+ "superclass": {
1457
+ "name": "LitElement",
1458
+ "package": "lit"
1459
+ },
1460
+ "customElement": true
1461
+ }
1462
+ ],
1463
+ "exports": [
1464
+ {
1465
+ "kind": "js",
1466
+ "name": "OrInputChangedEvent",
1467
+ "declaration": {
1468
+ "name": "OrInputChangedEvent",
1469
+ "module": "src/or-mwc-input.ts"
1470
+ }
1471
+ },
1472
+ {
1473
+ "kind": "js",
1474
+ "name": "getValueHolderInputTemplateProvider",
1475
+ "declaration": {
1476
+ "name": "getValueHolderInputTemplateProvider",
1477
+ "module": "src/or-mwc-input.ts"
1478
+ }
1479
+ },
1480
+ {
1481
+ "kind": "js",
1482
+ "name": "OrMwcInput",
1483
+ "declaration": {
1484
+ "name": "OrMwcInput",
1485
+ "module": "src/or-mwc-input.ts"
1486
+ }
1487
+ }
1488
+ ]
1489
+ },
1490
+ {
1491
+ "kind": "javascript-module",
1492
+ "path": "src/or-mwc-list.ts",
1493
+ "declarations": [
1494
+ {
1495
+ "kind": "class",
1496
+ "description": "",
1497
+ "name": "OrMwcListChangedEvent",
1498
+ "members": [
1499
+ {
1500
+ "kind": "field",
1501
+ "name": "NAME",
1502
+ "type": {
1503
+ "text": "string"
1504
+ },
1505
+ "privacy": "public",
1506
+ "static": true,
1507
+ "readonly": true,
1508
+ "default": "\"or-mwc-list-changed\""
1509
+ }
1510
+ ],
1511
+ "superclass": {
1512
+ "name": "CustomEvent",
1513
+ "module": "src/or-mwc-list.ts"
1514
+ }
1515
+ },
1516
+ {
1517
+ "kind": "function",
1518
+ "name": "createListGroup",
1519
+ "parameters": [
1520
+ {
1521
+ "name": "lists",
1522
+ "type": {
1523
+ "text": "ListGroupItem[]"
1524
+ }
1525
+ }
1526
+ ]
1527
+ },
1528
+ {
1529
+ "kind": "function",
1530
+ "name": "getListTemplate",
1531
+ "return": {
1532
+ "type": {
1533
+ "text": "TemplateResult"
1534
+ }
1535
+ },
1536
+ "parameters": [
1537
+ {
1538
+ "name": "type",
1539
+ "type": {
1540
+ "text": "ListType"
1541
+ }
1542
+ },
1543
+ {
1544
+ "name": "content",
1545
+ "type": {
1546
+ "text": "TemplateResult"
1547
+ }
1548
+ },
1549
+ {
1550
+ "name": "isTwoLine",
1551
+ "optional": true,
1552
+ "type": {
1553
+ "text": "boolean"
1554
+ }
1555
+ },
1556
+ {
1557
+ "name": "role",
1558
+ "optional": true,
1559
+ "type": {
1560
+ "text": "string"
1561
+ }
1562
+ },
1563
+ {
1564
+ "name": "actionHandler",
1565
+ "optional": true,
1566
+ "type": {
1567
+ "text": "(ev: MDCListActionEvent) => void"
1568
+ }
1569
+ }
1570
+ ]
1571
+ },
1572
+ {
1573
+ "kind": "function",
1574
+ "name": "getItemTemplate",
1575
+ "return": {
1576
+ "type": {
1577
+ "text": "TemplateResult"
1578
+ }
1579
+ },
1580
+ "parameters": [
1581
+ {
1582
+ "name": "item",
1583
+ "type": {
1584
+ "text": "ListItem | null"
1585
+ }
1586
+ },
1587
+ {
1588
+ "name": "index",
1589
+ "type": {
1590
+ "text": "number"
1591
+ }
1592
+ },
1593
+ {
1594
+ "name": "selectedValues",
1595
+ "type": {
1596
+ "text": "any[]"
1597
+ }
1598
+ },
1599
+ {
1600
+ "name": "type",
1601
+ "type": {
1602
+ "text": "ListType"
1603
+ }
1604
+ },
1605
+ {
1606
+ "name": "translate",
1607
+ "optional": true,
1608
+ "type": {
1609
+ "text": "boolean"
1610
+ }
1611
+ },
1612
+ {
1613
+ "name": "itemClickCallback",
1614
+ "optional": true,
1615
+ "type": {
1616
+ "text": "(e: MouseEvent, item: ListItem) => void"
1617
+ }
1618
+ }
1619
+ ]
1620
+ },
1621
+ {
1622
+ "kind": "class",
1623
+ "description": "",
1624
+ "name": "OrMwcList",
1625
+ "members": [
1626
+ {
1627
+ "kind": "field",
1628
+ "name": "styles",
1629
+ "static": true,
1630
+ "readonly": true
1631
+ },
1632
+ {
1633
+ "kind": "field",
1634
+ "name": "listItems",
1635
+ "type": {
1636
+ "text": "(ListItem | null)[] | undefined"
1637
+ },
1638
+ "privacy": "public"
1639
+ },
1640
+ {
1641
+ "kind": "field",
1642
+ "name": "values",
1643
+ "type": {
1644
+ "text": "string[] | string | undefined"
1645
+ },
1646
+ "privacy": "public"
1647
+ },
1648
+ {
1649
+ "kind": "field",
1650
+ "name": "type",
1651
+ "type": {
1652
+ "text": "ListType"
1653
+ },
1654
+ "privacy": "public"
1655
+ },
1656
+ {
1657
+ "kind": "field",
1658
+ "name": "_wrapperElem",
1659
+ "type": {
1660
+ "text": "HTMLElement"
1661
+ },
1662
+ "privacy": "protected"
1663
+ },
1664
+ {
1665
+ "kind": "field",
1666
+ "name": "_mdcElem",
1667
+ "type": {
1668
+ "text": "HTMLElement"
1669
+ },
1670
+ "privacy": "protected"
1671
+ },
1672
+ {
1673
+ "kind": "field",
1674
+ "name": "_mdcComponent",
1675
+ "type": {
1676
+ "text": "MDCList | undefined"
1677
+ },
1678
+ "privacy": "protected"
1679
+ },
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
+ {
1722
+ "kind": "field",
1723
+ "name": "selectedItems",
1724
+ "type": {
1725
+ "text": "ListItem[]"
1726
+ },
1727
+ "privacy": "public",
1728
+ "readonly": true
1729
+ },
1730
+ {
1731
+ "kind": "method",
1732
+ "name": "setSelectedItems",
1733
+ "privacy": "public",
1734
+ "parameters": [
1735
+ {
1736
+ "name": "items",
1737
+ "type": {
1738
+ "text": "ListItem | ListItem[] | string | string[] | undefined"
1739
+ }
1740
+ }
1741
+ ]
1742
+ },
1743
+ {
1744
+ "kind": "method",
1745
+ "name": "_onSelected",
1746
+ "privacy": "protected",
1747
+ "parameters": [
1748
+ {
1749
+ "name": "ev",
1750
+ "type": {
1751
+ "text": "MDCListActionEvent"
1752
+ }
1753
+ }
1754
+ ]
1755
+ }
1756
+ ],
1757
+ "events": [
1758
+ {
1759
+ "type": {
1760
+ "text": "OrMwcListChangedEvent"
1761
+ }
1762
+ }
1763
+ ],
1764
+ "superclass": {
1765
+ "name": "LitElement",
1766
+ "package": "lit"
1767
+ },
1768
+ "customElement": true
1769
+ }
1770
+ ],
1771
+ "exports": [
1772
+ {
1773
+ "kind": "js",
1774
+ "name": "MDCListActionEvent",
1775
+ "declaration": {
1776
+ "name": "MDCListActionEvent",
1777
+ "module": "src/or-mwc-list.ts"
1778
+ }
1779
+ },
1780
+ {
1781
+ "kind": "js",
1782
+ "name": "OrMwcListChangedEvent",
1783
+ "declaration": {
1784
+ "name": "OrMwcListChangedEvent",
1785
+ "module": "src/or-mwc-list.ts"
1786
+ }
1787
+ },
1788
+ {
1789
+ "kind": "js",
1790
+ "name": "createListGroup",
1791
+ "declaration": {
1792
+ "name": "createListGroup",
1793
+ "module": "src/or-mwc-list.ts"
1794
+ }
1795
+ },
1796
+ {
1797
+ "kind": "js",
1798
+ "name": "getListTemplate",
1799
+ "declaration": {
1800
+ "name": "getListTemplate",
1801
+ "module": "src/or-mwc-list.ts"
1802
+ }
1803
+ },
1804
+ {
1805
+ "kind": "js",
1806
+ "name": "getItemTemplate",
1807
+ "declaration": {
1808
+ "name": "getItemTemplate",
1809
+ "module": "src/or-mwc-list.ts"
1810
+ }
1811
+ },
1812
+ {
1813
+ "kind": "js",
1814
+ "name": "OrMwcList",
1815
+ "declaration": {
1816
+ "name": "OrMwcList",
1817
+ "module": "src/or-mwc-list.ts"
1818
+ }
1819
+ }
1820
+ ]
1821
+ },
1822
+ {
1823
+ "kind": "javascript-module",
1824
+ "path": "src/or-mwc-menu.ts",
1825
+ "declarations": [
1826
+ {
1827
+ "kind": "class",
1828
+ "description": "",
1829
+ "name": "OrMwcMenuChangedEvent",
1830
+ "members": [
1831
+ {
1832
+ "kind": "field",
1833
+ "name": "NAME",
1834
+ "type": {
1835
+ "text": "string"
1836
+ },
1837
+ "privacy": "public",
1838
+ "static": true,
1839
+ "readonly": true,
1840
+ "default": "\"or-mwc-menu-changed\""
1841
+ }
1842
+ ],
1843
+ "superclass": {
1844
+ "name": "CustomEvent",
1845
+ "module": "src/or-mwc-menu.ts"
1846
+ }
1847
+ },
1848
+ {
1849
+ "kind": "class",
1850
+ "description": "",
1851
+ "name": "OrMwcMenuClosedEvent",
1852
+ "members": [
1853
+ {
1854
+ "kind": "field",
1855
+ "name": "NAME",
1856
+ "type": {
1857
+ "text": "string"
1858
+ },
1859
+ "privacy": "public",
1860
+ "static": true,
1861
+ "readonly": true,
1862
+ "default": "\"or-mwc-menu-closed\""
1863
+ }
1864
+ ],
1865
+ "superclass": {
1866
+ "name": "CustomEvent",
1867
+ "module": "src/or-mwc-menu.ts"
1868
+ }
1869
+ },
1870
+ {
1871
+ "kind": "function",
1872
+ "name": "getContentWithMenuTemplate",
1873
+ "return": {
1874
+ "type": {
1875
+ "text": "TemplateResult"
1876
+ }
1877
+ },
1878
+ "parameters": [
1879
+ {
1880
+ "name": "content",
1881
+ "type": {
1882
+ "text": "TemplateResult"
1883
+ }
1884
+ },
1885
+ {
1886
+ "name": "menuItems",
1887
+ "type": {
1888
+ "text": "(ListItem | ListItem[] | null)[]"
1889
+ }
1890
+ },
1891
+ {
1892
+ "name": "selectedValues",
1893
+ "type": {
1894
+ "text": "string[] | string | undefined"
1895
+ }
1896
+ },
1897
+ {
1898
+ "name": "valueChangedCallback",
1899
+ "type": {
1900
+ "text": "(values: string[] | string) => void"
1901
+ }
1902
+ },
1903
+ {
1904
+ "name": "closedCallback",
1905
+ "optional": true,
1906
+ "type": {
1907
+ "text": "() => void"
1908
+ }
1909
+ },
1910
+ {
1911
+ "name": "multiSelect",
1912
+ "default": "false"
1913
+ },
1914
+ {
1915
+ "name": "translateValues",
1916
+ "default": "true"
1917
+ },
1918
+ {
1919
+ "name": "midHeight",
1920
+ "default": "false"
1921
+ },
1922
+ {
1923
+ "name": "fullWidth",
1924
+ "default": "false"
1925
+ }
1926
+ ]
1927
+ },
1928
+ {
1929
+ "kind": "class",
1930
+ "description": "",
1931
+ "name": "OrMwcMenu",
1932
+ "members": [
1933
+ {
1934
+ "kind": "field",
1935
+ "name": "styles",
1936
+ "static": true,
1937
+ "readonly": true
1938
+ },
1939
+ {
1940
+ "kind": "field",
1941
+ "name": "menuItems",
1942
+ "type": {
1943
+ "text": "(ListItem | ListItem[] | null)[] | undefined"
1944
+ },
1945
+ "privacy": "public"
1946
+ },
1947
+ {
1948
+ "kind": "field",
1949
+ "name": "values",
1950
+ "type": {
1951
+ "text": "any[] | any | undefined"
1952
+ },
1953
+ "privacy": "public"
1954
+ },
1955
+ {
1956
+ "kind": "field",
1957
+ "name": "multiSelect",
1958
+ "type": {
1959
+ "text": "boolean | undefined"
1960
+ },
1961
+ "privacy": "public"
1962
+ },
1963
+ {
1964
+ "kind": "field",
1965
+ "name": "visible",
1966
+ "type": {
1967
+ "text": "boolean | undefined"
1968
+ },
1969
+ "privacy": "public"
1970
+ },
1971
+ {
1972
+ "kind": "field",
1973
+ "name": "translateValues",
1974
+ "type": {
1975
+ "text": "boolean | undefined"
1976
+ },
1977
+ "privacy": "public"
1978
+ },
1979
+ {
1980
+ "kind": "field",
1981
+ "name": "midHeight",
1982
+ "type": {
1983
+ "text": "boolean | undefined"
1984
+ },
1985
+ "privacy": "public"
1986
+ },
1987
+ {
1988
+ "kind": "field",
1989
+ "name": "fullWidth",
1990
+ "type": {
1991
+ "text": "boolean | undefined"
1992
+ },
1993
+ "privacy": "public"
1994
+ },
1995
+ {
1996
+ "kind": "field",
1997
+ "name": "_wrapperElem",
1998
+ "type": {
1999
+ "text": "HTMLElement"
2000
+ },
2001
+ "privacy": "protected"
2002
+ },
2003
+ {
2004
+ "kind": "field",
2005
+ "name": "_mdcElem",
2006
+ "type": {
2007
+ "text": "HTMLElement"
2008
+ },
2009
+ "privacy": "protected"
2010
+ },
2011
+ {
2012
+ "kind": "field",
2013
+ "name": "_mdcComponent",
2014
+ "type": {
2015
+ "text": "MDCMenu | undefined"
2016
+ },
2017
+ "privacy": "protected"
2018
+ },
2019
+ {
2020
+ "kind": "method",
2021
+ "name": "open",
2022
+ "privacy": "public"
2023
+ },
2024
+ {
2025
+ "kind": "method",
2026
+ "name": "render",
2027
+ "privacy": "protected"
2028
+ },
2029
+ {
2030
+ "kind": "method",
2031
+ "name": "getItemsTemplate",
2032
+ "privacy": "protected",
2033
+ "return": {
2034
+ "type": {
2035
+ "text": "TemplateResult"
2036
+ }
2037
+ },
2038
+ "parameters": [
2039
+ {
2040
+ "name": "items",
2041
+ "type": {
2042
+ "text": "(ListItem | ListItem[] | null)[]"
2043
+ }
2044
+ },
2045
+ {
2046
+ "name": "translate",
2047
+ "optional": true,
2048
+ "type": {
2049
+ "text": "boolean"
2050
+ }
2051
+ }
2052
+ ]
2053
+ },
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
+ {
2091
+ "kind": "method",
2092
+ "name": "_onMenuClosed",
2093
+ "privacy": "protected"
2094
+ },
2095
+ {
2096
+ "kind": "method",
2097
+ "name": "_itemClicked",
2098
+ "privacy": "private",
2099
+ "parameters": [
2100
+ {
2101
+ "name": "e",
2102
+ "type": {
2103
+ "text": "MouseEvent"
2104
+ }
2105
+ },
2106
+ {
2107
+ "name": "item",
2108
+ "type": {
2109
+ "text": "ListItem"
2110
+ }
2111
+ }
2112
+ ]
2113
+ }
2114
+ ],
2115
+ "events": [
2116
+ {
2117
+ "type": {
2118
+ "text": "OrMwcMenuClosedEvent"
2119
+ }
2120
+ }
2121
+ ],
2122
+ "superclass": {
2123
+ "name": "LitElement",
2124
+ "package": "lit"
2125
+ },
2126
+ "customElement": true
2127
+ }
2128
+ ],
2129
+ "exports": [
2130
+ {
2131
+ "kind": "js",
2132
+ "name": "OrMwcMenuChangedEvent",
2133
+ "declaration": {
2134
+ "name": "OrMwcMenuChangedEvent",
2135
+ "module": "src/or-mwc-menu.ts"
2136
+ }
2137
+ },
2138
+ {
2139
+ "kind": "js",
2140
+ "name": "OrMwcMenuClosedEvent",
2141
+ "declaration": {
2142
+ "name": "OrMwcMenuClosedEvent",
2143
+ "module": "src/or-mwc-menu.ts"
2144
+ }
2145
+ },
2146
+ {
2147
+ "kind": "js",
2148
+ "name": "getContentWithMenuTemplate",
2149
+ "declaration": {
2150
+ "name": "getContentWithMenuTemplate",
2151
+ "module": "src/or-mwc-menu.ts"
2152
+ }
2153
+ },
2154
+ {
2155
+ "kind": "js",
2156
+ "name": "OrMwcMenu",
2157
+ "declaration": {
2158
+ "name": "OrMwcMenu",
2159
+ "module": "src/or-mwc-menu.ts"
2160
+ }
2161
+ }
2162
+ ]
2163
+ },
2164
+ {
2165
+ "kind": "javascript-module",
2166
+ "path": "src/or-mwc-snackbar.ts",
2167
+ "declarations": [
2168
+ {
2169
+ "kind": "class",
2170
+ "description": "",
2171
+ "name": "OrMwcSnackbarChangedEvent",
2172
+ "members": [
2173
+ {
2174
+ "kind": "field",
2175
+ "name": "NAME",
2176
+ "type": {
2177
+ "text": "string"
2178
+ },
2179
+ "privacy": "public",
2180
+ "static": true,
2181
+ "readonly": true,
2182
+ "default": "\"or-mwc-snackbar-changed\""
2183
+ }
2184
+ ],
2185
+ "superclass": {
2186
+ "name": "CustomEvent",
2187
+ "module": "src/or-mwc-snackbar.ts"
2188
+ }
2189
+ },
2190
+ {
2191
+ "kind": "function",
2192
+ "name": "showSnackbar",
2193
+ "return": {
2194
+ "type": {
2195
+ "text": "OrMwcSnackbar"
2196
+ }
2197
+ },
2198
+ "parameters": [
2199
+ {
2200
+ "name": "hostElement",
2201
+ "type": {
2202
+ "text": "HTMLElement | undefined"
2203
+ }
2204
+ },
2205
+ {
2206
+ "name": "text",
2207
+ "type": {
2208
+ "text": "string"
2209
+ }
2210
+ },
2211
+ {
2212
+ "name": "buttonText",
2213
+ "optional": true,
2214
+ "type": {
2215
+ "text": "string"
2216
+ }
2217
+ },
2218
+ {
2219
+ "name": "buttonAction",
2220
+ "optional": true,
2221
+ "type": {
2222
+ "text": "() => void"
2223
+ }
2224
+ }
2225
+ ]
2226
+ },
2227
+ {
2228
+ "kind": "class",
2229
+ "description": "",
2230
+ "name": "OrMwcSnackbar",
2231
+ "members": [
2232
+ {
2233
+ "kind": "field",
2234
+ "name": "DialogHostElement",
2235
+ "type": {
2236
+ "text": "HTMLElement"
2237
+ },
2238
+ "privacy": "public",
2239
+ "static": true,
2240
+ "description": "Can be set by apps to control where in the DOM snackbars are added"
2241
+ },
2242
+ {
2243
+ "kind": "field",
2244
+ "name": "styles",
2245
+ "privacy": "public",
2246
+ "static": true,
2247
+ "readonly": true
2248
+ },
2249
+ {
2250
+ "kind": "field",
2251
+ "name": "text",
2252
+ "type": {
2253
+ "text": "string"
2254
+ },
2255
+ "privacy": "public"
2256
+ },
2257
+ {
2258
+ "kind": "field",
2259
+ "name": "buttonText",
2260
+ "type": {
2261
+ "text": "string | undefined"
2262
+ },
2263
+ "privacy": "public"
2264
+ },
2265
+ {
2266
+ "kind": "field",
2267
+ "name": "buttonAction",
2268
+ "type": {
2269
+ "text": "() => void | undefined"
2270
+ },
2271
+ "privacy": "public"
2272
+ },
2273
+ {
2274
+ "kind": "field",
2275
+ "name": "timeout",
2276
+ "type": {
2277
+ "text": "number | undefined"
2278
+ },
2279
+ "privacy": "public"
2280
+ },
2281
+ {
2282
+ "kind": "field",
2283
+ "name": "_open",
2284
+ "type": {
2285
+ "text": "boolean"
2286
+ },
2287
+ "privacy": "public",
2288
+ "default": "false"
2289
+ },
2290
+ {
2291
+ "kind": "field",
2292
+ "name": "_mdcElem",
2293
+ "type": {
2294
+ "text": "HTMLElement"
2295
+ },
2296
+ "privacy": "protected"
2297
+ },
2298
+ {
2299
+ "kind": "field",
2300
+ "name": "_mdcComponent",
2301
+ "type": {
2302
+ "text": "MDCSnackbar | undefined"
2303
+ },
2304
+ "privacy": "protected"
2305
+ },
2306
+ {
2307
+ "kind": "field",
2308
+ "name": "isOpen",
2309
+ "privacy": "public"
2310
+ },
2311
+ {
2312
+ "kind": "method",
2313
+ "name": "open",
2314
+ "privacy": "public"
2315
+ },
2316
+ {
2317
+ "kind": "method",
2318
+ "name": "close",
2319
+ "privacy": "public",
2320
+ "parameters": [
2321
+ {
2322
+ "name": "action",
2323
+ "optional": true,
2324
+ "type": {
2325
+ "text": "string"
2326
+ }
2327
+ }
2328
+ ]
2329
+ },
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
+ {
2349
+ "kind": "method",
2350
+ "name": "onClose",
2351
+ "privacy": "protected",
2352
+ "parameters": [
2353
+ {
2354
+ "name": "reason",
2355
+ "type": {
2356
+ "text": "string | undefined"
2357
+ }
2358
+ }
2359
+ ]
2360
+ },
2361
+ {
2362
+ "kind": "method",
2363
+ "name": "onOpen",
2364
+ "privacy": "protected"
2365
+ },
2366
+ {
2367
+ "kind": "method",
2368
+ "name": "dispatchChangedEvent",
2369
+ "privacy": "protected",
2370
+ "parameters": [
2371
+ {
2372
+ "name": "detail",
2373
+ "type": {
2374
+ "text": "OrMwcSnackbarChangedEventDetail"
2375
+ }
2376
+ }
2377
+ ]
2378
+ }
2379
+ ],
2380
+ "events": [
2381
+ {
2382
+ "name": "detail",
2383
+ "type": {
2384
+ "text": "OrMwcSnackbarChangedEvent"
2385
+ }
2386
+ }
2387
+ ],
2388
+ "superclass": {
2389
+ "name": "LitElement",
2390
+ "package": "lit"
2391
+ },
2392
+ "customElement": true
2393
+ }
2394
+ ],
2395
+ "exports": [
2396
+ {
2397
+ "kind": "js",
2398
+ "name": "OrMwcSnackbarChangedEvent",
2399
+ "declaration": {
2400
+ "name": "OrMwcSnackbarChangedEvent",
2401
+ "module": "src/or-mwc-snackbar.ts"
2402
+ }
2403
+ },
2404
+ {
2405
+ "kind": "js",
2406
+ "name": "showSnackbar",
2407
+ "declaration": {
2408
+ "name": "showSnackbar",
2409
+ "module": "src/or-mwc-snackbar.ts"
2410
+ }
2411
+ },
2412
+ {
2413
+ "kind": "js",
2414
+ "name": "OrMwcSnackbar",
2415
+ "declaration": {
2416
+ "name": "OrMwcSnackbar",
2417
+ "module": "src/or-mwc-snackbar.ts"
2418
+ }
2419
+ }
2420
+ ]
2421
+ },
2422
+ {
2423
+ "kind": "javascript-module",
2424
+ "path": "src/or-mwc-table.ts",
2425
+ "declarations": [
2426
+ {
2427
+ "kind": "class",
2428
+ "description": "",
2429
+ "name": "OrMwcTableRowClickEvent",
2430
+ "members": [
2431
+ {
2432
+ "kind": "field",
2433
+ "name": "NAME",
2434
+ "type": {
2435
+ "text": "string"
2436
+ },
2437
+ "privacy": "public",
2438
+ "static": true,
2439
+ "readonly": true,
2440
+ "default": "\"or-mwc-table-row-click\""
2441
+ }
2442
+ ],
2443
+ "superclass": {
2444
+ "name": "CustomEvent",
2445
+ "module": "src/or-mwc-table.ts"
2446
+ }
2447
+ },
2448
+ {
2449
+ "kind": "class",
2450
+ "description": "",
2451
+ "name": "OrMwcTableRowSelectEvent",
2452
+ "members": [
2453
+ {
2454
+ "kind": "field",
2455
+ "name": "NAME",
2456
+ "type": {
2457
+ "text": "string"
2458
+ },
2459
+ "privacy": "public",
2460
+ "static": true,
2461
+ "readonly": true,
2462
+ "default": "\"or-mwc-table-row-select\""
2463
+ }
2464
+ ],
2465
+ "superclass": {
2466
+ "name": "CustomEvent",
2467
+ "module": "src/or-mwc-table.ts"
2468
+ }
2469
+ },
2470
+ {
2471
+ "kind": "class",
2472
+ "description": "",
2473
+ "name": "OrMwcTable",
2474
+ "members": [
2475
+ {
2476
+ "kind": "field",
2477
+ "name": "styles",
2478
+ "static": true,
2479
+ "readonly": true
2480
+ },
2481
+ {
2482
+ "kind": "field",
2483
+ "name": "columns",
2484
+ "type": {
2485
+ "text": "TableColumn[] | string[] | undefined"
2486
+ },
2487
+ "privacy": "public"
2488
+ },
2489
+ {
2490
+ "kind": "field",
2491
+ "name": "columnsTemplate",
2492
+ "type": {
2493
+ "text": "TemplateResult | undefined"
2494
+ },
2495
+ "privacy": "protected"
2496
+ },
2497
+ {
2498
+ "kind": "field",
2499
+ "name": "rows",
2500
+ "type": {
2501
+ "text": "TableRow[] | string[][] | undefined"
2502
+ },
2503
+ "privacy": "public"
2504
+ },
2505
+ {
2506
+ "kind": "field",
2507
+ "name": "rowsTemplate",
2508
+ "type": {
2509
+ "text": "TemplateResult | undefined"
2510
+ },
2511
+ "privacy": "protected"
2512
+ },
2513
+ {
2514
+ "kind": "field",
2515
+ "name": "config",
2516
+ "type": {
2517
+ "text": "TableConfig"
2518
+ },
2519
+ "privacy": "protected",
2520
+ "default": "{ columnFilter: [], stickyFirstColumn: true, fullHeight: false, pagination: { enable: false } }"
2521
+ },
2522
+ {
2523
+ "kind": "field",
2524
+ "name": "paginationIndex",
2525
+ "type": {
2526
+ "text": "number"
2527
+ },
2528
+ "privacy": "protected",
2529
+ "default": "0"
2530
+ },
2531
+ {
2532
+ "kind": "field",
2533
+ "name": "paginationSize",
2534
+ "type": {
2535
+ "text": "number"
2536
+ },
2537
+ "privacy": "public",
2538
+ "default": "10"
2539
+ },
2540
+ {
2541
+ "kind": "field",
2542
+ "name": "_dataTable",
2543
+ "type": {
2544
+ "text": "MDCDataTable | undefined"
2545
+ },
2546
+ "privacy": "protected"
2547
+ },
2548
+ {
2549
+ "kind": "field",
2550
+ "name": "sortDirection",
2551
+ "type": {
2552
+ "text": "'ASC' | 'DESC'"
2553
+ },
2554
+ "privacy": "protected",
2555
+ "default": "'ASC'"
2556
+ },
2557
+ {
2558
+ "kind": "field",
2559
+ "name": "sortIndex",
2560
+ "type": {
2561
+ "text": "number | undefined"
2562
+ },
2563
+ "privacy": "protected",
2564
+ "default": "-1"
2565
+ },
2566
+ {
2567
+ "kind": "field",
2568
+ "name": "selectedRows",
2569
+ "type": {
2570
+ "text": "TableRow[] | string[][] | any[] | undefined"
2571
+ },
2572
+ "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"
2605
+ },
2606
+ {
2607
+ "kind": "method",
2608
+ "name": "getTableContent",
2609
+ "privacy": "protected",
2610
+ "return": {
2611
+ "type": {
2612
+ "text": "TemplateResult | string"
2613
+ }
2614
+ },
2615
+ "parameters": [
2616
+ {
2617
+ "name": "content",
2618
+ "type": {
2619
+ "text": "TableContent"
2620
+ }
2621
+ }
2622
+ ],
2623
+ "description": "Function that is responsible for formatting the table content.\nFor example; dates should be formatted differently than strings, numbers and HTML templates."
2624
+ },
2625
+ {
2626
+ "kind": "method",
2627
+ "name": "onRowClick",
2628
+ "privacy": "protected",
2629
+ "parameters": [
2630
+ {
2631
+ "name": "ev",
2632
+ "type": {
2633
+ "text": "MouseEvent"
2634
+ }
2635
+ },
2636
+ {
2637
+ "name": "item",
2638
+ "type": {
2639
+ "text": "TableRow | string[]"
2640
+ }
2641
+ }
2642
+ ],
2643
+ "description": "\"When user clicks on a row\", it dispatches an OrMwcTableRowClickEvent to the parent component / listeners."
2644
+ },
2645
+ {
2646
+ "kind": "method",
2647
+ "name": "onCheckChanged",
2648
+ "privacy": "protected",
2649
+ "parameters": [
2650
+ {
2651
+ "name": "event",
2652
+ "type": {
2653
+ "text": "Event"
2654
+ }
2655
+ },
2656
+ {
2657
+ "name": "checked",
2658
+ "type": {
2659
+ "text": "boolean"
2660
+ }
2661
+ },
2662
+ {
2663
+ "name": "type",
2664
+ "type": {
2665
+ "text": "\"all\" | \"single\""
2666
+ }
2667
+ },
2668
+ {
2669
+ "name": "item",
2670
+ "optional": true,
2671
+ "type": {
2672
+ "text": "any"
2673
+ }
2674
+ }
2675
+ ],
2676
+ "description": "\"When user clicks on a checkbox\" when multiselect is enabled,\nit dispatches an OrMwcTableRowSelectEvent to the parent component / listeners."
2677
+ },
2678
+ {
2679
+ "kind": "method",
2680
+ "name": "onColumnSort",
2681
+ "parameters": [
2682
+ {
2683
+ "name": "ev",
2684
+ "type": {
2685
+ "text": "MouseEvent"
2686
+ }
2687
+ },
2688
+ {
2689
+ "name": "index",
2690
+ "type": {
2691
+ "text": "number"
2692
+ }
2693
+ },
2694
+ {
2695
+ "name": "sortDirection",
2696
+ "type": {
2697
+ "text": "'ASC' | 'DESC'"
2698
+ }
2699
+ }
2700
+ ],
2701
+ "description": "Event handling function for when users try to sort the rows within a column."
2702
+ },
2703
+ {
2704
+ "kind": "method",
2705
+ "name": "sortPrimitiveRows",
2706
+ "privacy": "protected",
2707
+ "return": {
2708
+ "type": {
2709
+ "text": "number"
2710
+ }
2711
+ },
2712
+ "parameters": [
2713
+ {
2714
+ "name": "rowA",
2715
+ "type": {
2716
+ "text": "string[] | number[]"
2717
+ }
2718
+ },
2719
+ {
2720
+ "name": "rowB",
2721
+ "type": {
2722
+ "text": "string[] | number[]"
2723
+ }
2724
+ },
2725
+ {
2726
+ "name": "cIndex",
2727
+ "type": {
2728
+ "text": "number"
2729
+ }
2730
+ },
2731
+ {
2732
+ "name": "sortDirection",
2733
+ "type": {
2734
+ "text": "'ASC' | 'DESC'"
2735
+ }
2736
+ }
2737
+ ],
2738
+ "description": "Sorts either numbers incrementally or strings alphabetically depending on the sorting direction."
2739
+ },
2740
+ {
2741
+ "kind": "method",
2742
+ "name": "sortObjectRows",
2743
+ "privacy": "protected",
2744
+ "return": {
2745
+ "type": {
2746
+ "text": "number"
2747
+ }
2748
+ },
2749
+ "parameters": [
2750
+ {
2751
+ "name": "rowA",
2752
+ "type": {
2753
+ "text": "TableRow"
2754
+ }
2755
+ },
2756
+ {
2757
+ "name": "rowB",
2758
+ "type": {
2759
+ "text": "TableRow"
2760
+ }
2761
+ },
2762
+ {
2763
+ "name": "cIndex",
2764
+ "type": {
2765
+ "text": "number"
2766
+ }
2767
+ },
2768
+ {
2769
+ "name": "sortDirection",
2770
+ "type": {
2771
+ "text": "'ASC' | 'DESC'"
2772
+ }
2773
+ }
2774
+ ],
2775
+ "description": "Function that handles several sorts of table content; from dates to HTML templates."
2776
+ },
2777
+ {
2778
+ "kind": "method",
2779
+ "name": "sortDateRows",
2780
+ "privacy": "protected",
2781
+ "return": {
2782
+ "type": {
2783
+ "text": "number"
2784
+ }
2785
+ },
2786
+ "parameters": [
2787
+ {
2788
+ "name": "dateA",
2789
+ "type": {
2790
+ "text": "Date"
2791
+ }
2792
+ },
2793
+ {
2794
+ "name": "dateB",
2795
+ "type": {
2796
+ "text": "Date"
2797
+ }
2798
+ },
2799
+ {
2800
+ "name": "cIndex",
2801
+ "type": {
2802
+ "text": "number"
2803
+ }
2804
+ },
2805
+ {
2806
+ "name": "sortDirection",
2807
+ "type": {
2808
+ "text": "'ASC' | 'DESC'"
2809
+ }
2810
+ }
2811
+ ]
2812
+ },
2813
+ {
2814
+ "kind": "method",
2815
+ "name": "sortTemplateRows",
2816
+ "privacy": "protected",
2817
+ "return": {
2818
+ "type": {
2819
+ "text": "number"
2820
+ }
2821
+ },
2822
+ "parameters": [
2823
+ {
2824
+ "name": "cellA",
2825
+ "type": {
2826
+ "text": "any"
2827
+ }
2828
+ },
2829
+ {
2830
+ "name": "cellB",
2831
+ "type": {
2832
+ "text": "any"
2833
+ }
2834
+ },
2835
+ {
2836
+ "name": "cIndex",
2837
+ "type": {
2838
+ "text": "number"
2839
+ }
2840
+ },
2841
+ {
2842
+ "name": "sortDirection",
2843
+ "type": {
2844
+ "text": "'ASC' | 'DESC'"
2845
+ }
2846
+ }
2847
+ ],
2848
+ "description": "Uses the TemplateResult content to identify and analyze the content.\nSee the documentation here; https://lit.dev/docs/v2/api/templates/#TemplateResult\nSometimes it cannot analyze the HTML; if so, it will retain the same order."
2849
+ },
2850
+ {
2851
+ "kind": "method",
2852
+ "name": "getSortHeader",
2853
+ "return": {
2854
+ "type": {
2855
+ "text": "Promise<TemplateResult>"
2856
+ }
2857
+ },
2858
+ "parameters": [
2859
+ {
2860
+ "name": "index",
2861
+ "type": {
2862
+ "text": "number"
2863
+ }
2864
+ },
2865
+ {
2866
+ "name": "title",
2867
+ "type": {
2868
+ "text": "string"
2869
+ }
2870
+ },
2871
+ {
2872
+ "name": "sortDirection",
2873
+ "type": {
2874
+ "text": "'ASC' | 'DESC'"
2875
+ }
2876
+ },
2877
+ {
2878
+ "name": "arrowOnLeft",
2879
+ "default": "false"
2880
+ }
2881
+ ]
2882
+ },
2883
+ {
2884
+ "kind": "method",
2885
+ "name": "getPaginationControls",
2886
+ "return": {
2887
+ "type": {
2888
+ "text": "Promise<TemplateResult>"
2889
+ }
2890
+ }
2891
+ },
2892
+ {
2893
+ "kind": "method",
2894
+ "name": "getRowCount",
2895
+ "return": {
2896
+ "type": {
2897
+ "text": "Promise<number>"
2898
+ }
2899
+ },
2900
+ "parameters": [
2901
+ {
2902
+ "name": "wait",
2903
+ "default": "true",
2904
+ "type": {
2905
+ "text": "boolean"
2906
+ }
2907
+ },
2908
+ {
2909
+ "name": "tableElem",
2910
+ "optional": true,
2911
+ "type": {
2912
+ "text": "HTMLElement"
2913
+ }
2914
+ }
2915
+ ]
2916
+ },
2917
+ {
2918
+ "kind": "method",
2919
+ "name": "getTableElem",
2920
+ "return": {
2921
+ "type": {
2922
+ "text": "Promise<HTMLElement | undefined>"
2923
+ }
2924
+ },
2925
+ "parameters": [
2926
+ {
2927
+ "name": "wait",
2928
+ "default": "false",
2929
+ "type": {
2930
+ "text": "boolean"
2931
+ }
2932
+ }
2933
+ ]
2934
+ },
2935
+ {
2936
+ "kind": "method",
2937
+ "name": "getColumnWidth",
2938
+ "privacy": "protected",
2939
+ "return": {
2940
+ "type": {
2941
+ "text": "string | undefined"
2942
+ }
2943
+ },
2944
+ "parameters": [
2945
+ {
2946
+ "name": "index",
2947
+ "type": {
2948
+ "text": "number"
2949
+ }
2950
+ },
2951
+ {
2952
+ "name": "columns",
2953
+ "optional": true,
2954
+ "type": {
2955
+ "text": "string[] | TableColumn[]"
2956
+ }
2957
+ },
2958
+ {
2959
+ "name": "tableWidthPx",
2960
+ "optional": true,
2961
+ "type": {
2962
+ "text": "number"
2963
+ }
2964
+ }
2965
+ ]
2966
+ },
2967
+ {
2968
+ "kind": "method",
2969
+ "name": "getMaxColumnWidth",
2970
+ "privacy": "protected",
2971
+ "return": {
2972
+ "type": {
2973
+ "text": "string | undefined"
2974
+ }
2975
+ },
2976
+ "parameters": [
2977
+ {
2978
+ "name": "index",
2979
+ "type": {
2980
+ "text": "number"
2981
+ }
2982
+ },
2983
+ {
2984
+ "name": "columns",
2985
+ "optional": true,
2986
+ "type": {
2987
+ "text": "string[] | TableColumn[]"
2988
+ }
2989
+ },
2990
+ {
2991
+ "name": "tableWidthPx",
2992
+ "optional": true,
2993
+ "type": {
2994
+ "text": "number"
2995
+ }
2996
+ }
2997
+ ]
2998
+ }
2999
+ ],
3000
+ "events": [
3001
+ {
3002
+ "type": {
3003
+ "text": "OrMwcTableRowClickEvent"
3004
+ }
3005
+ },
3006
+ {
3007
+ "name": "index",
3008
+ "type": {
3009
+ "text": "OrMwcTableRowSelectEvent"
3010
+ }
3011
+ }
3012
+ ],
3013
+ "superclass": {
3014
+ "name": "LitElement",
3015
+ "package": "lit"
3016
+ },
3017
+ "customElement": true
3018
+ }
3019
+ ],
3020
+ "exports": [
3021
+ {
3022
+ "kind": "js",
3023
+ "name": "OrMwcTableRowClickEvent",
3024
+ "declaration": {
3025
+ "name": "OrMwcTableRowClickEvent",
3026
+ "module": "src/or-mwc-table.ts"
3027
+ }
3028
+ },
3029
+ {
3030
+ "kind": "js",
3031
+ "name": "OrMwcTableRowSelectEvent",
3032
+ "declaration": {
3033
+ "name": "OrMwcTableRowSelectEvent",
3034
+ "module": "src/or-mwc-table.ts"
3035
+ }
3036
+ },
3037
+ {
3038
+ "kind": "js",
3039
+ "name": "OrMwcTable",
3040
+ "declaration": {
3041
+ "name": "OrMwcTable",
3042
+ "module": "src/or-mwc-table.ts"
3043
+ }
3044
+ }
3045
+ ]
3046
+ },
3047
+ {
3048
+ "kind": "javascript-module",
3049
+ "path": "src/or-mwc-tabs.ts",
3050
+ "declarations": [
3051
+ {
3052
+ "kind": "class",
3053
+ "description": "",
3054
+ "name": "OrMwcTabs",
3055
+ "members": [
3056
+ {
3057
+ "kind": "field",
3058
+ "name": "styles",
3059
+ "static": true,
3060
+ "readonly": true
3061
+ },
3062
+ {
3063
+ "kind": "field",
3064
+ "name": "index",
3065
+ "type": {
3066
+ "text": "number | undefined"
3067
+ },
3068
+ "privacy": "protected"
3069
+ },
3070
+ {
3071
+ "kind": "field",
3072
+ "name": "items",
3073
+ "type": {
3074
+ "text": "OrMwcTabItem[] | undefined"
3075
+ },
3076
+ "privacy": "protected"
3077
+ },
3078
+ {
3079
+ "kind": "field",
3080
+ "name": "iconPosition",
3081
+ "type": {
3082
+ "text": "\"left\" | \"top\" | undefined"
3083
+ },
3084
+ "privacy": "protected"
3085
+ },
3086
+ {
3087
+ "kind": "field",
3088
+ "name": "noScroll",
3089
+ "type": {
3090
+ "text": "boolean | undefined"
3091
+ },
3092
+ "privacy": "protected"
3093
+ },
3094
+ {
3095
+ "kind": "field",
3096
+ "name": "bgColor",
3097
+ "type": {
3098
+ "text": "string | undefined"
3099
+ },
3100
+ "privacy": "protected"
3101
+ },
3102
+ {
3103
+ "kind": "field",
3104
+ "name": "color",
3105
+ "type": {
3106
+ "text": "string | undefined"
3107
+ },
3108
+ "privacy": "protected"
3109
+ },
3110
+ {
3111
+ "kind": "field",
3112
+ "name": "styles",
3113
+ "type": {
3114
+ "text": "CSSResult | string | undefined"
3115
+ },
3116
+ "privacy": "protected"
3117
+ },
3118
+ {
3119
+ "kind": "field",
3120
+ "name": "mdcTabBar",
3121
+ "type": {
3122
+ "text": "MDCTabBar | undefined"
3123
+ },
3124
+ "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
+ }
3144
+ ],
3145
+ "events": [
3146
+ {
3147
+ "name": "activated",
3148
+ "type": {
3149
+ "text": "CustomEvent"
3150
+ }
3151
+ }
3152
+ ],
3153
+ "superclass": {
3154
+ "name": "LitElement",
3155
+ "package": "lit"
3156
+ },
3157
+ "customElement": true
3158
+ }
3159
+ ],
3160
+ "exports": [
3161
+ {
3162
+ "kind": "js",
3163
+ "name": "OrMwcTabs",
3164
+ "declaration": {
3165
+ "name": "OrMwcTabs",
3166
+ "module": "src/or-mwc-tabs.ts"
3167
+ }
3168
+ }
3169
+ ]
3170
+ },
3171
+ {
3172
+ "kind": "javascript-module",
3173
+ "path": "src/style.ts",
3174
+ "declarations": [
3175
+ {
3176
+ "kind": "variable",
3177
+ "name": "progressCircular",
3178
+ "default": "css` /* https://codepen.io/finnhvman/pen/bmNdNr */ .pure-material-progress-circular { -webkit-appearance: none; -moz-appearance: none; appearance: none; box-sizing: border-box; border: none; border-radius: 50%; padding: 0.25em; width: 3em; height: 3em; color: var(--or-app-color4, ${unsafeCSS(DefaultColor4)}); background-color: transparent; font-size: 16px; overflow: hidden; } .pure-material-progress-circular::-webkit-progress-bar { background-color: transparent; } /* Indeterminate */ .pure-material-progress-circular:indeterminate { -webkit-mask-image: linear-gradient(transparent 50%, black 50%), linear-gradient(to right, transparent 50%, black 50%); mask-image: linear-gradient(transparent 50%, black 50%), linear-gradient(to right, transparent 50%, black 50%); animation: pure-material-progress-circular 6s infinite cubic-bezier(0.3, 0.6, 1, 1); } :-ms-lang(x), .pure-material-progress-circular:indeterminate { animation: none; } .pure-material-progress-circular:indeterminate::before, .pure-material-progress-circular:indeterminate::-webkit-progress-value { content: \"\"; display: block; box-sizing: border-box; margin-bottom: 0.25em; border: solid 0.25em transparent; border-top-color: currentColor; border-radius: 50%; width: 100% !important; height: 100%; background-color: transparent; animation: pure-material-progress-circular-pseudo 0.75s infinite linear alternate; } .pure-material-progress-circular:indeterminate::-moz-progress-bar { box-sizing: border-box; border: solid 0.25em transparent; border-top-color: currentColor; border-radius: 50%; width: 100%; height: 100%; background-color: transparent; animation: pure-material-progress-circular-pseudo 0.75s infinite linear alternate; } .pure-material-progress-circular:indeterminate::-ms-fill { animation-name: -ms-ring; } @keyframes pure-material-progress-circular { 0% { transform: rotate(0deg); } 12.5% { transform: rotate(180deg); animation-timing-function: linear; } 25% { transform: rotate(630deg); } 37.5% { transform: rotate(810deg); animation-timing-function: linear; } 50% { transform: rotate(1260deg); } 62.5% { transform: rotate(1440deg); animation-timing-function: linear; } 75% { transform: rotate(1890deg); } 87.5% { transform: rotate(2070deg); animation-timing-function: linear; } 100% { transform: rotate(2520deg); } } @keyframes pure-material-progress-circular-pseudo { 0% { transform: rotate(-30deg); } 29.4% { border-left-color: transparent; } 29.41% { border-left-color: currentColor; } 64.7% { border-bottom-color: transparent; } 64.71% { border-bottom-color: currentColor; } 100% { border-left-color: currentColor; border-bottom-color: currentColor; transform: rotate(225deg); } } `"
3179
+ }
3180
+ ],
3181
+ "exports": [
3182
+ {
3183
+ "kind": "js",
3184
+ "name": "progressCircular",
3185
+ "declaration": {
3186
+ "name": "progressCircular",
3187
+ "module": "src/style.ts"
3188
+ }
3189
+ }
3190
+ ]
3191
+ }
3192
+ ]
3193
+ }