@getflip/swirl-components 0.116.0 → 0.117.0

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.
Files changed (107) hide show
  1. package/components.json +371 -69
  2. package/dist/cjs/focus-trap.esm-21561e09.js +1145 -0
  3. package/dist/cjs/index-506fe4ea.js +14 -26
  4. package/dist/cjs/loader.cjs.js +1 -1
  5. package/dist/cjs/swirl-app-bar.cjs.entry.js +2 -1
  6. package/dist/cjs/swirl-app-icon.cjs.entry.js +1 -3
  7. package/dist/cjs/swirl-app-layout_6.cjs.entry.js +1 -1
  8. package/dist/cjs/swirl-badge.cjs.entry.js +1 -1
  9. package/dist/cjs/swirl-components.cjs.js +1 -1
  10. package/dist/cjs/swirl-icon-arrow-back_5.cjs.entry.js +87 -0
  11. package/dist/cjs/swirl-icon-dock-left.cjs.entry.js +23 -0
  12. package/dist/cjs/swirl-modal.cjs.entry.js +2 -1143
  13. package/dist/cjs/swirl-shell-layout.cjs.entry.js +87 -75
  14. package/dist/cjs/swirl-shell-navigation-item.cjs.entry.js +1 -1
  15. package/dist/cjs/swirl-visually-hidden.cjs.entry.js +1 -1
  16. package/dist/collection/assets/pdfjs/pdf.worker.min.js +1 -1
  17. package/dist/collection/collection-manifest.json +1 -0
  18. package/dist/collection/components/swirl-app-bar/swirl-app-bar.js +20 -1
  19. package/dist/collection/components/swirl-app-icon/swirl-app-icon.css +3 -22
  20. package/dist/collection/components/swirl-app-icon/swirl-app-icon.js +0 -20
  21. package/dist/collection/components/swirl-app-layout/swirl-app-layout.css +38 -4
  22. package/dist/collection/components/swirl-badge/swirl-badge.css +18 -1
  23. package/dist/collection/components/swirl-badge/swirl-badge.js +1 -1
  24. package/dist/collection/components/swirl-icon/icons/swirl-icon-dock-left.js +52 -0
  25. package/dist/collection/components/swirl-shell-layout/swirl-shell-layout.css +353 -132
  26. package/dist/collection/components/swirl-shell-layout/swirl-shell-layout.js +322 -95
  27. package/dist/collection/components/swirl-shell-layout/swirl-shell-layout.spec.js +8 -58
  28. package/dist/collection/components/swirl-shell-layout/swirl-shell-layout.stories.js +81 -102
  29. package/dist/collection/components/swirl-shell-navigation-item/swirl-shell-navigation-item.css +46 -35
  30. package/dist/collection/components/swirl-visually-hidden/swirl-visually-hidden.js +1 -1
  31. package/dist/collection/components/swirl-visually-hidden/swirl-visually-hidden.spec.js +0 -3
  32. package/dist/components/assets/images/flip-logo.png +0 -0
  33. package/dist/components/assets/pdfjs/pdf.worker.min.js +1 -1
  34. package/dist/components/focus-trap.esm.js +1143 -0
  35. package/dist/components/swirl-app-bar.js +3 -1
  36. package/dist/components/swirl-app-icon.js +1 -4
  37. package/dist/components/swirl-app-layout2.js +1 -1
  38. package/dist/components/swirl-badge2.js +1 -1
  39. package/dist/components/swirl-icon-arrow-back.js +1 -35
  40. package/dist/{esm/swirl-icon-arrow-back.entry.js → components/swirl-icon-arrow-back2.js} +26 -8
  41. package/dist/components/swirl-icon-arrow-forward.js +1 -35
  42. package/dist/{esm/swirl-icon-arrow-forward.entry.js → components/swirl-icon-arrow-forward2.js} +26 -8
  43. package/dist/components/swirl-icon-dock-left.d.ts +11 -0
  44. package/dist/components/swirl-icon-dock-left.js +40 -0
  45. package/dist/components/swirl-icon-double-arrow-left.js +1 -35
  46. package/dist/{esm/swirl-icon-double-arrow-left.entry.js → components/swirl-icon-double-arrow-left2.js} +26 -8
  47. package/dist/components/swirl-icon-double-arrow-right.js +1 -35
  48. package/dist/{esm/swirl-icon-double-arrow-right.entry.js → components/swirl-icon-double-arrow-right2.js} +26 -8
  49. package/dist/components/swirl-icon-menu.js +1 -35
  50. package/dist/{esm/swirl-icon-menu.entry.js → components/swirl-icon-menu2.js} +26 -8
  51. package/dist/components/swirl-modal.js +1 -1142
  52. package/dist/components/swirl-shell-layout.js +150 -89
  53. package/dist/components/swirl-shell-navigation-item.js +1 -1
  54. package/dist/components/swirl-visually-hidden2.js +2 -3
  55. package/dist/esm/focus-trap.esm-37cd2d2b.js +1143 -0
  56. package/dist/esm/index-99d0060d.js +14 -26
  57. package/dist/esm/loader.js +1 -1
  58. package/dist/esm/swirl-app-bar.entry.js +2 -1
  59. package/dist/esm/swirl-app-icon.entry.js +1 -3
  60. package/dist/esm/swirl-app-layout_6.entry.js +1 -1
  61. package/dist/esm/swirl-badge.entry.js +1 -1
  62. package/dist/esm/swirl-components.js +1 -1
  63. package/dist/esm/swirl-icon-arrow-back_5.entry.js +79 -0
  64. package/dist/esm/swirl-icon-dock-left.entry.js +19 -0
  65. package/dist/esm/swirl-modal.entry.js +1 -1142
  66. package/dist/esm/swirl-shell-layout.entry.js +88 -76
  67. package/dist/esm/swirl-shell-navigation-item.entry.js +1 -1
  68. package/dist/esm/swirl-visually-hidden.entry.js +1 -1
  69. package/dist/swirl-components/p-08fd60a5.entry.js +1 -0
  70. package/dist/swirl-components/p-0ac2eb84.entry.js +1 -0
  71. package/dist/swirl-components/p-11c6c9ba.entry.js +1 -0
  72. package/dist/swirl-components/p-25b4973d.entry.js +1 -0
  73. package/dist/swirl-components/p-262771e5.entry.js +1 -0
  74. package/dist/swirl-components/p-3795fbb4.entry.js +1 -0
  75. package/dist/swirl-components/p-40ee5f22.entry.js +1 -0
  76. package/dist/swirl-components/p-4a69e7f3.entry.js +1 -0
  77. package/dist/swirl-components/p-76c36ee9.entry.js +1 -0
  78. package/dist/swirl-components/p-7c4a4b66.entry.js +1 -0
  79. package/dist/swirl-components/p-c2e1dfdb.js +10 -0
  80. package/dist/swirl-components/swirl-components.esm.js +1 -1
  81. package/dist/types/components/swirl-app-bar/swirl-app-bar.d.ts +1 -0
  82. package/dist/types/components/swirl-app-icon/swirl-app-icon.d.ts +0 -1
  83. package/dist/types/components/swirl-badge/swirl-badge.d.ts +1 -1
  84. package/dist/types/components/swirl-icon/icons/swirl-icon-dock-left.d.ts +5 -0
  85. package/dist/types/components/swirl-shell-layout/swirl-shell-layout.d.ts +42 -25
  86. package/dist/types/components.d.ts +50 -11
  87. package/icons.json +1 -1
  88. package/package.json +2 -2
  89. package/vscode-data.json +58 -6
  90. package/dist/cjs/swirl-icon-arrow-back.cjs.entry.js +0 -23
  91. package/dist/cjs/swirl-icon-arrow-forward.cjs.entry.js +0 -23
  92. package/dist/cjs/swirl-icon-double-arrow-left.cjs.entry.js +0 -23
  93. package/dist/cjs/swirl-icon-double-arrow-right.cjs.entry.js +0 -23
  94. package/dist/cjs/swirl-icon-menu.cjs.entry.js +0 -23
  95. package/dist/swirl-components/p-3a2abee9.entry.js +0 -1
  96. package/dist/swirl-components/p-441c8210.entry.js +0 -1
  97. package/dist/swirl-components/p-4a84e63d.entry.js +0 -1
  98. package/dist/swirl-components/p-54e4ff0b.entry.js +0 -1
  99. package/dist/swirl-components/p-5da3a9a8.entry.js +0 -1
  100. package/dist/swirl-components/p-645a878c.entry.js +0 -1
  101. package/dist/swirl-components/p-79be22ea.entry.js +0 -10
  102. package/dist/swirl-components/p-97668c59.entry.js +0 -1
  103. package/dist/swirl-components/p-be2cf7ee.entry.js +0 -1
  104. package/dist/swirl-components/p-c4d4a99d.entry.js +0 -1
  105. package/dist/swirl-components/p-ca78767e.entry.js +0 -1
  106. package/dist/swirl-components/p-d2fc7935.entry.js +0 -1
  107. package/dist/swirl-components/p-f83a0b0f.entry.js +0 -1
