@sbb-esta/lyne-elements-dev 4.7.0-dev.1773213760 → 4.7.0-dev.1773217409

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.
@@ -63681,6 +63681,229 @@
63681
63681
  }
63682
63682
  ]
63683
63683
  },
63684
+ {
63685
+ "kind": "javascript-module",
63686
+ "path": "core/decorators/base.js",
63687
+ "declarations": [],
63688
+ "exports": []
63689
+ },
63690
+ {
63691
+ "kind": "javascript-module",
63692
+ "path": "core/decorators/force-type.js",
63693
+ "declarations": [
63694
+ {
63695
+ "kind": "function",
63696
+ "name": "forceType",
63697
+ "return": {
63698
+ "type": {
63699
+ "text": "PropertyDecorator"
63700
+ }
63701
+ },
63702
+ "parameters": [
63703
+ {
63704
+ "name": "convert",
63705
+ "optional": true,
63706
+ "type": {
63707
+ "text": "(v: unknown) => V"
63708
+ }
63709
+ }
63710
+ ],
63711
+ "description": "Decorator that forces the value of a property or getter/setter\nto the defined type."
63712
+ }
63713
+ ],
63714
+ "exports": [
63715
+ {
63716
+ "kind": "js",
63717
+ "name": "forceType",
63718
+ "declaration": {
63719
+ "name": "forceType",
63720
+ "module": "core/decorators/force-type.js"
63721
+ }
63722
+ }
63723
+ ]
63724
+ },
63725
+ {
63726
+ "kind": "javascript-module",
63727
+ "path": "core/decorators/get-override.js",
63728
+ "declarations": [
63729
+ {
63730
+ "kind": "function",
63731
+ "name": "getOverride",
63732
+ "parameters": [
63733
+ {
63734
+ "name": "callback",
63735
+ "type": {
63736
+ "text": "(instance: C, innerValue: V) => V"
63737
+ }
63738
+ }
63739
+ ],
63740
+ "description": "Decorator that overrides the underlying getter of the accessor."
63741
+ }
63742
+ ],
63743
+ "exports": [
63744
+ {
63745
+ "kind": "js",
63746
+ "name": "getOverride",
63747
+ "declaration": {
63748
+ "name": "getOverride",
63749
+ "module": "core/decorators/get-override.js"
63750
+ }
63751
+ }
63752
+ ]
63753
+ },
63754
+ {
63755
+ "kind": "javascript-module",
63756
+ "path": "core/decorators/handle-distinct-change.js",
63757
+ "declarations": [
63758
+ {
63759
+ "kind": "function",
63760
+ "name": "handleDistinctChange",
63761
+ "parameters": [
63762
+ {
63763
+ "name": "callback",
63764
+ "type": {
63765
+ "text": "(instance: C, newValue: V, oldValue: V | undefined) => void"
63766
+ }
63767
+ }
63768
+ ],
63769
+ "description": "Decorator that calls the given callback when the value\nof the associated property is changed."
63770
+ }
63771
+ ],
63772
+ "exports": [
63773
+ {
63774
+ "kind": "js",
63775
+ "name": "handleDistinctChange",
63776
+ "declaration": {
63777
+ "name": "handleDistinctChange",
63778
+ "module": "core/decorators/handle-distinct-change.js"
63779
+ }
63780
+ }
63781
+ ]
63782
+ },
63783
+ {
63784
+ "kind": "javascript-module",
63785
+ "path": "core/decorators/host-attributes.js",
63786
+ "declarations": [
63787
+ {
63788
+ "kind": "function",
63789
+ "name": "hostAttributes",
63790
+ "parameters": [
63791
+ {
63792
+ "name": "attributes",
63793
+ "type": {
63794
+ "text": "Record<string, string | null>"
63795
+ },
63796
+ "description": "A record of attributes to apply to the element."
63797
+ }
63798
+ ],
63799
+ "description": "Applies the given attributes to the related element.\nIf an empty string is passed as a value, the attribute will be set\nwithout value.",
63800
+ "deprecated": "Will be removed with next major version."
63801
+ }
63802
+ ],
63803
+ "exports": [
63804
+ {
63805
+ "kind": "js",
63806
+ "name": "hostAttributes",
63807
+ "declaration": {
63808
+ "name": "hostAttributes",
63809
+ "module": "core/decorators/host-attributes.js"
63810
+ }
63811
+ }
63812
+ ]
63813
+ },
63814
+ {
63815
+ "kind": "javascript-module",
63816
+ "path": "core/decorators/id-reference.js",
63817
+ "declarations": [
63818
+ {
63819
+ "kind": "function",
63820
+ "name": "idReference",
63821
+ "description": "Accessor decorator that resolves id references dynamically.\nIf a string is passed (e.g. from an attribute), it will be resolved to the element with that id.\nThis decorator observes the connected document fragment for changes to the id attribute\nand child elements and if any id reference is established or removed, it will\nupdate the associated property."
63822
+ }
63823
+ ],
63824
+ "exports": [
63825
+ {
63826
+ "kind": "js",
63827
+ "name": "idReference",
63828
+ "declaration": {
63829
+ "name": "idReference",
63830
+ "module": "core/decorators/id-reference.js"
63831
+ }
63832
+ }
63833
+ ]
63834
+ },
63835
+ {
63836
+ "kind": "javascript-module",
63837
+ "path": "core/decorators/omit-empty-converter.js",
63838
+ "declarations": [
63839
+ {
63840
+ "kind": "variable",
63841
+ "name": "omitEmptyConverter",
63842
+ "type": {
63843
+ "text": "ComplexAttributeConverter"
63844
+ },
63845
+ "default": "{ toAttribute(value, type) { return ((type === String || type === undefined) && value === '') || (type === Number && isNaN(value as number)) ? null : defaultConverter.toAttribute!(value, type); }, }",
63846
+ "description": "Converts empty values to null, which will not be rendered as attributes.\ne.g. for string properties, an empty value '' will not be rendered as an\nempty attribute, as would be the default with lit."
63847
+ }
63848
+ ],
63849
+ "exports": [
63850
+ {
63851
+ "kind": "js",
63852
+ "name": "omitEmptyConverter",
63853
+ "declaration": {
63854
+ "name": "omitEmptyConverter",
63855
+ "module": "core/decorators/omit-empty-converter.js"
63856
+ }
63857
+ }
63858
+ ]
63859
+ },
63860
+ {
63861
+ "kind": "javascript-module",
63862
+ "path": "core/decorators/plain-date.js",
63863
+ "declarations": [
63864
+ {
63865
+ "kind": "variable",
63866
+ "name": "plainDateConverter",
63867
+ "type": {
63868
+ "text": "ComplexAttributeConverter"
63869
+ },
63870
+ "default": "{ toAttribute(value, _type) { const dateAdapter = readConfig().datetime?.dateAdapter ?? defaultDateAdapter; return dateAdapter.isValid(value) ? dateAdapter.toIso8601(value) : null; }, }",
63871
+ "description": "Will convert date object values to ISO8601 formatted strings as attributes.\nShould be used together with the `plainDate` decorator."
63872
+ },
63873
+ {
63874
+ "kind": "function",
63875
+ "name": "plainDate",
63876
+ "parameters": [
63877
+ {
63878
+ "name": "config",
63879
+ "optional": true,
63880
+ "type": {
63881
+ "text": "SbbPlainDateConfiguration"
63882
+ }
63883
+ }
63884
+ ],
63885
+ "description": "Decorator that tries to deserialize the given value to a date object\nand adapts the getter to only return a copy of the internal value,\nin order to avoid outside manipulation of date objects."
63886
+ }
63887
+ ],
63888
+ "exports": [
63889
+ {
63890
+ "kind": "js",
63891
+ "name": "plainDateConverter",
63892
+ "declaration": {
63893
+ "name": "plainDateConverter",
63894
+ "module": "core/decorators/plain-date.js"
63895
+ }
63896
+ },
63897
+ {
63898
+ "kind": "js",
63899
+ "name": "plainDate",
63900
+ "declaration": {
63901
+ "name": "plainDate",
63902
+ "module": "core/decorators/plain-date.js"
63903
+ }
63904
+ }
63905
+ ]
63906
+ },
63684
63907
  {
63685
63908
  "kind": "javascript-module",
63686
63909
  "path": "core/dom/animation.js",
@@ -64119,229 +64342,6 @@
64119
64342
  }
