@sbb-esta/lyne-elements-dev 5.0.0-next-dev.1777034079 → 5.0.0-next-dev.1777034920

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 +592 -592
  2. package/package.json +2 -2
@@ -148314,16 +148314,79 @@
148314
148314
  },
148315
148315
  {
148316
148316
  "kind": "javascript-module",
148317
- "path": "table/table-wrapper/table-wrapper.component.js",
148317
+ "path": "stepper/stepper/stepper.component.js",
148318
148318
  "declarations": [
148319
148319
  {
148320
148320
  "kind": "class",
148321
- "description": "Wraps a table to enhance its functionality.",
148322
- "name": "SbbTableWrapperElement",
148321
+ "description": "",
148322
+ "name": "SbbStepChangeEvent",
148323
+ "members": [
148324
+ {
148325
+ "kind": "field",
148326
+ "name": "selectedIndex",
148327
+ "type": {
148328
+ "text": "number | null"
148329
+ },
148330
+ "privacy": "public",
148331
+ "readonly": true,
148332
+ "description": "The index of the newly selected step.",
148333
+ "default": "selectedIndex"
148334
+ },
148335
+ {
148336
+ "kind": "field",
148337
+ "name": "previousIndex",
148338
+ "type": {
148339
+ "text": "number | null"
148340
+ },
148341
+ "privacy": "public",
148342
+ "readonly": true,
148343
+ "description": "The index of the previously selected step.",
148344
+ "default": "previousIndex"
148345
+ },
148346
+ {
148347
+ "kind": "field",
148348
+ "name": "selectedStep",
148349
+ "type": {
148350
+ "text": "SbbStepElement | null"
148351
+ },
148352
+ "privacy": "public",
148353
+ "readonly": true,
148354
+ "description": "The newly selected step element.",
148355
+ "default": "selectedStep"
148356
+ },
148357
+ {
148358
+ "kind": "field",
148359
+ "name": "previousStep",
148360
+ "type": {
148361
+ "text": "SbbStepElement | null"
148362
+ },
148363
+ "privacy": "public",
148364
+ "readonly": true,
148365
+ "description": "The previously selected step element.",
148366
+ "default": "previousStep"
148367
+ }
148368
+ ],
148369
+ "superclass": {
148370
+ "name": "Event",
148371
+ "module": "stepper/stepper/stepper.component.js"
148372
+ }
148373
+ },
148374
+ {
148375
+ "kind": "class",
148376
+ "description": "Provides a structured, step-by-step workflow for user interactions.",
148377
+ "name": "SbbStepperElement",
148323
148378
  "slots": [
148324
148379
  {
148325
- "description": "Use the unnamed slot to add the table.",
148380
+ "description": "Provide a `sbb-expansion-panel-header` and a `sbb-expansion-panel-content` to the stepper.",
148326
148381
  "name": ""
148382
+ },
148383
+ {
148384
+ "description": "Use this slot to provide an `sbb-step-label`.",
148385
+ "name": "step-label"
148386
+ },
148387
+ {
148388
+ "description": "Use this slot to provide an `sbb-step`.",
148389
+ "name": "step"
148327
148390
  }
148328
148391
  ],
148329
148392
  "members": [
@@ -148336,7 +148399,7 @@
148336
148399
  "privacy": "public",
148337
148400
  "static": true,
148338
148401
  "readonly": true,
148339
- "default": "'sbb-table-wrapper'",
148402
+ "default": "'sbb-stepper'",
148340
148403
  "inheritedFrom": {
148341
148404
  "name": "SbbElement",
148342
148405
  "module": "core/base-elements/element.js"
@@ -148344,211 +148407,212 @@
148344
148407
  },
148345
148408
  {
148346
148409
  "kind": "field",
148347
- "name": "role",
148348
- "type": {
148349
- "text": "string"
148350
- },
148410
+ "name": "events",
148351
148411
  "privacy": "public",
148352
148412
  "static": true,
148353
148413
  "readonly": true,
148354
- "default": "'section'",
148355
- "inheritedFrom": {
148356
- "name": "SbbElement",
148357
- "module": "core/base-elements/element.js"
148414
+ "default": "{ stepchange: 'stepchange', }",
148415
+ "type": {
148416
+ "text": "{\n stepchange: 'stepchange',\n }"
148358
148417
  }
148359
148418
  },
148360
148419
  {
148361
148420
  "kind": "field",
148362
- "name": "focusable",
148421
+ "name": "_observer",
148422
+ "privacy": "private",
148423
+ "default": "new IntersectionController(this, { target: null, callback: (entries) => { entries.forEach((e) => { if (e.intersectionRatio > 0) { this._setStepperHeight(this.selected); this._setMarkerSize(); } }); }, })",
148424
+ "description": "If the sbb-stepper is used in a sbb-dialog, the marker on the selected element will not appear,\nbecause the calculations are done when the dialog is closed, so the marker has a width of 0;\nthe same happens for the stepper height.\nWe need to recalculate it when the element becomes visible."
148425
+ },
148426
+ {
148427
+ "kind": "field",
148428
+ "name": "linear",
148363
148429
  "type": {
148364
148430
  "text": "boolean"
148365
148431
  },
148366
148432
  "privacy": "public",
148367
148433
  "default": "false",
148368
- "description": "Whether the table wrapper is focusable.",
148369
- "attribute": "focusable",
148370
- "reflects": true
148371
- },
148372
- {
148373
- "kind": "method",
148374
- "name": "_updateScrollbarClass",
148375
- "privacy": "private",
148376
- "return": {
148377
- "type": {
148378
- "text": "void"
148379
- }
148380
- }
148434
+ "description": "If set to true, only the current and previous labels can be clicked and selected.",
148435
+ "attribute": "linear"
148381
148436
  },
148382
148437
  {
148383
- "kind": "method",
148384
- "name": "_checkHorizontalScrollbarOffset",
148385
- "privacy": "private",
148386
- "return": {
148387
- "type": {
148388
- "text": "void"
148389
- }
148438
+ "kind": "field",
148439
+ "name": "horizontalFrom",
148440
+ "privacy": "public",
148441
+ "description": "Overrides the behavior of `orientation` property.",
148442
+ "type": {
148443
+ "text": "SbbHorizontalFrom | null"
148390
148444
  },
148391
- "description": "Calculates whether the table is horizontally scrolled and adds the\ncorresponding class `sbb-table-wrapper-offset-${none | left | right | both}`"
148445
+ "attribute": "horizontal-from",
148446
+ "reflects": true,
148447
+ "default": "null"
148392
148448
  },
148393
148449
  {
148394
- "kind": "method",
148395
- "name": "_calculateScrollOffset",
148450
+ "kind": "field",
148451
+ "name": "_horizontalFrom",
148452
+ "type": {
148453
+ "text": "SbbHorizontalFrom | null"
148454
+ },
148396
148455
  "privacy": "private",
148397
- "return": {
148398
- "type": {
148399
- "text": "'none' | 'left' | 'right' | 'both'"
148400
- }
148401
- }
148456
+ "default": "null"
148402
148457
  },
148403
148458
  {
148404
148459
  "kind": "field",
148405
- "name": "negative",
148460
+ "name": "orientation",
148406
148461
  "type": {
148407
- "text": "boolean"
148462
+ "text": "SbbOrientation"
148408
148463
  },
148409
148464
  "privacy": "public",
148410
- "default": "false",
148411
- "description": "Negative coloring variant flag.",
148412
- "attribute": "negative",
148413
- "reflects": true,
148414
- "inheritedFrom": {
148415
- "name": "SbbNegativeMixin",
148416
- "module": "core/mixins/negative-mixin.js"
148417
- }
148465
+ "default": "'horizontal'",
148466
+ "description": "Steps orientation, either horizontal or vertical.",
148467
+ "attribute": "orientation",
148468
+ "reflects": true
148418
148469
  },
148419
148470
  {
148420
148471
  "kind": "field",
148421
- "name": "['_$sbbElement$']",
148472
+ "name": "size",
148422
148473
  "type": {
148423
- "text": "boolean"
148474
+ "text": "'s' | 'm'"
148424
148475
  },
148425
148476
  "privacy": "public",
148426
- "static": true,
148427
- "default": "true",
148428
- "inheritedFrom": {
148429
- "name": "SbbElement",
148430
- "module": "core/base-elements/element.js"
148431
- }
148477
+ "description": "Size variant, either s or m.",
148478
+ "default": "'m' / 's' (lean)",
148479
+ "attribute": "size",
148480
+ "reflects": true
148432
148481
  },
148433
148482
  {
148434
148483
  "kind": "field",
148435
- "name": "elementDependencies",
148436
- "type": {
148437
- "text": "SbbElementType[] | undefined"
148438
- },
148484
+ "name": "selected",
148439
148485
  "privacy": "public",
148440
- "static": true,
148441
- "inheritedFrom": {
148442
- "name": "SbbElement",
148443
- "module": "core/base-elements/element.js"
148486
+ "description": "The currently selected step.",
148487
+ "type": {
148488
+ "text": "SbbStepElement | null"
148444
148489
  }
148445
148490
  },
148446
148491
  {
148447
148492
  "kind": "field",
148448
- "name": "_controllers",
148493
+ "name": "_requestedSelected",
148449
148494
  "type": {
148450
- "text": "Set<SbbReactiveController> | undefined"
148495
+ "text": "SbbStepElement | null"
148451
148496
  },
148452
148497
  "privacy": "private",
148453
- "inheritedFrom": {
148454
- "name": "SbbElement",
148455
- "module": "core/base-elements/element.js"
148456
- }
148498
+ "default": "null"
148457
148499
  },
148458
148500
  {
148459
148501
  "kind": "field",
148460
- "name": "_hydrationRequired",
148502
+ "name": "selectedIndex",
148503
+ "privacy": "public",
148504
+ "description": "The currently selected step index.",
148461
148505
  "type": {
148462
- "text": "boolean"
148506
+ "text": "number | null"
148463
148507
  },
148464
- "privacy": "private",
148465
- "default": "!!this.shadowRoot",
148466
- "inheritedFrom": {
148467
- "name": "SbbElement",
148468
- "module": "core/base-elements/element.js"
148469
- }
148508
+ "attribute": "selected-index"
148470
148509
  },
148471
148510
  {
148472
148511
  "kind": "field",
148473
- "name": "_hydrationComplete",
148512
+ "name": "_requestedSelectedIndex",
148513
+ "type": {
148514
+ "text": "number | null"
148515
+ },
148474
148516
  "privacy": "private",
148475
- "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
148476
- "inheritedFrom": {
148477
- "name": "SbbElement",
148478
- "module": "core/base-elements/element.js"
148479
- }
148517
+ "default": "null"
148480
148518
  },
148481
148519
  {
148482
148520
  "kind": "field",
148483
- "name": "_resolveHydration",
148521
+ "name": "steps",
148484
148522
  "type": {
148485
- "text": "(hydrationRequired: boolean) => void"
148523
+ "text": "SbbStepElement[]"
148486
148524
  },
148487
- "privacy": "private",
148488
- "inheritedFrom": {
148489
- "name": "SbbElement",
148490
- "module": "core/base-elements/element.js"
148491
- }
148525
+ "privacy": "public",
148526
+ "description": "The steps of the stepper.",
148527
+ "readonly": true
148492
148528
  },
148493
148529
  {
148494
148530
  "kind": "field",
148495
- "name": "_textObserver",
148531
+ "name": "_enabledSteps",
148496
148532
  "type": {
148497
- "text": "MutationObserver | undefined"
148533
+ "text": "SbbStepElement[]"
148498
148534
  },
148499
148535
  "privacy": "private",
148500
- "inheritedFrom": {
148501
- "name": "SbbElement",
148502
- "module": "core/base-elements/element.js"
148503
- }
148536
+ "readonly": true
148504
148537
  },
148505
148538
  {
148506
148539
  "kind": "field",
148507
- "name": "hydrationRequired",
148540
+ "name": "_loaded",
148508
148541
  "type": {
148509
148542
  "text": "boolean"
148510
148543
  },
148511
- "privacy": "protected",
148512
- "description": "Returns whether hydration is required and not completed.",
148513
- "readonly": true,
148514
- "inheritedFrom": {
148515
- "name": "SbbElement",
148516
- "module": "core/base-elements/element.js"
148544
+ "privacy": "private",
148545
+ "default": "false"
148546
+ },
148547
+ {
148548
+ "kind": "field",
148549
+ "name": "_resizeObserverTimeout",
148550
+ "type": {
148551
+ "text": "ReturnType<typeof setTimeout> | null"
148517
148552
  },
148518
- "default": "!!this.shadowRoot"
148553
+ "privacy": "private",
148554
+ "default": "null"
148519
148555
  },
148520
148556
  {
148521
- "kind": "method",
148522
- "name": "toggleState",
148523
- "privacy": "protected",
148557
+ "kind": "field",
148558
+ "name": "_mediaMatcher",
148559
+ "privacy": "private",
148560
+ "default": "new SbbMediaMatcherController(this, {})"
148561
+ },
148562
+ {
148563
+ "kind": "method",
148564
+ "name": "next",
148565
+ "privacy": "public",
148566
+ "return": {
148567
+ "type": {
148568
+ "text": "void"
148569
+ }
148570
+ },
148571
+ "description": "Selects the next step."
148572
+ },
148573
+ {
148574
+ "kind": "method",
148575
+ "name": "previous",
148576
+ "privacy": "public",
148577
+ "return": {
148578
+ "type": {
148579
+ "text": "void"
148580
+ }
148581
+ },
148582
+ "description": "Selects the previous step."
148583
+ },
148584
+ {
148585
+ "kind": "method",
148586
+ "name": "reset",
148587
+ "privacy": "public",
148524
148588
  "return": {
148525
148589
  "type": {
148526
148590
  "text": "void"
148527
148591
  }
148528
148592
  },
148593
+ "description": "Resets the form in which the stepper is nested or every form of each step, if any."
148594
+ },
148595
+ {
148596
+ "kind": "method",
148597
+ "name": "_isSelectable",
148598
+ "privacy": "private",
148599
+ "return": {
148600
+ "type": {
148601
+ "text": "step is SbbStepElement"
148602
+ }
148603
+ },
148529
148604
  "parameters": [
148530
148605
  {
148531
- "name": "value",
148532
- "type": {
148533
- "text": "string"
148534
- }
148535
- },
148536
- {
148537
- "name": "force",
148538
- "optional": true,
148606
+ "name": "step",
148539
148607
  "type": {
148540
- "text": "boolean"
148608
+ "text": "SbbStepElement | null"
148541
148609
  }
148542
148610
  }
148543
- ],
148544
- "inheritedFrom": {
148545
- "name": "SbbElement",
148546
- "module": "core/base-elements/element.js"
148547
- }
148611
+ ]
148548
148612
  },
148549
148613
  {
148550
148614
  "kind": "method",
148551
- "name": "_slotchangeHandler",
148615
+ "name": "_select",
148552
148616
  "privacy": "private",
148553
148617
  "return": {
148554
148618
  "type": {
@@ -148557,26 +148621,26 @@
148557
148621
  },
148558
148622
  "parameters": [
148559
148623
  {
148560
- "name": "event",
148561
- "type": {
148562
- "text": "Event"
148563
- }
148564
- },
148565
- {
148566
- "name": "slot",
148624
+ "name": "step",
148567
148625
  "type": {
148568
- "text": "HTMLSlotElement"
148626
+ "text": "SbbStepElement | null"
148569
148627
  }
148570
148628
  }
148571
- ],
148572
- "inheritedFrom": {
148573
- "name": "SbbElement",
148574
- "module": "core/base-elements/element.js"
148629
+ ]
148630
+ },
148631
+ {
148632
+ "kind": "method",
148633
+ "name": "_setMarkerSize",
148634
+ "privacy": "private",
148635
+ "return": {
148636
+ "type": {
148637
+ "text": "void"
148638
+ }
148575
148639
  }
148576
148640
  },
148577
148641
  {
148578
148642
  "kind": "method",
148579
- "name": "_handleSlotChangeForSlottedState",
148643
+ "name": "_setStepperHeight",
148580
148644
  "privacy": "private",
148581
148645
  "return": {
148582
148646
  "type": {
@@ -148585,20 +148649,27 @@
148585
148649
  },
148586
148650
  "parameters": [
148587
148651
  {
148588
- "name": "slot",
148652
+ "name": "step",
148589
148653
  "type": {
148590
- "text": "HTMLSlotElement"
148654
+ "text": "SbbStepElement | null"
148591
148655
  }
148592
148656
  }
148593
148657
  ],
148594
- "inheritedFrom": {
148595
- "name": "SbbElement",
148596
- "module": "core/base-elements/element.js"
148658
+ "description": "Sets the stepper height based on the height of the provided step."
148659
+ },
148660
+ {
148661
+ "kind": "method",
148662
+ "name": "_calculateLabelOffsetTop",
148663
+ "privacy": "private",
148664
+ "return": {
148665
+ "type": {
148666
+ "text": "number | undefined"
148667
+ }
148597
148668
  }
148598
148669
  },
148599
148670
  {
148600
148671
  "kind": "method",
148601
- "name": "_updateSlottedState",
148672
+ "name": "_onSelectedStepResize",
148602
148673
  "privacy": "private",
148603
148674
  "return": {
148604
148675
  "type": {
@@ -148607,199 +148678,111 @@
148607
148678
  },
148608
148679
  "parameters": [
148609
148680
  {
148610
- "name": "slot",
148681
+ "name": "e",
148611
148682
  "type": {
148612
- "text": "HTMLSlotElement"
148683
+ "text": "Event"
148613
148684
  }
148614
148685
  }
148615
- ],
148616
- "inheritedFrom": {
148617
- "name": "SbbElement",
148618
- "module": "core/base-elements/element.js"
148686
+ ]
148687
+ },
148688
+ {
148689
+ "kind": "method",
148690
+ "name": "_configure",
148691
+ "privacy": "private",
148692
+ "return": {
148693
+ "type": {
148694
+ "text": "void"
148695
+ }
148619
148696
  }
148620
148697
  },
148621
148698
  {
148622
148699
  "kind": "method",
148623
- "name": "_observeTextNodesInSlot",
148700
+ "name": "_updateLabels",
148624
148701
  "privacy": "private",
148625
148702
  "return": {
148626
148703
  "type": {
148627
148704
  "text": "void"
148628
148705
  }
148629
- },
148630
- "parameters": [
148631
- {
148632
- "name": "slot",
148633
- "type": {
148634
- "text": "HTMLSlotElement"
148635
- }
148706
+ }
148707
+ },
148708
+ {
148709
+ "kind": "method",
148710
+ "name": "_checkOrientation",
148711
+ "privacy": "private",
148712
+ "return": {
148713
+ "type": {
148714
+ "text": "void"
148636
148715
  }
148637
- ],
148638
- "inheritedFrom": {
148639
- "name": "SbbElement",
148640
- "module": "core/base-elements/element.js"
148641
148716
  }
148642
148717
  },
148718
+ {
148719
+ "kind": "field",
148720
+ "name": "_onStepperResize",
148721
+ "privacy": "private"
148722
+ },
148643
148723
  {
148644
148724
  "kind": "method",
148645
- "name": "_hasSlottedContent",
148725
+ "name": "_configureLinearMode",
148646
148726
  "privacy": "private",
148647
148727
  "return": {
148648
148728
  "type": {
148649
- "text": "boolean"
148729
+ "text": "void"
148730
+ }
148731
+ }
148732
+ },
148733
+ {
148734
+ "kind": "method",
148735
+ "name": "_handleKeyDown",
148736
+ "privacy": "private",
148737
+ "return": {
148738
+ "type": {
148739
+ "text": "void"
148650
148740
  }
148651
148741
  },
148652
148742
  "parameters": [
148653
148743
  {
148654
- "name": "slot",
148744
+ "name": "evt",
148655
148745
  "type": {
148656
- "text": "HTMLSlotElement"
148746
+ "text": "KeyboardEvent"
148657
148747
  }
148658
148748
  }
148659
- ],
148660
- "inheritedFrom": {
148661
- "name": "SbbElement",
148662
- "module": "core/base-elements/element.js"
148663
- }
148664
- }
148665
- ],
148666
- "attributes": [
148667
- {
148668
- "name": "focusable",
148669
- "type": {
148670
- "text": "boolean"
148671
- },
148672
- "default": "false",
148673
- "description": "Whether the table wrapper is focusable.",
148674
- "fieldName": "focusable"
148749
+ ]
148675
148750
  },
148676
148751
  {
148677
- "name": "negative",
148752
+ "kind": "field",
148753
+ "name": "['_$sbbElement$']",
148678
148754
  "type": {
148679
148755
  "text": "boolean"
148680
148756
  },
148681
- "default": "false",
148682
- "description": "Negative coloring variant flag.",
148683
- "fieldName": "negative",
148757
+ "privacy": "public",
148758
+ "static": true,
148759
+ "default": "true",
148684
148760
  "inheritedFrom": {
148685
- "name": "SbbNegativeMixin",
148686
- "module": "core/mixins/negative-mixin.js"
148761
+ "name": "SbbElement",
148762
+ "module": "core/base-elements/element.js"
148687
148763
  }
148688
- }
148689
- ],
148690
- "mixins": [
148691
- {
148692
- "name": "SbbNegativeMixin",
148693
- "module": "core.js"
148694
- }
148695
- ],
148696
- "superclass": {
148697
- "name": "SbbElement",
148698
- "module": "core.js"
148699
- },
148700
- "tagName": "sbb-table-wrapper",
148701
- "customElement": true
148702
- }
148703
- ],
148704
- "exports": [
148705
- {
148706
- "kind": "js",
148707
- "name": "SbbTableWrapperElement",
148708
- "declaration": {
148709
- "name": "SbbTableWrapperElement",
148710
- "module": "table/table-wrapper/table-wrapper.component.js"
148711
- }
148712
- }
148713
- ]
148714
- },
148715
- {
148716
- "kind": "javascript-module",
148717
- "path": "stepper/stepper/stepper.component.js",
148718
- "declarations": [
148719
- {
148720
- "kind": "class",
148721
- "description": "",
148722
- "name": "SbbStepChangeEvent",
148723
- "members": [
148764
+ },
148724
148765
  {
148725
148766
  "kind": "field",
148726
- "name": "selectedIndex",
148767
+ "name": "elementDependencies",
148727
148768
  "type": {
148728
- "text": "number | null"
148769
+ "text": "SbbElementType[] | undefined"
148729
148770
  },
148730
148771
  "privacy": "public",
148731
- "readonly": true,
148732
- "description": "The index of the newly selected step.",
148733
- "default": "selectedIndex"
148772
+ "static": true,
148773
+ "inheritedFrom": {
148774
+ "name": "SbbElement",
148775
+ "module": "core/base-elements/element.js"
148776
+ }
148734
148777
  },
148735
148778
  {
148736
148779
  "kind": "field",
148737
- "name": "previousIndex",
148780
+ "name": "role",
148738
148781
  "type": {
148739
- "text": "number | null"
148740
- },
148741
- "privacy": "public",
148742
- "readonly": true,
148743
- "description": "The index of the previously selected step.",
148744
- "default": "previousIndex"
148745
- },
148746
- {
148747
- "kind": "field",
148748
- "name": "selectedStep",
148749
- "type": {
148750
- "text": "SbbStepElement | null"
148751
- },
148752
- "privacy": "public",
148753
- "readonly": true,
148754
- "description": "The newly selected step element.",
148755
- "default": "selectedStep"
148756
- },
148757
- {
148758
- "kind": "field",
148759
- "name": "previousStep",
148760
- "type": {
148761
- "text": "SbbStepElement | null"
148762
- },
148763
- "privacy": "public",
148764
- "readonly": true,
148765
- "description": "The previously selected step element.",
148766
- "default": "previousStep"
148767
- }
148768
- ],
148769
- "superclass": {
148770
- "name": "Event",
148771
- "module": "stepper/stepper/stepper.component.js"
148772
- }
148773
- },
148774
- {
148775
- "kind": "class",
148776
- "description": "Provides a structured, step-by-step workflow for user interactions.",
148777
- "name": "SbbStepperElement",
148778
- "slots": [
148779
- {
148780
- "description": "Provide a `sbb-expansion-panel-header` and a `sbb-expansion-panel-content` to the stepper.",
148781
- "name": ""
148782
- },
148783
- {
148784
- "description": "Use this slot to provide an `sbb-step-label`.",
148785
- "name": "step-label"
148786
- },
148787
- {
148788
- "description": "Use this slot to provide an `sbb-step`.",
148789
- "name": "step"
148790
- }
148791
- ],
148792
- "members": [
148793
- {
148794
- "kind": "field",
148795
- "name": "elementName",
148796
- "type": {
148797
- "text": "string"
148782
+ "text": "ElementInternals['role'] | undefined"
148798
148783
  },
148799
148784
  "privacy": "public",
148800
148785
  "static": true,
148801
- "readonly": true,
148802
- "default": "'sbb-stepper'",
148803
148786
  "inheritedFrom": {
148804
148787
  "name": "SbbElement",
148805
148788
  "module": "core/base-elements/element.js"
@@ -148807,297 +148790,373 @@
148807
148790
  },
148808
148791
  {
148809
148792
  "kind": "field",
148810
- "name": "events",
148811
- "privacy": "public",
148812
- "static": true,
148813
- "readonly": true,
148814
- "default": "{ stepchange: 'stepchange', }",
148793
+ "name": "_controllers",
148815
148794
  "type": {
148816
- "text": "{\n stepchange: 'stepchange',\n }"
148817
- }
148818
- },
148819
- {
148820
- "kind": "field",
148821
- "name": "_observer",
148795
+ "text": "Set<SbbReactiveController> | undefined"
148796
+ },
148822
148797
  "privacy": "private",
148823
- "default": "new IntersectionController(this, { target: null, callback: (entries) => { entries.forEach((e) => { if (e.intersectionRatio > 0) { this._setStepperHeight(this.selected); this._setMarkerSize(); } }); }, })",
148824
- "description": "If the sbb-stepper is used in a sbb-dialog, the marker on the selected element will not appear,\nbecause the calculations are done when the dialog is closed, so the marker has a width of 0;\nthe same happens for the stepper height.\nWe need to recalculate it when the element becomes visible."
148798
+ "inheritedFrom": {
148799
+ "name": "SbbElement",
148800
+ "module": "core/base-elements/element.js"
148801
+ }
148825
148802
  },
148826
148803
  {
148827
148804
  "kind": "field",
148828
- "name": "linear",
148805
+ "name": "_hydrationRequired",
148829
148806
  "type": {
148830
148807
  "text": "boolean"
148831
148808
  },
148832
- "privacy": "public",
148833
- "default": "false",
148834
- "description": "If set to true, only the current and previous labels can be clicked and selected.",
148835
- "attribute": "linear"
148836
- },
148837
- {
148838
- "kind": "field",
148839
- "name": "horizontalFrom",
148840
- "privacy": "public",
148841
- "description": "Overrides the behavior of `orientation` property.",
148842
- "type": {
148843
- "text": "SbbHorizontalFrom | null"
148844
- },
148845
- "attribute": "horizontal-from",
148846
- "reflects": true,
148847
- "default": "null"
148848
- },
148849
- {
148850
- "kind": "field",
148851
- "name": "_horizontalFrom",
148852
- "type": {
148853
- "text": "SbbHorizontalFrom | null"
148854
- },
148855
148809
  "privacy": "private",
148856
- "default": "null"
148857
- },
148858
- {
148859
- "kind": "field",
148860
- "name": "orientation",
148861
- "type": {
148862
- "text": "SbbOrientation"
148863
- },
148864
- "privacy": "public",
148865
- "default": "'horizontal'",
148866
- "description": "Steps orientation, either horizontal or vertical.",
148867
- "attribute": "orientation",
148868
- "reflects": true
148869
- },
148870
- {
148871
- "kind": "field",
148872
- "name": "size",
148873
- "type": {
148874
- "text": "'s' | 'm'"
148875
- },
148876
- "privacy": "public",
148877
- "description": "Size variant, either s or m.",
148878
- "default": "'m' / 's' (lean)",
148879
- "attribute": "size",
148880
- "reflects": true
148881
- },
148882
- {
148883
- "kind": "field",
148884
- "name": "selected",
148885
- "privacy": "public",
148886
- "description": "The currently selected step.",
148887
- "type": {
148888
- "text": "SbbStepElement | null"
148810
+ "default": "!!this.shadowRoot",
148811
+ "inheritedFrom": {
148812
+ "name": "SbbElement",
148813
+ "module": "core/base-elements/element.js"
148889
148814
  }
148890
148815
  },
148891
148816
  {
148892
148817
  "kind": "field",
148893
- "name": "_requestedSelected",
148894
- "type": {
148895
- "text": "SbbStepElement | null"
148896
- },
148818
+ "name": "_hydrationComplete",
148897
148819
  "privacy": "private",
148898
- "default": "null"
148899
- },
148900
- {
148901
- "kind": "field",
148902
- "name": "selectedIndex",
148903
- "privacy": "public",
148904
- "description": "The currently selected step index.",
148905
- "type": {
148906
- "text": "number | null"
148907
- },
148908
- "attribute": "selected-index"
148820
+ "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
148821
+ "inheritedFrom": {
148822
+ "name": "SbbElement",
148823
+ "module": "core/base-elements/element.js"
148824
+ }
148909
148825
  },
148910
148826
  {
148911
148827
  "kind": "field",
148912
- "name": "_requestedSelectedIndex",
148828
+ "name": "_resolveHydration",
148913
148829
  "type": {
148914
- "text": "number | null"
148830
+ "text": "(hydrationRequired: boolean) => void"
148915
148831
  },
148916
148832
  "privacy": "private",
148917
- "default": "null"
148918
- },
148919
- {
148920
- "kind": "field",
148921
- "name": "steps",
148922
- "type": {
148923
- "text": "SbbStepElement[]"
148924
- },
148925
- "privacy": "public",
148926
- "description": "The steps of the stepper.",
148927
- "readonly": true
148833
+ "inheritedFrom": {
148834
+ "name": "SbbElement",
148835
+ "module": "core/base-elements/element.js"
148836
+ }
148928
148837
  },
148929
148838
  {
148930
148839
  "kind": "field",
148931
- "name": "_enabledSteps",
148840
+ "name": "_textObserver",
148932
148841
  "type": {
148933
- "text": "SbbStepElement[]"
148842
+ "text": "MutationObserver | undefined"
148934
148843
  },
148935
148844
  "privacy": "private",
148936
- "readonly": true
148845
+ "inheritedFrom": {
148846
+ "name": "SbbElement",
148847
+ "module": "core/base-elements/element.js"
148848
+ }
148937
148849
  },
148938
148850
  {
148939
148851
  "kind": "field",
148940
- "name": "_loaded",
148852
+ "name": "hydrationRequired",
148941
148853
  "type": {
148942
148854
  "text": "boolean"
148943
148855
  },
148944
- "privacy": "private",
148945
- "default": "false"
148856
+ "privacy": "protected",
148857
+ "description": "Returns whether hydration is required and not completed.",
148858
+ "readonly": true,
148859
+ "inheritedFrom": {
148860
+ "name": "SbbElement",
148861
+ "module": "core/base-elements/element.js"
148862
+ },
148863
+ "default": "!!this.shadowRoot"
148946
148864
  },
148947
148865
  {
148948
- "kind": "field",
148949
- "name": "_resizeObserverTimeout",
148950
- "type": {
148951
- "text": "ReturnType<typeof setTimeout> | null"
148866
+ "kind": "method",
148867
+ "name": "toggleState",
148868
+ "privacy": "protected",
148869
+ "return": {
148870
+ "type": {
148871
+ "text": "void"
148872
+ }
148952
148873
  },
148953
- "privacy": "private",
148954
- "default": "null"
148874
+ "parameters": [
148875
+ {
148876
+ "name": "value",
148877
+ "type": {
148878
+ "text": "string"
148879
+ }
148880
+ },
148881
+ {
148882
+ "name": "force",
148883
+ "optional": true,
148884
+ "type": {
148885
+ "text": "boolean"
148886
+ }
148887
+ }
148888
+ ],
148889
+ "inheritedFrom": {
148890
+ "name": "SbbElement",
148891
+ "module": "core/base-elements/element.js"
148892
+ }
148955
148893
  },
148956
148894
  {
148957
- "kind": "field",
148958
- "name": "_mediaMatcher",
148895
+ "kind": "method",
148896
+ "name": "_slotchangeHandler",
148959
148897
  "privacy": "private",
148960
- "default": "new SbbMediaMatcherController(this, {})"
148898
+ "return": {
148899
+ "type": {
148900
+ "text": "void"
148901
+ }
148902
+ },
148903
+ "parameters": [
148904
+ {
148905
+ "name": "event",
148906
+ "type": {
148907
+ "text": "Event"
148908
+ }
148909
+ },
148910
+ {
148911
+ "name": "slot",
148912
+ "type": {
148913
+ "text": "HTMLSlotElement"
148914
+ }
148915
+ }
148916
+ ],
148917
+ "inheritedFrom": {
148918
+ "name": "SbbElement",
148919
+ "module": "core/base-elements/element.js"
148920
+ }
148961
148921
  },
148962
148922
  {
148963
148923
  "kind": "method",
148964
- "name": "next",
148965
- "privacy": "public",
148924
+ "name": "_handleSlotChangeForSlottedState",
148925
+ "privacy": "private",
148966
148926
  "return": {
148967
148927
  "type": {
148968
148928
  "text": "void"
148969
148929
  }
148970
148930
  },
148971
- "description": "Selects the next step."
148931
+ "parameters": [
148932
+ {
148933
+ "name": "slot",
148934
+ "type": {
148935
+ "text": "HTMLSlotElement"
148936
+ }
148937
+ }
148938
+ ],
148939
+ "inheritedFrom": {
148940
+ "name": "SbbElement",
148941
+ "module": "core/base-elements/element.js"
148942
+ }
148972
148943
  },
148973
148944
  {
148974
148945
  "kind": "method",
148975
- "name": "previous",
148976
- "privacy": "public",
148946
+ "name": "_updateSlottedState",
148947
+ "privacy": "private",
148977
148948
  "return": {
148978
148949
  "type": {
148979
148950
  "text": "void"
148980
148951
  }
148981
148952
  },
148982
- "description": "Selects the previous step."
148953
+ "parameters": [
148954
+ {
148955
+ "name": "slot",
148956
+ "type": {
148957
+ "text": "HTMLSlotElement"
148958
+ }
148959
+ }
148960
+ ],
148961
+ "inheritedFrom": {
148962
+ "name": "SbbElement",
148963
+ "module": "core/base-elements/element.js"
148964
+ }
148983
148965
  },
148984
148966
  {
148985
148967
  "kind": "method",
148986
- "name": "reset",
148987
- "privacy": "public",
148968
+ "name": "_observeTextNodesInSlot",
148969
+ "privacy": "private",
148988
148970
  "return": {
148989
148971
  "type": {
148990
148972
  "text": "void"
148991
148973
  }
148992
148974
  },
148993
- "description": "Resets the form in which the stepper is nested or every form of each step, if any."
148975
+ "parameters": [
148976
+ {
148977
+ "name": "slot",
148978
+ "type": {
148979
+ "text": "HTMLSlotElement"
148980
+ }
148981
+ }
148982
+ ],
148983
+ "inheritedFrom": {
148984
+ "name": "SbbElement",
148985
+ "module": "core/base-elements/element.js"
148986
+ }
148994
148987
  },
148995
148988
  {
148996
148989
  "kind": "method",
148997
- "name": "_isSelectable",
148990
+ "name": "_hasSlottedContent",
148998
148991
  "privacy": "private",
148999
148992
  "return": {
149000
148993
  "type": {
149001
- "text": "step is SbbStepElement"
148994
+ "text": "boolean"
149002
148995
  }
149003
148996
  },
149004
148997
  "parameters": [
149005
148998
  {
149006
- "name": "step",
148999
+ "name": "slot",
149007
149000
  "type": {
149008
- "text": "SbbStepElement | null"
149001
+ "text": "HTMLSlotElement"
149009
149002
  }
149010
149003
  }
149011
- ]
149004
+ ],
149005
+ "inheritedFrom": {
149006
+ "name": "SbbElement",
149007
+ "module": "core/base-elements/element.js"
149008
+ }
149009
+ }
149010
+ ],
149011
+ "events": [
149012
+ {
149013
+ "type": {
149014
+ "text": "SbbStepChangeEvent"
149015
+ },
149016
+ "description": "Emits whenever a step was changed.",
149017
+ "name": "stepchange"
149018
+ }
149019
+ ],
149020
+ "attributes": [
149021
+ {
149022
+ "name": "linear",
149023
+ "type": {
149024
+ "text": "boolean"
149025
+ },
149026
+ "default": "false",
149027
+ "description": "If set to true, only the current and previous labels can be clicked and selected.",
149028
+ "fieldName": "linear"
149029
+ },
149030
+ {
149031
+ "name": "horizontal-from",
149032
+ "description": "Overrides the behavior of `orientation` property.",
149033
+ "type": {
149034
+ "text": "SbbHorizontalFrom | null"
149035
+ },
149036
+ "fieldName": "horizontalFrom"
149037
+ },
149038
+ {
149039
+ "name": "orientation",
149040
+ "type": {
149041
+ "text": "SbbOrientation"
149042
+ },
149043
+ "default": "'horizontal'",
149044
+ "description": "Steps orientation, either horizontal or vertical.",
149045
+ "fieldName": "orientation"
149046
+ },
149047
+ {
149048
+ "name": "size",
149049
+ "type": {
149050
+ "text": "'s' | 'm'"
149051
+ },
149052
+ "description": "Size variant, either s or m.",
149053
+ "default": "'m' / 's' (lean)",
149054
+ "fieldName": "size"
149012
149055
  },
149013
149056
  {
149014
- "kind": "method",
149015
- "name": "_select",
149016
- "privacy": "private",
149017
- "return": {
149018
- "type": {
149019
- "text": "void"
149020
- }
149021
- },
149022
- "parameters": [
149023
- {
149024
- "name": "step",
149025
- "type": {
149026
- "text": "SbbStepElement | null"
149027
- }
149028
- }
149029
- ]
149030
- },
149057
+ "name": "selected-index",
149058
+ "description": "The currently selected step index.",
149059
+ "type": {
149060
+ "text": "number | null"
149061
+ },
149062
+ "fieldName": "selectedIndex"
149063
+ }
149064
+ ],
149065
+ "superclass": {
149066
+ "name": "SbbElement",
149067
+ "module": "core.js"
149068
+ },
149069
+ "tagName": "sbb-stepper",
149070
+ "customElement": true
149071
+ },
149072
+ {
149073
+ "kind": "variable",
149074
+ "name": "currentIndex"
149075
+ },
149076
+ {
149077
+ "kind": "variable",
149078
+ "name": "currentStep"
149079
+ }
149080
+ ],
149081
+ "exports": [
149082
+ {
149083
+ "kind": "js",
149084
+ "name": "SbbStepChangeEvent",
149085
+ "declaration": {
149086
+ "name": "SbbStepChangeEvent",
149087
+ "module": "stepper/stepper/stepper.component.js"
149088
+ }
149089
+ },
149090
+ {
149091
+ "kind": "js",
149092
+ "name": "SbbStepperElement",
149093
+ "declaration": {
149094
+ "name": "SbbStepperElement",
149095
+ "module": "stepper/stepper/stepper.component.js"
149096
+ }
149097
+ }
149098
+ ]
149099
+ },
149100
+ {
149101
+ "kind": "javascript-module",
149102
+ "path": "table/table-wrapper/table-wrapper.component.js",
149103
+ "declarations": [
149104
+ {
149105
+ "kind": "class",
149106
+ "description": "Wraps a table to enhance its functionality.",
149107
+ "name": "SbbTableWrapperElement",
149108
+ "slots": [
149109
+ {
149110
+ "description": "Use the unnamed slot to add the table.",
149111
+ "name": ""
149112
+ }
149113
+ ],
149114
+ "members": [
149031
149115
  {
149032
- "kind": "method",
149033
- "name": "_setMarkerSize",
149034
- "privacy": "private",
149035
- "return": {
149036
- "type": {
149037
- "text": "void"
149038
- }
149116
+ "kind": "field",
149117
+ "name": "elementName",
149118
+ "type": {
149119
+ "text": "string"
149120
+ },
149121
+ "privacy": "public",
149122
+ "static": true,
149123
+ "readonly": true,
149124
+ "default": "'sbb-table-wrapper'",
149125
+ "inheritedFrom": {
149126
+ "name": "SbbElement",
149127
+ "module": "core/base-elements/element.js"
149039
149128
  }
149040
149129
  },
149041
149130
  {
149042
- "kind": "method",
149043
- "name": "_setStepperHeight",
149044
- "privacy": "private",
149045
- "return": {
149046
- "type": {
149047
- "text": "void"
149048
- }
149131
+ "kind": "field",
149132
+ "name": "role",
149133
+ "type": {
149134
+ "text": "string"
149049
149135
  },
149050
- "parameters": [
149051
- {
149052
- "name": "step",
149053
- "type": {
149054
- "text": "SbbStepElement | null"
149055
- }
149056
- }
149057
- ],
149058
- "description": "Sets the stepper height based on the height of the provided step."
149059
- },
149060
- {
149061
- "kind": "method",
149062
- "name": "_calculateLabelOffsetTop",
149063
- "privacy": "private",
149064
- "return": {
149065
- "type": {
149066
- "text": "number | undefined"
149067
- }
149136
+ "privacy": "public",
149137
+ "static": true,
149138
+ "readonly": true,
149139
+ "default": "'section'",
149140
+ "inheritedFrom": {
149141
+ "name": "SbbElement",
149142
+ "module": "core/base-elements/element.js"
149068
149143
  }
149069
149144
  },
149070
149145
  {
149071
- "kind": "method",
149072
- "name": "_onSelectedStepResize",
149073
- "privacy": "private",
149074
- "return": {
149075
- "type": {
149076
- "text": "void"
149077
- }
149146
+ "kind": "field",
149147
+ "name": "focusable",
149148
+ "type": {
149149
+ "text": "boolean"
149078
149150
  },
149079
- "parameters": [
149080
- {
149081
- "name": "e",
149082
- "type": {
149083
- "text": "Event"
149084
- }
149085
- }
149086
- ]
149087
- },
149088
- {
149089
- "kind": "method",
149090
- "name": "_configure",
149091
- "privacy": "private",
149092
- "return": {
149093
- "type": {
149094
- "text": "void"
149095
- }
149096
- }
149151
+ "privacy": "public",
149152
+ "default": "false",
149153
+ "description": "Whether the table wrapper is focusable.",
149154
+ "attribute": "focusable",
149155
+ "reflects": true
149097
149156
  },
149098
149157
  {
149099
149158
  "kind": "method",
149100
- "name": "_updateLabels",
149159
+ "name": "_updateScrollbarClass",
149101
149160
  "privacy": "private",
149102
149161
  "return": {
149103
149162
  "type": {
@@ -149107,69 +149166,50 @@
149107
149166
  },
149108
149167
  {
149109
149168
  "kind": "method",
149110
- "name": "_checkOrientation",
149169
+ "name": "_checkHorizontalScrollbarOffset",
149111
149170
  "privacy": "private",
149112
149171
  "return": {
149113
149172
  "type": {
149114
149173
  "text": "void"
149115
149174
  }
149116
- }
149117
- },
149118
- {
149119
- "kind": "field",
149120
- "name": "_onStepperResize",
149121
- "privacy": "private"
149175
+ },
149176
+ "description": "Calculates whether the table is horizontally scrolled and adds the\ncorresponding class `sbb-table-wrapper-offset-${none | left | right | both}`"
149122
149177
  },
149123
149178
  {
149124
149179
  "kind": "method",
149125
- "name": "_configureLinearMode",
149180
+ "name": "_calculateScrollOffset",
149126
149181
  "privacy": "private",
149127
149182
  "return": {
149128
149183
  "type": {
149129
- "text": "void"
149184
+ "text": "'none' | 'left' | 'right' | 'both'"
149130
149185
  }
149131
149186
  }
149132
149187
  },
149133
- {
149134
- "kind": "method",
149135
- "name": "_handleKeyDown",
149136
- "privacy": "private",
149137
- "return": {
149138
- "type": {
149139
- "text": "void"
149140
- }
149141
- },
149142
- "parameters": [
149143
- {
149144
- "name": "evt",
149145
- "type": {
149146
- "text": "KeyboardEvent"
149147
- }
149148
- }
149149
- ]
149150
- },
149151
149188
  {
149152
149189
  "kind": "field",
149153
- "name": "['_$sbbElement$']",
149190
+ "name": "negative",
149154
149191
  "type": {
149155
149192
  "text": "boolean"
149156
149193
  },
149157
149194
  "privacy": "public",
149158
- "static": true,
149159
- "default": "true",
149195
+ "default": "false",
149196
+ "description": "Negative coloring variant flag.",
149197
+ "attribute": "negative",
149198
+ "reflects": true,
149160
149199
  "inheritedFrom": {
149161
- "name": "SbbElement",
149162
- "module": "core/base-elements/element.js"
149200
+ "name": "SbbNegativeMixin",
149201
+ "module": "core/mixins/negative-mixin.js"
149163
149202
  }
149164
149203
  },
149165
149204
  {
149166
149205
  "kind": "field",
149167
- "name": "elementDependencies",
149206
+ "name": "['_$sbbElement$']",
149168
149207
  "type": {
149169
- "text": "SbbElementType[] | undefined"
149208
+ "text": "boolean"
149170
149209
  },
149171
149210
  "privacy": "public",
149172
149211
  "static": true,
149212
+ "default": "true",
149173
149213
  "inheritedFrom": {
149174
149214
  "name": "SbbElement",
149175
149215
  "module": "core/base-elements/element.js"
@@ -149177,9 +149217,9 @@
149177
149217
  },
149178
149218
  {
149179
149219
  "kind": "field",
149180
- "name": "role",
149220
+ "name": "elementDependencies",
149181
149221
  "type": {
149182
- "text": "ElementInternals['role'] | undefined"
149222
+ "text": "SbbElementType[] | undefined"
149183
149223
  },
149184
149224
  "privacy": "public",
149185
149225
  "static": true,
@@ -149408,91 +149448,51 @@
149408
149448
  }
149409
149449
  }
149410
149450
  ],
149411
- "events": [
149412
- {
149413
- "type": {
149414
- "text": "SbbStepChangeEvent"
149415
- },
149416
- "description": "Emits whenever a step was changed.",
149417
- "name": "stepchange"
149418
- }
149419
- ],
149420
149451
  "attributes": [
149421
149452
  {
149422
- "name": "linear",
149453
+ "name": "focusable",
149423
149454
  "type": {
149424
149455
  "text": "boolean"
149425
149456
  },
149426
149457
  "default": "false",
149427
- "description": "If set to true, only the current and previous labels can be clicked and selected.",
149428
- "fieldName": "linear"
149429
- },
149430
- {
149431
- "name": "horizontal-from",
149432
- "description": "Overrides the behavior of `orientation` property.",
149433
- "type": {
149434
- "text": "SbbHorizontalFrom | null"
149435
- },
149436
- "fieldName": "horizontalFrom"
149437
- },
149438
- {
149439
- "name": "orientation",
149440
- "type": {
149441
- "text": "SbbOrientation"
149442
- },
149443
- "default": "'horizontal'",
149444
- "description": "Steps orientation, either horizontal or vertical.",
149445
- "fieldName": "orientation"
149458
+ "description": "Whether the table wrapper is focusable.",
149459
+ "fieldName": "focusable"
149446
149460
  },
149447
149461
  {
149448
- "name": "size",
149462
+ "name": "negative",
149449
149463
  "type": {
149450
- "text": "'s' | 'm'"
149464
+ "text": "boolean"
149451
149465
  },
149452
- "description": "Size variant, either s or m.",
149453
- "default": "'m' / 's' (lean)",
149454
- "fieldName": "size"
149455
- },
149466
+ "default": "false",
149467
+ "description": "Negative coloring variant flag.",
149468
+ "fieldName": "negative",
149469
+ "inheritedFrom": {
149470
+ "name": "SbbNegativeMixin",
149471
+ "module": "core/mixins/negative-mixin.js"
149472
+ }
149473
+ }
149474
+ ],
149475
+ "mixins": [
149456
149476
  {
149457
- "name": "selected-index",
149458
- "description": "The currently selected step index.",
149459
- "type": {
149460
- "text": "number | null"
149461
- },
149462
- "fieldName": "selectedIndex"
149477
+ "name": "SbbNegativeMixin",
149478
+ "module": "core.js"
149463
149479
  }
149464
149480
  ],
149465
149481
  "superclass": {
149466
149482
  "name": "SbbElement",
149467
149483
  "module": "core.js"
149468
149484
  },
149469
- "tagName": "sbb-stepper",
149485
+ "tagName": "sbb-table-wrapper",
149470
149486
  "customElement": true
149471
- },
149472
- {
149473
- "kind": "variable",
149474
- "name": "currentIndex"
149475
- },
149476
- {
149477
- "kind": "variable",
149478
- "name": "currentStep"
149479
149487
  }
149480
149488
  ],
149481
149489
  "exports": [
149482
149490
  {
149483
149491
  "kind": "js",
149484
- "name": "SbbStepChangeEvent",
149485
- "declaration": {
149486
- "name": "SbbStepChangeEvent",
149487
- "module": "stepper/stepper/stepper.component.js"
149488
- }
149489
- },
149490
- {
149491
- "kind": "js",
149492
- "name": "SbbStepperElement",
149492
+ "name": "SbbTableWrapperElement",
149493
149493
  "declaration": {
149494
- "name": "SbbStepperElement",
149495
- "module": "stepper/stepper/stepper.component.js"
149494
+ "name": "SbbTableWrapperElement",
149495
+ "module": "table/table-wrapper/table-wrapper.component.js"
149496
149496
  }
149497
149497
  }
149498
149498
  ]