package/components.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "timestamp": "2023-11-27T14:41:28",
2
+ "timestamp": "2023-11-30T15:24:33",
3
3
  "compiler": {
4
4
  "name": "@stencil/core",
5
5
  "version": "3.3.1",
@@ -698,6 +698,23 @@
698
698
  "optional": true,
699
699
  "required": false
700
700
  },
701
+ {
702
+ "name": "closeButtonIcon",
703
+ "type": "string",
704
+ "mutable": false,
705
+ "attr": "close-button-icon",
706
+ "reflectToAttr": false,
707
+ "docs": "",
708
+ "docsTags": [],
709
+ "default": "\"<swirl-icon-close></swirl-icon-close>\"",
710
+ "values": [
711
+ {
712
+ "type": "string"
713
+ }
714
+ ],
715
+ "optional": true,
716
+ "required": false
717
+ },
701
718
  {
702
719
  "name": "closeButtonLabel",
703
720
  "type": "string",
@@ -876,23 +893,6 @@
876
893
  "docsTags": [],
877
894
  "usage": {},
878
895
  "props": [
879
- {
880
- "name": "hideBorder",
881
- "type": "boolean",
882
- "mutable": false,
883
- "attr": "hide-border",
884
- "reflectToAttr": false,
885
- "docs": "",
886
- "docsTags": [],
887
- "default": "false",
888
- "values": [
889
- {
890
- "type": "boolean"
891
- }
892
- ],
893
- "optional": true,
894
- "required": false
895
- },
896
896
  {
897
897
  "name": "icon",
898
898
  "type": "string",
@@ -2109,7 +2109,7 @@
2109
2109
  },
2110
2110
  {
2111
2111
  "name": "size",
2112
- "type": "\"m\" | \"s\"",
2112
+ "type": "\"m\" | \"s\" | \"xs\"",
2113
2113
  "mutable": false,
2114
2114
  "attr": "size",
2115
2115
  "reflectToAttr": false,
@@ -2124,6 +2124,10 @@
2124
2124
  {
2125
2125
  "value": "s",
2126
2126
  "type": "string"
2127
+ },
2128
+ {
2129
+ "value": "xs",
2130
+ "type": "string"
2127
2131
  }
2128
2132
  ],
2129
2133
  "optional": true,
@@ -2159,10 +2163,14 @@
2159
2163
  "slots": [],
2160
2164
  "parts": [],
2161
2165
  "dependents": [
2166
+ "swirl-shell-layout",
2162
2167
  "swirl-shell-navigation-item"
2163
2168
  ],
2164
2169
  "dependencies": [],
2165
2170
  "dependencyGraph": {
2171
+ "swirl-shell-layout": [
2172
+ "swirl-badge"
2173
+ ],
2166
2174
  "swirl-shell-navigation-item": [
2167
2175
  "swirl-badge"
2168
2176
  ]
@@ -3336,7 +3344,6 @@
3336
3344
  "swirl-pdf-reader",
3337
3345
  "swirl-resource-list-file-item",
3338
3346
  "swirl-resource-list-item",
3339
- "swirl-shell-layout",
3340
3347
  "swirl-thumbnail"
3341
3348
  ],
3342
3349
  "dependencies": [],
@@ -3380,9 +3387,6 @@
3380
3387
  "swirl-resource-list-item": [
3381
3388
  "swirl-button"
3382
3389
  ],
3383
- "swirl-shell-layout": [
3384
- "swirl-button"
3385
- ],
3386
3390
  "swirl-thumbnail": [
3387
3391
  "swirl-button"
3388
3392
  ]
@@ -8531,12 +8535,16 @@
8531
8535
  "slots": [],
8532
8536
  "parts": [],
8533
8537
  "dependents": [
8534
- "swirl-accordion-item"
8538
+ "swirl-accordion-item",
8539
+ "swirl-shell-layout"
8535
8540
  ],
8536
8541
  "dependencies": [],
8537
8542
  "dependencyGraph": {
8538
8543
  "swirl-accordion-item": [
8539
8544
  "swirl-icon"
8545
+ ],
8546
+ "swirl-shell-layout": [
8547
+ "swirl-icon"
8540
8548
  ]
8541
8549
  }
8542
8550
  },
@@ -8920,9 +8928,15 @@
8920
8928
  "docs": ""
8921
8929
  }