64120
64343
  ]
64121
64344
  },
64122
- {
64123
- "kind": "javascript-module",
64124
- "path": "core/decorators/base.js",
64125
- "declarations": [],
64126
- "exports": []
64127
- },
64128
- {
64129
- "kind": "javascript-module",
64130
- "path": "core/decorators/force-type.js",
64131
- "declarations": [
64132
- {
64133
- "kind": "function",
64134
- "name": "forceType",
64135
- "return": {
64136
- "type": {
64137
- "text": "PropertyDecorator"
64138
- }
64139
- },
64140
- "parameters": [
64141
- {
64142
- "name": "convert",
64143
- "optional": true,
64144
- "type": {
64145
- "text": "(v: unknown) => V"
64146
- }
64147
- }
64148
- ],
64149
- "description": "Decorator that forces the value of a property or getter/setter\nto the defined type."
64150
- }
64151
- ],
64152
- "exports": [
64153
- {
64154
- "kind": "js",
64155
- "name": "forceType",
64156
- "declaration": {
64157
- "name": "forceType",
64158
- "module": "core/decorators/force-type.js"
64159
- }
64160
- }
64161
- ]
64162
- },
64163
- {
64164
- "kind": "javascript-module",
64165
- "path": "core/decorators/get-override.js",
64166
- "declarations": [
64167
- {
64168
- "kind": "function",
64169
- "name": "getOverride",
64170
- "parameters": [
64171
- {
64172
- "name": "callback",
64173
- "type": {
64174
- "text": "(instance: C, innerValue: V) => V"
64175
- }
64176
- }
64177
- ],
64178
- "description": "Decorator that overrides the underlying getter of the accessor."
64179
- }
64180
- ],
64181
- "exports": [
64182
- {
64183
- "kind": "js",
64184
- "name": "getOverride",
64185
- "declaration": {
64186
- "name": "getOverride",
64187
- "module": "core/decorators/get-override.js"
64188
- }
64189
- }
64190
- ]
64191
- },
64192
- {
64193
- "kind": "javascript-module",
64194
- "path": "core/decorators/handle-distinct-change.js",
64195
- "declarations": [
64196
- {
64197
- "kind": "function",
64198
- "name": "handleDistinctChange",
64199
- "parameters": [
64200
- {
64201
- "name": "callback",
64202
- "type": {
64203
- "text": "(instance: C, newValue: V, oldValue: V | undefined) => void"
64204
- }
64205
- }
64206
- ],
64207
- "description": "Decorator that calls the given callback when the value\nof the associated property is changed."
64208
- }
64209
- ],
64210
- "exports": [
64211
- {
64212
- "kind": "js",
64213
- "name": "handleDistinctChange",
64214
- "declaration": {
64215
- "name": "handleDistinctChange",
64216
- "module": "core/decorators/handle-distinct-change.js"
64217
- }
64218
- }
64219
- ]
64220
- },
64221
- {
64222
- "kind": "javascript-module",
64223
- "path": "core/decorators/host-attributes.js",
64224
- "declarations": [
64225
- {
64226
- "kind": "function",
64227
- "name": "hostAttributes",
64228
- "parameters": [
64229
- {
64230
- "name": "attributes",
64231
- "type": {
64232
- "text": "Record<string, string | null>"
64233
- },
64234
- "description": "A record of attributes to apply to the element."
64235
- }
64236
- ],
64237
- "description": "Applies the given attributes to the related element.\nIf an empty string is passed as a value, the attribute will be set\nwithout value.",
64238
- "deprecated": "Will be removed with next major version."
64239
- }
64240
- ],
64241
- "exports": [
64242
- {
64243
- "kind": "js",
64244
- "name": "hostAttributes",
64245
- "declaration": {
64246
- "name": "hostAttributes",
64247
- "module": "core/decorators/host-attributes.js"
64248
- }
64249
- }
64250
- ]
64251
- },
64252
- {
64253
- "kind": "javascript-module",
64254
- "path": "core/decorators/id-reference.js",
64255
- "declarations": [
64256
- {
64257
- "kind": "function",
64258
- "name": "idReference",
64259
- "description": "Accessor decorator that resolves id references dynamically.\nIf a string is passed (e.g. from an attribute), it will be resolved to the element with that id.\nThis decorator observes the connected document fragment for changes to the id attribute\nand child elements and if any id reference is established or removed, it will\nupdate the associated property."
64260
- }
64261
- ],
64262
- "exports": [
64263
- {
64264
- "kind": "js",
64265
- "name": "idReference",
64266
- "declaration": {
64267
- "name": "idReference",
64268
- "module": "core/decorators/id-reference.js"
64269
- }
64270
- }
64271
- ]
64272
- },
64273
- {
64274
- "kind": "javascript-module",
64275
- "path": "core/decorators/omit-empty-converter.js",
64276
- "declarations": [
64277
- {
64278
- "kind": "variable",
64279
- "name": "omitEmptyConverter",
64280
- "type": {
64281
- "text": "ComplexAttributeConverter"
64282
- },
64283
- "default": "{ toAttribute(value, type) { return ((type === String || type === undefined) && value === '') || (type === Number && isNaN(value as number)) ? null : defaultConverter.toAttribute!(value, type); }, }",
64284
- "description": "Converts empty values to null, which will not be rendered as attributes.\ne.g. for string properties, an empty value '' will not be rendered as an\nempty attribute, as would be the default with lit."
64285
- }
64286
- ],
64287
- "exports": [
64288
- {
64289
- "kind": "js",
64290
- "name": "omitEmptyConverter",
64291
- "declaration": {
64292
- "name": "omitEmptyConverter",
64293
- "module": "core/decorators/omit-empty-converter.js"
64294
- }
64295
- }
64296
- ]
64297
- },
64298
- {
64299
- "kind": "javascript-module",
64300
- "path": "core/decorators/plain-date.js",
64301
- "declarations": [
64302
- {
64303
- "kind": "variable",
64304
- "name": "plainDateConverter",
64305
- "type": {
64306
- "text": "ComplexAttributeConverter"
64307
- },
64308
- "default": "{ toAttribute(value, _type) { const dateAdapter = readConfig().datetime?.dateAdapter ?? defaultDateAdapter; return dateAdapter.isValid(value) ? dateAdapter.toIso8601(value) : null; }, }",
64309
- "description": "Will convert date object values to ISO8601 formatted strings as attributes.\nShould be used together with the `plainDate` decorator."
64310
- },
64311
- {
64312
- "kind": "function",
64313
- "name": "plainDate",
64314
- "parameters": [
64315
- {
64316
- "name": "config",
64317
- "optional": true,
64318
- "type": {
64319
- "text": "SbbPlainDateConfiguration"
64320
- }
64321
- }
64322
- ],
64323
- "description": "Decorator that tries to deserialize the given value to a date object\nand adapts the getter to only return a copy of the internal value,\nin order to avoid outside manipulation of date objects."
64324
- }
64325
- ],
64326
- "exports": [
64327
- {
64328
- "kind": "js",
64329
- "name": "plainDateConverter",
64330
- "declaration": {
64331
- "name": "plainDateConverter",
64332
- "module": "core/decorators/plain-date.js"
64333
- }
64334
- },
64335
- {
64336
- "kind": "js",
64337
- "name": "plainDate",
64338
- "declaration": {
64339
- "name": "plainDate",
64340
- "module": "core/decorators/plain-date.js"
64341
- }
64342
- }
64343
- ]
64344
- },
64345
64345
  {
64346
64346
  "kind": "javascript-module",
64347
64347
  "path": "core/eventing/composed-path-has-attribute.js",
@@ -104267,176 +104267,6 @@
104267
104267
  }
