@sbb-esta/lyne-elements-dev 4.11.0-dev.1776240805 → 4.11.0-dev.1776257860

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 (41) hide show
  1. package/custom-elements.json +465 -262
  2. package/development/autocomplete/autocomplete-base-element.d.ts +6 -0
  3. package/development/autocomplete/autocomplete-base-element.d.ts.map +1 -1
  4. package/development/autocomplete/autocomplete-base-element.js +1 -1
  5. package/development/autocomplete/autocomplete.component.js +1 -1
  6. package/development/autocomplete-base-element-VKU7Lpr7.js +684 -0
  7. package/development/autocomplete.js +1 -1
  8. package/development/autocomplete.pure.js +1 -1
  9. package/development/datepicker/common/datepicker-button.d.ts +6 -0
  10. package/development/datepicker/common/datepicker-button.d.ts.map +1 -1
  11. package/development/datepicker/common/datepicker-button.js +1 -1
  12. package/development/datepicker/common.js +1 -1
  13. package/development/datepicker/datepicker/datepicker.component.d.ts +3 -0
  14. package/development/datepicker/datepicker/datepicker.component.d.ts.map +1 -1
  15. package/development/datepicker/datepicker/datepicker.component.js +1 -1
  16. package/development/datepicker/datepicker.js +1 -1
  17. package/development/datepicker-button-CUPeoQgH.js +169 -0
  18. package/development/datepicker.component-D2DxFng_.js +216 -0
  19. package/development/datepicker.js +2 -2
  20. package/development/datepicker.pure.js +2 -2
  21. package/development/form-field/form-field-clear/form-field-clear.component.d.ts +3 -0
  22. package/development/form-field/form-field-clear/form-field-clear.component.d.ts.map +1 -1
  23. package/development/form-field/form-field-clear/form-field-clear.component.js +4 -1
  24. package/development/timetable-form/timetable-form-swap-button/timetable-form-swap-button.component.d.ts +3 -0
  25. package/development/timetable-form/timetable-form-swap-button/timetable-form-swap-button.component.d.ts.map +1 -1
  26. package/development/timetable-form/timetable-form-swap-button/timetable-form-swap-button.component.js +1 -1
  27. package/development/timetable-form/timetable-form-swap-button.js +1 -1
  28. package/development/{timetable-form-swap-button.component-BUKUjrpl.js → timetable-form-swap-button.component-Bh9aPmdn.js} +4 -1
  29. package/development/timetable-form.js +1 -1
  30. package/development/timetable-form.pure.js +1 -1
  31. package/development/toggle/toggle-option/toggle-option.component.d.ts +1 -0
  32. package/development/toggle/toggle-option/toggle-option.component.d.ts.map +1 -1
  33. package/development/toggle/toggle-option/toggle-option.component.js +1 -1
  34. package/development/toggle/toggle-option.js +1 -1
  35. package/development/{toggle-option.component-D-F7Fh7i.js → toggle-option.component-DRodFwFk.js} +2 -1
  36. package/development/toggle.js +1 -1
  37. package/development/toggle.pure.js +1 -1
  38. package/package.json +2 -2
  39. package/development/autocomplete-base-element-YwfObJzm.js +0 -678
  40. package/development/datepicker-button-CANzGO5m.js +0 -163
  41. package/development/datepicker.component-C8XQVo45.js +0 -213
