@nordhealth/components 1.0.0-beta.22 → 1.0.0-beta.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/custom-elements.json +1559 -1559
- package/package.json +3 -3
package/custom-elements.json
CHANGED
|
@@ -429,6 +429,74 @@
|
|
|
429
429
|
],
|
|
430
430
|
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use to show a status update on a piece of information or action.\n- Use to mark something as a “draft” or “new”.\n- Use when you want to highlight something that has been added recently.\n- Use established color patterns so that users can clearly identify the importance level.\n- Always position badge so that it’s clear to understand what object it’s related to.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t make badges clickable. Instead use button component’s small variant.\n- Don’t use alternatives to existing badge variants.\n\n</div>\n\n---\n\n## Content guidelines\n\nBadge labels should use a single word to describe the status of an object. Only use two words if you need to describe a complex state:\n\n<div class=\"n-usage n-usage-do\">Complete</div>\n<div class=\"n-usage n-usage-dont\">Action completed</div>\n\nWhen writing badge labels, always write them in sentence case, not title case. The first word should be capitalized and the rest lowercase (unless a proper noun):\n\n<div class=\"n-usage n-usage-do\">Partially refunded</div>\n<div class=\"n-usage n-usage-dont\">Partially Refunded</div>\n\nAvoid unnecessary words and articles in badge labels, such as “is”, “the”, “an” or “a”:\n\n<div class=\"n-usage n-usage-do\">Pending</div>\n<div class=\"n-usage n-usage-dont\">Item is pending</div>\n\nAlways describe the status in the past tense:\n\n<div class=\"n-usage n-usage-do\">Refunded</div>\n<div class=\"n-usage n-usage-dont\">Refund</div>\n\n---\n\n## Variants\n\nThis section describes the different component variants, their purpose, and when to use each variant.\n\n| Name | Purpose |\n| ----------- | --------------------------------------------------------------------------------------------------------------------------------------- |\n| `info` | The default variant. Used to convey general information that isn’t critical. |\n| `success` | Used to convey success states. For example, you might want to show a badge that tells the user a payment was successful. |\n| `highlight` | Used to highlight specific items in the interface, like notifications. |\n| `danger` | Used to communicate problems that have to be resolved so that user can continue forward. Should always be used for highlighting errors. |\n| `warning` | Used to display information that needs a user’s attention attention and may require further steps. |\n"
|
|
431
431
|
},
|
|
432
|
+
{
|
|
433
|
+
"kind": "javascript-module",
|
|
434
|
+
"path": "src/banner/Banner.ts",
|
|
435
|
+
"declarations": [
|
|
436
|
+
{
|
|
437
|
+
"kind": "class",
|
|
438
|
+
"description": "Banner informs users about important changes or conditions in the\ninterface. Use this component if you need to communicate to users\nin a prominent way.",
|
|
439
|
+
"name": "Banner",
|
|
440
|
+
"slots": [
|
|
441
|
+
{
|
|
442
|
+
"description": "default slot",
|
|
443
|
+
"name": ""
|
|
444
|
+
}
|
|
445
|
+
],
|
|
446
|
+
"members": [
|
|
447
|
+
{
|
|
448
|
+
"kind": "field",
|
|
449
|
+
"name": "variant",
|
|
450
|
+
"type": {
|
|
451
|
+
"text": "\"info\" | \"danger\" | \"success\" | \"warning\""
|
|
452
|
+
},
|
|
453
|
+
"default": "\"info\"",
|
|
454
|
+
"description": "The style variant of the banner.",
|
|
455
|
+
"attribute": "variant",
|
|
456
|
+
"reflects": true
|
|
457
|
+
}
|
|
458
|
+
],
|
|
459
|
+
"attributes": [
|
|
460
|
+
{
|
|
461
|
+
"name": "variant",
|
|
462
|
+
"type": {
|
|
463
|
+
"text": "\"info\" | \"danger\" | \"success\" | \"warning\""
|
|
464
|
+
},
|
|
465
|
+
"default": "\"info\"",
|
|
466
|
+
"description": "The style variant of the banner.",
|
|
467
|
+
"fieldName": "variant"
|
|
468
|
+
}
|
|
469
|
+
],
|
|
470
|
+
"superclass": {
|
|
471
|
+
"name": "LitElement",
|
|
472
|
+
"package": "lit"
|
|
473
|
+
},
|
|
474
|
+
"status": "new",
|
|
475
|
+
"category": "feedback",
|
|
476
|
+
"tagName": "nord-banner",
|
|
477
|
+
"customElement": true
|
|
478
|
+
}
|
|
479
|
+
],
|
|
480
|
+
"exports": [
|
|
481
|
+
{
|
|
482
|
+
"kind": "js",
|
|
483
|
+
"name": "default",
|
|
484
|
+
"declaration": {
|
|
485
|
+
"name": "Banner",
|
|
486
|
+
"module": "src/banner/Banner.ts"
|
|
487
|
+
}
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"kind": "custom-element-definition",
|
|
491
|
+
"name": "nord-banner",
|
|
492
|
+
"declaration": {
|
|
493
|
+
"name": "Banner",
|
|
494
|
+
"module": "src/banner/Banner.ts"
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
],
|
|
498
|
+
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use this component if you need to communicate in a prominent way.\n- Place banner at the top of the section it applies to.\n- Use for highlighting errors and success statuses.\n- Put banner close to the context it’s referring to.\n- Move focus to the banner if it’s relevant to the current workflow.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Move focus to banner if it appears on page load.\n- Use for highlighting general content or as a banner.\n- Use to replace an error page.\n\n</div>\n\n---\n\n## Content guidelines\n\nBanner content should be clear, accurate and easy to understand:\n\n<div class=\"n-usage n-usage-do\">We’re experiencing an incident. Please see our status page for more details.</div>\n<div class=\"n-usage n-usage-dont\">There was an error.</div>\n\nWhen writing banner content, always write it in sentence case, not title case. The first word should be capitalized and the rest lowercase (unless a proper noun):\n\n<div class=\"n-usage n-usage-do\">We’re experiencing an incident.</div>\n<div class=\"n-usage n-usage-dont\">We’re Experiencing An Incident.</div>\n\nAlways end in punctuation:\n\n<div class=\"n-usage n-usage-do\">We’re experiencing an incident.</div>\n<div class=\"n-usage n-usage-dont\">We’re experiencing an incident</div>\n"
|
|
499
|
+
},
|
|
432
500
|
{
|
|
433
501
|
"kind": "javascript-module",
|
|
434
502
|
"path": "src/button/Button.ts",
|
|
@@ -837,49 +905,69 @@
|
|
|
837
905
|
},
|
|
838
906
|
{
|
|
839
907
|
"kind": "javascript-module",
|
|
840
|
-
"path": "src/
|
|
908
|
+
"path": "src/card/Card.ts",
|
|
841
909
|
"declarations": [
|
|
842
910
|
{
|
|
843
911
|
"kind": "class",
|
|
844
|
-
"description": "
|
|
845
|
-
"name": "
|
|
912
|
+
"description": "Cards are shadowed surfaces that display content and actions on a\nsingle topic. They should be easy to scan for relevant and\nactionable information.",
|
|
913
|
+
"name": "Card",
|
|
846
914
|
"slots": [
|
|
847
915
|
{
|
|
848
|
-
"description": "
|
|
916
|
+
"description": "The card content.",
|
|
849
917
|
"name": ""
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
"description": "Optional slot that holds a header for the card.",
|
|
921
|
+
"name": "header"
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
"description": "Optional slot that holds footer content for the card.",
|
|
925
|
+
"name": "footer"
|
|
850
926
|
}
|
|
851
927
|
],
|
|
852
928
|
"members": [
|
|
853
929
|
{
|
|
854
930
|
"kind": "field",
|
|
855
|
-
"name": "
|
|
931
|
+
"name": "headerSlot",
|
|
932
|
+
"privacy": "private",
|
|
933
|
+
"default": "new SlotController(this, \"header\")"
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"kind": "field",
|
|
937
|
+
"name": "footerSlot",
|
|
938
|
+
"privacy": "private",
|
|
939
|
+
"default": "new SlotController(this, \"footer\")"
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
"kind": "field",
|
|
943
|
+
"name": "padding",
|
|
856
944
|
"type": {
|
|
857
|
-
"text": "\"
|
|
945
|
+
"text": "\"m\" | \"l\" | \"none\""
|
|
858
946
|
},
|
|
859
|
-
"default": "\"
|
|
860
|
-
"description": "
|
|
861
|
-
"attribute": "
|
|
947
|
+
"default": "\"m\"",
|
|
948
|
+
"description": "Controls the padding of card component. When set to “none”,\nthe header and footer slots will still have padding.",
|
|
949
|
+
"attribute": "padding",
|
|
862
950
|
"reflects": true
|
|
863
951
|
}
|
|
864
952
|
],
|
|
865
953
|
"attributes": [
|
|
866
954
|
{
|
|
867
|
-
"name": "
|
|
955
|
+
"name": "padding",
|
|
868
956
|
"type": {
|
|
869
|
-
"text": "\"
|
|
957
|
+
"text": "\"m\" | \"l\" | \"none\""
|
|
870
958
|
},
|
|
871
|
-
"default": "\"
|
|
872
|
-
"description": "
|
|
873
|
-
"fieldName": "
|
|
959
|
+
"default": "\"m\"",
|
|
960
|
+
"description": "Controls the padding of card component. When set to “none”,\nthe header and footer slots will still have padding.",
|
|
961
|
+
"fieldName": "padding"
|
|
874
962
|
}
|
|
875
963
|
],
|
|
876
964
|
"superclass": {
|
|
877
965
|
"name": "LitElement",
|
|
878
966
|
"package": "lit"
|
|
879
967
|
},
|
|
880
|
-
"status": "
|
|
881
|
-
"category": "
|
|
882
|
-
"tagName": "nord-
|
|
968
|
+
"status": "ready",
|
|
969
|
+
"category": "structure",
|
|
970
|
+
"tagName": "nord-card",
|
|
883
971
|
"customElement": true
|
|
884
972
|
}
|
|
885
973
|
],
|
|
@@ -888,20 +976,20 @@
|
|
|
888
976
|
"kind": "js",
|
|
889
977
|
"name": "default",
|
|
890
978
|
"declaration": {
|
|
891
|
-
"name": "
|
|
892
|
-
"module": "src/
|
|
979
|
+
"name": "Card",
|
|
980
|
+
"module": "src/card/Card.ts"
|
|
893
981
|
}
|
|
894
982
|
},
|
|
895
983
|
{
|
|
896
984
|
"kind": "custom-element-definition",
|
|
897
|
-
"name": "nord-
|
|
985
|
+
"name": "nord-card",
|
|
898
986
|
"declaration": {
|
|
899
|
-
"name": "
|
|
900
|
-
"module": "src/
|
|
987
|
+
"name": "Card",
|
|
988
|
+
"module": "src/card/Card.ts"
|
|
901
989
|
}
|
|
902
990
|
}
|
|
903
991
|
],
|
|
904
|
-
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use
|
|
992
|
+
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use to display content and actions on a single topic inside a container.\n- Use to visually separate specific parts of content in an application view.\n- Use to wrap a form into a container, for example a login form.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t use when you need to capture user’s attention in a prominent way.\n- Don’t use to inform user about important changes or conditions in the interface.\n- Don’t use multiple primary buttons inside a card. A card should only contain a single primary action.\n\n</div>\n"
|
|
905
993
|
},
|
|
906
994
|
{
|
|
907
995
|
"kind": "javascript-module",
|
|
@@ -1371,94 +1459,6 @@
|
|
|
1371
1459
|
],
|
|
1372
1460
|
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use when the user needs to choose a single date or a date range.\n- Close calendar after a single date is selected, unless a range with a start and end date is required.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t use for entering date of birth. Use input component instead.\n- Don’t use for choosing a date that is over 10 years in the future or the past.\n\n</div>\n\n---\n\n## Keyboard accessibility\n\nCalendar component is built to closely follow [W3C Date Picker Dialog example](https://www.w3.org/TR/wai-aria-practices/examples/dialog-modal/datepicker-dialog.html) with some small exceptions to e.g. better support iOS VoiceOver and Android TalkBack.\n\n### Month/year buttons\n\n- `Space, Enter`: Changes the month and/or year displayed.\n\n### Calendar grid\n\n- `Space, Enter`: Selects a date.\n- `Arrow up`: Moves focus to the same day of the previous week.\n- `Arrow down`: Moves focus to the same day of the next week.\n- `Arrow right`: Moves focus to the next day. In right-to-left languages, moves focus to the previous day.\n- `Arrow left`: Moves focus to the previous day. In right-to-left languages, moves focus to the next day.\n- `Home`: Moves focus to the first day (e.g Monday) of the current week.\n- `End`: Moves focus to the last day (e.g. Sunday) of the current week.\n- `Page Up`: Changes the grid of dates to the previous month and sets focus on the same day of the same week.\n- `Shift + Page Up`: Changes the grid of dates to the previous year and sets focus on the same day of the same week.\n- `Page Down`: Changes the grid of dates to the next month and sets focus on the same day of the same week.\n- `Shift + Page Down`: Changes the grid of dates to the next year and sets focus on the same day of the same week.\n"
|
|
1373
1461
|
},
|
|
1374
|
-
{
|
|
1375
|
-
"kind": "javascript-module",
|
|
1376
|
-
"path": "src/card/Card.ts",
|
|
1377
|
-
"declarations": [
|
|
1378
|
-
{
|
|
1379
|
-
"kind": "class",
|
|
1380
|
-
"description": "Cards are shadowed surfaces that display content and actions on a\nsingle topic. They should be easy to scan for relevant and\nactionable information.",
|
|
1381
|
-
"name": "Card",
|
|
1382
|
-
"slots": [
|
|
1383
|
-
{
|
|
1384
|
-
"description": "The card content.",
|
|
1385
|
-
"name": ""
|
|
1386
|
-
},
|
|
1387
|
-
{
|
|
1388
|
-
"description": "Optional slot that holds a header for the card.",
|
|
1389
|
-
"name": "header"
|
|
1390
|
-
},
|
|
1391
|
-
{
|
|
1392
|
-
"description": "Optional slot that holds footer content for the card.",
|
|
1393
|
-
"name": "footer"
|
|
1394
|
-
}
|
|
1395
|
-
],
|
|
1396
|
-
"members": [
|
|
1397
|
-
{
|
|
1398
|
-
"kind": "field",
|
|
1399
|
-
"name": "headerSlot",
|
|
1400
|
-
"privacy": "private",
|
|
1401
|
-
"default": "new SlotController(this, \"header\")"
|
|
1402
|
-
},
|
|
1403
|
-
{
|
|
1404
|
-
"kind": "field",
|
|
1405
|
-
"name": "footerSlot",
|
|
1406
|
-
"privacy": "private",
|
|
1407
|
-
"default": "new SlotController(this, \"footer\")"
|
|
1408
|
-
},
|
|
1409
|
-
{
|
|
1410
|
-
"kind": "field",
|
|
1411
|
-
"name": "padding",
|
|
1412
|
-
"type": {
|
|
1413
|
-
"text": "\"m\" | \"l\" | \"none\""
|
|
1414
|
-
},
|
|
1415
|
-
"default": "\"m\"",
|
|
1416
|
-
"description": "Controls the padding of card component. When set to “none”,\nthe header and footer slots will still have padding.",
|
|
1417
|
-
"attribute": "padding",
|
|
1418
|
-
"reflects": true
|
|
1419
|
-
}
|
|
1420
|
-
],
|
|
1421
|
-
"attributes": [
|
|
1422
|
-
{
|
|
1423
|
-
"name": "padding",
|
|
1424
|
-
"type": {
|
|
1425
|
-
"text": "\"m\" | \"l\" | \"none\""
|
|
1426
|
-
},
|
|
1427
|
-
"default": "\"m\"",
|
|
1428
|
-
"description": "Controls the padding of card component. When set to “none”,\nthe header and footer slots will still have padding.",
|
|
1429
|
-
"fieldName": "padding"
|
|
1430
|
-
}
|
|
1431
|
-
],
|
|
1432
|
-
"superclass": {
|
|
1433
|
-
"name": "LitElement",
|
|
1434
|
-
"package": "lit"
|
|
1435
|
-
},
|
|
1436
|
-
"status": "ready",
|
|
1437
|
-
"category": "structure",
|
|
1438
|
-
"tagName": "nord-card",
|
|
1439
|
-
"customElement": true
|
|
1440
|
-
}
|
|
1441
|
-
],
|
|
1442
|
-
"exports": [
|
|
1443
|
-
{
|
|
1444
|
-
"kind": "js",
|
|
1445
|
-
"name": "default",
|
|
1446
|
-
"declaration": {
|
|
1447
|
-
"name": "Card",
|
|
1448
|
-
"module": "src/card/Card.ts"
|
|
1449
|
-
}
|
|
1450
|
-
},
|
|
1451
|
-
{
|
|
1452
|
-
"kind": "custom-element-definition",
|
|
1453
|
-
"name": "nord-card",
|
|
1454
|
-
"declaration": {
|
|
1455
|
-
"name": "Card",
|
|
1456
|
-
"module": "src/card/Card.ts"
|
|
1457
|
-
}
|
|
1458
|
-
}
|
|
1459
|
-
],
|
|
1460
|
-
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use to display content and actions on a single topic inside a container.\n- Use to visually separate specific parts of content in an application view.\n- Use to wrap a form into a container, for example a login form.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t use when you need to capture user’s attention in a prominent way.\n- Don’t use to inform user about important changes or conditions in the interface.\n- Don’t use multiple primary buttons inside a card. A card should only contain a single primary action.\n\n</div>\n"
|
|
1461
|
-
},
|
|
1462
1462
|
{
|
|
1463
1463
|
"kind": "javascript-module",
|
|
1464
1464
|
"path": "src/checkbox/Checkbox.ts",
|
|
@@ -3621,58 +3621,13 @@
|
|
|
3621
3621
|
},
|
|
3622
3622
|
{
|
|
3623
3623
|
"kind": "javascript-module",
|
|
3624
|
-
"path": "src/
|
|
3624
|
+
"path": "src/date-picker/DatePicker.ts",
|
|
3625
3625
|
"declarations": [
|
|
3626
3626
|
{
|
|
3627
3627
|
"kind": "class",
|
|
3628
|
-
"description": "
|
|
3629
|
-
"name": "
|
|
3630
|
-
"
|
|
3631
|
-
{
|
|
3632
|
-
"description": "default slot",
|
|
3633
|
-
"name": ""
|
|
3634
|
-
}
|
|
3635
|
-
],
|
|
3636
|
-
"members": [],
|
|
3637
|
-
"superclass": {
|
|
3638
|
-
"name": "LitElement",
|
|
3639
|
-
"package": "lit"
|
|
3640
|
-
},
|
|
3641
|
-
"status": "new",
|
|
3642
|
-
"category": "feedback",
|
|
3643
|
-
"tagName": "nord-empty-state",
|
|
3644
|
-
"customElement": true
|
|
3645
|
-
}
|
|
3646
|
-
],
|
|
3647
|
-
"exports": [
|
|
3648
|
-
{
|
|
3649
|
-
"kind": "js",
|
|
3650
|
-
"name": "default",
|
|
3651
|
-
"declaration": {
|
|
3652
|
-
"name": "EmptyState",
|
|
3653
|
-
"module": "src/empty-state/EmptyState.ts"
|
|
3654
|
-
}
|
|
3655
|
-
},
|
|
3656
|
-
{
|
|
3657
|
-
"kind": "custom-element-definition",
|
|
3658
|
-
"name": "nord-empty-state",
|
|
3659
|
-
"declaration": {
|
|
3660
|
-
"name": "EmptyState",
|
|
3661
|
-
"module": "src/empty-state/EmptyState.ts"
|
|
3662
|
-
}
|
|
3663
|
-
}
|
|
3664
|
-
],
|
|
3665
|
-
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use when another component or part of UI has no items or data to show.\n- Help users by clearly explaining the benefit and utility of a product or feature.\n- Be encouraging and never make users feel unsuccessful or guilty.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t use as a generic banner to highlight specific content.\n\n</div>\n\n---\n\n## Content guidelines\n\nEmpty state headings should state to the user what’s wrong or why there’s no content:\n\n<div class=\"n-usage n-usage-do\">No results found</div>\n<div class=\"n-usage n-usage-dont\">Error</div>\n\nWhen writing empty state headings, always write them in sentence case, not title case. The first word should be capitalized and the rest lowercase (unless a proper noun):\n\n<div class=\"n-usage n-usage-do\">You don’t have access to this content</div>\n<div class=\"n-usage n-usage-dont\">You Don’t Have Access To This Content</div>\n\nDescriptions in empty states should add useful and relevant additional information:\n\n<div class=\"n-usage n-usage-do\">We were unable to connect to the service. Click Retry to try again or View log to learn what happened.</div>\n<div class=\"n-usage n-usage-dont\">No connection.</div>\n\nButton labels should be clear, accurate and predictable. It should be possible for the user to understand what will happen when they click a button:\n\n<div class=\"n-usage n-usage-do\">Clear filters</div>\n<div class=\"n-usage n-usage-dont\">Clear</div>\n\nWhen writing button labels, always write them in sentence case, not title case. The first word should be capitalized and the rest lowercase (unless a proper noun):\n\n<div class=\"n-usage n-usage-do\">View log</div>\n<div class=\"n-usage n-usage-dont\">View Log</div>\n\nAvoid unnecessary words and articles in button labels, such as “the”, “an” or “a”:\n\n<div class=\"n-usage n-usage-do\">Request access</div>\n<div class=\"n-usage n-usage-dont\">Request an access</div>\n"
|
|
3666
|
-
},
|
|
3667
|
-
{
|
|
3668
|
-
"kind": "javascript-module",
|
|
3669
|
-
"path": "src/date-picker/DatePicker.ts",
|
|
3670
|
-
"declarations": [
|
|
3671
|
-
{
|
|
3672
|
-
"kind": "class",
|
|
3673
|
-
"description": "\nDate Picker allows user to enter a date either through text input,\nor by choosing a date from the calendar. Please note that the date\nmust be passed in ISO-8601 format: YYYY-MM-DD.",
|
|
3674
|
-
"name": "DatePicker",
|
|
3675
|
-
"members": [
|
|
3628
|
+
"description": "\nDate Picker allows user to enter a date either through text input,\nor by choosing a date from the calendar. Please note that the date\nmust be passed in ISO-8601 format: YYYY-MM-DD.",
|
|
3629
|
+
"name": "DatePicker",
|
|
3630
|
+
"members": [
|
|
3676
3631
|
{
|
|
3677
3632
|
"kind": "field",
|
|
3678
3633
|
"name": "toggleButton",
|
|
@@ -4557,6 +4512,51 @@
|
|
|
4557
4512
|
],
|
|
4558
4513
|
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use when the user needs to choose a single date or a date range.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t use for entering date of birth. Use input component instead.\n- Don’t use to choose a date that is over 10 years in the future or the past.\n\n</div>\n\n---\n\n## Keyboard accessibility\n\nDate picker is built to closely follow [W3C Date Picker Dialog example](https://www.w3.org/TR/wai-aria-practices/examples/dialog-modal/datepicker-dialog.html) with some small exceptions to e.g. better support iOS VoiceOver and Android TalkBack.\n\n### Choose date button\n\n- `Space, Enter`: Opens the date picker dialog and moves focus to the first select menu in the dialog.\n\n### Date picker dialog\n\n- `Esc`: Closes the date picker dialog and moves focus back to the “choose date” button.\n- `Tab`: Moves focus to the next element in the dialog. Please note since the calendar uses `role=\"grid\"`, only one button in the calendar grid is in the tab sequence. Additionally, if focus is on the last focusable element, focus is next moved back to the first focusable element inside the date picker dialog.\n- `Shift + Tab`: Same as above, but in reverse order.\n\n### Date picker dialog: Month/year buttons\n\n- `Space, Enter`: Changes the month and/or year displayed.\n\n### Date picker dialog: Date grid\n\n- `Space, Enter`: Selects a date, closes the dialog, and moves focus back to the “Choose Date” button. Additionally updates the value of the date picker input with the selected date, and adds selected date to “Choose Date” button label.\n- `Arrow up`: Moves focus to the same day of the previous week.\n- `Arrow down`: Moves focus to the same day of the next week.\n- `Arrow right`: Moves focus to the next day. In right-to-left languages, moves focus to the previous day.\n- `Arrow left`: Moves focus to the previous day. In right-to-left languages, moves focus to the next day.\n- `Home`: Moves focus to the first day (e.g Monday) of the current week.\n- `End`: Moves focus to the last day (e.g. Sunday) of the current week.\n- `Page Up`: Changes the grid of dates to the previous month and sets focus on the same day of the same week.\n- `Shift + Page Up`: Changes the grid of dates to the previous year and sets focus on the same day of the same week.\n- `Page Down`: Changes the grid of dates to the next month and sets focus on the same day of the same week.\n- `Shift + Page Down`: Changes the grid of dates to the next year and sets focus on the same day of the same week.\n\n#### Date picker dialog: Close button\n\n- `Space, Enter`: Closes the dialog, moves focus to “choose date” button, but does not update the date in input.\n"
|
|
4559
4514
|
},
|
|
4515
|
+
{
|
|
4516
|
+
"kind": "javascript-module",
|
|
4517
|
+
"path": "src/empty-state/EmptyState.ts",
|
|
4518
|
+
"declarations": [
|
|
4519
|
+
{
|
|
4520
|
+
"kind": "class",
|
|
4521
|
+
"description": "Empty state can be used when there is no data to display to\ndescribe what the user can do next. Empty state provides\nexplanation and guidance to help user progress.",
|
|
4522
|
+
"name": "EmptyState",
|
|
4523
|
+
"slots": [
|
|
4524
|
+
{
|
|
4525
|
+
"description": "default slot",
|
|
4526
|
+
"name": ""
|
|
4527
|
+
}
|
|
4528
|
+
],
|
|
4529
|
+
"members": [],
|
|
4530
|
+
"superclass": {
|
|
4531
|
+
"name": "LitElement",
|
|
4532
|
+
"package": "lit"
|
|
4533
|
+
},
|
|
4534
|
+
"status": "new",
|
|
4535
|
+
"category": "feedback",
|
|
4536
|
+
"tagName": "nord-empty-state",
|
|
4537
|
+
"customElement": true
|
|
4538
|
+
}
|
|
4539
|
+
],
|
|
4540
|
+
"exports": [
|
|
4541
|
+
{
|
|
4542
|
+
"kind": "js",
|
|
4543
|
+
"name": "default",
|
|
4544
|
+
"declaration": {
|
|
4545
|
+
"name": "EmptyState",
|
|
4546
|
+
"module": "src/empty-state/EmptyState.ts"
|
|
4547
|
+
}
|
|
4548
|
+
},
|
|
4549
|
+
{
|
|
4550
|
+
"kind": "custom-element-definition",
|
|
4551
|
+
"name": "nord-empty-state",
|
|
4552
|
+
"declaration": {
|
|
4553
|
+
"name": "EmptyState",
|
|
4554
|
+
"module": "src/empty-state/EmptyState.ts"
|
|
4555
|
+
}
|
|
4556
|
+
}
|
|
4557
|
+
],
|
|
4558
|
+
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use when another component or part of UI has no items or data to show.\n- Help users by clearly explaining the benefit and utility of a product or feature.\n- Be encouraging and never make users feel unsuccessful or guilty.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t use as a generic banner to highlight specific content.\n\n</div>\n\n---\n\n## Content guidelines\n\nEmpty state headings should state to the user what’s wrong or why there’s no content:\n\n<div class=\"n-usage n-usage-do\">No results found</div>\n<div class=\"n-usage n-usage-dont\">Error</div>\n\nWhen writing empty state headings, always write them in sentence case, not title case. The first word should be capitalized and the rest lowercase (unless a proper noun):\n\n<div class=\"n-usage n-usage-do\">You don’t have access to this content</div>\n<div class=\"n-usage n-usage-dont\">You Don’t Have Access To This Content</div>\n\nDescriptions in empty states should add useful and relevant additional information:\n\n<div class=\"n-usage n-usage-do\">We were unable to connect to the service. Click Retry to try again or View log to learn what happened.</div>\n<div class=\"n-usage n-usage-dont\">No connection.</div>\n\nButton labels should be clear, accurate and predictable. It should be possible for the user to understand what will happen when they click a button:\n\n<div class=\"n-usage n-usage-do\">Clear filters</div>\n<div class=\"n-usage n-usage-dont\">Clear</div>\n\nWhen writing button labels, always write them in sentence case, not title case. The first word should be capitalized and the rest lowercase (unless a proper noun):\n\n<div class=\"n-usage n-usage-do\">View log</div>\n<div class=\"n-usage n-usage-dont\">View Log</div>\n\nAvoid unnecessary words and articles in button labels, such as “the”, “an” or “a”:\n\n<div class=\"n-usage n-usage-do\">Request access</div>\n<div class=\"n-usage n-usage-dont\">Request an access</div>\n"
|
|
4559
|
+
},
|
|
4560
4560
|
{
|
|
4561
4561
|
"kind": "javascript-module",
|
|
4562
4562
|
"path": "src/fieldset/Fieldset.ts",
|
|
@@ -4688,82 +4688,6 @@
|
|
|
4688
4688
|
],
|
|
4689
4689
|
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use the fieldset component when you need to create a relationship between multiple form inputs.\n- It is especially important to use with a group of radio components.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t place interactive content (buttons, links etc) inside the label.\n- Don’t use with a checkbox component when there is **only one** checkbox. For example, when accepting terms and conditions.\n\n</div>\n\n-------\n\n## Content guidelines\n\nFieldset label should be clear, accurate and predictable. It should help the user to understand how the items in the fieldset are grouped together, or what kind of choice the user is making:\n\n<div class=\"n-usage n-usage-do\">Pick a color</div>\n<div class=\"n-usage n-usage-dont\">Choose</div>\n\nWhen writing fieldset labels, always write them in sentence case, not title case. The first word should be capitalized and the rest lowercase (unless a proper noun):\n\n<div class=\"n-usage n-usage-do\">Pick a color</div>\n<div class=\"n-usage n-usage-dont\">Pick A Color</div>\n\nAvoid ending in punctuation if it’s a single sentence, word, or a fragment:\n\n<div class=\"n-usage n-usage-do\">Pick a color</div>\n<div class=\"n-usage n-usage-dont\">Pick a color.</div>\n\nDo not use colons in fieldset label:\n\n<div class=\"n-usage n-usage-do\">Payment details</div>\n<div class=\"n-usage n-usage-dont\">Payment details:</div>\n\n-------\n\n## Additional considerations\n\n- A label (which becomes to `<legend>` inside the fieldset) is always required.\n- Hint text can be used to offer further information or explanation for an option.\n"
|
|
4690
4690
|
},
|
|
4691
|
-
{
|
|
4692
|
-
"kind": "javascript-module",
|
|
4693
|
-
"path": "src/header/Header.ts",
|
|
4694
|
-
"declarations": [
|
|
4695
|
-
{
|
|
4696
|
-
"kind": "class",
|
|
4697
|
-
"description": "The header is a block of designated space for labelling the currently\nviewed context as well as providing primary actions.",
|
|
4698
|
-
"name": "Header",
|
|
4699
|
-
"slots": [
|
|
4700
|
-
{
|
|
4701
|
-
"description": "The header content.",
|
|
4702
|
-
"name": ""
|
|
4703
|
-
},
|
|
4704
|
-
{
|
|
4705
|
-
"description": "Optional slot for buttons, toggles, etc.",
|
|
4706
|
-
"name": "action"
|
|
4707
|
-
}
|
|
4708
|
-
],
|
|
4709
|
-
"members": [
|
|
4710
|
-
{
|
|
4711
|
-
"kind": "field",
|
|
4712
|
-
"name": "actionSlot",
|
|
4713
|
-
"privacy": "private",
|
|
4714
|
-
"default": "new SlotController(this, \"action\")"
|
|
4715
|
-
},
|
|
4716
|
-
{
|
|
4717
|
-
"kind": "field",
|
|
4718
|
-
"name": "_warningLogged",
|
|
4719
|
-
"type": {
|
|
4720
|
-
"text": "boolean"
|
|
4721
|
-
},
|
|
4722
|
-
"privacy": "private",
|
|
4723
|
-
"static": true,
|
|
4724
|
-
"default": "false",
|
|
4725
|
-
"inheritedFrom": {
|
|
4726
|
-
"name": "DraftComponentMixin",
|
|
4727
|
-
"module": "src/common/mixins/DraftComponentMixin.ts"
|
|
4728
|
-
}
|
|
4729
|
-
}
|
|
4730
|
-
],
|
|
4731
|
-
"mixins": [
|
|
4732
|
-
{
|
|
4733
|
-
"name": "DraftComponentMixin",
|
|
4734
|
-
"module": "/src/common/mixins/DraftComponentMixin.js"
|
|
4735
|
-
}
|
|
4736
|
-
],
|
|
4737
|
-
"superclass": {
|
|
4738
|
-
"name": "LitElement",
|
|
4739
|
-
"package": "lit"
|
|
4740
|
-
},
|
|
4741
|
-
"status": "draft",
|
|
4742
|
-
"category": "structure",
|
|
4743
|
-
"tagName": "nord-header",
|
|
4744
|
-
"customElement": true
|
|
4745
|
-
}
|
|
4746
|
-
],
|
|
4747
|
-
"exports": [
|
|
4748
|
-
{
|
|
4749
|
-
"kind": "js",
|
|
4750
|
-
"name": "default",
|
|
4751
|
-
"declaration": {
|
|
4752
|
-
"name": "Header",
|
|
4753
|
-
"module": "src/header/Header.ts"
|
|
4754
|
-
}
|
|
4755
|
-
},
|
|
4756
|
-
{
|
|
4757
|
-
"kind": "custom-element-definition",
|
|
4758
|
-
"name": "nord-header",
|
|
4759
|
-
"declaration": {
|
|
4760
|
-
"name": "Header",
|
|
4761
|
-
"module": "src/header/Header.ts"
|
|
4762
|
-
}
|
|
4763
|
-
}
|
|
4764
|
-
],
|
|
4765
|
-
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use the header component to show a heading to describe the current view.\n- Use the header component to hold primary actions.\n- Use the header component at a visual high position at full width.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t overcrowd the header component with too many actions or information.\n- Don’t nest the header component too deeply and restrict its available space.\n\n</div>\n\n-------\n\n## Content guidelines\n\nThe header component should be a containing element placed high on the page to present high level controls and to describe the page itself. It shouldn’t be overcrowded with controls or information.\n\n<div class=\"n-usage n-usage-do\">[Menu] Dashboard [Account] [Log out]</div>\n<div class=\"n-usage n-usage-dont\">[Menu] Use the cards below to view various information [Export] [Save] [Edit Profile] [Log out] [Preferences]</div>\n"
|
|
4766
|
-
},
|
|
4767
4691
|
{
|
|
4768
4692
|
"kind": "javascript-module",
|
|
4769
4693
|
"path": "src/icon/Icon.ts",
|
|
@@ -5002,6 +4926,82 @@
|
|
|
5002
4926
|
],
|
|
5003
4927
|
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use to provide additional meaning in addition to a text label.\n- Use to help users who have difficulties with reading and attention.\n- Use in places where text label doesn’t fit (remember to add an accessible label for the icon).\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t use for decorative purposes alone.\n- Don’t use when a button’s action is already clear based on the text label.\n- Don’t use the same icon for differing purposes, as users will come to associate icons with specific types of actions.\n\n</div>\n\n---\n\n## Additional considerations\n\n- Icon components are hidden from assistive technologies by default.\n- Use `label` property to give an accessible label for the icon and to make it visible to assistive technologies.\n"
|
|
5004
4928
|
},
|
|
4929
|
+
{
|
|
4930
|
+
"kind": "javascript-module",
|
|
4931
|
+
"path": "src/header/Header.ts",
|
|
4932
|
+
"declarations": [
|
|
4933
|
+
{
|
|
4934
|
+
"kind": "class",
|
|
4935
|
+
"description": "The header is a block of designated space for labelling the currently\nviewed context as well as providing primary actions.",
|
|
4936
|
+
"name": "Header",
|
|
4937
|
+
"slots": [
|
|
4938
|
+
{
|
|
4939
|
+
"description": "The header content.",
|
|
4940
|
+
"name": ""
|
|
4941
|
+
},
|
|
4942
|
+
{
|
|
4943
|
+
"description": "Optional slot for buttons, toggles, etc.",
|
|
4944
|
+
"name": "action"
|
|
4945
|
+
}
|
|
4946
|
+
],
|
|
4947
|
+
"members": [
|
|
4948
|
+
{
|
|
4949
|
+
"kind": "field",
|
|
4950
|
+
"name": "actionSlot",
|
|
4951
|
+
"privacy": "private",
|
|
4952
|
+
"default": "new SlotController(this, \"action\")"
|
|
4953
|
+
},
|
|
4954
|
+
{
|
|
4955
|
+
"kind": "field",
|
|
4956
|
+
"name": "_warningLogged",
|
|
4957
|
+
"type": {
|
|
4958
|
+
"text": "boolean"
|
|
4959
|
+
},
|
|
4960
|
+
"privacy": "private",
|
|
4961
|
+
"static": true,
|
|
4962
|
+
"default": "false",
|
|
4963
|
+
"inheritedFrom": {
|
|
4964
|
+
"name": "DraftComponentMixin",
|
|
4965
|
+
"module": "src/common/mixins/DraftComponentMixin.ts"
|
|
4966
|
+
}
|
|
4967
|
+
}
|
|
4968
|
+
],
|
|
4969
|
+
"mixins": [
|
|
4970
|
+
{
|
|
4971
|
+
"name": "DraftComponentMixin",
|
|
4972
|
+
"module": "/src/common/mixins/DraftComponentMixin.js"
|
|
4973
|
+
}
|
|
4974
|
+
],
|
|
4975
|
+
"superclass": {
|
|
4976
|
+
"name": "LitElement",
|
|
4977
|
+
"package": "lit"
|
|
4978
|
+
},
|
|
4979
|
+
"status": "draft",
|
|
4980
|
+
"category": "structure",
|
|
4981
|
+
"tagName": "nord-header",
|
|
4982
|
+
"customElement": true
|
|
4983
|
+
}
|
|
4984
|
+
],
|
|
4985
|
+
"exports": [
|
|
4986
|
+
{
|
|
4987
|
+
"kind": "js",
|
|
4988
|
+
"name": "default",
|
|
4989
|
+
"declaration": {
|
|
4990
|
+
"name": "Header",
|
|
4991
|
+
"module": "src/header/Header.ts"
|
|
4992
|
+
}
|
|
4993
|
+
},
|
|
4994
|
+
{
|
|
4995
|
+
"kind": "custom-element-definition",
|
|
4996
|
+
"name": "nord-header",
|
|
4997
|
+
"declaration": {
|
|
4998
|
+
"name": "Header",
|
|
4999
|
+
"module": "src/header/Header.ts"
|
|
5000
|
+
}
|
|
5001
|
+
}
|
|
5002
|
+
],
|
|
5003
|
+
"readme": "## Usage\n\nThis section includes guidelines for designers and developers about the usage of this component in different contexts.\n\n<div class=\"n-usage n-usage-do\">\n\n### Do\n\n- Use the header component to show a heading to describe the current view.\n- Use the header component to hold primary actions.\n- Use the header component at a visual high position at full width.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t overcrowd the header component with too many actions or information.\n- Don’t nest the header component too deeply and restrict its available space.\n\n</div>\n\n-------\n\n## Content guidelines\n\nThe header component should be a containing element placed high on the page to present high level controls and to describe the page itself. It shouldn’t be overcrowded with controls or information.\n\n<div class=\"n-usage n-usage-do\">[Menu] Dashboard [Account] [Log out]</div>\n<div class=\"n-usage n-usage-dont\">[Menu] Use the cards below to view various information [Export] [Save] [Edit Profile] [Log out] [Preferences]</div>\n"
|
|
5004
|
+
},
|
|
5005
5005
|
{
|
|
5006
5006
|
"kind": "javascript-module",
|
|
5007
5007
|
"path": "src/input/Input.ts",
|
|
@@ -8780,206 +8780,62 @@
|
|
|
8780
8780
|
},
|
|
8781
8781
|
{
|
|
8782
8782
|
"kind": "javascript-module",
|
|
8783
|
-
"path": "src/common/
|
|
8784
|
-
"declarations": [
|
|
8785
|
-
{
|
|
8786
|
-
"kind": "variable",
|
|
8787
|
-
"name": "cond"
|
|
8788
|
-
}
|
|
8789
|
-
],
|
|
8790
|
-
"exports": [
|
|
8791
|
-
{
|
|
8792
|
-
"kind": "js",
|
|
8793
|
-
"name": "cond",
|
|
8794
|
-
"declaration": {
|
|
8795
|
-
"name": "cond",
|
|
8796
|
-
"module": "src/common/directives/cond.ts"
|
|
8797
|
-
}
|
|
8798
|
-
}
|
|
8799
|
-
]
|
|
8800
|
-
},
|
|
8801
|
-
{
|
|
8802
|
-
"kind": "javascript-module",
|
|
8803
|
-
"path": "src/common/directives/wrapIf.ts",
|
|
8783
|
+
"path": "src/common/controllers/DirectionController.ts",
|
|
8804
8784
|
"declarations": [
|
|
8805
8785
|
{
|
|
8806
|
-
"kind": "
|
|
8807
|
-
"
|
|
8808
|
-
"
|
|
8809
|
-
|
|
8810
|
-
"text": "TInner"
|
|
8811
|
-
}
|
|
8812
|
-
},
|
|
8813
|
-
"parameters": [
|
|
8814
|
-
{
|
|
8815
|
-
"name": "condition",
|
|
8816
|
-
"type": {
|
|
8817
|
-
"text": "false"
|
|
8818
|
-
}
|
|
8819
|
-
},
|
|
8786
|
+
"kind": "class",
|
|
8787
|
+
"description": "",
|
|
8788
|
+
"name": "DirectionController",
|
|
8789
|
+
"members": [
|
|
8820
8790
|
{
|
|
8821
|
-
"
|
|
8822
|
-
"
|
|
8823
|
-
|
|
8824
|
-
|
|
8791
|
+
"kind": "field",
|
|
8792
|
+
"name": "hosts",
|
|
8793
|
+
"privacy": "private",
|
|
8794
|
+
"static": true,
|
|
8795
|
+
"default": "new Set<ReactiveControllerHost>()"
|
|
8825
8796
|
},
|
|
8826
8797
|
{
|
|
8827
|
-
"
|
|
8828
|
-
"
|
|
8829
|
-
"text": "(inner: TInner) => TWrapper"
|
|
8830
|
-
}
|
|
8831
|
-
}
|
|
8832
|
-
]
|
|
8833
|
-
},
|
|
8834
|
-
{
|
|
8835
|
-
"kind": "function",
|
|
8836
|
-
"name": "wrapIf",
|
|
8837
|
-
"return": {
|
|
8838
|
-
"type": {
|
|
8839
|
-
"text": "TWrapper"
|
|
8840
|
-
}
|
|
8841
|
-
},
|
|
8842
|
-
"parameters": [
|
|
8843
|
-
{
|
|
8844
|
-
"name": "condition",
|
|
8798
|
+
"kind": "field",
|
|
8799
|
+
"name": "observer",
|
|
8845
8800
|
"type": {
|
|
8846
|
-
"text": "
|
|
8847
|
-
}
|
|
8801
|
+
"text": "MutationObserver | undefined"
|
|
8802
|
+
},
|
|
8803
|
+
"privacy": "private",
|
|
8804
|
+
"static": true
|
|
8848
8805
|
},
|
|
8849
8806
|
{
|
|
8850
|
-
"
|
|
8807
|
+
"kind": "field",
|
|
8808
|
+
"name": "dir",
|
|
8851
8809
|
"type": {
|
|
8852
|
-
"text": "
|
|
8810
|
+
"text": "WritingDirection"
|
|
8853
8811
|
}
|
|
8854
8812
|
},
|
|
8855
8813
|
{
|
|
8856
|
-
"
|
|
8857
|
-
"
|
|
8858
|
-
"text": "(inner: TInner) => TWrapper"
|
|
8859
|
-
}
|
|
8860
|
-
}
|
|
8861
|
-
]
|
|
8862
|
-
},
|
|
8863
|
-
{
|
|
8864
|
-
"kind": "function",
|
|
8865
|
-
"name": "wrapIf",
|
|
8866
|
-
"return": {
|
|
8867
|
-
"type": {
|
|
8868
|
-
"text": "TInner | TWrapper"
|
|
8869
|
-
}
|
|
8870
|
-
},
|
|
8871
|
-
"parameters": [
|
|
8872
|
-
{
|
|
8873
|
-
"name": "condition",
|
|
8874
|
-
"type": {
|
|
8875
|
-
"text": "unknown"
|
|
8876
|
-
}
|
|
8814
|
+
"kind": "field",
|
|
8815
|
+
"name": "isLTR"
|
|
8877
8816
|
},
|
|
8878
8817
|
{
|
|
8879
|
-
"
|
|
8880
|
-
"
|
|
8881
|
-
"text": "() => TInner"
|
|
8882
|
-
}
|
|
8818
|
+
"kind": "field",
|
|
8819
|
+
"name": "isRTL"
|
|
8883
8820
|
},
|
|
8884
8821
|
{
|
|
8885
|
-
"
|
|
8886
|
-
"
|
|
8887
|
-
"text": "(inner: TInner) => TWrapper"
|
|
8888
|
-
}
|
|
8889
|
-
}
|
|
8890
|
-
]
|
|
8891
|
-
},
|
|
8892
|
-
{
|
|
8893
|
-
"kind": "function",
|
|
8894
|
-
"name": "wrapIf",
|
|
8895
|
-
"parameters": [
|
|
8896
|
-
{
|
|
8897
|
-
"name": "condition",
|
|
8898
|
-
"type": {
|
|
8899
|
-
"text": "any"
|
|
8900
|
-
}
|
|
8822
|
+
"kind": "method",
|
|
8823
|
+
"name": "hostConnected"
|
|
8901
8824
|
},
|
|
8902
8825
|
{
|
|
8903
|
-
"
|
|
8904
|
-
"
|
|
8905
|
-
"text": "() => TInner"
|
|
8906
|
-
}
|
|
8826
|
+
"kind": "method",
|
|
8827
|
+
"name": "hostDisconnected"
|
|
8907
8828
|
},
|
|
8908
8829
|
{
|
|
8909
|
-
"
|
|
8910
|
-
"
|
|
8911
|
-
"text": "(innards: TInner) => TWrapper"
|
|
8912
|
-
}
|
|
8913
|
-
}
|
|
8914
|
-
],
|
|
8915
|
-
"return": {
|
|
8916
|
-
"type": {
|
|
8917
|
-
"text": ""
|
|
8918
|
-
}
|
|
8919
|
-
}
|
|
8920
|
-
}
|
|
8921
|
-
],
|
|
8922
|
-
"exports": [
|
|
8923
|
-
{
|
|
8924
|
-
"kind": "js",
|
|
8925
|
-
"name": "wrapIf",
|
|
8926
|
-
"declaration": {
|
|
8927
|
-
"name": "wrapIf",
|
|
8928
|
-
"module": "src/common/directives/wrapIf.ts"
|
|
8929
|
-
}
|
|
8930
|
-
},
|
|
8931
|
-
{
|
|
8932
|
-
"kind": "js",
|
|
8933
|
-
"name": "wrapIf",
|
|
8934
|
-
"declaration": {
|
|
8935
|
-
"name": "wrapIf",
|
|
8936
|
-
"module": "src/common/directives/wrapIf.ts"
|
|
8937
|
-
}
|
|
8938
|
-
},
|
|
8939
|
-
{
|
|
8940
|
-
"kind": "js",
|
|
8941
|
-
"name": "wrapIf",
|
|
8942
|
-
"declaration": {
|
|
8943
|
-
"name": "wrapIf",
|
|
8944
|
-
"module": "src/common/directives/wrapIf.ts"
|
|
8945
|
-
}
|
|
8946
|
-
},
|
|
8947
|
-
{
|
|
8948
|
-
"kind": "js",
|
|
8949
|
-
"name": "wrapIf",
|
|
8950
|
-
"declaration": {
|
|
8951
|
-
"name": "wrapIf",
|
|
8952
|
-
"module": "src/common/directives/wrapIf.ts"
|
|
8953
|
-
}
|
|
8954
|
-
}
|
|
8955
|
-
]
|
|
8956
|
-
},
|
|
8957
|
-
{
|
|
8958
|
-
"kind": "javascript-module",
|
|
8959
|
-
"path": "src/common/mixins/DraftComponentMixin.ts",
|
|
8960
|
-
"declarations": [
|
|
8961
|
-
{
|
|
8962
|
-
"kind": "mixin",
|
|
8963
|
-
"description": "",
|
|
8964
|
-
"name": "DraftComponentMixin",
|
|
8965
|
-
"members": [
|
|
8966
|
-
{
|
|
8967
|
-
"kind": "field",
|
|
8968
|
-
"name": "_warningLogged",
|
|
8969
|
-
"type": {
|
|
8970
|
-
"text": "boolean"
|
|
8971
|
-
},
|
|
8830
|
+
"kind": "method",
|
|
8831
|
+
"name": "observe",
|
|
8972
8832
|
"privacy": "private",
|
|
8973
|
-
"static": true
|
|
8974
|
-
|
|
8975
|
-
}
|
|
8976
|
-
],
|
|
8977
|
-
"parameters": [
|
|
8833
|
+
"static": true
|
|
8834
|
+
},
|
|
8978
8835
|
{
|
|
8979
|
-
"
|
|
8980
|
-
"
|
|
8981
|
-
|
|
8982
|
-
}
|
|
8836
|
+
"kind": "field",
|
|
8837
|
+
"name": "host",
|
|
8838
|
+
"default": "host"
|
|
8983
8839
|
}
|
|
8984
8840
|
]
|
|
8985
8841
|
}
|
|
@@ -8987,111 +8843,210 @@
|
|
|
8987
8843
|
"exports": [
|
|
8988
8844
|
{
|
|
8989
8845
|
"kind": "js",
|
|
8990
|
-
"name": "
|
|
8846
|
+
"name": "DirectionController",
|
|
8991
8847
|
"declaration": {
|
|
8992
|
-
"name": "
|
|
8993
|
-
"module": "src/common/
|
|
8848
|
+
"name": "DirectionController",
|
|
8849
|
+
"module": "src/common/controllers/DirectionController.ts"
|
|
8994
8850
|
}
|
|
8995
8851
|
}
|
|
8996
8852
|
]
|
|
8997
8853
|
},
|
|
8998
8854
|
{
|
|
8999
8855
|
"kind": "javascript-module",
|
|
9000
|
-
"path": "src/common/
|
|
8856
|
+
"path": "src/common/controllers/EventController.ts",
|
|
9001
8857
|
"declarations": [
|
|
9002
8858
|
{
|
|
9003
8859
|
"kind": "class",
|
|
9004
8860
|
"description": "",
|
|
9005
|
-
"name": "
|
|
8861
|
+
"name": "EventController",
|
|
9006
8862
|
"members": [
|
|
9007
8863
|
{
|
|
9008
8864
|
"kind": "field",
|
|
9009
|
-
"name": "
|
|
8865
|
+
"name": "listeners",
|
|
9010
8866
|
"type": {
|
|
9011
|
-
"text": "
|
|
8867
|
+
"text": "Array<() => void>"
|
|
9012
8868
|
},
|
|
9013
|
-
"privacy": "
|
|
8869
|
+
"privacy": "private",
|
|
8870
|
+
"default": "[]"
|
|
9014
8871
|
},
|
|
9015
8872
|
{
|
|
9016
8873
|
"kind": "method",
|
|
9017
|
-
"name": "
|
|
8874
|
+
"name": "hostDisconnected"
|
|
8875
|
+
},
|
|
8876
|
+
{
|
|
8877
|
+
"kind": "method",
|
|
8878
|
+
"name": "listen",
|
|
9018
8879
|
"return": {
|
|
9019
8880
|
"type": {
|
|
9020
8881
|
"text": "void"
|
|
9021
8882
|
}
|
|
9022
8883
|
},
|
|
9023
8884
|
"parameters": [
|
|
8885
|
+
{
|
|
8886
|
+
"name": "window",
|
|
8887
|
+
"type": {
|
|
8888
|
+
"text": "Window"
|
|
8889
|
+
}
|
|
8890
|
+
},
|
|
8891
|
+
{
|
|
8892
|
+
"name": "type",
|
|
8893
|
+
"type": {
|
|
8894
|
+
"text": "K"
|
|
8895
|
+
}
|
|
8896
|
+
},
|
|
8897
|
+
{
|
|
8898
|
+
"name": "listener",
|
|
8899
|
+
"type": {
|
|
8900
|
+
"text": "(this: Window, ev: WindowEventMap[K]) => any"
|
|
8901
|
+
}
|
|
8902
|
+
},
|
|
9024
8903
|
{
|
|
9025
8904
|
"name": "options",
|
|
9026
8905
|
"optional": true,
|
|
9027
8906
|
"type": {
|
|
9028
|
-
"text": "
|
|
8907
|
+
"text": "boolean | AddEventListenerOptions"
|
|
9029
8908
|
}
|
|
9030
8909
|
}
|
|
9031
8910
|
]
|
|
9032
8911
|
},
|
|
9033
8912
|
{
|
|
9034
8913
|
"kind": "method",
|
|
9035
|
-
"name": "
|
|
8914
|
+
"name": "listen",
|
|
9036
8915
|
"return": {
|
|
9037
8916
|
"type": {
|
|
9038
8917
|
"text": "void"
|
|
9039
8918
|
}
|
|
9040
|
-
}
|
|
8919
|
+
},
|
|
8920
|
+
"parameters": [
|
|
8921
|
+
{
|
|
8922
|
+
"name": "document",
|
|
8923
|
+
"type": {
|
|
8924
|
+
"text": "Document"
|
|
8925
|
+
}
|
|
8926
|
+
},
|
|
8927
|
+
{
|
|
8928
|
+
"name": "type",
|
|
8929
|
+
"type": {
|
|
8930
|
+
"text": "K"
|
|
8931
|
+
}
|
|
8932
|
+
},
|
|
8933
|
+
{
|
|
8934
|
+
"name": "listener",
|
|
8935
|
+
"type": {
|
|
8936
|
+
"text": "(this: Document, ev: DocumentEventMap[K]) => any"
|
|
8937
|
+
}
|
|
8938
|
+
},
|
|
8939
|
+
{
|
|
8940
|
+
"name": "options",
|
|
8941
|
+
"optional": true,
|
|
8942
|
+
"type": {
|
|
8943
|
+
"text": "boolean | AddEventListenerOptions"
|
|
8944
|
+
}
|
|
8945
|
+
}
|
|
8946
|
+
]
|
|
9041
8947
|
},
|
|
9042
8948
|
{
|
|
9043
8949
|
"kind": "method",
|
|
9044
|
-
"name": "
|
|
8950
|
+
"name": "listen",
|
|
9045
8951
|
"return": {
|
|
9046
8952
|
"type": {
|
|
9047
8953
|
"text": "void"
|
|
9048
8954
|
}
|
|
9049
|
-
}
|
|
9050
|
-
}
|
|
9051
|
-
]
|
|
9052
|
-
},
|
|
9053
|
-
{
|
|
9054
|
-
"kind": "mixin",
|
|
9055
|
-
"description": "",
|
|
9056
|
-
"name": "FocusableMixin",
|
|
9057
|
-
"members": [
|
|
9058
|
-
{
|
|
9059
|
-
"kind": "field",
|
|
9060
|
-
"name": "focusableRef",
|
|
9061
|
-
"privacy": "protected"
|
|
9062
|
-
},
|
|
9063
|
-
{
|
|
9064
|
-
"kind": "method",
|
|
9065
|
-
"name": "focus",
|
|
8955
|
+
},
|
|
9066
8956
|
"parameters": [
|
|
8957
|
+
{
|
|
8958
|
+
"name": "element",
|
|
8959
|
+
"type": {
|
|
8960
|
+
"text": "HTMLElement"
|
|
8961
|
+
}
|
|
8962
|
+
},
|
|
8963
|
+
{
|
|
8964
|
+
"name": "type",
|
|
8965
|
+
"type": {
|
|
8966
|
+
"text": "K"
|
|
8967
|
+
}
|
|
8968
|
+
},
|
|
8969
|
+
{
|
|
8970
|
+
"name": "listener",
|
|
8971
|
+
"type": {
|
|
8972
|
+
"text": "(this: HTMLElement, ev: HTMLElementEventMap[K]) => any"
|
|
8973
|
+
}
|
|
8974
|
+
},
|
|
9067
8975
|
{
|
|
9068
8976
|
"name": "options",
|
|
9069
8977
|
"optional": true,
|
|
9070
8978
|
"type": {
|
|
9071
|
-
"text": "
|
|
9072
|
-
}
|
|
9073
|
-
"description": "An object which controls aspects of the focusing process."
|
|
8979
|
+
"text": "boolean | AddEventListenerOptions"
|
|
8980
|
+
}
|
|
9074
8981
|
}
|
|
9075
|
-
]
|
|
9076
|
-
"description": "Programmatically move focus to the component."
|
|
8982
|
+
]
|
|
9077
8983
|
},
|
|
9078
8984
|
{
|
|
9079
8985
|
"kind": "method",
|
|
9080
|
-
"name": "
|
|
9081
|
-
"
|
|
8986
|
+
"name": "listen",
|
|
8987
|
+
"return": {
|
|
8988
|
+
"type": {
|
|
8989
|
+
"text": "void"
|
|
8990
|
+
}
|
|
8991
|
+
},
|
|
8992
|
+
"parameters": [
|
|
8993
|
+
{
|
|
8994
|
+
"name": "element",
|
|
8995
|
+
"type": {
|
|
8996
|
+
"text": "ShadowRoot"
|
|
8997
|
+
}
|
|
8998
|
+
},
|
|
8999
|
+
{
|
|
9000
|
+
"name": "type",
|
|
9001
|
+
"type": {
|
|
9002
|
+
"text": "K"
|
|
9003
|
+
}
|
|
9004
|
+
},
|
|
9005
|
+
{
|
|
9006
|
+
"name": "listener",
|
|
9007
|
+
"type": {
|
|
9008
|
+
"text": "(this: ShadowRoot, ev: ShadowRootEventMap[K]) => any"
|
|
9009
|
+
}
|
|
9010
|
+
},
|
|
9011
|
+
{
|
|
9012
|
+
"name": "options",
|
|
9013
|
+
"optional": true,
|
|
9014
|
+
"type": {
|
|
9015
|
+
"text": "boolean | AddEventListenerOptions"
|
|
9016
|
+
}
|
|
9017
|
+
}
|
|
9018
|
+
]
|
|
9082
9019
|
},
|
|
9083
9020
|
{
|
|
9084
9021
|
"kind": "method",
|
|
9085
|
-
"name": "
|
|
9086
|
-
"
|
|
9087
|
-
|
|
9088
|
-
|
|
9089
|
-
|
|
9090
|
-
|
|
9091
|
-
|
|
9092
|
-
|
|
9093
|
-
|
|
9094
|
-
|
|
9022
|
+
"name": "listen",
|
|
9023
|
+
"parameters": [
|
|
9024
|
+
{
|
|
9025
|
+
"name": "element",
|
|
9026
|
+
"type": {
|
|
9027
|
+
"text": "Window | Document | HTMLElement | ShadowRoot"
|
|
9028
|
+
}
|
|
9029
|
+
},
|
|
9030
|
+
{
|
|
9031
|
+
"name": "type",
|
|
9032
|
+
"type": {
|
|
9033
|
+
"text": "string"
|
|
9034
|
+
}
|
|
9035
|
+
},
|
|
9036
|
+
{
|
|
9037
|
+
"name": "listener",
|
|
9038
|
+
"type": {
|
|
9039
|
+
"text": "(ev: any) => any"
|
|
9040
|
+
}
|
|
9041
|
+
},
|
|
9042
|
+
{
|
|
9043
|
+
"name": "options",
|
|
9044
|
+
"optional": true,
|
|
9045
|
+
"type": {
|
|
9046
|
+
"text": "boolean | AddEventListenerOptions"
|
|
9047
|
+
}
|
|
9048
|
+
}
|
|
9049
|
+
]
|
|
9095
9050
|
}
|
|
9096
9051
|
]
|
|
9097
9052
|
}
|
|
@@ -9099,508 +9054,440 @@
|
|
|
9099
9054
|
"exports": [
|
|
9100
9055
|
{
|
|
9101
9056
|
"kind": "js",
|
|
9102
|
-
"name": "
|
|
9103
|
-
"declaration": {
|
|
9104
|
-
"name": "FocusableMixinInterface",
|
|
9105
|
-
"module": "src/common/mixins/FocusableMixin.ts"
|
|
9106
|
-
}
|
|
9107
|
-
},
|
|
9108
|
-
{
|
|
9109
|
-
"kind": "js",
|
|
9110
|
-
"name": "FocusableMixin",
|
|
9057
|
+
"name": "EventController",
|
|
9111
9058
|
"declaration": {
|
|
9112
|
-
"name": "
|
|
9113
|
-
"module": "src/common/
|
|
9059
|
+
"name": "EventController",
|
|
9060
|
+
"module": "src/common/controllers/EventController.ts"
|
|
9114
9061
|
}
|
|
9115
9062
|
}
|
|
9116
9063
|
]
|
|
9117
9064
|
},
|
|
9118
9065
|
{
|
|
9119
9066
|
"kind": "javascript-module",
|
|
9120
|
-
"path": "src/common/
|
|
9067
|
+
"path": "src/common/controllers/FormDataController.ts",
|
|
9121
9068
|
"declarations": [
|
|
9122
9069
|
{
|
|
9123
9070
|
"kind": "class",
|
|
9124
9071
|
"description": "",
|
|
9125
|
-
"name": "
|
|
9072
|
+
"name": "FormDataController",
|
|
9126
9073
|
"members": [
|
|
9127
9074
|
{
|
|
9128
9075
|
"kind": "field",
|
|
9129
|
-
"name": "
|
|
9130
|
-
"type": {
|
|
9131
|
-
"text": "string"
|
|
9132
|
-
}
|
|
9133
|
-
},
|
|
9134
|
-
{
|
|
9135
|
-
"kind": "field",
|
|
9136
|
-
"name": "required",
|
|
9137
|
-
"type": {
|
|
9138
|
-
"text": "boolean"
|
|
9139
|
-
}
|
|
9140
|
-
},
|
|
9141
|
-
{
|
|
9142
|
-
"kind": "field",
|
|
9143
|
-
"name": "hint",
|
|
9144
|
-
"type": {
|
|
9145
|
-
"text": "string | undefined"
|
|
9146
|
-
}
|
|
9147
|
-
},
|
|
9148
|
-
{
|
|
9149
|
-
"kind": "field",
|
|
9150
|
-
"name": "hideLabel",
|
|
9076
|
+
"name": "events",
|
|
9151
9077
|
"type": {
|
|
9152
|
-
"text": "
|
|
9153
|
-
}
|
|
9078
|
+
"text": "EventController"
|
|
9079
|
+
},
|
|
9080
|
+
"privacy": "private",
|
|
9081
|
+
"default": "new EventController(host)"
|
|
9154
9082
|
},
|
|
9155
9083
|
{
|
|
9156
|
-
"kind": "
|
|
9157
|
-
"name": "
|
|
9158
|
-
"type": {
|
|
9159
|
-
"text": "string | undefined"
|
|
9160
|
-
}
|
|
9084
|
+
"kind": "method",
|
|
9085
|
+
"name": "hostConnected"
|
|
9161
9086
|
},
|
|
9162
9087
|
{
|
|
9163
9088
|
"kind": "field",
|
|
9164
|
-
"name": "
|
|
9165
|
-
"
|
|
9166
|
-
"text": "string | undefined"
|
|
9167
|
-
}
|
|
9089
|
+
"name": "handleFormData",
|
|
9090
|
+
"privacy": "private"
|
|
9168
9091
|
},
|
|
9169
9092
|
{
|
|
9170
9093
|
"kind": "field",
|
|
9171
|
-
"name": "
|
|
9172
|
-
"
|
|
9173
|
-
"text": "boolean"
|
|
9174
|
-
}
|
|
9094
|
+
"name": "host",
|
|
9095
|
+
"default": "host"
|
|
9175
9096
|
},
|
|
9176
9097
|
{
|
|
9177
9098
|
"kind": "field",
|
|
9178
|
-
"name": "
|
|
9179
|
-
"
|
|
9180
|
-
|
|
9181
|
-
|
|
9182
|
-
|
|
9183
|
-
|
|
9099
|
+
"name": "options",
|
|
9100
|
+
"default": "options"
|
|
9101
|
+
}
|
|
9102
|
+
]
|
|
9103
|
+
}
|
|
9104
|
+
],
|
|
9105
|
+
"exports": [
|
|
9106
|
+
{
|
|
9107
|
+
"kind": "js",
|
|
9108
|
+
"name": "FormDataController",
|
|
9109
|
+
"declaration": {
|
|
9110
|
+
"name": "FormDataController",
|
|
9111
|
+
"module": "src/common/controllers/FormDataController.ts"
|
|
9112
|
+
}
|
|
9113
|
+
}
|
|
9114
|
+
]
|
|
9115
|
+
},
|
|
9116
|
+
{
|
|
9117
|
+
"kind": "javascript-module",
|
|
9118
|
+
"path": "src/common/controllers/LightDismissController.ts",
|
|
9119
|
+
"declarations": [
|
|
9120
|
+
{
|
|
9121
|
+
"kind": "class",
|
|
9122
|
+
"description": "",
|
|
9123
|
+
"name": "LightDismissController",
|
|
9124
|
+
"members": [
|
|
9184
9125
|
{
|
|
9185
9126
|
"kind": "field",
|
|
9186
|
-
"name": "
|
|
9127
|
+
"name": "shortcut",
|
|
9187
9128
|
"type": {
|
|
9188
|
-
"text": "
|
|
9129
|
+
"text": "ShortcutController"
|
|
9189
9130
|
},
|
|
9190
|
-
"privacy": "
|
|
9131
|
+
"privacy": "private",
|
|
9132
|
+
"default": "new ShortcutController(this.host, { Escape: this.handleEsc })"
|
|
9191
9133
|
},
|
|
9192
9134
|
{
|
|
9193
9135
|
"kind": "field",
|
|
9194
|
-
"name": "
|
|
9136
|
+
"name": "events",
|
|
9195
9137
|
"type": {
|
|
9196
|
-
"text": "
|
|
9138
|
+
"text": "EventController"
|
|
9197
9139
|
},
|
|
9198
|
-
"privacy": "
|
|
9140
|
+
"privacy": "private",
|
|
9141
|
+
"default": "new EventController(host)"
|
|
9199
9142
|
},
|
|
9200
9143
|
{
|
|
9201
|
-
"kind": "
|
|
9202
|
-
"name": "
|
|
9203
|
-
"type": {
|
|
9204
|
-
"text": "SlotController"
|
|
9205
|
-
},
|
|
9206
|
-
"privacy": "protected"
|
|
9144
|
+
"kind": "method",
|
|
9145
|
+
"name": "hostConnected"
|
|
9207
9146
|
},
|
|
9208
9147
|
{
|
|
9209
9148
|
"kind": "field",
|
|
9210
|
-
"name": "
|
|
9211
|
-
"
|
|
9212
|
-
"text": "SlotController"
|
|
9213
|
-
},
|
|
9214
|
-
"privacy": "protected"
|
|
9149
|
+
"name": "handleEsc",
|
|
9150
|
+
"privacy": "private"
|
|
9215
9151
|
},
|
|
9216
9152
|
{
|
|
9217
9153
|
"kind": "field",
|
|
9218
|
-
"name": "
|
|
9219
|
-
"
|
|
9220
|
-
"text": "SlotController"
|
|
9221
|
-
},
|
|
9222
|
-
"privacy": "protected"
|
|
9154
|
+
"name": "handleClickOut",
|
|
9155
|
+
"privacy": "private"
|
|
9223
9156
|
},
|
|
9224
9157
|
{
|
|
9225
9158
|
"kind": "field",
|
|
9226
|
-
"name": "
|
|
9227
|
-
"
|
|
9228
|
-
"text": "FormDataController"
|
|
9229
|
-
},
|
|
9230
|
-
"privacy": "protected"
|
|
9159
|
+
"name": "host",
|
|
9160
|
+
"default": "host"
|
|
9231
9161
|
},
|
|
9232
9162
|
{
|
|
9233
9163
|
"kind": "field",
|
|
9234
|
-
"name": "
|
|
9235
|
-
"
|
|
9236
|
-
|
|
9237
|
-
|
|
9238
|
-
|
|
9239
|
-
|
|
9240
|
-
|
|
9241
|
-
|
|
9242
|
-
|
|
9243
|
-
|
|
9244
|
-
|
|
9245
|
-
|
|
9246
|
-
|
|
9247
|
-
|
|
9164
|
+
"name": "options",
|
|
9165
|
+
"default": "options"
|
|
9166
|
+
}
|
|
9167
|
+
]
|
|
9168
|
+
}
|
|
9169
|
+
],
|
|
9170
|
+
"exports": [
|
|
9171
|
+
{
|
|
9172
|
+
"kind": "js",
|
|
9173
|
+
"name": "LightDismissController",
|
|
9174
|
+
"declaration": {
|
|
9175
|
+
"name": "LightDismissController",
|
|
9176
|
+
"module": "src/common/controllers/LightDismissController.ts"
|
|
9177
|
+
}
|
|
9178
|
+
}
|
|
9179
|
+
]
|
|
9180
|
+
},
|
|
9181
|
+
{
|
|
9182
|
+
"kind": "javascript-module",
|
|
9183
|
+
"path": "src/common/controllers/LightDomController.ts",
|
|
9184
|
+
"declarations": [
|
|
9185
|
+
{
|
|
9186
|
+
"kind": "class",
|
|
9187
|
+
"description": "",
|
|
9188
|
+
"name": "LightDomController",
|
|
9189
|
+
"members": [
|
|
9248
9190
|
{
|
|
9249
9191
|
"kind": "field",
|
|
9250
|
-
"name": "
|
|
9192
|
+
"name": "container",
|
|
9251
9193
|
"type": {
|
|
9252
|
-
"text": "
|
|
9253
|
-
},
|
|
9254
|
-
"privacy": "protected"
|
|
9255
|
-
},
|
|
9256
|
-
{
|
|
9257
|
-
"kind": "method",
|
|
9258
|
-
"name": "handleChange",
|
|
9259
|
-
"privacy": "protected",
|
|
9260
|
-
"return": {
|
|
9261
|
-
"type": {
|
|
9262
|
-
"text": "void"
|
|
9263
|
-
}
|
|
9264
|
-
},
|
|
9265
|
-
"parameters": [
|
|
9266
|
-
{
|
|
9267
|
-
"name": "e",
|
|
9268
|
-
"type": {
|
|
9269
|
-
"text": "Event"
|
|
9270
|
-
}
|
|
9271
|
-
}
|
|
9272
|
-
]
|
|
9273
|
-
},
|
|
9274
|
-
{
|
|
9275
|
-
"kind": "method",
|
|
9276
|
-
"name": "handleInput",
|
|
9277
|
-
"privacy": "protected",
|
|
9278
|
-
"return": {
|
|
9279
|
-
"type": {
|
|
9280
|
-
"text": "void"
|
|
9281
|
-
}
|
|
9194
|
+
"text": "HTMLElement"
|
|
9282
9195
|
},
|
|
9283
|
-
"
|
|
9284
|
-
{
|
|
9285
|
-
"name": "e",
|
|
9286
|
-
"type": {
|
|
9287
|
-
"text": "Event"
|
|
9288
|
-
}
|
|
9289
|
-
}
|
|
9290
|
-
]
|
|
9196
|
+
"privacy": "private"
|
|
9291
9197
|
},
|
|
9292
9198
|
{
|
|
9293
9199
|
"kind": "method",
|
|
9294
|
-
"name": "
|
|
9295
|
-
"privacy": "protected",
|
|
9296
|
-
"return": {
|
|
9297
|
-
"type": {
|
|
9298
|
-
"text": "TemplateResult"
|
|
9299
|
-
}
|
|
9300
|
-
}
|
|
9200
|
+
"name": "hostUpdated"
|
|
9301
9201
|
},
|
|
9302
9202
|
{
|
|
9303
9203
|
"kind": "method",
|
|
9304
|
-
"name": "
|
|
9305
|
-
"privacy": "protected",
|
|
9306
|
-
"return": {
|
|
9307
|
-
"type": {
|
|
9308
|
-
"text": "TemplateResult"
|
|
9309
|
-
}
|
|
9310
|
-
}
|
|
9204
|
+
"name": "hostDisconnected"
|
|
9311
9205
|
},
|
|
9312
9206
|
{
|
|
9313
|
-
"kind": "
|
|
9314
|
-
"name": "
|
|
9315
|
-
"
|
|
9316
|
-
"return": {
|
|
9317
|
-
"type": {
|
|
9318
|
-
"text": "string | undefined"
|
|
9319
|
-
}
|
|
9320
|
-
}
|
|
9207
|
+
"kind": "field",
|
|
9208
|
+
"name": "host",
|
|
9209
|
+
"default": "host"
|
|
9321
9210
|
},
|
|
9322
9211
|
{
|
|
9323
|
-
"kind": "
|
|
9324
|
-
"name": "
|
|
9325
|
-
"
|
|
9326
|
-
"return": {
|
|
9327
|
-
"type": {
|
|
9328
|
-
"text": "\"true\" | undefined"
|
|
9329
|
-
}
|
|
9330
|
-
}
|
|
9212
|
+
"kind": "field",
|
|
9213
|
+
"name": "options",
|
|
9214
|
+
"default": "options"
|
|
9331
9215
|
}
|
|
9332
9216
|
]
|
|
9333
|
-
}
|
|
9217
|
+
}
|
|
9218
|
+
],
|
|
9219
|
+
"exports": [
|
|
9334
9220
|
{
|
|
9335
|
-
"kind": "
|
|
9336
|
-
"
|
|
9337
|
-
"
|
|
9221
|
+
"kind": "js",
|
|
9222
|
+
"name": "LightDomController",
|
|
9223
|
+
"declaration": {
|
|
9224
|
+
"name": "LightDomController",
|
|
9225
|
+
"module": "src/common/controllers/LightDomController.ts"
|
|
9226
|
+
}
|
|
9227
|
+
}
|
|
9228
|
+
]
|
|
9229
|
+
},
|
|
9230
|
+
{
|
|
9231
|
+
"kind": "javascript-module",
|
|
9232
|
+
"path": "src/common/controllers/LightSlotController.ts",
|
|
9233
|
+
"declarations": [
|
|
9234
|
+
{
|
|
9235
|
+
"kind": "class",
|
|
9236
|
+
"description": "Handles cases where a component needs to render to light DOM,\nand potentially sync component properties to user-supplied content.",
|
|
9237
|
+
"name": "LightSlotController",
|
|
9338
9238
|
"members": [
|
|
9339
9239
|
{
|
|
9340
9240
|
"kind": "field",
|
|
9341
|
-
"name": "
|
|
9342
|
-
"
|
|
9343
|
-
|
|
9241
|
+
"name": "renderHook",
|
|
9242
|
+
"type": {
|
|
9243
|
+
"text": "Comment"
|
|
9244
|
+
},
|
|
9245
|
+
"privacy": "private"
|
|
9344
9246
|
},
|
|
9345
9247
|
{
|
|
9346
9248
|
"kind": "field",
|
|
9347
|
-
"name": "
|
|
9348
|
-
"
|
|
9349
|
-
|
|
9249
|
+
"name": "lightDom",
|
|
9250
|
+
"type": {
|
|
9251
|
+
"text": "LightDomController"
|
|
9252
|
+
},
|
|
9253
|
+
"privacy": "private",
|
|
9254
|
+
"default": "new LightDomController(host, {\n render: () => (this.hasContent ? nothing : this.options.render()),\n renderOptions: { renderBefore: this.renderHook },\n })"
|
|
9350
9255
|
},
|
|
9351
9256
|
{
|
|
9352
|
-
"kind": "
|
|
9353
|
-
"name": "
|
|
9354
|
-
"
|
|
9355
|
-
|
|
9257
|
+
"kind": "method",
|
|
9258
|
+
"name": "hostConnected",
|
|
9259
|
+
"inheritedFrom": {
|
|
9260
|
+
"name": "SlotController",
|
|
9261
|
+
"module": "src/common/controllers/SlotController.ts"
|
|
9262
|
+
}
|
|
9356
9263
|
},
|
|
9357
9264
|
{
|
|
9358
|
-
"kind": "
|
|
9359
|
-
"name": "
|
|
9360
|
-
"privacy": "protected",
|
|
9361
|
-
"default": "new FormDataController(this, { value: () => this.formValue })"
|
|
9265
|
+
"kind": "method",
|
|
9266
|
+
"name": "hostDisconnected"
|
|
9362
9267
|
},
|
|
9363
9268
|
{
|
|
9364
9269
|
"kind": "field",
|
|
9365
|
-
"name": "
|
|
9366
|
-
"privacy": "protected"
|
|
9270
|
+
"name": "onChange",
|
|
9271
|
+
"privacy": "protected",
|
|
9272
|
+
"parameters": [
|
|
9273
|
+
{
|
|
9274
|
+
"name": "_e",
|
|
9275
|
+
"type": {
|
|
9276
|
+
"text": "Event"
|
|
9277
|
+
}
|
|
9278
|
+
}
|
|
9279
|
+
],
|
|
9280
|
+
"inheritedFrom": {
|
|
9281
|
+
"name": "SlotController",
|
|
9282
|
+
"module": "src/common/controllers/SlotController.ts"
|
|
9283
|
+
}
|
|
9367
9284
|
},
|
|
9368
9285
|
{
|
|
9369
|
-
"kind": "
|
|
9370
|
-
"name": "
|
|
9371
|
-
"
|
|
9372
|
-
"text": "string"
|
|
9373
|
-
},
|
|
9374
|
-
"privacy": "protected",
|
|
9375
|
-
"default": "\"input\""
|
|
9286
|
+
"kind": "method",
|
|
9287
|
+
"name": "syncLightDom",
|
|
9288
|
+
"privacy": "private"
|
|
9376
9289
|
},
|
|
9377
9290
|
{
|
|
9378
9291
|
"kind": "field",
|
|
9379
|
-
"name": "
|
|
9380
|
-
"
|
|
9381
|
-
"text": "string"
|
|
9382
|
-
},
|
|
9383
|
-
"privacy": "protected",
|
|
9384
|
-
"default": "\"error\""
|
|
9292
|
+
"name": "options",
|
|
9293
|
+
"default": "options"
|
|
9385
9294
|
},
|
|
9386
9295
|
{
|
|
9387
9296
|
"kind": "field",
|
|
9388
|
-
"name": "
|
|
9297
|
+
"name": "events",
|
|
9389
9298
|
"type": {
|
|
9390
|
-
"text": "
|
|
9299
|
+
"text": "EventController"
|
|
9391
9300
|
},
|
|
9392
|
-
"privacy": "
|
|
9393
|
-
"default": "
|
|
9301
|
+
"privacy": "private",
|
|
9302
|
+
"default": "new EventController(host)",
|
|
9303
|
+
"inheritedFrom": {
|
|
9304
|
+
"name": "SlotController",
|
|
9305
|
+
"module": "src/common/controllers/SlotController.ts"
|
|
9306
|
+
}
|
|
9394
9307
|
},
|
|
9395
9308
|
{
|
|
9396
9309
|
"kind": "field",
|
|
9397
|
-
"name": "
|
|
9398
|
-
"
|
|
9399
|
-
"
|
|
9400
|
-
|
|
9401
|
-
|
|
9402
|
-
"description": "Label for the input.",
|
|
9403
|
-
"attribute": "label"
|
|
9310
|
+
"name": "hasContent",
|
|
9311
|
+
"inheritedFrom": {
|
|
9312
|
+
"name": "SlotController",
|
|
9313
|
+
"module": "src/common/controllers/SlotController.ts"
|
|
9314
|
+
}
|
|
9404
9315
|
},
|
|
9405
9316
|
{
|
|
9406
9317
|
"kind": "field",
|
|
9407
|
-
"name": "
|
|
9408
|
-
"
|
|
9409
|
-
"
|
|
9410
|
-
|
|
9411
|
-
|
|
9412
|
-
"attribute": "hint"
|
|
9318
|
+
"name": "isEmpty",
|
|
9319
|
+
"inheritedFrom": {
|
|
9320
|
+
"name": "SlotController",
|
|
9321
|
+
"module": "src/common/controllers/SlotController.ts"
|
|
9322
|
+
}
|
|
9413
9323
|
},
|
|
9414
9324
|
{
|
|
9415
9325
|
"kind": "field",
|
|
9416
|
-
"name": "
|
|
9417
|
-
"
|
|
9418
|
-
"
|
|
9419
|
-
|
|
9420
|
-
|
|
9421
|
-
"description": "Visually hide the label, but still show it to assistive technologies like screen readers.",
|
|
9422
|
-
"attribute": "hide-label"
|
|
9326
|
+
"name": "content",
|
|
9327
|
+
"inheritedFrom": {
|
|
9328
|
+
"name": "SlotController",
|
|
9329
|
+
"module": "src/common/controllers/SlotController.ts"
|
|
9330
|
+
}
|
|
9423
9331
|
},
|
|
9424
9332
|
{
|
|
9425
9333
|
"kind": "field",
|
|
9426
|
-
"name": "
|
|
9427
|
-
"
|
|
9428
|
-
|
|
9429
|
-
|
|
9430
|
-
|
|
9431
|
-
|
|
9334
|
+
"name": "handleSlotChange",
|
|
9335
|
+
"privacy": "private",
|
|
9336
|
+
"inheritedFrom": {
|
|
9337
|
+
"name": "SlotController",
|
|
9338
|
+
"module": "src/common/controllers/SlotController.ts"
|
|
9339
|
+
}
|
|
9432
9340
|
},
|
|
9433
9341
|
{
|
|
9434
9342
|
"kind": "field",
|
|
9435
|
-
"name": "
|
|
9436
|
-
"
|
|
9437
|
-
|
|
9438
|
-
|
|
9439
|
-
|
|
9440
|
-
|
|
9343
|
+
"name": "host",
|
|
9344
|
+
"default": "host",
|
|
9345
|
+
"inheritedFrom": {
|
|
9346
|
+
"name": "SlotController",
|
|
9347
|
+
"module": "src/common/controllers/SlotController.ts"
|
|
9348
|
+
}
|
|
9441
9349
|
},
|
|
9442
9350
|
{
|
|
9443
9351
|
"kind": "field",
|
|
9444
|
-
"name": "
|
|
9352
|
+
"name": "slotName",
|
|
9353
|
+
"default": "slotName",
|
|
9354
|
+
"inheritedFrom": {
|
|
9355
|
+
"name": "SlotController",
|
|
9356
|
+
"module": "src/common/controllers/SlotController.ts"
|
|
9357
|
+
}
|
|
9358
|
+
}
|
|
9359
|
+
],
|
|
9360
|
+
"superclass": {
|
|
9361
|
+
"name": "SlotController",
|
|
9362
|
+
"module": "/src/common/controllers/SlotController.js"
|
|
9363
|
+
},
|
|
9364
|
+
"status": null,
|
|
9365
|
+
"category": null
|
|
9366
|
+
}
|
|
9367
|
+
],
|
|
9368
|
+
"exports": [
|
|
9369
|
+
{
|
|
9370
|
+
"kind": "js",
|
|
9371
|
+
"name": "LightSlotController",
|
|
9372
|
+
"declaration": {
|
|
9373
|
+
"name": "LightSlotController",
|
|
9374
|
+
"module": "src/common/controllers/LightSlotController.ts"
|
|
9375
|
+
}
|
|
9376
|
+
}
|
|
9377
|
+
]
|
|
9378
|
+
},
|
|
9379
|
+
{
|
|
9380
|
+
"kind": "javascript-module",
|
|
9381
|
+
"path": "src/common/controllers/PortalController.ts",
|
|
9382
|
+
"declarations": [
|
|
9383
|
+
{
|
|
9384
|
+
"kind": "class",
|
|
9385
|
+
"description": "",
|
|
9386
|
+
"name": "PortalController",
|
|
9387
|
+
"members": [
|
|
9388
|
+
{
|
|
9389
|
+
"kind": "field",
|
|
9390
|
+
"name": "renderHook",
|
|
9445
9391
|
"type": {
|
|
9446
|
-
"text": "
|
|
9392
|
+
"text": "Comment"
|
|
9447
9393
|
},
|
|
9448
|
-
"
|
|
9449
|
-
"description": "Determines whether the input is required or not.\nAn input marked as required will be announced as such to users of assistive technology.\nWhen using this property you need to also set “novalidate” attribute on a form element to prevent browser from displaying its own validation errors.",
|
|
9450
|
-
"attribute": "required"
|
|
9394
|
+
"privacy": "private"
|
|
9451
9395
|
},
|
|
9452
9396
|
{
|
|
9453
9397
|
"kind": "field",
|
|
9454
|
-
"name": "
|
|
9398
|
+
"name": "lightDom",
|
|
9455
9399
|
"type": {
|
|
9456
|
-
"text": "
|
|
9400
|
+
"text": "LightDomController"
|
|
9457
9401
|
},
|
|
9458
|
-
"
|
|
9459
|
-
"
|
|
9460
|
-
"attribute": "expand",
|
|
9461
|
-
"reflects": true
|
|
9462
|
-
},
|
|
9463
|
-
{
|
|
9464
|
-
"kind": "method",
|
|
9465
|
-
"name": "handleInput",
|
|
9466
|
-
"privacy": "protected",
|
|
9467
|
-
"parameters": [
|
|
9468
|
-
{
|
|
9469
|
-
"name": "e",
|
|
9470
|
-
"type": {
|
|
9471
|
-
"text": "Event"
|
|
9472
|
-
}
|
|
9473
|
-
}
|
|
9474
|
-
]
|
|
9475
|
-
},
|
|
9476
|
-
{
|
|
9477
|
-
"kind": "method",
|
|
9478
|
-
"name": "handleChange",
|
|
9479
|
-
"privacy": "protected",
|
|
9480
|
-
"parameters": [
|
|
9481
|
-
{
|
|
9482
|
-
"name": "e",
|
|
9483
|
-
"type": {
|
|
9484
|
-
"text": "Event"
|
|
9485
|
-
}
|
|
9486
|
-
}
|
|
9487
|
-
]
|
|
9488
|
-
},
|
|
9489
|
-
{
|
|
9490
|
-
"kind": "method",
|
|
9491
|
-
"name": "renderLabel",
|
|
9492
|
-
"privacy": "protected"
|
|
9402
|
+
"privacy": "private",
|
|
9403
|
+
"default": "new LightDomController(host, {\n render: () => this.options.render.call(host),\n container: options.outlet,\n renderOptions: {\n renderBefore: this.renderHook,\n host,\n },\n })"
|
|
9493
9404
|
},
|
|
9494
9405
|
{
|
|
9495
9406
|
"kind": "method",
|
|
9496
|
-
"name": "
|
|
9497
|
-
"privacy": "protected"
|
|
9407
|
+
"name": "hostConnected"
|
|
9498
9408
|
},
|
|
9499
9409
|
{
|
|
9500
9410
|
"kind": "method",
|
|
9501
|
-
"name": "
|
|
9502
|
-
"privacy": "protected"
|
|
9411
|
+
"name": "hostUpdated"
|
|
9503
9412
|
},
|
|
9504
9413
|
{
|
|
9505
9414
|
"kind": "method",
|
|
9506
|
-
"name": "
|
|
9507
|
-
"privacy": "protected"
|
|
9415
|
+
"name": "hostDisconnected"
|
|
9508
9416
|
},
|
|
9509
9417
|
{
|
|
9510
9418
|
"kind": "field",
|
|
9511
|
-
"name": "
|
|
9512
|
-
"
|
|
9419
|
+
"name": "host",
|
|
9420
|
+
"default": "host"
|
|
9513
9421
|
},
|
|
9514
9422
|
{
|
|
9515
9423
|
"kind": "field",
|
|
9516
|
-
"name": "
|
|
9517
|
-
"
|
|
9518
|
-
}
|
|
9519
|
-
],
|
|
9520
|
-
"events": [
|
|
9521
|
-
{
|
|
9522
|
-
"name": "input",
|
|
9523
|
-
"type": {
|
|
9524
|
-
"text": "NordEvent"
|
|
9525
|
-
},
|
|
9526
|
-
"description": "Fired as the user types into the input."
|
|
9527
|
-
},
|
|
9528
|
-
{
|
|
9529
|
-
"name": "change",
|
|
9530
|
-
"type": {
|
|
9531
|
-
"text": "NordEvent"
|
|
9532
|
-
},
|
|
9533
|
-
"description": "Fired whenever the input's value is changed via user interaction."
|
|
9424
|
+
"name": "options",
|
|
9425
|
+
"default": "options"
|
|
9534
9426
|
}
|
|
9535
|
-
]
|
|
9536
|
-
|
|
9427
|
+
]
|
|
9428
|
+
}
|
|
9429
|
+
],
|
|
9430
|
+
"exports": [
|
|
9431
|
+
{
|
|
9432
|
+
"kind": "js",
|
|
9433
|
+
"name": "PortalController",
|
|
9434
|
+
"declaration": {
|
|
9435
|
+
"name": "PortalController",
|
|
9436
|
+
"module": "src/common/controllers/PortalController.ts"
|
|
9437
|
+
}
|
|
9438
|
+
}
|
|
9439
|
+
]
|
|
9440
|
+
},
|
|
9441
|
+
{
|
|
9442
|
+
"kind": "javascript-module",
|
|
9443
|
+
"path": "src/common/controllers/ShortcutController.ts",
|
|
9444
|
+
"declarations": [
|
|
9445
|
+
{
|
|
9446
|
+
"kind": "class",
|
|
9447
|
+
"description": "",
|
|
9448
|
+
"name": "ShortcutController",
|
|
9449
|
+
"members": [
|
|
9537
9450
|
{
|
|
9538
|
-
"
|
|
9451
|
+
"kind": "field",
|
|
9452
|
+
"name": "unregister",
|
|
9539
9453
|
"type": {
|
|
9540
|
-
"text": "
|
|
9454
|
+
"text": "ReturnType<typeof tinykeys> | undefined"
|
|
9541
9455
|
},
|
|
9542
|
-
"
|
|
9543
|
-
"description": "Label for the input.",
|
|
9544
|
-
"fieldName": "label"
|
|
9456
|
+
"privacy": "private"
|
|
9545
9457
|
},
|
|
9546
9458
|
{
|
|
9547
|
-
"
|
|
9548
|
-
"
|
|
9549
|
-
"text": "string | undefined"
|
|
9550
|
-
},
|
|
9551
|
-
"description": "Optional hint text to be displayed with the input. Alternatively use the hint slot.",
|
|
9552
|
-
"fieldName": "hint"
|
|
9459
|
+
"kind": "method",
|
|
9460
|
+
"name": "hostConnected"
|
|
9553
9461
|
},
|
|
9554
9462
|
{
|
|
9555
|
-
"
|
|
9556
|
-
"
|
|
9557
|
-
"text": "boolean"
|
|
9558
|
-
},
|
|
9559
|
-
"default": "false",
|
|
9560
|
-
"description": "Visually hide the label, but still show it to assistive technologies like screen readers.",
|
|
9561
|
-
"fieldName": "hideLabel"
|
|
9463
|
+
"kind": "method",
|
|
9464
|
+
"name": "hostDisconnected"
|
|
9562
9465
|
},
|
|
9563
9466
|
{
|
|
9564
|
-
"
|
|
9565
|
-
"
|
|
9566
|
-
"text": "string | undefined"
|
|
9567
|
-
},
|
|
9568
|
-
"description": "Placeholder text to display within the input.",
|
|
9569
|
-
"fieldName": "placeholder"
|
|
9467
|
+
"kind": "method",
|
|
9468
|
+
"name": "unbind"
|
|
9570
9469
|
},
|
|
9571
9470
|
{
|
|
9572
|
-
"
|
|
9573
|
-
"
|
|
9574
|
-
|
|
9575
|
-
|
|
9576
|
-
|
|
9577
|
-
|
|
9471
|
+
"kind": "method",
|
|
9472
|
+
"name": "bind",
|
|
9473
|
+
"parameters": [
|
|
9474
|
+
{
|
|
9475
|
+
"name": "shortcuts",
|
|
9476
|
+
"type": {
|
|
9477
|
+
"text": "KeyBindingMap"
|
|
9478
|
+
}
|
|
9479
|
+
}
|
|
9480
|
+
]
|
|
9578
9481
|
},
|
|
9579
9482
|
{
|
|
9580
|
-
"
|
|
9581
|
-
"
|
|
9582
|
-
|
|
9583
|
-
},
|
|
9584
|
-
"default": "false",
|
|
9585
|
-
"description": "Determines whether the input is required or not.\nAn input marked as required will be announced as such to users of assistive technology.\nWhen using this property you need to also set “novalidate” attribute on a form element to prevent browser from displaying its own validation errors.",
|
|
9586
|
-
"fieldName": "required"
|
|
9483
|
+
"kind": "field",
|
|
9484
|
+
"name": "shortcuts",
|
|
9485
|
+
"default": "shortcuts"
|
|
9587
9486
|
},
|
|
9588
9487
|
{
|
|
9589
|
-
"
|
|
9590
|
-
"
|
|
9591
|
-
|
|
9592
|
-
},
|
|
9593
|
-
"default": "false",
|
|
9594
|
-
"description": "Controls whether the input expands to fill the width of its container.",
|
|
9595
|
-
"fieldName": "expand"
|
|
9596
|
-
}
|
|
9597
|
-
],
|
|
9598
|
-
"parameters": [
|
|
9599
|
-
{
|
|
9600
|
-
"name": "superClass",
|
|
9601
|
-
"type": {
|
|
9602
|
-
"text": "T"
|
|
9603
|
-
}
|
|
9488
|
+
"kind": "field",
|
|
9489
|
+
"name": "target",
|
|
9490
|
+
"default": "target"
|
|
9604
9491
|
}
|
|
9605
9492
|
]
|
|
9606
9493
|
}
|
|
@@ -9608,137 +9495,83 @@
|
|
|
9608
9495
|
"exports": [
|
|
9609
9496
|
{
|
|
9610
9497
|
"kind": "js",
|
|
9611
|
-
"name": "
|
|
9498
|
+
"name": "ShortcutController",
|
|
9612
9499
|
"declaration": {
|
|
9613
|
-
"name": "
|
|
9614
|
-
"module": "src/common/
|
|
9500
|
+
"name": "ShortcutController",
|
|
9501
|
+
"module": "src/common/controllers/ShortcutController.ts"
|
|
9615
9502
|
}
|
|
9616
9503
|
},
|
|
9617
9504
|
{
|
|
9618
9505
|
"kind": "js",
|
|
9619
|
-
"name": "
|
|
9506
|
+
"name": "ShortcutMap",
|
|
9620
9507
|
"declaration": {
|
|
9621
|
-
"name": "
|
|
9622
|
-
"module": "src/common/
|
|
9508
|
+
"name": "KeyBindingMap",
|
|
9509
|
+
"module": "src/common/controllers/ShortcutController.ts"
|
|
9623
9510
|
}
|
|
9624
9511
|
}
|
|
9625
9512
|
]
|
|
9626
9513
|
},
|
|
9627
9514
|
{
|
|
9628
9515
|
"kind": "javascript-module",
|
|
9629
|
-
"path": "src/common/
|
|
9516
|
+
"path": "src/common/controllers/SlotController.ts",
|
|
9630
9517
|
"declarations": [
|
|
9631
9518
|
{
|
|
9632
9519
|
"kind": "class",
|
|
9633
9520
|
"description": "",
|
|
9634
|
-
"name": "
|
|
9521
|
+
"name": "SlotController",
|
|
9635
9522
|
"members": [
|
|
9636
9523
|
{
|
|
9637
9524
|
"kind": "field",
|
|
9638
|
-
"name": "
|
|
9525
|
+
"name": "events",
|
|
9639
9526
|
"type": {
|
|
9640
|
-
"text": "
|
|
9641
|
-
}
|
|
9527
|
+
"text": "EventController"
|
|
9528
|
+
},
|
|
9529
|
+
"privacy": "private",
|
|
9530
|
+
"default": "new EventController(host)"
|
|
9642
9531
|
},
|
|
9643
9532
|
{
|
|
9644
|
-
"kind": "
|
|
9645
|
-
"name": "
|
|
9646
|
-
"type": {
|
|
9647
|
-
"text": "string"
|
|
9648
|
-
}
|
|
9533
|
+
"kind": "method",
|
|
9534
|
+
"name": "hostConnected"
|
|
9649
9535
|
},
|
|
9650
9536
|
{
|
|
9651
9537
|
"kind": "field",
|
|
9652
|
-
"name": "
|
|
9653
|
-
"type": {
|
|
9654
|
-
"text": "boolean"
|
|
9655
|
-
}
|
|
9538
|
+
"name": "hasContent"
|
|
9656
9539
|
},
|
|
9657
9540
|
{
|
|
9658
9541
|
"kind": "field",
|
|
9659
|
-
"name": "
|
|
9660
|
-
"type": {
|
|
9661
|
-
"text": "HTMLFormElement | undefined"
|
|
9662
|
-
}
|
|
9663
|
-
}
|
|
9664
|
-
]
|
|
9665
|
-
},
|
|
9666
|
-
{
|
|
9667
|
-
"kind": "mixin",
|
|
9668
|
-
"description": "",
|
|
9669
|
-
"name": "InputMixin",
|
|
9670
|
-
"members": [
|
|
9671
|
-
{
|
|
9672
|
-
"kind": "field",
|
|
9673
|
-
"name": "disabled",
|
|
9674
|
-
"type": {
|
|
9675
|
-
"text": "boolean"
|
|
9676
|
-
},
|
|
9677
|
-
"default": "false",
|
|
9678
|
-
"description": "Makes the component disabled. This prevents users from\nbeing able to interact with the component, and conveys\nits inactive state to assistive technologies.",
|
|
9679
|
-
"attribute": "disabled",
|
|
9680
|
-
"reflects": true
|
|
9542
|
+
"name": "isEmpty"
|
|
9681
9543
|
},
|
|
9682
9544
|
{
|
|
9683
9545
|
"kind": "field",
|
|
9684
|
-
"name": "
|
|
9685
|
-
"type": {
|
|
9686
|
-
"text": "string | undefined"
|
|
9687
|
-
},
|
|
9688
|
-
"description": "The name of the form component.",
|
|
9689
|
-
"attribute": "name"
|
|
9546
|
+
"name": "content"
|
|
9690
9547
|
},
|
|
9691
9548
|
{
|
|
9692
9549
|
"kind": "field",
|
|
9693
|
-
"name": "
|
|
9694
|
-
"
|
|
9695
|
-
"text": "string"
|
|
9696
|
-
},
|
|
9697
|
-
"default": "\"\"",
|
|
9698
|
-
"description": "The value of the form component.",
|
|
9699
|
-
"attribute": "value"
|
|
9550
|
+
"name": "handleSlotChange",
|
|
9551
|
+
"privacy": "private"
|
|
9700
9552
|
},
|
|
9701
9553
|
{
|
|
9702
|
-
"kind": "
|
|
9703
|
-
"name": "
|
|
9554
|
+
"kind": "method",
|
|
9555
|
+
"name": "onChange",
|
|
9704
9556
|
"privacy": "protected",
|
|
9705
|
-
"
|
|
9706
|
-
|
|
9707
|
-
|
|
9708
|
-
|
|
9709
|
-
|
|
9710
|
-
|
|
9711
|
-
|
|
9712
|
-
|
|
9713
|
-
},
|
|
9714
|
-
"default": "false",
|
|
9715
|
-
"description": "Makes the component disabled. This prevents users from\nbeing able to interact with the component, and conveys\nits inactive state to assistive technologies.",
|
|
9716
|
-
"fieldName": "disabled"
|
|
9557
|
+
"parameters": [
|
|
9558
|
+
{
|
|
9559
|
+
"name": "_e",
|
|
9560
|
+
"type": {
|
|
9561
|
+
"text": "Event"
|
|
9562
|
+
}
|
|
9563
|
+
}
|
|
9564
|
+
]
|
|
9717
9565
|
},
|
|
9718
9566
|
{
|
|
9719
|
-
"
|
|
9720
|
-
"
|
|
9721
|
-
|
|
9722
|
-
},
|
|
9723
|
-
"description": "The name of the form component.",
|
|
9724
|
-
"fieldName": "name"
|
|
9567
|
+
"kind": "field",
|
|
9568
|
+
"name": "host",
|
|
9569
|
+
"default": "host"
|
|
9725
9570
|
},
|
|
9726
9571
|
{
|
|
9727
|
-
"
|
|
9728
|
-
"
|
|
9729
|
-
|
|
9730
|
-
},
|
|
9731
|
-
"default": "\"\"",
|
|
9732
|
-
"description": "The value of the form component.",
|
|
9733
|
-
"fieldName": "value"
|
|
9734
|
-
}
|
|
9735
|
-
],
|
|
9736
|
-
"parameters": [
|
|
9737
|
-
{
|
|
9738
|
-
"name": "superClass",
|
|
9739
|
-
"type": {
|
|
9740
|
-
"text": "T"
|
|
9741
|
-
}
|
|
9572
|
+
"kind": "field",
|
|
9573
|
+
"name": "slotName",
|
|
9574
|
+
"default": "slotName"
|
|
9742
9575
|
}
|
|
9743
9576
|
]
|
|
9744
9577
|
}
|
|
@@ -9746,80 +9579,109 @@
|
|
|
9746
9579
|
"exports": [
|
|
9747
9580
|
{
|
|
9748
9581
|
"kind": "js",
|
|
9749
|
-
"name": "
|
|
9750
|
-
"declaration": {
|
|
9751
|
-
"name": "InputMixinInterface",
|
|
9752
|
-
"module": "src/common/mixins/InputMixin.ts"
|
|
9753
|
-
}
|
|
9754
|
-
},
|
|
9755
|
-
{
|
|
9756
|
-
"kind": "js",
|
|
9757
|
-
"name": "InputMixin",
|
|
9582
|
+
"name": "SlotController",
|
|
9758
9583
|
"declaration": {
|
|
9759
|
-
"name": "
|
|
9760
|
-
"module": "src/common/
|
|
9584
|
+
"name": "SlotController",
|
|
9585
|
+
"module": "src/common/controllers/SlotController.ts"
|
|
9761
9586
|
}
|
|
9762
9587
|
}
|
|
9763
9588
|
]
|
|
9764
9589
|
},
|
|
9765
9590
|
{
|
|
9766
9591
|
"kind": "javascript-module",
|
|
9767
|
-
"path": "src/common/controllers/
|
|
9592
|
+
"path": "src/common/controllers/SwipeController.ts",
|
|
9768
9593
|
"declarations": [
|
|
9769
9594
|
{
|
|
9770
9595
|
"kind": "class",
|
|
9771
9596
|
"description": "",
|
|
9772
|
-
"name": "
|
|
9597
|
+
"name": "SwipeController",
|
|
9773
9598
|
"members": [
|
|
9774
9599
|
{
|
|
9775
9600
|
"kind": "field",
|
|
9776
|
-
"name": "
|
|
9601
|
+
"name": "events",
|
|
9602
|
+
"type": {
|
|
9603
|
+
"text": "EventController"
|
|
9604
|
+
},
|
|
9777
9605
|
"privacy": "private",
|
|
9778
|
-
"
|
|
9779
|
-
"default": "new Set<ReactiveControllerHost>()"
|
|
9606
|
+
"default": "new EventController(host)"
|
|
9780
9607
|
},
|
|
9781
9608
|
{
|
|
9782
9609
|
"kind": "field",
|
|
9783
|
-
"name": "
|
|
9610
|
+
"name": "hadFirstUpdate",
|
|
9784
9611
|
"type": {
|
|
9785
|
-
"text": "
|
|
9612
|
+
"text": "boolean"
|
|
9786
9613
|
},
|
|
9787
9614
|
"privacy": "private",
|
|
9788
|
-
"
|
|
9615
|
+
"default": "false"
|
|
9789
9616
|
},
|
|
9790
9617
|
{
|
|
9791
9618
|
"kind": "field",
|
|
9792
|
-
"name": "
|
|
9619
|
+
"name": "initialTouchX",
|
|
9793
9620
|
"type": {
|
|
9794
|
-
"text": "
|
|
9795
|
-
}
|
|
9621
|
+
"text": "number"
|
|
9622
|
+
},
|
|
9623
|
+
"privacy": "private",
|
|
9624
|
+
"default": "0"
|
|
9796
9625
|
},
|
|
9797
9626
|
{
|
|
9798
9627
|
"kind": "field",
|
|
9799
|
-
"name": "
|
|
9628
|
+
"name": "initialTouchY",
|
|
9629
|
+
"type": {
|
|
9630
|
+
"text": "number"
|
|
9631
|
+
},
|
|
9632
|
+
"privacy": "private",
|
|
9633
|
+
"default": "0"
|
|
9800
9634
|
},
|
|
9801
9635
|
{
|
|
9802
9636
|
"kind": "field",
|
|
9803
|
-
"name": "
|
|
9637
|
+
"name": "options",
|
|
9638
|
+
"type": {
|
|
9639
|
+
"text": "SetRequired<SwipeControllerOptions, \"target\">"
|
|
9640
|
+
},
|
|
9641
|
+
"privacy": "private",
|
|
9642
|
+
"default": "{\n target: () => host,\n ...options,\n }"
|
|
9804
9643
|
},
|
|
9805
9644
|
{
|
|
9806
9645
|
"kind": "method",
|
|
9807
|
-
"name": "
|
|
9646
|
+
"name": "hostUpdated"
|
|
9808
9647
|
},
|
|
9809
9648
|
{
|
|
9810
9649
|
"kind": "method",
|
|
9811
9650
|
"name": "hostDisconnected"
|
|
9812
9651
|
},
|
|
9813
9652
|
{
|
|
9814
|
-
"kind": "
|
|
9815
|
-
"name": "
|
|
9816
|
-
"privacy": "private"
|
|
9817
|
-
"static": true
|
|
9653
|
+
"kind": "field",
|
|
9654
|
+
"name": "handleTouchStart",
|
|
9655
|
+
"privacy": "private"
|
|
9818
9656
|
},
|
|
9819
9657
|
{
|
|
9820
9658
|
"kind": "field",
|
|
9821
|
-
"name": "
|
|
9822
|
-
"
|
|
9659
|
+
"name": "handleTouchEnd",
|
|
9660
|
+
"privacy": "private"
|
|
9661
|
+
}
|
|
9662
|
+
]
|
|
9663
|
+
},
|
|
9664
|
+
{
|
|
9665
|
+
"kind": "function",
|
|
9666
|
+
"name": "isHorizontalSwipe",
|
|
9667
|
+
"parameters": [
|
|
9668
|
+
{
|
|
9669
|
+
"name": "{ distX, distY }",
|
|
9670
|
+
"type": {
|
|
9671
|
+
"text": "SwipeDetails"
|
|
9672
|
+
}
|
|
9673
|
+
}
|
|
9674
|
+
]
|
|
9675
|
+
},
|
|
9676
|
+
{
|
|
9677
|
+
"kind": "function",
|
|
9678
|
+
"name": "isDownwardsSwipe",
|
|
9679
|
+
"parameters": [
|
|
9680
|
+
{
|
|
9681
|
+
"name": "{ distX, distY }",
|
|
9682
|
+
"type": {
|
|
9683
|
+
"text": "SwipeDetails"
|
|
9684
|
+
}
|
|
9823
9685
|
}
|
|
9824
9686
|
]
|
|
9825
9687
|
}
|
|
@@ -9827,651 +9689,853 @@
|
|
|
9827
9689
|
"exports": [
|
|
9828
9690
|
{
|
|
9829
9691
|
"kind": "js",
|
|
9830
|
-
"name": "
|
|
9692
|
+
"name": "SwipeController",
|
|
9831
9693
|
"declaration": {
|
|
9832
|
-
"name": "
|
|
9833
|
-
"module": "src/common/controllers/
|
|
9694
|
+
"name": "SwipeController",
|
|
9695
|
+
"module": "src/common/controllers/SwipeController.ts"
|
|
9696
|
+
}
|
|
9697
|
+
},
|
|
9698
|
+
{
|
|
9699
|
+
"kind": "js",
|
|
9700
|
+
"name": "isHorizontalSwipe",
|
|
9701
|
+
"declaration": {
|
|
9702
|
+
"name": "isHorizontalSwipe",
|
|
9703
|
+
"module": "src/common/controllers/SwipeController.ts"
|
|
9704
|
+
}
|
|
9705
|
+
},
|
|
9706
|
+
{
|
|
9707
|
+
"kind": "js",
|
|
9708
|
+
"name": "isDownwardsSwipe",
|
|
9709
|
+
"declaration": {
|
|
9710
|
+
"name": "isDownwardsSwipe",
|
|
9711
|
+
"module": "src/common/controllers/SwipeController.ts"
|
|
9834
9712
|
}
|
|
9835
9713
|
}
|
|
9836
9714
|
]
|
|
9837
9715
|
},
|
|
9838
9716
|
{
|
|
9839
9717
|
"kind": "javascript-module",
|
|
9840
|
-
"path": "src/common/
|
|
9718
|
+
"path": "src/common/directives/cond.ts",
|
|
9841
9719
|
"declarations": [
|
|
9842
9720
|
{
|
|
9843
|
-
"kind": "
|
|
9844
|
-
"
|
|
9845
|
-
|
|
9846
|
-
|
|
9847
|
-
|
|
9848
|
-
|
|
9849
|
-
|
|
9850
|
-
|
|
9851
|
-
|
|
9852
|
-
|
|
9853
|
-
|
|
9854
|
-
|
|
9855
|
-
|
|
9856
|
-
|
|
9857
|
-
|
|
9858
|
-
|
|
9859
|
-
|
|
9860
|
-
|
|
9861
|
-
|
|
9862
|
-
|
|
9863
|
-
|
|
9864
|
-
|
|
9865
|
-
|
|
9866
|
-
|
|
9867
|
-
|
|
9868
|
-
|
|
9869
|
-
|
|
9870
|
-
|
|
9871
|
-
|
|
9872
|
-
|
|
9873
|
-
|
|
9874
|
-
|
|
9875
|
-
|
|
9876
|
-
"name": "type",
|
|
9877
|
-
"type": {
|
|
9878
|
-
"text": "K"
|
|
9879
|
-
}
|
|
9880
|
-
},
|
|
9881
|
-
{
|
|
9882
|
-
"name": "listener",
|
|
9883
|
-
"type": {
|
|
9884
|
-
"text": "(this: Window, ev: WindowEventMap[K]) => any"
|
|
9885
|
-
}
|
|
9886
|
-
},
|
|
9887
|
-
{
|
|
9888
|
-
"name": "options",
|
|
9889
|
-
"optional": true,
|
|
9890
|
-
"type": {
|
|
9891
|
-
"text": "boolean | AddEventListenerOptions"
|
|
9892
|
-
}
|
|
9893
|
-
}
|
|
9894
|
-
]
|
|
9721
|
+
"kind": "variable",
|
|
9722
|
+
"name": "cond"
|
|
9723
|
+
}
|
|
9724
|
+
],
|
|
9725
|
+
"exports": [
|
|
9726
|
+
{
|
|
9727
|
+
"kind": "js",
|
|
9728
|
+
"name": "cond",
|
|
9729
|
+
"declaration": {
|
|
9730
|
+
"name": "cond",
|
|
9731
|
+
"module": "src/common/directives/cond.ts"
|
|
9732
|
+
}
|
|
9733
|
+
}
|
|
9734
|
+
]
|
|
9735
|
+
},
|
|
9736
|
+
{
|
|
9737
|
+
"kind": "javascript-module",
|
|
9738
|
+
"path": "src/common/directives/wrapIf.ts",
|
|
9739
|
+
"declarations": [
|
|
9740
|
+
{
|
|
9741
|
+
"kind": "function",
|
|
9742
|
+
"name": "wrapIf",
|
|
9743
|
+
"return": {
|
|
9744
|
+
"type": {
|
|
9745
|
+
"text": "TInner"
|
|
9746
|
+
}
|
|
9747
|
+
},
|
|
9748
|
+
"parameters": [
|
|
9749
|
+
{
|
|
9750
|
+
"name": "condition",
|
|
9751
|
+
"type": {
|
|
9752
|
+
"text": "false"
|
|
9753
|
+
}
|
|
9895
9754
|
},
|
|
9896
9755
|
{
|
|
9897
|
-
"
|
|
9898
|
-
"
|
|
9899
|
-
|
|
9900
|
-
|
|
9901
|
-
|
|
9902
|
-
|
|
9756
|
+
"name": "inner",
|
|
9757
|
+
"type": {
|
|
9758
|
+
"text": "() => TInner"
|
|
9759
|
+
}
|
|
9760
|
+
},
|
|
9761
|
+
{
|
|
9762
|
+
"name": "wrapper",
|
|
9763
|
+
"type": {
|
|
9764
|
+
"text": "(inner: TInner) => TWrapper"
|
|
9765
|
+
}
|
|
9766
|
+
}
|
|
9767
|
+
]
|
|
9768
|
+
},
|
|
9769
|
+
{
|
|
9770
|
+
"kind": "function",
|
|
9771
|
+
"name": "wrapIf",
|
|
9772
|
+
"return": {
|
|
9773
|
+
"type": {
|
|
9774
|
+
"text": "TWrapper"
|
|
9775
|
+
}
|
|
9776
|
+
},
|
|
9777
|
+
"parameters": [
|
|
9778
|
+
{
|
|
9779
|
+
"name": "condition",
|
|
9780
|
+
"type": {
|
|
9781
|
+
"text": "true"
|
|
9782
|
+
}
|
|
9783
|
+
},
|
|
9784
|
+
{
|
|
9785
|
+
"name": "inner",
|
|
9786
|
+
"type": {
|
|
9787
|
+
"text": "() => TInner"
|
|
9788
|
+
}
|
|
9789
|
+
},
|
|
9790
|
+
{
|
|
9791
|
+
"name": "wrapper",
|
|
9792
|
+
"type": {
|
|
9793
|
+
"text": "(inner: TInner) => TWrapper"
|
|
9794
|
+
}
|
|
9795
|
+
}
|
|
9796
|
+
]
|
|
9797
|
+
},
|
|
9798
|
+
{
|
|
9799
|
+
"kind": "function",
|
|
9800
|
+
"name": "wrapIf",
|
|
9801
|
+
"return": {
|
|
9802
|
+
"type": {
|
|
9803
|
+
"text": "TInner | TWrapper"
|
|
9804
|
+
}
|
|
9805
|
+
},
|
|
9806
|
+
"parameters": [
|
|
9807
|
+
{
|
|
9808
|
+
"name": "condition",
|
|
9809
|
+
"type": {
|
|
9810
|
+
"text": "unknown"
|
|
9811
|
+
}
|
|
9812
|
+
},
|
|
9813
|
+
{
|
|
9814
|
+
"name": "inner",
|
|
9815
|
+
"type": {
|
|
9816
|
+
"text": "() => TInner"
|
|
9817
|
+
}
|
|
9818
|
+
},
|
|
9819
|
+
{
|
|
9820
|
+
"name": "wrapper",
|
|
9821
|
+
"type": {
|
|
9822
|
+
"text": "(inner: TInner) => TWrapper"
|
|
9823
|
+
}
|
|
9824
|
+
}
|
|
9825
|
+
]
|
|
9826
|
+
},
|
|
9827
|
+
{
|
|
9828
|
+
"kind": "function",
|
|
9829
|
+
"name": "wrapIf",
|
|
9830
|
+
"parameters": [
|
|
9831
|
+
{
|
|
9832
|
+
"name": "condition",
|
|
9833
|
+
"type": {
|
|
9834
|
+
"text": "any"
|
|
9835
|
+
}
|
|
9836
|
+
},
|
|
9837
|
+
{
|
|
9838
|
+
"name": "inner",
|
|
9839
|
+
"type": {
|
|
9840
|
+
"text": "() => TInner"
|
|
9841
|
+
}
|
|
9842
|
+
},
|
|
9843
|
+
{
|
|
9844
|
+
"name": "wrapper",
|
|
9845
|
+
"type": {
|
|
9846
|
+
"text": "(innards: TInner) => TWrapper"
|
|
9847
|
+
}
|
|
9848
|
+
}
|
|
9849
|
+
],
|
|
9850
|
+
"return": {
|
|
9851
|
+
"type": {
|
|
9852
|
+
"text": ""
|
|
9853
|
+
}
|
|
9854
|
+
}
|
|
9855
|
+
}
|
|
9856
|
+
],
|
|
9857
|
+
"exports": [
|
|
9858
|
+
{
|
|
9859
|
+
"kind": "js",
|
|
9860
|
+
"name": "wrapIf",
|
|
9861
|
+
"declaration": {
|
|
9862
|
+
"name": "wrapIf",
|
|
9863
|
+
"module": "src/common/directives/wrapIf.ts"
|
|
9864
|
+
}
|
|
9865
|
+
},
|
|
9866
|
+
{
|
|
9867
|
+
"kind": "js",
|
|
9868
|
+
"name": "wrapIf",
|
|
9869
|
+
"declaration": {
|
|
9870
|
+
"name": "wrapIf",
|
|
9871
|
+
"module": "src/common/directives/wrapIf.ts"
|
|
9872
|
+
}
|
|
9873
|
+
},
|
|
9874
|
+
{
|
|
9875
|
+
"kind": "js",
|
|
9876
|
+
"name": "wrapIf",
|
|
9877
|
+
"declaration": {
|
|
9878
|
+
"name": "wrapIf",
|
|
9879
|
+
"module": "src/common/directives/wrapIf.ts"
|
|
9880
|
+
}
|
|
9881
|
+
},
|
|
9882
|
+
{
|
|
9883
|
+
"kind": "js",
|
|
9884
|
+
"name": "wrapIf",
|
|
9885
|
+
"declaration": {
|
|
9886
|
+
"name": "wrapIf",
|
|
9887
|
+
"module": "src/common/directives/wrapIf.ts"
|
|
9888
|
+
}
|
|
9889
|
+
}
|
|
9890
|
+
]
|
|
9891
|
+
},
|
|
9892
|
+
{
|
|
9893
|
+
"kind": "javascript-module",
|
|
9894
|
+
"path": "src/common/mixins/DraftComponentMixin.ts",
|
|
9895
|
+
"declarations": [
|
|
9896
|
+
{
|
|
9897
|
+
"kind": "mixin",
|
|
9898
|
+
"description": "",
|
|
9899
|
+
"name": "DraftComponentMixin",
|
|
9900
|
+
"members": [
|
|
9901
|
+
{
|
|
9902
|
+
"kind": "field",
|
|
9903
|
+
"name": "_warningLogged",
|
|
9904
|
+
"type": {
|
|
9905
|
+
"text": "boolean"
|
|
9903
9906
|
},
|
|
9904
|
-
"
|
|
9905
|
-
|
|
9906
|
-
|
|
9907
|
-
|
|
9908
|
-
|
|
9909
|
-
|
|
9910
|
-
|
|
9911
|
-
|
|
9912
|
-
|
|
9913
|
-
|
|
9914
|
-
|
|
9915
|
-
|
|
9916
|
-
|
|
9917
|
-
|
|
9918
|
-
|
|
9919
|
-
|
|
9920
|
-
|
|
9921
|
-
|
|
9922
|
-
|
|
9923
|
-
|
|
9924
|
-
|
|
9925
|
-
|
|
9926
|
-
|
|
9927
|
-
|
|
9928
|
-
|
|
9929
|
-
|
|
9930
|
-
|
|
9907
|
+
"privacy": "private",
|
|
9908
|
+
"static": true,
|
|
9909
|
+
"default": "false"
|
|
9910
|
+
}
|
|
9911
|
+
],
|
|
9912
|
+
"parameters": [
|
|
9913
|
+
{
|
|
9914
|
+
"name": "superClass",
|
|
9915
|
+
"type": {
|
|
9916
|
+
"text": "T"
|
|
9917
|
+
}
|
|
9918
|
+
}
|
|
9919
|
+
]
|
|
9920
|
+
}
|
|
9921
|
+
],
|
|
9922
|
+
"exports": [
|
|
9923
|
+
{
|
|
9924
|
+
"kind": "js",
|
|
9925
|
+
"name": "DraftComponentMixin",
|
|
9926
|
+
"declaration": {
|
|
9927
|
+
"name": "DraftComponentMixin",
|
|
9928
|
+
"module": "src/common/mixins/DraftComponentMixin.ts"
|
|
9929
|
+
}
|
|
9930
|
+
}
|
|
9931
|
+
]
|
|
9932
|
+
},
|
|
9933
|
+
{
|
|
9934
|
+
"kind": "javascript-module",
|
|
9935
|
+
"path": "src/common/mixins/FocusableMixin.ts",
|
|
9936
|
+
"declarations": [
|
|
9937
|
+
{
|
|
9938
|
+
"kind": "class",
|
|
9939
|
+
"description": "",
|
|
9940
|
+
"name": "FocusableMixinInterface",
|
|
9941
|
+
"members": [
|
|
9942
|
+
{
|
|
9943
|
+
"kind": "field",
|
|
9944
|
+
"name": "focusableRef",
|
|
9945
|
+
"type": {
|
|
9946
|
+
"text": "Ref<HTMLElement>"
|
|
9947
|
+
},
|
|
9948
|
+
"privacy": "protected"
|
|
9931
9949
|
},
|
|
9932
9950
|
{
|
|
9933
9951
|
"kind": "method",
|
|
9934
|
-
"name": "
|
|
9952
|
+
"name": "focus",
|
|
9935
9953
|
"return": {
|
|
9936
9954
|
"type": {
|
|
9937
9955
|
"text": "void"
|
|
9938
9956
|
}
|
|
9939
9957
|
},
|
|
9940
9958
|
"parameters": [
|
|
9941
|
-
{
|
|
9942
|
-
"name": "element",
|
|
9943
|
-
"type": {
|
|
9944
|
-
"text": "HTMLElement"
|
|
9945
|
-
}
|
|
9946
|
-
},
|
|
9947
|
-
{
|
|
9948
|
-
"name": "type",
|
|
9949
|
-
"type": {
|
|
9950
|
-
"text": "K"
|
|
9951
|
-
}
|
|
9952
|
-
},
|
|
9953
|
-
{
|
|
9954
|
-
"name": "listener",
|
|
9955
|
-
"type": {
|
|
9956
|
-
"text": "(this: HTMLElement, ev: HTMLElementEventMap[K]) => any"
|
|
9957
|
-
}
|
|
9958
|
-
},
|
|
9959
9959
|
{
|
|
9960
9960
|
"name": "options",
|
|
9961
9961
|
"optional": true,
|
|
9962
9962
|
"type": {
|
|
9963
|
-
"text": "
|
|
9963
|
+
"text": "FocusOptions"
|
|
9964
9964
|
}
|
|
9965
9965
|
}
|
|
9966
9966
|
]
|
|
9967
9967
|
},
|
|
9968
9968
|
{
|
|
9969
9969
|
"kind": "method",
|
|
9970
|
-
"name": "
|
|
9970
|
+
"name": "blur",
|
|
9971
9971
|
"return": {
|
|
9972
9972
|
"type": {
|
|
9973
9973
|
"text": "void"
|
|
9974
9974
|
}
|
|
9975
|
-
}
|
|
9975
|
+
}
|
|
9976
|
+
},
|
|
9977
|
+
{
|
|
9978
|
+
"kind": "method",
|
|
9979
|
+
"name": "click",
|
|
9980
|
+
"return": {
|
|
9981
|
+
"type": {
|
|
9982
|
+
"text": "void"
|
|
9983
|
+
}
|
|
9984
|
+
}
|
|
9985
|
+
}
|
|
9986
|
+
]
|
|
9987
|
+
},
|
|
9988
|
+
{
|
|
9989
|
+
"kind": "mixin",
|
|
9990
|
+
"description": "",
|
|
9991
|
+
"name": "FocusableMixin",
|
|
9992
|
+
"members": [
|
|
9993
|
+
{
|
|
9994
|
+
"kind": "field",
|
|
9995
|
+
"name": "focusableRef",
|
|
9996
|
+
"privacy": "protected"
|
|
9997
|
+
},
|
|
9998
|
+
{
|
|
9999
|
+
"kind": "method",
|
|
10000
|
+
"name": "focus",
|
|
9976
10001
|
"parameters": [
|
|
9977
|
-
{
|
|
9978
|
-
"name": "element",
|
|
9979
|
-
"type": {
|
|
9980
|
-
"text": "ShadowRoot"
|
|
9981
|
-
}
|
|
9982
|
-
},
|
|
9983
|
-
{
|
|
9984
|
-
"name": "type",
|
|
9985
|
-
"type": {
|
|
9986
|
-
"text": "K"
|
|
9987
|
-
}
|
|
9988
|
-
},
|
|
9989
|
-
{
|
|
9990
|
-
"name": "listener",
|
|
9991
|
-
"type": {
|
|
9992
|
-
"text": "(this: ShadowRoot, ev: ShadowRootEventMap[K]) => any"
|
|
9993
|
-
}
|
|
9994
|
-
},
|
|
9995
10002
|
{
|
|
9996
10003
|
"name": "options",
|
|
9997
10004
|
"optional": true,
|
|
9998
10005
|
"type": {
|
|
9999
|
-
"text": "
|
|
10000
|
-
}
|
|
10006
|
+
"text": "FocusOptions"
|
|
10007
|
+
},
|
|
10008
|
+
"description": "An object which controls aspects of the focusing process."
|
|
10001
10009
|
}
|
|
10002
|
-
]
|
|
10010
|
+
],
|
|
10011
|
+
"description": "Programmatically move focus to the component."
|
|
10003
10012
|
},
|
|
10004
10013
|
{
|
|
10005
10014
|
"kind": "method",
|
|
10006
|
-
"name": "
|
|
10007
|
-
"
|
|
10008
|
-
|
|
10009
|
-
|
|
10010
|
-
|
|
10011
|
-
|
|
10012
|
-
|
|
10013
|
-
|
|
10014
|
-
|
|
10015
|
-
|
|
10016
|
-
|
|
10017
|
-
|
|
10018
|
-
|
|
10019
|
-
|
|
10015
|
+
"name": "blur",
|
|
10016
|
+
"description": "Programmatically remove focus from the component."
|
|
10017
|
+
},
|
|
10018
|
+
{
|
|
10019
|
+
"kind": "method",
|
|
10020
|
+
"name": "click",
|
|
10021
|
+
"description": "Programmatically simulates a click on the component."
|
|
10022
|
+
}
|
|
10023
|
+
],
|
|
10024
|
+
"parameters": [
|
|
10025
|
+
{
|
|
10026
|
+
"name": "superClass",
|
|
10027
|
+
"type": {
|
|
10028
|
+
"text": "T"
|
|
10029
|
+
}
|
|
10030
|
+
}
|
|
10031
|
+
]
|
|
10032
|
+
}
|
|
10033
|
+
],
|
|
10034
|
+
"exports": [
|
|
10035
|
+
{
|
|
10036
|
+
"kind": "js",
|
|
10037
|
+
"name": "FocusableMixinInterface",
|
|
10038
|
+
"declaration": {
|
|
10039
|
+
"name": "FocusableMixinInterface",
|
|
10040
|
+
"module": "src/common/mixins/FocusableMixin.ts"
|
|
10041
|
+
}
|
|
10042
|
+
},
|
|
10043
|
+
{
|
|
10044
|
+
"kind": "js",
|
|
10045
|
+
"name": "FocusableMixin",
|
|
10046
|
+
"declaration": {
|
|
10047
|
+
"name": "FocusableMixin",
|
|
10048
|
+
"module": "src/common/mixins/FocusableMixin.ts"
|
|
10049
|
+
}
|
|
10050
|
+
}
|
|
10051
|
+
]
|
|
10052
|
+
},
|
|
10053
|
+
{
|
|
10054
|
+
"kind": "javascript-module",
|
|
10055
|
+
"path": "src/common/mixins/FormAssociatedMixin.ts",
|
|
10056
|
+
"declarations": [
|
|
10057
|
+
{
|
|
10058
|
+
"kind": "class",
|
|
10059
|
+
"description": "",
|
|
10060
|
+
"name": "FormAssociatedMixinInterface",
|
|
10061
|
+
"members": [
|
|
10062
|
+
{
|
|
10063
|
+
"kind": "field",
|
|
10064
|
+
"name": "label",
|
|
10065
|
+
"type": {
|
|
10066
|
+
"text": "string"
|
|
10067
|
+
}
|
|
10068
|
+
},
|
|
10069
|
+
{
|
|
10070
|
+
"kind": "field",
|
|
10071
|
+
"name": "required",
|
|
10072
|
+
"type": {
|
|
10073
|
+
"text": "boolean"
|
|
10074
|
+
}
|
|
10075
|
+
},
|
|
10076
|
+
{
|
|
10077
|
+
"kind": "field",
|
|
10078
|
+
"name": "hint",
|
|
10079
|
+
"type": {
|
|
10080
|
+
"text": "string | undefined"
|
|
10081
|
+
}
|
|
10082
|
+
},
|
|
10083
|
+
{
|
|
10084
|
+
"kind": "field",
|
|
10085
|
+
"name": "hideLabel",
|
|
10086
|
+
"type": {
|
|
10087
|
+
"text": "boolean"
|
|
10088
|
+
}
|
|
10089
|
+
},
|
|
10090
|
+
{
|
|
10091
|
+
"kind": "field",
|
|
10092
|
+
"name": "placeholder",
|
|
10093
|
+
"type": {
|
|
10094
|
+
"text": "string | undefined"
|
|
10095
|
+
}
|
|
10096
|
+
},
|
|
10097
|
+
{
|
|
10098
|
+
"kind": "field",
|
|
10099
|
+
"name": "error",
|
|
10100
|
+
"type": {
|
|
10101
|
+
"text": "string | undefined"
|
|
10102
|
+
}
|
|
10103
|
+
},
|
|
10104
|
+
{
|
|
10105
|
+
"kind": "field",
|
|
10106
|
+
"name": "expand",
|
|
10107
|
+
"type": {
|
|
10108
|
+
"text": "boolean"
|
|
10109
|
+
}
|
|
10110
|
+
},
|
|
10111
|
+
{
|
|
10112
|
+
"kind": "field",
|
|
10113
|
+
"name": "inputId",
|
|
10114
|
+
"type": {
|
|
10115
|
+
"text": "string"
|
|
10116
|
+
},
|
|
10117
|
+
"privacy": "protected"
|
|
10118
|
+
},
|
|
10119
|
+
{
|
|
10120
|
+
"kind": "field",
|
|
10121
|
+
"name": "errorId",
|
|
10122
|
+
"type": {
|
|
10123
|
+
"text": "string"
|
|
10124
|
+
},
|
|
10125
|
+
"privacy": "protected"
|
|
10126
|
+
},
|
|
10127
|
+
{
|
|
10128
|
+
"kind": "field",
|
|
10129
|
+
"name": "hintId",
|
|
10130
|
+
"type": {
|
|
10131
|
+
"text": "string"
|
|
10132
|
+
},
|
|
10133
|
+
"privacy": "protected"
|
|
10134
|
+
},
|
|
10135
|
+
{
|
|
10136
|
+
"kind": "field",
|
|
10137
|
+
"name": "labelSlot",
|
|
10138
|
+
"type": {
|
|
10139
|
+
"text": "SlotController"
|
|
10140
|
+
},
|
|
10141
|
+
"privacy": "protected"
|
|
10142
|
+
},
|
|
10143
|
+
{
|
|
10144
|
+
"kind": "field",
|
|
10145
|
+
"name": "hintSlot",
|
|
10146
|
+
"type": {
|
|
10147
|
+
"text": "SlotController"
|
|
10148
|
+
},
|
|
10149
|
+
"privacy": "protected"
|
|
10150
|
+
},
|
|
10151
|
+
{
|
|
10152
|
+
"kind": "field",
|
|
10153
|
+
"name": "errorSlot",
|
|
10154
|
+
"type": {
|
|
10155
|
+
"text": "SlotController"
|
|
10156
|
+
},
|
|
10157
|
+
"privacy": "protected"
|
|
10158
|
+
},
|
|
10159
|
+
{
|
|
10160
|
+
"kind": "field",
|
|
10161
|
+
"name": "formData",
|
|
10162
|
+
"type": {
|
|
10163
|
+
"text": "FormDataController"
|
|
10164
|
+
},
|
|
10165
|
+
"privacy": "protected"
|
|
10166
|
+
},
|
|
10167
|
+
{
|
|
10168
|
+
"kind": "field",
|
|
10169
|
+
"name": "formValue",
|
|
10170
|
+
"type": {
|
|
10171
|
+
"text": "string | undefined"
|
|
10172
|
+
},
|
|
10173
|
+
"privacy": "protected"
|
|
10174
|
+
},
|
|
10175
|
+
{
|
|
10176
|
+
"kind": "field",
|
|
10177
|
+
"name": "hasError",
|
|
10178
|
+
"type": {
|
|
10179
|
+
"text": "boolean"
|
|
10180
|
+
},
|
|
10181
|
+
"privacy": "protected"
|
|
10182
|
+
},
|
|
10183
|
+
{
|
|
10184
|
+
"kind": "field",
|
|
10185
|
+
"name": "hasHint",
|
|
10186
|
+
"type": {
|
|
10187
|
+
"text": "boolean"
|
|
10188
|
+
},
|
|
10189
|
+
"privacy": "protected"
|
|
10190
|
+
},
|
|
10191
|
+
{
|
|
10192
|
+
"kind": "method",
|
|
10193
|
+
"name": "handleChange",
|
|
10194
|
+
"privacy": "protected",
|
|
10195
|
+
"return": {
|
|
10196
|
+
"type": {
|
|
10197
|
+
"text": "void"
|
|
10198
|
+
}
|
|
10199
|
+
},
|
|
10200
|
+
"parameters": [
|
|
10020
10201
|
{
|
|
10021
|
-
"name": "
|
|
10202
|
+
"name": "e",
|
|
10022
10203
|
"type": {
|
|
10023
|
-
"text": "
|
|
10204
|
+
"text": "Event"
|
|
10024
10205
|
}
|
|
10025
|
-
}
|
|
10206
|
+
}
|
|
10207
|
+
]
|
|
10208
|
+
},
|
|
10209
|
+
{
|
|
10210
|
+
"kind": "method",
|
|
10211
|
+
"name": "handleInput",
|
|
10212
|
+
"privacy": "protected",
|
|
10213
|
+
"return": {
|
|
10214
|
+
"type": {
|
|
10215
|
+
"text": "void"
|
|
10216
|
+
}
|
|
10217
|
+
},
|
|
10218
|
+
"parameters": [
|
|
10026
10219
|
{
|
|
10027
|
-
"name": "
|
|
10028
|
-
"optional": true,
|
|
10220
|
+
"name": "e",
|
|
10029
10221
|
"type": {
|
|
10030
|
-
"text": "
|
|
10222
|
+
"text": "Event"
|
|
10031
10223
|
}
|
|
10032
10224
|
}
|
|
10033
10225
|
]
|
|
10034
|
-
}
|
|
10035
|
-
]
|
|
10036
|
-
}
|
|
10037
|
-
],
|
|
10038
|
-
"exports": [
|
|
10039
|
-
{
|
|
10040
|
-
"kind": "js",
|
|
10041
|
-
"name": "EventController",
|
|
10042
|
-
"declaration": {
|
|
10043
|
-
"name": "EventController",
|
|
10044
|
-
"module": "src/common/controllers/EventController.ts"
|
|
10045
|
-
}
|
|
10046
|
-
}
|
|
10047
|
-
]
|
|
10048
|
-
},
|
|
10049
|
-
{
|
|
10050
|
-
"kind": "javascript-module",
|
|
10051
|
-
"path": "src/common/controllers/FormDataController.ts",
|
|
10052
|
-
"declarations": [
|
|
10053
|
-
{
|
|
10054
|
-
"kind": "class",
|
|
10055
|
-
"description": "",
|
|
10056
|
-
"name": "FormDataController",
|
|
10057
|
-
"members": [
|
|
10058
|
-
{
|
|
10059
|
-
"kind": "field",
|
|
10060
|
-
"name": "events",
|
|
10061
|
-
"type": {
|
|
10062
|
-
"text": "EventController"
|
|
10063
|
-
},
|
|
10064
|
-
"privacy": "private",
|
|
10065
|
-
"default": "new EventController(host)"
|
|
10066
10226
|
},
|
|
10067
10227
|
{
|
|
10068
10228
|
"kind": "method",
|
|
10069
|
-
"name": "
|
|
10229
|
+
"name": "renderLabel",
|
|
10230
|
+
"privacy": "protected",
|
|
10231
|
+
"return": {
|
|
10232
|
+
"type": {
|
|
10233
|
+
"text": "TemplateResult"
|
|
10234
|
+
}
|
|
10235
|
+
}
|
|
10070
10236
|
},
|
|
10071
10237
|
{
|
|
10072
|
-
"kind": "
|
|
10073
|
-
"name": "
|
|
10074
|
-
"privacy": "
|
|
10238
|
+
"kind": "method",
|
|
10239
|
+
"name": "renderError",
|
|
10240
|
+
"privacy": "protected",
|
|
10241
|
+
"return": {
|
|
10242
|
+
"type": {
|
|
10243
|
+
"text": "TemplateResult"
|
|
10244
|
+
}
|
|
10245
|
+
}
|
|
10075
10246
|
},
|
|
10076
10247
|
{
|
|
10077
|
-
"kind": "
|
|
10078
|
-
"name": "
|
|
10079
|
-
"
|
|
10248
|
+
"kind": "method",
|
|
10249
|
+
"name": "getDescribedBy",
|
|
10250
|
+
"privacy": "protected",
|
|
10251
|
+
"return": {
|
|
10252
|
+
"type": {
|
|
10253
|
+
"text": "string | undefined"
|
|
10254
|
+
}
|
|
10255
|
+
}
|
|
10080
10256
|
},
|
|
10081
10257
|
{
|
|
10082
|
-
"kind": "
|
|
10083
|
-
"name": "
|
|
10084
|
-
"
|
|
10258
|
+
"kind": "method",
|
|
10259
|
+
"name": "getInvalid",
|
|
10260
|
+
"privacy": "protected",
|
|
10261
|
+
"return": {
|
|
10262
|
+
"type": {
|
|
10263
|
+
"text": "\"true\" | undefined"
|
|
10264
|
+
}
|
|
10265
|
+
}
|
|
10085
10266
|
}
|
|
10086
10267
|
]
|
|
10087
|
-
}
|
|
10088
|
-
],
|
|
10089
|
-
"exports": [
|
|
10090
|
-
{
|
|
10091
|
-
"kind": "js",
|
|
10092
|
-
"name": "FormDataController",
|
|
10093
|
-
"declaration": {
|
|
10094
|
-
"name": "FormDataController",
|
|
10095
|
-
"module": "src/common/controllers/FormDataController.ts"
|
|
10096
|
-
}
|
|
10097
|
-
}
|
|
10098
|
-
]
|
|
10099
|
-
},
|
|
10100
|
-
{
|
|
10101
|
-
"kind": "javascript-module",
|
|
10102
|
-
"path": "src/common/controllers/LightDismissController.ts",
|
|
10103
|
-
"declarations": [
|
|
10268
|
+
},
|
|
10104
10269
|
{
|
|
10105
|
-
"kind": "
|
|
10270
|
+
"kind": "mixin",
|
|
10106
10271
|
"description": "",
|
|
10107
|
-
"name": "
|
|
10272
|
+
"name": "FormAssociatedMixin",
|
|
10108
10273
|
"members": [
|
|
10109
10274
|
{
|
|
10110
10275
|
"kind": "field",
|
|
10111
|
-
"name": "
|
|
10112
|
-
"
|
|
10113
|
-
|
|
10114
|
-
},
|
|
10115
|
-
"privacy": "private",
|
|
10116
|
-
"default": "new ShortcutController(this.host, { Escape: this.handleEsc })"
|
|
10276
|
+
"name": "labelSlot",
|
|
10277
|
+
"privacy": "protected",
|
|
10278
|
+
"default": "new SlotController(this, \"label\")"
|
|
10117
10279
|
},
|
|
10118
10280
|
{
|
|
10119
10281
|
"kind": "field",
|
|
10120
|
-
"name": "
|
|
10121
|
-
"
|
|
10122
|
-
|
|
10123
|
-
},
|
|
10124
|
-
"privacy": "private",
|
|
10125
|
-
"default": "new EventController(host)"
|
|
10126
|
-
},
|
|
10127
|
-
{
|
|
10128
|
-
"kind": "method",
|
|
10129
|
-
"name": "hostConnected"
|
|
10282
|
+
"name": "errorSlot",
|
|
10283
|
+
"privacy": "protected",
|
|
10284
|
+
"default": "new SlotController(this, \"error\")"
|
|
10130
10285
|
},
|
|
10131
10286
|
{
|
|
10132
10287
|
"kind": "field",
|
|
10133
|
-
"name": "
|
|
10134
|
-
"privacy": "
|
|
10288
|
+
"name": "hintSlot",
|
|
10289
|
+
"privacy": "protected",
|
|
10290
|
+
"default": "new SlotController(this, \"hint\")"
|
|
10135
10291
|
},
|
|
10136
10292
|
{
|
|
10137
10293
|
"kind": "field",
|
|
10138
|
-
"name": "
|
|
10139
|
-
"privacy": "
|
|
10294
|
+
"name": "formData",
|
|
10295
|
+
"privacy": "protected",
|
|
10296
|
+
"default": "new FormDataController(this, { value: () => this.formValue })"
|
|
10140
10297
|
},
|
|
10141
10298
|
{
|
|
10142
10299
|
"kind": "field",
|
|
10143
|
-
"name": "
|
|
10144
|
-
"
|
|
10300
|
+
"name": "formValue",
|
|
10301
|
+
"privacy": "protected"
|
|
10145
10302
|
},
|
|
10146
10303
|
{
|
|
10147
10304
|
"kind": "field",
|
|
10148
|
-
"name": "
|
|
10149
|
-
"
|
|
10150
|
-
|
|
10151
|
-
|
|
10152
|
-
|
|
10153
|
-
|
|
10154
|
-
|
|
10155
|
-
{
|
|
10156
|
-
"kind": "js",
|
|
10157
|
-
"name": "LightDismissController",
|
|
10158
|
-
"declaration": {
|
|
10159
|
-
"name": "LightDismissController",
|
|
10160
|
-
"module": "src/common/controllers/LightDismissController.ts"
|
|
10161
|
-
}
|
|
10162
|
-
}
|
|
10163
|
-
]
|
|
10164
|
-
},
|
|
10165
|
-
{
|
|
10166
|
-
"kind": "javascript-module",
|
|
10167
|
-
"path": "src/common/controllers/LightDomController.ts",
|
|
10168
|
-
"declarations": [
|
|
10169
|
-
{
|
|
10170
|
-
"kind": "class",
|
|
10171
|
-
"description": "",
|
|
10172
|
-
"name": "LightDomController",
|
|
10173
|
-
"members": [
|
|
10305
|
+
"name": "inputId",
|
|
10306
|
+
"type": {
|
|
10307
|
+
"text": "string"
|
|
10308
|
+
},
|
|
10309
|
+
"privacy": "protected",
|
|
10310
|
+
"default": "\"input\""
|
|
10311
|
+
},
|
|
10174
10312
|
{
|
|
10175
10313
|
"kind": "field",
|
|
10176
|
-
"name": "
|
|
10314
|
+
"name": "errorId",
|
|
10177
10315
|
"type": {
|
|
10178
|
-
"text": "
|
|
10316
|
+
"text": "string"
|
|
10179
10317
|
},
|
|
10180
|
-
"privacy": "
|
|
10318
|
+
"privacy": "protected",
|
|
10319
|
+
"default": "\"error\""
|
|
10181
10320
|
},
|
|
10182
10321
|
{
|
|
10183
|
-
"kind": "
|
|
10184
|
-
"name": "
|
|
10322
|
+
"kind": "field",
|
|
10323
|
+
"name": "hintId",
|
|
10324
|
+
"type": {
|
|
10325
|
+
"text": "string"
|
|
10326
|
+
},
|
|
10327
|
+
"privacy": "protected",
|
|
10328
|
+
"default": "\"hint\""
|
|
10185
10329
|
},
|
|
10186
10330
|
{
|
|
10187
|
-
"kind": "
|
|
10188
|
-
"name": "
|
|
10331
|
+
"kind": "field",
|
|
10332
|
+
"name": "label",
|
|
10333
|
+
"type": {
|
|
10334
|
+
"text": "string"
|
|
10335
|
+
},
|
|
10336
|
+
"default": "\"\"",
|
|
10337
|
+
"description": "Label for the input.",
|
|
10338
|
+
"attribute": "label"
|
|
10189
10339
|
},
|
|
10190
10340
|
{
|
|
10191
10341
|
"kind": "field",
|
|
10192
|
-
"name": "
|
|
10193
|
-
"
|
|
10342
|
+
"name": "hint",
|
|
10343
|
+
"type": {
|
|
10344
|
+
"text": "string | undefined"
|
|
10345
|
+
},
|
|
10346
|
+
"description": "Optional hint text to be displayed with the input. Alternatively use the hint slot.",
|
|
10347
|
+
"attribute": "hint"
|
|
10194
10348
|
},
|
|
10195
10349
|
{
|
|
10196
10350
|
"kind": "field",
|
|
10197
|
-
"name": "
|
|
10198
|
-
"
|
|
10199
|
-
|
|
10200
|
-
|
|
10201
|
-
|
|
10202
|
-
|
|
10203
|
-
|
|
10204
|
-
|
|
10205
|
-
"kind": "js",
|
|
10206
|
-
"name": "LightDomController",
|
|
10207
|
-
"declaration": {
|
|
10208
|
-
"name": "LightDomController",
|
|
10209
|
-
"module": "src/common/controllers/LightDomController.ts"
|
|
10210
|
-
}
|
|
10211
|
-
}
|
|
10212
|
-
]
|
|
10213
|
-
},
|
|
10214
|
-
{
|
|
10215
|
-
"kind": "javascript-module",
|
|
10216
|
-
"path": "src/common/controllers/LightSlotController.ts",
|
|
10217
|
-
"declarations": [
|
|
10218
|
-
{
|
|
10219
|
-
"kind": "class",
|
|
10220
|
-
"description": "Handles cases where a component needs to render to light DOM,\nand potentially sync component properties to user-supplied content.",
|
|
10221
|
-
"name": "LightSlotController",
|
|
10222
|
-
"members": [
|
|
10351
|
+
"name": "hideLabel",
|
|
10352
|
+
"type": {
|
|
10353
|
+
"text": "boolean"
|
|
10354
|
+
},
|
|
10355
|
+
"default": "false",
|
|
10356
|
+
"description": "Visually hide the label, but still show it to assistive technologies like screen readers.",
|
|
10357
|
+
"attribute": "hide-label"
|
|
10358
|
+
},
|
|
10223
10359
|
{
|
|
10224
10360
|
"kind": "field",
|
|
10225
|
-
"name": "
|
|
10361
|
+
"name": "placeholder",
|
|
10226
10362
|
"type": {
|
|
10227
|
-
"text": "
|
|
10363
|
+
"text": "string | undefined"
|
|
10228
10364
|
},
|
|
10229
|
-
"
|
|
10365
|
+
"description": "Placeholder text to display within the input.",
|
|
10366
|
+
"attribute": "placeholder"
|
|
10230
10367
|
},
|
|
10231
10368
|
{
|
|
10232
10369
|
"kind": "field",
|
|
10233
|
-
"name": "
|
|
10370
|
+
"name": "error",
|
|
10234
10371
|
"type": {
|
|
10235
|
-
"text": "
|
|
10372
|
+
"text": "string | undefined"
|
|
10236
10373
|
},
|
|
10237
|
-
"
|
|
10238
|
-
"
|
|
10374
|
+
"description": "Optional error to be shown with the input. Alternatively use the error slot.",
|
|
10375
|
+
"attribute": "error"
|
|
10239
10376
|
},
|
|
10240
10377
|
{
|
|
10241
|
-
"kind": "
|
|
10242
|
-
"name": "
|
|
10243
|
-
"
|
|
10244
|
-
"
|
|
10245
|
-
|
|
10246
|
-
|
|
10378
|
+
"kind": "field",
|
|
10379
|
+
"name": "required",
|
|
10380
|
+
"type": {
|
|
10381
|
+
"text": "boolean"
|
|
10382
|
+
},
|
|
10383
|
+
"default": "false",
|
|
10384
|
+
"description": "Determines whether the input is required or not.\nAn input marked as required will be announced as such to users of assistive technology.\nWhen using this property you need to also set “novalidate” attribute on a form element to prevent browser from displaying its own validation errors.",
|
|
10385
|
+
"attribute": "required"
|
|
10247
10386
|
},
|
|
10248
10387
|
{
|
|
10249
|
-
"kind": "
|
|
10250
|
-
"name": "
|
|
10388
|
+
"kind": "field",
|
|
10389
|
+
"name": "expand",
|
|
10390
|
+
"type": {
|
|
10391
|
+
"text": "boolean"
|
|
10392
|
+
},
|
|
10393
|
+
"default": "false",
|
|
10394
|
+
"description": "Controls whether the input expands to fill the width of its container.",
|
|
10395
|
+
"attribute": "expand",
|
|
10396
|
+
"reflects": true
|
|
10251
10397
|
},
|
|
10252
10398
|
{
|
|
10253
|
-
"kind": "
|
|
10254
|
-
"name": "
|
|
10399
|
+
"kind": "method",
|
|
10400
|
+
"name": "handleInput",
|
|
10255
10401
|
"privacy": "protected",
|
|
10256
10402
|
"parameters": [
|
|
10257
10403
|
{
|
|
10258
|
-
"name": "
|
|
10404
|
+
"name": "e",
|
|
10259
10405
|
"type": {
|
|
10260
10406
|
"text": "Event"
|
|
10261
10407
|
}
|
|
10262
10408
|
}
|
|
10263
|
-
]
|
|
10264
|
-
"inheritedFrom": {
|
|
10265
|
-
"name": "SlotController",
|
|
10266
|
-
"module": "src/common/controllers/SlotController.ts"
|
|
10267
|
-
}
|
|
10409
|
+
]
|
|
10268
10410
|
},
|
|
10269
10411
|
{
|
|
10270
10412
|
"kind": "method",
|
|
10271
|
-
"name": "
|
|
10272
|
-
"privacy": "
|
|
10273
|
-
|
|
10274
|
-
|
|
10275
|
-
|
|
10276
|
-
|
|
10277
|
-
|
|
10278
|
-
|
|
10279
|
-
|
|
10280
|
-
|
|
10281
|
-
"name": "events",
|
|
10282
|
-
"type": {
|
|
10283
|
-
"text": "EventController"
|
|
10284
|
-
},
|
|
10285
|
-
"privacy": "private",
|
|
10286
|
-
"default": "new EventController(host)",
|
|
10287
|
-
"inheritedFrom": {
|
|
10288
|
-
"name": "SlotController",
|
|
10289
|
-
"module": "src/common/controllers/SlotController.ts"
|
|
10290
|
-
}
|
|
10413
|
+
"name": "handleChange",
|
|
10414
|
+
"privacy": "protected",
|
|
10415
|
+
"parameters": [
|
|
10416
|
+
{
|
|
10417
|
+
"name": "e",
|
|
10418
|
+
"type": {
|
|
10419
|
+
"text": "Event"
|
|
10420
|
+
}
|
|
10421
|
+
}
|
|
10422
|
+
]
|
|
10291
10423
|
},
|
|
10292
10424
|
{
|
|
10293
|
-
"kind": "
|
|
10294
|
-
"name": "
|
|
10295
|
-
"
|
|
10296
|
-
"name": "SlotController",
|
|
10297
|
-
"module": "src/common/controllers/SlotController.ts"
|
|
10298
|
-
}
|
|
10425
|
+
"kind": "method",
|
|
10426
|
+
"name": "renderLabel",
|
|
10427
|
+
"privacy": "protected"
|
|
10299
10428
|
},
|
|
10300
10429
|
{
|
|
10301
|
-
"kind": "
|
|
10302
|
-
"name": "
|
|
10303
|
-
"
|
|
10304
|
-
"name": "SlotController",
|
|
10305
|
-
"module": "src/common/controllers/SlotController.ts"
|
|
10306
|
-
}
|
|
10430
|
+
"kind": "method",
|
|
10431
|
+
"name": "renderError",
|
|
10432
|
+
"privacy": "protected"
|
|
10307
10433
|
},
|
|
10308
10434
|
{
|
|
10309
|
-
"kind": "
|
|
10310
|
-
"name": "
|
|
10311
|
-
"
|
|
10312
|
-
"name": "SlotController",
|
|
10313
|
-
"module": "src/common/controllers/SlotController.ts"
|
|
10314
|
-
}
|
|
10435
|
+
"kind": "method",
|
|
10436
|
+
"name": "getDescribedBy",
|
|
10437
|
+
"privacy": "protected"
|
|
10315
10438
|
},
|
|
10316
10439
|
{
|
|
10317
|
-
"kind": "
|
|
10318
|
-
"name": "
|
|
10319
|
-
"privacy": "
|
|
10320
|
-
"inheritedFrom": {
|
|
10321
|
-
"name": "SlotController",
|
|
10322
|
-
"module": "src/common/controllers/SlotController.ts"
|
|
10323
|
-
}
|
|
10440
|
+
"kind": "method",
|
|
10441
|
+
"name": "getInvalid",
|
|
10442
|
+
"privacy": "protected"
|
|
10324
10443
|
},
|
|
10325
10444
|
{
|
|
10326
10445
|
"kind": "field",
|
|
10327
|
-
"name": "
|
|
10328
|
-
"
|
|
10329
|
-
"inheritedFrom": {
|
|
10330
|
-
"name": "SlotController",
|
|
10331
|
-
"module": "src/common/controllers/SlotController.ts"
|
|
10332
|
-
}
|
|
10446
|
+
"name": "hasHint",
|
|
10447
|
+
"privacy": "protected"
|
|
10333
10448
|
},
|
|
10334
10449
|
{
|
|
10335
10450
|
"kind": "field",
|
|
10336
|
-
"name": "
|
|
10337
|
-
"
|
|
10338
|
-
"inheritedFrom": {
|
|
10339
|
-
"name": "SlotController",
|
|
10340
|
-
"module": "src/common/controllers/SlotController.ts"
|
|
10341
|
-
}
|
|
10451
|
+
"name": "hasError",
|
|
10452
|
+
"privacy": "protected"
|
|
10342
10453
|
}
|
|
10343
10454
|
],
|
|
10344
|
-
"
|
|
10345
|
-
"name": "SlotController",
|
|
10346
|
-
"module": "/src/common/controllers/SlotController.js"
|
|
10347
|
-
},
|
|
10348
|
-
"status": null,
|
|
10349
|
-
"category": null
|
|
10350
|
-
}
|
|
10351
|
-
],
|
|
10352
|
-
"exports": [
|
|
10353
|
-
{
|
|
10354
|
-
"kind": "js",
|
|
10355
|
-
"name": "LightSlotController",
|
|
10356
|
-
"declaration": {
|
|
10357
|
-
"name": "LightSlotController",
|
|
10358
|
-
"module": "src/common/controllers/LightSlotController.ts"
|
|
10359
|
-
}
|
|
10360
|
-
}
|
|
10361
|
-
]
|
|
10362
|
-
},
|
|
10363
|
-
{
|
|
10364
|
-
"kind": "javascript-module",
|
|
10365
|
-
"path": "src/common/controllers/PortalController.ts",
|
|
10366
|
-
"declarations": [
|
|
10367
|
-
{
|
|
10368
|
-
"kind": "class",
|
|
10369
|
-
"description": "",
|
|
10370
|
-
"name": "PortalController",
|
|
10371
|
-
"members": [
|
|
10455
|
+
"events": [
|
|
10372
10456
|
{
|
|
10373
|
-
"
|
|
10374
|
-
"name": "renderHook",
|
|
10457
|
+
"name": "input",
|
|
10375
10458
|
"type": {
|
|
10376
|
-
"text": "
|
|
10459
|
+
"text": "NordEvent"
|
|
10377
10460
|
},
|
|
10378
|
-
"
|
|
10461
|
+
"description": "Fired as the user types into the input."
|
|
10379
10462
|
},
|
|
10380
10463
|
{
|
|
10381
|
-
"
|
|
10382
|
-
"name": "lightDom",
|
|
10464
|
+
"name": "change",
|
|
10383
10465
|
"type": {
|
|
10384
|
-
"text": "
|
|
10466
|
+
"text": "NordEvent"
|
|
10385
10467
|
},
|
|
10386
|
-
"
|
|
10387
|
-
|
|
10388
|
-
|
|
10389
|
-
|
|
10390
|
-
"kind": "method",
|
|
10391
|
-
"name": "hostConnected"
|
|
10392
|
-
},
|
|
10393
|
-
{
|
|
10394
|
-
"kind": "method",
|
|
10395
|
-
"name": "hostUpdated"
|
|
10396
|
-
},
|
|
10397
|
-
{
|
|
10398
|
-
"kind": "method",
|
|
10399
|
-
"name": "hostDisconnected"
|
|
10400
|
-
},
|
|
10468
|
+
"description": "Fired whenever the input's value is changed via user interaction."
|
|
10469
|
+
}
|
|
10470
|
+
],
|
|
10471
|
+
"attributes": [
|
|
10401
10472
|
{
|
|
10402
|
-
"
|
|
10403
|
-
"
|
|
10404
|
-
|
|
10473
|
+
"name": "label",
|
|
10474
|
+
"type": {
|
|
10475
|
+
"text": "string"
|
|
10476
|
+
},
|
|
10477
|
+
"default": "\"\"",
|
|
10478
|
+
"description": "Label for the input.",
|
|
10479
|
+
"fieldName": "label"
|
|
10405
10480
|
},
|
|
10406
10481
|
{
|
|
10407
|
-
"
|
|
10408
|
-
"name": "options",
|
|
10409
|
-
"default": "options"
|
|
10410
|
-
}
|
|
10411
|
-
]
|
|
10412
|
-
}
|
|
10413
|
-
],
|
|
10414
|
-
"exports": [
|
|
10415
|
-
{
|
|
10416
|
-
"kind": "js",
|
|
10417
|
-
"name": "PortalController",
|
|
10418
|
-
"declaration": {
|
|
10419
|
-
"name": "PortalController",
|
|
10420
|
-
"module": "src/common/controllers/PortalController.ts"
|
|
10421
|
-
}
|
|
10422
|
-
}
|
|
10423
|
-
]
|
|
10424
|
-
},
|
|
10425
|
-
{
|
|
10426
|
-
"kind": "javascript-module",
|
|
10427
|
-
"path": "src/common/controllers/ShortcutController.ts",
|
|
10428
|
-
"declarations": [
|
|
10429
|
-
{
|
|
10430
|
-
"kind": "class",
|
|
10431
|
-
"description": "",
|
|
10432
|
-
"name": "ShortcutController",
|
|
10433
|
-
"members": [
|
|
10434
|
-
{
|
|
10435
|
-
"kind": "field",
|
|
10436
|
-
"name": "unregister",
|
|
10482
|
+
"name": "hint",
|
|
10437
10483
|
"type": {
|
|
10438
|
-
"text": "
|
|
10484
|
+
"text": "string | undefined"
|
|
10439
10485
|
},
|
|
10440
|
-
"
|
|
10486
|
+
"description": "Optional hint text to be displayed with the input. Alternatively use the hint slot.",
|
|
10487
|
+
"fieldName": "hint"
|
|
10441
10488
|
},
|
|
10442
10489
|
{
|
|
10443
|
-
"
|
|
10444
|
-
"
|
|
10490
|
+
"name": "hide-label",
|
|
10491
|
+
"type": {
|
|
10492
|
+
"text": "boolean"
|
|
10493
|
+
},
|
|
10494
|
+
"default": "false",
|
|
10495
|
+
"description": "Visually hide the label, but still show it to assistive technologies like screen readers.",
|
|
10496
|
+
"fieldName": "hideLabel"
|
|
10445
10497
|
},
|
|
10446
10498
|
{
|
|
10447
|
-
"
|
|
10448
|
-
"
|
|
10499
|
+
"name": "placeholder",
|
|
10500
|
+
"type": {
|
|
10501
|
+
"text": "string | undefined"
|
|
10502
|
+
},
|
|
10503
|
+
"description": "Placeholder text to display within the input.",
|
|
10504
|
+
"fieldName": "placeholder"
|
|
10449
10505
|
},
|
|
10450
10506
|
{
|
|
10451
|
-
"
|
|
10452
|
-
"
|
|
10507
|
+
"name": "error",
|
|
10508
|
+
"type": {
|
|
10509
|
+
"text": "string | undefined"
|
|
10510
|
+
},
|
|
10511
|
+
"description": "Optional error to be shown with the input. Alternatively use the error slot.",
|
|
10512
|
+
"fieldName": "error"
|
|
10453
10513
|
},
|
|
10454
10514
|
{
|
|
10455
|
-
"
|
|
10456
|
-
"
|
|
10457
|
-
|
|
10458
|
-
|
|
10459
|
-
|
|
10460
|
-
|
|
10461
|
-
|
|
10462
|
-
}
|
|
10463
|
-
}
|
|
10464
|
-
]
|
|
10515
|
+
"name": "required",
|
|
10516
|
+
"type": {
|
|
10517
|
+
"text": "boolean"
|
|
10518
|
+
},
|
|
10519
|
+
"default": "false",
|
|
10520
|
+
"description": "Determines whether the input is required or not.\nAn input marked as required will be announced as such to users of assistive technology.\nWhen using this property you need to also set “novalidate” attribute on a form element to prevent browser from displaying its own validation errors.",
|
|
10521
|
+
"fieldName": "required"
|
|
10465
10522
|
},
|
|
10466
10523
|
{
|
|
10467
|
-
"
|
|
10468
|
-
"
|
|
10469
|
-
|
|
10470
|
-
|
|
10524
|
+
"name": "expand",
|
|
10525
|
+
"type": {
|
|
10526
|
+
"text": "boolean"
|
|
10527
|
+
},
|
|
10528
|
+
"default": "false",
|
|
10529
|
+
"description": "Controls whether the input expands to fill the width of its container.",
|
|
10530
|
+
"fieldName": "expand"
|
|
10531
|
+
}
|
|
10532
|
+
],
|
|
10533
|
+
"parameters": [
|
|
10471
10534
|
{
|
|
10472
|
-
"
|
|
10473
|
-
"
|
|
10474
|
-
|
|
10535
|
+
"name": "superClass",
|
|
10536
|
+
"type": {
|
|
10537
|
+
"text": "T"
|
|
10538
|
+
}
|
|
10475
10539
|
}
|
|
10476
10540
|
]
|
|
10477
10541
|
}
|
|
@@ -10479,192 +10543,136 @@
|
|
|
10479
10543
|
"exports": [
|
|
10480
10544
|
{
|
|
10481
10545
|
"kind": "js",
|
|
10482
|
-
"name": "
|
|
10546
|
+
"name": "FormAssociatedMixinInterface",
|
|
10483
10547
|
"declaration": {
|
|
10484
|
-
"name": "
|
|
10485
|
-
"module": "src/common/
|
|
10548
|
+
"name": "FormAssociatedMixinInterface",
|
|
10549
|
+
"module": "src/common/mixins/FormAssociatedMixin.ts"
|
|
10486
10550
|
}
|
|
10487
10551
|
},
|
|
10488
10552
|
{
|
|
10489
10553
|
"kind": "js",
|
|
10490
|
-
"name": "
|
|
10554
|
+
"name": "FormAssociatedMixin",
|
|
10491
10555
|
"declaration": {
|
|
10492
|
-
"name": "
|
|
10493
|
-
"module": "src/common/
|
|
10556
|
+
"name": "FormAssociatedMixin",
|
|
10557
|
+
"module": "src/common/mixins/FormAssociatedMixin.ts"
|
|
10494
10558
|
}
|
|
10495
10559
|
}
|
|
10496
10560
|
]
|
|
10497
10561
|
},
|
|
10498
10562
|
{
|
|
10499
10563
|
"kind": "javascript-module",
|
|
10500
|
-
"path": "src/common/
|
|
10564
|
+
"path": "src/common/mixins/InputMixin.ts",
|
|
10501
10565
|
"declarations": [
|
|
10502
10566
|
{
|
|
10503
10567
|
"kind": "class",
|
|
10504
10568
|
"description": "",
|
|
10505
|
-
"name": "
|
|
10569
|
+
"name": "InputMixinInterface",
|
|
10506
10570
|
"members": [
|
|
10507
10571
|
{
|
|
10508
10572
|
"kind": "field",
|
|
10509
|
-
"name": "
|
|
10573
|
+
"name": "name",
|
|
10510
10574
|
"type": {
|
|
10511
|
-
"text": "
|
|
10512
|
-
}
|
|
10513
|
-
"privacy": "private",
|
|
10514
|
-
"default": "new EventController(host)"
|
|
10515
|
-
},
|
|
10516
|
-
{
|
|
10517
|
-
"kind": "method",
|
|
10518
|
-
"name": "hostConnected"
|
|
10519
|
-
},
|
|
10520
|
-
{
|
|
10521
|
-
"kind": "field",
|
|
10522
|
-
"name": "hasContent"
|
|
10523
|
-
},
|
|
10524
|
-
{
|
|
10525
|
-
"kind": "field",
|
|
10526
|
-
"name": "isEmpty"
|
|
10527
|
-
},
|
|
10528
|
-
{
|
|
10529
|
-
"kind": "field",
|
|
10530
|
-
"name": "content"
|
|
10575
|
+
"text": "string"
|
|
10576
|
+
}
|
|
10531
10577
|
},
|
|
10532
10578
|
{
|
|
10533
10579
|
"kind": "field",
|
|
10534
|
-
"name": "
|
|
10535
|
-
"
|
|
10536
|
-
|
|
10537
|
-
|
|
10538
|
-
"kind": "method",
|
|
10539
|
-
"name": "onChange",
|
|
10540
|
-
"privacy": "protected",
|
|
10541
|
-
"parameters": [
|
|
10542
|
-
{
|
|
10543
|
-
"name": "_e",
|
|
10544
|
-
"type": {
|
|
10545
|
-
"text": "Event"
|
|
10546
|
-
}
|
|
10547
|
-
}
|
|
10548
|
-
]
|
|
10580
|
+
"name": "value",
|
|
10581
|
+
"type": {
|
|
10582
|
+
"text": "string"
|
|
10583
|
+
}
|
|
10549
10584
|
},
|
|
10550
10585
|
{
|
|
10551
10586
|
"kind": "field",
|
|
10552
|
-
"name": "
|
|
10553
|
-
"
|
|
10587
|
+
"name": "disabled",
|
|
10588
|
+
"type": {
|
|
10589
|
+
"text": "boolean"
|
|
10590
|
+
}
|
|
10554
10591
|
},
|
|
10555
10592
|
{
|
|
10556
10593
|
"kind": "field",
|
|
10557
|
-
"name": "
|
|
10558
|
-
"
|
|
10594
|
+
"name": "form",
|
|
10595
|
+
"type": {
|
|
10596
|
+
"text": "HTMLFormElement | undefined"
|
|
10597
|
+
}
|
|
10559
10598
|
}
|
|
10560
10599
|
]
|
|
10561
|
-
}
|
|
10562
|
-
],
|
|
10563
|
-
"exports": [
|
|
10564
|
-
{
|
|
10565
|
-
"kind": "js",
|
|
10566
|
-
"name": "SlotController",
|
|
10567
|
-
"declaration": {
|
|
10568
|
-
"name": "SlotController",
|
|
10569
|
-
"module": "src/common/controllers/SlotController.ts"
|
|
10570
|
-
}
|
|
10571
|
-
}
|
|
10572
|
-
]
|
|
10573
|
-
},
|
|
10574
|
-
{
|
|
10575
|
-
"kind": "javascript-module",
|
|
10576
|
-
"path": "src/common/controllers/SwipeController.ts",
|
|
10577
|
-
"declarations": [
|
|
10600
|
+
},
|
|
10578
10601
|
{
|
|
10579
|
-
"kind": "
|
|
10602
|
+
"kind": "mixin",
|
|
10580
10603
|
"description": "",
|
|
10581
|
-
"name": "
|
|
10604
|
+
"name": "InputMixin",
|
|
10582
10605
|
"members": [
|
|
10583
10606
|
{
|
|
10584
10607
|
"kind": "field",
|
|
10585
|
-
"name": "
|
|
10608
|
+
"name": "disabled",
|
|
10586
10609
|
"type": {
|
|
10587
|
-
"text": "
|
|
10610
|
+
"text": "boolean"
|
|
10588
10611
|
},
|
|
10589
|
-
"
|
|
10590
|
-
"
|
|
10612
|
+
"default": "false",
|
|
10613
|
+
"description": "Makes the component disabled. This prevents users from\nbeing able to interact with the component, and conveys\nits inactive state to assistive technologies.",
|
|
10614
|
+
"attribute": "disabled",
|
|
10615
|
+
"reflects": true
|
|
10591
10616
|
},
|
|
10592
10617
|
{
|
|
10593
10618
|
"kind": "field",
|
|
10594
|
-
"name": "
|
|
10619
|
+
"name": "name",
|
|
10595
10620
|
"type": {
|
|
10596
|
-
"text": "
|
|
10621
|
+
"text": "string | undefined"
|
|
10597
10622
|
},
|
|
10598
|
-
"
|
|
10599
|
-
"
|
|
10623
|
+
"description": "The name of the form component.",
|
|
10624
|
+
"attribute": "name"
|
|
10600
10625
|
},
|
|
10601
10626
|
{
|
|
10602
10627
|
"kind": "field",
|
|
10603
|
-
"name": "
|
|
10628
|
+
"name": "value",
|
|
10604
10629
|
"type": {
|
|
10605
|
-
"text": "
|
|
10630
|
+
"text": "string"
|
|
10606
10631
|
},
|
|
10607
|
-
"
|
|
10608
|
-
"
|
|
10632
|
+
"default": "\"\"",
|
|
10633
|
+
"description": "The value of the form component.",
|
|
10634
|
+
"attribute": "value"
|
|
10609
10635
|
},
|
|
10610
10636
|
{
|
|
10611
10637
|
"kind": "field",
|
|
10612
|
-
"name": "
|
|
10638
|
+
"name": "form",
|
|
10639
|
+
"privacy": "protected",
|
|
10640
|
+
"description": "Gets the form, if any, associated with the form element."
|
|
10641
|
+
}
|
|
10642
|
+
],
|
|
10643
|
+
"attributes": [
|
|
10644
|
+
{
|
|
10645
|
+
"name": "disabled",
|
|
10613
10646
|
"type": {
|
|
10614
|
-
"text": "
|
|
10647
|
+
"text": "boolean"
|
|
10615
10648
|
},
|
|
10616
|
-
"
|
|
10617
|
-
"
|
|
10649
|
+
"default": "false",
|
|
10650
|
+
"description": "Makes the component disabled. This prevents users from\nbeing able to interact with the component, and conveys\nits inactive state to assistive technologies.",
|
|
10651
|
+
"fieldName": "disabled"
|
|
10618
10652
|
},
|
|
10619
10653
|
{
|
|
10620
|
-
"
|
|
10621
|
-
"name": "options",
|
|
10654
|
+
"name": "name",
|
|
10622
10655
|
"type": {
|
|
10623
|
-
"text": "
|
|
10656
|
+
"text": "string | undefined"
|
|
10624
10657
|
},
|
|
10625
|
-
"
|
|
10626
|
-
"
|
|
10627
|
-
},
|
|
10628
|
-
{
|
|
10629
|
-
"kind": "method",
|
|
10630
|
-
"name": "hostUpdated"
|
|
10631
|
-
},
|
|
10632
|
-
{
|
|
10633
|
-
"kind": "method",
|
|
10634
|
-
"name": "hostDisconnected"
|
|
10635
|
-
},
|
|
10636
|
-
{
|
|
10637
|
-
"kind": "field",
|
|
10638
|
-
"name": "handleTouchStart",
|
|
10639
|
-
"privacy": "private"
|
|
10658
|
+
"description": "The name of the form component.",
|
|
10659
|
+
"fieldName": "name"
|
|
10640
10660
|
},
|
|
10641
10661
|
{
|
|
10642
|
-
"
|
|
10643
|
-
"name": "handleTouchEnd",
|
|
10644
|
-
"privacy": "private"
|
|
10645
|
-
}
|
|
10646
|
-
]
|
|
10647
|
-
},
|
|
10648
|
-
{
|
|
10649
|
-
"kind": "function",
|
|
10650
|
-
"name": "isHorizontalSwipe",
|
|
10651
|
-
"parameters": [
|
|
10652
|
-
{
|
|
10653
|
-
"name": "{ distX, distY }",
|
|
10662
|
+
"name": "value",
|
|
10654
10663
|
"type": {
|
|
10655
|
-
"text": "
|
|
10656
|
-
}
|
|
10664
|
+
"text": "string"
|
|
10665
|
+
},
|
|
10666
|
+
"default": "\"\"",
|
|
10667
|
+
"description": "The value of the form component.",
|
|
10668
|
+
"fieldName": "value"
|
|
10657
10669
|
}
|
|
10658
|
-
]
|
|
10659
|
-
},
|
|
10660
|
-
{
|
|
10661
|
-
"kind": "function",
|
|
10662
|
-
"name": "isDownwardsSwipe",
|
|
10670
|
+
],
|
|
10663
10671
|
"parameters": [
|
|
10664
10672
|
{
|
|
10665
|
-
"name": "
|
|
10673
|
+
"name": "superClass",
|
|
10666
10674
|
"type": {
|
|
10667
|
-
"text": "
|
|
10675
|
+
"text": "T"
|
|
10668
10676
|
}
|
|
10669
10677
|
}
|
|
10670
10678
|
]
|
|
@@ -10673,26 +10681,18 @@
|
|
|
10673
10681
|
"exports": [
|
|
10674
10682
|
{
|
|
10675
10683
|
"kind": "js",
|
|
10676
|
-
"name": "
|
|
10677
|
-
"declaration": {
|
|
10678
|
-
"name": "SwipeController",
|
|
10679
|
-
"module": "src/common/controllers/SwipeController.ts"
|
|
10680
|
-
}
|
|
10681
|
-
},
|
|
10682
|
-
{
|
|
10683
|
-
"kind": "js",
|
|
10684
|
-
"name": "isHorizontalSwipe",
|
|
10684
|
+
"name": "InputMixinInterface",
|
|
10685
10685
|
"declaration": {
|
|
10686
|
-
"name": "
|
|
10687
|
-
"module": "src/common/
|
|
10686
|
+
"name": "InputMixinInterface",
|
|
10687
|
+
"module": "src/common/mixins/InputMixin.ts"
|
|
10688
10688
|
}
|
|
10689
10689
|
},
|
|
10690
10690
|
{
|
|
10691
10691
|
"kind": "js",
|
|
10692
|
-
"name": "
|
|
10692
|
+
"name": "InputMixin",
|
|
10693
10693
|
"declaration": {
|
|
10694
|
-
"name": "
|
|
10695
|
-
"module": "src/common/
|
|
10694
|
+
"name": "InputMixin",
|
|
10695
|
+
"module": "src/common/mixins/InputMixin.ts"
|
|
10696
10696
|
}
|
|
10697
10697
|
}
|
|
10698
10698
|
]
|