104268
104268
  ]
104269
104269
  },
104270
- {
104271
- "kind": "javascript-module",
104272
- "path": "navigation/common/navigation-action-common.js",
104273
- "declarations": [
104274
- {
104275
- "kind": "class",
104276
- "description": "",
104277
- "name": "SbbNavigationActionCommonElementMixinType",
104278
- "members": [
104279
- {
104280
- "kind": "field",
104281
- "name": "size",
104282
- "type": {
104283
- "text": "SbbNavigationActionSize"
104284
- },
104285
- "privacy": "public"
104286
- },
104287
- {
104288
- "kind": "field",
104289
- "name": "marker",
104290
- "type": {
104291
- "text": "SbbNavigationMarkerElement | null"
104292
- },
104293
- "privacy": "public",
104294
- "readonly": true
104295
- },
104296
- {
104297
- "kind": "field",
104298
- "name": "section",
104299
- "type": {
104300
- "text": "SbbNavigationSectionElement | null"
104301
- },
104302
- "privacy": "public",
104303
- "readonly": true
104304
- },
104305
- {
104306
- "kind": "field",
104307
- "name": "connectedSection",
104308
- "type": {
104309
- "text": "SbbNavigationSectionElement | undefined"
104310
- },
104311
- "privacy": "public"
104312
- }
104313
- ]
104314
- },
104315
- {
104316
- "kind": "mixin",
104317
- "description": "",
104318
- "name": "SbbNavigationActionCommonElementMixin",
104319
- "members": [
104320
- {
104321
- "kind": "field",
104322
- "name": "styles",
104323
- "type": {
104324
- "text": "CSSResultGroup"
104325
- },
104326
- "privacy": "public",
104327
- "static": true,
104328
- "default": "[boxSizingStyles, style]"
104329
- },
104330
- {
104331
- "kind": "field",
104332
- "name": "size",
104333
- "type": {
104334
- "text": "SbbNavigationActionSize"
104335
- },
104336
- "privacy": "public",
104337
- "description": "Action size variant, either s, m or l.",
104338
- "default": "'l' / 's' (lean)",
104339
- "attribute": "size",
104340
- "reflects": true
104341
- },
104342
- {
104343
- "kind": "field",
104344
- "name": "connectedSection",
104345
- "type": {
104346
- "text": "SbbNavigationSectionElement | undefined"
104347
- },
104348
- "privacy": "public",
104349
- "description": "The section that is being controlled by the action, if any."
104350
- },
104351
- {
104352
- "kind": "field",
104353
- "name": "marker",
104354
- "type": {
104355
- "text": "SbbNavigationMarkerElement | null"
104356
- },
104357
- "privacy": "public",
104358
- "description": "The navigation marker in which the action is nested.",
104359
- "readonly": true
104360
- },
104361
- {
104362
- "kind": "field",
104363
- "name": "section",
104364
- "type": {
104365
- "text": "SbbNavigationSectionElement | null"
104366
- },
104367
- "privacy": "public",
104368
- "description": "The section in which the action is nested.",
104369
- "readonly": true
104370
- },
104371
- {
104372
- "kind": "field",
104373
- "name": "_navigationMarker",
104374
- "type": {
104375
- "text": "SbbNavigationMarkerElement | null"
104376
- },
104377
- "privacy": "private",
104378
- "default": "null"
104379
- },
104380
- {
104381
- "kind": "field",
104382
- "name": "_navigationSection",
104383
- "type": {
104384
- "text": "SbbNavigationSectionElement | null"
104385
- },
104386
- "privacy": "private",
104387
- "default": "null"
104388
- },
104389
- {
104390
- "kind": "method",
104391
- "name": "renderTemplate",
104392
- "privacy": "protected",
104393
- "return": {
104394
- "type": {
104395
- "text": "TemplateResult"
104396
- }
104397
- }
104398
- }
104399
- ],
104400
- "attributes": [
104401
- {
104402
- "name": "size",
104403
- "type": {
104404
- "text": "SbbNavigationActionSize"
104405
- },
104406
- "description": "Action size variant, either s, m or l.",
104407
- "default": "'l' / 's' (lean)",
104408
- "fieldName": "size"
104409
- }
104410
- ],
104411
- "parameters": [
104412
- {
104413
- "name": "superClass",
104414
- "type": {
104415
- "text": "T"
104416
- }
104417
- }
104418
- ]
104419
- }
104420
- ],
104421
- "exports": [
104422
- {
104423
- "kind": "js",
104424
- "name": "SbbNavigationActionCommonElementMixinType",
104425
- "declaration": {
104426
- "name": "SbbNavigationActionCommonElementMixinType",
104427
- "module": "navigation/common/navigation-action-common.js"
104428
- }
104429
- },
104430
- {
104431
- "kind": "js",
104432
- "name": "SbbNavigationActionCommonElementMixin",
104433
- "declaration": {
104434
- "name": "SbbNavigationActionCommonElementMixin",
104435
- "module": "navigation/common/navigation-action-common.js"
104436
- }
104437
- }
104438
- ]
104439
- },
104440
104270
  {
104441
104271
  "kind": "javascript-module",
104442
104272
  "path": "mini-calendar/mini-calendar-month/mini-calendar-month.component.js",
@@ -104646,6 +104476,176 @@
104646
104476
  }
104647
104477
  ]
104648
104478
  },