@@ -3951,7 +3951,7 @@
3951
3951
  "declarations": [
3952
3952
  {
3953
3953
  "kind": "class",
3954
- "description": "",
3954
+ "description": "Base class for autocomplete components.",
3955
3955
  "name": "SbbAutocompleteBaseElement",
3956
3956
  "members": [
3957
3957
  {
@@ -4881,6 +4881,66 @@
4881
4881
  }
4882
4882
  }
4883
4883
  ],
4884
+ "events": [
4885
+ {
4886
+ "type": {
4887
+ "text": "Event"
4888
+ },
4889
+ "description": "The change event is fired on the autocomplete's trigger when the user modifies the element's value. Unlike the input event, the change event is not necessarily fired for each alteration to an element's value.",
4890
+ "name": "change"
4891
+ },
4892
+ {
4893
+ "type": {
4894
+ "text": "InputEvent"
4895
+ },
4896
+ "description": "The input event fires on the autocomplete's trigger when the value has been changed as a direct result of a user action.",
4897
+ "name": "input"
4898
+ },
4899
+ {
4900
+ "name": "beforeopen",
4901
+ "type": {
4902
+ "text": "Event"
4903
+ },
4904
+ "description": "Emits whenever the component starts the opening transition. Can be canceled.",
4905
+ "inheritedFrom": {
4906
+ "name": "SbbOpenCloseBaseElement",
4907
+ "module": "core/base-elements/open-close-base-element.js"
4908
+ }
4909
+ },
4910
+ {
4911
+ "name": "open",
4912
+ "type": {
4913
+ "text": "Event"
4914
+ },
4915
+ "description": "Emits whenever the component is opened.",
4916
+ "inheritedFrom": {
4917
+ "name": "SbbOpenCloseBaseElement",
4918
+ "module": "core/base-elements/open-close-base-element.js"
4919
+ }
4920
+ },
4921
+ {
4922
+ "name": "beforeclose",
4923
+ "type": {
4924
+ "text": "Event"
4925
+ },
4926
+ "description": "Emits whenever the component begins the closing transition. Can be canceled.",
4927
+ "inheritedFrom": {
4928
+ "name": "SbbOpenCloseBaseElement",
4929
+ "module": "core/base-elements/open-close-base-element.js"
4930
+ }
4931
+ },
4932
+ {
4933
+ "name": "close",
4934
+ "type": {
4935
+ "text": "Event"
4936
+ },
4937
+ "description": "Emits whenever the component is closed.",
4938
+ "inheritedFrom": {
4939
+ "name": "SbbOpenCloseBaseElement",
4940
+ "module": "core/base-elements/open-close-base-element.js"
4941
+ }
4942
+ }
4943
+ ],
4884
4944
  "attributes": [
4885
4945
  {
4886
4946
  "name": "origin",
@@ -4987,53 +5047,7 @@
4987
5047
  "name": "SbbOpenCloseBaseElement",
4988
5048
  "module": "core/base-elements.js"
4989
5049
  },
4990
- "classGenerics": "T = string",
4991
- "events": [
4992
- {
4993
- "name": "beforeopen",
4994
- "type": {
4995
- "text": "Event"
4996
- },
4997
- "description": "Emits whenever the component starts the opening transition. Can be canceled.",
4998
- "inheritedFrom": {
4999
- "name": "SbbOpenCloseBaseElement",
5000
- "module": "core/base-elements/open-close-base-element.js"
5001
- }
5002
- },
5003
- {
5004
- "name": "open",
5005
- "type": {
5006
- "text": "Event"
5007
- },
5008
- "description": "Emits whenever the component is opened.",
5009
- "inheritedFrom": {
5010
- "name": "SbbOpenCloseBaseElement",
5011
- "module": "core/base-elements/open-close-base-element.js"
5012
- }
5013
- },
5014
- {
5015
- "name": "beforeclose",
5016
- "type": {
5017
- "text": "Event"
5018
- },
5019
- "description": "Emits whenever the component begins the closing transition. Can be canceled.",
5020
- "inheritedFrom": {
5021
- "name": "SbbOpenCloseBaseElement",
5022
- "module": "core/base-elements/open-close-base-element.js"
5023
- }
5024
- },
5025
- {
5026
- "name": "close",
5027
- "type": {
5028
- "text": "Event"
5029
- },
5030
- "description": "Emits whenever the component is closed.",
5031
- "inheritedFrom": {
5032
- "name": "SbbOpenCloseBaseElement",
5033
- "module": "core/base-elements/open-close-base-element.js"
5034
- }
5035
- }
5036
- ]
5050
+ "classGenerics": "T = string"
5037
5051
  }
5038
5052
  ],
5039
5053
  "exports": [
@@ -6370,6 +6384,28 @@
6370
6384
  }