8922
8930
  ],
8923
- "dependents": [],
8931
+ "dependents": [
8932
+ "swirl-shell-layout"
8933
+ ],
8924
8934
  "dependencies": [],
8925
- "dependencyGraph": {}
8935
+ "dependencyGraph": {
8936
+ "swirl-shell-layout": [
8937
+ "swirl-icon-arrow-back"
8938
+ ]
8939
+ }
8926
8940
  },
8927
8941
  {
8928
8942
  "filePath": "./src/components/swirl-icon/icons/swirl-icon-arrow-downward.tsx",
@@ -9034,9 +9048,15 @@
9034
9048
  "docs": ""
9035
9049
  }
9036
9050
  ],
9037
- "dependents": [],
9051
+ "dependents": [
9052
+ "swirl-shell-layout"
9053
+ ],
9038
9054
  "dependencies": [],
9039
- "dependencyGraph": {}
9055
+ "dependencyGraph": {
9056
+ "swirl-shell-layout": [
9057
+ "swirl-icon-arrow-forward"
9058
+ ]
9059
+ }
9040
9060
  },
9041
9061
  {
9042
9062
  "filePath": "./src/components/swirl-icon/icons/swirl-icon-arrow-left.tsx",
@@ -10633,9 +10653,9 @@
10633
10653
  "dependencyGraph": {}
10634
10654
  },
