@sbb-esta/lyne-elements-dev 4.13.0-dev.1778852796 → 4.13.0-dev.1778879466

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 (2) hide show
  1. package/custom-elements.json +1653 -1653
  2. package/package.json +2 -2
@@ -77919,6 +77919,26 @@
77919
77919
  }
77920
77920
  ]
77921
77921
  },
77922
+ {
77923
+ "kind": "javascript-module",
77924
+ "path": "core/styles/styles.js",
77925
+ "declarations": [
77926
+ {
77927
+ "kind": "variable",
77928
+ "name": "boxSizingStyles"
77929
+ }
77930
+ ],
77931
+ "exports": [
77932
+ {
77933
+ "kind": "js",
77934
+ "name": "boxSizingStyles",
77935
+ "declaration": {
77936
+ "name": "boxSizingStyles",
77937
+ "module": "core/styles/styles.js"
77938
+ }
77939
+ }
77940
+ ]
77941
+ },
77922
77942
  {
77923
77943
  "kind": "javascript-module",
77924
77944
  "path": "core/testing/event-spy.js",
@@ -78316,26 +78336,6 @@
78316
78336
  }
78317
78337
  ]
78318
78338
  },
78319
- {
78320
- "kind": "javascript-module",
78321
- "path": "core/styles/styles.js",
78322
- "declarations": [
78323
- {
78324
- "kind": "variable",
78325
- "name": "boxSizingStyles"
78326
- }
78327
- ],
78328
- "exports": [
78329
- {
78330
- "kind": "js",
78331
- "name": "boxSizingStyles",
78332
- "declaration": {
78333
- "name": "boxSizingStyles",
78334
- "module": "core/styles/styles.js"
78335
- }
78336
- }
78337
- ]
78338
- },
78339
78339
  {
78340
78340
  "kind": "javascript-module",
78341
78341
  "path": "datepicker/common/datepicker-button.js",
@@ -109983,6 +109983,224 @@
109983
109983
  }
109984
109984
  ]
109985
109985
  },
109986
+ {
109987
+ "kind": "javascript-module",
109988
+ "path": "mini-calendar/mini-calendar-month/mini-calendar-month.component.js",
109989
+ "declarations": [
109990
+ {
109991
+ "kind": "class",
109992
+ "description": "It displays a month in the `sbb-mini-calendar`.",
109993
+ "name": "SbbMiniCalendarMonthElement",
109994
+ "slots": [
109995
+ {
109996
+ "description": "Use the unnamed slot to add `sbb-mini-calendar-day` elements.",
109997
+ "name": ""
109998
+ }
109999
+ ],
110000
+ "members": [
110001
+ {
110002
+ "kind": "field",
110003
+ "name": "elementName",
110004
+ "type": {
110005
+ "text": "string"
110006
+ },
110007
+ "privacy": "public",
110008
+ "static": true,
110009
+ "readonly": true,
110010
+ "default": "'sbb-mini-calendar-month'",
110011
+ "inheritedFrom": {
110012
+ "name": "SbbElement",
110013
+ "module": "core/base-elements/element.js"
110014
+ }
110015
+ },
110016
+ {
110017
+ "kind": "field",
110018
+ "name": "date",
110019
+ "type": {
110020
+ "text": "string"
110021
+ },
110022
+ "privacy": "public",
110023
+ "default": "''",
110024
+ "description": "Date as ISO string (YYYY-MM)",
110025
+ "attribute": "date"
110026
+ },
110027
+ {
110028
+ "kind": "field",
110029
+ "name": "_dateAdapter",
110030
+ "type": {
110031
+ "text": "DateAdapter<T>"
110032
+ },
110033
+ "privacy": "private"
110034
+ },
110035
+ {
110036
+ "kind": "field",
110037
+ "name": "_monthNames",
110038
+ "privacy": "private"
110039
+ },
110040
+ {
110041
+ "kind": "field",
110042
+ "name": "_monthLabel",
110043
+ "type": {
110044
+ "text": "string | null"
110045
+ },
110046
+ "privacy": "private",
110047
+ "default": "null"
110048
+ },
110049
+ {
110050
+ "kind": "field",
110051
+ "name": "_yearLabel",
110052
+ "type": {
110053
+ "text": "string | null"
110054
+ },
110055
+ "privacy": "private",
110056
+ "default": "null"
110057
+ },
110058
+ {
110059
+ "kind": "field",
110060
+ "name": "_previousOrientation",
110061
+ "type": {
110062
+ "text": "SbbOrientation | null"
110063
+ },
110064
+ "privacy": "private",
110065
+ "default": "null"
110066
+ },
110067
+ {
110068
+ "kind": "field",
110069
+ "name": "_hydrationRequired",
110070
+ "type": {
110071
+ "text": "boolean"
110072
+ },
110073
+ "privacy": "private",
110074
+ "default": "!!this.shadowRoot",
110075
+ "inheritedFrom": {
110076
+ "name": "SbbElement",
110077
+ "module": "core/base-elements/element.js"
110078
+ }
110079
+ },
110080
+ {
110081
+ "kind": "field",
110082
+ "name": "_hydrationComplete",
110083
+ "privacy": "private",
110084
+ "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
110085
+ "inheritedFrom": {
110086
+ "name": "SbbElement",
110087
+ "module": "core/base-elements/element.js"
110088
+ }
110089
+ },
110090
+ {
110091
+ "kind": "field",
110092
+ "name": "_resolveHydration",
110093
+ "type": {
110094
+ "text": "(hydrationRequired: boolean) => void"
110095
+ },
110096
+ "privacy": "private",
110097
+ "inheritedFrom": {
110098
+ "name": "SbbElement",
110099
+ "module": "core/base-elements/element.js"
110100
+ }
110101
+ },
110102
+ {
110103
+ "kind": "field",
110104
+ "name": "hydrationRequired",
110105
+ "type": {
110106
+ "text": "boolean"
110107
+ },
110108
+ "privacy": "protected",
110109
+ "description": "Returns whether hydration is required and not completed.",
110110
+ "readonly": true,
110111
+ "inheritedFrom": {
110112
+ "name": "SbbElement",
110113
+ "module": "core/base-elements/element.js"
110114
+ },
110115
+ "default": "!!this.shadowRoot"
110116
+ },
110117
+ {
110118
+ "kind": "method",
110119
+ "name": "toggleState",
110120
+ "privacy": "protected",
110121
+ "return": {
110122
+ "type": {
110123
+ "text": "void"
110124
+ }
110125
+ },
110126
+ "parameters": [
110127
+ {
110128
+ "name": "value",
110129
+ "type": {
110130
+ "text": "string"
110131
+ }
110132
+ },
110133
+ {
110134
+ "name": "force",
110135
+ "optional": true,
110136
+ "type": {
110137
+ "text": "boolean"
110138
+ }
110139
+ }
110140
+ ],
110141
+ "inheritedFrom": {
110142
+ "name": "SbbElement",
110143
+ "module": "core/base-elements/element.js"
110144
+ }
110145
+ },
110146
+ {
110147
+ "kind": "field",
110148
+ "name": "['_$sbbElement$']",
110149
+ "type": {
110150
+ "text": "boolean"
110151
+ },
110152
+ "privacy": "public",
110153
+ "static": true,
110154
+ "default": "true",
110155
+ "inheritedFrom": {
110156
+ "name": "SbbElement",
110157
+ "module": "core/base-elements/element.js"
110158
+ }
110159
+ },
110160
+ {
110161
+ "kind": "field",
110162
+ "name": "_controllers",
110163
+ "type": {
110164
+ "text": "Set<SbbReactiveController> | undefined"
110165
+ },
110166
+ "privacy": "private",
110167
+ "inheritedFrom": {
110168
+ "name": "SbbElement",
110169
+ "module": "core/base-elements/element.js"
110170
+ }
110171
+ }
110172
+ ],
110173
+ "attributes": [
110174
+ {
110175
+ "name": "date",
110176
+ "type": {
110177
+ "text": "string"
110178
+ },
110179
+ "default": "''",
110180
+ "description": "Date as ISO string (YYYY-MM)",
110181
+ "fieldName": "date"
110182
+ }
110183
+ ],
110184
+ "superclass": {
110185
+ "name": "SbbElement",
110186
+ "module": "core/base-elements.js"
110187
+ },
110188
+ "tagName": "sbb-mini-calendar-month",
110189
+ "customElement": true,
110190
+ "classGenerics": "T = Date"
110191
+ }
110192
+ ],
110193
+ "exports": [
110194
+ {
110195
+ "kind": "js",
110196
+ "name": "SbbMiniCalendarMonthElement",
110197
+ "declaration": {
110198
+ "name": "SbbMiniCalendarMonthElement",
110199
+ "module": "mini-calendar/mini-calendar-month/mini-calendar-month.component.js"
110200
+ }
110201
+ }
110202
+ ]
110203
+ },
109986
110204
  {
109987
110205
  "kind": "javascript-module",
109988
110206
  "path": "navigation/common/navigation-action-common.js",
@@ -110153,224 +110371,6 @@
110153
110371
  }
110154
110372
  ]
110155
110373
  },
110156
- {
110157
- "kind": "javascript-module",
110158
- "path": "mini-calendar/mini-calendar-month/mini-calendar-month.component.js",
110159
- "declarations": [
110160
- {
110161
- "kind": "class",
110162
- "description": "It displays a month in the `sbb-mini-calendar`.",
110163
- "name": "SbbMiniCalendarMonthElement",
110164
- "slots": [
110165
- {
110166
- "description": "Use the unnamed slot to add `sbb-mini-calendar-day` elements.",
110167
- "name": ""
110168
- }
110169
- ],
110170
- "members": [
110171
- {
110172
- "kind": "field",
110173
- "name": "elementName",
110174
- "type": {
110175
- "text": "string"
110176
- },
110177
- "privacy": "public",
110178
- "static": true,
110179
- "readonly": true,
110180
- "default": "'sbb-mini-calendar-month'",
110181
- "inheritedFrom": {
110182
- "name": "SbbElement",
110183
- "module": "core/base-elements/element.js"
110184
- }
110185
- },
110186
- {
110187
- "kind": "field",
110188
- "name": "date",
110189
- "type": {
110190
- "text": "string"
110191
- },
110192
- "privacy": "public",
110193
- "default": "''",
110194
- "description": "Date as ISO string (YYYY-MM)",
110195
- "attribute": "date"
110196
- },
110197
- {
110198
- "kind": "field",
110199
- "name": "_dateAdapter",
110200
- "type": {
110201
- "text": "DateAdapter<T>"
110202
- },
110203
- "privacy": "private"
110204
- },
110205
- {
110206
- "kind": "field",
110207
- "name": "_monthNames",
110208
- "privacy": "private"
110209
- },
110210
- {
110211
- "kind": "field",
110212
- "name": "_monthLabel",
110213
- "type": {
110214
- "text": "string | null"
110215
- },
110216
- "privacy": "private",
110217
- "default": "null"
110218
- },
110219
- {
110220
- "kind": "field",
110221
- "name": "_yearLabel",
110222
- "type": {
110223
- "text": "string | null"
110224
- },
110225
- "privacy": "private",
110226
- "default": "null"
110227
- },
110228
- {
110229
- "kind": "field",
110230
- "name": "_previousOrientation",
110231
- "type": {
110232
- "text": "SbbOrientation | null"
110233
- },
110234
- "privacy": "private",
110235
- "default": "null"
110236
- },
110237
- {
110238
- "kind": "field",
110239
- "name": "_hydrationRequired",
110240
- "type": {
110241
- "text": "boolean"
110242
- },
110243
- "privacy": "private",
110244
- "default": "!!this.shadowRoot",
110245
- "inheritedFrom": {
110246
- "name": "SbbElement",
110247
- "module": "core/base-elements/element.js"
110248
- }
110249
- },
110250
- {
110251
- "kind": "field",
110252
- "name": "_hydrationComplete",
110253
- "privacy": "private",
110254
- "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
110255
- "inheritedFrom": {
110256
- "name": "SbbElement",
110257
- "module": "core/base-elements/element.js"
110258
- }
110259
- },
110260
- {
110261
- "kind": "field",
110262
- "name": "_resolveHydration",
110263
- "type": {
110264
- "text": "(hydrationRequired: boolean) => void"
110265
- },
110266
- "privacy": "private",
110267
- "inheritedFrom": {
110268
- "name": "SbbElement",
110269
- "module": "core/base-elements/element.js"
110270
- }
110271
- },
110272
- {
110273
- "kind": "field",
110274
- "name": "hydrationRequired",
110275
- "type": {
110276
- "text": "boolean"
110277
- },
110278
- "privacy": "protected",
110279
- "description": "Returns whether hydration is required and not completed.",
110280
- "readonly": true,
110281
- "inheritedFrom": {
110282
- "name": "SbbElement",
110283
- "module": "core/base-elements/element.js"
110284
- },
110285
- "default": "!!this.shadowRoot"
110286
- },
110287
- {
110288
- "kind": "method",
110289
- "name": "toggleState",
110290
- "privacy": "protected",
110291
- "return": {
110292
- "type": {
110293
- "text": "void"
110294
- }
110295
- },
110296
- "parameters": [
110297
- {
110298
- "name": "value",
110299
- "type": {
110300
- "text": "string"
110301
- }
110302
- },
110303
- {
110304
- "name": "force",
110305
- "optional": true,
110306
- "type": {
110307
- "text": "boolean"
110308
- }
110309
- }
110310
- ],
110311
- "inheritedFrom": {
110312
- "name": "SbbElement",
110313
- "module": "core/base-elements/element.js"
110314
- }
110315
- },
110316
- {
110317
- "kind": "field",
110318
- "name": "['_$sbbElement$']",
110319
- "type": {
110320
- "text": "boolean"
110321
- },
110322
- "privacy": "public",
110323
- "static": true,
110324
- "default": "true",
110325
- "inheritedFrom": {
110326
- "name": "SbbElement",
110327
- "module": "core/base-elements/element.js"
110328
- }
110329
- },
110330
- {
110331
- "kind": "field",
110332
- "name": "_controllers",
110333
- "type": {
110334
- "text": "Set<SbbReactiveController> | undefined"
110335
- },
110336
- "privacy": "private",
110337
- "inheritedFrom": {
110338
- "name": "SbbElement",
110339
- "module": "core/base-elements/element.js"
110340
- }
110341
- }
110342
- ],
110343
- "attributes": [
110344
- {
110345
- "name": "date",
110346
- "type": {
110347
- "text": "string"
110348
- },
110349
- "default": "''",
110350
- "description": "Date as ISO string (YYYY-MM)",
110351
- "fieldName": "date"
110352
- }
110353
- ],
110354
- "superclass": {
110355
- "name": "SbbElement",
110356
- "module": "core/base-elements.js"
110357
- },
110358
- "tagName": "sbb-mini-calendar-month",
110359
- "customElement": true,
110360
- "classGenerics": "T = Date"
110361
- }
110362
- ],
110363
- "exports": [
110364
- {
110365
- "kind": "js",
110366
- "name": "SbbMiniCalendarMonthElement",
110367
- "declaration": {
110368
- "name": "SbbMiniCalendarMonthElement",
110369
- "module": "mini-calendar/mini-calendar-month/mini-calendar-month.component.js"
110370
- }
110371
- }
110372
- ]
110373
- },
110374
110374
  {
110375
110375
  "kind": "javascript-module",
110376
110376
  "path": "navigation/navigation/navigation.component.js",
@@ -111975,16 +111975,20 @@
111975
111975
  },
