@sbb-esta/lyne-elements 4.1.0 → 4.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/breadcrumb/breadcrumb-group/breadcrumb-group.component.js +7 -7
- package/calendar/calendar.component.js +52 -52
- package/card/card/card.component.js +14 -14
- package/core/interfaces/overlay-close-details.d.ts +1 -0
- package/core/interfaces/overlay-close-details.d.ts.map +1 -1
- package/core/styles/mixins/buttons.scss +1 -2
- package/core/styles/mixins/card.scss +9 -3
- package/core/styles/mixins/inputs.scss +1 -1
- package/core/styles/normalize.scss +4 -6
- package/core.css +4 -4
- package/custom-elements.json +578 -293
- package/development/breadcrumb/breadcrumb-group/breadcrumb-group.component.js +2 -3
- package/development/calendar/calendar.component.js +3 -5
- package/development/card/card/card.component.js +11 -1
- package/development/core/interfaces/overlay-close-details.d.ts +1 -0
- package/development/core/interfaces/overlay-close-details.d.ts.map +1 -1
- package/development/dialog/dialog/dialog.component.d.ts +4 -0
- package/development/dialog/dialog/dialog.component.d.ts.map +1 -1
- package/development/dialog/dialog/dialog.component.js +23 -3
- package/development/dialog/dialog.js +5 -2
- package/development/dialog.js +5 -2
- package/development/flip-card/flip-card/flip-card.component.js +2 -3
- package/development/option/option-hint/option-hint.component.js +2 -1
- package/development/overlay/overlay-base-element.d.ts +29 -3
- package/development/overlay/overlay-base-element.d.ts.map +1 -1
- package/development/overlay/overlay-base-element.js +19 -15
- package/development/overlay/overlay.component.d.ts +3 -0
- package/development/overlay/overlay.component.d.ts.map +1 -1
- package/development/overlay/overlay.component.js +19 -2
- package/development/overlay.js +3 -1
- package/development/paginator/paginator/paginator.component.js +2 -3
- package/development/stepper/step/step.component.d.ts +4 -0
- package/development/stepper/step/step.component.d.ts.map +1 -1
- package/development/stepper/step/step.component.js +5 -1
- package/development/stepper/stepper/stepper.component.d.ts +15 -0
- package/development/stepper/stepper/stepper.component.d.ts.map +1 -1
- package/development/stepper/stepper/stepper.component.js +19 -4
- package/development/stepper/stepper.js +2 -1
- package/development/stepper.js +2 -1
- package/dialog/dialog/dialog.component.d.ts +4 -0
- package/dialog/dialog/dialog.component.d.ts.map +1 -1
- package/dialog/dialog/dialog.component.js +46 -26
- package/dialog/dialog.js +5 -2
- package/dialog.js +9 -6
- package/flip-card/flip-card/flip-card.component.js +11 -11
- package/normalize.css +4 -6
- package/off-brand-theme.css +8 -10
- package/option/option-hint/option-hint.component.js +7 -7
- package/overlay/overlay-base-element.d.ts +29 -3
- package/overlay/overlay-base-element.d.ts.map +1 -1
- package/overlay/overlay-base-element.js +51 -54
- package/overlay/overlay.component.d.ts +3 -0
- package/overlay/overlay.component.d.ts.map +1 -1
- package/overlay/overlay.component.js +48 -31
- package/overlay.js +7 -5
- package/package.json +1 -1
- package/paginator/paginator/paginator.component.js +1 -1
- package/safety-theme.css +8 -10
- package/standard-theme.css +8 -10
- package/stepper/step/step.component.d.ts +4 -0
- package/stepper/step/step.component.d.ts.map +1 -1
- package/stepper/step/step.component.js +4 -0
- package/stepper/stepper/stepper.component.d.ts +15 -0
- package/stepper/stepper/stepper.component.d.ts.map +1 -1
- package/stepper/stepper/stepper.component.js +41 -33
- package/stepper/stepper.js +3 -2
- package/stepper.js +4 -3
package/custom-elements.json
CHANGED
|
@@ -13270,6 +13270,61 @@
|
|
|
13270
13270
|
"kind": "javascript-module",
|
|
13271
13271
|
"path": "overlay/overlay-base-element.js",
|
|
13272
13272
|
"declarations": [
|
|
13273
|
+
{
|
|
13274
|
+
"kind": "class",
|
|
13275
|
+
"description": "",
|
|
13276
|
+
"name": "SbbOverlayCloseEvent",
|
|
13277
|
+
"members": [
|
|
13278
|
+
{
|
|
13279
|
+
"kind": "field",
|
|
13280
|
+
"name": "result",
|
|
13281
|
+
"type": {
|
|
13282
|
+
"text": "T | null"
|
|
13283
|
+
},
|
|
13284
|
+
"privacy": "public",
|
|
13285
|
+
"readonly": true,
|
|
13286
|
+
"description": "The result associated with the closed overlay.\nThis is either the result assigned to the `closeTarget` via\n`assignOverlayResult` / `assignDialogResult` or the value of the\ncorresponding close attribute on the `closeTarget`\n(e.g. sbb-overlay-close=\"my-result\" or sbb-dialog-close=\"my-result\")."
|
|
13287
|
+
},
|
|
13288
|
+
{
|
|
13289
|
+
"kind": "field",
|
|
13290
|
+
"name": "closeTarget",
|
|
13291
|
+
"type": {
|
|
13292
|
+
"text": "HTMLElement | null"
|
|
13293
|
+
},
|
|
13294
|
+
"privacy": "public",
|
|
13295
|
+
"readonly": true,
|
|
13296
|
+
"description": "The element that was used to close the overlay/dialog, i.e. the element that the\nuser clicked on that had the close attribute.\nEmpty if closed programmatically or via Escape press."
|
|
13297
|
+
}
|
|
13298
|
+
],
|
|
13299
|
+
"superclass": {
|
|
13300
|
+
"name": "CustomEvent",
|
|
13301
|
+
"module": "overlay/overlay-base-element.js"
|
|
13302
|
+
},
|
|
13303
|
+
"classGenerics": "T = any"
|
|
13304
|
+
},
|
|
13305
|
+
{
|
|
13306
|
+
"kind": "function",
|
|
13307
|
+
"name": "assignOverlayResult",
|
|
13308
|
+
"return": {
|
|
13309
|
+
"type": {
|
|
13310
|
+
"text": "void"
|
|
13311
|
+
}
|
|
13312
|
+
},
|
|
13313
|
+
"parameters": [
|
|
13314
|
+
{
|
|
13315
|
+
"name": "element",
|
|
13316
|
+
"type": {
|
|
13317
|
+
"text": "HTMLElement"
|
|
13318
|
+
}
|
|
13319
|
+
},
|
|
13320
|
+
{
|
|
13321
|
+
"name": "result",
|
|
13322
|
+
"type": {
|
|
13323
|
+
"text": "T"
|
|
13324
|
+
}
|
|
13325
|
+
}
|
|
13326
|
+
]
|
|
13327
|
+
},
|
|
13273
13328
|
{
|
|
13274
13329
|
"kind": "variable",
|
|
13275
13330
|
"name": "overlayRefs",
|
|
@@ -13458,6 +13513,52 @@
|
|
|
13458
13513
|
}
|
|
13459
13514
|
}
|
|
13460
13515
|
},
|
|
13516
|
+
{
|
|
13517
|
+
"kind": "method",
|
|
13518
|
+
"name": "dispatchBeforeCloseEvent",
|
|
13519
|
+
"privacy": "protected",
|
|
13520
|
+
"return": {
|
|
13521
|
+
"type": {
|
|
13522
|
+
"text": "boolean"
|
|
13523
|
+
}
|
|
13524
|
+
},
|
|
13525
|
+
"parameters": [
|
|
13526
|
+
{
|
|
13527
|
+
"name": "detail",
|
|
13528
|
+
"optional": true,
|
|
13529
|
+
"type": {
|
|
13530
|
+
"text": "SbbOverlayCloseEventDetails"
|
|
13531
|
+
}
|
|
13532
|
+
}
|
|
13533
|
+
],
|
|
13534
|
+
"inheritedFrom": {
|
|
13535
|
+
"name": "SbbOpenCloseBaseElement",
|
|
13536
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
13537
|
+
}
|
|
13538
|
+
},
|
|
13539
|
+
{
|
|
13540
|
+
"kind": "method",
|
|
13541
|
+
"name": "dispatchCloseEvent",
|
|
13542
|
+
"privacy": "protected",
|
|
13543
|
+
"return": {
|
|
13544
|
+
"type": {
|
|
13545
|
+
"text": "boolean"
|
|
13546
|
+
}
|
|
13547
|
+
},
|
|
13548
|
+
"parameters": [
|
|
13549
|
+
{
|
|
13550
|
+
"name": "detail",
|
|
13551
|
+
"optional": true,
|
|
13552
|
+
"type": {
|
|
13553
|
+
"text": "SbbOverlayCloseEventDetails"
|
|
13554
|
+
}
|
|
13555
|
+
}
|
|
13556
|
+
],
|
|
13557
|
+
"inheritedFrom": {
|
|
13558
|
+
"name": "SbbOpenCloseBaseElement",
|
|
13559
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
13560
|
+
}
|
|
13561
|
+
},
|
|
13461
13562
|
{
|
|
13462
13563
|
"kind": "method",
|
|
13463
13564
|
"name": "open",
|
|
@@ -13479,7 +13580,7 @@
|
|
|
13479
13580
|
"privacy": "public",
|
|
13480
13581
|
"return": {
|
|
13481
13582
|
"type": {
|
|
13482
|
-
"text": "
|
|
13583
|
+
"text": "void"
|
|
13483
13584
|
}
|
|
13484
13585
|
},
|
|
13485
13586
|
"description": "Closes the component.",
|
|
@@ -13490,12 +13591,53 @@
|
|
|
13490
13591
|
"type": {
|
|
13491
13592
|
"text": "any"
|
|
13492
13593
|
}
|
|
13493
|
-
}
|
|
13594
|
+
}
|
|
13595
|
+
],
|
|
13596
|
+
"inheritedFrom": {
|
|
13597
|
+
"name": "SbbOpenCloseBaseElement",
|
|
13598
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
13599
|
+
}
|
|
13600
|
+
},
|
|
13601
|
+
{
|
|
13602
|
+
"kind": "method",
|
|
13603
|
+
"name": "close",
|
|
13604
|
+
"privacy": "public",
|
|
13605
|
+
"return": {
|
|
13606
|
+
"type": {
|
|
13607
|
+
"text": "void"
|
|
13608
|
+
}
|
|
13609
|
+
},
|
|
13610
|
+
"description": "Closes the component.",
|
|
13611
|
+
"parameters": [
|
|
13494
13612
|
{
|
|
13495
|
-
"name": "
|
|
13613
|
+
"name": "result",
|
|
13496
13614
|
"optional": true,
|
|
13497
13615
|
"type": {
|
|
13498
|
-
"text": "
|
|
13616
|
+
"text": "any"
|
|
13617
|
+
}
|
|
13618
|
+
}
|
|
13619
|
+
],
|
|
13620
|
+
"inheritedFrom": {
|
|
13621
|
+
"name": "SbbOpenCloseBaseElement",
|
|
13622
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
13623
|
+
}
|
|
13624
|
+
},
|
|
13625
|
+
{
|
|
13626
|
+
"kind": "method",
|
|
13627
|
+
"name": "close",
|
|
13628
|
+
"privacy": "public",
|
|
13629
|
+
"return": {
|
|
13630
|
+
"type": {
|
|
13631
|
+
"text": "void"
|
|
13632
|
+
}
|
|
13633
|
+
},
|
|
13634
|
+
"description": "Closes the component.",
|
|
13635
|
+
"parameters": [
|
|
13636
|
+
{
|
|
13637
|
+
"name": "result",
|
|
13638
|
+
"optional": true,
|
|
13639
|
+
"type": {
|
|
13640
|
+
"text": "any"
|
|
13499
13641
|
}
|
|
13500
13642
|
}
|
|
13501
13643
|
],
|
|
@@ -13504,6 +13646,30 @@
|
|
|
13504
13646
|
"module": "core/base-elements/open-close-base-element.js"
|
|
13505
13647
|
}
|
|
13506
13648
|
},
|
|
13649
|
+
{
|
|
13650
|
+
"kind": "method",
|
|
13651
|
+
"name": "_close",
|
|
13652
|
+
"privacy": "private",
|
|
13653
|
+
"return": {
|
|
13654
|
+
"type": {
|
|
13655
|
+
"text": "void"
|
|
13656
|
+
}
|
|
13657
|
+
},
|
|
13658
|
+
"parameters": [
|
|
13659
|
+
{
|
|
13660
|
+
"name": "result",
|
|
13661
|
+
"type": {
|
|
13662
|
+
"text": "any"
|
|
13663
|
+
}
|
|
13664
|
+
},
|
|
13665
|
+
{
|
|
13666
|
+
"name": "target",
|
|
13667
|
+
"type": {
|
|
13668
|
+
"text": "HTMLElement | undefined"
|
|
13669
|
+
}
|
|
13670
|
+
}
|
|
13671
|
+
]
|
|
13672
|
+
},
|
|
13507
13673
|
{
|
|
13508
13674
|
"kind": "method",
|
|
13509
13675
|
"name": "_hasClosedParent",
|
|
@@ -13610,52 +13776,6 @@
|
|
|
13610
13776
|
}
|
|
13611
13777
|
]
|
|
13612
13778
|
},
|
|
13613
|
-
{
|
|
13614
|
-
"kind": "method",
|
|
13615
|
-
"name": "dispatchBeforeCloseEvent",
|
|
13616
|
-
"privacy": "protected",
|
|
13617
|
-
"return": {
|
|
13618
|
-
"type": {
|
|
13619
|
-
"text": "boolean"
|
|
13620
|
-
}
|
|
13621
|
-
},
|
|
13622
|
-
"parameters": [
|
|
13623
|
-
{
|
|
13624
|
-
"name": "detail",
|
|
13625
|
-
"optional": true,
|
|
13626
|
-
"type": {
|
|
13627
|
-
"text": "SbbOverlayCloseEventDetails"
|
|
13628
|
-
}
|
|
13629
|
-
}
|
|
13630
|
-
],
|
|
13631
|
-
"inheritedFrom": {
|
|
13632
|
-
"name": "SbbOpenCloseBaseElement",
|
|
13633
|
-
"module": "core/base-elements/open-close-base-element.js"
|
|
13634
|
-
}
|
|
13635
|
-
},
|
|
13636
|
-
{
|
|
13637
|
-
"kind": "method",
|
|
13638
|
-
"name": "dispatchCloseEvent",
|
|
13639
|
-
"privacy": "protected",
|
|
13640
|
-
"return": {
|
|
13641
|
-
"type": {
|
|
13642
|
-
"text": "boolean"
|
|
13643
|
-
}
|
|
13644
|
-
},
|
|
13645
|
-
"parameters": [
|
|
13646
|
-
{
|
|
13647
|
-
"name": "detail",
|
|
13648
|
-
"optional": true,
|
|
13649
|
-
"type": {
|
|
13650
|
-
"text": "SbbOverlayCloseEventDetails"
|
|
13651
|
-
}
|
|
13652
|
-
}
|
|
13653
|
-
],
|
|
13654
|
-
"inheritedFrom": {
|
|
13655
|
-
"name": "SbbOpenCloseBaseElement",
|
|
13656
|
-
"module": "core/base-elements/open-close-base-element.js"
|
|
13657
|
-
}
|
|
13658
|
-
},
|
|
13659
13779
|
{
|
|
13660
13780
|
"kind": "field",
|
|
13661
13781
|
"name": "negative",
|
|
@@ -13800,52 +13920,6 @@
|
|
|
13800
13920
|
}
|
|
13801
13921
|
}
|
|
13802
13922
|
],
|
|
13803
|
-
"events": [
|
|
13804
|
-
{
|
|
13805
|
-
"name": "beforeclose",
|
|
13806
|
-
"type": {
|
|
13807
|
-
"text": "CustomEvent<SbbOverlayCloseEventDetails>"
|
|
13808
|
-
},
|
|
13809
|
-
"description": "Emits whenever the component begins the closing transition. Can be canceled.",
|
|
13810
|
-
"inheritedFrom": {
|
|
13811
|
-
"name": "SbbOpenCloseBaseElement",
|
|
13812
|
-
"module": "core/base-elements/open-close-base-element.js"
|
|
13813
|
-
}
|
|
13814
|
-
},
|
|
13815
|
-
{
|
|
13816
|
-
"name": "close",
|
|
13817
|
-
"type": {
|
|
13818
|
-
"text": "CustomEvent<SbbOverlayCloseEventDetails>"
|
|
13819
|
-
},
|
|
13820
|
-
"description": "Emits whenever the component is closed.",
|
|
13821
|
-
"inheritedFrom": {
|
|
13822
|
-
"name": "SbbOpenCloseBaseElement",
|
|
13823
|
-
"module": "core/base-elements/open-close-base-element.js"
|
|
13824
|
-
}
|
|
13825
|
-
},
|
|
13826
|
-
{
|
|
13827
|
-
"name": "beforeopen",
|
|
13828
|
-
"type": {
|
|
13829
|
-
"text": "Event"
|
|
13830
|
-
},
|
|
13831
|
-
"description": "Emits whenever the component starts the opening transition. Can be canceled.",
|
|
13832
|
-
"inheritedFrom": {
|
|
13833
|
-
"name": "SbbOpenCloseBaseElement",
|
|
13834
|
-
"module": "core/base-elements/open-close-base-element.js"
|
|
13835
|
-
}
|
|
13836
|
-
},
|
|
13837
|
-
{
|
|
13838
|
-
"name": "open",
|
|
13839
|
-
"type": {
|
|
13840
|
-
"text": "Event"
|
|
13841
|
-
},
|
|
13842
|
-
"description": "Emits whenever the component is opened.",
|
|
13843
|
-
"inheritedFrom": {
|
|
13844
|
-
"name": "SbbOpenCloseBaseElement",
|
|
13845
|
-
"module": "core/base-elements/open-close-base-element.js"
|
|
13846
|
-
}
|
|
13847
|
-
}
|
|
13848
|
-
],
|
|
13849
13923
|
"attributes": [
|
|
13850
13924
|
{
|
|
13851
13925
|
"name": "trigger",
|
|
@@ -13897,10 +13971,72 @@
|
|
|
13897
13971
|
"superclass": {
|
|
13898
13972
|
"name": "SbbOpenCloseBaseElement",
|
|
13899
13973
|
"module": "core/base-elements.js"
|
|
13900
|
-
}
|
|
13974
|
+
},
|
|
13975
|
+
"events": [
|
|
13976
|
+
{
|
|
13977
|
+
"name": "beforeopen",
|
|
13978
|
+
"type": {
|
|
13979
|
+
"text": "Event"
|
|
13980
|
+
},
|
|
13981
|
+
"description": "Emits whenever the component starts the opening transition. Can be canceled.",
|
|
13982
|
+
"inheritedFrom": {
|
|
13983
|
+
"name": "SbbOpenCloseBaseElement",
|
|
13984
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
13985
|
+
}
|
|
13986
|
+
},
|
|
13987
|
+
{
|
|
13988
|
+
"name": "open",
|
|
13989
|
+
"type": {
|
|
13990
|
+
"text": "Event"
|
|
13991
|
+
},
|
|
13992
|
+
"description": "Emits whenever the component is opened.",
|
|
13993
|
+
"inheritedFrom": {
|
|
13994
|
+
"name": "SbbOpenCloseBaseElement",
|
|
13995
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
13996
|
+
}
|
|
13997
|
+
},
|
|
13998
|
+
{
|
|
13999
|
+
"name": "beforeclose",
|
|
14000
|
+
"type": {
|
|
14001
|
+
"text": "Event"
|
|
14002
|
+
},
|
|
14003
|
+
"description": "Emits whenever the component begins the closing transition. Can be canceled.",
|
|
14004
|
+
"inheritedFrom": {
|
|
14005
|
+
"name": "SbbOpenCloseBaseElement",
|
|
14006
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
14007
|
+
}
|
|
14008
|
+
},
|
|
14009
|
+
{
|
|
14010
|
+
"name": "close",
|
|
14011
|
+
"type": {
|
|
14012
|
+
"text": "Event"
|
|
14013
|
+
},
|
|
14014
|
+
"description": "Emits whenever the component is closed.",
|
|
14015
|
+
"inheritedFrom": {
|
|
14016
|
+
"name": "SbbOpenCloseBaseElement",
|
|
14017
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
14018
|
+
}
|
|
14019
|
+
}
|
|
14020
|
+
]
|
|
13901
14021
|
}
|
|
13902
14022
|
],
|
|
13903
14023
|
"exports": [
|
|
14024
|
+
{
|
|
14025
|
+
"kind": "js",
|
|
14026
|
+
"name": "SbbOverlayCloseEvent",
|
|
14027
|
+
"declaration": {
|
|
14028
|
+
"name": "SbbOverlayCloseEvent",
|
|
14029
|
+
"module": "overlay/overlay-base-element.js"
|
|
14030
|
+
}
|
|
14031
|
+
},
|
|
14032
|
+
{
|
|
14033
|
+
"kind": "js",
|
|
14034
|
+
"name": "assignOverlayResult",
|
|
14035
|
+
"declaration": {
|
|
14036
|
+
"name": "assignOverlayResult",
|
|
14037
|
+
"module": "overlay/overlay-base-element.js"
|
|
14038
|
+
}
|
|
14039
|
+
},
|
|
13904
14040
|
{
|
|
13905
14041
|
"kind": "js",
|
|
13906
14042
|
"name": "overlayRefs",
|
|
@@ -14043,6 +14179,52 @@
|
|
|
14043
14179
|
"module": "overlay/overlay-base-element.js"
|
|
14044
14180
|
}
|
|
14045
14181
|
},
|
|
14182
|
+
{
|
|
14183
|
+
"kind": "method",
|
|
14184
|
+
"name": "dispatchBeforeCloseEvent",
|
|
14185
|
+
"privacy": "protected",
|
|
14186
|
+
"return": {
|
|
14187
|
+
"type": {
|
|
14188
|
+
"text": "boolean"
|
|
14189
|
+
}
|
|
14190
|
+
},
|
|
14191
|
+
"parameters": [
|
|
14192
|
+
{
|
|
14193
|
+
"name": "_detail",
|
|
14194
|
+
"optional": true,
|
|
14195
|
+
"type": {
|
|
14196
|
+
"text": "SbbOverlayCloseEventDetails"
|
|
14197
|
+
}
|
|
14198
|
+
}
|
|
14199
|
+
],
|
|
14200
|
+
"inheritedFrom": {
|
|
14201
|
+
"name": "SbbOpenCloseBaseElement",
|
|
14202
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
14203
|
+
}
|
|
14204
|
+
},
|
|
14205
|
+
{
|
|
14206
|
+
"kind": "method",
|
|
14207
|
+
"name": "dispatchCloseEvent",
|
|
14208
|
+
"privacy": "protected",
|
|
14209
|
+
"return": {
|
|
14210
|
+
"type": {
|
|
14211
|
+
"text": "boolean"
|
|
14212
|
+
}
|
|
14213
|
+
},
|
|
14214
|
+
"parameters": [
|
|
14215
|
+
{
|
|
14216
|
+
"name": "_detail",
|
|
14217
|
+
"optional": true,
|
|
14218
|
+
"type": {
|
|
14219
|
+
"text": "SbbOverlayCloseEventDetails"
|
|
14220
|
+
}
|
|
14221
|
+
}
|
|
14222
|
+
],
|
|
14223
|
+
"inheritedFrom": {
|
|
14224
|
+
"name": "SbbOpenCloseBaseElement",
|
|
14225
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
14226
|
+
}
|
|
14227
|
+
},
|
|
14046
14228
|
{
|
|
14047
14229
|
"kind": "field",
|
|
14048
14230
|
"name": "negative",
|
|
@@ -14285,7 +14467,7 @@
|
|
|
14285
14467
|
"privacy": "public",
|
|
14286
14468
|
"return": {
|
|
14287
14469
|
"type": {
|
|
14288
|
-
"text": "
|
|
14470
|
+
"text": "void"
|
|
14289
14471
|
}
|
|
14290
14472
|
},
|
|
14291
14473
|
"description": "Closes the component.",
|
|
@@ -14296,18 +14478,39 @@
|
|
|
14296
14478
|
"type": {
|
|
14297
14479
|
"text": "any"
|
|
14298
14480
|
}
|
|
14481
|
+
}
|
|
14482
|
+
],
|
|
14483
|
+
"inheritedFrom": {
|
|
14484
|
+
"name": "SbbOpenCloseBaseElement",
|
|
14485
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
14486
|
+
}
|
|
14487
|
+
},
|
|
14488
|
+
{
|
|
14489
|
+
"kind": "method",
|
|
14490
|
+
"name": "_close",
|
|
14491
|
+
"privacy": "private",
|
|
14492
|
+
"return": {
|
|
14493
|
+
"type": {
|
|
14494
|
+
"text": "void"
|
|
14495
|
+
}
|
|
14496
|
+
},
|
|
14497
|
+
"parameters": [
|
|
14498
|
+
{
|
|
14499
|
+
"name": "result",
|
|
14500
|
+
"type": {
|
|
14501
|
+
"text": "any"
|
|
14502
|
+
}
|
|
14299
14503
|
},
|
|
14300
14504
|
{
|
|
14301
14505
|
"name": "target",
|
|
14302
|
-
"optional": true,
|
|
14303
14506
|
"type": {
|
|
14304
|
-
"text": "HTMLElement"
|
|
14507
|
+
"text": "HTMLElement | undefined"
|
|
14305
14508
|
}
|
|
14306
14509
|
}
|
|
14307
14510
|
],
|
|
14308
14511
|
"inheritedFrom": {
|
|
14309
|
-
"name": "
|
|
14310
|
-
"module": "
|
|
14512
|
+
"name": "SbbOverlayBaseElement",
|
|
14513
|
+
"module": "overlay/overlay-base-element.js"
|
|
14311
14514
|
}
|
|
14312
14515
|
},
|
|
14313
14516
|
{
|
|
@@ -14448,52 +14651,6 @@
|
|
|
14448
14651
|
"module": "overlay/overlay-base-element.js"
|
|
14449
14652
|
}
|
|
14450
14653
|
},
|
|
14451
|
-
{
|
|
14452
|
-
"kind": "method",
|
|
14453
|
-
"name": "dispatchBeforeCloseEvent",
|
|
14454
|
-
"privacy": "protected",
|
|
14455
|
-
"return": {
|
|
14456
|
-
"type": {
|
|
14457
|
-
"text": "boolean"
|
|
14458
|
-
}
|
|
14459
|
-
},
|
|
14460
|
-
"parameters": [
|
|
14461
|
-
{
|
|
14462
|
-
"name": "detail",
|
|
14463
|
-
"optional": true,
|
|
14464
|
-
"type": {
|
|
14465
|
-
"text": "SbbOverlayCloseEventDetails"
|
|
14466
|
-
}
|
|
14467
|
-
}
|
|
14468
|
-
],
|
|
14469
|
-
"inheritedFrom": {
|
|
14470
|
-
"name": "SbbOpenCloseBaseElement",
|
|
14471
|
-
"module": "core/base-elements/open-close-base-element.js"
|
|
14472
|
-
}
|
|
14473
|
-
},
|
|
14474
|
-
{
|
|
14475
|
-
"kind": "method",
|
|
14476
|
-
"name": "dispatchCloseEvent",
|
|
14477
|
-
"privacy": "protected",
|
|
14478
|
-
"return": {
|
|
14479
|
-
"type": {
|
|
14480
|
-
"text": "boolean"
|
|
14481
|
-
}
|
|
14482
|
-
},
|
|
14483
|
-
"parameters": [
|
|
14484
|
-
{
|
|
14485
|
-
"name": "detail",
|
|
14486
|
-
"optional": true,
|
|
14487
|
-
"type": {
|
|
14488
|
-
"text": "SbbOverlayCloseEventDetails"
|
|
14489
|
-
}
|
|
14490
|
-
}
|
|
14491
|
-
],
|
|
14492
|
-
"inheritedFrom": {
|
|
14493
|
-
"name": "SbbOpenCloseBaseElement",
|
|
14494
|
-
"module": "core/base-elements/open-close-base-element.js"
|
|
14495
|
-
}
|
|
14496
|
-
},
|
|
14497
14654
|
{
|
|
14498
14655
|
"kind": "method",
|
|
14499
14656
|
"name": "toggleState",
|
|
@@ -14607,6 +14764,52 @@
|
|
|
14607
14764
|
}
|
|
14608
14765
|
}
|
|
14609
14766
|
],
|
|
14767
|
+
"events": [
|
|
14768
|
+
{
|
|
14769
|
+
"name": "beforeclose",
|
|
14770
|
+
"type": {
|
|
14771
|
+
"text": "SbbOverlayCloseEvent"
|
|
14772
|
+
},
|
|
14773
|
+
"description": "Emits whenever the component begins the closing transition. Can be canceled.",
|
|
14774
|
+
"inheritedFrom": {
|
|
14775
|
+
"name": "SbbOpenCloseBaseElement",
|
|
14776
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
14777
|
+
}
|
|
14778
|
+
},
|
|
14779
|
+
{
|
|
14780
|
+
"name": "close",
|
|
14781
|
+
"type": {
|
|
14782
|
+
"text": "SbbOverlayCloseEvent"
|
|
14783
|
+
},
|
|
14784
|
+
"description": "Emits whenever the component is closed.",
|
|
14785
|
+
"inheritedFrom": {
|
|
14786
|
+
"name": "SbbOpenCloseBaseElement",
|
|
14787
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
14788
|
+
}
|
|
14789
|
+
},
|
|
14790
|
+
{
|
|
14791
|
+
"name": "beforeopen",
|
|
14792
|
+
"type": {
|
|
14793
|
+
"text": "Event"
|
|
14794
|
+
},
|
|
14795
|
+
"description": "Emits whenever the component starts the opening transition. Can be canceled.",
|
|
14796
|
+
"inheritedFrom": {
|
|
14797
|
+
"name": "SbbOpenCloseBaseElement",
|
|
14798
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
14799
|
+
}
|
|
14800
|
+
},
|
|
14801
|
+
{
|
|
14802
|
+
"name": "open",
|
|
14803
|
+
"type": {
|
|
14804
|
+
"text": "Event"
|
|
14805
|
+
},
|
|
14806
|
+
"description": "Emits whenever the component is opened.",
|
|
14807
|
+
"inheritedFrom": {
|
|
14808
|
+
"name": "SbbOpenCloseBaseElement",
|
|
14809
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
14810
|
+
}
|
|
14811
|
+
}
|
|
14812
|
+
],
|
|
14610
14813
|
"attributes": [
|
|
14611
14814
|
{
|
|
14612
14815
|
"name": "expanded",
|
|
@@ -14684,53 +14887,7 @@
|
|
|
14684
14887
|
"module": "overlay/overlay-base-element.js"
|
|
14685
14888
|
},
|
|
14686
14889
|
"tagName": "sbb-overlay",
|
|
14687
|
-
"customElement": true
|
|
14688
|
-
"events": [
|
|
14689
|
-
{
|
|
14690
|
-
"name": "beforeclose",
|
|
14691
|
-
"type": {
|
|
14692
|
-
"text": "CustomEvent<SbbOverlayCloseEventDetails>"
|
|
14693
|
-
},
|
|
14694
|
-
"description": "Emits whenever the component begins the closing transition. Can be canceled.",
|
|
14695
|
-
"inheritedFrom": {
|
|
14696
|
-
"name": "SbbOpenCloseBaseElement",
|
|
14697
|
-
"module": "core/base-elements/open-close-base-element.js"
|
|
14698
|
-
}
|
|
14699
|
-
},
|
|
14700
|
-
{
|
|
14701
|
-
"name": "close",
|
|
14702
|
-
"type": {
|
|
14703
|
-
"text": "CustomEvent<SbbOverlayCloseEventDetails>"
|
|
14704
|
-
},
|
|
14705
|
-
"description": "Emits whenever the component is closed.",
|
|
14706
|
-
"inheritedFrom": {
|
|
14707
|
-
"name": "SbbOpenCloseBaseElement",
|
|
14708
|
-
"module": "core/base-elements/open-close-base-element.js"
|
|
14709
|
-
}
|
|
14710
|
-
},
|
|
14711
|
-
{
|
|
14712
|
-
"name": "beforeopen",
|
|
14713
|
-
"type": {
|
|
14714
|
-
"text": "Event"
|
|
14715
|
-
},
|
|
14716
|
-
"description": "Emits whenever the component starts the opening transition. Can be canceled.",
|
|
14717
|
-
"inheritedFrom": {
|
|
14718
|
-
"name": "SbbOpenCloseBaseElement",
|
|
14719
|
-
"module": "core/base-elements/open-close-base-element.js"
|
|
14720
|
-
}
|
|
14721
|
-
},
|
|
14722
|
-
{
|
|
14723
|
-
"name": "open",
|
|
14724
|
-
"type": {
|
|
14725
|
-
"text": "Event"
|
|
14726
|
-
},
|
|
14727
|
-
"description": "Emits whenever the component is opened.",
|
|
14728
|
-
"inheritedFrom": {
|
|
14729
|
-
"name": "SbbOpenCloseBaseElement",
|
|
14730
|
-
"module": "core/base-elements/open-close-base-element.js"
|
|
14731
|
-
}
|
|
14732
|
-
}
|
|
14733
|
-
]
|
|
14890
|
+
"customElement": true
|
|
14734
14891
|
}
|
|
14735
14892
|
],
|
|
14736
14893
|
"exports": [
|
|
@@ -64901,6 +65058,52 @@
|
|
|
64901
65058
|
}
|
|
64902
65059
|
}
|
|
64903
65060
|
},
|
|
65061
|
+
{
|
|
65062
|
+
"kind": "method",
|
|
65063
|
+
"name": "dispatchBeforeCloseEvent",
|
|
65064
|
+
"privacy": "protected",
|
|
65065
|
+
"return": {
|
|
65066
|
+
"type": {
|
|
65067
|
+
"text": "boolean"
|
|
65068
|
+
}
|
|
65069
|
+
},
|
|
65070
|
+
"parameters": [
|
|
65071
|
+
{
|
|
65072
|
+
"name": "_detail",
|
|
65073
|
+
"optional": true,
|
|
65074
|
+
"type": {
|
|
65075
|
+
"text": "SbbOverlayCloseEventDetails"
|
|
65076
|
+
}
|
|
65077
|
+
}
|
|
65078
|
+
],
|
|
65079
|
+
"inheritedFrom": {
|
|
65080
|
+
"name": "SbbOpenCloseBaseElement",
|
|
65081
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
65082
|
+
}
|
|
65083
|
+
},
|
|
65084
|
+
{
|
|
65085
|
+
"kind": "method",
|
|
65086
|
+
"name": "dispatchCloseEvent",
|
|
65087
|
+
"privacy": "protected",
|
|
65088
|
+
"return": {
|
|
65089
|
+
"type": {
|
|
65090
|
+
"text": "boolean"
|
|
65091
|
+
}
|
|
65092
|
+
},
|
|
65093
|
+
"parameters": [
|
|
65094
|
+
{
|
|
65095
|
+
"name": "_detail",
|
|
65096
|
+
"optional": true,
|
|
65097
|
+
"type": {
|
|
65098
|
+
"text": "SbbOverlayCloseEventDetails"
|
|
65099
|
+
}
|
|
65100
|
+
}
|
|
65101
|
+
],
|
|
65102
|
+
"inheritedFrom": {
|
|
65103
|
+
"name": "SbbOpenCloseBaseElement",
|
|
65104
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
65105
|
+
}
|
|
65106
|
+
},
|
|
64904
65107
|
{
|
|
64905
65108
|
"kind": "field",
|
|
64906
65109
|
"name": "negative",
|
|
@@ -65131,7 +65334,7 @@
|
|
|
65131
65334
|
"privacy": "public",
|
|
65132
65335
|
"return": {
|
|
65133
65336
|
"type": {
|
|
65134
|
-
"text": "
|
|
65337
|
+
"text": "void"
|
|
65135
65338
|
}
|
|
65136
65339
|
},
|
|
65137
65340
|
"description": "Closes the component.",
|
|
@@ -65142,18 +65345,39 @@
|
|
|
65142
65345
|
"type": {
|
|
65143
65346
|
"text": "any"
|
|
65144
65347
|
}
|
|
65348
|
+
}
|
|
65349
|
+
],
|
|
65350
|
+
"inheritedFrom": {
|
|
65351
|
+
"name": "SbbOpenCloseBaseElement",
|
|
65352
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
65353
|
+
}
|
|
65354
|
+
},
|
|
65355
|
+
{
|
|
65356
|
+
"kind": "method",
|
|
65357
|
+
"name": "_close",
|
|
65358
|
+
"privacy": "private",
|
|
65359
|
+
"return": {
|
|
65360
|
+
"type": {
|
|
65361
|
+
"text": "void"
|
|
65362
|
+
}
|
|
65363
|
+
},
|
|
65364
|
+
"parameters": [
|
|
65365
|
+
{
|
|
65366
|
+
"name": "result",
|
|
65367
|
+
"type": {
|
|
65368
|
+
"text": "any"
|
|
65369
|
+
}
|
|
65145
65370
|
},
|
|
65146
65371
|
{
|
|
65147
65372
|
"name": "target",
|
|
65148
|
-
"optional": true,
|
|
65149
65373
|
"type": {
|
|
65150
|
-
"text": "HTMLElement"
|
|
65374
|
+
"text": "HTMLElement | undefined"
|
|
65151
65375
|
}
|
|
65152
65376
|
}
|
|
65153
65377
|
],
|
|
65154
65378
|
"inheritedFrom": {
|
|
65155
|
-
"name": "
|
|
65156
|
-
"module": "
|
|
65379
|
+
"name": "SbbOverlayBaseElement",
|
|
65380
|
+
"module": "overlay/overlay-base-element.js"
|
|
65157
65381
|
}
|
|
65158
65382
|
},
|
|
65159
65383
|
{
|
|
@@ -65294,52 +65518,6 @@
|
|
|
65294
65518
|
"module": "overlay/overlay-base-element.js"
|
|
65295
65519
|
}
|
|
65296
65520
|
},
|
|
65297
|
-
{
|
|
65298
|
-
"kind": "method",
|
|
65299
|
-
"name": "dispatchBeforeCloseEvent",
|
|
65300
|
-
"privacy": "protected",
|
|
65301
|
-
"return": {
|
|
65302
|
-
"type": {
|
|
65303
|
-
"text": "boolean"
|
|
65304
|
-
}
|
|
65305
|
-
},
|
|
65306
|
-
"parameters": [
|
|
65307
|
-
{
|
|
65308
|
-
"name": "detail",
|
|
65309
|
-
"optional": true,
|
|
65310
|
-
"type": {
|
|
65311
|
-
"text": "SbbOverlayCloseEventDetails"
|
|
65312
|
-
}
|
|
65313
|
-
}
|
|
65314
|
-
],
|
|
65315
|
-
"inheritedFrom": {
|
|
65316
|
-
"name": "SbbOpenCloseBaseElement",
|
|
65317
|
-
"module": "core/base-elements/open-close-base-element.js"
|
|
65318
|
-
}
|
|
65319
|
-
},
|
|
65320
|
-
{
|
|
65321
|
-
"kind": "method",
|
|
65322
|
-
"name": "dispatchCloseEvent",
|
|
65323
|
-
"privacy": "protected",
|
|
65324
|
-
"return": {
|
|
65325
|
-
"type": {
|
|
65326
|
-
"text": "boolean"
|
|
65327
|
-
}
|
|
65328
|
-
},
|
|
65329
|
-
"parameters": [
|
|
65330
|
-
{
|
|
65331
|
-
"name": "detail",
|
|
65332
|
-
"optional": true,
|
|
65333
|
-
"type": {
|
|
65334
|
-
"text": "SbbOverlayCloseEventDetails"
|
|
65335
|
-
}
|
|
65336
|
-
}
|
|
65337
|
-
],
|
|
65338
|
-
"inheritedFrom": {
|
|
65339
|
-
"name": "SbbOpenCloseBaseElement",
|
|
65340
|
-
"module": "core/base-elements/open-close-base-element.js"
|
|
65341
|
-
}
|
|
65342
|
-
},
|
|
65343
65521
|
{
|
|
65344
65522
|
"kind": "method",
|
|
65345
65523
|
"name": "toggleState",
|
|
@@ -65468,6 +65646,52 @@
|
|
|
65468
65646
|
}
|
|
65469
65647
|
}
|
|
65470
65648
|
],
|
|
65649
|
+
"events": [
|
|
65650
|
+
{
|
|
65651
|
+
"name": "beforeclose",
|
|
65652
|
+
"type": {
|
|
65653
|
+
"text": "SbbDialogCloseEvent"
|
|
65654
|
+
},
|
|
65655
|
+
"description": "Emits whenever the component begins the closing transition. Can be canceled.",
|
|
65656
|
+
"inheritedFrom": {
|
|
65657
|
+
"name": "SbbOpenCloseBaseElement",
|
|
65658
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
65659
|
+
}
|
|
65660
|
+
},
|
|
65661
|
+
{
|
|
65662
|
+
"name": "close",
|
|
65663
|
+
"type": {
|
|
65664
|
+
"text": "SbbDialogCloseEvent"
|
|
65665
|
+
},
|
|
65666
|
+
"description": "Emits whenever the component is closed.",
|
|
65667
|
+
"inheritedFrom": {
|
|
65668
|
+
"name": "SbbOpenCloseBaseElement",
|
|
65669
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
65670
|
+
}
|
|
65671
|
+
},
|
|
65672
|
+
{
|
|
65673
|
+
"name": "beforeopen",
|
|
65674
|
+
"type": {
|
|
65675
|
+
"text": "Event"
|
|
65676
|
+
},
|
|
65677
|
+
"description": "Emits whenever the component starts the opening transition. Can be canceled.",
|
|
65678
|
+
"inheritedFrom": {
|
|
65679
|
+
"name": "SbbOpenCloseBaseElement",
|
|
65680
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
65681
|
+
}
|
|
65682
|
+
},
|
|
65683
|
+
{
|
|
65684
|
+
"name": "open",
|
|
65685
|
+
"type": {
|
|
65686
|
+
"text": "Event"
|
|
65687
|
+
},
|
|
65688
|
+
"description": "Emits whenever the component is opened.",
|
|
65689
|
+
"inheritedFrom": {
|
|
65690
|
+
"name": "SbbOpenCloseBaseElement",
|
|
65691
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
65692
|
+
}
|
|
65693
|
+
}
|
|
65694
|
+
],
|
|
65471
65695
|
"attributes": [
|
|
65472
65696
|
{
|
|
65473
65697
|
"name": "backdrop-action",
|
|
@@ -65545,56 +65769,26 @@
|
|
|
65545
65769
|
"module": "overlay.js"
|
|
65546
65770
|
},
|
|
65547
65771
|
"tagName": "sbb-dialog",
|
|
65548
|
-
"customElement": true
|
|
65549
|
-
"events": [
|
|
65550
|
-
{
|
|
65551
|
-
"name": "beforeclose",
|
|
65552
|
-
"type": {
|
|
65553
|
-
"text": "CustomEvent<SbbOverlayCloseEventDetails>"
|
|
65554
|
-
},
|
|
65555
|
-
"description": "Emits whenever the component begins the closing transition. Can be canceled.",
|
|
65556
|
-
"inheritedFrom": {
|
|
65557
|
-
"name": "SbbOpenCloseBaseElement",
|
|
65558
|
-
"module": "core/base-elements/open-close-base-element.js"
|
|
65559
|
-
}
|
|
65560
|
-
},
|
|
65561
|
-
{
|
|
65562
|
-
"name": "close",
|
|
65563
|
-
"type": {
|
|
65564
|
-
"text": "CustomEvent<SbbOverlayCloseEventDetails>"
|
|
65565
|
-
},
|
|
65566
|
-
"description": "Emits whenever the component is closed.",
|
|
65567
|
-
"inheritedFrom": {
|
|
65568
|
-
"name": "SbbOpenCloseBaseElement",
|
|
65569
|
-
"module": "core/base-elements/open-close-base-element.js"
|
|
65570
|
-
}
|
|
65571
|
-
},
|
|
65572
|
-
{
|
|
65573
|
-
"name": "beforeopen",
|
|
65574
|
-
"type": {
|
|
65575
|
-
"text": "Event"
|
|
65576
|
-
},
|
|
65577
|
-
"description": "Emits whenever the component starts the opening transition. Can be canceled.",
|
|
65578
|
-
"inheritedFrom": {
|
|
65579
|
-
"name": "SbbOpenCloseBaseElement",
|
|
65580
|
-
"module": "core/base-elements/open-close-base-element.js"
|
|
65581
|
-
}
|
|
65582
|
-
},
|
|
65583
|
-
{
|
|
65584
|
-
"name": "open",
|
|
65585
|
-
"type": {
|
|
65586
|
-
"text": "Event"
|
|
65587
|
-
},
|
|
65588
|
-
"description": "Emits whenever the component is opened.",
|
|
65589
|
-
"inheritedFrom": {
|
|
65590
|
-
"name": "SbbOpenCloseBaseElement",
|
|
65591
|
-
"module": "core/base-elements/open-close-base-element.js"
|
|
65592
|
-
}
|
|
65593
|
-
}
|
|
65594
|
-
]
|
|
65772
|
+
"customElement": true
|
|
65595
65773
|
}
|
|
65596
65774
|
],
|
|
65597
65775
|
"exports": [
|
|
65776
|
+
{
|
|
65777
|
+
"kind": "js",
|
|
65778
|
+
"name": "assignDialogResult",
|
|
65779
|
+
"declaration": {
|
|
65780
|
+
"name": "assignOverlayResult",
|
|
65781
|
+
"module": "../../overlay/overlay-base-element.js"
|
|
65782
|
+
}
|
|
65783
|
+
},
|
|
65784
|
+
{
|
|
65785
|
+
"kind": "js",
|
|
65786
|
+
"name": "SbbDialogCloseEvent",
|
|
65787
|
+
"declaration": {
|
|
65788
|
+
"name": "SbbOverlayCloseEvent",
|
|
65789
|
+
"module": "../../overlay/overlay-base-element.js"
|
|
65790
|
+
}
|
|
65791
|
+
},
|
|
65598
65792
|
{
|
|
65599
65793
|
"kind": "js",
|
|
65600
65794
|
"name": "SbbDialogElement",
|
|
@@ -101904,6 +102098,61 @@
|
|
|
101904
102098
|
"kind": "javascript-module",
|
|
101905
102099
|
"path": "stepper/stepper/stepper.component.js",
|
|
101906
102100
|
"declarations": [
|
|
102101
|
+
{
|
|
102102
|
+
"kind": "class",
|
|
102103
|
+
"description": "",
|
|
102104
|
+
"name": "SbbStepChangeEvent",
|
|
102105
|
+
"members": [
|
|
102106
|
+
{
|
|
102107
|
+
"kind": "field",
|
|
102108
|
+
"name": "selectedIndex",
|
|
102109
|
+
"type": {
|
|
102110
|
+
"text": "number | null"
|
|
102111
|
+
},
|
|
102112
|
+
"privacy": "public",
|
|
102113
|
+
"readonly": true,
|
|
102114
|
+
"description": "The index of the newly selected step.",
|
|
102115
|
+
"default": "selectedIndex"
|
|
102116
|
+
},
|
|
102117
|
+
{
|
|
102118
|
+
"kind": "field",
|
|
102119
|
+
"name": "previousIndex",
|
|
102120
|
+
"type": {
|
|
102121
|
+
"text": "number | null"
|
|
102122
|
+
},
|
|
102123
|
+
"privacy": "public",
|
|
102124
|
+
"readonly": true,
|
|
102125
|
+
"description": "The index of the previously selected step.",
|
|
102126
|
+
"default": "previousIndex"
|
|
102127
|
+
},
|
|
102128
|
+
{
|
|
102129
|
+
"kind": "field",
|
|
102130
|
+
"name": "selectedStep",
|
|
102131
|
+
"type": {
|
|
102132
|
+
"text": "SbbStepElement | null"
|
|
102133
|
+
},
|
|
102134
|
+
"privacy": "public",
|
|
102135
|
+
"readonly": true,
|
|
102136
|
+
"description": "The newly selected step element.",
|
|
102137
|
+
"default": "selectedStep"
|
|
102138
|
+
},
|
|
102139
|
+
{
|
|
102140
|
+
"kind": "field",
|
|
102141
|
+
"name": "previousStep",
|
|
102142
|
+
"type": {
|
|
102143
|
+
"text": "SbbStepElement | null"
|
|
102144
|
+
},
|
|
102145
|
+
"privacy": "public",
|
|
102146
|
+
"readonly": true,
|
|
102147
|
+
"description": "The previously selected step element.",
|
|
102148
|
+
"default": "previousStep"
|
|
102149
|
+
}
|
|
102150
|
+
],
|
|
102151
|
+
"superclass": {
|
|
102152
|
+
"name": "Event",
|
|
102153
|
+
"module": "stepper/stepper/stepper.component.js"
|
|
102154
|
+
}
|
|
102155
|
+
},
|
|
101907
102156
|
{
|
|
101908
102157
|
"kind": "class",
|
|
101909
102158
|
"description": "Provides a structured, step-by-step workflow for user interactions.",
|
|
@@ -101923,6 +102172,17 @@
|
|
|
101923
102172
|
}
|
|
101924
102173
|
],
|
|
101925
102174
|
"members": [
|
|
102175
|
+
{
|
|
102176
|
+
"kind": "field",
|
|
102177
|
+
"name": "events",
|
|
102178
|
+
"privacy": "public",
|
|
102179
|
+
"static": true,
|
|
102180
|
+
"readonly": true,
|
|
102181
|
+
"default": "{ stepchange: 'stepchange', }",
|
|
102182
|
+
"type": {
|
|
102183
|
+
"text": "{\n stepchange: 'stepchange',\n }"
|
|
102184
|
+
}
|
|
102185
|
+
},
|
|
101926
102186
|
{
|
|
101927
102187
|
"kind": "field",
|
|
101928
102188
|
"name": "_observer",
|
|
@@ -102317,6 +102577,15 @@
|
|
|
102317
102577
|
}
|
|
102318
102578
|
}
|
|
102319
102579
|
],
|
|
102580
|
+
"events": [
|
|
102581
|
+
{
|
|
102582
|
+
"type": {
|
|
102583
|
+
"text": "SbbStepChangeEvent"
|
|
102584
|
+
},
|
|
102585
|
+
"description": "Emits whenever a step was changed.",
|
|
102586
|
+
"name": "stepchange"
|
|
102587
|
+
}
|
|
102588
|
+
],
|
|
102320
102589
|
"attributes": [
|
|
102321
102590
|
{
|
|
102322
102591
|
"name": "linear",
|
|
@@ -102378,9 +102647,25 @@
|
|
|
102378
102647
|
},
|
|
102379
102648
|
"tagName": "sbb-stepper",
|
|
102380
102649
|
"customElement": true
|
|
102650
|
+
},
|
|
102651
|
+
{
|
|
102652
|
+
"kind": "variable",
|
|
102653
|
+
"name": "currentIndex"
|
|
102654
|
+
},
|
|
102655
|
+
{
|
|
102656
|
+
"kind": "variable",
|
|
102657
|
+
"name": "currentStep"
|
|
102381
102658
|
}
|
|
102382
102659
|
],
|
|
102383
102660
|
"exports": [
|
|
102661
|
+
{
|
|
102662
|
+
"kind": "js",
|
|
102663
|
+
"name": "SbbStepChangeEvent",
|
|
102664
|
+
"declaration": {
|
|
102665
|
+
"name": "SbbStepChangeEvent",
|
|
102666
|
+
"module": "stepper/stepper/stepper.component.js"
|
|
102667
|
+
}
|
|
102668
|
+
},
|
|
102384
102669
|
{
|
|
102385
102670
|
"kind": "js",
|
|
102386
102671
|
"name": "SbbStepperElement",
|