10635
10655
  {
10636
- "filePath": "./src/components/swirl-icon/icons/swirl-icon-double-arrow-left.tsx",
10656
+ "filePath": "./src/components/swirl-icon/icons/swirl-icon-dock-left.tsx",
10637
10657
  "encapsulation": "shadow",
10638
- "tag": "swirl-icon-double-arrow-left",
10658
+ "tag": "swirl-icon-dock-left",
10639
10659
  "docs": "",
10640
10660
  "docsTags": [],
10641
10661
  "usage": {},
@@ -10686,6 +10706,66 @@
10686
10706
  "dependencies": [],
10687
10707
  "dependencyGraph": {}
10688
10708
  },
10709
+ {
10710
+ "filePath": "./src/components/swirl-icon/icons/swirl-icon-double-arrow-left.tsx",
10711
+ "encapsulation": "shadow",
10712
+ "tag": "swirl-icon-double-arrow-left",
10713
+ "docs": "",
10714
+ "docsTags": [],
10715
+ "usage": {},
10716
+ "props": [
10717
+ {
10718
+ "name": "size",
10719
+ "type": "16 | 20 | 24 | 28",
10720
+ "mutable": false,
10721
+ "attr": "size",
10722
+ "reflectToAttr": false,
10723
+ "docs": "",
10724
+ "docsTags": [],
10725
+ "default": "24",
10726
+ "values": [
10727
+ {
10728
+ "value": "16",
10729
+ "type": "number"
10730
+ },
10731
+ {
10732
+ "value": "20",
10733
+ "type": "number"
10734
+ },
10735
+ {
10736
+ "value": "24",
10737
+ "type": "number"
10738
+ },
10739
+ {
10740
+ "value": "28",
10741
+ "type": "number"
10742
+ }
10743
+ ],
10744
+ "optional": false,
10745
+ "required": false
10746
+ }
10747
+ ],
10748
+ "methods": [],
10749
+ "events": [],
10750
+ "listeners": [],
10751
+ "styles": [],
10752
+ "slots": [],
10753
+ "parts": [
10754
+ {
10755
+ "name": "icon",
10756
+ "docs": ""
10757
+ }
10758
+ ],
10759
+ "dependents": [
10760
+ "swirl-shell-layout"
10761
+ ],
10762
+ "dependencies": [],
10763
+ "dependencyGraph": {
10764
+ "swirl-shell-layout": [
10765
+ "swirl-icon-double-arrow-left"
10766
+ ]
10767
+ }
10768
+ },
10689
10769
  {
10690
10770
  "filePath": "./src/components/swirl-icon/icons/swirl-icon-double-arrow-right.tsx",
10691
10771
  "encapsulation": "shadow",
@@ -10736,9 +10816,15 @@
10736
10816
  "docs": ""
10737
10817
  }