104479
+ {
104480
+ "kind": "javascript-module",
104481
+ "path": "navigation/common/navigation-action-common.js",
104482
+ "declarations": [
104483
+ {
104484
+ "kind": "class",
104485
+ "description": "",
104486
+ "name": "SbbNavigationActionCommonElementMixinType",
104487
+ "members": [
104488
+ {
104489
+ "kind": "field",
104490
+ "name": "size",
104491
+ "type": {
104492
+ "text": "SbbNavigationActionSize"
104493
+ },
104494
+ "privacy": "public"
104495
+ },
104496
+ {
104497
+ "kind": "field",
104498
+ "name": "marker",
104499
+ "type": {
104500
+ "text": "SbbNavigationMarkerElement | null"
104501
+ },
104502
+ "privacy": "public",
104503
+ "readonly": true
104504
+ },
104505
+ {
104506
+ "kind": "field",
104507
+ "name": "section",
104508
+ "type": {
104509
+ "text": "SbbNavigationSectionElement | null"
104510
+ },
104511
+ "privacy": "public",
104512
+ "readonly": true
104513
+ },
104514
+ {
104515
+ "kind": "field",
104516
+ "name": "connectedSection",
104517
+ "type": {
104518
+ "text": "SbbNavigationSectionElement | undefined"
104519
+ },
104520
+ "privacy": "public"
104521
+ }
104522
+ ]
104523
+ },
104524
+ {
104525
+ "kind": "mixin",
104526
+ "description": "",
104527
+ "name": "SbbNavigationActionCommonElementMixin",
104528
+ "members": [
104529
+ {
104530
+ "kind": "field",
104531
+ "name": "styles",
104532
+ "type": {
104533
+ "text": "CSSResultGroup"
104534
+ },
104535
+ "privacy": "public",
104536
+ "static": true,
104537
+ "default": "[boxSizingStyles, style]"
104538
+ },
104539
+ {
104540
+ "kind": "field",
104541
+ "name": "size",
104542
+ "type": {
104543
+ "text": "SbbNavigationActionSize"
104544
+ },
104545
+ "privacy": "public",
104546
+ "description": "Action size variant, either s, m or l.",
104547
+ "default": "'l' / 's' (lean)",
104548
+ "attribute": "size",
104549
+ "reflects": true
104550
+ },
104551
+ {
104552
+ "kind": "field",
104553
+ "name": "connectedSection",
104554
+ "type": {
104555
+ "text": "SbbNavigationSectionElement | undefined"
104556
+ },
104557
+ "privacy": "public",
104558
+ "description": "The section that is being controlled by the action, if any."
104559
+ },
104560
+ {
104561
+ "kind": "field",
104562
+ "name": "marker",
104563
+ "type": {
104564
+ "text": "SbbNavigationMarkerElement | null"
104565
+ },
104566
+ "privacy": "public",
104567
+ "description": "The navigation marker in which the action is nested.",
104568
+ "readonly": true
104569
+ },
104570
+ {
104571
+ "kind": "field",
104572
+ "name": "section",
104573
+ "type": {
104574
+ "text": "SbbNavigationSectionElement | null"
104575
+ },
104576
+ "privacy": "public",
104577
+ "description": "The section in which the action is nested.",
104578
+ "readonly": true
104579
+ },
104580
+ {
104581
+ "kind": "field",
104582
+ "name": "_navigationMarker",
104583
+ "type": {
104584
+ "text": "SbbNavigationMarkerElement | null"
104585
+ },
104586
+ "privacy": "private",
104587
+ "default": "null"
104588
+ },
104589
+ {
104590
+ "kind": "field",
104591
+ "name": "_navigationSection",
104592
+ "type": {
104593
+ "text": "SbbNavigationSectionElement | null"
104594
+ },
104595
+ "privacy": "private",
104596
+ "default": "null"
104597
+ },
104598
+ {
104599
+ "kind": "method",
104600
+ "name": "renderTemplate",
104601
+ "privacy": "protected",
104602
+ "return": {
104603
+ "type": {
104604
+ "text": "TemplateResult"
104605
+ }
104606
+ }
104607
+ }
104608
+ ],
104609
+ "attributes": [
104610
+ {
104611
+ "name": "size",
104612
+ "type": {
104613
+ "text": "SbbNavigationActionSize"
104614
+ },
104615
+ "description": "Action size variant, either s, m or l.",
104616
+ "default": "'l' / 's' (lean)",
104617
+ "fieldName": "size"
104618
+ }
104619
+ ],
104620
+ "parameters": [
104621
+ {
104622
+ "name": "superClass",
104623
+ "type": {
104624
+ "text": "T"
104625
+ }
104626
+ }
104627
+ ]
104628
+ }
104629
+ ],
104630
+ "exports": [
104631
+ {
104632
+ "kind": "js",
104633
+ "name": "SbbNavigationActionCommonElementMixinType",
104634
+ "declaration": {
104635
+ "name": "SbbNavigationActionCommonElementMixinType",
104636
+ "module": "navigation/common/navigation-action-common.js"
104637
+ }
104638
+ },
104639
+ {
104640
+ "kind": "js",
104641
+ "name": "SbbNavigationActionCommonElementMixin",
104642
+ "declaration": {
104643
+ "name": "SbbNavigationActionCommonElementMixin",
104644
+ "module": "navigation/common/navigation-action-common.js"
104645
+ }
104646
+ }
104647
+ ]
104648
+ },
104649
104649
  {
104650
104650
  "kind": "javascript-module",
104651
104651
  "path": "navigation/navigation/navigation.component.js",
@@ -114683,37 +114683,6 @@
114683
114683
  }
114684
114684
  ]
114685
114685
  },
114686
- {
114687
- "kind": "javascript-module",
114688
- "path": "sidebar/common/styles.js",
114689
- "declarations": [],
114690
- "exports": [
114691
- {
114692
- "kind": "js",
114693
- "name": "sidebarContainerCommonStyle",
114694
- "declaration": {
114695
- "name": "default",
114696
- "module": "./sidebar-container-common.scss?lit&inline"
114697
- }
114698
- },
114699
- {
114700
- "kind": "js",
114701
- "name": "sidebarContentCommonStyle",
114702
- "declaration": {
114703
- "name": "default",
114704
- "module": "./sidebar-content-common.scss?lit&inline"
114705
- }
114706
- },
114707
- {
114708
- "kind": "js",
114709
- "name": "iconSidebarButtonCommonStyle",
114710
- "declaration": {
114711
- "name": "default",
114712
- "module": "./icon-sidebar-button-common.scss?lit&inline"
114713
- }
114714
- }
114715
- ]
114716
- },
114717
114686
  {
114718
114687
  "kind": "javascript-module",
114719
114688
  "path": "sidebar/sidebar/sidebar.component.js",
@@ -115447,212 +115416,31 @@
115447
115416
  },