111976
111976
  {
111977
111977
  "kind": "javascript-module",
111978
- "path": "navigation/navigation-link/navigation-link.component.js",
111978
+ "path": "navigation/navigation-list/navigation-list.component.js",
111979
111979
  "declarations": [
111980
111980
  {
111981
111981
  "kind": "class",
111982
- "description": "It displays a link element that can be used in the `sbb-navigation` component.",
111983
- "name": "SbbNavigationLinkElement",
111982
+ "description": "It can be used as a container for one or more `sbb-navigation-button`/`sbb-navigation-link` within a `sbb-navigation-section`.",
111983
+ "name": "SbbNavigationListElement",
111984
111984
  "slots": [
111985
111985
  {
111986
- "description": "Use the unnamed slot to add content to the `sbb-navigation-link`.",
111986
+ "description": "Use the unnamed slot to add content to the `sbb-navigation-list`.",
111987
111987
  "name": ""
111988
+ },
111989
+ {
111990
+ "description": "Use this to provide a label element.",
111991
+ "name": "label"
111988
111992
  }
111989
111993
  ],
111990
111994
  "members": [
@@ -111997,624 +112001,545 @@
111997
112001
  "privacy": "public",
111998
112002
  "static": true,
111999
112003
  "readonly": true,
112004
+ "default": "'sbb-navigation-list'",
112000
112005
  "inheritedFrom": {
112001
112006
  "name": "SbbElement",
112002
112007
  "module": "core/base-elements/element.js"
112003
- },
112004
- "default": "'sbb-navigation-link'"
112005
- },
112006
- {
112007
- "kind": "field",
112008
- "name": "styles",
112009
- "type": {
112010
- "text": "CSSResultGroup"
112011
- },
112012
- "privacy": "public",
112013
- "static": true,
112014
- "default": "[boxSizingStyles, unsafeCSS(style)]",
112015
- "inheritedFrom": {
112016
- "name": "SbbNavigationActionCommonElementMixin",
112017
- "module": "navigation/common/navigation-action-common.js"
112018
- }
112019
- },
112020
- {
112021
- "kind": "field",
112022
- "name": "size",
112023
- "type": {
112024
- "text": "SbbNavigationActionSize"
112025
- },
112026
- "privacy": "public",
112027
- "description": "Action size variant, either s, m or l.",
112028
- "default": "'l' / 's' (lean)",
112029
- "attribute": "size",
112030
- "reflects": true,
112031
- "inheritedFrom": {
112032
- "name": "SbbNavigationActionCommonElementMixin",
112033
- "module": "navigation/common/navigation-action-common.js"
112034
- }
112035
- },
112036
- {
112037
- "kind": "field",
112038
- "name": "connectedSection",
112039
- "type": {
112040
- "text": "SbbNavigationSectionElement | undefined"
112041
- },
112042
- "privacy": "public",
112043
- "description": "The section that is being controlled by the action, if any.",
112044
- "inheritedFrom": {
112045
- "name": "SbbNavigationActionCommonElementMixin",
112046
- "module": "navigation/common/navigation-action-common.js"
112047
112008
  }
112048
112009
  },
112049
112010
  {
112050
112011
  "kind": "field",
112051
- "name": "marker",
112012
+ "name": "listChildLocalNames",
112052
112013
  "type": {
112053
- "text": "SbbNavigationMarkerElement | null"
112014
+ "text": "array"
112054
112015
  },
112055
- "privacy": "public",
112056
- "description": "The navigation marker in which the action is nested.",
112016
+ "privacy": "protected",
112057
112017
  "readonly": true,
112018
+ "description": "A list of lower-cased tag names to match against. (e.g. `sbb-link`)",
112019
+ "default": "[ 'sbb-navigation-button', 'sbb-navigation-link', ]",
112058
112020
  "inheritedFrom": {
112059
- "name": "SbbNavigationActionCommonElementMixin",
112060
- "module": "navigation/common/navigation-action-common.js"
112021
+ "name": "SbbNamedSlotListMixin",
112022
+ "module": "core/mixins/named-slot-list-mixin.js"
112061
112023
  }
112062
112024
  },
112063
112025
  {
112064
112026
  "kind": "field",
112065
- "name": "section",
112027
+ "name": "label",
112066
112028
  "type": {
112067
- "text": "SbbNavigationSectionElement | null"
112029
+ "text": "string"
112068
112030
  },
112069
112031
  "privacy": "public",
112070
- "description": "The section in which the action is nested.",
112071
- "readonly": true,
112072
- "inheritedFrom": {
112073
- "name": "SbbNavigationActionCommonElementMixin",
112074
- "module": "navigation/common/navigation-action-common.js"
112075
- }
112032
+ "default": "''",
112033
+ "description": "The label to be shown before the action list.",
112034
+ "attribute": "label",
112035
+ "reflects": true
112076
112036
  },
112077
112037
  {
112078
112038
  "kind": "field",
112079
- "name": "_navigationMarker",
112039
+ "name": "listChildren",
112080
112040
  "type": {
112081
- "text": "SbbNavigationMarkerElement | null"
112041
+ "text": "C[]"
112082
112042
  },
112083
- "privacy": "private",
112084
- "default": "null",
112043
+ "privacy": "protected",
112044
+ "default": "[]",
112045
+ "description": "A list of children with the defined tag names.\nThis array is only updated if there is an actual change\nto the child elements.",
112085
112046
  "inheritedFrom": {
112086
- "name": "SbbNavigationActionCommonElementMixin",
112087
- "module": "navigation/common/navigation-action-common.js"
112047
+ "name": "SbbNamedSlotListMixin",
112048
+ "module": "core/mixins/named-slot-list-mixin.js"
112088
112049
  }
112089
112050
  },
112090
112051
  {
112091
112052
  "kind": "field",
112092
- "name": "_navigationSection",
112093
- "type": {
112094
- "text": "SbbNavigationSectionElement | null"
112095
- },
112053
+ "name": "_handleSlotchange",
112096
112054
  "privacy": "private",
112097
- "default": "null",
112098
112055
  "inheritedFrom": {
112099
- "name": "SbbNavigationActionCommonElementMixin",
112100
- "module": "navigation/common/navigation-action-common.js"
112056
+ "name": "SbbNamedSlotListMixin",
112057
+ "module": "core/mixins/named-slot-list-mixin.js"
112101
112058
  }
112102
112059
  },
112103
112060
  {
112104
112061
  "kind": "method",
112105
- "name": "renderTemplate",
112062
+ "name": "renderList",
112106
112063
  "privacy": "protected",
112107
112064
  "return": {
112108
112065
  "type": {
112109
112066
  "text": "TemplateResult"
112110
112067
  }
112111
112068
  },
112112
- "description": "Override this method to render the component template.",
112113
- "inheritedFrom": {
112114
- "name": "SbbActionBaseElement",
112115
- "module": "core/base-elements/action-base-element.js"
112116
- }
112117
- },
112118
- {
112119
- "kind": "field",
112120
- "name": "href",
112121
- "type": {
112122
- "text": "string"
112123
- },
112124
- "privacy": "public",
112125
- "default": "''",
112126
- "description": "The href value you want to link to.",
112127
- "attribute": "href",
112128
- "reflects": true,
112069
+ "parameters": [
112070
+ {
112071
+ "name": "attributes",
112072
+ "default": "{}",
112073
+ "type": {
112074
+ "text": "{ class?: string; ariaLabel?: string; ariaLabelledby?: string }"
112075
+ }
112076
+ },
112077
+ {
112078
+ "name": "listItemAttributes",
112079
+ "default": "{}",
112080
+ "type": {
112081
+ "text": "{ localNameVisualOnly?: string[] }"
112082
+ }
112083
+ }
112084
+ ],
112085
+ "description": "Renders list and list slots for slotted children or a number of list slots\ncorresponding to the `data-ssr-child-count` attribute value.\n\nThis is a possible optimization for SSR, as in an SSR Lit environment\nother elements are not available, but might be available in the meta\nframework wrapper (like e.g. React). This allows to provide the number of\nchildren to be passed via the `data-ssr-child-count` attribute value.",
112129
112086
  "inheritedFrom": {
112130
- "name": "SbbLinkBaseElement",
112131
- "module": "core/base-elements/link-base-element.js"
112087
+ "name": "SbbNamedSlotListMixin",
112088
+ "module": "core/mixins/named-slot-list-mixin.js"
112132
112089
  }
112133
112090
  },
112134
112091
  {
112135
- "kind": "field",
112136
- "name": "target",
112137
- "type": {
112138
- "text": "LinkTargetType | string"
112092
+ "kind": "method",
112093
+ "name": "listSlotEntries",
112094
+ "privacy": "protected",
112095
+ "return": {
112096
+ "type": {
112097
+ "text": "SbbNamedSlotProperties[]"
112098
+ }
112139
112099
  },
112140
- "privacy": "public",
112141
- "default": "''",
112142
- "description": "Where to display the linked URL.",
112143
- "attribute": "target",
112144
- "reflects": true,
112100
+ "parameters": [
112101
+ {
112102
+ "name": "listItemAttributes",
112103
+ "type": {
112104
+ "text": "{\n localNameVisualOnly?: string[];\n }"
112105
+ }
112106
+ }
112107
+ ],
112108
+ "description": "Returns an array of SbbNamedSlotProperties, which holds the list slot names and the hidden property;\nits length corresponds to the number of matched children or the `data-ssr-child-count` attribute value.\n\nThis is a possible optimization for SSR, as in an SSR Lit environment\nother elements are not available, but might be available in the meta\nframework wrapper (like e.g. React). This allows to provide the number of\nchildren to be passed via the `data-ssr-child-count` attribute value.",
112145
112109
  "inheritedFrom": {
112146
- "name": "SbbLinkBaseElement",
112147
- "module": "core/base-elements/link-base-element.js"
112110
+ "name": "SbbNamedSlotListMixin",
112111
+ "module": "core/mixins/named-slot-list-mixin.js"
112148
112112
  }
112149
112113
  },
112150
112114
  {
112151
- "kind": "field",
112152
- "name": "rel",
112153
- "type": {
112154
- "text": "string"
112115
+ "kind": "method",
112116
+ "name": "renderHiddenSlot",
112117
+ "privacy": "protected",
112118
+ "return": {
112119
+ "type": {
112120
+ "text": "TemplateResult"
112121
+ }
112155
112122
  },
112156
- "privacy": "public",
112157
- "default": "''",
112158
- "description": "The relationship of the linked URL as space-separated link types.",
112159
- "attribute": "rel",
112160
- "reflects": true,
112123
+ "description": "Returns a hidden slot, which is intended as the children change detection.\nWhen an element without a slot attribute is slotted to the element, it triggers\nthe slotchange event, which can be used to assign it to the appropriate named slot.",
112161
112124
  "inheritedFrom": {
112162
- "name": "SbbLinkBaseElement",
112163
- "module": "core/base-elements/link-base-element.js"
112125
+ "name": "SbbNamedSlotListMixin",
112126
+ "module": "core/mixins/named-slot-list-mixin.js"
112164
112127
  }
112165
112128
  },
112166
112129
  {
112167
112130
  "kind": "field",
112168
- "name": "download",
112131
+ "name": "_hydrationRequired",
112169
112132
  "type": {
112170
112133
  "text": "boolean"
112171
112134
  },
112172
- "privacy": "public",
112173
- "default": "false",
112174
- "description": "Whether the browser will show the download dialog on click.",
112175
- "attribute": "download",
112176
- "reflects": true,
112135
+ "privacy": "private",
112136
+ "default": "!!this.shadowRoot",
112177
112137
  "inheritedFrom": {
112178
- "name": "SbbLinkBaseElement",
112179
- "module": "core/base-elements/link-base-element.js"
112138
+ "name": "SbbElement",
112139
+ "module": "core/base-elements/element.js"
112180
112140
  }
112181
112141
  },
112182
112142
  {
112183
112143
  "kind": "field",
112184
- "name": "accessibilityLabel",
112185
- "type": {
112186
- "text": "string"
112187
- },
112188
- "privacy": "public",
112189
- "default": "''",
112190
- "description": "This will be forwarded as aria-label to the inner anchor element.",
112191
- "attribute": "accessibility-label",
112144
+ "name": "_hydrationComplete",
112145
+ "privacy": "private",
112146
+ "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
112192
112147
  "inheritedFrom": {
112193
- "name": "SbbLinkBaseElement",
112194
- "module": "core/base-elements/link-base-element.js"
112148
+ "name": "SbbElement",
112149
+ "module": "core/base-elements/element.js"
112195
112150
  }
112196
112151
  },
112197
112152
  {
112198
112153
  "kind": "field",
112199
- "name": "accessibilityCurrent",
112154
+ "name": "_resolveHydration",
112200
112155
  "type": {
112201
- "text": "string"
112156
+ "text": "(hydrationRequired: boolean) => void"
112202
112157
  },
112203
- "privacy": "public",
112204
- "default": "''",
112205
- "description": "This will be forwarded as aria-current to the inner anchor element.",
112206
- "attribute": "accessibility-current",
112207
- "inheritedFrom": {
112208
- "name": "SbbLinkBaseElement",
112209
- "module": "core/base-elements/link-base-element.js"
112210
- }
112211
- },
112212
- {
112213
- "kind": "field",
112214
- "name": "language",
112215
- "privacy": "protected",
112216
- "default": "new SbbLanguageController(this)",
112158
+ "privacy": "private",
112217
112159
  "inheritedFrom": {
112218
- "name": "SbbLinkBaseElement",
112219
- "module": "core/base-elements/link-base-element.js"
112160
+ "name": "SbbElement",
112161
+ "module": "core/base-elements/element.js"
112220
112162
  }
112221
112163
  },
112222
112164
  {
112223
112165
  "kind": "field",
112224
- "name": "anchorRole",
112166
+ "name": "hydrationRequired",
112225
112167
  "type": {
112226
- "text": "string | null"
112168
+ "text": "boolean"
112227
112169
  },
112228
112170
  "privacy": "protected",
112171
+ "description": "Returns whether hydration is required and not completed.",
112229
112172
  "readonly": true,
112230
- "default": "null",
112231
- "inheritedFrom": {
112232
- "name": "SbbLinkBaseElement",
112233
- "module": "core/base-elements/link-base-element.js"
112234
- }
112235
- },
112236
- {
112237
- "kind": "field",
112238
- "name": "_evaluateRelAttribute",
112239
- "privacy": "private",
112240
112173
  "inheritedFrom": {
112241
- "name": "SbbLinkBaseElement",
112242
- "module": "core/base-elements/link-base-element.js"
112243
- }
112174
+ "name": "SbbElement",
112175
+ "module": "core/base-elements/element.js"
112176
+ },
112177
+ "default": "!!this.shadowRoot"
112244
112178
  },
112245
112179
  {
112246
112180
  "kind": "method",
112247
- "name": "renderLink",
112181
+ "name": "toggleState",
112248
112182
  "privacy": "protected",
112249
112183
  "return": {
112250
112184
  "type": {
112251
- "text": "TemplateResult"
112185
+ "text": "void"
112252
112186
  }
112253
112187
  },
112254
112188
  "parameters": [
112255
112189
  {
112256
- "name": "renderContent",
112190
+ "name": "value",
112257
112191
  "type": {
112258
- "text": "TemplateResult"
112192
+ "text": "string"
112193
+ }
112194
+ },
112195
+ {
112196
+ "name": "force",
112197
+ "optional": true,
112198
+ "type": {
112199
+ "text": "boolean"
112259
112200
  }
112260
112201
  }
112261
112202
  ],
112262
112203
  "inheritedFrom": {
112263
- "name": "SbbLinkBaseElement",
112264
- "module": "core/base-elements/link-base-element.js"
112204
+ "name": "SbbElement",
112205
+ "module": "core/base-elements/element.js"
112265
112206
  }
112266
112207
  },
112267
112208
  {
112268
112209
  "kind": "field",
112269
- "name": "maybeDisabled",
112210
+ "name": "['_$sbbElement$']",
112270
112211
  "type": {
112271
- "text": "boolean | undefined"
112212
+ "text": "boolean"
112272
112213
  },
112273
- "privacy": "protected",
112274
- "readonly": true,
112214
+ "privacy": "public",
112215
+ "static": true,
112216
+ "default": "true",
112275
112217
  "inheritedFrom": {
112276
- "name": "SbbActionBaseElement",
112277
- "module": "core/base-elements/action-base-element.js"
112218
+ "name": "SbbElement",
112219
+ "module": "core/base-elements/element.js"
112278
112220
  }
112279
112221
  },
112280
112222
  {
112281
112223
  "kind": "field",
112282
- "name": "maybeDisabledInteractive",
112224
+ "name": "_controllers",
112283
112225
  "type": {
112284
- "text": "boolean | undefined"
112226
+ "text": "Set<SbbReactiveController> | undefined"
112285
112227
  },
112286
- "privacy": "protected",
112287
- "readonly": true,
112228
+ "privacy": "private",
112288
112229
  "inheritedFrom": {
112289
- "name": "SbbActionBaseElement",
112290
- "module": "core/base-elements/action-base-element.js"
112230
+ "name": "SbbElement",
112231
+ "module": "core/base-elements/element.js"
112291
112232
  }
112292
- },
112233
+ }
112234
+ ],
112235
+ "attributes": [
112293
112236
  {
112294
- "kind": "method",
112295
- "name": "setupBaseEventHandlers",
112296
- "privacy": "protected",
112297
- "return": {
112298
- "type": {
112299
- "text": "void"
112300
- }
112237
+ "name": "label",
112238
+ "type": {
112239
+ "text": "string"
112301
112240
  },
112302
- "inheritedFrom": {
112303
- "name": "SbbActionBaseElement",
112304
- "module": "core/base-elements/action-base-element.js"
112305
- }
112306
- },
112241
+ "default": "''",
112242
+ "description": "The label to be shown before the action list.",
112243
+ "fieldName": "label"
112244
+ }
112245
+ ],
112246
+ "mixins": [
112247
+ {
112248
+ "name": "SbbNamedSlotListMixin",
112249
+ "module": "core/mixins.js"
112250
+ }
112251
+ ],
112252
+ "superclass": {
112253
+ "name": "SbbElement",
112254
+ "module": "core/base-elements.js"
112255
+ },
112256
+ "tagName": "sbb-navigation-list",
112257
+ "customElement": true
112258
+ }
112259
+ ],
112260
+ "exports": [
112261
+ {
112262
+ "kind": "js",
112263
+ "name": "SbbNavigationListElement",
112264
+ "declaration": {
112265
+ "name": "SbbNavigationListElement",
112266
+ "module": "navigation/navigation-list/navigation-list.component.js"
112267
+ }
112268
+ }
112269
+ ]
112270
+ },
112271
+ {
112272
+ "kind": "javascript-module",
112273
+ "path": "navigation/navigation-link/navigation-link.component.js",
112274
+ "declarations": [
112275
+ {
112276
+ "kind": "class",
112277
+ "description": "It displays a link element that can be used in the `sbb-navigation` component.",
112278
+ "name": "SbbNavigationLinkElement",
112279
+ "slots": [
112280
+ {
112281
+ "description": "Use the unnamed slot to add content to the `sbb-navigation-link`.",
112282
+ "name": ""
112283
+ }
112284
+ ],
112285
+ "members": [
112307
112286
  {
112308
112287
  "kind": "field",
112309
- "name": "_hydrationRequired",
112288
+ "name": "elementName",
112310
112289
  "type": {
112311
- "text": "boolean"
112290
+ "text": "string"
112312
112291
  },
112313
- "privacy": "private",
112314
- "default": "!!this.shadowRoot",
112292
+ "privacy": "public",
112293
+ "static": true,
112294
+ "readonly": true,
112315
112295
  "inheritedFrom": {
112316
112296
  "name": "SbbElement",
112317
112297
  "module": "core/base-elements/element.js"
112318
- }
112298
+ },
112299
+ "default": "'sbb-navigation-link'"
112319
112300
  },
112320
112301
  {
112321
112302
  "kind": "field",
112322
- "name": "_hydrationComplete",
112323
- "privacy": "private",
112324
- "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
112303
+ "name": "styles",
112304
+ "type": {
112305
+ "text": "CSSResultGroup"
112306
+ },
112307
+ "privacy": "public",
112308
+ "static": true,
112309
+ "default": "[boxSizingStyles, unsafeCSS(style)]",
112325
112310
  "inheritedFrom": {
112326
- "name": "SbbElement",
112327
- "module": "core/base-elements/element.js"
112311
+ "name": "SbbNavigationActionCommonElementMixin",
112312
+ "module": "navigation/common/navigation-action-common.js"
112328
112313
  }
112329
112314
  },
112330
112315
  {
112331
112316
  "kind": "field",
112332
- "name": "_resolveHydration",
112317
+ "name": "size",
112333
112318
  "type": {
112334
- "text": "(hydrationRequired: boolean) => void"
112319
+ "text": "SbbNavigationActionSize"
112335
112320
  },
112336
- "privacy": "private",
112321
+ "privacy": "public",
112322
+ "description": "Action size variant, either s, m or l.",
112323
+ "default": "'l' / 's' (lean)",
112324
+ "attribute": "size",
112325
+ "reflects": true,
112337
112326
  "inheritedFrom": {
112338
- "name": "SbbElement",
112339
- "module": "core/base-elements/element.js"
112327
+ "name": "SbbNavigationActionCommonElementMixin",
112328
+ "module": "navigation/common/navigation-action-common.js"
112340
112329
  }
112341
112330
  },
112342
112331
  {
112343
112332
  "kind": "field",
112344
- "name": "hydrationRequired",
112333
+ "name": "connectedSection",
112345
112334
  "type": {
112346
- "text": "boolean"
112335
+ "text": "SbbNavigationSectionElement | undefined"
112347
112336
  },
112348
- "privacy": "protected",
112349
- "description": "Returns whether hydration is required and not completed.",
112350
- "readonly": true,
112337
+ "privacy": "public",
112338
+ "description": "The section that is being controlled by the action, if any.",
112351
112339
  "inheritedFrom": {
112352
- "name": "SbbElement",
112353
- "module": "core/base-elements/element.js"
112354
- },
112355
- "default": "!!this.shadowRoot"
112340
+ "name": "SbbNavigationActionCommonElementMixin",
112341
+ "module": "navigation/common/navigation-action-common.js"
112342
+ }
112356
112343
  },
112357
112344
  {
112358
- "kind": "method",
112359
- "name": "toggleState",
112360
- "privacy": "protected",
112361
- "return": {
112362
- "type": {
112363
- "text": "void"
112364
- }
112345
+ "kind": "field",
112346
+ "name": "marker",
112347
+ "type": {
112348
+ "text": "SbbNavigationMarkerElement | null"
112365
112349
  },
112366
- "parameters": [
112367
- {
112368
- "name": "value",
112369
- "type": {
112370
- "text": "string"
112371
- }
112372
- },
112373
- {
112374
- "name": "force",
112375
- "optional": true,
112376
- "type": {
112377
- "text": "boolean"
112378
- }
112379
- }
112380
- ],
112350
+ "privacy": "public",
112351
+ "description": "The navigation marker in which the action is nested.",
112352
+ "readonly": true,
112381
112353
  "inheritedFrom": {
112382
- "name": "SbbElement",
112383
- "module": "core/base-elements/element.js"
112354
+ "name": "SbbNavigationActionCommonElementMixin",
112355
+ "module": "navigation/common/navigation-action-common.js"
112384
112356
  }
112385
112357
  },
112386
112358
  {
112387
112359
  "kind": "field",
112388
- "name": "['_$sbbElement$']",
112360
+ "name": "section",
112389
112361
  "type": {
112390
- "text": "boolean"
112362
+ "text": "SbbNavigationSectionElement | null"
112391
112363
  },
112392
112364
  "privacy": "public",
112393
- "static": true,
112394
- "default": "true",
112365
+ "description": "The section in which the action is nested.",
112366
+ "readonly": true,
112395
112367
  "inheritedFrom": {
112396
- "name": "SbbElement",
112397
- "module": "core/base-elements/element.js"
112368
+ "name": "SbbNavigationActionCommonElementMixin",
112369
+ "module": "navigation/common/navigation-action-common.js"
112398
112370
  }
112399
112371
  },
112400
112372
  {
112401
112373
  "kind": "field",
112402
- "name": "_controllers",
112374
+ "name": "_navigationMarker",
112403
112375
  "type": {
112404
- "text": "Set<SbbReactiveController> | undefined"
112376
+ "text": "SbbNavigationMarkerElement | null"
112405
112377
  },
112406
112378
  "privacy": "private",
112379
+ "default": "null",
112407
112380
  "inheritedFrom": {
112408
- "name": "SbbElement",
112409
- "module": "core/base-elements/element.js"
112381
+ "name": "SbbNavigationActionCommonElementMixin",
112382
+ "module": "navigation/common/navigation-action-common.js"
112410
112383
  }
112411
- }
112412
- ],
112413
- "mixins": [
112414
- {
112415
- "name": "SbbNavigationActionCommonElementMixin",
112416
- "module": "navigation/common/navigation-action-common.js"
112417
- }
112418
- ],
112419
- "superclass": {
112420
- "name": "SbbLinkBaseElement",
112421
- "module": "core/base-elements.js"
112422
- },
112423
- "tagName": "sbb-navigation-link",
112424
- "customElement": true,
112425
- "attributes": [
112384
+ },
112426
112385
  {
112427
- "name": "size",
112386
+ "kind": "field",
112387
+ "name": "_navigationSection",
112428
112388
  "type": {
112429
- "text": "SbbNavigationActionSize"
112389
+ "text": "SbbNavigationSectionElement | null"
112430
112390
  },
112431
- "description": "Action size variant, either s, m or l.",
112432
- "default": "'l' / 's' (lean)",
112433
- "fieldName": "size",
112391
+ "privacy": "private",
112392
+ "default": "null",
112434
112393
  "inheritedFrom": {
112435
112394
  "name": "SbbNavigationActionCommonElementMixin",
112436
112395
  "module": "navigation/common/navigation-action-common.js"
112437
112396
  }
112438
112397
  },
112439
112398
  {
112399
+ "kind": "method",
112400
+ "name": "renderTemplate",
112401
+ "privacy": "protected",
112402
+ "return": {
112403
+ "type": {
112404
+ "text": "TemplateResult"
112405
+ }
112406
+ },
112407
+ "description": "Override this method to render the component template.",
112408
+ "inheritedFrom": {
112409
+ "name": "SbbActionBaseElement",
112410
+ "module": "core/base-elements/action-base-element.js"
112411
+ }
112412
+ },
112413
+ {
112414
+ "kind": "field",
112440
112415
  "name": "href",
112441
112416
  "type": {
112442
112417
  "text": "string"
112443
112418
  },
112419
+ "privacy": "public",
112444
112420
  "default": "''",
112445
112421
  "description": "The href value you want to link to.",
112446
- "fieldName": "href",
112422
+ "attribute": "href",
112423
+ "reflects": true,
112447
112424
  "inheritedFrom": {
112448
112425
  "name": "SbbLinkBaseElement",
112449
112426
  "module": "core/base-elements/link-base-element.js"
112450
112427
  }
112451
112428
  },
112452
112429
  {
112430
+ "kind": "field",
112453
112431
  "name": "target",
112454
112432
  "type": {
112455
112433
  "text": "LinkTargetType | string"
112456
112434
  },
112435
+ "privacy": "public",
112457
112436
  "default": "''",
112458
112437
  "description": "Where to display the linked URL.",
112459
- "fieldName": "target",
112438
+ "attribute": "target",
112439
+ "reflects": true,
112460
112440
  "inheritedFrom": {
112461
112441
  "name": "SbbLinkBaseElement",
112462
112442
  "module": "core/base-elements/link-base-element.js"
112463
112443
  }
112464
112444
  },
112465
112445
  {
112446
+ "kind": "field",
112466
112447
  "name": "rel",
112467
112448
  "type": {
112468
112449
  "text": "string"
112469
112450
  },
112451
+ "privacy": "public",
112470
112452
  "default": "''",
112471
112453
  "description": "The relationship of the linked URL as space-separated link types.",
112472
- "fieldName": "rel",
112454
+ "attribute": "rel",
112455
+ "reflects": true,
112473
112456
  "inheritedFrom": {
112474
112457
  "name": "SbbLinkBaseElement",
112475
112458
  "module": "core/base-elements/link-base-element.js"
112476
112459
  }
112477
112460
  },
112478
112461
  {
112462
+ "kind": "field",
112479
112463
  "name": "download",
112480
112464
  "type": {
112481
112465
  "text": "boolean"
112482
112466
  },
112467
+ "privacy": "public",
112483
112468
  "default": "false",
112484
112469
  "description": "Whether the browser will show the download dialog on click.",
112485
- "fieldName": "download",
112470
+ "attribute": "download",
112471
+ "reflects": true,
112486
112472
  "inheritedFrom": {
112487
112473
  "name": "SbbLinkBaseElement",
112488
112474
  "module": "core/base-elements/link-base-element.js"
112489
112475
  }
112490
112476
  },
112491
112477
  {
112492
- "name": "accessibility-label",
112478
+ "kind": "field",
112479
+ "name": "accessibilityLabel",
112493
112480
  "type": {
112494
112481
  "text": "string"
112495
112482
  },
112483
+ "privacy": "public",
112496
112484
  "default": "''",
112497
112485
  "description": "This will be forwarded as aria-label to the inner anchor element.",
112498
- "fieldName": "accessibilityLabel",
112486
+ "attribute": "accessibility-label",
112499
112487
  "inheritedFrom": {
112500
112488
  "name": "SbbLinkBaseElement",
112501
112489
  "module": "core/base-elements/link-base-element.js"
112502
112490
  }
112503
112491
  },
112504
112492
  {
112505
- "name": "accessibility-current",
112493
+ "kind": "field",
112494
+ "name": "accessibilityCurrent",
112506
112495
  "type": {
112507
112496
  "text": "string"
112508
112497
  },
112498
+ "privacy": "public",
112509
112499
  "default": "''",
112510
112500
  "description": "This will be forwarded as aria-current to the inner anchor element.",
112511
- "fieldName": "accessibilityCurrent",
112501
+ "attribute": "accessibility-current",
112512
112502
  "inheritedFrom": {
112513
112503
  "name": "SbbLinkBaseElement",
112514
112504
  "module": "core/base-elements/link-base-element.js"
112515
112505
  }
112516
- }
112517
- ]
112518
- }
112519
- ],
112520
- "exports": [
112521
- {
112522
- "kind": "js",
112523
- "name": "SbbNavigationLinkElement",
112524
- "declaration": {
112525
- "name": "SbbNavigationLinkElement",
112526
- "module": "navigation/navigation-link/navigation-link.component.js"
112527
- }
112528
- }
112529
- ]
112530
- },
112531
- {
112532
- "kind": "javascript-module",
112533
- "path": "navigation/navigation-list/navigation-list.component.js",
112534
- "declarations": [
112535
- {
112536
- "kind": "class",
112537
- "description": "It can be used as a container for one or more `sbb-navigation-button`/`sbb-navigation-link` within a `sbb-navigation-section`.",
112538
- "name": "SbbNavigationListElement",
112539
- "slots": [
112540
- {
112541
- "description": "Use the unnamed slot to add content to the `sbb-navigation-list`.",
112542
- "name": ""
112543
- },
112544
- {
112545
- "description": "Use this to provide a label element.",
112546
- "name": "label"
112547
- }
112548
- ],
112549
- "members": [
112550
- {
112551
- "kind": "field",
112552
- "name": "elementName",
112553
- "type": {
112554
- "text": "string"
112555
- },
112556
- "privacy": "public",
112557
- "static": true,
112558
- "readonly": true,
112559
- "default": "'sbb-navigation-list'",
112560
- "inheritedFrom": {
112561
- "name": "SbbElement",
112562
- "module": "core/base-elements/element.js"
112563
- }
112564
112506
  },
112565
112507
  {
112566
112508
  "kind": "field",
112567
- "name": "listChildLocalNames",
112568
- "type": {
112569
- "text": "array"
112570
- },
112509
+ "name": "language",
112571
112510
  "privacy": "protected",
112572
- "readonly": true,
112573
- "description": "A list of lower-cased tag names to match against. (e.g. `sbb-link`)",
112574
- "default": "[ 'sbb-navigation-button', 'sbb-navigation-link', ]",
112511
+ "default": "new SbbLanguageController(this)",
112575
112512
  "inheritedFrom": {
112576
- "name": "SbbNamedSlotListMixin",
112577
- "module": "core/mixins/named-slot-list-mixin.js"
112513
+ "name": "SbbLinkBaseElement",
112514
+ "module": "core/base-elements/link-base-element.js"
112578
112515
  }
112579
112516
  },
112580
112517
  {
112581
112518
  "kind": "field",
112582
- "name": "label",
112583
- "type": {
112584
- "text": "string"
112585
- },
112586
- "privacy": "public",
112587
- "default": "''",
112588
- "description": "The label to be shown before the action list.",
112589
- "attribute": "label",
112590
- "reflects": true
112591
- },
112592
- {
112593
- "kind": "field",
112594
- "name": "listChildren",
112519
+ "name": "anchorRole",
112595
112520
  "type": {
112596
- "text": "C[]"
112521
+ "text": "string | null"
112597
112522
  },
112598
112523
  "privacy": "protected",
112599
- "default": "[]",
112600
- "description": "A list of children with the defined tag names.\nThis array is only updated if there is an actual change\nto the child elements.",
112524
+ "readonly": true,
112525
+ "default": "null",
112601
112526
  "inheritedFrom": {
112602
- "name": "SbbNamedSlotListMixin",
112603
- "module": "core/mixins/named-slot-list-mixin.js"
112527
+ "name": "SbbLinkBaseElement",
112528
+ "module": "core/base-elements/link-base-element.js"
112604
112529
  }
112605
112530
  },
112606
112531
  {
112607
112532
  "kind": "field",
112608
- "name": "_handleSlotchange",
112533
+ "name": "_evaluateRelAttribute",
112609
112534
  "privacy": "private",
112610
112535
  "inheritedFrom": {
112611
- "name": "SbbNamedSlotListMixin",
112612
- "module": "core/mixins/named-slot-list-mixin.js"
112536
+ "name": "SbbLinkBaseElement",
112537
+ "module": "core/base-elements/link-base-element.js"
112613
112538
  }
112614
112539
  },
112615
112540
  {
112616
112541
  "kind": "method",
112617
- "name": "renderList",
112542
+ "name": "renderLink",
112618
112543
  "privacy": "protected",
112619
112544
  "return": {
112620
112545
  "type": {
@@ -112623,62 +112548,55 @@
112623
112548
  },
112624
112549
  "parameters": [
112625
112550
  {
112626
- "name": "attributes",
112627
- "default": "{}",
112628
- "type": {
112629
- "text": "{ class?: string; ariaLabel?: string; ariaLabelledby?: string }"
112630
- }
112631
- },
112632
- {
112633
- "name": "listItemAttributes",
112634
- "default": "{}",
112551
+ "name": "renderContent",
112635
112552
  "type": {
112636
- "text": "{ localNameVisualOnly?: string[] }"
112553
+ "text": "TemplateResult"
112637
112554
  }
112638
112555
  }
112639
112556
  ],
112640
- "description": "Renders list and list slots for slotted children or a number of list slots\ncorresponding to the `data-ssr-child-count` attribute value.\n\nThis is a possible optimization for SSR, as in an SSR Lit environment\nother elements are not available, but might be available in the meta\nframework wrapper (like e.g. React). This allows to provide the number of\nchildren to be passed via the `data-ssr-child-count` attribute value.",
112641
112557
  "inheritedFrom": {
112642
- "name": "SbbNamedSlotListMixin",
112643
- "module": "core/mixins/named-slot-list-mixin.js"
112558
+ "name": "SbbLinkBaseElement",
112559
+ "module": "core/base-elements/link-base-element.js"
112644
112560
  }
112645
112561
  },
112646
112562
  {
112647
- "kind": "method",
112648
- "name": "listSlotEntries",
112563
+ "kind": "field",
112564
+ "name": "maybeDisabled",
112565
+ "type": {
112566
+ "text": "boolean | undefined"
112567
+ },
112649
112568
  "privacy": "protected",
112650
- "return": {
112651
- "type": {
112652
- "text": "SbbNamedSlotProperties[]"
112653
- }
112569
+ "readonly": true,
112570
+ "inheritedFrom": {
112571
+ "name": "SbbActionBaseElement",
112572
+ "module": "core/base-elements/action-base-element.js"
112573
+ }
112574
+ },
112575
+ {
112576
+ "kind": "field",
112577
+ "name": "maybeDisabledInteractive",
112578
+ "type": {
112579
+ "text": "boolean | undefined"
112654
112580
  },
112655
- "parameters": [
112656
- {
112657
- "name": "listItemAttributes",
112658
- "type": {
112659
- "text": "{\n localNameVisualOnly?: string[];\n }"
112660
- }
112661
- }
112662
- ],
112663
- "description": "Returns an array of SbbNamedSlotProperties, which holds the list slot names and the hidden property;\nits length corresponds to the number of matched children or the `data-ssr-child-count` attribute value.\n\nThis is a possible optimization for SSR, as in an SSR Lit environment\nother elements are not available, but might be available in the meta\nframework wrapper (like e.g. React). This allows to provide the number of\nchildren to be passed via the `data-ssr-child-count` attribute value.",
112581
+ "privacy": "protected",
112582
+ "readonly": true,
112664
112583
  "inheritedFrom": {
112665
- "name": "SbbNamedSlotListMixin",
112666
- "module": "core/mixins/named-slot-list-mixin.js"
112584
+ "name": "SbbActionBaseElement",
112585
+ "module": "core/base-elements/action-base-element.js"
112667
112586
  }
112668
112587
  },
112669
112588
  {
112670
112589
  "kind": "method",
112671
- "name": "renderHiddenSlot",
112590
+ "name": "setupBaseEventHandlers",
112672
112591
  "privacy": "protected",
112673
112592
  "return": {
112674
112593
  "type": {
112675
- "text": "TemplateResult"
112594
+ "text": "void"
112676
112595
  }
112677
112596
  },
112678
- "description": "Returns a hidden slot, which is intended as the children change detection.\nWhen an element without a slot attribute is slotted to the element, it triggers\nthe slotchange event, which can be used to assign it to the appropriate named slot.",
112679
112597
  "inheritedFrom": {
112680
- "name": "SbbNamedSlotListMixin",
112681
- "module": "core/mixins/named-slot-list-mixin.js"
112598
+ "name": "SbbActionBaseElement",
112599
+ "module": "core/base-elements/action-base-element.js"
112682
112600
  }
112683
112601
  },
112684
112602
  {
@@ -112787,38 +112705,120 @@
112787
112705
  }
112788
112706
  }
112789
112707
  ],
112708
+ "mixins": [
112709
+ {
112710
+ "name": "SbbNavigationActionCommonElementMixin",
112711
+ "module": "navigation/common/navigation-action-common.js"
112712
+ }
112713
+ ],
112714
+ "superclass": {
112715
+ "name": "SbbLinkBaseElement",
112716
+ "module": "core/base-elements.js"
112717
+ },
112718
+ "tagName": "sbb-navigation-link",
112719
+ "customElement": true,
112790
112720
  "attributes": [
112791
112721
  {
112792
- "name": "label",
112722
+ "name": "size",
112723
+ "type": {
112724
+ "text": "SbbNavigationActionSize"
112725
+ },
112726
+ "description": "Action size variant, either s, m or l.",
112727
+ "default": "'l' / 's' (lean)",
112728
+ "fieldName": "size",
112729
+ "inheritedFrom": {
112730
+ "name": "SbbNavigationActionCommonElementMixin",
112731
+ "module": "navigation/common/navigation-action-common.js"
112732
+ }
112733
+ },
112734
+ {
112735
+ "name": "href",
112793
112736
  "type": {
112794
112737
  "text": "string"
112795
112738
  },
112796
112739
  "default": "''",
112797
- "description": "The label to be shown before the action list.",
112798
- "fieldName": "label"
112799
- }
112800
- ],
112801
- "mixins": [
112740
+ "description": "The href value you want to link to.",
112741
+ "fieldName": "href",
112742
+ "inheritedFrom": {
112743
+ "name": "SbbLinkBaseElement",
112744
+ "module": "core/base-elements/link-base-element.js"
112745
+ }
112746
+ },
112802
112747
  {
112803
- "name": "SbbNamedSlotListMixin",
112804
- "module": "core/mixins.js"
112748
+ "name": "target",
112749
+ "type": {
112750
+ "text": "LinkTargetType | string"
112751
+ },
112752
+ "default": "''",
112753
+ "description": "Where to display the linked URL.",
112754
+ "fieldName": "target",
112755
+ "inheritedFrom": {
112756
+ "name": "SbbLinkBaseElement",
112757
+ "module": "core/base-elements/link-base-element.js"
112758
+ }
112759
+ },
112760
+ {
112761
+ "name": "rel",
112762
+ "type": {
112763
+ "text": "string"
112764
+ },
112765
+ "default": "''",
112766
+ "description": "The relationship of the linked URL as space-separated link types.",
112767
+ "fieldName": "rel",
112768
+ "inheritedFrom": {
112769
+ "name": "SbbLinkBaseElement",
112770
+ "module": "core/base-elements/link-base-element.js"
112771
+ }
112772
+ },
112773
+ {
112774
+ "name": "download",
112775
+ "type": {
112776
+ "text": "boolean"
112777
+ },
112778
+ "default": "false",
112779
+ "description": "Whether the browser will show the download dialog on click.",
112780
+ "fieldName": "download",
112781
+ "inheritedFrom": {
112782
+ "name": "SbbLinkBaseElement",
112783
+ "module": "core/base-elements/link-base-element.js"
112784
+ }
112785
+ },
112786
+ {
112787
+ "name": "accessibility-label",
112788
+ "type": {
112789
+ "text": "string"
112790
+ },
112791
+ "default": "''",
112792
+ "description": "This will be forwarded as aria-label to the inner anchor element.",
112793
+ "fieldName": "accessibilityLabel",
112794
+ "inheritedFrom": {
112795
+ "name": "SbbLinkBaseElement",
112796
+ "module": "core/base-elements/link-base-element.js"
112797
+ }
112798
+ },
112799
+ {
112800
+ "name": "accessibility-current",
112801
+ "type": {
112802
+ "text": "string"
112803
+ },
112804
+ "default": "''",
112805
+ "description": "This will be forwarded as aria-current to the inner anchor element.",
112806
+ "fieldName": "accessibilityCurrent",
112807
+ "inheritedFrom": {
112808
+ "name": "SbbLinkBaseElement",
112809
+ "module": "core/base-elements/link-base-element.js"
112810
+ }
112805
112811
  }
112806
- ],
112807
- "superclass": {
112808
- "name": "SbbElement",
112809
- "module": "core/base-elements.js"
112810
- },
112811
- "tagName": "sbb-navigation-list",
112812
- "customElement": true
112812
+ ]
112813
112813
  }
112814
112814
  ],