10738
10818
  ],
10739
- "dependents": [],
10819
+ "dependents": [
10820
+ "swirl-shell-layout"
10821
+ ],
10740
10822
  "dependencies": [],
10741
- "dependencyGraph": {}
10823
+ "dependencyGraph": {
10824
+ "swirl-shell-layout": [
10825
+ "swirl-icon-double-arrow-right"
10826
+ ]
10827
+ }
10742
10828
  },
10743
10829
  {
10744
10830
  "filePath": "./src/components/swirl-icon/icons/swirl-icon-download.tsx",
@@ -13200,9 +13286,15 @@
13200
13286
  "docs": ""
13201
13287
  }
13202
13288
  ],
13203
- "dependents": [],
13289
+ "dependents": [
13290
+ "swirl-shell-layout"
13291
+ ],
13204
13292
  "dependencies": [],
13205
- "dependencyGraph": {}
13293
+ "dependencyGraph": {
13294
+ "swirl-shell-layout": [
13295
+ "swirl-icon-menu"
13296
+ ]
13297
+ }
13206
13298
  },
13207
13299
  {
13208
13300
  "filePath": "./src/components/swirl-icon/icons/swirl-icon-menu-book.tsx",
@@ -21231,42 +21323,50 @@
21231
21323
  },
21232
21324
  {
21233
21325
  "filePath": "./src/components/swirl-shell-layout/swirl-shell-layout.tsx",
21234
- "encapsulation": "shadow",
21326
+ "encapsulation": "scoped",
21235
21327
  "tag": "swirl-shell-layout",
21236
21328
  "docs": "",
21237
21329
  "docsTags": [
21238
21330
  {
21239
21331
  "name": "slot",
21240
- "text": "logo-expanded - Logo shown inside expanded sidebar."
21332
+ "text": "logo - Logo shown inside header."
21241
21333
  },
21242
21334
  {
21243
21335
  "name": "slot",
21244
- "text": "logo-collapsed - Logo shown inside collapsed sidebar."
21336
+ "text": "header-tools - Tools positioned on the header's right-hand side."
21245
21337
  },
21246
21338
  {
21247
21339
  "name": "slot",
21248
- "text": "tools - Items shown in the upper sidebar part."
21340
+ "text": "mobile-header-tools - Tools positioned in the mobile drawer header."
21249
21341
  },
21250
21342
  {
21251
21343
  "name": "slot",
21252
- "text": "main-navigation - Items shown in the lower sidebar part."
21344
+ "text": "nav - Items shown in the lower sidebar part."
21253
21345
  },
21254
21346
  {
21255
21347
  "name": "slot",
21256
- "text": "banner - Used to show a swirl-banner on top of the page."
21348
+ "text": "mobile-logo - Logo shown inside the mobile navigation drawer."
21257
21349
  },
21258
21350
  {
21259
21351
  "name": "slot",
21260
- "text": "main - Contents of the main area."
21352
+ "text": "default - Contents of the main area."
21353
+ },
21354
+ {
21355
+ "name": "slot",
21356
+ "text": "sidebar-app-bar - Contents of the right sidebar header."
21357
+ },
21358
+ {
21359
+ "name": "slot",
21360
+ "text": "sidebar - Contents of the right sidebar."
21261
21361
  }
21262
21362
  ],
21263
21363
  "usage": {},
21264
21364
  "props": [
21265
21365
  {
21266
- "name": "hideSidebar",
21366
+ "name": "brandedHeader",
21267
21367
  "type": "boolean",
21268
21368
  "mutable": false,
21269
- "attr": "hide-sidebar",
21369
+ "attr": "branded-header",
21270
21370
  "reflectToAttr": false,
21271
21371
  "docs": "",
21272
21372
  "docsTags": [],
@@ -21279,10 +21379,61 @@
21279
21379
  "required": false
21280
21380
  },
21281
21381
  {
21282
- "name": "mainNavigationLabel",
21382
+ "name": "browserBackButtonLabel",
21383
+ "type": "string",
21384
+ "mutable": false,
21385
+ "attr": "browser-back-button-label",
21386
+ "reflectToAttr": false,
21387
+ "docs": "",
21388
+ "docsTags": [],
21389
+ "default": "\"Navigate back\"",
21390
+ "values": [
21391
+ {
21392
+ "type": "string"
21393
+ }
21394
+ ],
21395
+ "optional": true,
21396
+ "required": false
21397
+ },
21398
+ {
21399
+ "name": "browserForwardButtonLabel",
21283
21400
  "type": "string",
21284
21401
  "mutable": false,
21285
- "attr": "main-navigation-label",
21402
+ "attr": "browser-forward-button-label",
21403
+ "reflectToAttr": false,
21404
+ "docs": "",
21405
+ "docsTags": [],
21406
+ "default": "\"Navigate forward\"",
21407
+ "values": [
21408
+ {
21409
+ "type": "string"
21410
+ }
21411
+ ],
21412
+ "optional": true,
21413
+ "required": false
21414
+ },
21415
+ {
21416
+ "name": "hideMobileNavigationButtonLabel",
21417
+ "type": "string",
21418
+ "mutable": false,
21419
+ "attr": "hide-mobile-navigation-button-label",
21420
+ "reflectToAttr": false,
21421
+ "docs": "",
21422
+ "docsTags": [],
21423
+ "default": "\"Close navigation\"",
21424
+ "values": [
21425
+ {
21426
+ "type": "string"
21427
+ }
21428
+ ],
21429
+ "optional": true,
21430
+ "required": false
21431
+ },
21432
+ {
21433
+ "name": "navigationLabel",
21434
+ "type": "string",
21435
+ "mutable": false,
21436
+ "attr": "navigation-label",
21286
21437
  "reflectToAttr": false,
21287
21438
  "docs": "",
21288
21439
  "docsTags": [],
@@ -21292,7 +21443,89 @@
21292
21443
  "type": "string"
21293
21444
  }
21294
21445
  ],
21295
- "optional": false,
21446
+ "optional": true,
21447
+ "required": false
21448
+ },
21449
+ {
21450
+ "name": "navigationToggleLabel",
21451
+ "type": "string",
21452
+ "mutable": false,
21453
+ "attr": "navigation-toggle-label",
21454
+ "reflectToAttr": false,
21455
+ "docs": "",
21456
+ "docsTags": [],
21457
+ "default": "\"Toggle navigation\"",
21458
+ "values": [
21459
+ {
21460
+ "type": "string"
21461
+ }
21462
+ ],
21463
+ "optional": true,
21464
+ "required": false
21465
+ },
21466
+ {
21467
+ "name": "sidebarActive",
21468
+ "type": "boolean",
21469
+ "mutable": true,
21470
+ "attr": "sidebar-active",
21471
+ "reflectToAttr": false,
21472
+ "docs": "",
21473
+ "docsTags": [],
21474
+ "values": [
21475
+ {
21476
+ "type": "boolean"
21477
+ }
21478
+ ],
21479
+ "optional": true,
21480
+ "required": false
21481
+ },
21482
+ {
21483
+ "name": "sidebarToggleBadge",
21484
+ "type": "string",
21485
+ "mutable": false,
21486
+ "attr": "sidebar-toggle-badge",
21487
+ "reflectToAttr": false,
21488
+ "docs": "",
21489
+ "docsTags": [],
21490
+ "values": [
21491
+ {
21492
+ "type": "string"
21493
+ }
21494
+ ],
21495
+ "optional": true,
21496
+ "required": false
21497
+ },
21498
+ {
21499
+ "name": "sidebarToggleBadgeAriaLabel",
21500
+ "type": "string",
21501
+ "mutable": false,
21502
+ "attr": "sidebar-toggle-badge-aria-label",
21503
+ "reflectToAttr": false,
21504
+ "docs": "",
21505
+ "docsTags": [],
21506
+ "values": [
21507
+ {
21508
+ "type": "string"
21509
+ }
21510
+ ],
21511
+ "optional": true,
21512
+ "required": false
21513
+ },
21514
+ {
21515
+ "name": "sidebarToggleIcon",
21516
+ "type": "string",
21517
+ "mutable": false,
21518
+ "attr": "sidebar-toggle-icon",
21519
+ "reflectToAttr": false,
21520
+ "docs": "",
21521
+ "docsTags": [],
21522
+ "default": "\"notifications\"",
21523
+ "values": [
21524
+ {
21525
+ "type": "string"
21526
+ }
21527
+ ],
21528
+ "optional": true,
21296
21529
  "required": false
21297
21530
  },
