@nordhealth/components 4.12.3 → 4.12.4
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 +1363 -1363
- package/lib/IconManager.js +1 -1
- package/lib/bundle.js +1 -1
- package/package.json +3 -3
package/custom-elements.json
CHANGED
|
@@ -15425,257 +15425,6 @@
|
|
|
15425
15425
|
}
|
|
15426
15426
|
]
|
|
15427
15427
|
},
|
|
15428
|
-
{
|
|
15429
|
-
"kind": "javascript-module",
|
|
15430
|
-
"path": "src/tab-group/TabGroup.ts",
|
|
15431
|
-
"declarations": [
|
|
15432
|
-
{
|
|
15433
|
-
"kind": "class",
|
|
15434
|
-
"description": "Tab Group allows multiple panels to be contained within a single window,\nusing tabs as a navigational element.",
|
|
15435
|
-
"name": "TabGroup",
|
|
15436
|
-
"cssProperties": [
|
|
15437
|
-
{
|
|
15438
|
-
"description": "Controls the padding around the tab group (including the tab list), using our [spacing tokens](/tokens/#space).",
|
|
15439
|
-
"name": "--n-tab-group-padding",
|
|
15440
|
-
"default": "0"
|
|
15441
|
-
}
|
|
15442
|
-
],
|
|
15443
|
-
"slots": [
|
|
15444
|
-
{
|
|
15445
|
-
"description": "The element which contains the content to be revealed.",
|
|
15446
|
-
"name": ""
|
|
15447
|
-
},
|
|
15448
|
-
{
|
|
15449
|
-
"description": "The element which contains all tabs to reveal tabbed content.",
|
|
15450
|
-
"name": "tab"
|
|
15451
|
-
}
|
|
15452
|
-
],
|
|
15453
|
-
"members": [
|
|
15454
|
-
{
|
|
15455
|
-
"kind": "field",
|
|
15456
|
-
"name": "direction",
|
|
15457
|
-
"privacy": "private",
|
|
15458
|
-
"default": "new DirectionController(this)"
|
|
15459
|
-
},
|
|
15460
|
-
{
|
|
15461
|
-
"kind": "field",
|
|
15462
|
-
"name": "observer",
|
|
15463
|
-
"type": {
|
|
15464
|
-
"text": "MutationObserver | undefined"
|
|
15465
|
-
},
|
|
15466
|
-
"privacy": "private"
|
|
15467
|
-
},
|
|
15468
|
-
{
|
|
15469
|
-
"kind": "field",
|
|
15470
|
-
"name": "observerOptions",
|
|
15471
|
-
"type": {
|
|
15472
|
-
"text": "object"
|
|
15473
|
-
},
|
|
15474
|
-
"privacy": "private",
|
|
15475
|
-
"static": true,
|
|
15476
|
-
"default": "{ attributes: true, subtree: true, attributeFilter: ['selected'], attributeOldValue: true, }"
|
|
15477
|
-
},
|
|
15478
|
-
{
|
|
15479
|
-
"kind": "field",
|
|
15480
|
-
"name": "tabGroupId",
|
|
15481
|
-
"privacy": "private",
|
|
15482
|
-
"default": "`nord-tab-group-${tabGroupCount++}`",
|
|
15483
|
-
"description": "Unique ID for each tab group component present."
|
|
15484
|
-
},
|
|
15485
|
-
{
|
|
15486
|
-
"kind": "field",
|
|
15487
|
-
"name": "label",
|
|
15488
|
-
"type": {
|
|
15489
|
-
"text": "string"
|
|
15490
|
-
},
|
|
15491
|
-
"default": "''",
|
|
15492
|
-
"description": "Adds an accessible label to the tab list container.",
|
|
15493
|
-
"attribute": "label",
|
|
15494
|
-
"reflects": true
|
|
15495
|
-
},
|
|
15496
|
-
{
|
|
15497
|
-
"kind": "field",
|
|
15498
|
-
"name": "padding",
|
|
15499
|
-
"type": {
|
|
15500
|
-
"text": "'m' | 'l' | 'none' | undefined"
|
|
15501
|
-
},
|
|
15502
|
-
"default": "'m'",
|
|
15503
|
-
"description": "Controls the padding of the tab group component.",
|
|
15504
|
-
"attribute": "padding",
|
|
15505
|
-
"reflects": true
|
|
15506
|
-
},
|
|
15507
|
-
{
|
|
15508
|
-
"kind": "field",
|
|
15509
|
-
"name": "sticky",
|
|
15510
|
-
"type": {
|
|
15511
|
-
"text": "boolean"
|
|
15512
|
-
},
|
|
15513
|
-
"default": "false",
|
|
15514
|
-
"description": "Whether the tab list sticks to the top of the tab group as you scroll.",
|
|
15515
|
-
"attribute": "sticky",
|
|
15516
|
-
"reflects": true
|
|
15517
|
-
},
|
|
15518
|
-
{
|
|
15519
|
-
"kind": "field",
|
|
15520
|
-
"name": "selectedTab",
|
|
15521
|
-
"privacy": "private",
|
|
15522
|
-
"description": "The current tab node selected in the tab group."
|
|
15523
|
-
},
|
|
15524
|
-
{
|
|
15525
|
-
"kind": "method",
|
|
15526
|
-
"name": "updateSlots",
|
|
15527
|
-
"privacy": "private"
|
|
15528
|
-
},
|
|
15529
|
-
{
|
|
15530
|
-
"kind": "method",
|
|
15531
|
-
"name": "setupObserver",
|
|
15532
|
-
"privacy": "private"
|
|
15533
|
-
},
|
|
15534
|
-
{
|
|
15535
|
-
"kind": "field",
|
|
15536
|
-
"name": "handleMutation",
|
|
15537
|
-
"privacy": "private",
|
|
15538
|
-
"description": "If the selected tab is selected programmatically update all the tabs."
|
|
15539
|
-
},
|
|
15540
|
-
{
|
|
15541
|
-
"kind": "field",
|
|
15542
|
-
"name": "initialSelectedTab",
|
|
15543
|
-
"privacy": "private",
|
|
15544
|
-
"description": "Get the selected tab button, or the first tab button.",
|
|
15545
|
-
"readonly": true
|
|
15546
|
-
},
|
|
15547
|
-
{
|
|
15548
|
-
"kind": "method",
|
|
15549
|
-
"name": "setupTabs",
|
|
15550
|
-
"privacy": "private",
|
|
15551
|
-
"description": "Apply accessible attributes and values to the tab buttons."
|
|
15552
|
-
},
|
|
15553
|
-
{
|
|
15554
|
-
"kind": "method",
|
|
15555
|
-
"name": "setupPanels",
|
|
15556
|
-
"privacy": "private",
|
|
15557
|
-
"description": "Apply accessible attributes and values to the tab panels."
|
|
15558
|
-
},
|
|
15559
|
-
{
|
|
15560
|
-
"kind": "method",
|
|
15561
|
-
"name": "handleTabChange",
|
|
15562
|
-
"privacy": "private",
|
|
15563
|
-
"parameters": [
|
|
15564
|
-
{
|
|
15565
|
-
"name": "event",
|
|
15566
|
-
"type": {
|
|
15567
|
-
"text": "Event"
|
|
15568
|
-
}
|
|
15569
|
-
}
|
|
15570
|
-
]
|
|
15571
|
-
},
|
|
15572
|
-
{
|
|
15573
|
-
"kind": "method",
|
|
15574
|
-
"name": "previousTab",
|
|
15575
|
-
"privacy": "private",
|
|
15576
|
-
"parameters": [
|
|
15577
|
-
{
|
|
15578
|
-
"name": "tab",
|
|
15579
|
-
"type": {
|
|
15580
|
-
"text": "Tab"
|
|
15581
|
-
}
|
|
15582
|
-
}
|
|
15583
|
-
],
|
|
15584
|
-
"description": "Get the previous tab button in the tab group"
|
|
15585
|
-
},
|
|
15586
|
-
{
|
|
15587
|
-
"kind": "method",
|
|
15588
|
-
"name": "handleKeydown",
|
|
15589
|
-
"privacy": "private",
|
|
15590
|
-
"parameters": [
|
|
15591
|
-
{
|
|
15592
|
-
"name": "event",
|
|
15593
|
-
"type": {
|
|
15594
|
-
"text": "KeyboardEvent"
|
|
15595
|
-
}
|
|
15596
|
-
}
|
|
15597
|
-
],
|
|
15598
|
-
"description": "Handle keyboard accessible controls."
|
|
15599
|
-
},
|
|
15600
|
-
{
|
|
15601
|
-
"kind": "method",
|
|
15602
|
-
"name": "updateSelectedTab",
|
|
15603
|
-
"privacy": "private",
|
|
15604
|
-
"parameters": [
|
|
15605
|
-
{
|
|
15606
|
-
"name": "selectedTab",
|
|
15607
|
-
"type": {
|
|
15608
|
-
"text": "Tab"
|
|
15609
|
-
}
|
|
15610
|
-
}
|
|
15611
|
-
],
|
|
15612
|
-
"description": "Update the selected tab button with attributes and values.\nUpdate the tab group state."
|
|
15613
|
-
}
|
|
15614
|
-
],
|
|
15615
|
-
"attributes": [
|
|
15616
|
-
{
|
|
15617
|
-
"name": "label",
|
|
15618
|
-
"type": {
|
|
15619
|
-
"text": "string"
|
|
15620
|
-
},
|
|
15621
|
-
"default": "''",
|
|
15622
|
-
"description": "Adds an accessible label to the tab list container.",
|
|
15623
|
-
"fieldName": "label"
|
|
15624
|
-
},
|
|
15625
|
-
{
|
|
15626
|
-
"name": "padding",
|
|
15627
|
-
"type": {
|
|
15628
|
-
"text": "'m' | 'l' | 'none' | undefined"
|
|
15629
|
-
},
|
|
15630
|
-
"default": "'m'",
|
|
15631
|
-
"description": "Controls the padding of the tab group component.",
|
|
15632
|
-
"fieldName": "padding"
|
|
15633
|
-
},
|
|
15634
|
-
{
|
|
15635
|
-
"name": "sticky",
|
|
15636
|
-
"type": {
|
|
15637
|
-
"text": "boolean"
|
|
15638
|
-
},
|
|
15639
|
-
"default": "false",
|
|
15640
|
-
"description": "Whether the tab list sticks to the top of the tab group as you scroll.",
|
|
15641
|
-
"fieldName": "sticky"
|
|
15642
|
-
}
|
|
15643
|
-
],
|
|
15644
|
-
"superclass": {
|
|
15645
|
-
"name": "LitElement",
|
|
15646
|
-
"package": "lit"
|
|
15647
|
-
},
|
|
15648
|
-
"localization": [],
|
|
15649
|
-
"status": "ready",
|
|
15650
|
-
"category": "navigation",
|
|
15651
|
-
"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 allow multiple panels to be contained within a single window.\n- Use the tab panel and tab components within the tab group component.\n- Use the tab and tab panel components in order to create a tab group content structure.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t use tabs to navigate to other pages. Use navigation or links instead.\n- Don't use other components to the tab and tab panel within the tab group component.\n- Don't obscure important information within a tab panel that isn't revealed by default.\n- Don't add a tab or tab panel component without providing an accompanying panel or tab.\n\n</div>\n\n---\n\n## Content guidelines\n\nWhen writing tab 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\">My tasks</div>\n<div class=\"n-usage n-usage-dont\">My Tasks</div>\n\nAvoid unnecessary words and articles in tab labels, such as “the”, “an” or “a”:\n\n<div class=\"n-usage n-usage-do\">Dashboard</div>\n<div class=\"n-usage n-usage-dont\">The dashboard</div>\n\nAvoid ending tab labels in punctuation:\n\n<div class=\"n-usage n-usage-do\">Patients</div>\n<div class=\"n-usage n-usage-dont\">Patients.</div>\n\nUse as few words as possible to describe each tab label:\n\n<div class=\"n-usage n-usage-do\">Payments</div>\n<div class=\"n-usage n-usage-dont\">Payments in your clinic</div>\n\nAvoid all caps for tab labels:\n\n<div class=\"n-usage n-usage-do\">Dashboard</div>\n<div class=\"n-usage n-usage-dont\">DASHBOARD</div>\n\n---\n\n## Additional considerations\n\n- If the content contained within the tabs UI has significance or is important for the user to see, consider using a different form of presentation that doesn't obscure it.\n- If there is a particular tab panel you wish to show out of order of the tabs UI itself consider using the `selected` option on the tab component related to the panel to select the tab but prevent the order of the tabs being affected.\n",
|
|
15652
|
-
"examples": [],
|
|
15653
|
-
"dependencies": [
|
|
15654
|
-
"tab"
|
|
15655
|
-
],
|
|
15656
|
-
"tagName": "nord-tab-group",
|
|
15657
|
-
"customElement": true
|
|
15658
|
-
}
|
|
15659
|
-
],
|
|
15660
|
-
"exports": [
|
|
15661
|
-
{
|
|
15662
|
-
"kind": "js",
|
|
15663
|
-
"name": "default",
|
|
15664
|
-
"declaration": {
|
|
15665
|
-
"name": "TabGroup",
|
|
15666
|
-
"module": "src/tab-group/TabGroup.ts"
|
|
15667
|
-
}
|
|
15668
|
-
},
|
|
15669
|
-
{
|
|
15670
|
-
"kind": "custom-element-definition",
|
|
15671
|
-
"name": "nord-tab-group",
|
|
15672
|
-
"declaration": {
|
|
15673
|
-
"name": "TabGroup",
|
|
15674
|
-
"module": "src/tab-group/TabGroup.ts"
|
|
15675
|
-
}
|
|
15676
|
-
}
|
|
15677
|
-
]
|
|
15678
|
-
},
|
|
15679
15428
|
{
|
|
15680
15429
|
"kind": "javascript-module",
|
|
15681
15430
|
"path": "src/tab-panel/TabPanel.ts",
|
|
@@ -17541,123 +17290,218 @@
|
|
|
17541
17290
|
},
|
|
17542
17291
|
{
|
|
17543
17292
|
"kind": "javascript-module",
|
|
17544
|
-
"path": "src/
|
|
17293
|
+
"path": "src/tab-group/TabGroup.ts",
|
|
17545
17294
|
"declarations": [
|
|
17546
17295
|
{
|
|
17547
17296
|
"kind": "class",
|
|
17548
|
-
"description": "
|
|
17549
|
-
"name": "
|
|
17550
|
-
"
|
|
17297
|
+
"description": "Tab Group allows multiple panels to be contained within a single window,\nusing tabs as a navigational element.",
|
|
17298
|
+
"name": "TabGroup",
|
|
17299
|
+
"cssProperties": [
|
|
17551
17300
|
{
|
|
17552
|
-
"description": "
|
|
17301
|
+
"description": "Controls the padding around the tab group (including the tab list), using our [spacing tokens](/tokens/#space).",
|
|
17302
|
+
"name": "--n-tab-group-padding",
|
|
17303
|
+
"default": "0"
|
|
17304
|
+
}
|
|
17305
|
+
],
|
|
17306
|
+
"slots": [
|
|
17307
|
+
{
|
|
17308
|
+
"description": "The element which contains the content to be revealed.",
|
|
17553
17309
|
"name": ""
|
|
17310
|
+
},
|
|
17311
|
+
{
|
|
17312
|
+
"description": "The element which contains all tabs to reveal tabbed content.",
|
|
17313
|
+
"name": "tab"
|
|
17554
17314
|
}
|
|
17555
17315
|
],
|
|
17556
17316
|
"members": [
|
|
17557
17317
|
{
|
|
17558
17318
|
"kind": "field",
|
|
17559
|
-
"name": "
|
|
17319
|
+
"name": "direction",
|
|
17320
|
+
"privacy": "private",
|
|
17321
|
+
"default": "new DirectionController(this)"
|
|
17322
|
+
},
|
|
17323
|
+
{
|
|
17324
|
+
"kind": "field",
|
|
17325
|
+
"name": "observer",
|
|
17560
17326
|
"type": {
|
|
17561
|
-
"text": "
|
|
17327
|
+
"text": "MutationObserver | undefined"
|
|
17562
17328
|
},
|
|
17563
17329
|
"privacy": "private"
|
|
17564
17330
|
},
|
|
17565
17331
|
{
|
|
17566
17332
|
"kind": "field",
|
|
17567
|
-
"name": "
|
|
17333
|
+
"name": "observerOptions",
|
|
17568
17334
|
"type": {
|
|
17569
|
-
"text": "
|
|
17335
|
+
"text": "object"
|
|
17570
17336
|
},
|
|
17571
|
-
"
|
|
17572
|
-
"
|
|
17573
|
-
"
|
|
17337
|
+
"privacy": "private",
|
|
17338
|
+
"static": true,
|
|
17339
|
+
"default": "{ attributes: true, subtree: true, attributeFilter: ['selected'], attributeOldValue: true, }"
|
|
17340
|
+
},
|
|
17341
|
+
{
|
|
17342
|
+
"kind": "field",
|
|
17343
|
+
"name": "tabGroupId",
|
|
17344
|
+
"privacy": "private",
|
|
17345
|
+
"default": "`nord-tab-group-${tabGroupCount++}`",
|
|
17346
|
+
"description": "Unique ID for each tab group component present."
|
|
17347
|
+
},
|
|
17348
|
+
{
|
|
17349
|
+
"kind": "field",
|
|
17350
|
+
"name": "label",
|
|
17351
|
+
"type": {
|
|
17352
|
+
"text": "string"
|
|
17353
|
+
},
|
|
17354
|
+
"default": "''",
|
|
17355
|
+
"description": "Adds an accessible label to the tab list container.",
|
|
17356
|
+
"attribute": "label",
|
|
17574
17357
|
"reflects": true
|
|
17575
17358
|
},
|
|
17576
17359
|
{
|
|
17577
17360
|
"kind": "field",
|
|
17578
|
-
"name": "
|
|
17361
|
+
"name": "padding",
|
|
17579
17362
|
"type": {
|
|
17580
|
-
"text": "
|
|
17363
|
+
"text": "'m' | 'l' | 'none' | undefined"
|
|
17581
17364
|
},
|
|
17582
|
-
"default": "
|
|
17583
|
-
"description": "
|
|
17584
|
-
"attribute": "
|
|
17365
|
+
"default": "'m'",
|
|
17366
|
+
"description": "Controls the padding of the tab group component.",
|
|
17367
|
+
"attribute": "padding",
|
|
17368
|
+
"reflects": true
|
|
17369
|
+
},
|
|
17370
|
+
{
|
|
17371
|
+
"kind": "field",
|
|
17372
|
+
"name": "sticky",
|
|
17373
|
+
"type": {
|
|
17374
|
+
"text": "boolean"
|
|
17375
|
+
},
|
|
17376
|
+
"default": "false",
|
|
17377
|
+
"description": "Whether the tab list sticks to the top of the tab group as you scroll.",
|
|
17378
|
+
"attribute": "sticky",
|
|
17585
17379
|
"reflects": true
|
|
17586
17380
|
},
|
|
17381
|
+
{
|
|
17382
|
+
"kind": "field",
|
|
17383
|
+
"name": "selectedTab",
|
|
17384
|
+
"privacy": "private",
|
|
17385
|
+
"description": "The current tab node selected in the tab group."
|
|
17386
|
+
},
|
|
17587
17387
|
{
|
|
17588
17388
|
"kind": "method",
|
|
17589
|
-
"name": "
|
|
17590
|
-
"
|
|
17591
|
-
"inheritedFrom": {
|
|
17592
|
-
"name": "NotificationMixin",
|
|
17593
|
-
"module": "src/common/mixins/NotificationMixin.ts"
|
|
17594
|
-
}
|
|
17389
|
+
"name": "updateSlots",
|
|
17390
|
+
"privacy": "private"
|
|
17595
17391
|
},
|
|
17596
17392
|
{
|
|
17597
17393
|
"kind": "method",
|
|
17598
|
-
"name": "
|
|
17599
|
-
"privacy": "
|
|
17394
|
+
"name": "setupObserver",
|
|
17395
|
+
"privacy": "private"
|
|
17600
17396
|
},
|
|
17601
17397
|
{
|
|
17602
17398
|
"kind": "field",
|
|
17603
|
-
"name": "
|
|
17604
|
-
"privacy": "
|
|
17605
|
-
"
|
|
17606
|
-
"name": "NotificationMixin",
|
|
17607
|
-
"module": "src/common/mixins/NotificationMixin.ts"
|
|
17608
|
-
}
|
|
17399
|
+
"name": "handleMutation",
|
|
17400
|
+
"privacy": "private",
|
|
17401
|
+
"description": "If the selected tab is selected programmatically update all the tabs."
|
|
17609
17402
|
},
|
|
17610
17403
|
{
|
|
17611
17404
|
"kind": "field",
|
|
17612
|
-
"name": "
|
|
17613
|
-
"
|
|
17614
|
-
|
|
17615
|
-
|
|
17616
|
-
|
|
17617
|
-
"default": "false",
|
|
17618
|
-
"inheritedFrom": {
|
|
17619
|
-
"name": "NotificationMixin",
|
|
17620
|
-
"module": "src/common/mixins/NotificationMixin.ts"
|
|
17621
|
-
}
|
|
17622
|
-
}
|
|
17623
|
-
],
|
|
17624
|
-
"events": [
|
|
17405
|
+
"name": "initialSelectedTab",
|
|
17406
|
+
"privacy": "private",
|
|
17407
|
+
"description": "Get the selected tab button, or the first tab button.",
|
|
17408
|
+
"readonly": true
|
|
17409
|
+
},
|
|
17625
17410
|
{
|
|
17626
|
-
"
|
|
17627
|
-
"
|
|
17628
|
-
|
|
17629
|
-
|
|
17630
|
-
|
|
17631
|
-
|
|
17632
|
-
|
|
17633
|
-
|
|
17634
|
-
|
|
17411
|
+
"kind": "method",
|
|
17412
|
+
"name": "setupTabs",
|
|
17413
|
+
"privacy": "private",
|
|
17414
|
+
"description": "Apply accessible attributes and values to the tab buttons."
|
|
17415
|
+
},
|
|
17416
|
+
{
|
|
17417
|
+
"kind": "method",
|
|
17418
|
+
"name": "setupPanels",
|
|
17419
|
+
"privacy": "private",
|
|
17420
|
+
"description": "Apply accessible attributes and values to the tab panels."
|
|
17421
|
+
},
|
|
17422
|
+
{
|
|
17423
|
+
"kind": "method",
|
|
17424
|
+
"name": "handleTabChange",
|
|
17425
|
+
"privacy": "private",
|
|
17426
|
+
"parameters": [
|
|
17427
|
+
{
|
|
17428
|
+
"name": "event",
|
|
17429
|
+
"type": {
|
|
17430
|
+
"text": "Event"
|
|
17431
|
+
}
|
|
17432
|
+
}
|
|
17433
|
+
]
|
|
17434
|
+
},
|
|
17435
|
+
{
|
|
17436
|
+
"kind": "method",
|
|
17437
|
+
"name": "previousTab",
|
|
17438
|
+
"privacy": "private",
|
|
17439
|
+
"parameters": [
|
|
17440
|
+
{
|
|
17441
|
+
"name": "tab",
|
|
17442
|
+
"type": {
|
|
17443
|
+
"text": "Tab"
|
|
17444
|
+
}
|
|
17445
|
+
}
|
|
17446
|
+
],
|
|
17447
|
+
"description": "Get the previous tab button in the tab group"
|
|
17448
|
+
},
|
|
17449
|
+
{
|
|
17450
|
+
"kind": "method",
|
|
17451
|
+
"name": "handleKeydown",
|
|
17452
|
+
"privacy": "private",
|
|
17453
|
+
"parameters": [
|
|
17454
|
+
{
|
|
17455
|
+
"name": "event",
|
|
17456
|
+
"type": {
|
|
17457
|
+
"text": "KeyboardEvent"
|
|
17458
|
+
}
|
|
17459
|
+
}
|
|
17460
|
+
],
|
|
17461
|
+
"description": "Handle keyboard accessible controls."
|
|
17462
|
+
},
|
|
17463
|
+
{
|
|
17464
|
+
"kind": "method",
|
|
17465
|
+
"name": "updateSelectedTab",
|
|
17466
|
+
"privacy": "private",
|
|
17467
|
+
"parameters": [
|
|
17468
|
+
{
|
|
17469
|
+
"name": "selectedTab",
|
|
17470
|
+
"type": {
|
|
17471
|
+
"text": "Tab"
|
|
17472
|
+
}
|
|
17473
|
+
}
|
|
17474
|
+
],
|
|
17475
|
+
"description": "Update the selected tab button with attributes and values.\nUpdate the tab group state."
|
|
17635
17476
|
}
|
|
17636
17477
|
],
|
|
17637
17478
|
"attributes": [
|
|
17638
17479
|
{
|
|
17639
|
-
"name": "
|
|
17480
|
+
"name": "label",
|
|
17640
17481
|
"type": {
|
|
17641
|
-
"text": "
|
|
17482
|
+
"text": "string"
|
|
17642
17483
|
},
|
|
17643
|
-
"default": "'
|
|
17644
|
-
"description": "
|
|
17645
|
-
"fieldName": "
|
|
17484
|
+
"default": "''",
|
|
17485
|
+
"description": "Adds an accessible label to the tab list container.",
|
|
17486
|
+
"fieldName": "label"
|
|
17646
17487
|
},
|
|
17647
17488
|
{
|
|
17648
|
-
"name": "
|
|
17489
|
+
"name": "padding",
|
|
17649
17490
|
"type": {
|
|
17650
|
-
"text": "
|
|
17491
|
+
"text": "'m' | 'l' | 'none' | undefined"
|
|
17651
17492
|
},
|
|
17652
|
-
"default": "
|
|
17653
|
-
"description": "
|
|
17654
|
-
"fieldName": "
|
|
17655
|
-
}
|
|
17656
|
-
],
|
|
17657
|
-
"mixins": [
|
|
17493
|
+
"default": "'m'",
|
|
17494
|
+
"description": "Controls the padding of the tab group component.",
|
|
17495
|
+
"fieldName": "padding"
|
|
17496
|
+
},
|
|
17658
17497
|
{
|
|
17659
|
-
"name": "
|
|
17660
|
-
"
|
|
17498
|
+
"name": "sticky",
|
|
17499
|
+
"type": {
|
|
17500
|
+
"text": "boolean"
|
|
17501
|
+
},
|
|
17502
|
+
"default": "false",
|
|
17503
|
+
"description": "Whether the tab list sticks to the top of the tab group as you scroll.",
|
|
17504
|
+
"fieldName": "sticky"
|
|
17661
17505
|
}
|
|
17662
17506
|
],
|
|
17663
17507
|
"superclass": {
|
|
@@ -17666,13 +17510,13 @@
|
|
|
17666
17510
|
},
|
|
17667
17511
|
"localization": [],
|
|
17668
17512
|
"status": "ready",
|
|
17669
|
-
"category": "
|
|
17670
|
-
"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
|
|
17513
|
+
"category": "navigation",
|
|
17514
|
+
"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 allow multiple panels to be contained within a single window.\n- Use the tab panel and tab components within the tab group component.\n- Use the tab and tab panel components in order to create a tab group content structure.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t use tabs to navigate to other pages. Use navigation or links instead.\n- Don't use other components to the tab and tab panel within the tab group component.\n- Don't obscure important information within a tab panel that isn't revealed by default.\n- Don't add a tab or tab panel component without providing an accompanying panel or tab.\n\n</div>\n\n---\n\n## Content guidelines\n\nWhen writing tab 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\">My tasks</div>\n<div class=\"n-usage n-usage-dont\">My Tasks</div>\n\nAvoid unnecessary words and articles in tab labels, such as “the”, “an” or “a”:\n\n<div class=\"n-usage n-usage-do\">Dashboard</div>\n<div class=\"n-usage n-usage-dont\">The dashboard</div>\n\nAvoid ending tab labels in punctuation:\n\n<div class=\"n-usage n-usage-do\">Patients</div>\n<div class=\"n-usage n-usage-dont\">Patients.</div>\n\nUse as few words as possible to describe each tab label:\n\n<div class=\"n-usage n-usage-do\">Payments</div>\n<div class=\"n-usage n-usage-dont\">Payments in your clinic</div>\n\nAvoid all caps for tab labels:\n\n<div class=\"n-usage n-usage-do\">Dashboard</div>\n<div class=\"n-usage n-usage-dont\">DASHBOARD</div>\n\n---\n\n## Additional considerations\n\n- If the content contained within the tabs UI has significance or is important for the user to see, consider using a different form of presentation that doesn't obscure it.\n- If there is a particular tab panel you wish to show out of order of the tabs UI itself consider using the `selected` option on the tab component related to the panel to select the tab but prevent the order of the tabs being affected.\n",
|
|
17671
17515
|
"examples": [],
|
|
17672
17516
|
"dependencies": [
|
|
17673
|
-
"
|
|
17517
|
+
"tab"
|
|
17674
17518
|
],
|
|
17675
|
-
"tagName": "nord-
|
|
17519
|
+
"tagName": "nord-tab-group",
|
|
17676
17520
|
"customElement": true
|
|
17677
17521
|
}
|
|
17678
17522
|
],
|
|
@@ -17681,16 +17525,16 @@
|
|
|
17681
17525
|
"kind": "js",
|
|
17682
17526
|
"name": "default",
|
|
17683
17527
|
"declaration": {
|
|
17684
|
-
"name": "
|
|
17685
|
-
"module": "src/
|
|
17528
|
+
"name": "TabGroup",
|
|
17529
|
+
"module": "src/tab-group/TabGroup.ts"
|
|
17686
17530
|
}
|
|
17687
17531
|
},
|
|
17688
17532
|
{
|
|
17689
17533
|
"kind": "custom-element-definition",
|
|
17690
|
-
"name": "nord-
|
|
17534
|
+
"name": "nord-tab-group",
|
|
17691
17535
|
"declaration": {
|
|
17692
|
-
"name": "
|
|
17693
|
-
"module": "src/
|
|
17536
|
+
"name": "TabGroup",
|
|
17537
|
+
"module": "src/tab-group/TabGroup.ts"
|
|
17694
17538
|
}
|
|
17695
17539
|
}
|
|
17696
17540
|
]
|
|
@@ -17782,18 +17626,174 @@
|
|
|
17782
17626
|
},
|
|
17783
17627
|
{
|
|
17784
17628
|
"kind": "javascript-module",
|
|
17785
|
-
"path": "src/
|
|
17629
|
+
"path": "src/toast/Toast.ts",
|
|
17786
17630
|
"declarations": [
|
|
17787
17631
|
{
|
|
17788
17632
|
"kind": "class",
|
|
17789
|
-
"description": "
|
|
17790
|
-
"name": "
|
|
17791
|
-
"
|
|
17633
|
+
"description": "Toasts are non-disruptive messages that appear in the interface\nto provide quick, at-a-glance feedback on the outcome of an action.",
|
|
17634
|
+
"name": "Toast",
|
|
17635
|
+
"slots": [
|
|
17792
17636
|
{
|
|
17793
|
-
"description": "
|
|
17794
|
-
"name": "
|
|
17795
|
-
|
|
17796
|
-
|
|
17637
|
+
"description": "Default slot used for the toast text/message.",
|
|
17638
|
+
"name": ""
|
|
17639
|
+
}
|
|
17640
|
+
],
|
|
17641
|
+
"members": [
|
|
17642
|
+
{
|
|
17643
|
+
"kind": "field",
|
|
17644
|
+
"name": "timeoutId",
|
|
17645
|
+
"type": {
|
|
17646
|
+
"text": "ReturnType<typeof setTimeout> | undefined"
|
|
17647
|
+
},
|
|
17648
|
+
"privacy": "private"
|
|
17649
|
+
},
|
|
17650
|
+
{
|
|
17651
|
+
"kind": "field",
|
|
17652
|
+
"name": "variant",
|
|
17653
|
+
"type": {
|
|
17654
|
+
"text": "'default' | 'danger'"
|
|
17655
|
+
},
|
|
17656
|
+
"default": "'default'",
|
|
17657
|
+
"description": "The style variant of the toast.",
|
|
17658
|
+
"attribute": "variant",
|
|
17659
|
+
"reflects": true
|
|
17660
|
+
},
|
|
17661
|
+
{
|
|
17662
|
+
"kind": "field",
|
|
17663
|
+
"name": "autoDismiss",
|
|
17664
|
+
"type": {
|
|
17665
|
+
"text": "number"
|
|
17666
|
+
},
|
|
17667
|
+
"default": "10000",
|
|
17668
|
+
"description": "Timeout in milliseconds before the toast is automatically dismissed.",
|
|
17669
|
+
"attribute": "auto-dismiss",
|
|
17670
|
+
"reflects": true
|
|
17671
|
+
},
|
|
17672
|
+
{
|
|
17673
|
+
"kind": "method",
|
|
17674
|
+
"name": "dismiss",
|
|
17675
|
+
"description": "Programmatically dismiss the toast.\nThe returned promise resolves when toast's exit animation is complete.",
|
|
17676
|
+
"inheritedFrom": {
|
|
17677
|
+
"name": "NotificationMixin",
|
|
17678
|
+
"module": "src/common/mixins/NotificationMixin.ts"
|
|
17679
|
+
}
|
|
17680
|
+
},
|
|
17681
|
+
{
|
|
17682
|
+
"kind": "method",
|
|
17683
|
+
"name": "handleAutoDismissChange",
|
|
17684
|
+
"privacy": "protected"
|
|
17685
|
+
},
|
|
17686
|
+
{
|
|
17687
|
+
"kind": "field",
|
|
17688
|
+
"name": "notificationRef",
|
|
17689
|
+
"privacy": "protected",
|
|
17690
|
+
"inheritedFrom": {
|
|
17691
|
+
"name": "NotificationMixin",
|
|
17692
|
+
"module": "src/common/mixins/NotificationMixin.ts"
|
|
17693
|
+
}
|
|
17694
|
+
},
|
|
17695
|
+
{
|
|
17696
|
+
"kind": "field",
|
|
17697
|
+
"name": "dismissed",
|
|
17698
|
+
"type": {
|
|
17699
|
+
"text": "boolean"
|
|
17700
|
+
},
|
|
17701
|
+
"privacy": "protected",
|
|
17702
|
+
"default": "false",
|
|
17703
|
+
"inheritedFrom": {
|
|
17704
|
+
"name": "NotificationMixin",
|
|
17705
|
+
"module": "src/common/mixins/NotificationMixin.ts"
|
|
17706
|
+
}
|
|
17707
|
+
}
|
|
17708
|
+
],
|
|
17709
|
+
"events": [
|
|
17710
|
+
{
|
|
17711
|
+
"name": "dismiss",
|
|
17712
|
+
"type": {
|
|
17713
|
+
"text": "NordEvent"
|
|
17714
|
+
},
|
|
17715
|
+
"description": "Fired when the toast is dismissed (via user action or auto-dismiss), and its exit animation has completed. This event should be used to remove the dismissed toast from the DOM.",
|
|
17716
|
+
"inheritedFrom": {
|
|
17717
|
+
"name": "NotificationMixin",
|
|
17718
|
+
"module": "src/common/mixins/NotificationMixin.ts"
|
|
17719
|
+
}
|
|
17720
|
+
}
|
|
17721
|
+
],
|
|
17722
|
+
"attributes": [
|
|
17723
|
+
{
|
|
17724
|
+
"name": "variant",
|
|
17725
|
+
"type": {
|
|
17726
|
+
"text": "'default' | 'danger'"
|
|
17727
|
+
},
|
|
17728
|
+
"default": "'default'",
|
|
17729
|
+
"description": "The style variant of the toast.",
|
|
17730
|
+
"fieldName": "variant"
|
|
17731
|
+
},
|
|
17732
|
+
{
|
|
17733
|
+
"name": "auto-dismiss",
|
|
17734
|
+
"type": {
|
|
17735
|
+
"text": "number"
|
|
17736
|
+
},
|
|
17737
|
+
"default": "10000",
|
|
17738
|
+
"description": "Timeout in milliseconds before the toast is automatically dismissed.",
|
|
17739
|
+
"fieldName": "autoDismiss"
|
|
17740
|
+
}
|
|
17741
|
+
],
|
|
17742
|
+
"mixins": [
|
|
17743
|
+
{
|
|
17744
|
+
"name": "NotificationMixin",
|
|
17745
|
+
"module": "/src/common/mixins/NotificationMixin.js"
|
|
17746
|
+
}
|
|
17747
|
+
],
|
|
17748
|
+
"superclass": {
|
|
17749
|
+
"name": "LitElement",
|
|
17750
|
+
"package": "lit"
|
|
17751
|
+
},
|
|
17752
|
+
"localization": [],
|
|
17753
|
+
"status": "ready",
|
|
17754
|
+
"category": "feedback",
|
|
17755
|
+
"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 for short messages that confirm an action taken by a user.\n- Use for ephemeral status updates.\n- Use in combination with [Toast group](/components/toast-group) so that toasts get styled and announced to screen readers correctly.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t use toasts for critical information that user needs to act on. Consider using a [Notification](/components/notification) instead.\n- Don’t rely on users seeing toasts. Toasts are transient and should not be used for critical messages.\n- Don’t place interactive content in toasts. Assistive technology like screen readers will not convey any semantics when announcing toast messages.\n- Don’t use for error messages unless absolutely necessary. Try to favor a [Banner](/components/banner/) for error messaging instead.\n\n</div>\n\n---\n\n## Content guidelines\n\nToast content should be clear, accurate and easy to understand:\n\n<div class=\"n-usage n-usage-do\">Message sent</div>\n<div class=\"n-usage n-usage-dont\">Your message has been sent</div>\n\nWhen writing the toast content, use the {noun} + {verb} content formula:\n\n<div class=\"n-usage n-usage-do\">Patient created</div>\n<div class=\"n-usage n-usage-dont\">Your patient has been successfully updated</div>\n\nUse a maximum of 3 words when writing the toast content:\n\n<div class=\"n-usage n-usage-do\">Product updated</div>\n<div class=\"n-usage n-usage-dont\">Your product was updated just now</div>\n\nWhen writing the toast 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\">Message sent</div>\n<div class=\"n-usage n-usage-dont\">Message Sent</div>\n\nAvoid unnecessary words and articles in the toast content, such as “the”, “an” or “a”:\n\n<div class=\"n-usage n-usage-do\">Changes saved</div>\n<div class=\"n-usage n-usage-dont\">The changes were saved</div>\n\nNever end in punctuation:\n\n<div class=\"n-usage n-usage-do\">Message sent</div>\n<div class=\"n-usage n-usage-dont\">Message sent.</div>\n\n---\n\n## Additional considerations\n\n- Toasts are complicated from an accessibility perspective. Whilst they are a convenient UI pattern for messaging, they present difficulties for keyboard or screen reader users. Therefore careful consideration should be given as to whether a toast is the correct choice.\n- If the message cannot be conveyed in 3 words or less, consider re-wording. If the message cannot be shortened any further, consider choosing a different pattern than toast.\n",
|
|
17756
|
+
"examples": [],
|
|
17757
|
+
"dependencies": [
|
|
17758
|
+
"icon"
|
|
17759
|
+
],
|
|
17760
|
+
"tagName": "nord-toast",
|
|
17761
|
+
"customElement": true
|
|
17762
|
+
}
|
|
17763
|
+
],
|
|
17764
|
+
"exports": [
|
|
17765
|
+
{
|
|
17766
|
+
"kind": "js",
|
|
17767
|
+
"name": "default",
|
|
17768
|
+
"declaration": {
|
|
17769
|
+
"name": "Toast",
|
|
17770
|
+
"module": "src/toast/Toast.ts"
|
|
17771
|
+
}
|
|
17772
|
+
},
|
|
17773
|
+
{
|
|
17774
|
+
"kind": "custom-element-definition",
|
|
17775
|
+
"name": "nord-toast",
|
|
17776
|
+
"declaration": {
|
|
17777
|
+
"name": "Toast",
|
|
17778
|
+
"module": "src/toast/Toast.ts"
|
|
17779
|
+
}
|
|
17780
|
+
}
|
|
17781
|
+
]
|
|
17782
|
+
},
|
|
17783
|
+
{
|
|
17784
|
+
"kind": "javascript-module",
|
|
17785
|
+
"path": "src/toggle/Toggle.ts",
|
|
17786
|
+
"declarations": [
|
|
17787
|
+
{
|
|
17788
|
+
"kind": "class",
|
|
17789
|
+
"description": "Toggle switch gives control over a feature or option that can be\nturned on or off. If a physical switch would work for the action, a\ntoggle is probably the best component to use.",
|
|
17790
|
+
"name": "Toggle",
|
|
17791
|
+
"cssProperties": [
|
|
17792
|
+
{
|
|
17793
|
+
"description": "Controls the text color of the label, using our [color tokens](/tokens/#color).",
|
|
17794
|
+
"name": "--n-label-color",
|
|
17795
|
+
"default": "var(--n-color-text)"
|
|
17796
|
+
}
|
|
17797
17797
|
],
|
|
17798
17798
|
"slots": [
|
|
17799
17799
|
{
|
|
@@ -18772,20 +18772,16 @@
|
|
|
18772
18772
|
},
|
|
18773
18773
|
{
|
|
18774
18774
|
"kind": "javascript-module",
|
|
18775
|
-
"path": "src/
|
|
18775
|
+
"path": "src/visually-hidden/VisuallyHidden.ts",
|
|
18776
18776
|
"declarations": [
|
|
18777
18777
|
{
|
|
18778
18778
|
"kind": "class",
|
|
18779
|
-
"description": "
|
|
18780
|
-
"name": "
|
|
18779
|
+
"description": "Visually hidden is used when an element needs to be available\nto assistive technologies like screen readers, but be otherwise\nhidden.",
|
|
18780
|
+
"name": "VisuallyHidden",
|
|
18781
18781
|
"slots": [
|
|
18782
18782
|
{
|
|
18783
|
-
"description": "
|
|
18783
|
+
"description": "The visually hidden content.",
|
|
18784
18784
|
"name": ""
|
|
18785
|
-
},
|
|
18786
|
-
{
|
|
18787
|
-
"description": "Optional slot for menus, buttons, toggles, etc.",
|
|
18788
|
-
"name": "end"
|
|
18789
18785
|
}
|
|
18790
18786
|
],
|
|
18791
18787
|
"members": [],
|
|
@@ -18795,11 +18791,11 @@
|
|
|
18795
18791
|
},
|
|
18796
18792
|
"localization": [],
|
|
18797
18793
|
"status": "ready",
|
|
18798
|
-
"category": "
|
|
18799
|
-
"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-
|
|
18794
|
+
"category": "text",
|
|
18795
|
+
"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 hide text visually from the screen, but keep it available to assistive technologies, such as screen readers.\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t use for hiding interactive content.\n\n</div>\n",
|
|
18800
18796
|
"examples": [],
|
|
18801
18797
|
"dependencies": [],
|
|
18802
|
-
"tagName": "nord-
|
|
18798
|
+
"tagName": "nord-visually-hidden",
|
|
18803
18799
|
"customElement": true
|
|
18804
18800
|
}
|
|
18805
18801
|
],
|
|
@@ -18808,32 +18804,36 @@
|
|
|
18808
18804
|
"kind": "js",
|
|
18809
18805
|
"name": "default",
|
|
18810
18806
|
"declaration": {
|
|
18811
|
-
"name": "
|
|
18812
|
-
"module": "src/
|
|
18807
|
+
"name": "VisuallyHidden",
|
|
18808
|
+
"module": "src/visually-hidden/VisuallyHidden.ts"
|
|
18813
18809
|
}
|
|
18814
18810
|
},
|
|
18815
18811
|
{
|
|
18816
18812
|
"kind": "custom-element-definition",
|
|
18817
|
-
"name": "nord-
|
|
18813
|
+
"name": "nord-visually-hidden",
|
|
18818
18814
|
"declaration": {
|
|
18819
|
-
"name": "
|
|
18820
|
-
"module": "src/
|
|
18815
|
+
"name": "VisuallyHidden",
|
|
18816
|
+
"module": "src/visually-hidden/VisuallyHidden.ts"
|
|
18821
18817
|
}
|
|
18822
18818
|
}
|
|
18823
18819
|
]
|
|
18824
18820
|
},
|
|
18825
18821
|
{
|
|
18826
18822
|
"kind": "javascript-module",
|
|
18827
|
-
"path": "src/
|
|
18823
|
+
"path": "src/top-bar/TopBar.ts",
|
|
18828
18824
|
"declarations": [
|
|
18829
18825
|
{
|
|
18830
18826
|
"kind": "class",
|
|
18831
|
-
"description": "
|
|
18832
|
-
"name": "
|
|
18827
|
+
"description": "Top bar is a header component that is always visible at the top of the interface. Top bar allows functionality such as search and contextual menus to be placed at the top of the interface.",
|
|
18828
|
+
"name": "TopBar",
|
|
18833
18829
|
"slots": [
|
|
18834
18830
|
{
|
|
18835
|
-
"description": "
|
|
18831
|
+
"description": "Used for the main content of the top bar. We recommend placing your application’s global search functionality into this slot.",
|
|
18836
18832
|
"name": ""
|
|
18833
|
+
},
|
|
18834
|
+
{
|
|
18835
|
+
"description": "Optional slot for menus, buttons, toggles, etc.",
|
|
18836
|
+
"name": "end"
|
|
18837
18837
|
}
|
|
18838
18838
|
],
|
|
18839
18839
|
"members": [],
|
|
@@ -18843,11 +18843,11 @@
|
|
|
18843
18843
|
},
|
|
18844
18844
|
"localization": [],
|
|
18845
18845
|
"status": "ready",
|
|
18846
|
-
"category": "
|
|
18847
|
-
"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-
|
|
18846
|
+
"category": "structure",
|
|
18847
|
+
"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- Applications that utilize the top bar can allow users to customize the color of the top bar to match their preference. [View an example](/components/top-bar/?example=color).\n- If your application allows it, include search to help users find resources and navigate.\n- Include a user menu in the end slot of the top bar.\n- Use the [layout component](/components/layout/?example=top-bar) to provide structure for the top bar component. We’ve also created [an example which shows full theming capabilities](/components/layout/?example=theming).\n\n</div>\n<div class=\"n-usage n-usage-dont\">\n\n### Don’t\n\n- Don’t use for global navigation. Use the [navigation component](/components/navigation/) instead.\n- Don’t allow the user to set a top bar color that doesn’t provide enough contrast with the content.\n- Don’t allow the user to freely pick a hex code as the top bar color. Instead, offer a choice from a predefined palette of colors which provides sufficient contrast with the content. [View an example](/components/top-bar/?example=color).\n\n</div>\n\n---\n\n## Theming\n\nPlease see the [Top Bar theming](/themes/#top-bar-theming) section in our theming documentation for detailed guidelines.\n\n<nord-button variant=\"primary\" href=\"/themes/#top-bar-theming\">Theming Guidelines</nord-button>\n",
|
|
18848
18848
|
"examples": [],
|
|
18849
18849
|
"dependencies": [],
|
|
18850
|
-
"tagName": "nord-
|
|
18850
|
+
"tagName": "nord-top-bar",
|
|
18851
18851
|
"customElement": true
|
|
18852
18852
|
}
|
|
18853
18853
|
],
|
|
@@ -18856,42 +18856,476 @@
|
|
|
18856
18856
|
"kind": "js",
|
|
18857
18857
|
"name": "default",
|
|
18858
18858
|
"declaration": {
|
|
18859
|
-
"name": "
|
|
18860
|
-
"module": "src/
|
|
18859
|
+
"name": "TopBar",
|
|
18860
|
+
"module": "src/top-bar/TopBar.ts"
|
|
18861
18861
|
}
|
|
18862
18862
|
},
|
|
18863
18863
|
{
|
|
18864
18864
|
"kind": "custom-element-definition",
|
|
18865
|
-
"name": "nord-
|
|
18865
|
+
"name": "nord-top-bar",
|
|
18866
18866
|
"declaration": {
|
|
18867
|
-
"name": "
|
|
18868
|
-
"module": "src/
|
|
18867
|
+
"name": "TopBar",
|
|
18868
|
+
"module": "src/top-bar/TopBar.ts"
|
|
18869
18869
|
}
|
|
18870
18870
|
}
|
|
18871
18871
|
]
|
|
18872
18872
|
},
|
|
18873
18873
|
{
|
|
18874
18874
|
"kind": "javascript-module",
|
|
18875
|
-
"path": "src/common/
|
|
18875
|
+
"path": "src/common/directives/cond.ts",
|
|
18876
18876
|
"declarations": [
|
|
18877
18877
|
{
|
|
18878
|
-
"kind": "
|
|
18879
|
-
"
|
|
18880
|
-
"
|
|
18881
|
-
|
|
18878
|
+
"kind": "function",
|
|
18879
|
+
"name": "cond",
|
|
18880
|
+
"return": {
|
|
18881
|
+
"type": {
|
|
18882
|
+
"text": "typeof value | typeof nothing"
|
|
18883
|
+
}
|
|
18884
|
+
},
|
|
18885
|
+
"parameters": [
|
|
18882
18886
|
{
|
|
18883
|
-
"
|
|
18884
|
-
"name": "channel",
|
|
18887
|
+
"name": "value",
|
|
18885
18888
|
"type": {
|
|
18886
|
-
"text": "
|
|
18887
|
-
}
|
|
18888
|
-
|
|
18889
|
-
|
|
18889
|
+
"text": "any"
|
|
18890
|
+
}
|
|
18891
|
+
}
|
|
18892
|
+
],
|
|
18893
|
+
"description": "if value is truthy, return it, otherwise return nothing"
|
|
18894
|
+
},
|
|
18895
|
+
{
|
|
18896
|
+
"kind": "function",
|
|
18897
|
+
"name": "cond",
|
|
18898
|
+
"return": {
|
|
18899
|
+
"type": {
|
|
18900
|
+
"text": "typeof trueCase | typeof nothing"
|
|
18901
|
+
}
|
|
18902
|
+
},
|
|
18903
|
+
"parameters": [
|
|
18890
18904
|
{
|
|
18891
|
-
"
|
|
18892
|
-
"name": "options",
|
|
18905
|
+
"name": "condition",
|
|
18893
18906
|
"type": {
|
|
18894
|
-
"text": "
|
|
18907
|
+
"text": "unknown"
|
|
18908
|
+
}
|
|
18909
|
+
},
|
|
18910
|
+
{
|
|
18911
|
+
"name": "trueCase",
|
|
18912
|
+
"type": {
|
|
18913
|
+
"text": "any"
|
|
18914
|
+
}
|
|
18915
|
+
}
|
|
18916
|
+
],
|
|
18917
|
+
"description": "if condition is truthy, return trueCase, otherwise return nothing"
|
|
18918
|
+
},
|
|
18919
|
+
{
|
|
18920
|
+
"kind": "function",
|
|
18921
|
+
"name": "cond",
|
|
18922
|
+
"return": {
|
|
18923
|
+
"type": {
|
|
18924
|
+
"text": "typeof trueCase"
|
|
18925
|
+
}
|
|
18926
|
+
},
|
|
18927
|
+
"parameters": [
|
|
18928
|
+
{
|
|
18929
|
+
"name": "condition",
|
|
18930
|
+
"type": {
|
|
18931
|
+
"text": "true"
|
|
18932
|
+
}
|
|
18933
|
+
},
|
|
18934
|
+
{
|
|
18935
|
+
"name": "trueCase",
|
|
18936
|
+
"type": {
|
|
18937
|
+
"text": "any"
|
|
18938
|
+
}
|
|
18939
|
+
}
|
|
18940
|
+
],
|
|
18941
|
+
"description": "condition is true, so always return trueCase"
|
|
18942
|
+
},
|
|
18943
|
+
{
|
|
18944
|
+
"kind": "function",
|
|
18945
|
+
"name": "cond",
|
|
18946
|
+
"return": {
|
|
18947
|
+
"type": {
|
|
18948
|
+
"text": "typeof nothing"
|
|
18949
|
+
}
|
|
18950
|
+
},
|
|
18951
|
+
"parameters": [
|
|
18952
|
+
{
|
|
18953
|
+
"name": "condition",
|
|
18954
|
+
"type": {
|
|
18955
|
+
"text": "false"
|
|
18956
|
+
}
|
|
18957
|
+
},
|
|
18958
|
+
{
|
|
18959
|
+
"name": "trueCase",
|
|
18960
|
+
"type": {
|
|
18961
|
+
"text": "any"
|
|
18962
|
+
}
|
|
18963
|
+
}
|
|
18964
|
+
],
|
|
18965
|
+
"description": "condition is false, to will always return nothing"
|
|
18966
|
+
},
|
|
18967
|
+
{
|
|
18968
|
+
"kind": "function",
|
|
18969
|
+
"name": "cond",
|
|
18970
|
+
"return": {
|
|
18971
|
+
"type": {
|
|
18972
|
+
"text": "typeof trueCase | typeof falseCase"
|
|
18973
|
+
}
|
|
18974
|
+
},
|
|
18975
|
+
"parameters": [
|
|
18976
|
+
{
|
|
18977
|
+
"name": "condition",
|
|
18978
|
+
"type": {
|
|
18979
|
+
"text": "unknown"
|
|
18980
|
+
}
|
|
18981
|
+
},
|
|
18982
|
+
{
|
|
18983
|
+
"name": "trueCase",
|
|
18984
|
+
"type": {
|
|
18985
|
+
"text": "any"
|
|
18986
|
+
}
|
|
18987
|
+
},
|
|
18988
|
+
{
|
|
18989
|
+
"name": "falseCase",
|
|
18990
|
+
"type": {
|
|
18991
|
+
"text": "any"
|
|
18992
|
+
}
|
|
18993
|
+
}
|
|
18994
|
+
],
|
|
18995
|
+
"description": "if condition is truthy, return trueCase, otherwise return falseCase"
|
|
18996
|
+
},
|
|
18997
|
+
{
|
|
18998
|
+
"kind": "function",
|
|
18999
|
+
"name": "cond",
|
|
19000
|
+
"return": {
|
|
19001
|
+
"type": {
|
|
19002
|
+
"text": "typeof trueCase"
|
|
19003
|
+
}
|
|
19004
|
+
},
|
|
19005
|
+
"parameters": [
|
|
19006
|
+
{
|
|
19007
|
+
"name": "condition",
|
|
19008
|
+
"type": {
|
|
19009
|
+
"text": "true"
|
|
19010
|
+
}
|
|
19011
|
+
},
|
|
19012
|
+
{
|
|
19013
|
+
"name": "trueCase",
|
|
19014
|
+
"type": {
|
|
19015
|
+
"text": "any"
|
|
19016
|
+
}
|
|
19017
|
+
},
|
|
19018
|
+
{
|
|
19019
|
+
"name": "falseCase",
|
|
19020
|
+
"type": {
|
|
19021
|
+
"text": "any"
|
|
19022
|
+
}
|
|
19023
|
+
}
|
|
19024
|
+
],
|
|
19025
|
+
"description": "condition is true, so always return trueCase"
|
|
19026
|
+
},
|
|
19027
|
+
{
|
|
19028
|
+
"kind": "function",
|
|
19029
|
+
"name": "cond",
|
|
19030
|
+
"return": {
|
|
19031
|
+
"type": {
|
|
19032
|
+
"text": "typeof falseCase"
|
|
19033
|
+
}
|
|
19034
|
+
},
|
|
19035
|
+
"parameters": [
|
|
19036
|
+
{
|
|
19037
|
+
"name": "condition",
|
|
19038
|
+
"type": {
|
|
19039
|
+
"text": "false"
|
|
19040
|
+
}
|
|
19041
|
+
},
|
|
19042
|
+
{
|
|
19043
|
+
"name": "trueCase",
|
|
19044
|
+
"type": {
|
|
19045
|
+
"text": "any"
|
|
19046
|
+
}
|
|
19047
|
+
},
|
|
19048
|
+
{
|
|
19049
|
+
"name": "falseCase",
|
|
19050
|
+
"type": {
|
|
19051
|
+
"text": "any"
|
|
19052
|
+
}
|
|
19053
|
+
}
|
|
19054
|
+
],
|
|
19055
|
+
"description": "condition is false, so always return falseCase"
|
|
19056
|
+
},
|
|
19057
|
+
{
|
|
19058
|
+
"kind": "function",
|
|
19059
|
+
"name": "cond",
|
|
19060
|
+
"parameters": [
|
|
19061
|
+
{
|
|
19062
|
+
"name": "condition",
|
|
19063
|
+
"type": {
|
|
19064
|
+
"text": "unknown"
|
|
19065
|
+
}
|
|
19066
|
+
},
|
|
19067
|
+
{
|
|
19068
|
+
"name": "trueCase",
|
|
19069
|
+
"default": "condition",
|
|
19070
|
+
"type": {
|
|
19071
|
+
"text": "any"
|
|
19072
|
+
}
|
|
19073
|
+
},
|
|
19074
|
+
{
|
|
19075
|
+
"name": "falseCase",
|
|
19076
|
+
"default": "nothing",
|
|
19077
|
+
"type": {
|
|
19078
|
+
"text": "any"
|
|
19079
|
+
}
|
|
19080
|
+
}
|
|
19081
|
+
]
|
|
19082
|
+
}
|
|
19083
|
+
],
|
|
19084
|
+
"exports": [
|
|
19085
|
+
{
|
|
19086
|
+
"kind": "js",
|
|
19087
|
+
"name": "cond",
|
|
19088
|
+
"declaration": {
|
|
19089
|
+
"name": "cond",
|
|
19090
|
+
"module": "src/common/directives/cond.ts"
|
|
19091
|
+
}
|
|
19092
|
+
},
|
|
19093
|
+
{
|
|
19094
|
+
"kind": "js",
|
|
19095
|
+
"name": "cond",
|
|
19096
|
+
"declaration": {
|
|
19097
|
+
"name": "cond",
|
|
19098
|
+
"module": "src/common/directives/cond.ts"
|
|
19099
|
+
}
|
|
19100
|
+
},
|
|
19101
|
+
{
|
|
19102
|
+
"kind": "js",
|
|
19103
|
+
"name": "cond",
|
|
19104
|
+
"declaration": {
|
|
19105
|
+
"name": "cond",
|
|
19106
|
+
"module": "src/common/directives/cond.ts"
|
|
19107
|
+
}
|
|
19108
|
+
},
|
|
19109
|
+
{
|
|
19110
|
+
"kind": "js",
|
|
19111
|
+
"name": "cond",
|
|
19112
|
+
"declaration": {
|
|
19113
|
+
"name": "cond",
|
|
19114
|
+
"module": "src/common/directives/cond.ts"
|
|
19115
|
+
}
|
|
19116
|
+
},
|
|
19117
|
+
{
|
|
19118
|
+
"kind": "js",
|
|
19119
|
+
"name": "cond",
|
|
19120
|
+
"declaration": {
|
|
19121
|
+
"name": "cond",
|
|
19122
|
+
"module": "src/common/directives/cond.ts"
|
|
19123
|
+
}
|
|
19124
|
+
},
|
|
19125
|
+
{
|
|
19126
|
+
"kind": "js",
|
|
19127
|
+
"name": "cond",
|
|
19128
|
+
"declaration": {
|
|
19129
|
+
"name": "cond",
|
|
19130
|
+
"module": "src/common/directives/cond.ts"
|
|
19131
|
+
}
|
|
19132
|
+
},
|
|
19133
|
+
{
|
|
19134
|
+
"kind": "js",
|
|
19135
|
+
"name": "cond",
|
|
19136
|
+
"declaration": {
|
|
19137
|
+
"name": "cond",
|
|
19138
|
+
"module": "src/common/directives/cond.ts"
|
|
19139
|
+
}
|
|
19140
|
+
},
|
|
19141
|
+
{
|
|
19142
|
+
"kind": "js",
|
|
19143
|
+
"name": "cond",
|
|
19144
|
+
"declaration": {
|
|
19145
|
+
"name": "cond",
|
|
19146
|
+
"module": "src/common/directives/cond.ts"
|
|
19147
|
+
}
|
|
19148
|
+
}
|
|
19149
|
+
]
|
|
19150
|
+
},
|
|
19151
|
+
{
|
|
19152
|
+
"kind": "javascript-module",
|
|
19153
|
+
"path": "src/common/directives/wrapIf.ts",
|
|
19154
|
+
"declarations": [
|
|
19155
|
+
{
|
|
19156
|
+
"kind": "function",
|
|
19157
|
+
"name": "wrapIf",
|
|
19158
|
+
"return": {
|
|
19159
|
+
"type": {
|
|
19160
|
+
"text": "TInner"
|
|
19161
|
+
}
|
|
19162
|
+
},
|
|
19163
|
+
"parameters": [
|
|
19164
|
+
{
|
|
19165
|
+
"name": "condition",
|
|
19166
|
+
"type": {
|
|
19167
|
+
"text": "false"
|
|
19168
|
+
}
|
|
19169
|
+
},
|
|
19170
|
+
{
|
|
19171
|
+
"name": "inner",
|
|
19172
|
+
"type": {
|
|
19173
|
+
"text": "() => TInner"
|
|
19174
|
+
}
|
|
19175
|
+
},
|
|
19176
|
+
{
|
|
19177
|
+
"name": "wrapper",
|
|
19178
|
+
"type": {
|
|
19179
|
+
"text": "(inner: TInner) => TWrapper"
|
|
19180
|
+
}
|
|
19181
|
+
}
|
|
19182
|
+
]
|
|
19183
|
+
},
|
|
19184
|
+
{
|
|
19185
|
+
"kind": "function",
|
|
19186
|
+
"name": "wrapIf",
|
|
19187
|
+
"return": {
|
|
19188
|
+
"type": {
|
|
19189
|
+
"text": "TWrapper"
|
|
19190
|
+
}
|
|
19191
|
+
},
|
|
19192
|
+
"parameters": [
|
|
19193
|
+
{
|
|
19194
|
+
"name": "condition",
|
|
19195
|
+
"type": {
|
|
19196
|
+
"text": "true"
|
|
19197
|
+
}
|
|
19198
|
+
},
|
|
19199
|
+
{
|
|
19200
|
+
"name": "inner",
|
|
19201
|
+
"type": {
|
|
19202
|
+
"text": "() => TInner"
|
|
19203
|
+
}
|
|
19204
|
+
},
|
|
19205
|
+
{
|
|
19206
|
+
"name": "wrapper",
|
|
19207
|
+
"type": {
|
|
19208
|
+
"text": "(inner: TInner) => TWrapper"
|
|
19209
|
+
}
|
|
19210
|
+
}
|
|
19211
|
+
]
|
|
19212
|
+
},
|
|
19213
|
+
{
|
|
19214
|
+
"kind": "function",
|
|
19215
|
+
"name": "wrapIf",
|
|
19216
|
+
"return": {
|
|
19217
|
+
"type": {
|
|
19218
|
+
"text": "TInner | TWrapper"
|
|
19219
|
+
}
|
|
19220
|
+
},
|
|
19221
|
+
"parameters": [
|
|
19222
|
+
{
|
|
19223
|
+
"name": "condition",
|
|
19224
|
+
"type": {
|
|
19225
|
+
"text": "unknown"
|
|
19226
|
+
}
|
|
19227
|
+
},
|
|
19228
|
+
{
|
|
19229
|
+
"name": "inner",
|
|
19230
|
+
"type": {
|
|
19231
|
+
"text": "() => TInner"
|
|
19232
|
+
}
|
|
19233
|
+
},
|
|
19234
|
+
{
|
|
19235
|
+
"name": "wrapper",
|
|
19236
|
+
"type": {
|
|
19237
|
+
"text": "(inner: TInner) => TWrapper"
|
|
19238
|
+
}
|
|
19239
|
+
}
|
|
19240
|
+
]
|
|
19241
|
+
},
|
|
19242
|
+
{
|
|
19243
|
+
"kind": "function",
|
|
19244
|
+
"name": "wrapIf",
|
|
19245
|
+
"parameters": [
|
|
19246
|
+
{
|
|
19247
|
+
"name": "condition",
|
|
19248
|
+
"type": {
|
|
19249
|
+
"text": "any"
|
|
19250
|
+
}
|
|
19251
|
+
},
|
|
19252
|
+
{
|
|
19253
|
+
"name": "inner",
|
|
19254
|
+
"type": {
|
|
19255
|
+
"text": "() => TInner"
|
|
19256
|
+
}
|
|
19257
|
+
},
|
|
19258
|
+
{
|
|
19259
|
+
"name": "wrapper",
|
|
19260
|
+
"type": {
|
|
19261
|
+
"text": "(innards: TInner) => TWrapper"
|
|
19262
|
+
}
|
|
19263
|
+
}
|
|
19264
|
+
],
|
|
19265
|
+
"return": {
|
|
19266
|
+
"type": {
|
|
19267
|
+
"text": ""
|
|
19268
|
+
}
|
|
19269
|
+
}
|
|
19270
|
+
}
|
|
19271
|
+
],
|
|
19272
|
+
"exports": [
|
|
19273
|
+
{
|
|
19274
|
+
"kind": "js",
|
|
19275
|
+
"name": "wrapIf",
|
|
19276
|
+
"declaration": {
|
|
19277
|
+
"name": "wrapIf",
|
|
19278
|
+
"module": "src/common/directives/wrapIf.ts"
|
|
19279
|
+
}
|
|
19280
|
+
},
|
|
19281
|
+
{
|
|
19282
|
+
"kind": "js",
|
|
19283
|
+
"name": "wrapIf",
|
|
19284
|
+
"declaration": {
|
|
19285
|
+
"name": "wrapIf",
|
|
19286
|
+
"module": "src/common/directives/wrapIf.ts"
|
|
19287
|
+
}
|
|
19288
|
+
},
|
|
19289
|
+
{
|
|
19290
|
+
"kind": "js",
|
|
19291
|
+
"name": "wrapIf",
|
|
19292
|
+
"declaration": {
|
|
19293
|
+
"name": "wrapIf",
|
|
19294
|
+
"module": "src/common/directives/wrapIf.ts"
|
|
19295
|
+
}
|
|
19296
|
+
},
|
|
19297
|
+
{
|
|
19298
|
+
"kind": "js",
|
|
19299
|
+
"name": "wrapIf",
|
|
19300
|
+
"declaration": {
|
|
19301
|
+
"name": "wrapIf",
|
|
19302
|
+
"module": "src/common/directives/wrapIf.ts"
|
|
19303
|
+
}
|
|
19304
|
+
}
|
|
19305
|
+
]
|
|
19306
|
+
},
|
|
19307
|
+
{
|
|
19308
|
+
"kind": "javascript-module",
|
|
19309
|
+
"path": "src/common/controllers/BroadcastChannelController.ts",
|
|
19310
|
+
"declarations": [
|
|
19311
|
+
{
|
|
19312
|
+
"kind": "class",
|
|
19313
|
+
"description": "",
|
|
19314
|
+
"name": "BroadcastChannelController",
|
|
19315
|
+
"members": [
|
|
19316
|
+
{
|
|
19317
|
+
"kind": "field",
|
|
19318
|
+
"name": "channel",
|
|
19319
|
+
"type": {
|
|
19320
|
+
"text": "BroadcastChannel | undefined"
|
|
19321
|
+
},
|
|
19322
|
+
"privacy": "private"
|
|
19323
|
+
},
|
|
19324
|
+
{
|
|
19325
|
+
"kind": "field",
|
|
19326
|
+
"name": "options",
|
|
19327
|
+
"type": {
|
|
19328
|
+
"text": "Required<Options<T>>"
|
|
18895
19329
|
},
|
|
18896
19330
|
"privacy": "private",
|
|
18897
19331
|
"default": "{ enabled: defaultEnabled, ...options }"
|
|
@@ -19247,266 +19681,50 @@
|
|
|
19247
19681
|
}
|
|
19248
19682
|
},
|
|
19249
19683
|
{
|
|
19250
|
-
"name": "listener",
|
|
19251
|
-
"type": {
|
|
19252
|
-
"text": "(this: EventTarget, ev: Event) => void"
|
|
19253
|
-
}
|
|
19254
|
-
},
|
|
19255
|
-
{
|
|
19256
|
-
"name": "options",
|
|
19257
|
-
"optional": true,
|
|
19258
|
-
"type": {
|
|
19259
|
-
"text": "boolean | AddEventListenerOptions"
|
|
19260
|
-
}
|
|
19261
|
-
}
|
|
19262
|
-
]
|
|
19263
|
-
},
|
|
19264
|
-
{
|
|
19265
|
-
"kind": "method",
|
|
19266
|
-
"name": "listen",
|
|
19267
|
-
"parameters": [
|
|
19268
|
-
{
|
|
19269
|
-
"name": "element",
|
|
19270
|
-
"type": {
|
|
19271
|
-
"text": "EventTarget"
|
|
19272
|
-
}
|
|
19273
|
-
},
|
|
19274
|
-
{
|
|
19275
|
-
"name": "type",
|
|
19276
|
-
"type": {
|
|
19277
|
-
"text": "string"
|
|
19278
|
-
}
|
|
19279
|
-
},
|
|
19280
|
-
{
|
|
19281
|
-
"name": "listener",
|
|
19282
|
-
"type": {
|
|
19283
|
-
"text": "(this: EventTarget, ev: Event) => void"
|
|
19284
|
-
}
|
|
19285
|
-
},
|
|
19286
|
-
{
|
|
19287
|
-
"name": "options",
|
|
19288
|
-
"optional": true,
|
|
19289
|
-
"type": {
|
|
19290
|
-
"text": "boolean | AddEventListenerOptions"
|
|
19291
|
-
}
|
|
19292
|
-
}
|
|
19293
|
-
]
|
|
19294
|
-
}
|
|
19295
|
-
]
|
|
19296
|
-
}
|
|
19297
|
-
],
|
|
19298
|
-
"exports": [
|
|
19299
|
-
{
|
|
19300
|
-
"kind": "js",
|
|
19301
|
-
"name": "EventController",
|
|
19302
|
-
"declaration": {
|
|
19303
|
-
"name": "EventController",
|
|
19304
|
-
"module": "src/common/controllers/EventController.ts"
|
|
19305
|
-
}
|
|
19306
|
-
}
|
|
19307
|
-
]
|
|
19308
|
-
},
|
|
19309
|
-
{
|
|
19310
|
-
"kind": "javascript-module",
|
|
19311
|
-
"path": "src/common/controllers/FocusTrapController.ts",
|
|
19312
|
-
"declarations": [
|
|
19313
|
-
{
|
|
19314
|
-
"kind": "class",
|
|
19315
|
-
"description": "",
|
|
19316
|
-
"name": "FocusTrapController",
|
|
19317
|
-
"members": [
|
|
19318
|
-
{
|
|
19319
|
-
"kind": "field",
|
|
19320
|
-
"name": "inertElements",
|
|
19321
|
-
"type": {
|
|
19322
|
-
"text": "Element[]"
|
|
19323
|
-
},
|
|
19324
|
-
"privacy": "private",
|
|
19325
|
-
"default": "[]"
|
|
19326
|
-
},
|
|
19327
|
-
{
|
|
19328
|
-
"kind": "method",
|
|
19329
|
-
"name": "hostDisconnected"
|
|
19330
|
-
},
|
|
19331
|
-
{
|
|
19332
|
-
"kind": "method",
|
|
19333
|
-
"name": "trap"
|
|
19334
|
-
},
|
|
19335
|
-
{
|
|
19336
|
-
"kind": "method",
|
|
19337
|
-
"name": "release"
|
|
19338
|
-
}
|
|
19339
|
-
]
|
|
19340
|
-
}
|
|
19341
|
-
],
|
|
19342
|
-
"exports": [
|
|
19343
|
-
{
|
|
19344
|
-
"kind": "js",
|
|
19345
|
-
"name": "FocusTrapController",
|
|
19346
|
-
"declaration": {
|
|
19347
|
-
"name": "FocusTrapController",
|
|
19348
|
-
"module": "src/common/controllers/FocusTrapController.ts"
|
|
19349
|
-
}
|
|
19350
|
-
}
|
|
19351
|
-
]
|
|
19352
|
-
},
|
|
19353
|
-
{
|
|
19354
|
-
"kind": "javascript-module",
|
|
19355
|
-
"path": "src/common/controllers/FormDataController.ts",
|
|
19356
|
-
"declarations": [
|
|
19357
|
-
{
|
|
19358
|
-
"kind": "class",
|
|
19359
|
-
"description": "",
|
|
19360
|
-
"name": "FormDataController",
|
|
19361
|
-
"members": [
|
|
19362
|
-
{
|
|
19363
|
-
"kind": "field",
|
|
19364
|
-
"name": "_form",
|
|
19365
|
-
"type": {
|
|
19366
|
-
"text": "HTMLFormElement | null"
|
|
19367
|
-
},
|
|
19368
|
-
"privacy": "private",
|
|
19369
|
-
"default": "null"
|
|
19370
|
-
},
|
|
19371
|
-
{
|
|
19372
|
-
"kind": "method",
|
|
19373
|
-
"name": "hostConnected"
|
|
19374
|
-
},
|
|
19375
|
-
{
|
|
19376
|
-
"kind": "method",
|
|
19377
|
-
"name": "hostUpdated"
|
|
19378
|
-
},
|
|
19379
|
-
{
|
|
19380
|
-
"kind": "method",
|
|
19381
|
-
"name": "hostDisconnected"
|
|
19382
|
-
},
|
|
19383
|
-
{
|
|
19384
|
-
"kind": "method",
|
|
19385
|
-
"name": "listen",
|
|
19386
|
-
"privacy": "private",
|
|
19387
|
-
"parameters": [
|
|
19388
|
-
{
|
|
19389
|
-
"name": "form",
|
|
19390
|
-
"type": {
|
|
19391
|
-
"text": "HTMLFormElement | null"
|
|
19392
|
-
}
|
|
19393
|
-
}
|
|
19394
|
-
]
|
|
19395
|
-
},
|
|
19396
|
-
{
|
|
19397
|
-
"kind": "method",
|
|
19398
|
-
"name": "cleanup",
|
|
19399
|
-
"privacy": "private"
|
|
19400
|
-
},
|
|
19401
|
-
{
|
|
19402
|
-
"kind": "field",
|
|
19403
|
-
"name": "handleFormData",
|
|
19404
|
-
"privacy": "private"
|
|
19405
|
-
}
|
|
19406
|
-
]
|
|
19407
|
-
}
|
|
19408
|
-
],
|
|
19409
|
-
"exports": [
|
|
19410
|
-
{
|
|
19411
|
-
"kind": "js",
|
|
19412
|
-
"name": "FormDataController",
|
|
19413
|
-
"declaration": {
|
|
19414
|
-
"name": "FormDataController",
|
|
19415
|
-
"module": "src/common/controllers/FormDataController.ts"
|
|
19416
|
-
}
|
|
19417
|
-
}
|
|
19418
|
-
]
|
|
19419
|
-
},
|
|
19420
|
-
{
|
|
19421
|
-
"kind": "javascript-module",
|
|
19422
|
-
"path": "src/common/controllers/LightDismissController.ts",
|
|
19423
|
-
"declarations": [
|
|
19424
|
-
{
|
|
19425
|
-
"kind": "class",
|
|
19426
|
-
"description": "",
|
|
19427
|
-
"name": "LightDismissController",
|
|
19428
|
-
"members": [
|
|
19429
|
-
{
|
|
19430
|
-
"kind": "field",
|
|
19431
|
-
"name": "shortcut",
|
|
19432
|
-
"type": {
|
|
19433
|
-
"text": "ShortcutController"
|
|
19434
|
-
},
|
|
19435
|
-
"privacy": "private",
|
|
19436
|
-
"default": "new ShortcutController(host, { Escape: this.handleEsc })"
|
|
19437
|
-
},
|
|
19438
|
-
{
|
|
19439
|
-
"kind": "field",
|
|
19440
|
-
"name": "events",
|
|
19441
|
-
"type": {
|
|
19442
|
-
"text": "EventController"
|
|
19443
|
-
},
|
|
19444
|
-
"privacy": "private",
|
|
19445
|
-
"default": "new EventController(host)"
|
|
19446
|
-
},
|
|
19447
|
-
{
|
|
19448
|
-
"kind": "field",
|
|
19449
|
-
"name": "isMouseDownOutside",
|
|
19450
|
-
"type": {
|
|
19451
|
-
"text": "boolean"
|
|
19452
|
-
},
|
|
19453
|
-
"privacy": "private",
|
|
19454
|
-
"default": "false"
|
|
19455
|
-
},
|
|
19456
|
-
{
|
|
19457
|
-
"kind": "method",
|
|
19458
|
-
"name": "hostConnected"
|
|
19459
|
-
},
|
|
19460
|
-
{
|
|
19461
|
-
"kind": "field",
|
|
19462
|
-
"name": "handleEsc",
|
|
19463
|
-
"privacy": "private"
|
|
19464
|
-
},
|
|
19465
|
-
{
|
|
19466
|
-
"kind": "field",
|
|
19467
|
-
"name": "handleMouseDown",
|
|
19468
|
-
"privacy": "private"
|
|
19469
|
-
},
|
|
19470
|
-
{
|
|
19471
|
-
"kind": "field",
|
|
19472
|
-
"name": "handleClick",
|
|
19473
|
-
"privacy": "private"
|
|
19474
|
-
}
|
|
19475
|
-
]
|
|
19476
|
-
}
|
|
19477
|
-
],
|
|
19478
|
-
"exports": [
|
|
19479
|
-
{
|
|
19480
|
-
"kind": "js",
|
|
19481
|
-
"name": "LightDismissController",
|
|
19482
|
-
"declaration": {
|
|
19483
|
-
"name": "LightDismissController",
|
|
19484
|
-
"module": "src/common/controllers/LightDismissController.ts"
|
|
19485
|
-
}
|
|
19486
|
-
}
|
|
19487
|
-
]
|
|
19488
|
-
},
|
|
19489
|
-
{
|
|
19490
|
-
"kind": "javascript-module",
|
|
19491
|
-
"path": "src/common/controllers/LightDomController.ts",
|
|
19492
|
-
"declarations": [
|
|
19493
|
-
{
|
|
19494
|
-
"kind": "class",
|
|
19495
|
-
"description": "",
|
|
19496
|
-
"name": "LightDomController",
|
|
19497
|
-
"members": [
|
|
19498
|
-
{
|
|
19499
|
-
"kind": "field",
|
|
19500
|
-
"name": "container",
|
|
19501
|
-
"type": {
|
|
19502
|
-
"text": "HTMLElement"
|
|
19503
|
-
},
|
|
19504
|
-
"privacy": "private",
|
|
19505
|
-
"readonly": true
|
|
19684
|
+
"name": "listener",
|
|
19685
|
+
"type": {
|
|
19686
|
+
"text": "(this: EventTarget, ev: Event) => void"
|
|
19687
|
+
}
|
|
19688
|
+
},
|
|
19689
|
+
{
|
|
19690
|
+
"name": "options",
|
|
19691
|
+
"optional": true,
|
|
19692
|
+
"type": {
|
|
19693
|
+
"text": "boolean | AddEventListenerOptions"
|
|
19694
|
+
}
|
|
19695
|
+
}
|
|
19696
|
+
]
|
|
19506
19697
|
},
|
|
19507
19698
|
{
|
|
19508
19699
|
"kind": "method",
|
|
19509
|
-
"name": "
|
|
19700
|
+
"name": "listen",
|
|
19701
|
+
"parameters": [
|
|
19702
|
+
{
|
|
19703
|
+
"name": "element",
|
|
19704
|
+
"type": {
|
|
19705
|
+
"text": "EventTarget"
|
|
19706
|
+
}
|
|
19707
|
+
},
|
|
19708
|
+
{
|
|
19709
|
+
"name": "type",
|
|
19710
|
+
"type": {
|
|
19711
|
+
"text": "string"
|
|
19712
|
+
}
|
|
19713
|
+
},
|
|
19714
|
+
{
|
|
19715
|
+
"name": "listener",
|
|
19716
|
+
"type": {
|
|
19717
|
+
"text": "(this: EventTarget, ev: Event) => void"
|
|
19718
|
+
}
|
|
19719
|
+
},
|
|
19720
|
+
{
|
|
19721
|
+
"name": "options",
|
|
19722
|
+
"optional": true,
|
|
19723
|
+
"type": {
|
|
19724
|
+
"text": "boolean | AddEventListenerOptions"
|
|
19725
|
+
}
|
|
19726
|
+
}
|
|
19727
|
+
]
|
|
19510
19728
|
}
|
|
19511
19729
|
]
|
|
19512
19730
|
}
|
|
@@ -19514,183 +19732,75 @@
|
|
|
19514
19732
|
"exports": [
|
|
19515
19733
|
{
|
|
19516
19734
|
"kind": "js",
|
|
19517
|
-
"name": "
|
|
19735
|
+
"name": "EventController",
|
|
19518
19736
|
"declaration": {
|
|
19519
|
-
"name": "
|
|
19520
|
-
"module": "src/common/controllers/
|
|
19737
|
+
"name": "EventController",
|
|
19738
|
+
"module": "src/common/controllers/EventController.ts"
|
|
19521
19739
|
}
|
|
19522
19740
|
}
|
|
19523
19741
|
]
|
|
19524
19742
|
},
|
|
19525
19743
|
{
|
|
19526
19744
|
"kind": "javascript-module",
|
|
19527
|
-
"path": "src/common/controllers/
|
|
19745
|
+
"path": "src/common/controllers/FocusTrapController.ts",
|
|
19528
19746
|
"declarations": [
|
|
19529
19747
|
{
|
|
19530
19748
|
"kind": "class",
|
|
19531
|
-
"description": "
|
|
19532
|
-
"name": "
|
|
19749
|
+
"description": "",
|
|
19750
|
+
"name": "FocusTrapController",
|
|
19533
19751
|
"members": [
|
|
19534
19752
|
{
|
|
19535
19753
|
"kind": "field",
|
|
19536
|
-
"name": "
|
|
19537
|
-
"type": {
|
|
19538
|
-
"text": "Comment | undefined"
|
|
19539
|
-
},
|
|
19540
|
-
"privacy": "private"
|
|
19541
|
-
},
|
|
19542
|
-
{
|
|
19543
|
-
"kind": "field",
|
|
19544
|
-
"name": "lightDom",
|
|
19754
|
+
"name": "inertElements",
|
|
19545
19755
|
"type": {
|
|
19546
|
-
"text": "
|
|
19756
|
+
"text": "Element[]"
|
|
19547
19757
|
},
|
|
19548
19758
|
"privacy": "private",
|
|
19549
|
-
"default": "
|
|
19759
|
+
"default": "[]"
|
|
19550
19760
|
},
|
|
19551
19761
|
{
|
|
19552
19762
|
"kind": "method",
|
|
19553
|
-
"name": "
|
|
19554
|
-
"inheritedFrom": {
|
|
19555
|
-
"name": "SlotController",
|
|
19556
|
-
"module": "src/common/controllers/SlotController.ts"
|
|
19557
|
-
}
|
|
19558
|
-
},
|
|
19559
|
-
{
|
|
19560
|
-
"kind": "field",
|
|
19561
|
-
"name": "onChange",
|
|
19562
|
-
"privacy": "protected",
|
|
19563
|
-
"parameters": [
|
|
19564
|
-
{
|
|
19565
|
-
"name": "_e",
|
|
19566
|
-
"type": {
|
|
19567
|
-
"text": "Event"
|
|
19568
|
-
}
|
|
19569
|
-
}
|
|
19570
|
-
],
|
|
19571
|
-
"inheritedFrom": {
|
|
19572
|
-
"name": "SlotController",
|
|
19573
|
-
"module": "src/common/controllers/SlotController.ts"
|
|
19574
|
-
}
|
|
19763
|
+
"name": "hostDisconnected"
|
|
19575
19764
|
},
|
|
19576
19765
|
{
|
|
19577
19766
|
"kind": "method",
|
|
19578
|
-
"name": "
|
|
19579
|
-
"privacy": "private"
|
|
19580
|
-
},
|
|
19581
|
-
{
|
|
19582
|
-
"kind": "field",
|
|
19583
|
-
"name": "events",
|
|
19584
|
-
"type": {
|
|
19585
|
-
"text": "EventController"
|
|
19586
|
-
},
|
|
19587
|
-
"privacy": "private",
|
|
19588
|
-
"default": "new EventController(host)",
|
|
19589
|
-
"inheritedFrom": {
|
|
19590
|
-
"name": "SlotController",
|
|
19591
|
-
"module": "src/common/controllers/SlotController.ts"
|
|
19592
|
-
}
|
|
19593
|
-
},
|
|
19594
|
-
{
|
|
19595
|
-
"kind": "field",
|
|
19596
|
-
"name": "selector",
|
|
19597
|
-
"type": {
|
|
19598
|
-
"text": "string"
|
|
19599
|
-
},
|
|
19600
|
-
"privacy": "private",
|
|
19601
|
-
"inheritedFrom": {
|
|
19602
|
-
"name": "SlotController",
|
|
19603
|
-
"module": "src/common/controllers/SlotController.ts"
|
|
19604
|
-
}
|
|
19605
|
-
},
|
|
19606
|
-
{
|
|
19607
|
-
"kind": "field",
|
|
19608
|
-
"name": "hasContent",
|
|
19609
|
-
"readonly": true,
|
|
19610
|
-
"inheritedFrom": {
|
|
19611
|
-
"name": "SlotController",
|
|
19612
|
-
"module": "src/common/controllers/SlotController.ts"
|
|
19613
|
-
}
|
|
19614
|
-
},
|
|
19615
|
-
{
|
|
19616
|
-
"kind": "field",
|
|
19617
|
-
"name": "isEmpty",
|
|
19618
|
-
"readonly": true,
|
|
19619
|
-
"inheritedFrom": {
|
|
19620
|
-
"name": "SlotController",
|
|
19621
|
-
"module": "src/common/controllers/SlotController.ts"
|
|
19622
|
-
}
|
|
19623
|
-
},
|
|
19624
|
-
{
|
|
19625
|
-
"kind": "field",
|
|
19626
|
-
"name": "content",
|
|
19627
|
-
"readonly": true,
|
|
19628
|
-
"inheritedFrom": {
|
|
19629
|
-
"name": "SlotController",
|
|
19630
|
-
"module": "src/common/controllers/SlotController.ts"
|
|
19631
|
-
}
|
|
19632
|
-
},
|
|
19633
|
-
{
|
|
19634
|
-
"kind": "field",
|
|
19635
|
-
"name": "assigned",
|
|
19636
|
-
"readonly": true,
|
|
19637
|
-
"inheritedFrom": {
|
|
19638
|
-
"name": "SlotController",
|
|
19639
|
-
"module": "src/common/controllers/SlotController.ts"
|
|
19640
|
-
}
|
|
19767
|
+
"name": "trap"
|
|
19641
19768
|
},
|
|
19642
19769
|
{
|
|
19643
|
-
"kind": "
|
|
19644
|
-
"name": "
|
|
19645
|
-
"privacy": "private",
|
|
19646
|
-
"inheritedFrom": {
|
|
19647
|
-
"name": "SlotController",
|
|
19648
|
-
"module": "src/common/controllers/SlotController.ts"
|
|
19649
|
-
}
|
|
19770
|
+
"kind": "method",
|
|
19771
|
+
"name": "release"
|
|
19650
19772
|
}
|
|
19651
|
-
]
|
|
19652
|
-
"superclass": {
|
|
19653
|
-
"name": "SlotController",
|
|
19654
|
-
"module": "/src/common/controllers/SlotController.js"
|
|
19655
|
-
}
|
|
19773
|
+
]
|
|
19656
19774
|
}
|
|
19657
19775
|
],
|
|
19658
19776
|
"exports": [
|
|
19659
19777
|
{
|
|
19660
19778
|
"kind": "js",
|
|
19661
|
-
"name": "
|
|
19779
|
+
"name": "FocusTrapController",
|
|
19662
19780
|
"declaration": {
|
|
19663
|
-
"name": "
|
|
19664
|
-
"module": "src/common/controllers/
|
|
19781
|
+
"name": "FocusTrapController",
|
|
19782
|
+
"module": "src/common/controllers/FocusTrapController.ts"
|
|
19665
19783
|
}
|
|
19666
19784
|
}
|
|
19667
19785
|
]
|
|
19668
19786
|
},
|
|
19669
19787
|
{
|
|
19670
19788
|
"kind": "javascript-module",
|
|
19671
|
-
"path": "src/common/controllers/
|
|
19789
|
+
"path": "src/common/controllers/FormDataController.ts",
|
|
19672
19790
|
"declarations": [
|
|
19673
19791
|
{
|
|
19674
19792
|
"kind": "class",
|
|
19675
19793
|
"description": "",
|
|
19676
|
-
"name": "
|
|
19794
|
+
"name": "FormDataController",
|
|
19677
19795
|
"members": [
|
|
19678
19796
|
{
|
|
19679
19797
|
"kind": "field",
|
|
19680
|
-
"name": "
|
|
19681
|
-
"type": {
|
|
19682
|
-
"text": "Comment"
|
|
19683
|
-
},
|
|
19684
|
-
"privacy": "private"
|
|
19685
|
-
},
|
|
19686
|
-
{
|
|
19687
|
-
"kind": "field",
|
|
19688
|
-
"name": "lightDom",
|
|
19798
|
+
"name": "_form",
|
|
19689
19799
|
"type": {
|
|
19690
|
-
"text": "
|
|
19800
|
+
"text": "HTMLFormElement | null"
|
|
19691
19801
|
},
|
|
19692
19802
|
"privacy": "private",
|
|
19693
|
-
"default": "
|
|
19803
|
+
"default": "null"
|
|
19694
19804
|
},
|
|
19695
19805
|
{
|
|
19696
19806
|
"kind": "method",
|
|
@@ -19703,6 +19813,29 @@
|
|
|
19703
19813
|
{
|
|
19704
19814
|
"kind": "method",
|
|
19705
19815
|
"name": "hostDisconnected"
|
|
19816
|
+
},
|
|
19817
|
+
{
|
|
19818
|
+
"kind": "method",
|
|
19819
|
+
"name": "listen",
|
|
19820
|
+
"privacy": "private",
|
|
19821
|
+
"parameters": [
|
|
19822
|
+
{
|
|
19823
|
+
"name": "form",
|
|
19824
|
+
"type": {
|
|
19825
|
+
"text": "HTMLFormElement | null"
|
|
19826
|
+
}
|
|
19827
|
+
}
|
|
19828
|
+
]
|
|
19829
|
+
},
|
|
19830
|
+
{
|
|
19831
|
+
"kind": "method",
|
|
19832
|
+
"name": "cleanup",
|
|
19833
|
+
"privacy": "private"
|
|
19834
|
+
},
|
|
19835
|
+
{
|
|
19836
|
+
"kind": "field",
|
|
19837
|
+
"name": "handleFormData",
|
|
19838
|
+
"privacy": "private"
|
|
19706
19839
|
}
|
|
19707
19840
|
]
|
|
19708
19841
|
}
|
|
@@ -19710,69 +19843,68 @@
|
|
|
19710
19843
|
"exports": [
|
|
19711
19844
|
{
|
|
19712
19845
|
"kind": "js",
|
|
19713
|
-
"name": "
|
|
19846
|
+
"name": "FormDataController",
|
|
19714
19847
|
"declaration": {
|
|
19715
|
-
"name": "
|
|
19716
|
-
"module": "src/common/controllers/
|
|
19848
|
+
"name": "FormDataController",
|
|
19849
|
+
"module": "src/common/controllers/FormDataController.ts"
|
|
19717
19850
|
}
|
|
19718
19851
|
}
|
|
19719
19852
|
]
|
|
19720
19853
|
},
|
|
19721
19854
|
{
|
|
19722
19855
|
"kind": "javascript-module",
|
|
19723
|
-
"path": "src/common/controllers/
|
|
19856
|
+
"path": "src/common/controllers/LightDismissController.ts",
|
|
19724
19857
|
"declarations": [
|
|
19725
19858
|
{
|
|
19726
19859
|
"kind": "class",
|
|
19727
19860
|
"description": "",
|
|
19728
|
-
"name": "
|
|
19861
|
+
"name": "LightDismissController",
|
|
19729
19862
|
"members": [
|
|
19730
19863
|
{
|
|
19731
19864
|
"kind": "field",
|
|
19732
|
-
"name": "
|
|
19865
|
+
"name": "shortcut",
|
|
19733
19866
|
"type": {
|
|
19734
|
-
"text": "
|
|
19867
|
+
"text": "ShortcutController"
|
|
19735
19868
|
},
|
|
19736
|
-
"privacy": "private"
|
|
19869
|
+
"privacy": "private",
|
|
19870
|
+
"default": "new ShortcutController(host, { Escape: this.handleEsc })"
|
|
19737
19871
|
},
|
|
19738
19872
|
{
|
|
19739
19873
|
"kind": "field",
|
|
19740
|
-
"name": "
|
|
19874
|
+
"name": "events",
|
|
19741
19875
|
"type": {
|
|
19742
|
-
"text": "
|
|
19876
|
+
"text": "EventController"
|
|
19743
19877
|
},
|
|
19744
19878
|
"privacy": "private",
|
|
19745
|
-
"default": "
|
|
19879
|
+
"default": "new EventController(host)"
|
|
19746
19880
|
},
|
|
19747
19881
|
{
|
|
19748
19882
|
"kind": "field",
|
|
19749
|
-
"name": "
|
|
19883
|
+
"name": "isMouseDownOutside",
|
|
19750
19884
|
"type": {
|
|
19751
|
-
"text": "
|
|
19885
|
+
"text": "boolean"
|
|
19752
19886
|
},
|
|
19753
|
-
"privacy": "private"
|
|
19754
|
-
|
|
19755
|
-
{
|
|
19756
|
-
"kind": "field",
|
|
19757
|
-
"name": "inlineSize",
|
|
19758
|
-
"readonly": true
|
|
19759
|
-
},
|
|
19760
|
-
{
|
|
19761
|
-
"kind": "field",
|
|
19762
|
-
"name": "blockSize",
|
|
19763
|
-
"readonly": true
|
|
19887
|
+
"privacy": "private",
|
|
19888
|
+
"default": "false"
|
|
19764
19889
|
},
|
|
19765
19890
|
{
|
|
19766
19891
|
"kind": "method",
|
|
19767
|
-
"name": "
|
|
19892
|
+
"name": "hostConnected"
|
|
19768
19893
|
},
|
|
19769
19894
|
{
|
|
19770
|
-
"kind": "
|
|
19771
|
-
"name": "
|
|
19895
|
+
"kind": "field",
|
|
19896
|
+
"name": "handleEsc",
|
|
19897
|
+
"privacy": "private"
|
|
19772
19898
|
},
|
|
19773
19899
|
{
|
|
19774
|
-
"kind": "
|
|
19775
|
-
"name": "
|
|
19900
|
+
"kind": "field",
|
|
19901
|
+
"name": "handleMouseDown",
|
|
19902
|
+
"privacy": "private"
|
|
19903
|
+
},
|
|
19904
|
+
{
|
|
19905
|
+
"kind": "field",
|
|
19906
|
+
"name": "handleClick",
|
|
19907
|
+
"privacy": "private"
|
|
19776
19908
|
}
|
|
19777
19909
|
]
|
|
19778
19910
|
}
|
|
@@ -19780,71 +19912,35 @@
|
|
|
19780
19912
|
"exports": [
|
|
19781
19913
|
{
|
|
19782
19914
|
"kind": "js",
|
|
19783
|
-
"name": "
|
|
19915
|
+
"name": "LightDismissController",
|
|
19784
19916
|
"declaration": {
|
|
19785
|
-
"name": "
|
|
19786
|
-
"module": "src/common/controllers/
|
|
19917
|
+
"name": "LightDismissController",
|
|
19918
|
+
"module": "src/common/controllers/LightDismissController.ts"
|
|
19787
19919
|
}
|
|
19788
19920
|
}
|
|
19789
19921
|
]
|
|
19790
19922
|
},
|
|
19791
19923
|
{
|
|
19792
19924
|
"kind": "javascript-module",
|
|
19793
|
-
"path": "src/common/controllers/
|
|
19925
|
+
"path": "src/common/controllers/LightDomController.ts",
|
|
19794
19926
|
"declarations": [
|
|
19795
19927
|
{
|
|
19796
19928
|
"kind": "class",
|
|
19797
|
-
"description": "
|
|
19798
|
-
"name": "
|
|
19929
|
+
"description": "",
|
|
19930
|
+
"name": "LightDomController",
|
|
19799
19931
|
"members": [
|
|
19800
19932
|
{
|
|
19801
19933
|
"kind": "field",
|
|
19802
|
-
"name": "
|
|
19803
|
-
"privacy": "private",
|
|
19804
|
-
"static": true,
|
|
19805
|
-
"default": "new Set<ScrollbarController>()"
|
|
19806
|
-
},
|
|
19807
|
-
{
|
|
19808
|
-
"kind": "field",
|
|
19809
|
-
"name": "resets",
|
|
19934
|
+
"name": "container",
|
|
19810
19935
|
"type": {
|
|
19811
|
-
"text": "
|
|
19936
|
+
"text": "HTMLElement"
|
|
19812
19937
|
},
|
|
19813
19938
|
"privacy": "private",
|
|
19814
|
-
"
|
|
19815
|
-
"default": "[]"
|
|
19816
|
-
},
|
|
19817
|
-
{
|
|
19818
|
-
"kind": "method",
|
|
19819
|
-
"name": "hostDisconnected"
|
|
19820
|
-
},
|
|
19821
|
-
{
|
|
19822
|
-
"kind": "method",
|
|
19823
|
-
"name": "lockScroll"
|
|
19824
|
-
},
|
|
19825
|
-
{
|
|
19826
|
-
"kind": "method",
|
|
19827
|
-
"name": "unlockScroll"
|
|
19939
|
+
"readonly": true
|
|
19828
19940
|
},
|
|
19829
19941
|
{
|
|
19830
19942
|
"kind": "method",
|
|
19831
|
-
"name": "
|
|
19832
|
-
"privacy": "private",
|
|
19833
|
-
"static": true,
|
|
19834
|
-
"parameters": [
|
|
19835
|
-
{
|
|
19836
|
-
"name": "property",
|
|
19837
|
-
"type": {
|
|
19838
|
-
"text": "string"
|
|
19839
|
-
}
|
|
19840
|
-
},
|
|
19841
|
-
{
|
|
19842
|
-
"name": "value",
|
|
19843
|
-
"type": {
|
|
19844
|
-
"text": "string"
|
|
19845
|
-
}
|
|
19846
|
-
}
|
|
19847
|
-
]
|
|
19943
|
+
"name": "hostUpdated"
|
|
19848
19944
|
}
|
|
19849
19945
|
]
|
|
19850
19946
|
}
|
|
@@ -19852,86 +19948,70 @@
|
|
|
19852
19948
|
"exports": [
|
|
19853
19949
|
{
|
|
19854
19950
|
"kind": "js",
|
|
19855
|
-
"name": "
|
|
19951
|
+
"name": "LightDomController",
|
|
19856
19952
|
"declaration": {
|
|
19857
|
-
"name": "
|
|
19858
|
-
"module": "src/common/controllers/
|
|
19953
|
+
"name": "LightDomController",
|
|
19954
|
+
"module": "src/common/controllers/LightDomController.ts"
|
|
19859
19955
|
}
|
|
19860
19956
|
}
|
|
19861
19957
|
]
|
|
19862
19958
|
},
|
|
19863
19959
|
{
|
|
19864
19960
|
"kind": "javascript-module",
|
|
19865
|
-
"path": "src/common/controllers/
|
|
19961
|
+
"path": "src/common/controllers/LightSlotController.ts",
|
|
19866
19962
|
"declarations": [
|
|
19867
19963
|
{
|
|
19868
19964
|
"kind": "class",
|
|
19869
|
-
"description": "",
|
|
19870
|
-
"name": "
|
|
19965
|
+
"description": "Handles cases where a component needs to render to light DOM,\nand potentially sync component properties to user-supplied content.",
|
|
19966
|
+
"name": "LightSlotController",
|
|
19871
19967
|
"members": [
|
|
19872
19968
|
{
|
|
19873
19969
|
"kind": "field",
|
|
19874
|
-
"name": "
|
|
19970
|
+
"name": "renderHook",
|
|
19875
19971
|
"type": {
|
|
19876
|
-
"text": "
|
|
19972
|
+
"text": "Comment | undefined"
|
|
19877
19973
|
},
|
|
19878
19974
|
"privacy": "private"
|
|
19879
19975
|
},
|
|
19880
19976
|
{
|
|
19881
|
-
"kind": "
|
|
19882
|
-
"name": "
|
|
19883
|
-
|
|
19884
|
-
|
|
19885
|
-
|
|
19886
|
-
"
|
|
19977
|
+
"kind": "field",
|
|
19978
|
+
"name": "lightDom",
|
|
19979
|
+
"type": {
|
|
19980
|
+
"text": "LightDomController | undefined"
|
|
19981
|
+
},
|
|
19982
|
+
"privacy": "private",
|
|
19983
|
+
"default": "new LightDomController(host, { render: () => (this.hasContent ? nothing : this.options.render()), renderOptions: { renderBefore: this.renderHook }, })"
|
|
19887
19984
|
},
|
|
19888
19985
|
{
|
|
19889
19986
|
"kind": "method",
|
|
19890
|
-
"name": "
|
|
19987
|
+
"name": "hostConnected",
|
|
19988
|
+
"inheritedFrom": {
|
|
19989
|
+
"name": "SlotController",
|
|
19990
|
+
"module": "src/common/controllers/SlotController.ts"
|
|
19991
|
+
}
|
|
19891
19992
|
},
|
|
19892
19993
|
{
|
|
19893
|
-
"kind": "
|
|
19894
|
-
"name": "
|
|
19994
|
+
"kind": "field",
|
|
19995
|
+
"name": "onChange",
|
|
19996
|
+
"privacy": "protected",
|
|
19895
19997
|
"parameters": [
|
|
19896
19998
|
{
|
|
19897
|
-
"name": "
|
|
19999
|
+
"name": "_e",
|
|
19898
20000
|
"type": {
|
|
19899
|
-
"text": "
|
|
20001
|
+
"text": "Event"
|
|
19900
20002
|
}
|
|
19901
20003
|
}
|
|
19902
|
-
]
|
|
19903
|
-
|
|
19904
|
-
|
|
19905
|
-
|
|
19906
|
-
|
|
19907
|
-
|
|
19908
|
-
|
|
19909
|
-
|
|
19910
|
-
|
|
19911
|
-
|
|
19912
|
-
|
|
19913
|
-
"module": "src/common/controllers/ShortcutController.ts"
|
|
19914
|
-
}
|
|
19915
|
-
},
|
|
19916
|
-
{
|
|
19917
|
-
"kind": "js",
|
|
19918
|
-
"name": "ShortcutMap",
|
|
19919
|
-
"declaration": {
|
|
19920
|
-
"name": "KeyBindingMap",
|
|
19921
|
-
"module": "src/common/controllers/ShortcutController.ts"
|
|
19922
|
-
}
|
|
19923
|
-
}
|
|
19924
|
-
]
|
|
19925
|
-
},
|
|
19926
|
-
{
|
|
19927
|
-
"kind": "javascript-module",
|
|
19928
|
-
"path": "src/common/controllers/SlotController.ts",
|
|
19929
|
-
"declarations": [
|
|
19930
|
-
{
|
|
19931
|
-
"kind": "class",
|
|
19932
|
-
"description": "",
|
|
19933
|
-
"name": "SlotController",
|
|
19934
|
-
"members": [
|
|
20004
|
+
],
|
|
20005
|
+
"inheritedFrom": {
|
|
20006
|
+
"name": "SlotController",
|
|
20007
|
+
"module": "src/common/controllers/SlotController.ts"
|
|
20008
|
+
}
|
|
20009
|
+
},
|
|
20010
|
+
{
|
|
20011
|
+
"kind": "method",
|
|
20012
|
+
"name": "syncLightDom",
|
|
20013
|
+
"privacy": "private"
|
|
20014
|
+
},
|
|
19935
20015
|
{
|
|
19936
20016
|
"kind": "field",
|
|
19937
20017
|
"name": "events",
|
|
@@ -19939,7 +20019,11 @@
|
|
|
19939
20019
|
"text": "EventController"
|
|
19940
20020
|
},
|
|
19941
20021
|
"privacy": "private",
|
|
19942
|
-
"default": "new EventController(host)"
|
|
20022
|
+
"default": "new EventController(host)",
|
|
20023
|
+
"inheritedFrom": {
|
|
20024
|
+
"name": "SlotController",
|
|
20025
|
+
"module": "src/common/controllers/SlotController.ts"
|
|
20026
|
+
}
|
|
19943
20027
|
},
|
|
19944
20028
|
{
|
|
19945
20029
|
"kind": "field",
|
|
@@ -19947,49 +20031,112 @@
|
|
|
19947
20031
|
"type": {
|
|
19948
20032
|
"text": "string"
|
|
19949
20033
|
},
|
|
19950
|
-
"privacy": "private"
|
|
19951
|
-
|
|
19952
|
-
|
|
19953
|
-
|
|
19954
|
-
|
|
20034
|
+
"privacy": "private",
|
|
20035
|
+
"inheritedFrom": {
|
|
20036
|
+
"name": "SlotController",
|
|
20037
|
+
"module": "src/common/controllers/SlotController.ts"
|
|
20038
|
+
}
|
|
19955
20039
|
},
|
|
19956
20040
|
{
|
|
19957
20041
|
"kind": "field",
|
|
19958
20042
|
"name": "hasContent",
|
|
19959
|
-
"readonly": true
|
|
20043
|
+
"readonly": true,
|
|
20044
|
+
"inheritedFrom": {
|
|
20045
|
+
"name": "SlotController",
|
|
20046
|
+
"module": "src/common/controllers/SlotController.ts"
|
|
20047
|
+
}
|
|
19960
20048
|
},
|
|
19961
20049
|
{
|
|
19962
20050
|
"kind": "field",
|
|
19963
20051
|
"name": "isEmpty",
|
|
19964
|
-
"readonly": true
|
|
20052
|
+
"readonly": true,
|
|
20053
|
+
"inheritedFrom": {
|
|
20054
|
+
"name": "SlotController",
|
|
20055
|
+
"module": "src/common/controllers/SlotController.ts"
|
|
20056
|
+
}
|
|
19965
20057
|
},
|
|
19966
20058
|
{
|
|
19967
20059
|
"kind": "field",
|
|
19968
20060
|
"name": "content",
|
|
19969
|
-
"readonly": true
|
|
20061
|
+
"readonly": true,
|
|
20062
|
+
"inheritedFrom": {
|
|
20063
|
+
"name": "SlotController",
|
|
20064
|
+
"module": "src/common/controllers/SlotController.ts"
|
|
20065
|
+
}
|
|
19970
20066
|
},
|
|
19971
20067
|
{
|
|
19972
20068
|
"kind": "field",
|
|
19973
20069
|
"name": "assigned",
|
|
19974
|
-
"readonly": true
|
|
20070
|
+
"readonly": true,
|
|
20071
|
+
"inheritedFrom": {
|
|
20072
|
+
"name": "SlotController",
|
|
20073
|
+
"module": "src/common/controllers/SlotController.ts"
|
|
20074
|
+
}
|
|
20075
|
+
},
|
|
20076
|
+
{
|
|
20077
|
+
"kind": "field",
|
|
20078
|
+
"name": "handleSlotChange",
|
|
20079
|
+
"privacy": "private",
|
|
20080
|
+
"inheritedFrom": {
|
|
20081
|
+
"name": "SlotController",
|
|
20082
|
+
"module": "src/common/controllers/SlotController.ts"
|
|
20083
|
+
}
|
|
20084
|
+
}
|
|
20085
|
+
],
|
|
20086
|
+
"superclass": {
|
|
20087
|
+
"name": "SlotController",
|
|
20088
|
+
"module": "/src/common/controllers/SlotController.js"
|
|
20089
|
+
}
|
|
20090
|
+
}
|
|
20091
|
+
],
|
|
20092
|
+
"exports": [
|
|
20093
|
+
{
|
|
20094
|
+
"kind": "js",
|
|
20095
|
+
"name": "LightSlotController",
|
|
20096
|
+
"declaration": {
|
|
20097
|
+
"name": "LightSlotController",
|
|
20098
|
+
"module": "src/common/controllers/LightSlotController.ts"
|
|
20099
|
+
}
|
|
20100
|
+
}
|
|
20101
|
+
]
|
|
20102
|
+
},
|
|
20103
|
+
{
|
|
20104
|
+
"kind": "javascript-module",
|
|
20105
|
+
"path": "src/common/controllers/PortalController.ts",
|
|
20106
|
+
"declarations": [
|
|
20107
|
+
{
|
|
20108
|
+
"kind": "class",
|
|
20109
|
+
"description": "",
|
|
20110
|
+
"name": "PortalController",
|
|
20111
|
+
"members": [
|
|
20112
|
+
{
|
|
20113
|
+
"kind": "field",
|
|
20114
|
+
"name": "renderHook",
|
|
20115
|
+
"type": {
|
|
20116
|
+
"text": "Comment"
|
|
20117
|
+
},
|
|
20118
|
+
"privacy": "private"
|
|
20119
|
+
},
|
|
20120
|
+
{
|
|
20121
|
+
"kind": "field",
|
|
20122
|
+
"name": "lightDom",
|
|
20123
|
+
"type": {
|
|
20124
|
+
"text": "LightDomController"
|
|
20125
|
+
},
|
|
20126
|
+
"privacy": "private",
|
|
20127
|
+
"default": "new LightDomController(host, { render: () => this.options.render.call(host), container: options.outlet, renderOptions: { renderBefore: this.renderHook, host, }, })"
|
|
20128
|
+
},
|
|
20129
|
+
{
|
|
20130
|
+
"kind": "method",
|
|
20131
|
+
"name": "hostConnected"
|
|
19975
20132
|
},
|
|
19976
20133
|
{
|
|
19977
|
-
"kind": "
|
|
19978
|
-
"name": "
|
|
19979
|
-
"privacy": "private"
|
|
20134
|
+
"kind": "method",
|
|
20135
|
+
"name": "hostUpdated"
|
|
19980
20136
|
},
|
|
19981
20137
|
{
|
|
19982
20138
|
"kind": "method",
|
|
19983
|
-
"name": "
|
|
19984
|
-
"privacy": "protected",
|
|
19985
|
-
"parameters": [
|
|
19986
|
-
{
|
|
19987
|
-
"name": "_e",
|
|
19988
|
-
"type": {
|
|
19989
|
-
"text": "Event"
|
|
19990
|
-
}
|
|
19991
|
-
}
|
|
19992
|
-
]
|
|
20139
|
+
"name": "hostDisconnected"
|
|
19993
20140
|
}
|
|
19994
20141
|
]
|
|
19995
20142
|
}
|
|
@@ -19997,31 +20144,30 @@
|
|
|
19997
20144
|
"exports": [
|
|
19998
20145
|
{
|
|
19999
20146
|
"kind": "js",
|
|
20000
|
-
"name": "
|
|
20147
|
+
"name": "PortalController",
|
|
20001
20148
|
"declaration": {
|
|
20002
|
-
"name": "
|
|
20003
|
-
"module": "src/common/controllers/
|
|
20149
|
+
"name": "PortalController",
|
|
20150
|
+
"module": "src/common/controllers/PortalController.ts"
|
|
20004
20151
|
}
|
|
20005
20152
|
}
|
|
20006
20153
|
]
|
|
20007
20154
|
},
|
|
20008
20155
|
{
|
|
20009
20156
|
"kind": "javascript-module",
|
|
20010
|
-
"path": "src/common/controllers/
|
|
20157
|
+
"path": "src/common/controllers/ResizeController.ts",
|
|
20011
20158
|
"declarations": [
|
|
20012
20159
|
{
|
|
20013
20160
|
"kind": "class",
|
|
20014
20161
|
"description": "",
|
|
20015
|
-
"name": "
|
|
20162
|
+
"name": "ResizeController",
|
|
20016
20163
|
"members": [
|
|
20017
20164
|
{
|
|
20018
20165
|
"kind": "field",
|
|
20019
|
-
"name": "
|
|
20166
|
+
"name": "observer",
|
|
20020
20167
|
"type": {
|
|
20021
|
-
"text": "
|
|
20168
|
+
"text": "ResizeObserver | undefined"
|
|
20022
20169
|
},
|
|
20023
|
-
"privacy": "private"
|
|
20024
|
-
"default": "new EventController(host)"
|
|
20170
|
+
"privacy": "private"
|
|
20025
20171
|
},
|
|
20026
20172
|
{
|
|
20027
20173
|
"kind": "field",
|
|
@@ -20034,30 +20180,21 @@
|
|
|
20034
20180
|
},
|
|
20035
20181
|
{
|
|
20036
20182
|
"kind": "field",
|
|
20037
|
-
"name": "
|
|
20183
|
+
"name": "borderBoxSize",
|
|
20038
20184
|
"type": {
|
|
20039
|
-
"text": "
|
|
20185
|
+
"text": "ResizeObserverSize | undefined"
|
|
20040
20186
|
},
|
|
20041
|
-
"privacy": "private"
|
|
20042
|
-
"default": "0"
|
|
20187
|
+
"privacy": "private"
|
|
20043
20188
|
},
|
|
20044
20189
|
{
|
|
20045
20190
|
"kind": "field",
|
|
20046
|
-
"name": "
|
|
20047
|
-
"
|
|
20048
|
-
"text": "number"
|
|
20049
|
-
},
|
|
20050
|
-
"privacy": "private",
|
|
20051
|
-
"default": "0"
|
|
20191
|
+
"name": "inlineSize",
|
|
20192
|
+
"readonly": true
|
|
20052
20193
|
},
|
|
20053
20194
|
{
|
|
20054
20195
|
"kind": "field",
|
|
20055
|
-
"name": "
|
|
20056
|
-
"
|
|
20057
|
-
"text": "SetRequired<SwipeControllerOptions, 'target'>"
|
|
20058
|
-
},
|
|
20059
|
-
"privacy": "private",
|
|
20060
|
-
"default": "{ target: () => host, ...options, }"
|
|
20196
|
+
"name": "blockSize",
|
|
20197
|
+
"readonly": true
|
|
20061
20198
|
},
|
|
20062
20199
|
{
|
|
20063
20200
|
"kind": "method",
|
|
@@ -20065,100 +20202,11 @@
|
|
|
20065
20202
|
},
|
|
20066
20203
|
{
|
|
20067
20204
|
"kind": "method",
|
|
20068
|
-
"name": "
|
|
20069
|
-
},
|
|
20070
|
-
{
|
|
20071
|
-
"kind": "field",
|
|
20072
|
-
"name": "handleTouchStart",
|
|
20073
|
-
"privacy": "private"
|
|
20074
|
-
},
|
|
20075
|
-
{
|
|
20076
|
-
"kind": "field",
|
|
20077
|
-
"name": "handleTouchEnd",
|
|
20078
|
-
"privacy": "private"
|
|
20079
|
-
}
|
|
20080
|
-
]
|
|
20081
|
-
},
|
|
20082
|
-
{
|
|
20083
|
-
"kind": "variable",
|
|
20084
|
-
"name": "distX"
|
|
20085
|
-
},
|
|
20086
|
-
{
|
|
20087
|
-
"kind": "variable",
|
|
20088
|
-
"name": "distY"
|
|
20089
|
-
},
|
|
20090
|
-
{
|
|
20091
|
-
"kind": "function",
|
|
20092
|
-
"name": "isHorizontalSwipe",
|
|
20093
|
-
"parameters": [
|
|
20094
|
-
{
|
|
20095
|
-
"name": "{ distX, distY }",
|
|
20096
|
-
"type": {
|
|
20097
|
-
"text": "SwipeDetails"
|
|
20098
|
-
}
|
|
20099
|
-
}
|
|
20100
|
-
]
|
|
20101
|
-
},
|
|
20102
|
-
{
|
|
20103
|
-
"kind": "function",
|
|
20104
|
-
"name": "isDownwardsSwipe",
|
|
20105
|
-
"parameters": [
|
|
20106
|
-
{
|
|
20107
|
-
"name": "{ distX, distY }",
|
|
20108
|
-
"type": {
|
|
20109
|
-
"text": "SwipeDetails"
|
|
20110
|
-
}
|
|
20111
|
-
}
|
|
20112
|
-
]
|
|
20113
|
-
}
|
|
20114
|
-
],
|
|
20115
|
-
"exports": [
|
|
20116
|
-
{
|
|
20117
|
-
"kind": "js",
|
|
20118
|
-
"name": "SwipeController",
|
|
20119
|
-
"declaration": {
|
|
20120
|
-
"name": "SwipeController",
|
|
20121
|
-
"module": "src/common/controllers/SwipeController.ts"
|
|
20122
|
-
}
|
|
20123
|
-
},
|
|
20124
|
-
{
|
|
20125
|
-
"kind": "js",
|
|
20126
|
-
"name": "isHorizontalSwipe",
|
|
20127
|
-
"declaration": {
|
|
20128
|
-
"name": "isHorizontalSwipe",
|
|
20129
|
-
"module": "src/common/controllers/SwipeController.ts"
|
|
20130
|
-
}
|
|
20131
|
-
},
|
|
20132
|
-
{
|
|
20133
|
-
"kind": "js",
|
|
20134
|
-
"name": "isDownwardsSwipe",
|
|
20135
|
-
"declaration": {
|
|
20136
|
-
"name": "isDownwardsSwipe",
|
|
20137
|
-
"module": "src/common/controllers/SwipeController.ts"
|
|
20138
|
-
}
|
|
20139
|
-
}
|
|
20140
|
-
]
|
|
20141
|
-
},
|
|
20142
|
-
{
|
|
20143
|
-
"kind": "javascript-module",
|
|
20144
|
-
"path": "src/common/decorators/observe.ts",
|
|
20145
|
-
"declarations": [
|
|
20146
|
-
{
|
|
20147
|
-
"kind": "function",
|
|
20148
|
-
"name": "observe",
|
|
20149
|
-
"parameters": [
|
|
20150
|
-
{
|
|
20151
|
-
"name": "propertyName",
|
|
20152
|
-
"type": {
|
|
20153
|
-
"text": "string"
|
|
20154
|
-
}
|
|
20205
|
+
"name": "hostConnected"
|
|
20155
20206
|
},
|
|
20156
20207
|
{
|
|
20157
|
-
"
|
|
20158
|
-
"
|
|
20159
|
-
"type": {
|
|
20160
|
-
"text": "ObserveLifecycle"
|
|
20161
|
-
}
|
|
20208
|
+
"kind": "method",
|
|
20209
|
+
"name": "hostDisconnected"
|
|
20162
20210
|
}
|
|
20163
20211
|
]
|
|
20164
20212
|
}
|
|
@@ -20166,221 +20214,126 @@
|
|
|
20166
20214
|
"exports": [
|
|
20167
20215
|
{
|
|
20168
20216
|
"kind": "js",
|
|
20169
|
-
"name": "
|
|
20217
|
+
"name": "ResizeController",
|
|
20170
20218
|
"declaration": {
|
|
20171
|
-
"name": "
|
|
20172
|
-
"module": "src/common/
|
|
20219
|
+
"name": "ResizeController",
|
|
20220
|
+
"module": "src/common/controllers/ResizeController.ts"
|
|
20173
20221
|
}
|
|
20174
20222
|
}
|
|
20175
|
-
]
|
|
20176
|
-
},
|
|
20177
|
-
{
|
|
20178
|
-
"kind": "javascript-module",
|
|
20179
|
-
"path": "src/common/
|
|
20180
|
-
"declarations": [
|
|
20181
|
-
{
|
|
20182
|
-
"kind": "function",
|
|
20183
|
-
"name": "cond",
|
|
20184
|
-
"return": {
|
|
20185
|
-
"type": {
|
|
20186
|
-
"text": "typeof value | typeof nothing"
|
|
20187
|
-
}
|
|
20188
|
-
},
|
|
20189
|
-
"parameters": [
|
|
20190
|
-
{
|
|
20191
|
-
"name": "value",
|
|
20192
|
-
"type": {
|
|
20193
|
-
"text": "any"
|
|
20194
|
-
}
|
|
20195
|
-
}
|
|
20196
|
-
],
|
|
20197
|
-
"description": "if value is truthy, return it, otherwise return nothing"
|
|
20198
|
-
},
|
|
20199
|
-
{
|
|
20200
|
-
"kind": "function",
|
|
20201
|
-
"name": "cond",
|
|
20202
|
-
"return": {
|
|
20203
|
-
"type": {
|
|
20204
|
-
"text": "typeof trueCase | typeof nothing"
|
|
20205
|
-
}
|
|
20206
|
-
},
|
|
20207
|
-
"parameters": [
|
|
20208
|
-
{
|
|
20209
|
-
"name": "condition",
|
|
20210
|
-
"type": {
|
|
20211
|
-
"text": "unknown"
|
|
20212
|
-
}
|
|
20213
|
-
},
|
|
20214
|
-
{
|
|
20215
|
-
"name": "trueCase",
|
|
20216
|
-
"type": {
|
|
20217
|
-
"text": "any"
|
|
20218
|
-
}
|
|
20219
|
-
}
|
|
20220
|
-
],
|
|
20221
|
-
"description": "if condition is truthy, return trueCase, otherwise return nothing"
|
|
20222
|
-
},
|
|
20223
|
-
{
|
|
20224
|
-
"kind": "function",
|
|
20225
|
-
"name": "cond",
|
|
20226
|
-
"return": {
|
|
20227
|
-
"type": {
|
|
20228
|
-
"text": "typeof trueCase"
|
|
20229
|
-
}
|
|
20230
|
-
},
|
|
20231
|
-
"parameters": [
|
|
20232
|
-
{
|
|
20233
|
-
"name": "condition",
|
|
20234
|
-
"type": {
|
|
20235
|
-
"text": "true"
|
|
20236
|
-
}
|
|
20237
|
-
},
|
|
20238
|
-
{
|
|
20239
|
-
"name": "trueCase",
|
|
20240
|
-
"type": {
|
|
20241
|
-
"text": "any"
|
|
20242
|
-
}
|
|
20243
|
-
}
|
|
20244
|
-
],
|
|
20245
|
-
"description": "condition is true, so always return trueCase"
|
|
20246
|
-
},
|
|
20247
|
-
{
|
|
20248
|
-
"kind": "function",
|
|
20249
|
-
"name": "cond",
|
|
20250
|
-
"return": {
|
|
20251
|
-
"type": {
|
|
20252
|
-
"text": "typeof nothing"
|
|
20253
|
-
}
|
|
20254
|
-
},
|
|
20255
|
-
"parameters": [
|
|
20256
|
-
{
|
|
20257
|
-
"name": "condition",
|
|
20258
|
-
"type": {
|
|
20259
|
-
"text": "false"
|
|
20260
|
-
}
|
|
20261
|
-
},
|
|
20262
|
-
{
|
|
20263
|
-
"name": "trueCase",
|
|
20264
|
-
"type": {
|
|
20265
|
-
"text": "any"
|
|
20266
|
-
}
|
|
20267
|
-
}
|
|
20268
|
-
],
|
|
20269
|
-
"description": "condition is false, to will always return nothing"
|
|
20270
|
-
},
|
|
20223
|
+
]
|
|
20224
|
+
},
|
|
20225
|
+
{
|
|
20226
|
+
"kind": "javascript-module",
|
|
20227
|
+
"path": "src/common/controllers/ScrollbarController.ts",
|
|
20228
|
+
"declarations": [
|
|
20271
20229
|
{
|
|
20272
|
-
"kind": "
|
|
20273
|
-
"
|
|
20274
|
-
"
|
|
20275
|
-
|
|
20276
|
-
"text": "typeof trueCase | typeof falseCase"
|
|
20277
|
-
}
|
|
20278
|
-
},
|
|
20279
|
-
"parameters": [
|
|
20230
|
+
"kind": "class",
|
|
20231
|
+
"description": "We can have any number of components open at a time, all of which lock scroll.\nConsider multiple modals being open, plus some popouts, etc.\n\nSo we need some bookkeeping to know when to unlock scroll...\n\nBut we can't simply keep a count of how many components are open,\nsince a misbehaving component may call lockScroll() multiple times.\n\nNor can we rely on the first component to call lockScroll() to be the last to unlockScroll(),\nsince we cannot guarantee order of operations.\n\nTherefore, we track instances of ScrollbarController in a Set,\nand only unlock scroll when the set is empty.\n\nWe also need to be careful to restore any styles that were there\nbefore we locked scroll.",
|
|
20232
|
+
"name": "ScrollbarController",
|
|
20233
|
+
"members": [
|
|
20280
20234
|
{
|
|
20281
|
-
"
|
|
20282
|
-
"
|
|
20283
|
-
|
|
20284
|
-
|
|
20235
|
+
"kind": "field",
|
|
20236
|
+
"name": "locks",
|
|
20237
|
+
"privacy": "private",
|
|
20238
|
+
"static": true,
|
|
20239
|
+
"default": "new Set<ScrollbarController>()"
|
|
20285
20240
|
},
|
|
20286
20241
|
{
|
|
20287
|
-
"
|
|
20242
|
+
"kind": "field",
|
|
20243
|
+
"name": "resets",
|
|
20288
20244
|
"type": {
|
|
20289
|
-
"text": "
|
|
20290
|
-
}
|
|
20245
|
+
"text": "Array<() => void>"
|
|
20246
|
+
},
|
|
20247
|
+
"privacy": "private",
|
|
20248
|
+
"static": true,
|
|
20249
|
+
"default": "[]"
|
|
20291
20250
|
},
|
|
20292
20251
|
{
|
|
20293
|
-
"
|
|
20294
|
-
"
|
|
20295
|
-
|
|
20296
|
-
}
|
|
20297
|
-
}
|
|
20298
|
-
],
|
|
20299
|
-
"description": "if condition is truthy, return trueCase, otherwise return falseCase"
|
|
20300
|
-
},
|
|
20301
|
-
{
|
|
20302
|
-
"kind": "function",
|
|
20303
|
-
"name": "cond",
|
|
20304
|
-
"return": {
|
|
20305
|
-
"type": {
|
|
20306
|
-
"text": "typeof trueCase"
|
|
20307
|
-
}
|
|
20308
|
-
},
|
|
20309
|
-
"parameters": [
|
|
20252
|
+
"kind": "method",
|
|
20253
|
+
"name": "hostDisconnected"
|
|
20254
|
+
},
|
|
20310
20255
|
{
|
|
20311
|
-
"
|
|
20312
|
-
"
|
|
20313
|
-
"text": "true"
|
|
20314
|
-
}
|
|
20256
|
+
"kind": "method",
|
|
20257
|
+
"name": "lockScroll"
|
|
20315
20258
|
},
|
|
20316
20259
|
{
|
|
20317
|
-
"
|
|
20318
|
-
"
|
|
20319
|
-
"text": "any"
|
|
20320
|
-
}
|
|
20260
|
+
"kind": "method",
|
|
20261
|
+
"name": "unlockScroll"
|
|
20321
20262
|
},
|
|
20322
20263
|
{
|
|
20323
|
-
"
|
|
20324
|
-
"
|
|
20325
|
-
|
|
20326
|
-
|
|
20264
|
+
"kind": "method",
|
|
20265
|
+
"name": "setStyle",
|
|
20266
|
+
"privacy": "private",
|
|
20267
|
+
"static": true,
|
|
20268
|
+
"parameters": [
|
|
20269
|
+
{
|
|
20270
|
+
"name": "property",
|
|
20271
|
+
"type": {
|
|
20272
|
+
"text": "string"
|
|
20273
|
+
}
|
|
20274
|
+
},
|
|
20275
|
+
{
|
|
20276
|
+
"name": "value",
|
|
20277
|
+
"type": {
|
|
20278
|
+
"text": "string"
|
|
20279
|
+
}
|
|
20280
|
+
}
|
|
20281
|
+
]
|
|
20327
20282
|
}
|
|
20328
|
-
]
|
|
20329
|
-
|
|
20330
|
-
|
|
20283
|
+
]
|
|
20284
|
+
}
|
|
20285
|
+
],
|
|
20286
|
+
"exports": [
|
|
20331
20287
|
{
|
|
20332
|
-
"kind": "
|
|
20333
|
-
"name": "
|
|
20334
|
-
"
|
|
20335
|
-
"
|
|
20336
|
-
|
|
20337
|
-
|
|
20338
|
-
|
|
20339
|
-
|
|
20288
|
+
"kind": "js",
|
|
20289
|
+
"name": "ScrollbarController",
|
|
20290
|
+
"declaration": {
|
|
20291
|
+
"name": "ScrollbarController",
|
|
20292
|
+
"module": "src/common/controllers/ScrollbarController.ts"
|
|
20293
|
+
}
|
|
20294
|
+
}
|
|
20295
|
+
]
|
|
20296
|
+
},
|
|
20297
|
+
{
|
|
20298
|
+
"kind": "javascript-module",
|
|
20299
|
+
"path": "src/common/controllers/ShortcutController.ts",
|
|
20300
|
+
"declarations": [
|
|
20301
|
+
{
|
|
20302
|
+
"kind": "class",
|
|
20303
|
+
"description": "",
|
|
20304
|
+
"name": "ShortcutController",
|
|
20305
|
+
"members": [
|
|
20340
20306
|
{
|
|
20341
|
-
"
|
|
20307
|
+
"kind": "field",
|
|
20308
|
+
"name": "unregister",
|
|
20342
20309
|
"type": {
|
|
20343
|
-
"text": "
|
|
20344
|
-
}
|
|
20310
|
+
"text": "ReturnType<typeof tinykeys> | undefined"
|
|
20311
|
+
},
|
|
20312
|
+
"privacy": "private"
|
|
20345
20313
|
},
|
|
20346
20314
|
{
|
|
20347
|
-
"
|
|
20348
|
-
"
|
|
20349
|
-
"text": "any"
|
|
20350
|
-
}
|
|
20315
|
+
"kind": "method",
|
|
20316
|
+
"name": "hostConnected"
|
|
20351
20317
|
},
|
|
20352
20318
|
{
|
|
20353
|
-
"
|
|
20354
|
-
"
|
|
20355
|
-
"text": "any"
|
|
20356
|
-
}
|
|
20357
|
-
}
|
|
20358
|
-
],
|
|
20359
|
-
"description": "condition is false, so always return falseCase"
|
|
20360
|
-
},
|
|
20361
|
-
{
|
|
20362
|
-
"kind": "function",
|
|
20363
|
-
"name": "cond",
|
|
20364
|
-
"parameters": [
|
|
20365
|
-
{
|
|
20366
|
-
"name": "condition",
|
|
20367
|
-
"type": {
|
|
20368
|
-
"text": "unknown"
|
|
20369
|
-
}
|
|
20319
|
+
"kind": "method",
|
|
20320
|
+
"name": "hostDisconnected"
|
|
20370
20321
|
},
|
|
20371
20322
|
{
|
|
20372
|
-
"
|
|
20373
|
-
"
|
|
20374
|
-
"type": {
|
|
20375
|
-
"text": "any"
|
|
20376
|
-
}
|
|
20323
|
+
"kind": "method",
|
|
20324
|
+
"name": "unbind"
|
|
20377
20325
|
},
|
|
20378
20326
|
{
|
|
20379
|
-
"
|
|
20380
|
-
"
|
|
20381
|
-
"
|
|
20382
|
-
|
|
20383
|
-
|
|
20327
|
+
"kind": "method",
|
|
20328
|
+
"name": "bind",
|
|
20329
|
+
"parameters": [
|
|
20330
|
+
{
|
|
20331
|
+
"name": "shortcuts",
|
|
20332
|
+
"type": {
|
|
20333
|
+
"text": "KeyBindingMap"
|
|
20334
|
+
}
|
|
20335
|
+
}
|
|
20336
|
+
]
|
|
20384
20337
|
}
|
|
20385
20338
|
]
|
|
20386
20339
|
}
|
|
@@ -20388,222 +20341,269 @@
|
|
|
20388
20341
|
"exports": [
|
|
20389
20342
|
{
|
|
20390
20343
|
"kind": "js",
|
|
20391
|
-
"name": "
|
|
20392
|
-
"declaration": {
|
|
20393
|
-
"name": "cond",
|
|
20394
|
-
"module": "src/common/directives/cond.ts"
|
|
20395
|
-
}
|
|
20396
|
-
},
|
|
20397
|
-
{
|
|
20398
|
-
"kind": "js",
|
|
20399
|
-
"name": "cond",
|
|
20400
|
-
"declaration": {
|
|
20401
|
-
"name": "cond",
|
|
20402
|
-
"module": "src/common/directives/cond.ts"
|
|
20403
|
-
}
|
|
20404
|
-
},
|
|
20405
|
-
{
|
|
20406
|
-
"kind": "js",
|
|
20407
|
-
"name": "cond",
|
|
20408
|
-
"declaration": {
|
|
20409
|
-
"name": "cond",
|
|
20410
|
-
"module": "src/common/directives/cond.ts"
|
|
20411
|
-
}
|
|
20412
|
-
},
|
|
20413
|
-
{
|
|
20414
|
-
"kind": "js",
|
|
20415
|
-
"name": "cond",
|
|
20416
|
-
"declaration": {
|
|
20417
|
-
"name": "cond",
|
|
20418
|
-
"module": "src/common/directives/cond.ts"
|
|
20419
|
-
}
|
|
20420
|
-
},
|
|
20421
|
-
{
|
|
20422
|
-
"kind": "js",
|
|
20423
|
-
"name": "cond",
|
|
20344
|
+
"name": "ShortcutController",
|
|
20424
20345
|
"declaration": {
|
|
20425
|
-
"name": "
|
|
20426
|
-
"module": "src/common/
|
|
20346
|
+
"name": "ShortcutController",
|
|
20347
|
+
"module": "src/common/controllers/ShortcutController.ts"
|
|
20427
20348
|
}
|
|
20428
20349
|
},
|
|
20429
20350
|
{
|
|
20430
20351
|
"kind": "js",
|
|
20431
|
-
"name": "
|
|
20352
|
+
"name": "ShortcutMap",
|
|
20432
20353
|
"declaration": {
|
|
20433
|
-
"name": "
|
|
20434
|
-
"module": "src/common/
|
|
20354
|
+
"name": "KeyBindingMap",
|
|
20355
|
+
"module": "src/common/controllers/ShortcutController.ts"
|
|
20435
20356
|
}
|
|
20436
|
-
}
|
|
20357
|
+
}
|
|
20358
|
+
]
|
|
20359
|
+
},
|
|
20360
|
+
{
|
|
20361
|
+
"kind": "javascript-module",
|
|
20362
|
+
"path": "src/common/controllers/SlotController.ts",
|
|
20363
|
+
"declarations": [
|
|
20437
20364
|
{
|
|
20438
|
-
"kind": "
|
|
20439
|
-
"
|
|
20440
|
-
"
|
|
20441
|
-
|
|
20442
|
-
|
|
20443
|
-
|
|
20444
|
-
|
|
20365
|
+
"kind": "class",
|
|
20366
|
+
"description": "",
|
|
20367
|
+
"name": "SlotController",
|
|
20368
|
+
"members": [
|
|
20369
|
+
{
|
|
20370
|
+
"kind": "field",
|
|
20371
|
+
"name": "events",
|
|
20372
|
+
"type": {
|
|
20373
|
+
"text": "EventController"
|
|
20374
|
+
},
|
|
20375
|
+
"privacy": "private",
|
|
20376
|
+
"default": "new EventController(host)"
|
|
20377
|
+
},
|
|
20378
|
+
{
|
|
20379
|
+
"kind": "field",
|
|
20380
|
+
"name": "selector",
|
|
20381
|
+
"type": {
|
|
20382
|
+
"text": "string"
|
|
20383
|
+
},
|
|
20384
|
+
"privacy": "private"
|
|
20385
|
+
},
|
|
20386
|
+
{
|
|
20387
|
+
"kind": "method",
|
|
20388
|
+
"name": "hostConnected"
|
|
20389
|
+
},
|
|
20390
|
+
{
|
|
20391
|
+
"kind": "field",
|
|
20392
|
+
"name": "hasContent",
|
|
20393
|
+
"readonly": true
|
|
20394
|
+
},
|
|
20395
|
+
{
|
|
20396
|
+
"kind": "field",
|
|
20397
|
+
"name": "isEmpty",
|
|
20398
|
+
"readonly": true
|
|
20399
|
+
},
|
|
20400
|
+
{
|
|
20401
|
+
"kind": "field",
|
|
20402
|
+
"name": "content",
|
|
20403
|
+
"readonly": true
|
|
20404
|
+
},
|
|
20405
|
+
{
|
|
20406
|
+
"kind": "field",
|
|
20407
|
+
"name": "assigned",
|
|
20408
|
+
"readonly": true
|
|
20409
|
+
},
|
|
20410
|
+
{
|
|
20411
|
+
"kind": "field",
|
|
20412
|
+
"name": "handleSlotChange",
|
|
20413
|
+
"privacy": "private"
|
|
20414
|
+
},
|
|
20415
|
+
{
|
|
20416
|
+
"kind": "method",
|
|
20417
|
+
"name": "onChange",
|
|
20418
|
+
"privacy": "protected",
|
|
20419
|
+
"parameters": [
|
|
20420
|
+
{
|
|
20421
|
+
"name": "_e",
|
|
20422
|
+
"type": {
|
|
20423
|
+
"text": "Event"
|
|
20424
|
+
}
|
|
20425
|
+
}
|
|
20426
|
+
]
|
|
20427
|
+
}
|
|
20428
|
+
]
|
|
20429
|
+
}
|
|
20430
|
+
],
|
|
20431
|
+
"exports": [
|
|
20445
20432
|
{
|
|
20446
20433
|
"kind": "js",
|
|
20447
|
-
"name": "
|
|
20434
|
+
"name": "SlotController",
|
|
20448
20435
|
"declaration": {
|
|
20449
|
-
"name": "
|
|
20450
|
-
"module": "src/common/
|
|
20436
|
+
"name": "SlotController",
|
|
20437
|
+
"module": "src/common/controllers/SlotController.ts"
|
|
20451
20438
|
}
|
|
20452
20439
|
}
|
|
20453
20440
|
]
|
|
20454
20441
|
},
|
|
20455
20442
|
{
|
|
20456
20443
|
"kind": "javascript-module",
|
|
20457
|
-
"path": "src/common/
|
|
20444
|
+
"path": "src/common/controllers/SwipeController.ts",
|
|
20458
20445
|
"declarations": [
|
|
20459
20446
|
{
|
|
20460
|
-
"kind": "
|
|
20461
|
-
"
|
|
20462
|
-
"
|
|
20463
|
-
|
|
20464
|
-
"text": "TInner"
|
|
20465
|
-
}
|
|
20466
|
-
},
|
|
20467
|
-
"parameters": [
|
|
20447
|
+
"kind": "class",
|
|
20448
|
+
"description": "",
|
|
20449
|
+
"name": "SwipeController",
|
|
20450
|
+
"members": [
|
|
20468
20451
|
{
|
|
20469
|
-
"
|
|
20452
|
+
"kind": "field",
|
|
20453
|
+
"name": "events",
|
|
20470
20454
|
"type": {
|
|
20471
|
-
"text": "
|
|
20472
|
-
}
|
|
20455
|
+
"text": "EventController"
|
|
20456
|
+
},
|
|
20457
|
+
"privacy": "private",
|
|
20458
|
+
"default": "new EventController(host)"
|
|
20473
20459
|
},
|
|
20474
20460
|
{
|
|
20475
|
-
"
|
|
20461
|
+
"kind": "field",
|
|
20462
|
+
"name": "hadFirstUpdate",
|
|
20476
20463
|
"type": {
|
|
20477
|
-
"text": "
|
|
20478
|
-
}
|
|
20464
|
+
"text": "boolean"
|
|
20465
|
+
},
|
|
20466
|
+
"privacy": "private",
|
|
20467
|
+
"default": "false"
|
|
20479
20468
|
},
|
|
20480
20469
|
{
|
|
20481
|
-
"
|
|
20470
|
+
"kind": "field",
|
|
20471
|
+
"name": "initialTouchX",
|
|
20482
20472
|
"type": {
|
|
20483
|
-
"text": "
|
|
20484
|
-
}
|
|
20485
|
-
|
|
20486
|
-
|
|
20487
|
-
|
|
20488
|
-
{
|
|
20489
|
-
"kind": "function",
|
|
20490
|
-
"name": "wrapIf",
|
|
20491
|
-
"return": {
|
|
20492
|
-
"type": {
|
|
20493
|
-
"text": "TWrapper"
|
|
20494
|
-
}
|
|
20495
|
-
},
|
|
20496
|
-
"parameters": [
|
|
20473
|
+
"text": "number"
|
|
20474
|
+
},
|
|
20475
|
+
"privacy": "private",
|
|
20476
|
+
"default": "0"
|
|
20477
|
+
},
|
|
20497
20478
|
{
|
|
20498
|
-
"
|
|
20479
|
+
"kind": "field",
|
|
20480
|
+
"name": "initialTouchY",
|
|
20499
20481
|
"type": {
|
|
20500
|
-
"text": "
|
|
20501
|
-
}
|
|
20482
|
+
"text": "number"
|
|
20483
|
+
},
|
|
20484
|
+
"privacy": "private",
|
|
20485
|
+
"default": "0"
|
|
20502
20486
|
},
|
|
20503
20487
|
{
|
|
20504
|
-
"
|
|
20488
|
+
"kind": "field",
|
|
20489
|
+
"name": "options",
|
|
20505
20490
|
"type": {
|
|
20506
|
-
"text": "
|
|
20507
|
-
}
|
|
20491
|
+
"text": "SetRequired<SwipeControllerOptions, 'target'>"
|
|
20492
|
+
},
|
|
20493
|
+
"privacy": "private",
|
|
20494
|
+
"default": "{ target: () => host, ...options, }"
|
|
20508
20495
|
},
|
|
20509
20496
|
{
|
|
20510
|
-
"
|
|
20511
|
-
"
|
|
20512
|
-
|
|
20513
|
-
|
|
20497
|
+
"kind": "method",
|
|
20498
|
+
"name": "hostUpdated"
|
|
20499
|
+
},
|
|
20500
|
+
{
|
|
20501
|
+
"kind": "method",
|
|
20502
|
+
"name": "hostDisconnected"
|
|
20503
|
+
},
|
|
20504
|
+
{
|
|
20505
|
+
"kind": "field",
|
|
20506
|
+
"name": "handleTouchStart",
|
|
20507
|
+
"privacy": "private"
|
|
20508
|
+
},
|
|
20509
|
+
{
|
|
20510
|
+
"kind": "field",
|
|
20511
|
+
"name": "handleTouchEnd",
|
|
20512
|
+
"privacy": "private"
|
|
20514
20513
|
}
|
|
20515
20514
|
]
|
|
20516
20515
|
},
|
|
20516
|
+
{
|
|
20517
|
+
"kind": "variable",
|
|
20518
|
+
"name": "distX"
|
|
20519
|
+
},
|
|
20520
|
+
{
|
|
20521
|
+
"kind": "variable",
|
|
20522
|
+
"name": "distY"
|
|
20523
|
+
},
|
|
20517
20524
|
{
|
|
20518
20525
|
"kind": "function",
|
|
20519
|
-
"name": "
|
|
20520
|
-
"return": {
|
|
20521
|
-
"type": {
|
|
20522
|
-
"text": "TInner | TWrapper"
|
|
20523
|
-
}
|
|
20524
|
-
},
|
|
20526
|
+
"name": "isHorizontalSwipe",
|
|
20525
20527
|
"parameters": [
|
|
20526
20528
|
{
|
|
20527
|
-
"name": "
|
|
20528
|
-
"type": {
|
|
20529
|
-
"text": "unknown"
|
|
20530
|
-
}
|
|
20531
|
-
},
|
|
20532
|
-
{
|
|
20533
|
-
"name": "inner",
|
|
20534
|
-
"type": {
|
|
20535
|
-
"text": "() => TInner"
|
|
20536
|
-
}
|
|
20537
|
-
},
|
|
20538
|
-
{
|
|
20539
|
-
"name": "wrapper",
|
|
20529
|
+
"name": "{ distX, distY }",
|
|
20540
20530
|
"type": {
|
|
20541
|
-
"text": "
|
|
20531
|
+
"text": "SwipeDetails"
|
|
20542
20532
|
}
|
|
20543
20533
|
}
|
|
20544
20534
|
]
|
|
20545
20535
|
},
|
|
20546
20536
|
{
|
|
20547
20537
|
"kind": "function",
|
|
20548
|
-
"name": "
|
|
20538
|
+
"name": "isDownwardsSwipe",
|
|
20549
20539
|
"parameters": [
|
|
20550
20540
|
{
|
|
20551
|
-
"name": "
|
|
20552
|
-
"type": {
|
|
20553
|
-
"text": "any"
|
|
20554
|
-
}
|
|
20555
|
-
},
|
|
20556
|
-
{
|
|
20557
|
-
"name": "inner",
|
|
20558
|
-
"type": {
|
|
20559
|
-
"text": "() => TInner"
|
|
20560
|
-
}
|
|
20561
|
-
},
|
|
20562
|
-
{
|
|
20563
|
-
"name": "wrapper",
|
|
20541
|
+
"name": "{ distX, distY }",
|
|
20564
20542
|
"type": {
|
|
20565
|
-
"text": "
|
|
20543
|
+
"text": "SwipeDetails"
|
|
20566
20544
|
}
|
|
20567
20545
|
}
|
|
20568
|
-
]
|
|
20569
|
-
"return": {
|
|
20570
|
-
"type": {
|
|
20571
|
-
"text": ""
|
|
20572
|
-
}
|
|
20573
|
-
}
|
|
20546
|
+
]
|
|
20574
20547
|
}
|
|
20575
20548
|
],
|
|
20576
20549
|
"exports": [
|
|
20577
20550
|
{
|
|
20578
20551
|
"kind": "js",
|
|
20579
|
-
"name": "
|
|
20552
|
+
"name": "SwipeController",
|
|
20580
20553
|
"declaration": {
|
|
20581
|
-
"name": "
|
|
20582
|
-
"module": "src/common/
|
|
20554
|
+
"name": "SwipeController",
|
|
20555
|
+
"module": "src/common/controllers/SwipeController.ts"
|
|
20583
20556
|
}
|
|
20584
20557
|
},
|
|
20585
20558
|
{
|
|
20586
20559
|
"kind": "js",
|
|
20587
|
-
"name": "
|
|
20560
|
+
"name": "isHorizontalSwipe",
|
|
20588
20561
|
"declaration": {
|
|
20589
|
-
"name": "
|
|
20590
|
-
"module": "src/common/
|
|
20562
|
+
"name": "isHorizontalSwipe",
|
|
20563
|
+
"module": "src/common/controllers/SwipeController.ts"
|
|
20591
20564
|
}
|
|
20592
20565
|
},
|
|
20593
20566
|
{
|
|
20594
20567
|
"kind": "js",
|
|
20595
|
-
"name": "
|
|
20568
|
+
"name": "isDownwardsSwipe",
|
|
20596
20569
|
"declaration": {
|
|
20597
|
-
"name": "
|
|
20598
|
-
"module": "src/common/
|
|
20570
|
+
"name": "isDownwardsSwipe",
|
|
20571
|
+
"module": "src/common/controllers/SwipeController.ts"
|
|
20599
20572
|
}
|
|
20600
|
-
}
|
|
20573
|
+
}
|
|
20574
|
+
]
|
|
20575
|
+
},
|
|
20576
|
+
{
|
|
20577
|
+
"kind": "javascript-module",
|
|
20578
|
+
"path": "src/common/decorators/observe.ts",
|
|
20579
|
+
"declarations": [
|
|
20580
|
+
{
|
|
20581
|
+
"kind": "function",
|
|
20582
|
+
"name": "observe",
|
|
20583
|
+
"parameters": [
|
|
20584
|
+
{
|
|
20585
|
+
"name": "propertyName",
|
|
20586
|
+
"type": {
|
|
20587
|
+
"text": "string"
|
|
20588
|
+
}
|
|
20589
|
+
},
|
|
20590
|
+
{
|
|
20591
|
+
"name": "lifecycle",
|
|
20592
|
+
"default": "'update'",
|
|
20593
|
+
"type": {
|
|
20594
|
+
"text": "ObserveLifecycle"
|
|
20595
|
+
}
|
|
20596
|
+
}
|
|
20597
|
+
]
|
|
20598
|
+
}
|
|
20599
|
+
],
|
|
20600
|
+
"exports": [
|
|
20601
20601
|
{
|
|
20602
20602
|
"kind": "js",
|
|
20603
|
-
"name": "
|
|
20603
|
+
"name": "observe",
|
|
20604
20604
|
"declaration": {
|
|
20605
|
-
"name": "
|
|
20606
|
-
"module": "src/common/
|
|
20605
|
+
"name": "observe",
|
|
20606
|
+
"module": "src/common/decorators/observe.ts"
|
|
20607
20607
|
}
|
|
20608
20608
|
}
|
|
20609
20609
|
]
|