115448
115417
  {
115449
115418
  "kind": "javascript-module",
115450
- "path": "sidebar/sidebar-container/sidebar-container.component.js",
115451
- "declarations": [
115452
- {
115453
- "kind": "class",
115454
- "description": "This is the parent component to one or two `<sbb-sidebar>`s that validates the state internally\nand coordinates the backdrop and content styling.",
115455
- "name": "SbbSidebarContainerElement",
115456
- "slots": [
115457
- {
115458
- "description": "Use the unnamed slot to add `sbb-sidebar` and `sbb-sidebar-content` elements.",
115459
- "name": ""
115460
- }
115461
- ],
115462
- "members": [
115463
- {
115464
- "kind": "field",
115465
- "name": "elementName",
115466
- "type": {
115467
- "text": "string"
115468
- },
115469
- "privacy": "public",
115470
- "static": true,
115471
- "readonly": true,
115472
- "default": "'sbb-sidebar-container'",
115473
- "inheritedFrom": {
115474
- "name": "SbbElement",
115475
- "module": "core/base-elements/element.js"
115476
- }
115477
- },
115478
- {
115479
- "kind": "field",
115480
- "name": "sidebars",
115481
- "type": {
115482
- "text": "SbbSidebarElement[]"
115483
- },
115484
- "privacy": "public",
115485
- "description": "The sidebar children.",
115486
- "readonly": true
115487
- },
115488
- {
115489
- "kind": "field",
115490
- "name": "start",
115491
- "type": {
115492
- "text": "SbbSidebarElement | null"
115493
- },
115494
- "privacy": "public",
115495
- "description": "The sidebar child with the `start` position.",
115496
- "readonly": true
115497
- },
115498
- {
115499
- "kind": "field",
115500
- "name": "end",
115501
- "type": {
115502
- "text": "SbbSidebarElement | null"
115503
- },
115504
- "privacy": "public",
115505
- "description": "The sidebar child with the `end` position.",
115506
- "readonly": true
115507
- },
115508
- {
115509
- "kind": "field",
115510
- "name": "_forcedClosedSidebars",
115511
- "privacy": "private",
115512
- "default": "new WeakSet<SbbSidebarElement>()"
115513
- },
115514
- {
115515
- "kind": "method",
115516
- "name": "_handleWidthChange",
115517
- "privacy": "private",
115518
- "return": {
115519
- "type": {
115520
- "text": "void"
115521
- }
115522
- }
115523
- },
115524
- {
115525
- "kind": "method",
115526
- "name": "_calculateSpaceState",
115527
- "privacy": "private",
115528
- "return": {
115529
- "type": {
115530
- "text": "Promise<void>"
115531
- }
115532
- },
115533
- "description": "Closes and opens sidebars depending on available width\nof the container and its parent container."
115534
- },
115535
- {
115536
- "kind": "field",
115537
- "name": "_hydrationRequired",
115538
- "type": {
115539
- "text": "boolean"
115540
- },
115541
- "privacy": "private",
115542
- "default": "!!this.shadowRoot",
115543
- "inheritedFrom": {
115544
- "name": "SbbElement",
115545
- "module": "core/base-elements/element.js"
115546
- }
115547
- },
115548
- {
115549
- "kind": "field",
115550
- "name": "_hydrationComplete",
115551
- "privacy": "private",
115552
- "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
115553
- "inheritedFrom": {
115554
- "name": "SbbElement",
115555
- "module": "core/base-elements/element.js"
115556
- }
115557
- },
115558
- {
115559
- "kind": "field",
115560
- "name": "_resolveHydration",
115561
- "type": {
115562
- "text": "(hydrationRequired: boolean) => void"
115563
- },
115564
- "privacy": "private",
115565
- "inheritedFrom": {
115566
- "name": "SbbElement",
115567
- "module": "core/base-elements/element.js"
115568
- }
115569
- },
115570
- {
115571
- "kind": "field",
115572
- "name": "hydrationRequired",
115573
- "type": {
115574
- "text": "boolean"
115575
- },
115576
- "privacy": "protected",
115577
- "description": "Returns whether hydration is required and not completed.",
115578
- "readonly": true,
115579
- "inheritedFrom": {
115580
- "name": "SbbElement",
115581
- "module": "core/base-elements/element.js"
115582
- },
115583
- "default": "!!this.shadowRoot"
115584
- },
115585
- {
115586
- "kind": "method",
115587
- "name": "toggleState",
115588
- "privacy": "protected",
115589
- "return": {
115590
- "type": {
115591
- "text": "void"
115592
- }
115593
- },
115594
- "parameters": [
115595
- {
115596
- "name": "value",
115597
- "type": {
115598
- "text": "string"
115599
- }
115600
- },
115601
- {
115602
- "name": "force",
115603
- "optional": true,
115604
- "type": {
115605
- "text": "boolean"
115606
- }
115607
- }
115608
- ],
115609
- "inheritedFrom": {
115610
- "name": "SbbElement",
115611
- "module": "core/base-elements/element.js"
115612
- }
115613
- },
115614
- {
115615
- "kind": "field",
115616
- "name": "['_$sbbElement$']",
115617
- "type": {
115618
- "text": "boolean"
115619
- },
115620
- "privacy": "public",
115621
- "static": true,
115622
- "default": "true",
115623
- "inheritedFrom": {
115624
- "name": "SbbElement",
115625
- "module": "core/base-elements/element.js"
115626
- }
115627
- },
115628
- {
115629
- "kind": "field",
115630
- "name": "_controllers",
115631
- "type": {
115632
- "text": "Set<SbbReactiveController> | undefined"
115633
- },
115634
- "privacy": "private",
115635
- "inheritedFrom": {
115636
- "name": "SbbElement",
115637
- "module": "core/base-elements/element.js"
115638
- }
115639
- }
115640
- ],
115641
- "superclass": {
115642
- "name": "SbbElement",
115643
- "module": "core/base-elements.js"
115644
- },
115645
- "tagName": "sbb-sidebar-container",
115646
- "customElement": true
115647
- }
115648
- ],
115419
+ "path": "sidebar/common/styles.js",
115420
+ "declarations": [],
115649
115421
  "exports": [
115650
115422
  {
115651
115423
  "kind": "js",
115652
- "name": "SbbSidebarContainerElement",
115424
+ "name": "sidebarContainerCommonStyle",
115653
115425
  "declaration": {
115654
- "name": "SbbSidebarContainerElement",
115655
- "module": "sidebar/sidebar-container/sidebar-container.component.js"
115426
+ "name": "default",
115427
+ "module": "./sidebar-container-common.scss?lit&inline"
115428
+ }
115429
+ },
115430
+ {
115431
+ "kind": "js",
115432
+ "name": "sidebarContentCommonStyle",
115433
+ "declaration": {
115434
+ "name": "default",
115435
+ "module": "./sidebar-content-common.scss?lit&inline"
115436
+ }
115437
+ },
115438
+ {
115439
+ "kind": "js",
115440
+ "name": "iconSidebarButtonCommonStyle",
115441
+ "declaration": {
115442
+ "name": "default",
115443
+ "module": "./icon-sidebar-button-common.scss?lit&inline"
115656
115444
  }
115657
115445
  }
115658
115446
  ]
@@ -116679,15 +116467,15 @@
116679
116467
  },
116680
116468
  {
116681
116469
  "kind": "javascript-module",
116682
- "path": "sidebar/sidebar-content/sidebar-content.component.js",
116470
+ "path": "sidebar/sidebar-container/sidebar-container.component.js",
116683
116471
  "declarations": [
116684
116472
  {
116685
116473
  "kind": "class",
116686
- "description": "Container for the sidebar content. Intended to be placed inside an `sbb-sidebar-container` element.",
116687
- "name": "SbbSidebarContentElement",
116474
+ "description": "This is the parent component to one or two `<sbb-sidebar>`s that validates the state internally\nand coordinates the backdrop and content styling.",
116475
+ "name": "SbbSidebarContainerElement",
116688
116476
  "slots": [
116689
116477
  {
116690
- "description": "Use the unnamed slot to add any content elements. Further `sbb-sidebar-container`s are possible.",
116478
+ "description": "Use the unnamed slot to add `sbb-sidebar` and `sbb-sidebar-content` elements.",
116691
116479
  "name": ""
116692
116480
  }
116693
116481
  ],
@@ -116701,12 +116489,69 @@
116701
116489
  "privacy": "public",
116702
116490
  "static": true,
116703
116491
  "readonly": true,
116704
- "default": "'sbb-sidebar-content'",
116492
+ "default": "'sbb-sidebar-container'",
116705
116493
  "inheritedFrom": {
116706
116494
  "name": "SbbElement",
116707
116495
  "module": "core/base-elements/element.js"
116708
116496
  }
116709
116497
  },
116498
+ {
116499
+ "kind": "field",
116500
+ "name": "sidebars",
116501
+ "type": {
116502
+ "text": "SbbSidebarElement[]"
116503
+ },
116504
+ "privacy": "public",
116505
+ "description": "The sidebar children.",
116506
+ "readonly": true
116507
+ },
116508
+ {
116509
+ "kind": "field",
116510
+ "name": "start",
116511
+ "type": {
116512
+ "text": "SbbSidebarElement | null"
116513
+ },
116514
+ "privacy": "public",
116515
+ "description": "The sidebar child with the `start` position.",
116516
+ "readonly": true
116517
+ },
116518
+ {
116519
+ "kind": "field",
116520
+ "name": "end",
116521
+ "type": {
116522
+ "text": "SbbSidebarElement | null"
116523
+ },
116524
+ "privacy": "public",
116525
+ "description": "The sidebar child with the `end` position.",
116526
+ "readonly": true
116527
+ },
116528
+ {
116529
+ "kind": "field",
116530
+ "name": "_forcedClosedSidebars",
116531
+ "privacy": "private",
116532
+ "default": "new WeakSet<SbbSidebarElement>()"
116533
+ },
116534
+ {
116535
+ "kind": "method",
116536
+ "name": "_handleWidthChange",
116537
+ "privacy": "private",
116538
+ "return": {
116539
+ "type": {
116540
+ "text": "void"
116541
+ }
116542
+ }
116543
+ },
116544
+ {
116545
+ "kind": "method",
116546
+ "name": "_calculateSpaceState",
116547
+ "privacy": "private",
116548
+ "return": {
116549
+ "type": {
116550
+ "text": "Promise<void>"
116551
+ }
116552
+ },
116553
+ "description": "Closes and opens sidebars depending on available width\nof the container and its parent container."
116554
+ },
116710
116555
  {
116711
116556
  "kind": "field",
116712
116557
  "name": "_hydrationRequired",
@@ -116817,32 +116662,32 @@
116817
116662
  "name": "SbbElement",
116818
116663
  "module": "core/base-elements.js"
116819
116664
  },
116820
- "tagName": "sbb-sidebar-content",
116665
+ "tagName": "sbb-sidebar-container",
116821
116666
  "customElement": true
116822
116667
  }
116823
116668
  ],