21298
21531
  {
@@ -21309,71 +21542,136 @@
21309
21542
  "type": "string"
21310
21543
  }
21311
21544
  ],
21312
- "optional": false,
21545
+ "optional": true,
21546
+ "required": false
21547
+ },
21548
+ {
21549
+ "name": "skipLinkLabel",
21550
+ "type": "string",
21551
+ "mutable": false,
21552
+ "attr": "skip-link-label",
21553
+ "reflectToAttr": false,
21554
+ "docs": "",
21555
+ "docsTags": [],
21556
+ "default": "\"Skip to main content\"",
21557
+ "values": [
21558
+ {
21559
+ "type": "string"
21560
+ }
21561
+ ],
21562
+ "optional": true,
21313
21563
  "required": false
21314
21564
  }
21315
21565
  ],
21316
21566
  "methods": [
21317
21567
  {
21318
- "name": "collapseSidebar",
21568
+ "name": "hideMobileNavigation",
21319
21569
  "returns": {
21320
21570
  "type": "Promise<void>",
21321
21571
  "docs": ""
21322
21572
  },
21323
- "signature": "collapseSidebar() => Promise<void>",
21573
+ "signature": "hideMobileNavigation() => Promise<void>",
21324
21574
  "parameters": [],
21325
- "docs": "Collapse the left sidebar.",
21575
+ "docs": "Hides the mobile navigation.",
21326
21576
  "docsTags": []
21327
21577
  },
21328
21578
  {
21329
- "name": "extendSidebar",
21579
+ "name": "showMobileNavigation",
21330
21580
  "returns": {
21331
21581
  "type": "Promise<void>",
21332
21582
  "docs": ""
21333
21583
  },
21334
- "signature": "extendSidebar() => Promise<void>",
21584
+ "signature": "showMobileNavigation() => Promise<void>",
21335
21585
  "parameters": [],
21336
- "docs": "Extend the left sidebar.",
21586
+ "docs": "Opens the mobile navigation.",
21337
21587
  "docsTags": []
21338
21588
  }
21339
21589
  ],
