@sbb-esta/lyne-elements 2.7.1 → 2.8.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 (36) hide show
  1. package/core/styles/core.scss +7 -1
  2. package/core/styles/node_modules_@sbb-esta_lyne-design-tokens_dist_scss_sbb-variables.scss +2 -0
  3. package/core/styles/node_modules_@sbb-esta_lyne-design-tokens_dist_scss_sbb-variables_css--mixin.scss +5 -1
  4. package/core.css +12 -2
  5. package/custom-elements.json +447 -42
  6. package/development/icon/icon-base.js +5 -1
  7. package/development/paginator/common/paginator-common.d.ts +11 -1
  8. package/development/paginator/common/paginator-common.d.ts.map +1 -1
  9. package/development/paginator/common/paginator-common.js +37 -9
  10. package/development/paginator/paginator/paginator.js +2 -2
  11. package/development/sbb-tokens-CVLcOi-S.js +1 -1
  12. package/development/table/table-wrapper/table-wrapper.d.ts +7 -4
  13. package/development/table/table-wrapper/table-wrapper.d.ts.map +1 -1
  14. package/development/table/table-wrapper/table-wrapper.js +80 -69
  15. package/development/toggle/toggle/toggle.d.ts +0 -1
  16. package/development/toggle/toggle/toggle.d.ts.map +1 -1
  17. package/development/toggle/toggle/toggle.js +51 -47
  18. package/development/toggle/toggle-option/toggle-option.d.ts +2 -1
  19. package/development/toggle/toggle-option/toggle-option.d.ts.map +1 -1
  20. package/development/toggle/toggle-option/toggle-option.js +15 -29
  21. package/icon/icon-base.js +21 -21
  22. package/package.json +1 -1
  23. package/paginator/common/paginator-common.d.ts +11 -1
  24. package/paginator/common/paginator-common.d.ts.map +1 -1
  25. package/paginator/common/paginator-common.js +61 -31
  26. package/paginator/paginator/paginator.js +3 -3
  27. package/standard-theme.css +12 -2
  28. package/table/table-wrapper/table-wrapper.d.ts +7 -4
  29. package/table/table-wrapper/table-wrapper.d.ts.map +1 -1
  30. package/table/table-wrapper/table-wrapper.js +53 -31
  31. package/toggle/toggle/toggle.d.ts +0 -1
  32. package/toggle/toggle/toggle.d.ts.map +1 -1
  33. package/toggle/toggle/toggle.js +43 -48
  34. package/toggle/toggle-option/toggle-option.d.ts +2 -1
  35. package/toggle/toggle-option/toggle-option.d.ts.map +1 -1
  36. package/toggle/toggle-option/toggle-option.js +40 -30
@@ -35,7 +35,7 @@
35
35
 
36
36
  // Infinity border radius, can be used to achieve rounded border on start and end
37
37
  // TODO: Check if infinity is supported by all browsers (e.g. Firefox) -> calc(1em * infinity);
38
- --sbb-border-radius-infinity: 10000000em;
38
+ --sbb-border-radius-infinity: 100000em;
39
39
 
40
40
  &:has(sbb-header[size='s']) {
41
41
  --sbb-header-height: #{functions.px-to-rem-build(52)};
@@ -495,3 +495,9 @@ sbb-header + :where(sbb-sidebar-container, sbb-icon-sidebar-container) {
495
495
  top: 0;
496
496
  }
497
497
  }
498
+
499
+ sbb-toggle:has(:focus-visible) {
500
+ @include a11y.focus-outline;
501
+
502
+ --sbb-focus-outline-offset: #{functions.px-to-rem-build(5)};
503
+ }
@@ -342,6 +342,8 @@ $sbb-size-element-l-large: 4rem;
342
342
  $sbb-size-element-l-wide: 4rem;
343
343
  /// Original Value: 64px
344
344
  $sbb-size-element-l-ultra: 4rem;
345
+ /// Original Value: 16px
346
+ $sbb-size-icon-ui-extra-small: 1rem;
345
347
  /// Original Value: 24px
346
348
  $sbb-size-icon-ui-small: 1.5rem;
347
349
  /// Original Value: 36px
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 19 Mar 2025 15:25:09 GMT
3
+ * Generated on Thu, 17 Apr 2025 11:20:53 GMT
4
4
  */
5
5
 