112815
112815
  "exports": [
112816
112816
  {
112817
112817
  "kind": "js",
112818
- "name": "SbbNavigationListElement",
112818
+ "name": "SbbNavigationLinkElement",
112819
112819
  "declaration": {
112820
- "name": "SbbNavigationListElement",
112821
- "module": "navigation/navigation-list/navigation-list.component.js"
112820
+ "name": "SbbNavigationLinkElement",
112821
+ "module": "navigation/navigation-link/navigation-link.component.js"
112822
112822
  }
112823
112823
  }
112824
112824
  ]
@@ -123974,364 +123974,109 @@
123974
123974
  }
123975
123975
  }
123976
123976
  ],
123977
- "mixins": [
123978
- {
123979
- "name": "SbbIconNameMixin",
123980
- "module": "icon.js"
123981
- },
123982
- {
123983
- "name": "SbbDisabledMixin",
123984
- "module": "core/mixins.js"
123985
- }
123986
- ],
123987
- "superclass": {
123988
- "name": "SbbButtonBaseElement",
123989
- "module": "core/base-elements.js"
123990
- },
123991
- "tagName": "sbb-step-label",
123992
- "customElement": true,
123993
- "attributes": [
123994
- {
123995
- "name": "icon-name",
123996
- "type": {
123997
- "text": "string"
123998
- },
123999
- "default": "''",
124000
- "description": "The icon name we want to use, choose from the small icon variants\nfrom the ui-icons category from here\nhttps://icons.app.sbb.ch.",
124001
- "fieldName": "iconName",
124002
- "inheritedFrom": {
124003
- "name": "SbbIconNameMixin",
124004
- "module": "icon/icon-name-mixin.js"
124005
- }
124006
- },
124007
- {
124008
- "name": "disabled",
124009
- "description": "Whether the component is disabled.",
124010
- "default": "false",
124011
- "type": {
124012
- "text": "boolean"
124013
- },
124014
- "fieldName": "disabled",
124015
- "inheritedFrom": {
124016
- "name": "SbbDisabledMixin",
124017
- "module": "core/mixins/disabled-mixin.js"
124018
- }
124019
- },
124020
- {
124021
- "name": "value",
124022
- "type": {
124023
- "text": "string"
124024
- },
124025
- "default": "''",
124026
- "description": "Value of the form element.",
124027
- "fieldName": "value",
124028
- "inheritedFrom": {
124029
- "name": "SbbButtonBaseElement",
124030
- "module": "core/base-elements/button-base-element.js"
124031
- }
124032
- },
124033
- {
124034
- "name": "type",
124035
- "description": "The type attribute to use for the button.",
124036
- "default": "'button'",
124037
- "type": {
124038
- "text": "SbbButtonType"
124039
- },
124040
- "fieldName": "type",
124041
- "inheritedFrom": {
124042
- "name": "SbbButtonBaseElement",
124043
- "module": "core/base-elements/button-base-element.js"
124044
- }
124045
- },
124046
- {
124047
- "name": "form",
124048
- "description": "The `<form>` element to associate the button with.",
124049
- "type": {
124050
- "text": "HTMLFormElement | null"
124051
- },
124052
- "fieldName": "form",
124053
- "inheritedFrom": {
124054
- "name": "SbbButtonBaseElement",
124055
- "module": "core/base-elements/button-base-element.js"
124056
- }
124057
- },
124058
- {
124059
- "name": "name",
124060
- "description": "Name of the form element. Will be read from name attribute.",
124061
- "type": {
124062
- "text": "string"
124063
- },
124064
- "fieldName": "name",
124065
- "inheritedFrom": {
124066
- "name": "SbbFormAssociatedMixin",
124067
- "module": "core/mixins/form-associated-mixin.js"
124068
- }
124069
- }
124070
- ]
124071
- }
124072
- ],
124073
- "exports": [
124074
- {
124075
- "kind": "js",
124076
- "name": "SbbStepLabelElement",
124077
- "declaration": {
124078
- "name": "SbbStepLabelElement",
124079
- "module": "stepper/step-label/step-label.component.js"
124080
- }
124081
- }
124082
- ]
124083
- },
124084
- {
124085
- "kind": "javascript-module",
124086
- "path": "table/table-wrapper/table-wrapper.component.js",
124087
- "declarations": [
124088
- {
124089
- "kind": "class",
124090
- "description": "Wraps a table to enhance its functionality.",
124091
- "name": "SbbTableWrapperElement",
124092
- "slots": [
124093
- {
124094
- "description": "Use the unnamed slot to add the table.",
124095
- "name": ""
124096
- }
124097
- ],
124098
- "members": [
124099
- {
124100
- "kind": "field",
124101
- "name": "elementName",
124102
- "type": {
124103
- "text": "string"
124104
- },
124105
- "privacy": "public",
124106
- "static": true,
124107
- "readonly": true,
124108
- "default": "'sbb-table-wrapper'",
124109
- "inheritedFrom": {
124110
- "name": "SbbElement",
124111
- "module": "core/base-elements/element.js"
124112
- }
124113
- },
124114
- {
124115
- "kind": "field",
124116
- "name": "role",
124117
- "type": {
124118
- "text": "string"
124119
- },
124120
- "privacy": "public",
124121
- "static": true,
124122
- "readonly": true,
124123
- "default": "'section'"
124124
- },
124125
- {
124126
- "kind": "field",
124127
- "name": "focusable",
124128
- "type": {
124129
- "text": "boolean"
124130
- },
124131
- "privacy": "public",
124132
- "default": "false",
124133
- "description": "Whether the table wrapper is focusable.",
124134
- "attribute": "focusable",
124135
- "reflects": true
124136
- },
124137
- {
124138
- "kind": "method",
124139
- "name": "_updateScrollbarClass",
124140
- "privacy": "private",
124141
- "return": {
124142
- "type": {
124143
- "text": "void"
124144
- }
124145
- }
124146
- },
124147
- {
124148
- "kind": "method",
124149
- "name": "_checkHorizontalScrollbarOffset",
124150
- "privacy": "private",
124151
- "return": {
124152
- "type": {
124153
- "text": "void"
124154
- }
124155
- },
124156
- "description": "Calculates whether the table is horizontally scrolled and adds the\ncorresponding class `sbb-table-wrapper-offset-${none | left | right | both}`"
124157
- },
124158
- {
124159
- "kind": "method",
124160
- "name": "_calculateScrollOffset",
124161
- "privacy": "private",
124162
- "return": {
124163
- "type": {
124164
- "text": "'none' | 'left' | 'right' | 'both'"
124165
- }
124166
- }
124167
- },
124168
- {
124169
- "kind": "field",
124170
- "name": "negative",
124171
- "type": {
124172
- "text": "boolean"
124173
- },
124174
- "privacy": "public",
124175
- "default": "false",
124176
- "description": "Negative coloring variant flag.",
124177
- "attribute": "negative",
124178
- "reflects": true,
124179
- "inheritedFrom": {
124180
- "name": "SbbNegativeMixin",
124181
- "module": "core/mixins/negative-mixin.js"
124182
- }
124183
- },
124184
- {
124185
- "kind": "field",
124186
- "name": "_hydrationRequired",
124187
- "type": {
124188
- "text": "boolean"
124189
- },
124190
- "privacy": "private",
124191
- "default": "!!this.shadowRoot",
124192
- "inheritedFrom": {
124193
- "name": "SbbElement",
124194
- "module": "core/base-elements/element.js"
124195
- }
124196
- },
124197
- {
124198
- "kind": "field",
124199
- "name": "_hydrationComplete",
124200
- "privacy": "private",
124201
- "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
124202
- "inheritedFrom": {
124203
- "name": "SbbElement",
124204
- "module": "core/base-elements/element.js"
124205
- }
124206
- },
124207
- {
124208
- "kind": "field",
124209
- "name": "_resolveHydration",
124210
- "type": {
124211
- "text": "(hydrationRequired: boolean) => void"
124212
- },
124213
- "privacy": "private",
124214
- "inheritedFrom": {
124215
- "name": "SbbElement",
124216
- "module": "core/base-elements/element.js"
124217
- }
124218
- },
124219
- {
124220
- "kind": "field",
124221
- "name": "hydrationRequired",
124222
- "type": {
124223
- "text": "boolean"
124224
- },
124225
- "privacy": "protected",
124226
- "description": "Returns whether hydration is required and not completed.",
124227
- "readonly": true,
124228
- "inheritedFrom": {
124229
- "name": "SbbElement",
124230
- "module": "core/base-elements/element.js"
124231
- },
124232
- "default": "!!this.shadowRoot"
124233
- },
124234
- {
124235
- "kind": "method",
124236
- "name": "toggleState",
124237
- "privacy": "protected",
124238
- "return": {
124239
- "type": {
124240
- "text": "void"
124241
- }
124242
- },
124243
- "parameters": [
124244
- {
124245
- "name": "value",
124246
- "type": {
124247
- "text": "string"
124248
- }
124249
- },
124250
- {
124251
- "name": "force",
124252
- "optional": true,
124253
- "type": {
124254
- "text": "boolean"
124255
- }
124256
- }
124257
- ],
124258
- "inheritedFrom": {
124259
- "name": "SbbElement",
124260
- "module": "core/base-elements/element.js"
124261
- }
124262
- },
124263
- {
124264
- "kind": "field",
124265
- "name": "['_$sbbElement$']",
124266
- "type": {
124267
- "text": "boolean"
124268
- },
124269
- "privacy": "public",
124270
- "static": true,
124271
- "default": "true",
124272
- "inheritedFrom": {
124273
- "name": "SbbElement",
124274
- "module": "core/base-elements/element.js"
124275
- }
124276
- },
124277
- {
124278
- "kind": "field",
124279
- "name": "_controllers",
124280
- "type": {
124281
- "text": "Set<SbbReactiveController> | undefined"
124282
- },
124283
- "privacy": "private",
124284
- "inheritedFrom": {
124285
- "name": "SbbElement",
124286
- "module": "core/base-elements/element.js"
124287
- }
124288
- }
124289
- ],
123977
+ "mixins": [
123978
+ {
123979
+ "name": "SbbIconNameMixin",
123980
+ "module": "icon.js"
123981
+ },
123982
+ {
123983
+ "name": "SbbDisabledMixin",
123984
+ "module": "core/mixins.js"
123985
+ }
123986
+ ],
123987
+ "superclass": {
123988
+ "name": "SbbButtonBaseElement",
123989
+ "module": "core/base-elements.js"
123990
+ },
123991
+ "tagName": "sbb-step-label",
123992
+ "customElement": true,
124290
123993
  "attributes": [
124291
123994
  {
124292
- "name": "focusable",
123995
+ "name": "icon-name",
124293
123996
  "type": {
124294
- "text": "boolean"
123997
+ "text": "string"
124295
123998
  },
124296
- "default": "false",
124297
- "description": "Whether the table wrapper is focusable.",
124298
- "fieldName": "focusable"
123999
+ "default": "''",
124000
+ "description": "The icon name we want to use, choose from the small icon variants\nfrom the ui-icons category from here\nhttps://icons.app.sbb.ch.",
124001
+ "fieldName": "iconName",
124002
+ "inheritedFrom": {
124003
+ "name": "SbbIconNameMixin",
124004
+ "module": "icon/icon-name-mixin.js"
124005
+ }
124299
124006
  },
124300
124007
  {
124301
- "name": "negative",
124008
+ "name": "disabled",
124009
+ "description": "Whether the component is disabled.",
124010
+ "default": "false",
124302
124011
  "type": {
124303
124012
  "text": "boolean"
124304
124013
  },
124305
- "default": "false",
124306
- "description": "Negative coloring variant flag.",
124307
- "fieldName": "negative",
124014
+ "fieldName": "disabled",
124308
124015
  "inheritedFrom": {
124309
- "name": "SbbNegativeMixin",
124310
- "module": "core/mixins/negative-mixin.js"
124016
+ "name": "SbbDisabledMixin",
124017
+ "module": "core/mixins/disabled-mixin.js"
124311
124018
  }
124312
- }
124313
- ],
124314
- "mixins": [
124019
+ },
124315
124020
  {
124316
- "name": "SbbNegativeMixin",
124317
- "module": "core/mixins.js"
124021
+ "name": "value",
124022
+ "type": {
124023
+ "text": "string"
124024
+ },
124025
+ "default": "''",
124026
+ "description": "Value of the form element.",
124027
+ "fieldName": "value",
124028
+ "inheritedFrom": {
124029
+ "name": "SbbButtonBaseElement",
124030
+ "module": "core/base-elements/button-base-element.js"
124031
+ }
124032
+ },
124033
+ {
124034
+ "name": "type",
124035
+ "description": "The type attribute to use for the button.",
124036
+ "default": "'button'",
124037
+ "type": {
124038
+ "text": "SbbButtonType"
124039
+ },
124040
+ "fieldName": "type",
124041
+ "inheritedFrom": {
124042
+ "name": "SbbButtonBaseElement",
124043
+ "module": "core/base-elements/button-base-element.js"
124044
+ }
124045
+ },
124046
+ {
124047
+ "name": "form",
124048
+ "description": "The `<form>` element to associate the button with.",
124049
+ "type": {
124050
+ "text": "HTMLFormElement | null"
124051
+ },
124052
+ "fieldName": "form",
124053
+ "inheritedFrom": {
124054
+ "name": "SbbButtonBaseElement",
124055
+ "module": "core/base-elements/button-base-element.js"
124056
+ }
124057
+ },
124058
+ {
124059
+ "name": "name",
124060
+ "description": "Name of the form element. Will be read from name attribute.",
124061
+ "type": {
124062
+ "text": "string"
124063
+ },
124064
+ "fieldName": "name",
124065
+ "inheritedFrom": {
124066
+ "name": "SbbFormAssociatedMixin",
124067
+ "module": "core/mixins/form-associated-mixin.js"
124068
+ }
124318
124069
  }
124319
- ],
124320
- "superclass": {
124321
- "name": "SbbElement",
124322
- "module": "core/base-elements.js"
124323
- },
124324
- "tagName": "sbb-table-wrapper",
124325
- "customElement": true
124070
+ ]
124326
124071
  }