6371
6385
  ],
6372
6386
  "events": [
6387
+ {
6388
+ "type": {
6389
+ "text": "Event"
6390
+ },
6391
+ "description": "The change event is fired on the autocomplete's trigger when the user modifies the element's value. Unlike the input event, the change event is not necessarily fired for each alteration to an element's value.",
6392
+ "name": "change",
6393
+ "inheritedFrom": {
6394
+ "name": "SbbAutocompleteBaseElement",
6395
+ "module": "autocomplete/autocomplete-base-element.js"
6396
+ }
6397
+ },
6398
+ {
6399
+ "type": {
6400
+ "text": "InputEvent"
6401
+ },
6402
+ "description": "The input event fires on the autocomplete's trigger when the value has been changed as a direct result of a user action.",
6403
+ "name": "input",
6404
+ "inheritedFrom": {
6405
+ "name": "SbbAutocompleteBaseElement",
6406
+ "module": "autocomplete/autocomplete-base-element.js"
6407
+ }
6408
+ },
6373
6409
  {
6374
6410
  "name": "beforeopen",
6375
6411
  "type": {
@@ -78273,7 +78309,7 @@
78273
78309
  },
78274
78310
  {
78275
78311
  "kind": "class",
78276
- "description": "",
78312
+ "description": "Base component for datepicker's buttons.",
78277
78313
  "name": "SbbDatepickerButtonBase",
78278
78314
  "members": [
78279
78315
  {
@@ -79046,6 +79082,22 @@
79046
79082
  }
79047
79083
  }
79048
79084
  ],
79085
+ "events": [
79086
+ {
79087
+ "type": {
79088
+ "text": "Event"
79089
+ },
79090
+ "description": "The change event is fired on the datepicker's input when the user modifies the element's value. Unlike the input event, the change event is not necessarily fired for each alteration to an element's value.",
79091
+ "name": "change"
79092
+ },
79093
+ {
79094
+ "type": {
79095
+ "text": "InputEvent"
79096
+ },
79097
+ "description": "The input event fires on the datepicker's input when the value has been changed as a direct result of a user action.",
79098
+ "name": "input"
79099
+ }
79100
+ ],
79049
79101
  "attributes": [
79050
79102
  {
79051
79103
  "name": "input",
@@ -80107,6 +80159,30 @@
80107
80159
  "module": "core/mixins/form-associated-mixin.js"
80108
80160
  }
80109
80161
  }
80162
+ ],
80163
+ "events": [
80164
+ {
80165
+ "type": {
80166
+ "text": "Event"
80167
+ },
80168
+ "description": "The change event is fired on the datepicker's input when the user modifies the element's value. Unlike the input event, the change event is not necessarily fired for each alteration to an element's value.",
80169
+ "name": "change",
80170
+ "inheritedFrom": {
80171
+ "name": "SbbDatepickerButtonBase",
80172
+ "module": "datepicker/common/datepicker-button.js"
80173
+ }
80174
+ },
80175
+ {
80176
+ "type": {
80177
+ "text": "InputEvent"
80178
+ },
80179
+ "description": "The input event fires on the datepicker's input when the value has been changed as a direct result of a user action.",
80180
+ "name": "input",
80181
+ "inheritedFrom": {
80182
+ "name": "SbbDatepickerButtonBase",
80183
+ "module": "datepicker/common/datepicker-button.js"
80184
+ }
80185
+ }
80110
80186
  ]
80111
80187
  }
80112
80188
  ],
@@ -80978,6 +81054,20 @@
80978
81054
  "description": "Event emitted on date selection.",
80979
81055
  "name": "dateselected"
80980
81056
  },