21340
- "events": [],
21341
- "listeners": [],
21590
+ "events": [
21591
+ {
21592
+ "event": "sidebarToggleClick",
21593
+ "detail": "MouseEvent",
21594
+ "bubbles": true,
21595
+ "cancelable": true,
21596
+ "composed": true,
21597
+ "docs": "",
21598
+ "docsTags": []
21599
+ },
21600
+ {
21601
+ "event": "skipLinkClick",
21602
+ "detail": "MouseEvent",
21603
+ "bubbles": true,
21604
+ "cancelable": true,
21605
+ "composed": true,
21606
+ "docs": "",
21607
+ "docsTags": []
21608
+ }
21609
+ ],
21610
+ "listeners": [
21611
+ {
21612
+ "event": "keydown",
21613
+ "target": "window",
21614
+ "capture": false,
21615
+ "passive": false
21616
+ }
21617
+ ],
21342
21618
  "styles": [],
21343
21619
  "slots": [
21344
21620
  {
21345
- "name": "banner",
21346
- "docs": "Used to show a swirl-banner on top of the page."
21621
+ "name": "default",
21622
+ "docs": "Contents of the main area."
21347
21623
  },
21348
21624
  {
21349
- "name": "logo-collapsed",
21350
- "docs": "Logo shown inside collapsed sidebar."
21625
+ "name": "header-tools",
21626
+ "docs": "Tools positioned on the header's right-hand side."
21351
21627
  },
21352
21628
  {
21353
- "name": "logo-expanded",
21354
- "docs": "Logo shown inside expanded sidebar."
21629
+ "name": "logo",
21630
+ "docs": "Logo shown inside header."
21355
21631
  },
21356
21632
  {
21357
- "name": "main",
21358
- "docs": "Contents of the main area."
21633
+ "name": "mobile-header-tools",
21634
+ "docs": "Tools positioned in the mobile drawer header."
21359
21635
  },
21360
21636
  {
21361
- "name": "main-navigation",
21637
+ "name": "mobile-logo",
21638
+ "docs": "Logo shown inside the mobile navigation drawer."
21639
+ },
21640
+ {
21641
+ "name": "nav",
21362
21642
  "docs": "Items shown in the lower sidebar part."
21363
21643
  },
21364
21644
  {
21365
- "name": "tools",
21366
- "docs": "Items shown in the upper sidebar part."
21645
+ "name": "sidebar",
21646
+ "docs": "Contents of the right sidebar."
21647
+ },
21648
+ {
21649
+ "name": "sidebar-app-bar",
21650
+ "docs": "Contents of the right sidebar header."
21367
21651
  }
21368
21652
  ],