124327
124072
  ],
124328
124073
  "exports": [
124329
124074
  {
124330
124075
  "kind": "js",
124331
- "name": "SbbTableWrapperElement",
124076
+ "name": "SbbStepLabelElement",
124332
124077
  "declaration": {
124333
- "name": "SbbTableWrapperElement",
124334
- "module": "table/table-wrapper/table-wrapper.component.js"
124078
+ "name": "SbbStepLabelElement",
124079
+ "module": "stepper/step-label/step-label.component.js"
124335
124080
  }
124336
124081
  }
124337
124082
  ]
@@ -124967,6 +124712,261 @@
124967
124712
  }
124968
124713
  ]
124969
124714
  },
124715
+ {
124716
+ "kind": "javascript-module",
124717
+ "path": "table/table-wrapper/table-wrapper.component.js",
124718
+ "declarations": [
124719
+ {
124720
+ "kind": "class",
124721
+ "description": "Wraps a table to enhance its functionality.",
124722
+ "name": "SbbTableWrapperElement",
124723
+ "slots": [
124724
+ {
124725
+ "description": "Use the unnamed slot to add the table.",
124726
+ "name": ""
124727
+ }
124728
+ ],
124729
+ "members": [
124730
+ {
124731
+ "kind": "field",
124732
+ "name": "elementName",
124733
+ "type": {
124734
+ "text": "string"
124735
+ },
124736
+ "privacy": "public",
124737
+ "static": true,
124738
+ "readonly": true,
124739
+ "default": "'sbb-table-wrapper'",
124740
+ "inheritedFrom": {
124741
+ "name": "SbbElement",
124742
+ "module": "core/base-elements/element.js"
124743
+ }
124744
+ },
124745
+ {
124746
+ "kind": "field",
124747
+ "name": "role",
124748
+ "type": {
124749
+ "text": "string"
124750
+ },
124751
+ "privacy": "public",
124752
+ "static": true,
124753
+ "readonly": true,
124754
+ "default": "'section'"
124755
+ },
124756
+ {
124757
+ "kind": "field",
124758
+ "name": "focusable",
124759
+ "type": {
124760
+ "text": "boolean"
124761
+ },
124762
+ "privacy": "public",
124763
+ "default": "false",
124764
+ "description": "Whether the table wrapper is focusable.",
124765
+ "attribute": "focusable",
124766
+ "reflects": true
124767
+ },
124768
+ {
124769
+ "kind": "method",
124770
+ "name": "_updateScrollbarClass",
124771
+ "privacy": "private",
124772
+ "return": {
124773
+ "type": {
124774
+ "text": "void"
124775
+ }
124776
+ }
124777
+ },
124778
+ {
124779
+ "kind": "method",
124780
+ "name": "_checkHorizontalScrollbarOffset",
124781
+ "privacy": "private",
124782
+ "return": {
124783
+ "type": {
124784
+ "text": "void"
124785
+ }
124786
+ },
124787
+ "description": "Calculates whether the table is horizontally scrolled and adds the\ncorresponding class `sbb-table-wrapper-offset-${none | left | right | both}`"
124788
+ },
124789
+ {
124790
+ "kind": "method",
124791
+ "name": "_calculateScrollOffset",
124792
+ "privacy": "private",
124793
+ "return": {
124794
+ "type": {
124795
+ "text": "'none' | 'left' | 'right' | 'both'"
124796
+ }
124797
+ }
124798
+ },
124799
+ {
124800
+ "kind": "field",
124801
+ "name": "negative",
124802
+ "type": {
124803
+ "text": "boolean"
124804
+ },
124805
+ "privacy": "public",
124806
+ "default": "false",
124807
+ "description": "Negative coloring variant flag.",
124808
+ "attribute": "negative",
124809
+ "reflects": true,
124810
+ "inheritedFrom": {
124811
+ "name": "SbbNegativeMixin",
124812
+ "module": "core/mixins/negative-mixin.js"
124813
+ }
124814
+ },
124815
+ {
124816
+ "kind": "field",
124817
+ "name": "_hydrationRequired",
124818
+ "type": {
124819
+ "text": "boolean"
124820
+ },
124821
+ "privacy": "private",
124822
+ "default": "!!this.shadowRoot",
124823
+ "inheritedFrom": {
124824
+ "name": "SbbElement",
124825
+ "module": "core/base-elements/element.js"
124826
+ }
124827
+ },
124828
+ {
124829
+ "kind": "field",
124830
+ "name": "_hydrationComplete",
124831
+ "privacy": "private",
124832
+ "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
124833
+ "inheritedFrom": {
124834
+ "name": "SbbElement",
124835
+ "module": "core/base-elements/element.js"
124836
+ }
124837
+ },
124838
+ {
124839
+ "kind": "field",
124840
+ "name": "_resolveHydration",
124841
+ "type": {
124842
+ "text": "(hydrationRequired: boolean) => void"
124843
+ },
124844
+ "privacy": "private",
124845
+ "inheritedFrom": {
124846
+ "name": "SbbElement",
124847
+ "module": "core/base-elements/element.js"
124848
+ }
124849
+ },
124850
+ {
124851
+ "kind": "field",
124852
+ "name": "hydrationRequired",
124853
+ "type": {
124854
+ "text": "boolean"
124855
+ },
124856
+ "privacy": "protected",
124857
+ "description": "Returns whether hydration is required and not completed.",
124858
+ "readonly": true,
124859
+ "inheritedFrom": {
124860
+ "name": "SbbElement",
124861
+ "module": "core/base-elements/element.js"
124862
+ },
124863
+ "default": "!!this.shadowRoot"
124864
+ },
124865
+ {
124866
+ "kind": "method",
124867
+ "name": "toggleState",
124868
+ "privacy": "protected",
124869
+ "return": {
124870
+ "type": {
124871
+ "text": "void"
124872
+ }
124873
+ },
124874
+ "parameters": [
124875
+ {
124876
+ "name": "value",
124877
+ "type": {
124878
+ "text": "string"
124879
+ }
124880
+ },
124881
+ {
124882
+ "name": "force",
124883
+ "optional": true,
124884
+ "type": {
124885
+ "text": "boolean"
124886
+ }
124887
+ }
124888
+ ],
124889
+ "inheritedFrom": {
124890
+ "name": "SbbElement",
124891
+ "module": "core/base-elements/element.js"
124892
+ }
124893
+ },
124894
+ {
124895
+ "kind": "field",
124896
+ "name": "['_$sbbElement$']",
124897
+ "type": {
124898
+ "text": "boolean"
124899
+ },
124900
+ "privacy": "public",
124901
+ "static": true,
124902
+ "default": "true",
124903
+ "inheritedFrom": {
124904
+ "name": "SbbElement",
124905
+ "module": "core/base-elements/element.js"
124906
+ }
124907
+ },
124908
+ {
124909
+ "kind": "field",
124910
+ "name": "_controllers",
124911
+ "type": {
124912
+ "text": "Set<SbbReactiveController> | undefined"
124913
+ },
124914
+ "privacy": "private",
124915
+ "inheritedFrom": {
124916
+ "name": "SbbElement",
124917
+ "module": "core/base-elements/element.js"
124918
+ }
124919
+ }
124920
+ ],
124921
+ "attributes": [
124922
+ {
124923
+ "name": "focusable",
124924
+ "type": {
124925
+ "text": "boolean"
124926
+ },
124927
+ "default": "false",
124928
+ "description": "Whether the table wrapper is focusable.",
124929
+ "fieldName": "focusable"
124930
+ },
124931
+ {
124932
+ "name": "negative",
124933
+ "type": {
124934
+ "text": "boolean"
124935
+ },
124936
+ "default": "false",
124937
+ "description": "Negative coloring variant flag.",
124938
+ "fieldName": "negative",
124939
+ "inheritedFrom": {
124940
+ "name": "SbbNegativeMixin",
124941
+ "module": "core/mixins/negative-mixin.js"
124942
+ }
124943
+ }
124944
+ ],
124945
+ "mixins": [
124946
+ {
124947
+ "name": "SbbNegativeMixin",
124948
+ "module": "core/mixins.js"
124949
+ }
124950
+ ],
124951
+ "superclass": {
124952
+ "name": "SbbElement",
124953
+ "module": "core/base-elements.js"
124954
+ },
124955
+ "tagName": "sbb-table-wrapper",
124956
+ "customElement": true
124957
+ }
124958
+ ],
124959
+ "exports": [
124960
+ {
124961
+ "kind": "js",
124962
+ "name": "SbbTableWrapperElement",
124963
+ "declaration": {
124964
+ "name": "SbbTableWrapperElement",
124965
+ "module": "table/table-wrapper/table-wrapper.component.js"
124966
+ }
124967
+ }
124968
+ ]
124969
+ },
124970
124970
  {
124971
124971
  "kind": "javascript-module",
124972
124972
  "path": "tabs/common/styles.js",
@@ -129121,161 +129121,6 @@
129121
129121
  }