81057
+ {
81058
+ "type": {
81059
+ "text": "Event"
81060
+ },
81061
+ "description": "The change event is fired on the datepicker's input when the user modifies the element's value. Unlike the input event, the change event is not necessarily fired for each alteration to an element's value.",
81062
+ "name": "change"
81063
+ },
81064
+ {
81065
+ "type": {
81066
+ "text": "InputEvent"
81067
+ },
81068
+ "description": "The input event fires on the datepicker's input when the value has been changed as a direct result of a user action.",
81069
+ "name": "input"
81070
+ },
80981
81071
  {
80982
81072
  "name": "beforeclose",
80983
81073
  "type": {
@@ -82118,6 +82208,30 @@
82118
82208
  "module": "core/mixins/form-associated-mixin.js"
82119
82209
  }
82120
82210
  }
82211
+ ],
82212
+ "events": [
82213
+ {
82214
+ "type": {
82215
+ "text": "Event"
82216
+ },
82217
+ "description": "The change event is fired on the datepicker's input when the user modifies the element's value. Unlike the input event, the change event is not necessarily fired for each alteration to an element's value.",
82218
+ "name": "change",
82219
+ "inheritedFrom": {
82220
+ "name": "SbbDatepickerButtonBase",
82221
+ "module": "datepicker/common/datepicker-button.js"
82222
+ }
82223
+ },
82224
+ {
82225
+ "type": {
82226
+ "text": "InputEvent"
82227
+ },
82228
+ "description": "The input event fires on the datepicker's input when the value has been changed as a direct result of a user action.",
82229
+ "name": "input",
82230
+ "inheritedFrom": {
82231
+ "name": "SbbDatepickerButtonBase",
82232
+ "module": "datepicker/common/datepicker-button.js"
82233
+ }
82234
+ }
82121
82235
  ]
82122
82236
  }
82123
82237
  ],
@@ -83159,6 +83273,30 @@
83159
83273
  "module": "core/mixins/form-associated-mixin.js"
83160
83274
  }
83161
83275
  }
83276
+ ],
83277
+ "events": [
83278
+ {
83279
+ "type": {
83280
+ "text": "Event"
83281
+ },
83282
+ "description": "The change event is fired on the datepicker's input when the user modifies the element's value. Unlike the input event, the change event is not necessarily fired for each alteration to an element's value.",
83283
+ "name": "change",
83284
+ "inheritedFrom": {
83285
+ "name": "SbbDatepickerButtonBase",
83286
+ "module": "datepicker/common/datepicker-button.js"
83287
+ }
83288
+ },
83289
+ {
83290
+ "type": {
83291
+ "text": "InputEvent"
83292
+ },
83293
+ "description": "The input event fires on the datepicker's input when the value has been changed as a direct result of a user action.",
83294
+ "name": "input",
83295
+ "inheritedFrom": {
83296
+ "name": "SbbDatepickerButtonBase",
83297
+ "module": "datepicker/common/datepicker-button.js"
83298
+ }
83299
+ }
83162
83300
  ]
83163
83301
  }
83164
83302
  ],
@@ -84102,7 +84240,31 @@
84102
84240
  },
84103
84241
  "tagName": "sbb-datepicker-toggle",
84104
84242
  "customElement": true,
84105
- "classGenerics": "T = Date"
84243
+ "classGenerics": "T = Date",
84244
+ "events": [
84245
+ {
84246
+ "type": {
84247
+ "text": "Event"
84248
+ },
84249
+ "description": "The change event is fired on the datepicker's input when the user modifies the element's value. Unlike the input event, the change event is not necessarily fired for each alteration to an element's value.",
84250
+ "name": "change",
84251
+ "inheritedFrom": {
84252
+ "name": "SbbDatepickerButtonBase",
84253
+ "module": "datepicker/common/datepicker-button.js"
84254
+ }
84255
+ },
84256
+ {
84257
+ "type": {
84258
+ "text": "InputEvent"
84259
+ },
84260
+ "description": "The input event fires on the datepicker's input when the value has been changed as a direct result of a user action.",
84261
+ "name": "input",
84262
+ "inheritedFrom": {
84263
+ "name": "SbbDatepickerButtonBase",
84264
+ "module": "datepicker/common/datepicker-button.js"
84265
+ }
84266
+ }
84267
+ ]
84106
84268
  }
84107
84269
  ],