6
6
  @mixin lyne-design-tokens-css-variables {
@@ -574,6 +574,10 @@
574
574
  * Original Value: 64px
575
575
  */
576
576
  --sbb-size-element-l-ultra: 4rem;
577
+ /**
578
+ * Original Value: 16px
579
+ */
580
+ --sbb-size-icon-ui-extra-small: 1rem;
577
581
  /**
578
582
  * Original Value: 24px
579
583
  */
package/core.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 19 Mar 2025 15:25:09 GMT
3
+ * Generated on Thu, 17 Apr 2025 11:20:53 GMT
4
4
  */
5
5
  *,
6
6
  ::before,
@@ -579,6 +579,10 @@
579
579
  * Original Value: 64px
580
580
  */
581
581
  --sbb-size-element-l-ultra: 4rem;
582
+ /**
583
+ * Original Value: 16px
584
+ */
585
+ --sbb-size-icon-ui-extra-small: 1rem;
582
586
  /**
583
587
  * Original Value: 24px
584
588
  */
@@ -1113,7 +1117,7 @@
1113
1117
  --sbb-time-input-max-width: 3.625rem;
1114
1118
  --sbb-time-input-s-max-width: 3.1875rem;
1115
1119
  --sbb-overlay-default-z-index: 1000;
1116
- --sbb-border-radius-infinity: 10000000em;
1120
+ --sbb-border-radius-infinity: 100000em;
1117
1121
  }
1118
1122
  :root:has(sbb-header[size=s]) {
1119
1123
  --sbb-header-height: 3.25rem;
@@ -1542,4 +1546,10 @@ sbb-header + :where(sbb-sidebar-container, sbb-icon-sidebar-container) {
1542
1546
  }
1543
1547
  sbb-form-field .sbb-select-trigger {
1544
1548
  top: 0;
1549
+ }
1550
+
1551
+ sbb-toggle:has(:focus-visible) {
1552
+ outline-offset: var(--sbb-focus-outline-offset);
1553
+ outline: var(--sbb-focus-outline-color) var(--sbb-focus-outline-style, solid) var(--sbb-focus-outline-width);
1554
+ --sbb-focus-outline-offset: 0.3125rem;
1545
1555
  }
@@ -73947,23 +73947,101 @@
73947
73947
  "privacy": "public"
73948
73948
  },
73949
73949
  {
73950
- "kind": "field",
73951
- "name": "language",
73952
- "type": {
73953
- "text": "SbbLanguageController"
73950
+ "kind": "method",
73951
+ "name": "nextPage",
73952
+ "privacy": "public",
73953
+ "return": {
73954
+ "type": {
73955
+ "text": "void"
73956
+ }
73957
+ }
73958
+ },
73959
+ {
73960
+ "kind": "method",
73961
+ "name": "previousPage",
73962
+ "privacy": "public",
73963
+ "return": {
73964
+ "type": {
73965
+ "text": "void"
73966
+ }
73967
+ }
73968
+ },
73969
+ {
73970
+ "kind": "method",
73971
+ "name": "firstPage",
73972
+ "privacy": "public",
73973
+ "return": {
73974
+ "type": {
73975
+ "text": "void"
73976
+ }
73977
+ }
73978
+ },
73979
+ {
73980
+ "kind": "method",
73981
+ "name": "lastPage",
73982
+ "privacy": "public",
73983
+ "return": {
73984
+ "type": {
73985
+ "text": "void"
73986
+ }
73987
+ }
73988
+ },
73989
+ {
73990
+ "kind": "method",
73991
+ "name": "selectPage",
73992
+ "privacy": "public",
73993
+ "return": {
73994
+ "type": {
73995
+ "text": "void"
73996
+ }
73954
73997
  },
73955
- "privacy": "protected"
73998
+ "parameters": [
73999
+ {
74000
+ "name": "index",
74001
+ "type": {
74002
+ "text": "number"
74003
+ }
74004
+ }
74005
+ ]
74006
+ },
74007
+ {
74008
+ "kind": "method",
74009
+ "name": "hasPreviousPage",
74010
+ "privacy": "public",
74011
+ "return": {
74012
+ "type": {
74013
+ "text": "boolean"
74014
+ }
74015
+ }
74016
+ },
74017
+ {
74018
+ "kind": "method",
74019
+ "name": "hasNextPage",
74020
+ "privacy": "public",
74021
+ "return": {
74022
+ "type": {
74023
+ "text": "boolean"
74024
+ }
74025
+ }
73956
74026
  },
73957
74027
  {
73958
74028
  "kind": "method",
73959
74029
  "name": "numberOfPages",
73960
- "privacy": "protected",
74030
+ "privacy": "public",
73961
74031
  "return": {
73962
74032
  "type": {
73963
74033
  "text": "number"
73964
74034
  }
73965
74035
  }
73966
74036
  },
74037
+ {
74038
+ "kind": "field",
74039
+ "name": "language",
74040
+ "type": {
74041
+ "text": "SbbLanguageController"
74042
+ },
74043
+ "privacy": "protected"
74044
+ },
73967
74045
  {
73968
74046
  "kind": "method",
73969
74047
  "name": "pageIndexChanged",
@@ -73980,7 +74058,8 @@
73980
74058
  "text": "number"
73981
74059
  }
73982
74060
  }