129122
129122
  ]
129123
129123
  },
129124
- {
129125
- "kind": "javascript-module",
129126
- "path": "timetable-form/timetable-form-details/timetable-form-details.component.js",
129127
- "declarations": [
129128
- {
129129
- "kind": "class",
129130
- "description": "Wraps the details section of the `sbb-timetable-form`.",
129131
- "name": "SbbTimetableFormDetailsElement",
129132
- "slots": [
129133
- {
129134
- "description": "Use the unnamed slot to add content to the details section.",
129135
- "name": ""
129136
- }
129137
- ],
129138
- "members": [
129139
- {
129140
- "kind": "field",
129141
- "name": "elementName",
129142
- "type": {
129143
- "text": "string"
129144
- },
129145
- "privacy": "public",
129146
- "static": true,
129147
- "readonly": true,
129148
- "default": "'sbb-timetable-form-details'",
129149
- "inheritedFrom": {
129150
- "name": "SbbElement",
129151
- "module": "core/base-elements/element.js"
129152
- }
129153
- },
129154
- {
129155
- "kind": "field",
129156
- "name": "_hydrationRequired",
129157
- "type": {
129158
- "text": "boolean"
129159
- },
129160
- "privacy": "private",
129161
- "default": "!!this.shadowRoot",
129162
- "inheritedFrom": {
129163
- "name": "SbbElement",
129164
- "module": "core/base-elements/element.js"
129165
- }
129166
- },
129167
- {
129168
- "kind": "field",
129169
- "name": "_hydrationComplete",
129170
- "privacy": "private",
129171
- "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
129172
- "inheritedFrom": {
129173
- "name": "SbbElement",
129174
- "module": "core/base-elements/element.js"
129175
- }
129176
- },
129177
- {
129178
- "kind": "field",
129179
- "name": "_resolveHydration",
129180
- "type": {
129181
- "text": "(hydrationRequired: boolean) => void"
129182
- },
129183
- "privacy": "private",
129184
- "inheritedFrom": {
129185
- "name": "SbbElement",
129186
- "module": "core/base-elements/element.js"
129187
- }
129188
- },
129189
- {
129190
- "kind": "field",
129191
- "name": "hydrationRequired",
129192
- "type": {
129193
- "text": "boolean"
129194
- },
129195
- "privacy": "protected",
129196
- "description": "Returns whether hydration is required and not completed.",
129197
- "readonly": true,
129198
- "inheritedFrom": {
129199
- "name": "SbbElement",
129200
- "module": "core/base-elements/element.js"
129201
- },
129202
- "default": "!!this.shadowRoot"
129203
- },
129204
- {
129205
- "kind": "method",
129206
- "name": "toggleState",
129207
- "privacy": "protected",
129208
- "return": {
129209
- "type": {
129210
- "text": "void"
129211
- }
129212
- },
129213
- "parameters": [
129214
- {
129215
- "name": "value",
129216
- "type": {
129217
- "text": "string"
129218
- }
129219
- },
129220
- {
129221
- "name": "force",
129222
- "optional": true,
129223
- "type": {
129224
- "text": "boolean"
129225
- }
129226
- }
129227
- ],
129228
- "inheritedFrom": {
129229
- "name": "SbbElement",
129230
- "module": "core/base-elements/element.js"
129231
- }
129232
- },
129233
- {
129234
- "kind": "field",
129235
- "name": "['_$sbbElement$']",
129236
- "type": {
129237
- "text": "boolean"
129238
- },
129239
- "privacy": "public",
129240
- "static": true,
129241
- "default": "true",
129242
- "inheritedFrom": {
129243
- "name": "SbbElement",
129244
- "module": "core/base-elements/element.js"
129245
- }
129246
- },
129247
- {
129248
- "kind": "field",
129249
- "name": "_controllers",
129250
- "type": {
129251
- "text": "Set<SbbReactiveController> | undefined"
129252
- },
129253
- "privacy": "private",
129254
- "inheritedFrom": {
129255
- "name": "SbbElement",
129256
- "module": "core/base-elements/element.js"
129257
- }
129258
- }
129259
- ],
129260
- "superclass": {
129261
- "name": "SbbElement",
129262
- "module": "core/base-elements.js"
129263
- },
129264
- "tagName": "sbb-timetable-form-details",
129265
- "customElement": true
129266
- }
129267
- ],
129268
- "exports": [
129269
- {
129270
- "kind": "js",
129271
- "name": "SbbTimetableFormDetailsElement",
129272
- "declaration": {
129273
- "name": "SbbTimetableFormDetailsElement",
129274
- "module": "timetable-form/timetable-form-details/timetable-form-details.component.js"
129275
- }
129276
- }
129277
- ]
129278
- },
129279
129124
  {
129280
129125
  "kind": "javascript-module",
129281
129126
  "path": "timetable-form/timetable-form-field/timetable-form-field.component.js",
@@ -130242,31 +130087,186 @@
130242
130087
  ],