84108
84270
  "exports": [
@@ -95151,6 +95313,22 @@
95151
95313
  }
95152
95314
  }
95153
95315
  ],
95316
+ "events": [
95317
+ {
95318
+ "type": {
95319
+ "text": "Event"
95320
+ },
95321
+ "description": "The change event is fired on the component's associated input when the user modifies the element's value. Unlike the input event, the change event is not necessarily fired for each alteration to an element's value.",
95322
+ "name": "change"
95323
+ },
95324
+ {
95325
+ "type": {
95326
+ "text": "InputEvent"
95327
+ },
95328
+ "description": "The input event fires on the component's associated input when the value has been changed as a direct result of a user action.",
95329
+ "name": "input"
95330
+ }
95331
+ ],
95154
95332
  "mixins": [
95155
95333
  {
95156
95334
  "name": "SbbNegativeMixin",
@@ -120967,218 +121145,6 @@
120967
121145
  }
120968
121146
  ]
120969
121147
  },
120970
- {
120971
- "kind": "javascript-module",
120972
- "path": "sidebar/sidebar-container/sidebar-container.component.js",
120973
- "declarations": [
120974
- {
120975
- "kind": "class",
120976
- "description": "This is the parent component to one or two `<sbb-sidebar>`s that validates the state internally\nand coordinates the backdrop and content styling.",
120977
- "name": "SbbSidebarContainerElement",
120978
- "slots": [
120979
- {
120980
- "description": "Use the unnamed slot to add `sbb-sidebar` and `sbb-sidebar-content` elements.",
120981
- "name": ""
120982
- }
120983
- ],
120984
- "members": [
120985
- {
120986
- "kind": "field",
120987
- "name": "elementName",
120988
- "type": {
120989
- "text": "string"
120990
- },
120991
- "privacy": "public",
120992
- "static": true,
120993
- "readonly": true,
120994
- "default": "'sbb-sidebar-container'",
120995
- "inheritedFrom": {
120996
- "name": "SbbElement",
120997
- "module": "core/base-elements/element.js"
120998
- }
120999
- },
121000
- {
121001
- "kind": "field",
121002
- "name": "sidebars",
121003
- "type": {
121004
- "text": "SbbSidebarElement[]"
121005
- },
121006
- "privacy": "public",
121007
- "description": "The sidebar children.",
121008
- "readonly": true
121009
- },
121010
- {
121011
- "kind": "field",
121012
- "name": "start",
121013
- "type": {
121014
- "text": "SbbSidebarElement | null"
121015
- },
121016
- "privacy": "public",
121017
- "description": "The sidebar child with the `start` position.",
121018
- "readonly": true
121019
- },
121020
- {
121021
- "kind": "field",
121022
- "name": "end",
121023
- "type": {
121024
- "text": "SbbSidebarElement | null"
121025
- },
121026
- "privacy": "public",
121027
- "description": "The sidebar child with the `end` position.",
121028
- "readonly": true
121029
- },
121030
- {
121031
- "kind": "field",
121032
- "name": "_forcedClosedSidebars",
121033
- "privacy": "private",
121034
- "default": "new WeakSet<SbbSidebarElement>()"
121035
- },
121036
- {
121037
- "kind": "method",
121038
- "name": "_handleWidthChange",
121039
- "privacy": "private",
121040
- "return": {
121041
- "type": {
121042
- "text": "void"
121043
- }
121044
- }
121045
- },
121046
- {
121047
- "kind": "method",
121048
- "name": "_calculateSpaceState",
121049
- "privacy": "private",
121050
- "return": {
121051
- "type": {
121052
- "text": "Promise<void>"
121053
- }
121054
- },
121055
- "description": "Closes and opens sidebars depending on available width\nof the container and its parent container."
121056
- },
121057
- {
121058
- "kind": "field",
121059
- "name": "_hydrationRequired",
121060
- "type": {
121061
- "text": "boolean"
121062
- },
121063
- "privacy": "private",
121064
- "default": "!!this.shadowRoot",
121065
- "inheritedFrom": {
121066
- "name": "SbbElement",
121067
- "module": "core/base-elements/element.js"
121068
- }
121069
- },
121070
- {
121071
- "kind": "field",
121072
- "name": "_hydrationComplete",
121073
- "privacy": "private",
121074
- "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
121075
- "inheritedFrom": {
121076
- "name": "SbbElement",
121077
- "module": "core/base-elements/element.js"
121078
- }
121079
- },
121080
- {
121081
- "kind": "field",
121082
- "name": "_resolveHydration",
121083
- "type": {
121084
- "text": "(hydrationRequired: boolean) => void"
121085
- },
121086
- "privacy": "private",
121087
- "inheritedFrom": {
121088
- "name": "SbbElement",
121089
- "module": "core/base-elements/element.js"
121090
- }
121091
- },
121092
- {
121093
- "kind": "field",
121094
- "name": "hydrationRequired",
121095
- "type": {
121096
- "text": "boolean"
121097
- },
121098
- "privacy": "protected",
121099
- "description": "Returns whether hydration is required and not completed.",
121100
- "readonly": true,
121101
- "inheritedFrom": {
121102
- "name": "SbbElement",
121103
- "module": "core/base-elements/element.js"
121104
- },
121105
- "default": "!!this.shadowRoot"
121106
- },
121107
- {
121108
- "kind": "method",
121109
- "name": "toggleState",
121110
- "privacy": "protected",
121111
- "return": {
121112
- "type": {
121113
- "text": "void"
121114
- }
121115
- },
121116
- "parameters": [
121117
- {
121118
- "name": "value",
121119
- "type": {
121120
- "text": "string"
121121
- }
121122
- },
121123
- {
121124
- "name": "force",
121125
- "optional": true,
121126
- "type": {
121127
- "text": "boolean"
121128
- }
121129
- }
121130
- ],
121131
- "inheritedFrom": {
121132
- "name": "SbbElement",
121133
- "module": "core/base-elements/element.js"
121134
- }
121135
- },
121136
- {
121137
- "kind": "field",
121138
- "name": "['_$sbbElement$']",
121139
- "type": {
121140
- "text": "boolean"
121141
- },
121142
- "privacy": "public",
121143
- "static": true,
121144
- "default": "true",
121145
- "inheritedFrom": {
121146
- "name": "SbbElement",
121147
- "module": "core/base-elements/element.js"
121148
- }
121149
- },
121150
- {
121151
- "kind": "field",
121152
- "name": "_controllers",
121153
- "type": {
121154
- "text": "Set<SbbReactiveController> | undefined"
121155
- },
121156
- "privacy": "private",
121157
- "inheritedFrom": {
121158
- "name": "SbbElement",
121159
- "module": "core/base-elements/element.js"
121160
- }
121161
- }
121162
- ],
121163
- "superclass": {
121164
- "name": "SbbElement",
121165
- "module": "core/base-elements.js"
121166
- },
121167
- "tagName": "sbb-sidebar-container",
121168
- "customElement": true
121169
- }
121170
- ],
121171
- "exports": [
121172
- {
121173
- "kind": "js",
121174
- "name": "SbbSidebarContainerElement",
121175
- "declaration": {
121176
- "name": "SbbSidebarContainerElement",
121177
- "module": "sidebar/sidebar-container/sidebar-container.component.js"
121178
- }
121179
- }
121180
- ]
121181
- },
121182
121148
  {
121183
121149
  "kind": "javascript-module",
121184
121150
  "path": "sidebar/sidebar-close-button/sidebar-close-button.component.js",
@@ -122199,6 +122165,218 @@
122199
122165
  }