73983
- ]
74061
+ ],
74062
+ "deprecated": "Will be removed with next major change."
73984
74063
  },
73985
74064
  {
73986
74065
  "kind": "method",
@@ -74173,10 +74252,95 @@
74173
74252
  }
74174
74253
  }
74175
74254
  },
74255
+ {
74256
+ "kind": "method",
74257
+ "name": "nextPage",
74258
+ "privacy": "public",
74259
+ "return": {
74260
+ "type": {
74261
+ "text": "void"
74262
+ }
74263
+ },
74264
+ "description": "Advances to the next page if it exists."
74265
+ },
74266
+ {
74267
+ "kind": "method",
74268
+ "name": "previousPage",
74269
+ "privacy": "public",
74270
+ "return": {
74271
+ "type": {
74272
+ "text": "void"
74273
+ }
74274
+ },
74275
+ "description": "Move back to the previous page if it exists."
74276
+ },
74277
+ {
74278
+ "kind": "method",
74279
+ "name": "firstPage",
74280
+ "privacy": "public",
74281
+ "return": {
74282
+ "type": {
74283
+ "text": "void"
74284
+ }
74285
+ },
74286
+ "description": "Move to the first page if not already there."
74287
+ },
74288
+ {
74289
+ "kind": "method",
74290
+ "name": "lastPage",
74291
+ "privacy": "public",
74292
+ "return": {
74293
+ "type": {
74294
+ "text": "void"
74295
+ }
74296
+ },
74297
+ "description": "Move to the last page if not already there."
74298
+ },
74299
+ {
74300
+ "kind": "method",
74301
+ "name": "selectPage",
74302
+ "privacy": "public",
74303
+ "return": {
74304
+ "type": {
74305
+ "text": "void"
74306
+ }
74307
+ },
74308
+ "parameters": [
74309
+ {
74310
+ "name": "index",
74311
+ "type": {
74312
+ "text": "number"
74313
+ }
74314
+ }
74315
+ ],
74316
+ "description": "Move to a specific page index."
74317
+ },
74318
+ {
74319
+ "kind": "method",
74320
+ "name": "hasPreviousPage",
74321
+ "privacy": "public",
74322
+ "return": {
74323
+ "type": {
74324
+ "text": "boolean"
74325
+ }
74326
+ },
74327
+ "description": "Whether there is a previous page."
74328
+ },
74329
+ {
74330
+ "kind": "method",
74331
+ "name": "hasNextPage",
74332
+ "privacy": "public",
74333
+ "return": {
74334
+ "type": {
74335
+ "text": "boolean"
74336
+ }
74337
+ },
74338
+ "description": "Whether there is a next page."
74339
+ },
74176
74340
  {
74177
74341
  "kind": "method",
74178
74342
  "name": "numberOfPages",
74179
- "privacy": "protected",
74343
+ "privacy": "public",
74180
74344
  "return": {
74181
74345
  "type": {
74182
74346
  "text": "number"
@@ -74201,7 +74365,8 @@
74201
74365
  }
74202
74366
  }
74203
74367
  ],
74204
- "description": "If the `pageIndex` changes due to user interaction,\nemit the `page` event and then update the `pageIndex` value."
74368
+ "description": "If the `pageIndex` changes due to user interaction,\nemit the `page` event and then update the `pageIndex` value.",
74369
+ "deprecated": "Will be removed with next major change."
74205
74370
  },
74206
74371
  {
74207
74372
  "kind": "method",
@@ -74612,10 +74777,123 @@
74612
74777
  "module": "paginator/common/paginator-common.js"
74613
74778
  }