130243
130088
  "cssProperties": [
130244
130089
  {
130245
- "description": "To override the focus outline offset,",
130246
- "name": "--sbb-form-field-outline-offset",
130090
+ "description": "To override the focus outline offset,",
130091
+ "name": "--sbb-form-field-outline-offset",
130092
+ "inheritedFrom": {
130093
+ "name": "SbbFormFieldElement",
130094
+ "module": "form-field/form-field/form-field.component.js"
130095
+ }
130096
+ },
130097
+ {
130098
+ "description": "To override the z-index of the focus underline effect,",
130099
+ "name": "--sbb-form-field-focus-underline-z-index",
130100
+ "inheritedFrom": {
130101
+ "name": "SbbFormFieldElement",
130102
+ "module": "form-field/form-field/form-field.component.js"
130103
+ }
130104
+ }
130105
+ ]
130106
+ }
130107
+ ],
130108
+ "exports": [
130109
+ {
130110
+ "kind": "js",
130111
+ "name": "SbbTimetableFormFieldElement",
130112
+ "declaration": {
130113
+ "name": "SbbTimetableFormFieldElement",
130114
+ "module": "timetable-form/timetable-form-field/timetable-form-field.component.js"
130115
+ }
130116
+ }
130117
+ ]
130118
+ },
130119
+ {
130120
+ "kind": "javascript-module",
130121
+ "path": "timetable-form/timetable-form-details/timetable-form-details.component.js",
130122
+ "declarations": [
130123
+ {
130124
+ "kind": "class",
130125
+ "description": "Wraps the details section of the `sbb-timetable-form`.",
130126
+ "name": "SbbTimetableFormDetailsElement",
130127
+ "slots": [
130128
+ {
130129
+ "description": "Use the unnamed slot to add content to the details section.",
130130
+ "name": ""
130131
+ }
130132
+ ],
130133
+ "members": [
130134
+ {
130135
+ "kind": "field",
130136
+ "name": "elementName",
130137
+ "type": {
130138
+ "text": "string"
130139
+ },
130140
+ "privacy": "public",
130141
+ "static": true,
130142
+ "readonly": true,
130143
+ "default": "'sbb-timetable-form-details'",
130144
+ "inheritedFrom": {
130145
+ "name": "SbbElement",
130146
+ "module": "core/base-elements/element.js"
130147
+ }
130148
+ },
130149
+ {
130150
+ "kind": "field",
130151
+ "name": "_hydrationRequired",
130152
+ "type": {
130153
+ "text": "boolean"
130154
+ },
130155
+ "privacy": "private",
130156
+ "default": "!!this.shadowRoot",
130157
+ "inheritedFrom": {
130158
+ "name": "SbbElement",
130159
+ "module": "core/base-elements/element.js"
130160
+ }
130161
+ },
130162
+ {
130163
+ "kind": "field",
130164
+ "name": "_hydrationComplete",
130165
+ "privacy": "private",
130166
+ "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
130167
+ "inheritedFrom": {
130168
+ "name": "SbbElement",
130169
+ "module": "core/base-elements/element.js"
130170
+ }
130171
+ },
130172
+ {
130173
+ "kind": "field",
130174
+ "name": "_resolveHydration",
130175
+ "type": {
130176
+ "text": "(hydrationRequired: boolean) => void"
130177
+ },
130178
+ "privacy": "private",
130179
+ "inheritedFrom": {
130180
+ "name": "SbbElement",
130181
+ "module": "core/base-elements/element.js"
130182
+ }
130183
+ },
130184
+ {
130185
+ "kind": "field",
130186
+ "name": "hydrationRequired",
130187
+ "type": {
130188
+ "text": "boolean"
130189
+ },
130190
+ "privacy": "protected",
130191
+ "description": "Returns whether hydration is required and not completed.",
130192
+ "readonly": true,
130193
+ "inheritedFrom": {
130194
+ "name": "SbbElement",
130195
+ "module": "core/base-elements/element.js"
130196
+ },
130197
+ "default": "!!this.shadowRoot"
130198
+ },
130199
+ {
130200
+ "kind": "method",
130201
+ "name": "toggleState",
130202
+ "privacy": "protected",
130203
+ "return": {
130204
+ "type": {
130205
+ "text": "void"
130206
+ }
130207
+ },
130208
+ "parameters": [
130209
+ {
130210
+ "name": "value",
130211
+ "type": {
130212
+ "text": "string"
130213
+ }
130214
+ },
130215
+ {
130216
+ "name": "force",
130217
+ "optional": true,
130218
+ "type": {
130219
+ "text": "boolean"
130220
+ }
130221
+ }
130222
+ ],
130223
+ "inheritedFrom": {
130224
+ "name": "SbbElement",
130225
+ "module": "core/base-elements/element.js"
130226
+ }
130227
+ },
130228
+ {
130229
+ "kind": "field",
130230
+ "name": "['_$sbbElement$']",
130231
+ "type": {
130232
+ "text": "boolean"
130233
+ },
130234
+ "privacy": "public",
130235
+ "static": true,
130236
+ "default": "true",
130247
130237
  "inheritedFrom": {
130248
- "name": "SbbFormFieldElement",
130249
- "module": "form-field/form-field/form-field.component.js"
130238
+ "name": "SbbElement",
130239
+ "module": "core/base-elements/element.js"
130250
130240
  }
130251
130241
  },
130252
130242
  {
130253
- "description": "To override the z-index of the focus underline effect,",
130254
- "name": "--sbb-form-field-focus-underline-z-index",
130243
+ "kind": "field",
130244
+ "name": "_controllers",
130245
+ "type": {
130246
+ "text": "Set<SbbReactiveController> | undefined"
130247
+ },
130248
+ "privacy": "private",
130255
130249
  "inheritedFrom": {
130256
- "name": "SbbFormFieldElement",
130257
- "module": "form-field/form-field/form-field.component.js"
130250
+ "name": "SbbElement",
130251
+ "module": "core/base-elements/element.js"
130258
130252
  }
130259
130253
  }
130260
- ]
130254
+ ],
130255
+ "superclass": {
130256
+ "name": "SbbElement",
130257
+ "module": "core/base-elements.js"
130258
+ },
130259
+ "tagName": "sbb-timetable-form-details",
130260
+ "customElement": true
130261
130261
  }
130262
130262
  ],
130263
130263
  "exports": [
130264
130264
  {
130265
130265
  "kind": "js",
130266
- "name": "SbbTimetableFormFieldElement",
130266
+ "name": "SbbTimetableFormDetailsElement",
130267
130267
  "declaration": {
130268
- "name": "SbbTimetableFormFieldElement",
130269
- "module": "timetable-form/timetable-form-field/timetable-form-field.component.js"
130268
+ "name": "SbbTimetableFormDetailsElement",
130269
+ "module": "timetable-form/timetable-form-details/timetable-form-details.component.js"
130270
130270
  }
130271
130271
  }
130272
130272
  ]
@@ -131206,478 +131206,11 @@
131206
131206
  },
131207
131207
  "default": "false",
131208
131208
  "description": "Whether the button should be aria-disabled but stay interactive.",