116824
116669
  "exports": [
116825
116670
  {
116826
116671
  "kind": "js",
116827
- "name": "SbbSidebarContentElement",
116672
+ "name": "SbbSidebarContainerElement",
116828
116673
  "declaration": {
116829
- "name": "SbbSidebarContentElement",
116830
- "module": "sidebar/sidebar-content/sidebar-content.component.js"
116674
+ "name": "SbbSidebarContainerElement",
116675
+ "module": "sidebar/sidebar-container/sidebar-container.component.js"
116831
116676
  }
116832
116677
  }
116833
116678
  ]
116834
116679
  },
116835
116680
  {
116836
116681
  "kind": "javascript-module",
116837
- "path": "sidebar/sidebar-title/sidebar-title.component.js",
116682
+ "path": "sidebar/sidebar-content/sidebar-content.component.js",
116838
116683
  "declarations": [
116839
116684
  {
116840
116685
  "kind": "class",
116841
- "description": "It displays the title of the sidebar. It has to be placed inside an `sbb-sidebar` element.",
116842
- "name": "SbbSidebarTitleElement",
116686
+ "description": "Container for the sidebar content. Intended to be placed inside an `sbb-sidebar-container` element.",
116687
+ "name": "SbbSidebarContentElement",
116843
116688
  "slots": [
116844
116689
  {
116845
- "description": "Use the unnamed slot for the content of the sidebar-title.",
116690
+ "description": "Use the unnamed slot to add any content elements. Further `sbb-sidebar-container`s are possible.",
116846
116691
  "name": ""
116847
116692
  }
116848
116693
  ],
@@ -116856,56 +116701,10 @@
116856
116701
  "privacy": "public",
116857
116702
  "static": true,
116858
116703
  "readonly": true,
116704
+ "default": "'sbb-sidebar-content'",
116859
116705
  "inheritedFrom": {
116860
116706
  "name": "SbbElement",
116861
116707
  "module": "core/base-elements/element.js"
116862
- },
116863
- "default": "'sbb-sidebar-title'"
116864
- },
116865
- {
116866
- "kind": "field",
116867
- "name": "level",
116868
- "type": {
116869
- "text": "SbbTitleLevel"
116870
- },
116871
- "privacy": "public",
116872
- "default": "'2'",
116873
- "description": "Title level",
116874
- "attribute": "level",
116875
- "reflects": true,
116876
- "inheritedFrom": {
116877
- "name": "SbbTitleBase",
116878
- "module": "title/title-base.js"
116879
- }
116880
- },
116881
- {
116882
- "kind": "field",
116883
- "name": "visualLevel",
116884
- "type": {
116885
- "text": "SbbTitleLevel | null"
116886
- },
116887
- "privacy": "public",
116888
- "default": "'5'",
116889
- "description": "Visual level for the title.",
116890
- "attribute": "visual-level",
116891
- "reflects": true,
116892
- "inheritedFrom": {
116893
- "name": "SbbTitleBase",
116894
- "module": "title/title-base.js"
116895
- }
116896
- },
116897
- {
116898
- "kind": "field",
116899
- "name": "role",
116900
- "type": {
116901
- "text": "string"
116902
- },
116903
- "privacy": "public",
116904
- "static": true,
116905
- "default": "'heading'",
116906
- "inheritedFrom": {
116907
- "name": "SbbTitleBase",
116908
- "module": "title/title-base.js"
116909
116708
  }
116910
116709
  },
116911
116710
  {
@@ -117014,64 +116813,36 @@
117014
116813
  }
117015
116814
  }
117016
116815
  ],
117017
- "attributes": [
117018
- {
117019
- "name": "level",
117020
- "type": {
117021
- "text": "SbbTitleLevel"
117022
- },
117023
- "default": "'2'",
117024
- "description": "Title level",
117025
- "fieldName": "level",
117026
- "inheritedFrom": {
117027
- "name": "SbbTitleBase",
117028
- "module": "title/title-base.js"
117029
- }
117030
- },
117031
- {
117032
- "name": "visual-level",
117033
- "type": {
117034
- "text": "SbbTitleLevel | null"
117035
- },
117036
- "default": "null",
117037
- "description": "Visual level for the title.",
117038
- "fieldName": "visualLevel",
117039
- "inheritedFrom": {
117040
- "name": "SbbTitleBase",
117041
- "module": "title/title-base.js"
117042
- }
117043
- }
117044
- ],
117045
116816
  "superclass": {
117046
- "name": "SbbTitleBase",
117047
- "module": "title.js"
116817
+ "name": "SbbElement",
116818
+ "module": "core/base-elements.js"
117048
116819
  },
117049
- "tagName": "sbb-sidebar-title",
116820
+ "tagName": "sbb-sidebar-content",
117050
116821
  "customElement": true
117051
116822
  }
117052
116823
  ],
117053
116824
  "exports": [
117054
116825
  {
117055
116826
  "kind": "js",
117056
- "name": "SbbSidebarTitleElement",
116827
+ "name": "SbbSidebarContentElement",
117057
116828
  "declaration": {
117058
- "name": "SbbSidebarTitleElement",
117059
- "module": "sidebar/sidebar-title/sidebar-title.component.js"
116829
+ "name": "SbbSidebarContentElement",
116830
+ "module": "sidebar/sidebar-content/sidebar-content.component.js"
117060
116831
  }
117061
116832
  }
117062
116833
  ]
117063
116834
  },