74614
74779
  },
74780
+ {
74781
+ "kind": "method",
74782
+ "name": "nextPage",
74783
+ "privacy": "public",
74784
+ "return": {
74785
+ "type": {
74786
+ "text": "void"
74787
+ }
74788
+ },
74789
+ "description": "Advances to the next page if it exists.",
74790
+ "inheritedFrom": {
74791
+ "name": "SbbPaginatorCommonElementMixin",
74792
+ "module": "paginator/common/paginator-common.js"
74793
+ }
74794
+ },
74795
+ {
74796
+ "kind": "method",
74797
+ "name": "previousPage",
74798
+ "privacy": "public",
74799
+ "return": {
74800
+ "type": {
74801
+ "text": "void"
74802
+ }
74803
+ },
74804
+ "description": "Move back to the previous page if it exists.",
74805
+ "inheritedFrom": {
74806
+ "name": "SbbPaginatorCommonElementMixin",
74807
+ "module": "paginator/common/paginator-common.js"
74808
+ }
74809
+ },
74810
+ {
74811
+ "kind": "method",
74812
+ "name": "firstPage",
74813
+ "privacy": "public",
74814
+ "return": {
74815
+ "type": {
74816
+ "text": "void"
74817
+ }
74818
+ },
74819
+ "description": "Move to the first page if not already there.",
74820
+ "inheritedFrom": {
74821
+ "name": "SbbPaginatorCommonElementMixin",
74822
+ "module": "paginator/common/paginator-common.js"
74823
+ }
74824
+ },
74825
+ {
74826
+ "kind": "method",
74827
+ "name": "lastPage",
74828
+ "privacy": "public",
74829
+ "return": {
74830
+ "type": {
74831
+ "text": "void"
74832
+ }
74833
+ },
74834
+ "description": "Move to the last page if not already there.",
74835
+ "inheritedFrom": {
74836
+ "name": "SbbPaginatorCommonElementMixin",
74837
+ "module": "paginator/common/paginator-common.js"
74838
+ }
74839
+ },
74840
+ {
74841
+ "kind": "method",
74842
+ "name": "selectPage",
74843
+ "privacy": "public",
74844
+ "return": {
74845
+ "type": {
74846
+ "text": "void"
74847
+ }
74848
+ },
74849
+ "parameters": [
74850
+ {
74851
+ "name": "index",
74852
+ "type": {
74853
+ "text": "number"
74854
+ }
74855
+ }
74856
+ ],
74857
+ "description": "Move to a specific page index.",
74858
+ "inheritedFrom": {
74859
+ "name": "SbbPaginatorCommonElementMixin",
74860
+ "module": "paginator/common/paginator-common.js"
74861
+ }
74862
+ },
74863
+ {
74864
+ "kind": "method",
74865
+ "name": "hasPreviousPage",
74866
+ "privacy": "public",
74867
+ "return": {
74868
+ "type": {
74869
+ "text": "boolean"
74870
+ }
74871
+ },
74872
+ "description": "Whether there is a previous page.",
74873
+ "inheritedFrom": {
74874
+ "name": "SbbPaginatorCommonElementMixin",
74875
+ "module": "paginator/common/paginator-common.js"
74876
+ }
74877
+ },
74878
+ {
74879
+ "kind": "method",
74880
+ "name": "hasNextPage",
74881
+ "privacy": "public",
74882
+ "return": {
74883
+ "type": {
74884
+ "text": "boolean"
74885
+ }
74886
+ },
74887
+ "description": "Whether there is a next page.",
74888
+ "inheritedFrom": {
74889
+ "name": "SbbPaginatorCommonElementMixin",
74890
+ "module": "paginator/common/paginator-common.js"
74891
+ }
74892
+ },
74615
74893
  {
74616
74894
  "kind": "method",
74617
74895
  "name": "numberOfPages",
74618
- "privacy": "protected",
74896
+ "privacy": "public",
74619
74897
  "return": {
74620
74898
  "type": {
74621
74899
  "text": "number"
@@ -74645,6 +74923,7 @@
74645
74923
  }
74646
74924
  ],
74647
74925
  "description": "If the `pageIndex` changes due to user interaction,\nemit the `page` event and then update the `pageIndex` value.",
74926
+ "deprecated": "Will be removed with next major change.",
74648
74927
  "inheritedFrom": {
74649
74928
  "name": "SbbPaginatorCommonElementMixin",
74650
74929
  "module": "paginator/common/paginator-common.js"
@@ -75205,10 +75484,123 @@
75205
75484
  "module": "paginator/common/paginator-common.js"
75206
75485
  }
75207
75486
  },