131209
- "fieldName": "disabledInteractive",
131210
- "inheritedFrom": {
131211
- "name": "SbbDisabledInteractiveMixin",
131212
- "module": "core/mixins/disabled-mixin.js"
131213
- }
131214
- },
131215
- {
131216
- "name": "disabled",
131217
- "description": "Whether the component is disabled.",
131218
- "default": "false",
131219
- "type": {
131220
- "text": "boolean"
131221
- },
131222
- "fieldName": "disabled",
131223
- "inheritedFrom": {
131224
- "name": "SbbDisabledMixin",
131225
- "module": "core/mixins/disabled-mixin.js"
131226
- }
131227
- },
131228
- {
131229
- "name": "value",
131230
- "type": {
131231
- "text": "string"
131232
- },
131233
- "default": "''",
131234
- "description": "Value of the form element.",
131235
- "fieldName": "value",
131236
- "inheritedFrom": {
131237
- "name": "SbbButtonBaseElement",
131238
- "module": "core/base-elements/button-base-element.js"
131239
- }
131240
- },
131241
- {
131242
- "name": "type",
131243
- "description": "The type attribute to use for the button.",
131244
- "default": "'button'",
131245
- "type": {
131246
- "text": "SbbButtonType"
131247
- },
131248
- "fieldName": "type",
131249
- "inheritedFrom": {
131250
- "name": "SbbButtonBaseElement",
131251
- "module": "core/base-elements/button-base-element.js"
131252
- }
131253
- },
131254
- {
131255
- "name": "form",
131256
- "description": "The `<form>` element to associate the button with.",
131257
- "type": {
131258
- "text": "HTMLFormElement | null"
131259
- },
131260
- "fieldName": "form",
131261
- "inheritedFrom": {
131262
- "name": "SbbButtonBaseElement",
131263
- "module": "core/base-elements/button-base-element.js"
131264
- }
131265
- },
131266
- {
131267
- "name": "name",
131268
- "description": "Name of the form element. Will be read from name attribute.",
131269
- "type": {
131270
- "text": "string"
131271
- },
131272
- "fieldName": "name",
131273
- "inheritedFrom": {
131274
- "name": "SbbFormAssociatedMixin",
131275
- "module": "core/mixins/form-associated-mixin.js"
131276
- }
131277
- }
131278
- ],
131279
- "slots": [
131280
- {
131281
- "description": "Use the unnamed slot to add content to the secondary-button.",
131282
- "name": "",
131283
- "inheritedFrom": {
131284
- "name": "SbbSecondaryButtonElement",
131285
- "module": "button/secondary-button/secondary-button.component.js"
131286
- }
131287
- },
131288
- {
131289
- "description": "Slot used to display the icon, if one is set.",
131290
- "name": "icon",
131291
- "inheritedFrom": {
131292
- "name": "SbbSecondaryButtonElement",
131293
- "module": "button/secondary-button/secondary-button.component.js"
131294
- }
131295
- }
131296
- ],
131297
- "cssProperties": [
131298
- {
131299
- "description": "The delay before the loading animation starts, when setting the button into loading state.",
131300
- "name": "--sbb-button-loading-delay",
131301
- "default": "300ms",
131302
- "inheritedFrom": {
131303
- "name": "SbbSecondaryButtonElement",
131304
- "module": "button/secondary-button/secondary-button.component.js"
131305
- }
131306
- }
131307
- ]
131308
- }
131309
- ],
131310
- "exports": [
131311
- {
131312
- "kind": "js",
131313
- "name": "SbbTimetableFormSwapButtonElement",
131314
- "declaration": {
131315
- "name": "SbbTimetableFormSwapButtonElement",
131316
- "module": "timetable-form/timetable-form-swap-button/timetable-form-swap-button.component.js"
131317
- }
131318
- }
131319
- ]
131320
- },
131321
- {
131322
- "kind": "javascript-module",
131323
- "path": "toggle/toggle-option/toggle-option.component.js",
131324
- "declarations": [
131325
- {
131326
- "kind": "class",
131327
- "description": "It displays a toggle option within a `sbb-toggle`.",
131328
- "name": "SbbToggleOptionElement",
131329
- "slots": [
131330
- {
131331
- "description": "Use the unnamed slot to add content to the label of the toggle option.",
131332
- "name": ""
131333
- },
131334
- {
131335
- "description": "Slot used to render the `sbb-icon`.",
131336
- "name": "icon"
131337
- }
131338
- ],
131339
- "members": [
131340
- {
131341
- "kind": "field",
131342
- "name": "elementName",
131343
- "type": {
131344
- "text": "string"
131345
- },
131346
- "privacy": "public",
131347
- "static": true,
131348
- "readonly": true,
131349
- "default": "'sbb-toggle-option'",
131350
- "inheritedFrom": {
131351
- "name": "SbbElement",
131352
- "module": "core/base-elements/element.js"
131353
- }
131354
- },
131355
- {
131356
- "kind": "field",
131357
- "name": "role",
131358
- "type": {
131359
- "text": "string"
131360
- },
131361
- "privacy": "public",
131362
- "static": true,
131363
- "readonly": true,
131364
- "default": "'radio'"
131365
- },
131366
- {
131367
- "kind": "field",
131368
- "name": "checked",
131369
- "type": {
131370
- "text": "boolean"
131371
- },
131372
- "privacy": "public",
131373
- "default": "false",
131374
- "description": "Whether the toggle-option is checked.",
131375
- "attribute": "checked",
131376
- "reflects": true
131377
- },
131378
- {
131379
- "kind": "field",
131380
- "name": "value",
131381
- "type": {
131382
- "text": "(T = string) | null"
131383
- },
131384
- "privacy": "public",
131385
- "default": "null",
131386
- "description": "Value of toggle-option.",
131387
- "attribute": "value"
131388
- },
131389
- {
131390
- "kind": "field",
131391
- "name": "_toggle",
131392
- "type": {
131393
- "text": "SbbToggleElement | null"
131394
- },
131395
- "privacy": "private",
131396
- "default": "null"
131397
- },
131398
- {
131399
- "kind": "method",
131400
- "name": "_uncheckOtherOptions",
131401
- "privacy": "private",
131402
- "return": {
131403
- "type": {
131404
- "text": "void"
131405
- }
131406
- }
131407
- },
131408
- {
131409
- "kind": "method",
131410
- "name": "_handleDisabledChange",
131411
- "privacy": "private",
131412
- "return": {
131413
- "type": {
131414
- "text": "void"
131415
- }
131416
- }
131417
- },
131418
- {
131419
- "kind": "method",
131420
- "name": "_handleInput",
131421
- "privacy": "private",
131422
- "return": {
131423
- "type": {
131424
- "text": "void"
131425
- }
131426
- }
131427
- },
131428
- {
131429
- "kind": "method",
131430
- "name": "_verifyTabindex",
131431
- "privacy": "private",
131432
- "return": {
131433
- "type": {
131434
- "text": "void"
131435
- }
131436
- }
131437
- },
131438
- {
131439
- "kind": "field",
131440
- "name": "disabled",
131441
- "privacy": "public",
131442
- "description": "Whether the component is disabled.",
131443
- "default": "false",
131444
- "type": {
131445
- "text": "boolean"
131446
- },
131447
- "attribute": "disabled",
131448
- "reflects": true,
131449
- "inheritedFrom": {
131450
- "name": "SbbDisabledMixin",
131451
- "module": "core/mixins/disabled-mixin.js"
131452
- }
131453
- },
131454
- {
131455
- "kind": "field",
131456
- "name": "#disabled",
131457
- "privacy": "private",
131458
- "type": {
131459
- "text": "boolean"
131460
- },
131461
- "default": "false",
131462
- "inheritedFrom": {
131463
- "name": "SbbDisabledMixin",
131464
- "module": "core/mixins/disabled-mixin.js"
131465
- }
131466
- },
131467
- {
131468
- "kind": "method",
131469
- "name": "isDisabledExternally",
131470
- "privacy": "protected",
131471
- "return": {
131472
- "type": {
131473
- "text": "boolean"
131474
- }
131475
- },
131476
- "description": "Will be used as 'or' check to the current disabled state.\nCan e.g. be used to read disabled state of a group.",
131477
- "inheritedFrom": {
131478
- "name": "SbbDisabledMixin",
131479
- "module": "core/mixins/disabled-mixin.js"
131480
- }
131481
- },
131482
- {
131483
- "kind": "field",
131484
- "name": "iconName",
131485
- "type": {
131486
- "text": "string"
131487
- },
131488
- "privacy": "public",
131489
- "default": "''",
131490
- "description": "The icon name we want to use, choose from the small icon variants\nfrom the ui-icons category from here\nhttps://icons.app.sbb.ch.",
131491
- "attribute": "icon-name",
131492
- "inheritedFrom": {
131493
- "name": "SbbIconNameMixin",
131494
- "module": "icon/icon-name-mixin.js"
131495
- }
131496
- },
131497
- {
131498
- "kind": "method",
131499
- "name": "renderIconSlot",
131500
- "privacy": "protected",
131501
- "return": {
131502
- "type": {
131503
- "text": "TemplateResult"
131504
- }
131505
- },
131506
- "parameters": [
131507
- {
131508
- "name": "classname",
131509
- "optional": true,
131510
- "type": {
131511
- "text": "string"
131512
- }
131513
- }
131514
- ],
131515
- "inheritedFrom": {
131516
- "name": "SbbIconNameMixin",
131517
- "module": "icon/icon-name-mixin.js"
131518
- }
131519
- },
131520
- {
131521
- "kind": "method",
131522
- "name": "renderIconName",
131523
- "privacy": "protected",
131524
- "return": {
131525
- "type": {
131526
- "text": "string"
131527
- }
131528
- },
131529
- "inheritedFrom": {
131530
- "name": "SbbIconNameMixin",
131531
- "module": "icon/icon-name-mixin.js"
131532
- }
131533
- },
131534
- {
131535
- "kind": "method",
131536
- "name": "_renderIconName",
131537
- "privacy": "private",
131538
- "return": {
131539
- "type": {
131540
- "text": "string"
131541
- }
131542
- },
131543
- "inheritedFrom": {
131544
- "name": "SbbIconNameMixin",
131545
- "module": "icon/icon-name-mixin.js"
131546
- }
131547
- },
131548
- {
131549
- "kind": "field",
131550
- "name": "_hydrationRequired",
131551
- "type": {
131552
- "text": "boolean"
131553
- },
131554
- "privacy": "private",
131555
- "default": "!!this.shadowRoot",
131556
- "inheritedFrom": {
131557
- "name": "SbbElement",
131558
- "module": "core/base-elements/element.js"
131559
- }
131560
- },
131561
- {
131562
- "kind": "field",
131563
- "name": "_hydrationComplete",
131564
- "privacy": "private",
131565
- "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
131566
- "inheritedFrom": {
131567
- "name": "SbbElement",
131568
- "module": "core/base-elements/element.js"
131569
- }
131570
- },
131571
- {
131572
- "kind": "field",
131573
- "name": "_resolveHydration",
131574
- "type": {
131575
- "text": "(hydrationRequired: boolean) => void"
131576
- },
131577
- "privacy": "private",
131578
- "inheritedFrom": {
131579
- "name": "SbbElement",
131580
- "module": "core/base-elements/element.js"
131581
- }
131582
- },
131583
- {
131584
- "kind": "field",
131585
- "name": "hydrationRequired",
131586
- "type": {
131587
- "text": "boolean"
131588
- },
131589
- "privacy": "protected",
131590
- "description": "Returns whether hydration is required and not completed.",
131591
- "readonly": true,
131592
- "inheritedFrom": {
131593
- "name": "SbbElement",
131594
- "module": "core/base-elements/element.js"
131595
- },
131596
- "default": "!!this.shadowRoot"
131597
- },
131598
- {
131599
- "kind": "method",
131600
- "name": "toggleState",
131601
- "privacy": "protected",
131602
- "return": {
131603
- "type": {
131604
- "text": "void"
131605
- }
131606
- },
131607
- "parameters": [
131608
- {
131609
- "name": "value",
131610
- "type": {
131611
- "text": "string"
131612
- }
131613
- },
131614
- {
131615
- "name": "force",
131616
- "optional": true,
131617
- "type": {
131618
- "text": "boolean"
131619
- }
131620
- }
131621
- ],
131622
- "inheritedFrom": {
131623
- "name": "SbbElement",
131624
- "module": "core/base-elements/element.js"
131625
- }
131626
- },
131627
- {
131628
- "kind": "field",
131629
- "name": "['_$sbbElement$']",
131630
- "type": {
131631
- "text": "boolean"
131632
- },
131633
- "privacy": "public",
131634
- "static": true,
131635
- "default": "true",
131636
- "inheritedFrom": {
131637
- "name": "SbbElement",
131638
- "module": "core/base-elements/element.js"
131639
- }
131640
- },
131641
- {
131642
- "kind": "field",
131643
- "name": "_controllers",
131644
- "type": {
131645
- "text": "Set<SbbReactiveController> | undefined"
131646
- },
131647
- "privacy": "private",
131648
- "inheritedFrom": {
131649
- "name": "SbbElement",
131650
- "module": "core/base-elements/element.js"
131651
- }
131652
- }
131653
- ],
131654
- "events": [
131655
- {
131656
- "type": {
131657
- "text": "InputEvent"
131658
- },
131659
- "description": "The input event fires when the value has been changed as a direct result of a user action.",
131660
- "name": "input"
131661
- }
131662
- ],
131663
- "attributes": [
131664
- {
131665
- "name": "checked",
131666
- "type": {
131667
- "text": "boolean"
131668
- },
131669
- "default": "false",
131670
- "description": "Whether the toggle-option is checked.",
131671
- "fieldName": "checked"
131672
- },
131673
- {
131674
- "name": "value",
131675
- "type": {
131676
- "text": "T | null"
131677
- },
131678
- "default": "null",
131679
- "description": "Value of toggle-option.",
131680
- "fieldName": "value"
131209
+ "fieldName": "disabledInteractive",
131210
+ "inheritedFrom": {
131211
+ "name": "SbbDisabledInteractiveMixin",
131212
+ "module": "core/mixins/disabled-mixin.js"
131213
+ }
131681
131214
  },
131682
131215
  {
131683
131216
  "name": "disabled",
@@ -131693,45 +131226,94 @@
131693
131226
  }
131694
131227
  },
131695
131228
  {
131696
- "name": "icon-name",
131229
+ "name": "value",
131697
131230
  "type": {
131698
131231
  "text": "string"
131699
131232
  },
131700
131233
  "default": "''",
131701
- "description": "The icon name we want to use, choose from the small icon variants\nfrom the ui-icons category from here\nhttps://icons.app.sbb.ch.",
131702
- "fieldName": "iconName",
131234
+ "description": "Value of the form element.",
131235
+ "fieldName": "value",
131703
131236
  "inheritedFrom": {
131704
- "name": "SbbIconNameMixin",
131705
- "module": "icon/icon-name-mixin.js"
131237
+ "name": "SbbButtonBaseElement",
131238
+ "module": "core/base-elements/button-base-element.js"
131239
+ }
131240
+ },
131241
+ {
131242
+ "name": "type",
131243
+ "description": "The type attribute to use for the button.",
131244
+ "default": "'button'",
131245
+ "type": {
131246
+ "text": "SbbButtonType"
131247
+ },
131248
+ "fieldName": "type",
131249
+ "inheritedFrom": {
131250
+ "name": "SbbButtonBaseElement",
131251
+ "module": "core/base-elements/button-base-element.js"
131252
+ }
131253
+ },
131254
+ {
131255
+ "name": "form",
131256
+ "description": "The `<form>` element to associate the button with.",
131257
+ "type": {
131258
+ "text": "HTMLFormElement | null"
131259
+ },
131260
+ "fieldName": "form",
131261
+ "inheritedFrom": {
131262
+ "name": "SbbButtonBaseElement",
131263
+ "module": "core/base-elements/button-base-element.js"
131264
+ }
131265
+ },
131266
+ {
131267
+ "name": "name",
131268
+ "description": "Name of the form element. Will be read from name attribute.",
131269
+ "type": {
131270
+ "text": "string"
131271
+ },
131272
+ "fieldName": "name",
131273
+ "inheritedFrom": {
131274
+ "name": "SbbFormAssociatedMixin",
131275
+ "module": "core/mixins/form-associated-mixin.js"
131706
131276
  }
131707
131277
  }
131708
131278
  ],
131709
- "mixins": [
131279
+ "slots": [
131710
131280
  {
131711
- "name": "SbbDisabledMixin",
131712
- "module": "core/mixins.js"
131281
+ "description": "Use the unnamed slot to add content to the secondary-button.",
131282
+ "name": "",
131283
+ "inheritedFrom": {
131284
+ "name": "SbbSecondaryButtonElement",
131285
+ "module": "button/secondary-button/secondary-button.component.js"
131286
+ }
131713
131287
  },
131714
131288
  {
131715
- "name": "SbbIconNameMixin",
131716
- "module": "icon.js"
131289
+ "description": "Slot used to display the icon, if one is set.",
131290
+ "name": "icon",
131291
+ "inheritedFrom": {
131292
+ "name": "SbbSecondaryButtonElement",
131293
+ "module": "button/secondary-button/secondary-button.component.js"
131294
+ }
131717
131295
  }
131718
131296
  ],
131719
- "superclass": {
131720
- "name": "SbbElement",
131721
- "module": "core/base-elements.js"
131722
- },
131723
- "tagName": "sbb-toggle-option",
131724
- "customElement": true,
131725
- "classGenerics": "T = string"
131297
+ "cssProperties": [
131298
+ {
131299
+ "description": "The delay before the loading animation starts, when setting the button into loading state.",
131300
+ "name": "--sbb-button-loading-delay",
131301
+ "default": "300ms",
131302
+ "inheritedFrom": {
131303
+ "name": "SbbSecondaryButtonElement",
131304
+ "module": "button/secondary-button/secondary-button.component.js"
131305
+ }
131306
+ }
131307
+ ]
131726
131308
  }
131727
131309
  ],
131728
131310
  "exports": [
131729
131311
  {
131730
131312
  "kind": "js",
131731
- "name": "SbbToggleOptionElement",
131313
+ "name": "SbbTimetableFormSwapButtonElement",
131732
131314
  "declaration": {
131733
- "name": "SbbToggleOptionElement",
131734
- "module": "toggle/toggle-option/toggle-option.component.js"
131315
+ "name": "SbbTimetableFormSwapButtonElement",
131316
+ "module": "timetable-form/timetable-form-swap-button/timetable-form-swap-button.component.js"
131735
131317
  }
131736
131318
  }
131737
131319
  ]
@@ -132505,6 +132087,424 @@
132505
132087
  }