122200
122166
  ]
122201
122167
  },
122168
+ {
122169
+ "kind": "javascript-module",
122170
+ "path": "sidebar/sidebar-container/sidebar-container.component.js",
122171
+ "declarations": [
122172
+ {
122173
+ "kind": "class",
122174
+ "description": "This is the parent component to one or two `<sbb-sidebar>`s that validates the state internally\nand coordinates the backdrop and content styling.",
122175
+ "name": "SbbSidebarContainerElement",
122176
+ "slots": [
122177
+ {
122178
+ "description": "Use the unnamed slot to add `sbb-sidebar` and `sbb-sidebar-content` elements.",
122179
+ "name": ""
122180
+ }
122181
+ ],
122182
+ "members": [
122183
+ {
122184
+ "kind": "field",
122185
+ "name": "elementName",
122186
+ "type": {
122187
+ "text": "string"
122188
+ },
122189
+ "privacy": "public",
122190
+ "static": true,
122191
+ "readonly": true,
122192
+ "default": "'sbb-sidebar-container'",
122193
+ "inheritedFrom": {
122194
+ "name": "SbbElement",
122195
+ "module": "core/base-elements/element.js"
122196
+ }
122197
+ },
122198
+ {
122199
+ "kind": "field",
122200
+ "name": "sidebars",
122201
+ "type": {
122202
+ "text": "SbbSidebarElement[]"
122203
+ },
122204
+ "privacy": "public",
122205
+ "description": "The sidebar children.",
122206
+ "readonly": true
122207
+ },
122208
+ {
122209
+ "kind": "field",
122210
+ "name": "start",
122211
+ "type": {
122212
+ "text": "SbbSidebarElement | null"
122213
+ },
122214
+ "privacy": "public",
122215
+ "description": "The sidebar child with the `start` position.",
122216
+ "readonly": true
122217
+ },
122218
+ {
122219
+ "kind": "field",
122220
+ "name": "end",
122221
+ "type": {
122222
+ "text": "SbbSidebarElement | null"
122223
+ },
122224
+ "privacy": "public",
122225
+ "description": "The sidebar child with the `end` position.",
122226
+ "readonly": true
122227
+ },
122228
+ {
122229
+ "kind": "field",
122230
+ "name": "_forcedClosedSidebars",
122231
+ "privacy": "private",
122232
+ "default": "new WeakSet<SbbSidebarElement>()"
122233
+ },
122234
+ {
122235
+ "kind": "method",
122236
+ "name": "_handleWidthChange",
122237
+ "privacy": "private",
122238
+ "return": {
122239
+ "type": {
122240
+ "text": "void"
122241
+ }
122242
+ }
122243
+ },
122244
+ {
122245
+ "kind": "method",
122246
+ "name": "_calculateSpaceState",
122247
+ "privacy": "private",
122248
+ "return": {
122249
+ "type": {
122250
+ "text": "Promise<void>"
122251
+ }
122252
+ },
122253
+ "description": "Closes and opens sidebars depending on available width\nof the container and its parent container."
122254
+ },
122255
+ {
122256
+ "kind": "field",
122257
+ "name": "_hydrationRequired",
122258
+ "type": {
122259
+ "text": "boolean"
122260
+ },
122261
+ "privacy": "private",
122262
+ "default": "!!this.shadowRoot",
122263
+ "inheritedFrom": {
122264
+ "name": "SbbElement",
122265
+ "module": "core/base-elements/element.js"
122266
+ }
122267
+ },
122268
+ {
122269
+ "kind": "field",
122270
+ "name": "_hydrationComplete",
122271
+ "privacy": "private",
122272
+ "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
122273
+ "inheritedFrom": {
122274
+ "name": "SbbElement",
122275
+ "module": "core/base-elements/element.js"
122276
+ }
122277
+ },
122278
+ {
122279
+ "kind": "field",
122280
+ "name": "_resolveHydration",
122281
+ "type": {
122282
+ "text": "(hydrationRequired: boolean) => void"
122283
+ },
122284
+ "privacy": "private",
122285
+ "inheritedFrom": {
122286
+ "name": "SbbElement",
122287
+ "module": "core/base-elements/element.js"
122288
+ }
122289
+ },
122290
+ {
122291
+ "kind": "field",
122292
+ "name": "hydrationRequired",
122293
+ "type": {
122294
+ "text": "boolean"
122295
+ },
122296
+ "privacy": "protected",
122297
+ "description": "Returns whether hydration is required and not completed.",
122298
+ "readonly": true,
122299
+ "inheritedFrom": {
122300
+ "name": "SbbElement",
122301
+ "module": "core/base-elements/element.js"
122302
+ },
122303
+ "default": "!!this.shadowRoot"
122304
+ },
122305
+ {
122306
+ "kind": "method",
122307
+ "name": "toggleState",
122308
+ "privacy": "protected",
122309
+ "return": {
122310
+ "type": {
122311
+ "text": "void"
122312
+ }
122313
+ },
122314
+ "parameters": [
122315
+ {
122316
+ "name": "value",
122317
+ "type": {
122318
+ "text": "string"
122319
+ }
122320
+ },
122321
+ {
122322
+ "name": "force",
122323
+ "optional": true,
122324
+ "type": {
122325
+ "text": "boolean"
122326
+ }
122327
+ }
122328
+ ],
122329
+ "inheritedFrom": {
122330
+ "name": "SbbElement",
122331
+ "module": "core/base-elements/element.js"
122332
+ }
122333
+ },
122334
+ {
122335
+ "kind": "field",
122336
+ "name": "['_$sbbElement$']",
122337
+ "type": {
122338
+ "text": "boolean"
122339
+ },
122340
+ "privacy": "public",
122341
+ "static": true,
122342
+ "default": "true",
122343
+ "inheritedFrom": {
122344
+ "name": "SbbElement",
122345
+ "module": "core/base-elements/element.js"
122346
+ }
122347
+ },
122348
+ {
122349
+ "kind": "field",
122350
+ "name": "_controllers",
122351
+ "type": {
122352
+ "text": "Set<SbbReactiveController> | undefined"
122353
+ },
122354
+ "privacy": "private",
122355
+ "inheritedFrom": {
122356
+ "name": "SbbElement",
122357
+ "module": "core/base-elements/element.js"
122358
+ }
122359
+ }
122360
+ ],
122361
+ "superclass": {
122362
+ "name": "SbbElement",
122363
+ "module": "core/base-elements.js"
122364
+ },
122365
+ "tagName": "sbb-sidebar-container",
122366
+ "customElement": true
122367
+ }
122368
+ ],
122369
+ "exports": [
122370
+ {
122371
+ "kind": "js",
122372
+ "name": "SbbSidebarContainerElement",
122373
+ "declaration": {
122374
+ "name": "SbbSidebarContainerElement",
122375
+ "module": "sidebar/sidebar-container/sidebar-container.component.js"
122376
+ }
122377
+ }
122378
+ ]
122379
+ },
122202
122380
  {
122203
122381
  "kind": "javascript-module",
122204
122382
  "path": "sidebar/sidebar-content/sidebar-content.component.js",
@@ -130874,6 +131052,22 @@
130874
131052
  }
130875
131053
  }
130876
131054
  ],
131055
+ "events": [
131056
+ {
131057
+ "type": {
131058
+ "text": "Event"
131059
+ },
131060
+ "description": "The change event is fired on the associated inputs when the user modifies the element's value. Unlike the input event, the change event is not necessarily fired for each alteration to an element's value.",
131061
+ "name": "change"
131062
+ },
131063
+ {
131064
+ "type": {
131065
+ "text": "InputEvent"
131066
+ },
131067
+ "description": "The input event fires on the associated inputs when the value has been changed as a direct result of a user action.",
131068
+ "name": "input"
131069
+ }
131070
+ ],
130877
131071
  "superclass": {
130878
131072
  "name": "SbbSecondaryButtonElement",
130879
131073
  "module": "button.pure.js"
@@ -132154,6 +132348,15 @@
132154
132348
  }
132155
132349
  }
132156
132350
  ],
132351
+ "events": [
132352
+ {
132353
+ "type": {
132354
+ "text": "InputEvent"
132355
+ },
132356
+ "description": "The input event fires when the value has been changed as a direct result of a user action.",
132357
+ "name": "input"
132358
+ }
132359
+ ],
132157
132360
  "attributes": [
132158
132361
  {
132159
132362
  "name": "checked",