21369
21653
  "parts": [],
21370
21654
  "dependents": [],
21371
21655
  "dependencies": [
21372
- "swirl-button"
21656
+ "swirl-icon-menu",
21657
+ "swirl-icon-double-arrow-left",
21658
+ "swirl-icon-double-arrow-right",
21659
+ "swirl-visually-hidden",
21660
+ "swirl-icon-arrow-back",
21661
+ "swirl-icon-arrow-forward",
21662
+ "swirl-icon",
21663
+ "swirl-badge"
21373
21664
  ],
21374
21665
  "dependencyGraph": {
21375
21666
  "swirl-shell-layout": [
21376
- "swirl-button"
21667
+ "swirl-icon-menu",
21668
+ "swirl-icon-double-arrow-left",
21669
+ "swirl-icon-double-arrow-right",
21670
+ "swirl-visually-hidden",
21671
+ "swirl-icon-arrow-back",
21672
+ "swirl-icon-arrow-forward",
21673
+ "swirl-icon",
21674
+ "swirl-badge"
21377
21675
  ]
21378
21676
  }
21379
21677
  },
@@ -27864,7 +28162,7 @@
27864
28162
  },
27865
28163
  {
27866
28164
  "filePath": "./src/components/swirl-visually-hidden/swirl-visually-hidden.tsx",
27867
- "encapsulation": "shadow",
28165
+ "encapsulation": "scoped",
27868
28166
  "tag": "swirl-visually-hidden",
27869
28167
  "docs": "",
27870
28168
  "docsTags": [],
@@ -27882,6 +28180,7 @@
27882
28180
  "swirl-pagination",
27883
28181
  "swirl-radio",
27884
28182
  "swirl-resource-list",
28183
+ "swirl-shell-layout",
27885
28184
  "swirl-spinner",
27886
28185
  "swirl-switch",
27887
28186
  "swirl-table",
@@ -27904,6 +28203,9 @@
27904
28203
  "swirl-resource-list": [
27905
28204
  "swirl-visually-hidden"
27906
28205
  ],
28206
+ "swirl-shell-layout": [
28207
+ "swirl-visually-hidden"
28208
+ ],
27907
28209
  "swirl-spinner": [
27908
28210
  "swirl-visually-hidden"
27909
28211
  ],