117064
116835
  {
117065
116836
  "kind": "javascript-module",
117066
- "path": "stepper/step/step.component.js",
116837
+ "path": "sidebar/sidebar-title/sidebar-title.component.js",
117067
116838
  "declarations": [
117068
116839
  {
117069
116840
  "kind": "class",
117070
- "description": "Combined with a `sbb-stepper`, it displays a step's content.",
117071
- "name": "SbbStepElement",
116841
+ "description": "It displays the title of the sidebar. It has to be placed inside an `sbb-sidebar` element.",
116842
+ "name": "SbbSidebarTitleElement",
117072
116843
  "slots": [
117073
116844
  {
117074
- "description": "Use the unnamed slot to provide content.",
116845
+ "description": "Use the unnamed slot for the content of the sidebar-title.",
117075
116846
  "name": ""
117076
116847
  }
117077
116848
  ],
@@ -117085,150 +116856,56 @@
117085
116856
  "privacy": "public",
117086
116857
  "static": true,
117087
116858
  "readonly": true,
117088
- "default": "'sbb-step'",
117089
116859
  "inheritedFrom": {
117090
116860
  "name": "SbbElement",
117091
116861
  "module": "core/base-elements/element.js"
117092
- }
116862
+ },
116863
+ "default": "'sbb-sidebar-title'"
117093
116864
  },
117094
116865
  {
117095
116866
  "kind": "field",
117096
- "name": "role",
116867
+ "name": "level",
117097
116868
  "type": {
117098
- "text": "string"
116869
+ "text": "SbbTitleLevel"
117099
116870
  },
117100
116871
  "privacy": "public",
117101
- "static": true,
117102
- "readonly": true,
117103
- "default": "'tabpanel'"
117104
- },
117105
- {
117106
- "kind": "field",
117107
- "name": "events",
117108
- "privacy": "public",
117109
- "static": true,
117110
- "readonly": true,
117111
- "default": "{ validate: 'validate', resizechange: 'resizechange', }",
117112
- "type": {
117113
- "text": "{\n validate: 'validate',\n resizechange: 'resizechange',\n }"
116872
+ "default": "'2'",
116873
+ "description": "Title level",
116874
+ "attribute": "level",
116875
+ "reflects": true,
116876
+ "inheritedFrom": {
116877
+ "name": "SbbTitleBase",
116878
+ "module": "title/title-base.js"
117114
116879
  }
117115
116880
  },
117116
116881
  {
117117
116882
  "kind": "field",
117118
- "name": "_stepResizeObserver",
117119
- "privacy": "private",
117120
- "default": "new ResizeController(this, { target: null, skipInitial: true, callback: () => setTimeout(() => this._onStepElementResize()), })"
117121
- },
117122
- {
117123
- "kind": "field",
117124
- "name": "label",
116883
+ "name": "visualLevel",
117125
116884
  "type": {
117126
- "text": "SbbStepLabelElement | null"
116885
+ "text": "SbbTitleLevel | null"
117127
116886
  },
117128
116887
  "privacy": "public",
117129
- "description": "The label of the step.",
117130
- "readonly": true,
117131
- "default": "null"
117132
- },
117133
- {
117134
- "kind": "field",
117135
- "name": "_label",
117136
- "type": {
117137
- "text": "SbbStepLabelElement | null"
117138
- },
117139
- "privacy": "private",
117140
- "default": "null"
116888
+ "default": "'5'",
116889
+ "description": "Visual level for the title.",
116890
+ "attribute": "visual-level",
116891
+ "reflects": true,
116892
+ "inheritedFrom": {
116893
+ "name": "SbbTitleBase",
116894
+ "module": "title/title-base.js"
116895
+ }
117141
116896
  },
117142
116897
  {
117143
116898
  "kind": "field",
117144
- "name": "stepper",
116899
+ "name": "role",
117145
116900
  "type": {
117146
- "text": "SbbStepperElement | null"
116901
+ "text": "string"
117147
116902
  },
117148
116903
  "privacy": "public",
117149
- "readonly": true
117150
- },
117151
- {
117152
- "kind": "field",
117153
- "name": "_previousOrientation",
117154
- "type": {
117155
- "text": "string | undefined"
117156
- },
117157
- "privacy": "private"
117158
- },
117159
- {
117160
- "kind": "method",
117161
- "name": "_handleClick",
117162
- "privacy": "private",
117163
- "return": {
117164
- "type": {
117165
- "text": "void"
117166
- }
117167
- },
117168
- "parameters": [
117169
- {
117170
- "name": "event",
117171
- "type": {
117172
- "text": "Event"
117173
- }
117174
- }
117175
- ],
117176
- "description": "Watches for clicked elements with `sbb-stepper-next` or `sbb-stepper-previous` attributes."
117177
- },
117178
- {
117179
- "kind": "method",
117180
- "name": "_isGoNextElement",
117181
- "privacy": "private",
117182
- "return": {
117183
- "type": {
117184
- "text": "boolean"
117185
- }
117186
- },
117187
- "parameters": [
117188
- {
117189
- "name": "element",
117190
- "type": {
117191
- "text": "HTMLElement"
117192
- }
117193
- }
117194
- ]
117195
- },
117196
- {
117197
- "kind": "method",
117198
- "name": "_isGoPreviousElement",
117199
- "privacy": "private",
117200
- "return": {
117201
- "type": {
117202
- "text": "boolean"
117203
- }
117204
- },
117205
- "parameters": [
117206
- {
117207
- "name": "element",
117208
- "type": {
117209
- "text": "HTMLElement"
117210
- }
117211
- }
117212
- ]
117213
- },
117214
- {
117215
- "kind": "method",
117216
- "name": "_onStepElementResize",
117217
- "privacy": "private",
117218
- "return": {
117219
- "type": {
117220
- "text": "void"
117221
- }
117222
- }
117223
- },
117224
- {
117225
- "kind": "method",
117226
- "name": "_assignLabel",
117227
- "privacy": "private",
117228
- "return": {
117229
- "type": {
117230
- "text": "void"
117231
- }
116904
+ "static": true,
116905
+ "default": "'heading'",
116906
+ "inheritedFrom": {
116907
+ "name": "SbbTitleBase",
116908
+ "module": "title/title-base.js"
117232
116909
  }
117233
116910
  },
117234
116911
  {
@@ -117337,30 +117014,49 @@
117337
117014
  }
117338
117015
  }
117339
117016
  ],
117340
- "events": [
117017
+ "attributes": [
117341
117018
  {
117342
- "name": "validate",
117019
+ "name": "level",
117343
117020
  "type": {
117344
- "text": "CustomEvent<SbbStepValidateEventDetails>"
117021
+ "text": "SbbTitleLevel"
117345
117022
  },
117346
- "description": "The validate event is dispatched when a step change is triggered. Can be canceled to abort the step change."
117023
+ "default": "'2'",
117024
+ "description": "Title level",
117025
+ "fieldName": "level",
117026
+ "inheritedFrom": {
117027
+ "name": "SbbTitleBase",
117028
+ "module": "title/title-base.js"
117029
+ }
117030
+ },
117031
+ {
117032
+ "name": "visual-level",
117033
+ "type": {
117034
+ "text": "SbbTitleLevel | null"
117035
+ },
117036
+ "default": "null",
117037
+ "description": "Visual level for the title.",
117038
+ "fieldName": "visualLevel",
117039
+ "inheritedFrom": {
117040
+ "name": "SbbTitleBase",
117041
+ "module": "title/title-base.js"
117042
+ }
117347
117043
  }
117348
117044
  ],
117349
117045
  "superclass": {
117350
- "name": "SbbElement",
117351
- "module": "core/base-elements.js"
117046
+ "name": "SbbTitleBase",
117047
+ "module": "title.js"
117352
117048
  },
117353
- "tagName": "sbb-step",
117049
+ "tagName": "sbb-sidebar-title",
117354
117050
  "customElement": true
117355
117051
  }
117356
117052
  ],
117357
117053
  "exports": [
117358
117054
  {
117359
117055
  "kind": "js",
117360
- "name": "SbbStepElement",
117056
+ "name": "SbbSidebarTitleElement",
117361
117057
  "declaration": {
117362
- "name": "SbbStepElement",
117363
- "module": "stepper/step/step.component.js"
117058
+ "name": "SbbSidebarTitleElement",
117059
+ "module": "sidebar/sidebar-title/sidebar-title.component.js"
117364
117060
  }
117365
117061
  }
117366
117062
  ]
@@ -118327,6 +118023,310 @@
118327
118023
  }
118328
118024
  ]
118329
118025
  },