132506
132088
  ]
132507
132089
  },
132090
+ {
132091
+ "kind": "javascript-module",
132092
+ "path": "toggle/toggle-option/toggle-option.component.js",
132093
+ "declarations": [
132094
+ {
132095
+ "kind": "class",
132096
+ "description": "It displays a toggle option within a `sbb-toggle`.",
132097
+ "name": "SbbToggleOptionElement",
132098
+ "slots": [
132099
+ {
132100
+ "description": "Use the unnamed slot to add content to the label of the toggle option.",
132101
+ "name": ""
132102
+ },
132103
+ {
132104
+ "description": "Slot used to render the `sbb-icon`.",
132105
+ "name": "icon"
132106
+ }
132107
+ ],
132108
+ "members": [
132109
+ {
132110
+ "kind": "field",
132111
+ "name": "elementName",
132112
+ "type": {
132113
+ "text": "string"
132114
+ },
132115
+ "privacy": "public",
132116
+ "static": true,
132117
+ "readonly": true,
132118
+ "default": "'sbb-toggle-option'",
132119
+ "inheritedFrom": {
132120
+ "name": "SbbElement",
132121
+ "module": "core/base-elements/element.js"
132122
+ }
132123
+ },
132124
+ {
132125
+ "kind": "field",
132126
+ "name": "role",
132127
+ "type": {
132128
+ "text": "string"
132129
+ },
132130
+ "privacy": "public",
132131
+ "static": true,
132132
+ "readonly": true,
132133
+ "default": "'radio'"
132134
+ },
132135
+ {
132136
+ "kind": "field",
132137
+ "name": "checked",
132138
+ "type": {
132139
+ "text": "boolean"
132140
+ },
132141
+ "privacy": "public",
132142
+ "default": "false",
132143
+ "description": "Whether the toggle-option is checked.",
132144
+ "attribute": "checked",
132145
+ "reflects": true
132146
+ },
132147
+ {
132148
+ "kind": "field",
132149
+ "name": "value",
132150
+ "type": {
132151
+ "text": "(T = string) | null"
132152
+ },
132153
+ "privacy": "public",
132154
+ "default": "null",
132155
+ "description": "Value of toggle-option.",
132156
+ "attribute": "value"
132157
+ },
132158
+ {
132159
+ "kind": "field",
132160
+ "name": "_toggle",
132161
+ "type": {
132162
+ "text": "SbbToggleElement | null"
132163
+ },
132164
+ "privacy": "private",
132165
+ "default": "null"
132166
+ },
132167
+ {
132168
+ "kind": "method",
132169
+ "name": "_uncheckOtherOptions",
132170
+ "privacy": "private",
132171
+ "return": {
132172
+ "type": {
132173
+ "text": "void"
132174
+ }
132175
+ }
132176
+ },
132177
+ {
132178
+ "kind": "method",
132179
+ "name": "_handleDisabledChange",
132180
+ "privacy": "private",
132181
+ "return": {
132182
+ "type": {
132183
+ "text": "void"
132184
+ }
132185
+ }
132186
+ },
132187
+ {
132188
+ "kind": "method",
132189
+ "name": "_handleInput",
132190
+ "privacy": "private",
132191
+ "return": {
132192
+ "type": {
132193
+ "text": "void"
132194
+ }
132195
+ }
132196
+ },
132197
+ {
132198
+ "kind": "method",
132199
+ "name": "_verifyTabindex",
132200
+ "privacy": "private",
132201
+ "return": {
132202
+ "type": {
132203
+ "text": "void"
132204
+ }
132205
+ }
132206
+ },
132207
+ {
132208
+ "kind": "field",
132209
+ "name": "disabled",
132210
+ "privacy": "public",
132211
+ "description": "Whether the component is disabled.",
132212
+ "default": "false",
132213
+ "type": {
132214
+ "text": "boolean"
132215
+ },
132216
+ "attribute": "disabled",
132217
+ "reflects": true,
132218
+ "inheritedFrom": {
132219
+ "name": "SbbDisabledMixin",
132220
+ "module": "core/mixins/disabled-mixin.js"
132221
+ }
132222
+ },
132223
+ {
132224
+ "kind": "field",
132225
+ "name": "#disabled",
132226
+ "privacy": "private",
132227
+ "type": {
132228
+ "text": "boolean"
132229
+ },
132230
+ "default": "false",
132231
+ "inheritedFrom": {
132232
+ "name": "SbbDisabledMixin",
132233
+ "module": "core/mixins/disabled-mixin.js"
132234
+ }
132235
+ },
132236
+ {
132237
+ "kind": "method",
132238
+ "name": "isDisabledExternally",
132239
+ "privacy": "protected",
132240
+ "return": {
132241
+ "type": {
132242
+ "text": "boolean"
132243
+ }
132244
+ },
132245
+ "description": "Will be used as 'or' check to the current disabled state.\nCan e.g. be used to read disabled state of a group.",
132246
+ "inheritedFrom": {
132247
+ "name": "SbbDisabledMixin",
132248
+ "module": "core/mixins/disabled-mixin.js"
132249
+ }
132250
+ },
132251
+ {
132252
+ "kind": "field",
132253
+ "name": "iconName",
132254
+ "type": {
132255
+ "text": "string"
132256
+ },
132257
+ "privacy": "public",
132258
+ "default": "''",
132259
+ "description": "The icon name we want to use, choose from the small icon variants\nfrom the ui-icons category from here\nhttps://icons.app.sbb.ch.",
132260
+ "attribute": "icon-name",
132261
+ "inheritedFrom": {
132262
+ "name": "SbbIconNameMixin",
132263
+ "module": "icon/icon-name-mixin.js"
132264
+ }
132265
+ },
132266
+ {
132267
+ "kind": "method",
132268
+ "name": "renderIconSlot",
132269
+ "privacy": "protected",
132270
+ "return": {
132271
+ "type": {
132272
+ "text": "TemplateResult"
132273
+ }
132274
+ },
132275
+ "parameters": [
132276
+ {
132277
+ "name": "classname",
132278
+ "optional": true,
132279
+ "type": {
132280
+ "text": "string"
132281
+ }
132282
+ }
132283
+ ],
132284
+ "inheritedFrom": {
132285
+ "name": "SbbIconNameMixin",
132286
+ "module": "icon/icon-name-mixin.js"
132287
+ }
132288
+ },
132289
+ {
132290
+ "kind": "method",
132291
+ "name": "renderIconName",
132292
+ "privacy": "protected",
132293
+ "return": {
132294
+ "type": {
132295
+ "text": "string"
132296
+ }
132297
+ },
132298
+ "inheritedFrom": {
132299
+ "name": "SbbIconNameMixin",
132300
+ "module": "icon/icon-name-mixin.js"
132301
+ }
132302
+ },
132303
+ {
132304
+ "kind": "method",
132305
+ "name": "_renderIconName",
132306
+ "privacy": "private",
132307
+ "return": {
132308
+ "type": {
132309
+ "text": "string"
132310
+ }
132311
+ },
132312
+ "inheritedFrom": {
132313
+ "name": "SbbIconNameMixin",
132314
+ "module": "icon/icon-name-mixin.js"
132315
+ }
132316
+ },
132317
+ {
132318
+ "kind": "field",
132319
+ "name": "_hydrationRequired",
132320
+ "type": {
132321
+ "text": "boolean"
132322
+ },
132323
+ "privacy": "private",
132324
+ "default": "!!this.shadowRoot",
132325
+ "inheritedFrom": {
132326
+ "name": "SbbElement",
132327
+ "module": "core/base-elements/element.js"
132328
+ }
132329
+ },
132330
+ {
132331
+ "kind": "field",
132332
+ "name": "_hydrationComplete",
132333
+ "privacy": "private",
132334
+ "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
132335
+ "inheritedFrom": {
132336
+ "name": "SbbElement",
132337
+ "module": "core/base-elements/element.js"
132338
+ }
132339
+ },
132340
+ {
132341
+ "kind": "field",
132342
+ "name": "_resolveHydration",
132343
+ "type": {
132344
+ "text": "(hydrationRequired: boolean) => void"
132345
+ },
132346
+ "privacy": "private",
132347
+ "inheritedFrom": {
132348
+ "name": "SbbElement",
132349
+ "module": "core/base-elements/element.js"
132350
+ }
132351
+ },
132352
+ {
132353
+ "kind": "field",
132354
+ "name": "hydrationRequired",
132355
+ "type": {
132356
+ "text": "boolean"
132357
+ },
132358
+ "privacy": "protected",
132359
+ "description": "Returns whether hydration is required and not completed.",
132360
+ "readonly": true,
132361
+ "inheritedFrom": {
132362
+ "name": "SbbElement",
132363
+ "module": "core/base-elements/element.js"
132364
+ },
132365
+ "default": "!!this.shadowRoot"
132366
+ },
132367
+ {
132368
+ "kind": "method",
132369
+ "name": "toggleState",
132370
+ "privacy": "protected",
132371
+ "return": {
132372
+ "type": {
132373
+ "text": "void"
132374
+ }
132375
+ },
132376
+ "parameters": [
132377
+ {
132378
+ "name": "value",
132379
+ "type": {
132380
+ "text": "string"
132381
+ }
132382
+ },
132383
+ {
132384
+ "name": "force",
132385
+ "optional": true,
132386
+ "type": {
132387
+ "text": "boolean"
132388
+ }
132389
+ }
132390
+ ],
132391
+ "inheritedFrom": {
132392
+ "name": "SbbElement",
132393
+ "module": "core/base-elements/element.js"
132394
+ }
132395
+ },
132396
+ {
132397
+ "kind": "field",
132398
+ "name": "['_$sbbElement$']",
132399
+ "type": {
132400
+ "text": "boolean"
132401
+ },
132402
+ "privacy": "public",
132403
+ "static": true,
132404
+ "default": "true",
132405
+ "inheritedFrom": {
132406
+ "name": "SbbElement",
132407
+ "module": "core/base-elements/element.js"
132408
+ }
132409
+ },
132410
+ {
132411
+ "kind": "field",
132412
+ "name": "_controllers",
132413
+ "type": {
132414
+ "text": "Set<SbbReactiveController> | undefined"
132415
+ },
132416
+ "privacy": "private",
132417
+ "inheritedFrom": {
132418
+ "name": "SbbElement",
132419
+ "module": "core/base-elements/element.js"
132420
+ }
132421
+ }
132422
+ ],
132423
+ "events": [
132424
+ {
132425
+ "type": {
132426
+ "text": "InputEvent"
132427
+ },
132428
+ "description": "The input event fires when the value has been changed as a direct result of a user action.",
132429
+ "name": "input"
132430
+ }
132431
+ ],
132432
+ "attributes": [
132433
+ {
132434
+ "name": "checked",
132435
+ "type": {
132436
+ "text": "boolean"
132437
+ },
132438
+ "default": "false",
132439
+ "description": "Whether the toggle-option is checked.",
132440
+ "fieldName": "checked"
132441
+ },
132442
+ {
132443
+ "name": "value",
132444
+ "type": {
132445
+ "text": "T | null"
132446
+ },
132447
+ "default": "null",
132448
+ "description": "Value of toggle-option.",
132449
+ "fieldName": "value"
132450
+ },
132451
+ {
132452
+ "name": "disabled",
132453
+ "description": "Whether the component is disabled.",
132454
+ "default": "false",
132455
+ "type": {
132456
+ "text": "boolean"
132457
+ },
132458
+ "fieldName": "disabled",
132459
+ "inheritedFrom": {
132460
+ "name": "SbbDisabledMixin",
132461
+ "module": "core/mixins/disabled-mixin.js"
132462
+ }
132463
+ },
132464
+ {
132465
+ "name": "icon-name",
132466
+ "type": {
132467
+ "text": "string"
132468
+ },
132469
+ "default": "''",
132470
+ "description": "The icon name we want to use, choose from the small icon variants\nfrom the ui-icons category from here\nhttps://icons.app.sbb.ch.",
132471
+ "fieldName": "iconName",
132472
+ "inheritedFrom": {
132473
+ "name": "SbbIconNameMixin",
132474
+ "module": "icon/icon-name-mixin.js"
132475
+ }
132476
+ }
132477
+ ],
132478
+ "mixins": [
132479
+ {
132480
+ "name": "SbbDisabledMixin",
132481
+ "module": "core/mixins.js"
132482
+ },
132483
+ {
132484
+ "name": "SbbIconNameMixin",
132485
+ "module": "icon.js"
132486
+ }
132487
+ ],
132488
+ "superclass": {
132489
+ "name": "SbbElement",
132490
+ "module": "core/base-elements.js"
132491
+ },
132492
+ "tagName": "sbb-toggle-option",
132493
+ "customElement": true,
132494
+ "classGenerics": "T = string"
132495
+ }
132496
+ ],
132497
+ "exports": [
132498
+ {
132499
+ "kind": "js",
132500
+ "name": "SbbToggleOptionElement",
132501
+ "declaration": {
132502
+ "name": "SbbToggleOptionElement",
132503
+ "module": "toggle/toggle-option/toggle-option.component.js"
132504
+ }
132505
+ }
132506
+ ]
132507
+ },
132508
132508
  {
132509
132509
  "kind": "javascript-module",
132510
132510
  "path": "train/train/train.component.js",