-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom-elements.json
More file actions
10518 lines (10518 loc) · 399 KB
/
custom-elements.json
File metadata and controls
10518 lines (10518 loc) · 399 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"schemaVersion": "1.0.0",
"readme": "",
"modules": [
{
"kind": "javascript-module",
"path": "widgets/webwriter-geogebra-3d.ts",
"declarations": [
{
"kind": "class",
"description": "A GeoGebra 3D Graphing Calculator widget.",
"name": "WebwriterGeogebra3D",
"members": [
{
"kind": "field",
"name": "type",
"type": {
"text": "\"classic\" | \"geometry\" | \"3d\" | \"suite\" | \"evaluator\" | \"scientific\" | \"notes\""
},
"default": "\"3d\"",
"description": "app name, default: \"classic\". \"graphing\" … GeoGebra Graphing Calculator \"geometry\" … GeoGebra Geometry \"3d\" … GeoGebra 3D Graphing Calculator \"classic\" … GeoGebra Classic \"suite\" … GeoGebra Calculator Suite \"evaluator\" … Equation Editor \"scientific\" …Scientific Calculator \"notes\" … GeoGebra Notes",
"attribute": "type",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "showZoomButtons",
"type": {
"text": "boolean"
},
"default": "true",
"description": "States whether the zoom in / zoom out / home buttons should be shown in the Graphics View or not. Default: false",
"attribute": "showZoomButtons",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "showFullscreenButton",
"type": {
"text": "boolean"
},
"default": "true",
"description": "Whether fullscreen button should be visible",
"attribute": "showFullscreenButton",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "localize",
"privacy": "protected",
"default": "LOCALIZE",
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "scopedElements",
"privacy": "protected",
"static": true,
"readonly": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "ggbStyles",
"type": {
"text": "string"
},
"description": "Custom CSS styles to apply to the GeoGebra applet.",
"attribute": "ggbStyles",
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "width",
"type": {
"text": "number"
},
"default": "800",
"description": "Applet width",
"attribute": "width",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "height",
"type": {
"text": "number"
},
"default": "450",
"description": "Applet height",
"attribute": "height",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "src",
"type": {
"text": "string"
},
"description": "Source of the GeoGebra file to load (base64-encoded string, material ID prefixed with \"ggbid:\", or file URL)",
"attribute": "src",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "borderColor",
"type": {
"text": "string"
},
"default": "\"gray\"",
"description": "Color of the border line drawn around the applet panel (as hex rgb string). Default: gray",
"attribute": "borderColor",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "borderRadius",
"type": {
"text": "number"
},
"default": "1",
"description": "Size of applet's border radius in pixels.",
"attribute": "borderRadius",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "enableRightClick",
"type": {
"text": "boolean"
},
"default": "true",
"description": "States whether right clicks should be handled by the applet. Setting this parameter to \"false\" disables context menus, properties dialogs and right-click-zooming. Default: true. NB also enables/disables some keyboard shortcuts eg Delete and Ctrl + R (recompute all objects). Default: true",
"attribute": "enableRightClick",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "enableLabelDrags",
"type": {
"text": "boolean"
},
"default": "true",
"description": "States whether labels can be dragged. Default: true",
"attribute": "enableLabelDrags",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "enableShiftDragZoom",
"type": {
"text": "boolean"
},
"default": "true",
"description": "States whether the Graphics View(s) should be moveable using Shift mouse drag (or. Ctrl + mouse drag) or zoomable using Shift + mouse wheel (or Ctrl + mouse wheel). Setting this parameter to \"false\" disables moving and zooming of the drawing pad. Default: true",
"attribute": "enableShiftDragZoom",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "errorDialogsActive",
"type": {
"text": "boolean"
},
"default": "true",
"description": "States whether error dialogs will be shown if an invalid input is entered (using the Input Bar or JavaScript) Default: true",
"attribute": "errorDialogsActive",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "showMenuBar",
"type": {
"text": "boolean"
},
"default": "false",
"description": "States whether the menubar of GeoGebra should be shown in the applet. Default: false",
"attribute": "showMenuBar",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "showToolBar",
"type": {
"text": "boolean"
},
"default": "true",
"description": "States whether the toolbar with the construction mode buttons should be shown in the applet. Default: false",
"attribute": "showToolBar",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "showToolBarHelp",
"type": {
"text": "boolean"
},
"default": "false",
"description": "States whether the toolbar help text right to the toolbar buttons should be shown in the applet",
"attribute": "showToolBarHelp",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "customToolBar",
"type": {
"text": "string"
},
"description": "Sets the toolbar according to a custom toolbar string where the int values are Toolbar Mode Values, `,` adds a separator within a menu, `|` starts a new menu and `||` adds a separator in the toolbar before starting a new menu. This will override the saved toolbar from the .ggb file / base64 string. Custom tools are numbered 100 001, 100 002, etc",
"attribute": "customToolBar",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "showAlgebraInput",
"type": {
"text": "boolean"
},
"default": "true",
"description": "States whether the algebra input line (with input field, greek letters and command list) should be shown in the applet. Default: false",
"attribute": "showAlgebraInput",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "showResetIcon",
"type": {
"text": "boolean"
},
"default": "false",
"description": "States whether a small icon (GeoGebra ellipse) should be shown in the upper right corner of the applet. Clicking on this icon resets the applet (i.e. it reloads the file given in the filename parameter). Default: false",
"attribute": "showResetIcon",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "language",
"type": {
"text": "String"
},
"description": "ISO language string. GeoGebra tries to set your local language automatically (if it is available among the supported languages, of course). The default language for unsupported languages is English. If you want to specify a certain language manually, please use this parameter.",
"attribute": "language",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "country",
"type": {
"text": "String"
},
"description": "ISO country string. This parameter only makes sense if you use it together with the language parameter.",
"attribute": "country",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "appletId",
"type": {
"text": "String"
},
"description": "This parameter allows you to specify the argument passed to the JavaScript function ggbOnInit(), which is called once the applet is fully initialised. This is useful when you have multiple applets on a page.",
"attribute": "appletId",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "allowStyleBar",
"type": {
"text": "boolean"
},
"default": "false",
"description": "Determines whether the Style Bar can be shown (or will be shown if just Graphics View 1 is showing). Default: false",
"attribute": "allowStyleBar",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "randomize",
"type": {
"text": "boolean"
},
"default": "true",
"description": "Determines whether random numbers should be randomized on file load. Useful when you want the app to reload in exactly the same state it was saved. Default: true",
"attribute": "randomize",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "randomSeed",
"type": {
"text": "number"
},
"description": "Specify seed for random numbers. Note that if you save a state of the app after user interacted with it and try to reload that state with the same randomSeed, you may get a different result. Use randomize for those use-cases.",
"attribute": "randomSeed",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "useBrowserForJs",
"type": {
"text": "boolean"
},
"default": "false",
"description": "When true, GeoGebra: runs ggbOnInit from HTML, ignores ggbOnInit from file, and ignores JS update scripts of objects in file. When false, GeoGebra: ignores ggbOnInit from HTML (use appletOnLoad parameter of GGBApplet instead), runs ggbOnInit from file, and runs JS update scripts of objects in file. Default: false",
"attribute": "useBrowserForJs",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "showLogging",
"type": {
"text": "boolean"
},
"default": "false",
"description": "Determines whether logging is shown in the Browser's console. Default: false",
"attribute": "showLogging",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "capturingThreshold",
"type": {
"text": "number"
},
"default": "3",
"description": "Determines the sensitivity of object selection. The default value of 3 is usually fine to select and drag objects both with the mouse and touch. Use larger values (e.g. 4 or 5) to make it easier to select and drag objects. Default: 3",
"attribute": "capturingThreshold",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "enableFileFeatures",
"type": {
"text": "boolean"
},
"default": "true",
"description": "Determines whether file saving, file loading, sign in and Options > Save settings are enabled. This argument is ignored when menubar is not showing. Default: true",
"attribute": "enableFileFeatures",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "enableUndoRedo",
"type": {
"text": "boolean"
},
"default": "true",
"description": "Determines whether Undo and Redo icons are shown. This argument is ignored when toolbar is not showing. Default: true",
"attribute": "enableUndoRedo",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "perspective",
"type": {
"text": "String"
},
"description": "For values see SetPerspective_Command in the GeoGebra Manual. Just for a blank start ie shouldn't be used with material_id, filename or ggbBase64 parameters",
"attribute": "perspective",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "enable3d",
"type": {
"text": "boolean"
},
"description": "Whether 3D should be enabled (for exam mode).",
"attribute": "enable3d",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "enableCAS",
"type": {
"text": "boolean"
},
"description": "Whether CAS should be enabled (for exam mode).",
"attribute": "enableCAS",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "algebraInputPosition",
"type": {
"text": "\"algebra\" | \"top\" | \"bottom\""
},
"description": "Determines whether input bar should be shown in algebra, on top of the applet or under the applet. When left empty (default), the position depends on file.",
"attribute": "algebraInputPosition",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "preventFocus",
"type": {
"text": "boolean"
},
"default": "false",
"description": "When set to true, this prevents the applet from getting focus automatically at the start. Default: false",
"attribute": "preventFocus",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "scaleContainerClass",
"type": {
"text": "string"
},
"description": "Name of CSS class that is used as container; applet will scale to fit into the container.",
"attribute": "scaleContainerClass",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "autoHeight",
"type": {
"text": "boolean"
},
"default": "true",
"description": "`true` to restrict the width of the applet and compute height automatically, add autoHeight: true. `false` if you want the applet to be restricted by both width and height of the container",
"attribute": "autoHeight",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "allowUpscale",
"type": {
"text": "boolean"
},
"default": "false",
"description": "Determines whether automatic scaling may scale the applet up. Default: false",
"attribute": "allowUpscale",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "playButton",
"type": {
"text": "boolean"
},
"default": "false",
"description": "Determines whether a preview image and a play button should be rendered in place of the applet. Pushing the play button initializes the applet. Default: false",
"attribute": "playButton",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "scale",
"type": {
"text": "number"
},
"default": "1",
"description": "Ratio by which the applet should be scaled (eg. 2 makes the applet 2 times bigger, including all texts and UI elements). Default: 1",
"attribute": "scale",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "showAnimationButton",
"type": {
"text": "boolean"
},
"default": "false",
"description": "Whether animation button should be visible",
"attribute": "showAnimationButton",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "showSuggestionButtons",
"type": {
"text": "boolean"
},
"default": "false",
"description": "Whether suggestion buttons (special points, solve) in Algebra View should be visible",
"attribute": "showSuggestionButtons",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "showStartTooltip",
"type": {
"text": "boolean"
},
"default": "false",
"description": "Whether \"Welcome\" tooltip should be shown",
"attribute": "showStartTooltip",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "rounding",
"type": {
"text": "string"
},
"description": "String composed of number of decimal places and flags — valid flags are \"s\" for significant digits and \"r\" for rational numbers. Hence \"10\" means 10 decimal places, \"10s\" stands for 10 significant digits.",
"attribute": "rounding",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "buttonShadows",
"type": {
"text": "boolean"
},
"default": "false",
"description": "Whether buttons should have shadow",
"attribute": "buttonShadows",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "buttonRounding",
"type": {
"text": "Number"
},
"default": "0.2",
"description": "Relative radius of button's rounded border. The border radius in pixels is buttonRounding * height /2, where height is the height of the button. Default: 0.2",
"attribute": "buttonRounding",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "buttonBorderColor",
"type": {
"text": "string"
},
"description": "Border color of buttons on the graphics view. Default is black, if the button background is white, otherwise one shade darker than the background color",
"attribute": "buttonBorderColor",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "editorBackgroundColor",
"type": {
"text": "string"
},
"description": "Background color of the evaluator app",
"attribute": "editorBackgroundColor",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "editorForegroundColor",
"type": {
"text": "string"
},
"description": "Foreground (text) color of the equation editor (appname = \"evaluator\")",
"attribute": "editorForegroundColor",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "textmode",
"type": {
"text": "boolean"
},
"default": "false",
"description": "Whether editor is in text mode or not (appname = \"evaluator\"). Default: false",
"attribute": "textmode",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "showKeyboardOnFocus",
"type": {
"text": "boolean"
},
"description": "Whether to show keyboard when input is focused. When set to true, keyboard is always shown, for false it never appears, for auto it's shown unless closed by user. Default: true in evaluator app, auto in other apps",
"attribute": "showKeyboardOnFocus",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "keyboardType",
"type": {
"text": "\"scientific\" | \"normal\" | \"notes\""
},
"description": "Which keyboard is shown for equation editor (appname = \"evaluator\")",
"attribute": "keyboardType",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "transparentGraphics",
"type": {
"text": "boolean"
},
"default": "false",
"description": "Whether the Graphics View and Graphics View 2 should be transparent",
"attribute": "transparentGraphics",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "disabledJavaScript",
"type": {
"text": "boolean"
},
"default": "false",
"description": "Whether running JavaScript from material files is disabled or not.",
"attribute": "disabledJavaScript",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "detachedKeyboardParent",
"type": {
"text": "string"
},
"description": "When set, the keyboard should be attached to the first element in DOM that fits the selector.",
"attribute": "detachedKeyboardParent",
"reflects": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "resetKey",
"type": {
"text": "number"
},
"privacy": "protected",
"default": "0",
"description": "Used to force reset of the applet. Increment this property to reset the applet.",
"attribute": "resetKey",
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "paramUpdateMap",
"type": {
"text": "Map<string, (value: number | string | boolean) => void>"
},
"privacy": "private",
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "method",
"name": "getConfigurableProperties",
"privacy": "private",
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "ggbProperties",
"privacy": "private",
"readonly": true,
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "updateSrc",
"privacy": "private",
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "method",
"name": "handlePropertyChange",
"privacy": "private",
"parameters": [
{
"name": "e",
"type": {
"text": "CustomEvent"
}
}
],
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "method",
"name": "handleFileImport",
"privacy": "private",
"parameters": [
{
"name": "e",
"type": {
"text": "CustomEvent"
}
}
],
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "updatingGgb",
"type": {
"text": "boolean"
},
"privacy": "private",
"default": "false",
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "apiReady",
"type": {
"text": "Promise<GeogebraAPI>"
},
"privacy": "private",
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "field",
"name": "api",
"type": {
"text": "GeogebraAPI | undefined"
},
"privacy": "private",
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "method",
"name": "initializeIFrame",
"privacy": "private",
"parameters": [
{
"name": "iframe",
"type": {
"text": "HTMLIFrameElement"
}
}
],
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
},
{
"kind": "method",
"name": "resetIFrame",
"privacy": "private",
"inheritedFrom": {
"name": "GeogebraApp",
"module": "components/geogebra-app.ts"
}
}
],
"superclass": {
"name": "GeogebraApp",
"module": "/components/geogebra-app"
},
"tagName": "webwriter-geogebra-3d",
"customElement": true,
"attributes": [
{