118026
+ {
118027
+ "kind": "javascript-module",
118028
+ "path": "stepper/step/step.component.js",
118029
+ "declarations": [
118030
+ {
118031
+ "kind": "class",
118032
+ "description": "Combined with a `sbb-stepper`, it displays a step's content.",
118033
+ "name": "SbbStepElement",
118034
+ "slots": [
118035
+ {
118036
+ "description": "Use the unnamed slot to provide content.",
118037
+ "name": ""
118038
+ }
118039
+ ],
118040
+ "members": [
118041
+ {
118042
+ "kind": "field",
118043
+ "name": "elementName",
118044
+ "type": {
118045
+ "text": "string"
118046
+ },
118047
+ "privacy": "public",
118048
+ "static": true,
118049
+ "readonly": true,
118050
+ "default": "'sbb-step'",
118051
+ "inheritedFrom": {
118052
+ "name": "SbbElement",
118053
+ "module": "core/base-elements/element.js"
118054
+ }
118055
+ },
118056
+ {
118057
+ "kind": "field",
118058
+ "name": "role",
118059
+ "type": {
118060
+ "text": "string"
118061
+ },
118062
+ "privacy": "public",
118063
+ "static": true,
118064
+ "readonly": true,
118065
+ "default": "'tabpanel'"
118066
+ },
118067
+ {
118068
+ "kind": "field",
118069
+ "name": "events",
118070
+ "privacy": "public",
118071
+ "static": true,
118072
+ "readonly": true,
118073
+ "default": "{ validate: 'validate', resizechange: 'resizechange', }",
118074
+ "type": {
118075
+ "text": "{\n validate: 'validate',\n resizechange: 'resizechange',\n }"
118076
+ }
118077
+ },
118078
+ {
118079
+ "kind": "field",
118080
+ "name": "_stepResizeObserver",
118081
+ "privacy": "private",
118082
+ "default": "new ResizeController(this, { target: null, skipInitial: true, callback: () => setTimeout(() => this._onStepElementResize()), })"
118083
+ },
118084
+ {
118085
+ "kind": "field",
118086
+ "name": "label",
118087
+ "type": {
118088
+ "text": "SbbStepLabelElement | null"
118089
+ },
118090
+ "privacy": "public",
118091
+ "description": "The label of the step.",
118092
+ "readonly": true,
118093
+ "default": "null"
118094
+ },
118095
+ {
118096
+ "kind": "field",
118097
+ "name": "_label",
118098
+ "type": {
118099
+ "text": "SbbStepLabelElement | null"
118100
+ },
118101
+ "privacy": "private",
118102
+ "default": "null"
118103
+ },
118104
+ {
118105
+ "kind": "field",
118106
+ "name": "stepper",
118107
+ "type": {
118108
+ "text": "SbbStepperElement | null"
118109
+ },
118110
+ "privacy": "public",
118111
+ "readonly": true
118112
+ },
118113
+ {
118114
+ "kind": "field",
118115
+ "name": "_previousOrientation",
118116
+ "type": {
118117
+ "text": "string | undefined"
118118
+ },
118119
+ "privacy": "private"
118120
+ },
118121
+ {
118122
+ "kind": "method",
118123
+ "name": "_handleClick",
118124
+ "privacy": "private",
118125
+ "return": {
118126
+ "type": {
118127
+ "text": "void"
118128
+ }
118129
+ },
118130
+ "parameters": [
118131
+ {
118132
+ "name": "event",
118133
+ "type": {
118134
+ "text": "Event"
118135
+ }
118136
+ }
118137
+ ],
118138
+ "description": "Watches for clicked elements with `sbb-stepper-next` or `sbb-stepper-previous` attributes."
118139
+ },
118140
+ {
118141
+ "kind": "method",
118142
+ "name": "_isGoNextElement",
118143
+ "privacy": "private",
118144
+ "return": {
118145
+ "type": {
118146
+ "text": "boolean"
118147
+ }
118148
+ },
118149
+ "parameters": [
118150
+ {
118151
+ "name": "element",
118152
+ "type": {
118153
+ "text": "HTMLElement"
118154
+ }
118155
+ }
118156
+ ]
118157
+ },
118158
+ {
118159
+ "kind": "method",
118160
+ "name": "_isGoPreviousElement",
118161
+ "privacy": "private",
118162
+ "return": {
118163
+ "type": {
118164
+ "text": "boolean"
118165
+ }
118166
+ },
118167
+ "parameters": [
118168
+ {
118169
+ "name": "element",
118170
+ "type": {
118171
+ "text": "HTMLElement"
118172
+ }
118173
+ }
118174
+ ]
118175
+ },
118176
+ {
118177
+ "kind": "method",
118178
+ "name": "_onStepElementResize",
118179
+ "privacy": "private",
118180
+ "return": {
118181
+ "type": {
118182
+ "text": "void"
118183
+ }
118184
+ }
118185
+ },
118186
+ {
118187
+ "kind": "method",
118188
+ "name": "_assignLabel",
118189
+ "privacy": "private",
118190
+ "return": {
118191
+ "type": {
118192
+ "text": "void"
118193
+ }
118194
+ }
118195
+ },
118196
+ {
118197
+ "kind": "field",
118198
+ "name": "_hydrationRequired",
118199
+ "type": {
118200
+ "text": "boolean"
118201
+ },
118202
+ "privacy": "private",
118203
+ "default": "!!this.shadowRoot",
118204
+ "inheritedFrom": {
118205
+ "name": "SbbElement",
118206
+ "module": "core/base-elements/element.js"
118207
+ }
118208
+ },
118209
+ {
118210
+ "kind": "field",
118211
+ "name": "_hydrationComplete",
118212
+ "privacy": "private",
118213
+ "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
118214
+ "inheritedFrom": {
118215
+ "name": "SbbElement",
118216
+ "module": "core/base-elements/element.js"
118217
+ }
118218
+ },
118219
+ {
118220
+ "kind": "field",
118221
+ "name": "_resolveHydration",
118222
+ "type": {
118223
+ "text": "(hydrationRequired: boolean) => void"
118224
+ },
118225
+ "privacy": "private",
118226
+ "inheritedFrom": {
118227
+ "name": "SbbElement",
118228
+ "module": "core/base-elements/element.js"
118229
+ }
118230
+ },
118231
+ {
118232
+ "kind": "field",
118233
+ "name": "hydrationRequired",
118234
+ "type": {
118235
+ "text": "boolean"
118236
+ },
118237
+ "privacy": "protected",
118238
+ "description": "Returns whether hydration is required and not completed.",
118239
+ "readonly": true,
118240
+ "inheritedFrom": {
118241
+ "name": "SbbElement",
118242
+ "module": "core/base-elements/element.js"
118243
+ },
118244
+ "default": "!!this.shadowRoot"
118245
+ },
118246
+ {
118247
+ "kind": "method",
118248
+ "name": "toggleState",
118249
+ "privacy": "protected",
118250
+ "return": {
118251
+ "type": {
118252
+ "text": "void"
118253
+ }
118254
+ },
118255
+ "parameters": [
118256
+ {
118257
+ "name": "value",
118258
+ "type": {
118259
+ "text": "string"
118260
+ }
118261
+ },
118262
+ {
118263
+ "name": "force",
118264
+ "optional": true,
118265
+ "type": {
118266
+ "text": "boolean"
118267
+ }
118268
+ }
118269
+ ],
118270
+ "inheritedFrom": {
118271
+ "name": "SbbElement",
118272
+ "module": "core/base-elements/element.js"
118273
+ }
118274
+ },
118275
+ {
118276
+ "kind": "field",
118277
+ "name": "['_$sbbElement$']",
118278
+ "type": {
118279
+ "text": "boolean"
118280
+ },
118281
+ "privacy": "public",
118282
+ "static": true,
118283
+ "default": "true",
118284
+ "inheritedFrom": {
118285
+ "name": "SbbElement",
118286
+ "module": "core/base-elements/element.js"
118287
+ }
118288
+ },
118289
+ {
118290
+ "kind": "field",
118291
+ "name": "_controllers",
118292
+ "type": {
118293
+ "text": "Set<SbbReactiveController> | undefined"
118294
+ },
118295
+ "privacy": "private",
118296
+ "inheritedFrom": {
118297
+ "name": "SbbElement",
118298
+ "module": "core/base-elements/element.js"
118299
+ }
118300
+ }
118301
+ ],
118302
+ "events": [
118303
+ {
118304
+ "name": "validate",
118305
+ "type": {
118306
+ "text": "CustomEvent<SbbStepValidateEventDetails>"
118307
+ },
118308
+ "description": "The validate event is dispatched when a step change is triggered. Can be canceled to abort the step change."
118309
+ }
118310
+ ],
118311
+ "superclass": {
118312
+ "name": "SbbElement",
118313
+ "module": "core/base-elements.js"
118314
+ },
118315
+ "tagName": "sbb-step",
118316
+ "customElement": true
118317
+ }
118318
+ ],
118319
+ "exports": [
118320
+ {
118321
+ "kind": "js",
118322
+ "name": "SbbStepElement",
118323
+ "declaration": {
118324
+ "name": "SbbStepElement",
118325
+ "module": "stepper/step/step.component.js"
118326
+ }
118327
+ }
118328
+ ]
118329
+ },
118330
118330
  {
118331
118331
  "kind": "javascript-module",
118332
118332
  "path": "stepper/stepper/stepper.component.js",