75487
+ {
75488
+ "kind": "method",
75489
+ "name": "nextPage",
75490
+ "privacy": "public",
75491
+ "return": {
75492
+ "type": {
75493
+ "text": "void"
75494
+ }
75495
+ },
75496
+ "description": "Advances to the next page if it exists.",
75497
+ "inheritedFrom": {
75498
+ "name": "SbbPaginatorCommonElementMixin",
75499
+ "module": "paginator/common/paginator-common.js"
75500
+ }
75501
+ },
75502
+ {
75503
+ "kind": "method",
75504
+ "name": "previousPage",
75505
+ "privacy": "public",
75506
+ "return": {
75507
+ "type": {
75508
+ "text": "void"
75509
+ }
75510
+ },
75511
+ "description": "Move back to the previous page if it exists.",
75512
+ "inheritedFrom": {
75513
+ "name": "SbbPaginatorCommonElementMixin",
75514
+ "module": "paginator/common/paginator-common.js"
75515
+ }
75516
+ },
75517
+ {
75518
+ "kind": "method",
75519
+ "name": "firstPage",
75520
+ "privacy": "public",
75521
+ "return": {
75522
+ "type": {
75523
+ "text": "void"
75524
+ }
75525
+ },
75526
+ "description": "Move to the first page if not already there.",
75527
+ "inheritedFrom": {
75528
+ "name": "SbbPaginatorCommonElementMixin",
75529
+ "module": "paginator/common/paginator-common.js"
75530
+ }
75531
+ },
75532
+ {
75533
+ "kind": "method",
75534
+ "name": "lastPage",
75535
+ "privacy": "public",
75536
+ "return": {
75537
+ "type": {
75538
+ "text": "void"
75539
+ }
75540
+ },
75541
+ "description": "Move to the last page if not already there.",
75542
+ "inheritedFrom": {
75543
+ "name": "SbbPaginatorCommonElementMixin",
75544
+ "module": "paginator/common/paginator-common.js"
75545
+ }
75546
+ },
75547
+ {
75548
+ "kind": "method",
75549
+ "name": "selectPage",
75550
+ "privacy": "public",
75551
+ "return": {
75552
+ "type": {
75553
+ "text": "void"
75554
+ }
75555
+ },
75556
+ "parameters": [
75557
+ {
75558
+ "name": "index",
75559
+ "type": {
75560
+ "text": "number"
75561
+ }
75562
+ }
75563
+ ],
75564
+ "description": "Move to a specific page index.",
75565
+ "inheritedFrom": {
75566
+ "name": "SbbPaginatorCommonElementMixin",
75567
+ "module": "paginator/common/paginator-common.js"
75568
+ }
75569
+ },
75570
+ {
75571
+ "kind": "method",
75572
+ "name": "hasPreviousPage",
75573
+ "privacy": "public",
75574
+ "return": {
75575
+ "type": {
75576
+ "text": "boolean"
75577
+ }
75578
+ },
75579
+ "description": "Whether there is a previous page.",
75580
+ "inheritedFrom": {
75581
+ "name": "SbbPaginatorCommonElementMixin",
75582
+ "module": "paginator/common/paginator-common.js"
75583
+ }
75584
+ },
75585
+ {
75586
+ "kind": "method",
75587
+ "name": "hasNextPage",
75588
+ "privacy": "public",
75589
+ "return": {
75590
+ "type": {
75591
+ "text": "boolean"
75592
+ }
75593
+ },
75594
+ "description": "Whether there is a next page.",
75595
+ "inheritedFrom": {
75596
+ "name": "SbbPaginatorCommonElementMixin",
75597
+ "module": "paginator/common/paginator-common.js"
75598
+ }
75599
+ },
75208
75600
  {
75209
75601
  "kind": "method",
75210
75602
  "name": "numberOfPages",
75211
- "privacy": "protected",
75603
+ "privacy": "public",
75212
75604
  "return": {
75213
75605
  "type": {
75214
75606
  "text": "number"
@@ -75238,6 +75630,7 @@
75238
75630
  }
75239
75631
  ],
75240
75632
  "description": "If the `pageIndex` changes due to user interaction,\nemit the `page` event and then update the `pageIndex` value.",
75633
+ "deprecated": "Will be removed with next major change.",
75241
75634
  "inheritedFrom": {
75242
75635
  "name": "SbbPaginatorCommonElementMixin",
75243
75636
  "module": "paginator/common/paginator-common.js"
@@ -84918,7 +85311,7 @@
84918
85311
  "declarations": [
84919
85312
  {
84920
85313
  "kind": "class",
84921
- "description": "Wraps a table to enhance its functionality",
85314
+ "description": "Wraps a table to enhance its functionality.",
84922
85315
  "name": "SbbTableWrapperElement",
84923
85316
  "slots": [
84924
85317
  {
@@ -84929,17 +85322,25 @@
84929
85322
  "members": [
84930
85323
  {
84931
85324
  "kind": "field",
84932
- "name": "_resizeObserver",
84933
- "privacy": "private",
84934
- "default": "new ResizeController(this, { target: null, skipInitial: true, callback: () => this._checkHorizontalScrollbarOffset(), })"
84935
- },
84936
- {
84937
- "kind": "field",
84938
- "name": "_tableWrapper",
85325
+ "name": "focusable",
84939
85326
  "type": {
84940
- "text": "HTMLElement"
85327
+ "text": "boolean"
84941
85328
  },
84942
- "privacy": "private"
85329
+ "privacy": "public",
85330
+ "default": "false",
85331
+ "description": "Whether the table wrapper is focusable.",
85332
+ "attribute": "focusable",
85333
+ "reflects": true
85334
+ },
85335
+ {
85336
+ "kind": "method",
85337
+ "name": "_updateScrollbarClass",
85338
+ "privacy": "private",
85339
+ "return": {
85340
+ "type": {
85341
+ "text": "void"
85342
+ }
85343
+ }
84943
85344
  },
84944
85345
  {
84945
85346
  "kind": "method",
@@ -84979,19 +85380,16 @@
84979
85380
  }
84980
85381
  }
84981
85382
  ],
84982
- "mixins": [
84983
- {
84984
- "name": "SbbNegativeMixin",
84985
- "module": "core/mixins.js"
84986
- }
84987
- ],
84988
- "superclass": {
84989
- "name": "LitElement",
84990
- "package": "lit"
84991
- },
84992
- "tagName": "sbb-table-wrapper",
84993
- "customElement": true,
84994
85383
  "attributes": [
85384
+ {
85385
+ "name": "focusable",
85386
+ "type": {
85387
+ "text": "boolean"
85388
+ },
85389
+ "default": "false",
85390
+ "description": "Whether the table wrapper is focusable.",
85391
+ "fieldName": "focusable"
85392
+ },
84995
85393
  {
84996
85394
  "name": "negative",
84997
85395
  "type": {
@@ -85005,7 +85403,19 @@
85005
85403
  "module": "core/mixins/negative-mixin.js"
85006
85404
  }
85007
85405
  }
85008
- ]
85406
+ ],
85407
+ "mixins": [
85408
+ {
85409
+ "name": "SbbNegativeMixin",
85410
+ "module": "core/mixins.js"
85411
+ }
85412
+ ],
85413
+ "superclass": {
85414
+ "name": "LitElement",
85415
+ "package": "lit"
85416
+ },
85417
+ "tagName": "sbb-table-wrapper",
85418
+ "customElement": true
85009
85419
  }
85010
85420
  ],
85011
85421
  "exports": [
@@ -87818,12 +88228,6 @@
87818
88228
  "privacy": "private",
87819
88229
  "default": "false"
87820
88230
  },
87821
- {
87822
- "kind": "field",
87823
- "name": "_toggleResizeObserver",
87824
- "privacy": "private",
87825
- "default": "new ResizeController(this, { target: null, skipInitial: true, callback: () => this.updatePillPosition(true), })"
87826
- },
87827
88231
  {
87828
88232
  "kind": "field",
87829
88233
  "name": "_change",
@@ -88404,9 +88808,10 @@
88404
88808
  "kind": "field",
88405
88809
  "name": "_toggle",
88406
88810
  "type": {
88407
- "text": "SbbToggleElement | undefined"
88811
+ "text": "SbbToggleElement | null"
88408
88812
  },
88409
- "privacy": "private"
88813
+ "privacy": "private",
88814
+ "default": "null"
88410
88815
  },
88411
88816
  {
88412
88817
  "kind": "method",