@sbb-esta/lyne-elements-dev 4.13.0-dev.1779125453 → 4.13.0-dev.1779150901
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/custom-elements.json +792 -792
- package/package.json +2 -2
package/custom-elements.json
CHANGED
|
@@ -55506,15 +55506,15 @@
|
|
|
55506
55506
|
},
|
|
55507
55507
|
{
|
|
55508
55508
|
"kind": "javascript-module",
|
|
55509
|
-
"path": "card/card-
|
|
55509
|
+
"path": "card/card-button/card-button.component.js",
|
|
55510
55510
|
"declarations": [
|
|
55511
55511
|
{
|
|
55512
55512
|
"kind": "class",
|
|
55513
|
-
"description": "It turns the `sbb-card` into a
|
|
55514
|
-
"name": "
|
|
55513
|
+
"description": "It turns the `sbb-card` into a button element.",
|
|
55514
|
+
"name": "SbbCardButtonElement",
|
|
55515
55515
|
"slots": [
|
|
55516
55516
|
{
|
|
55517
|
-
"description": "Use the unnamed slot to add a descriptive label / title of the
|
|
55517
|
+
"description": "Use the unnamed slot to add a descriptive label / title of the button (important!). This is relevant for SEO and screen readers.",
|
|
55518
55518
|
"name": ""
|
|
55519
55519
|
}
|
|
55520
55520
|
],
|
|
@@ -55528,7 +55528,7 @@
|
|
|
55528
55528
|
"privacy": "public",
|
|
55529
55529
|
"static": true,
|
|
55530
55530
|
"readonly": true,
|
|
55531
|
-
"default": "'sbb-card-
|
|
55531
|
+
"default": "'sbb-card-button'",
|
|
55532
55532
|
"inheritedFrom": {
|
|
55533
55533
|
"name": "SbbElement",
|
|
55534
55534
|
"module": "core/base-elements/element.js"
|
|
@@ -55541,7 +55541,7 @@
|
|
|
55541
55541
|
"text": "'link' | 'button'"
|
|
55542
55542
|
},
|
|
55543
55543
|
"privacy": "protected",
|
|
55544
|
-
"default": "'
|
|
55544
|
+
"default": "'button'",
|
|
55545
55545
|
"inheritedFrom": {
|
|
55546
55546
|
"name": "SbbCardActionCommonElementMixin",
|
|
55547
55547
|
"module": "card/common/card-action-common.js"
|
|
@@ -55658,151 +55658,479 @@
|
|
|
55658
55658
|
},
|
|
55659
55659
|
{
|
|
55660
55660
|
"kind": "field",
|
|
55661
|
-
"name": "
|
|
55661
|
+
"name": "_elementsOnWhichEnterPressTriggersSubmit",
|
|
55662
|
+
"type": {
|
|
55663
|
+
"text": "array"
|
|
55664
|
+
},
|
|
55665
|
+
"privacy": "private",
|
|
55666
|
+
"readonly": true,
|
|
55667
|
+
"default": "[ 'input', 'sbb-date-input', 'sbb-time-input', ]",
|
|
55668
|
+
"inheritedFrom": {
|
|
55669
|
+
"name": "SbbButtonBaseElement",
|
|
55670
|
+
"module": "core/base-elements/button-base-element.js"
|
|
55671
|
+
}
|
|
55672
|
+
},
|
|
55673
|
+
{
|
|
55674
|
+
"kind": "field",
|
|
55675
|
+
"name": "value",
|
|
55662
55676
|
"type": {
|
|
55663
55677
|
"text": "string"
|
|
55664
55678
|
},
|
|
55665
55679
|
"privacy": "public",
|
|
55666
55680
|
"default": "''",
|
|
55667
|
-
"description": "
|
|
55668
|
-
"attribute": "
|
|
55669
|
-
"reflects": true,
|
|
55681
|
+
"description": "Value of the form element.",
|
|
55682
|
+
"attribute": "value",
|
|
55670
55683
|
"inheritedFrom": {
|
|
55671
|
-
"name": "
|
|
55672
|
-
"module": "core/base-elements/
|
|
55684
|
+
"name": "SbbButtonBaseElement",
|
|
55685
|
+
"module": "core/base-elements/button-base-element.js"
|
|
55673
55686
|
}
|
|
55674
55687
|
},
|
|
55675
55688
|
{
|
|
55676
55689
|
"kind": "field",
|
|
55677
|
-
"name": "
|
|
55690
|
+
"name": "type",
|
|
55691
|
+
"privacy": "public",
|
|
55692
|
+
"description": "The type attribute to use for the button.",
|
|
55693
|
+
"default": "'button'",
|
|
55678
55694
|
"type": {
|
|
55679
|
-
"text": "
|
|
55695
|
+
"text": "SbbButtonType"
|
|
55696
|
+
},
|
|
55697
|
+
"attribute": "type",
|
|
55698
|
+
"inheritedFrom": {
|
|
55699
|
+
"name": "SbbButtonBaseElement",
|
|
55700
|
+
"module": "core/base-elements/button-base-element.js"
|
|
55701
|
+
}
|
|
55702
|
+
},
|
|
55703
|
+
{
|
|
55704
|
+
"kind": "field",
|
|
55705
|
+
"name": "form",
|
|
55706
|
+
"type": {
|
|
55707
|
+
"text": "HTMLFormElement | null"
|
|
55680
55708
|
},
|
|
55681
55709
|
"privacy": "public",
|
|
55682
|
-
"
|
|
55683
|
-
"
|
|
55684
|
-
"attribute": "target",
|
|
55685
|
-
"reflects": true,
|
|
55710
|
+
"description": "The `<form>` element to associate the button with.",
|
|
55711
|
+
"attribute": "form",
|
|
55686
55712
|
"inheritedFrom": {
|
|
55687
|
-
"name": "
|
|
55688
|
-
"module": "core/base-elements/
|
|
55713
|
+
"name": "SbbButtonBaseElement",
|
|
55714
|
+
"module": "core/base-elements/button-base-element.js"
|
|
55689
55715
|
}
|
|
55690
55716
|
},
|
|
55691
55717
|
{
|
|
55692
55718
|
"kind": "field",
|
|
55693
|
-
"name": "
|
|
55719
|
+
"name": "_formId",
|
|
55694
55720
|
"type": {
|
|
55695
55721
|
"text": "string"
|
|
55696
55722
|
},
|
|
55697
|
-
"privacy": "
|
|
55723
|
+
"privacy": "private",
|
|
55698
55724
|
"default": "''",
|
|
55699
|
-
"description": "The relationship of the linked URL as space-separated link types.",
|
|
55700
|
-
"attribute": "rel",
|
|
55701
|
-
"reflects": true,
|
|
55702
55725
|
"inheritedFrom": {
|
|
55703
|
-
"name": "
|
|
55704
|
-
"module": "core/base-elements/
|
|
55726
|
+
"name": "SbbButtonBaseElement",
|
|
55727
|
+
"module": "core/base-elements/button-base-element.js"
|
|
55705
55728
|
}
|
|
55706
55729
|
},
|
|
55707
55730
|
{
|
|
55708
55731
|
"kind": "field",
|
|
55709
|
-
"name": "
|
|
55732
|
+
"name": "_handleButtonClick",
|
|
55733
|
+
"privacy": "private",
|
|
55734
|
+
"inheritedFrom": {
|
|
55735
|
+
"name": "SbbButtonBaseElement",
|
|
55736
|
+
"module": "core/base-elements/button-base-element.js"
|
|
55737
|
+
}
|
|
55738
|
+
},
|
|
55739
|
+
{
|
|
55740
|
+
"kind": "method",
|
|
55741
|
+
"name": "_requestSubmit",
|
|
55742
|
+
"privacy": "private",
|
|
55743
|
+
"return": {
|
|
55744
|
+
"type": {
|
|
55745
|
+
"text": "void"
|
|
55746
|
+
}
|
|
55747
|
+
},
|
|
55748
|
+
"parameters": [
|
|
55749
|
+
{
|
|
55750
|
+
"name": "form",
|
|
55751
|
+
"type": {
|
|
55752
|
+
"text": "HTMLFormElement"
|
|
55753
|
+
}
|
|
55754
|
+
}
|
|
55755
|
+
],
|
|
55756
|
+
"inheritedFrom": {
|
|
55757
|
+
"name": "SbbButtonBaseElement",
|
|
55758
|
+
"module": "core/base-elements/button-base-element.js"
|
|
55759
|
+
}
|
|
55760
|
+
},
|
|
55761
|
+
{
|
|
55762
|
+
"kind": "field",
|
|
55763
|
+
"name": "_formKeyDown",
|
|
55764
|
+
"privacy": "private",
|
|
55765
|
+
"inheritedFrom": {
|
|
55766
|
+
"name": "SbbButtonBaseElement",
|
|
55767
|
+
"module": "core/base-elements/button-base-element.js"
|
|
55768
|
+
}
|
|
55769
|
+
},
|
|
55770
|
+
{
|
|
55771
|
+
"kind": "field",
|
|
55772
|
+
"name": "formAssociated",
|
|
55710
55773
|
"type": {
|
|
55711
55774
|
"text": "boolean"
|
|
55712
55775
|
},
|
|
55713
55776
|
"privacy": "public",
|
|
55714
|
-
"
|
|
55715
|
-
"
|
|
55716
|
-
"attribute": "download",
|
|
55717
|
-
"reflects": true,
|
|
55777
|
+
"static": true,
|
|
55778
|
+
"default": "true",
|
|
55718
55779
|
"inheritedFrom": {
|
|
55719
|
-
"name": "
|
|
55720
|
-
"module": "core/
|
|
55780
|
+
"name": "SbbFormAssociatedMixin",
|
|
55781
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
55721
55782
|
}
|
|
55722
55783
|
},
|
|
55723
55784
|
{
|
|
55724
55785
|
"kind": "field",
|
|
55725
|
-
"name": "
|
|
55786
|
+
"name": "name",
|
|
55787
|
+
"privacy": "public",
|
|
55788
|
+
"description": "Name of the form element. Will be read from name attribute.",
|
|
55726
55789
|
"type": {
|
|
55727
55790
|
"text": "string"
|
|
55728
55791
|
},
|
|
55792
|
+
"attribute": "name",
|
|
55793
|
+
"inheritedFrom": {
|
|
55794
|
+
"name": "SbbFormAssociatedMixin",
|
|
55795
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
55796
|
+
}
|
|
55797
|
+
},
|
|
55798
|
+
{
|
|
55799
|
+
"kind": "field",
|
|
55800
|
+
"name": "validity",
|
|
55801
|
+
"type": {
|
|
55802
|
+
"text": "ValidityState"
|
|
55803
|
+
},
|
|
55729
55804
|
"privacy": "public",
|
|
55730
|
-
"
|
|
55731
|
-
"
|
|
55732
|
-
"attribute": "accessibility-label",
|
|
55805
|
+
"description": "Returns the ValidityState object for this element.",
|
|
55806
|
+
"readonly": true,
|
|
55733
55807
|
"inheritedFrom": {
|
|
55734
|
-
"name": "
|
|
55735
|
-
"module": "core/
|
|
55808
|
+
"name": "SbbFormAssociatedMixin",
|
|
55809
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
55736
55810
|
}
|
|
55737
55811
|
},
|
|
55738
55812
|
{
|
|
55739
55813
|
"kind": "field",
|
|
55740
|
-
"name": "
|
|
55814
|
+
"name": "validationMessage",
|
|
55741
55815
|
"type": {
|
|
55742
55816
|
"text": "string"
|
|
55743
55817
|
},
|
|
55744
55818
|
"privacy": "public",
|
|
55745
|
-
"
|
|
55746
|
-
"
|
|
55747
|
-
"attribute": "accessibility-current",
|
|
55819
|
+
"description": "Returns the current error message, if available, which corresponds\nto the current validation state.\nPlease note that only one message is returned at a time (e.g. if\nmultiple validity states are invalid, only the chronologically first one\nis returned until it is fixed, at which point the next message might be\nreturned, if it is still applicable). Also, a custom validity message\n(see below) has precedence over native validation messages.",
|
|
55820
|
+
"readonly": true,
|
|
55748
55821
|
"inheritedFrom": {
|
|
55749
|
-
"name": "
|
|
55750
|
-
"module": "core/
|
|
55822
|
+
"name": "SbbFormAssociatedMixin",
|
|
55823
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
55751
55824
|
}
|
|
55752
55825
|
},
|
|
55753
55826
|
{
|
|
55754
55827
|
"kind": "field",
|
|
55755
|
-
"name": "
|
|
55756
|
-
"
|
|
55757
|
-
|
|
55828
|
+
"name": "willValidate",
|
|
55829
|
+
"type": {
|
|
55830
|
+
"text": "boolean"
|
|
55831
|
+
},
|
|
55832
|
+
"privacy": "public",
|
|
55833
|
+
"description": "Returns true if this element will be validated\nwhen the form is submitted; false otherwise.",
|
|
55834
|
+
"readonly": true,
|
|
55758
55835
|
"inheritedFrom": {
|
|
55759
|
-
"name": "
|
|
55760
|
-
"module": "core/
|
|
55836
|
+
"name": "SbbFormAssociatedMixin",
|
|
55837
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
55761
55838
|
}
|
|
55762
55839
|
},
|
|
55763
55840
|
{
|
|
55764
55841
|
"kind": "field",
|
|
55765
|
-
"name": "
|
|
55842
|
+
"name": "_validityStates",
|
|
55843
|
+
"privacy": "private",
|
|
55844
|
+
"default": "new Map< keyof ValidityStateFlags, { flagValue: unknown; message: string } >()",
|
|
55845
|
+
"inheritedFrom": {
|
|
55846
|
+
"name": "SbbFormAssociatedMixin",
|
|
55847
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
55848
|
+
}
|
|
55849
|
+
},
|
|
55850
|
+
{
|
|
55851
|
+
"kind": "field",
|
|
55852
|
+
"name": "formDisabled",
|
|
55766
55853
|
"type": {
|
|
55767
|
-
"text": "
|
|
55854
|
+
"text": "boolean"
|
|
55768
55855
|
},
|
|
55769
55856
|
"privacy": "protected",
|
|
55770
|
-
"
|
|
55771
|
-
"
|
|
55857
|
+
"default": "false",
|
|
55858
|
+
"description": "Whenever a surrounding form or fieldset is changing its disabled state.",
|
|
55772
55859
|
"inheritedFrom": {
|
|
55773
|
-
"name": "
|
|
55774
|
-
"module": "core/
|
|
55860
|
+
"name": "SbbFormAssociatedMixin",
|
|
55861
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
55775
55862
|
}
|
|
55776
55863
|
},
|
|
55777
55864
|
{
|
|
55778
|
-
"kind": "
|
|
55779
|
-
"name": "
|
|
55865
|
+
"kind": "method",
|
|
55866
|
+
"name": "checkValidity",
|
|
55867
|
+
"privacy": "public",
|
|
55868
|
+
"return": {
|
|
55869
|
+
"type": {
|
|
55870
|
+
"text": "boolean"
|
|
55871
|
+
}
|
|
55872
|
+
},
|
|
55873
|
+
"description": "Returns true if this element has no validity problems; false otherwise.\nFires an invalid event at the element in the latter case.",
|
|
55874
|
+
"inheritedFrom": {
|
|
55875
|
+
"name": "SbbFormAssociatedMixin",
|
|
55876
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
55877
|
+
}
|
|
55878
|
+
},
|
|
55879
|
+
{
|
|
55880
|
+
"kind": "method",
|
|
55881
|
+
"name": "reportValidity",
|
|
55882
|
+
"privacy": "public",
|
|
55883
|
+
"return": {
|
|
55884
|
+
"type": {
|
|
55885
|
+
"text": "boolean"
|
|
55886
|
+
}
|
|
55887
|
+
},
|
|
55888
|
+
"description": "Returns true if this element has no validity problems; otherwise,\nreturns false, fires an invalid event at the element,\nand (if the event isn't canceled) reports the problem to the user.",
|
|
55889
|
+
"inheritedFrom": {
|
|
55890
|
+
"name": "SbbFormAssociatedMixin",
|
|
55891
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
55892
|
+
}
|
|
55893
|
+
},
|
|
55894
|
+
{
|
|
55895
|
+
"kind": "method",
|
|
55896
|
+
"name": "setCustomValidity",
|
|
55897
|
+
"privacy": "public",
|
|
55898
|
+
"return": {
|
|
55899
|
+
"type": {
|
|
55900
|
+
"text": "void"
|
|
55901
|
+
}
|
|
55902
|
+
},
|
|
55903
|
+
"parameters": [
|
|
55904
|
+
{
|
|
55905
|
+
"name": "message",
|
|
55906
|
+
"type": {
|
|
55907
|
+
"text": "string"
|
|
55908
|
+
}
|
|
55909
|
+
}
|
|
55910
|
+
],
|
|
55911
|
+
"description": "Sets the custom validity message for this element. Use the empty string\nto indicate that the element does not have a custom validity error.",
|
|
55912
|
+
"inheritedFrom": {
|
|
55913
|
+
"name": "SbbFormAssociatedMixin",
|
|
55914
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
55915
|
+
}
|
|
55916
|
+
},
|
|
55917
|
+
{
|
|
55918
|
+
"kind": "method",
|
|
55919
|
+
"name": "_hasDisabledAncestor",
|
|
55780
55920
|
"privacy": "private",
|
|
55921
|
+
"return": {
|
|
55922
|
+
"type": {
|
|
55923
|
+
"text": "boolean"
|
|
55924
|
+
}
|
|
55925
|
+
},
|
|
55781
55926
|
"inheritedFrom": {
|
|
55782
|
-
"name": "
|
|
55783
|
-
"module": "core/
|
|
55927
|
+
"name": "SbbFormAssociatedMixin",
|
|
55928
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
55784
55929
|
}
|
|
55785
55930
|
},
|
|
55786
55931
|
{
|
|
55787
55932
|
"kind": "method",
|
|
55788
|
-
"name": "
|
|
55933
|
+
"name": "updateFormValue",
|
|
55789
55934
|
"privacy": "protected",
|
|
55790
55935
|
"return": {
|
|
55791
55936
|
"type": {
|
|
55792
|
-
"text": "
|
|
55937
|
+
"text": "void"
|
|
55938
|
+
}
|
|
55939
|
+
},
|
|
55940
|
+
"description": "Should be called when form value is changed.\nAdapts and sets the formValue in the supported format (string | FormData | File | null)\nhttps://developer.mozilla.org/en-US/docs/Web/API/ElementInternals/setFormValue",
|
|
55941
|
+
"inheritedFrom": {
|
|
55942
|
+
"name": "SbbFormAssociatedMixin",
|
|
55943
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
55944
|
+
}
|
|
55945
|
+
},
|
|
55946
|
+
{
|
|
55947
|
+
"kind": "method",
|
|
55948
|
+
"name": "formState",
|
|
55949
|
+
"privacy": "protected",
|
|
55950
|
+
"return": {
|
|
55951
|
+
"type": {
|
|
55952
|
+
"text": "FormRestoreState"
|
|
55953
|
+
}
|
|
55954
|
+
},
|
|
55955
|
+
"inheritedFrom": {
|
|
55956
|
+
"name": "SbbFormAssociatedMixin",
|
|
55957
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
55958
|
+
}
|
|
55959
|
+
},
|
|
55960
|
+
{
|
|
55961
|
+
"kind": "method",
|
|
55962
|
+
"name": "setValidityFlag",
|
|
55963
|
+
"privacy": "protected",
|
|
55964
|
+
"return": {
|
|
55965
|
+
"type": {
|
|
55966
|
+
"text": "void"
|
|
55793
55967
|
}
|
|
55794
55968
|
},
|
|
55795
55969
|
"parameters": [
|
|
55796
55970
|
{
|
|
55797
|
-
"name": "
|
|
55971
|
+
"name": "flag",
|
|
55798
55972
|
"type": {
|
|
55799
|
-
"text": "
|
|
55973
|
+
"text": "T"
|
|
55974
|
+
}
|
|
55975
|
+
},
|
|
55976
|
+
{
|
|
55977
|
+
"name": "message",
|
|
55978
|
+
"type": {
|
|
55979
|
+
"text": "string"
|
|
55980
|
+
}
|
|
55981
|
+
},
|
|
55982
|
+
{
|
|
55983
|
+
"name": "flagValue",
|
|
55984
|
+
"optional": true,
|
|
55985
|
+
"type": {
|
|
55986
|
+
"text": "ValidityStateFlags[T]"
|
|
55800
55987
|
}
|
|
55801
55988
|
}
|
|
55802
55989
|
],
|
|
55990
|
+
"description": "Marks this element as suffering from the constraint indicated by the\nflag argument and associates the given message to it.\nNote that only one message is displayed at a time and custom messages by\nconsumers are always displayed before internal messages and internal\nmessages are displayed in the order they were added.\nTo set/define custom validity state flags, you need to extend the\nValidityState prototype (and the CustomValidityState interface).",
|
|
55803
55991
|
"inheritedFrom": {
|
|
55804
|
-
"name": "
|
|
55805
|
-
"module": "core/
|
|
55992
|
+
"name": "SbbFormAssociatedMixin",
|
|
55993
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
55994
|
+
}
|
|
55995
|
+
},
|
|
55996
|
+
{
|
|
55997
|
+
"kind": "method",
|
|
55998
|
+
"name": "removeValidityFlag",
|
|
55999
|
+
"privacy": "protected",
|
|
56000
|
+
"return": {
|
|
56001
|
+
"type": {
|
|
56002
|
+
"text": "void"
|
|
56003
|
+
}
|
|
56004
|
+
},
|
|
56005
|
+
"parameters": [
|
|
56006
|
+
{
|
|
56007
|
+
"name": "flag",
|
|
56008
|
+
"type": {
|
|
56009
|
+
"text": "T"
|
|
56010
|
+
}
|
|
56011
|
+
}
|
|
56012
|
+
],
|
|
56013
|
+
"description": "Removes the validity state flag entry and updates validity state.",
|
|
56014
|
+
"inheritedFrom": {
|
|
56015
|
+
"name": "SbbFormAssociatedMixin",
|
|
56016
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
56017
|
+
}
|
|
56018
|
+
},
|
|
56019
|
+
{
|
|
56020
|
+
"kind": "method",
|
|
56021
|
+
"name": "validate",
|
|
56022
|
+
"privacy": "protected",
|
|
56023
|
+
"return": {
|
|
56024
|
+
"type": {
|
|
56025
|
+
"text": "void"
|
|
56026
|
+
}
|
|
56027
|
+
},
|
|
56028
|
+
"description": "To be called whenever the current element needs to be validated.",
|
|
56029
|
+
"inheritedFrom": {
|
|
56030
|
+
"name": "SbbFormAssociatedMixin",
|
|
56031
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
56032
|
+
}
|
|
56033
|
+
},
|
|
56034
|
+
{
|
|
56035
|
+
"kind": "method",
|
|
56036
|
+
"name": "shouldValidate",
|
|
56037
|
+
"privacy": "protected",
|
|
56038
|
+
"return": {
|
|
56039
|
+
"type": {
|
|
56040
|
+
"text": "boolean"
|
|
56041
|
+
}
|
|
56042
|
+
},
|
|
56043
|
+
"parameters": [
|
|
56044
|
+
{
|
|
56045
|
+
"name": "name",
|
|
56046
|
+
"type": {
|
|
56047
|
+
"text": "PropertyKey | undefined"
|
|
56048
|
+
}
|
|
56049
|
+
}
|
|
56050
|
+
],
|
|
56051
|
+
"description": "Whether validation should be run on a property change with the given name.",
|
|
56052
|
+
"inheritedFrom": {
|
|
56053
|
+
"name": "SbbFormAssociatedMixin",
|
|
56054
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
56055
|
+
}
|
|
56056
|
+
},
|
|
56057
|
+
{
|
|
56058
|
+
"kind": "method",
|
|
56059
|
+
"name": "_setInternalValidity",
|
|
56060
|
+
"privacy": "private",
|
|
56061
|
+
"return": {
|
|
56062
|
+
"type": {
|
|
56063
|
+
"text": "void"
|
|
56064
|
+
}
|
|
56065
|
+
},
|
|
56066
|
+
"inheritedFrom": {
|
|
56067
|
+
"name": "SbbFormAssociatedMixin",
|
|
56068
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
56069
|
+
}
|
|
56070
|
+
},
|
|
56071
|
+
{
|
|
56072
|
+
"kind": "field",
|
|
56073
|
+
"name": "role",
|
|
56074
|
+
"type": {
|
|
56075
|
+
"text": "ElementInternals['role']"
|
|
56076
|
+
},
|
|
56077
|
+
"privacy": "public",
|
|
56078
|
+
"static": true,
|
|
56079
|
+
"readonly": true,
|
|
56080
|
+
"default": "'button'",
|
|
56081
|
+
"inheritedFrom": {
|
|
56082
|
+
"name": "SbbButtonLikeBaseElement",
|
|
56083
|
+
"module": "core/base-elements/button-base-element.js"
|
|
56084
|
+
}
|
|
56085
|
+
},
|
|
56086
|
+
{
|
|
56087
|
+
"kind": "field",
|
|
56088
|
+
"name": "_preventScrollOnSpaceKeydown",
|
|
56089
|
+
"privacy": "private",
|
|
56090
|
+
"description": "Prevents scrolling from pressing Space, when the event target is an action element.\nAlso sets active state.",
|
|
56091
|
+
"parameters": [
|
|
56092
|
+
{
|
|
56093
|
+
"description": "The origin event.",
|
|
56094
|
+
"name": "event"
|
|
56095
|
+
}
|
|
56096
|
+
],
|
|
56097
|
+
"inheritedFrom": {
|
|
56098
|
+
"name": "SbbButtonLikeBaseElement",
|
|
56099
|
+
"module": "core/base-elements/button-base-element.js"
|
|
56100
|
+
}
|
|
56101
|
+
},
|
|
56102
|
+
{
|
|
56103
|
+
"kind": "field",
|
|
56104
|
+
"name": "_removeActiveMarker",
|
|
56105
|
+
"privacy": "private",
|
|
56106
|
+
"inheritedFrom": {
|
|
56107
|
+
"name": "SbbButtonLikeBaseElement",
|
|
56108
|
+
"module": "core/base-elements/button-base-element.js"
|
|
56109
|
+
}
|
|
56110
|
+
},
|
|
56111
|
+
{
|
|
56112
|
+
"kind": "field",
|
|
56113
|
+
"name": "_dispatchClickEventOnSpaceKeyup",
|
|
56114
|
+
"privacy": "private",
|
|
56115
|
+
"description": "Dispatches a 'click' PointerEvent if the original keyboard event is a 'Space' press.\nAs verified with the native button, when 'Space' is pressed, a 'click' event is dispatched\nafter the 'keyup' event.",
|
|
56116
|
+
"parameters": [
|
|
56117
|
+
{
|
|
56118
|
+
"description": "The origin event.",
|
|
56119
|
+
"name": "event"
|
|
56120
|
+
}
|
|
56121
|
+
],
|
|
56122
|
+
"inheritedFrom": {
|
|
56123
|
+
"name": "SbbButtonLikeBaseElement",
|
|
56124
|
+
"module": "core/base-elements/button-base-element.js"
|
|
56125
|
+
}
|
|
56126
|
+
},
|
|
56127
|
+
{
|
|
56128
|
+
"kind": "field",
|
|
56129
|
+
"name": "_dispatchClickEvent",
|
|
56130
|
+
"privacy": "private",
|
|
56131
|
+
"inheritedFrom": {
|
|
56132
|
+
"name": "SbbButtonLikeBaseElement",
|
|
56133
|
+
"module": "core/base-elements/button-base-element.js"
|
|
55806
56134
|
}
|
|
55807
56135
|
},
|
|
55808
56136
|
{
|
|
@@ -55958,10 +56286,10 @@
|
|
|
55958
56286
|
}
|
|
55959
56287
|
],
|
|
55960
56288
|
"superclass": {
|
|
55961
|
-
"name": "
|
|
56289
|
+
"name": "SbbButtonBaseElement",
|
|
55962
56290
|
"module": "core/base-elements.js"
|
|
55963
56291
|
},
|
|
55964
|
-
"tagName": "sbb-card-
|
|
56292
|
+
"tagName": "sbb-card-button",
|
|
55965
56293
|
"customElement": true,
|
|
55966
56294
|
"attributes": [
|
|
55967
56295
|
{
|
|
@@ -55977,81 +56305,53 @@
|
|
|
55977
56305
|
}
|
|
55978
56306
|
},
|
|
55979
56307
|
{
|
|
55980
|
-
"name": "
|
|
56308
|
+
"name": "value",
|
|
55981
56309
|
"type": {
|
|
55982
56310
|
"text": "string"
|
|
55983
56311
|
},
|
|
55984
56312
|
"default": "''",
|
|
55985
|
-
"description": "
|
|
55986
|
-
"fieldName": "
|
|
56313
|
+
"description": "Value of the form element.",
|
|
56314
|
+
"fieldName": "value",
|
|
55987
56315
|
"inheritedFrom": {
|
|
55988
|
-
"name": "
|
|
55989
|
-
"module": "core/base-elements/
|
|
56316
|
+
"name": "SbbButtonBaseElement",
|
|
56317
|
+
"module": "core/base-elements/button-base-element.js"
|
|
55990
56318
|
}
|
|
55991
56319
|
},
|
|
55992
56320
|
{
|
|
55993
|
-
"name": "
|
|
56321
|
+
"name": "type",
|
|
56322
|
+
"description": "The type attribute to use for the button.",
|
|
56323
|
+
"default": "'button'",
|
|
55994
56324
|
"type": {
|
|
55995
|
-
"text": "
|
|
56325
|
+
"text": "SbbButtonType"
|
|
55996
56326
|
},
|
|
55997
|
-
"
|
|
55998
|
-
"description": "Where to display the linked URL.",
|
|
55999
|
-
"fieldName": "target",
|
|
56327
|
+
"fieldName": "type",
|
|
56000
56328
|
"inheritedFrom": {
|
|
56001
|
-
"name": "
|
|
56002
|
-
"module": "core/base-elements/
|
|
56329
|
+
"name": "SbbButtonBaseElement",
|
|
56330
|
+
"module": "core/base-elements/button-base-element.js"
|
|
56003
56331
|
}
|
|
56004
56332
|
},
|
|
56005
56333
|
{
|
|
56006
|
-
"name": "
|
|
56334
|
+
"name": "form",
|
|
56335
|
+
"description": "The `<form>` element to associate the button with.",
|
|
56007
56336
|
"type": {
|
|
56008
|
-
"text": "
|
|
56337
|
+
"text": "HTMLFormElement | null"
|
|
56009
56338
|
},
|
|
56010
|
-
"
|
|
56011
|
-
"description": "The relationship of the linked URL as space-separated link types.",
|
|
56012
|
-
"fieldName": "rel",
|
|
56339
|
+
"fieldName": "form",
|
|
56013
56340
|
"inheritedFrom": {
|
|
56014
|
-
"name": "
|
|
56015
|
-
"module": "core/base-elements/
|
|
56341
|
+
"name": "SbbButtonBaseElement",
|
|
56342
|
+
"module": "core/base-elements/button-base-element.js"
|
|
56016
56343
|
}
|
|
56017
56344
|
},
|
|
56018
56345
|
{
|
|
56019
|
-
"name": "
|
|
56346
|
+
"name": "name",
|
|
56347
|
+
"description": "Name of the form element. Will be read from name attribute.",
|
|
56020
56348
|
"type": {
|
|
56021
|
-
"text": "
|
|
56349
|
+
"text": "string"
|
|
56022
56350
|
},
|
|
56023
|
-
"
|
|
56024
|
-
"description": "Whether the browser will show the download dialog on click.",
|
|
56025
|
-
"fieldName": "download",
|
|
56351
|
+
"fieldName": "name",
|
|
56026
56352
|
"inheritedFrom": {
|
|
56027
|
-
"name": "
|
|
56028
|
-
"module": "core/
|
|
56029
|
-
}
|
|
56030
|
-
},
|
|
56031
|
-
{
|
|
56032
|
-
"name": "accessibility-label",
|
|
56033
|
-
"type": {
|
|
56034
|
-
"text": "string"
|
|
56035
|
-
},
|
|
56036
|
-
"default": "''",
|
|
56037
|
-
"description": "This will be forwarded as aria-label to the inner anchor element.",
|
|
56038
|
-
"fieldName": "accessibilityLabel",
|
|
56039
|
-
"inheritedFrom": {
|
|
56040
|
-
"name": "SbbLinkBaseElement",
|
|
56041
|
-
"module": "core/base-elements/link-base-element.js"
|
|
56042
|
-
}
|
|
56043
|
-
},
|
|
56044
|
-
{
|
|
56045
|
-
"name": "accessibility-current",
|
|
56046
|
-
"type": {
|
|
56047
|
-
"text": "string"
|
|
56048
|
-
},
|
|
56049
|
-
"default": "''",
|
|
56050
|
-
"description": "This will be forwarded as aria-current to the inner anchor element.",
|
|
56051
|
-
"fieldName": "accessibilityCurrent",
|
|
56052
|
-
"inheritedFrom": {
|
|
56053
|
-
"name": "SbbLinkBaseElement",
|
|
56054
|
-
"module": "core/base-elements/link-base-element.js"
|
|
56353
|
+
"name": "SbbFormAssociatedMixin",
|
|
56354
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
56055
56355
|
}
|
|
56056
56356
|
}
|
|
56057
56357
|
]
|
|
@@ -56060,25 +56360,25 @@
|
|
|
56060
56360
|
"exports": [
|
|
56061
56361
|
{
|
|
56062
56362
|
"kind": "js",
|
|
56063
|
-
"name": "
|
|
56363
|
+
"name": "SbbCardButtonElement",
|
|
56064
56364
|
"declaration": {
|
|
56065
|
-
"name": "
|
|
56066
|
-
"module": "card/card-
|
|
56365
|
+
"name": "SbbCardButtonElement",
|
|
56366
|
+
"module": "card/card-button/card-button.component.js"
|
|
56067
56367
|
}
|
|
56068
56368
|
}
|
|
56069
56369
|
]
|
|
56070
56370
|
},
|
|
56071
56371
|
{
|
|
56072
56372
|
"kind": "javascript-module",
|
|
56073
|
-
"path": "card/card-
|
|
56373
|
+
"path": "card/card-link/card-link.component.js",
|
|
56074
56374
|
"declarations": [
|
|
56075
56375
|
{
|
|
56076
56376
|
"kind": "class",
|
|
56077
|
-
"description": "It turns the `sbb-card` into a
|
|
56078
|
-
"name": "
|
|
56377
|
+
"description": "It turns the `sbb-card` into a link element.",
|
|
56378
|
+
"name": "SbbCardLinkElement",
|
|
56079
56379
|
"slots": [
|
|
56080
56380
|
{
|
|
56081
|
-
"description": "Use the unnamed slot to add a descriptive label / title of the
|
|
56381
|
+
"description": "Use the unnamed slot to add a descriptive label / title of the link (important!). This is relevant for SEO and screen readers.",
|
|
56082
56382
|
"name": ""
|
|
56083
56383
|
}
|
|
56084
56384
|
],
|
|
@@ -56092,7 +56392,7 @@
|
|
|
56092
56392
|
"privacy": "public",
|
|
56093
56393
|
"static": true,
|
|
56094
56394
|
"readonly": true,
|
|
56095
|
-
"default": "'sbb-card-
|
|
56395
|
+
"default": "'sbb-card-link'",
|
|
56096
56396
|
"inheritedFrom": {
|
|
56097
56397
|
"name": "SbbElement",
|
|
56098
56398
|
"module": "core/base-elements/element.js"
|
|
@@ -56105,7 +56405,7 @@
|
|
|
56105
56405
|
"text": "'link' | 'button'"
|
|
56106
56406
|
},
|
|
56107
56407
|
"privacy": "protected",
|
|
56108
|
-
"default": "'
|
|
56408
|
+
"default": "'link'",
|
|
56109
56409
|
"inheritedFrom": {
|
|
56110
56410
|
"name": "SbbCardActionCommonElementMixin",
|
|
56111
56411
|
"module": "card/common/card-action-common.js"
|
|
@@ -56222,479 +56522,151 @@
|
|
|
56222
56522
|
},
|
|
56223
56523
|
{
|
|
56224
56524
|
"kind": "field",
|
|
56225
|
-
"name": "
|
|
56226
|
-
"type": {
|
|
56227
|
-
"text": "array"
|
|
56228
|
-
},
|
|
56229
|
-
"privacy": "private",
|
|
56230
|
-
"readonly": true,
|
|
56231
|
-
"default": "[ 'input', 'sbb-date-input', 'sbb-time-input', ]",
|
|
56232
|
-
"inheritedFrom": {
|
|
56233
|
-
"name": "SbbButtonBaseElement",
|
|
56234
|
-
"module": "core/base-elements/button-base-element.js"
|
|
56235
|
-
}
|
|
56236
|
-
},
|
|
56237
|
-
{
|
|
56238
|
-
"kind": "field",
|
|
56239
|
-
"name": "value",
|
|
56525
|
+
"name": "href",
|
|
56240
56526
|
"type": {
|
|
56241
56527
|
"text": "string"
|
|
56242
56528
|
},
|
|
56243
56529
|
"privacy": "public",
|
|
56244
56530
|
"default": "''",
|
|
56245
|
-
"description": "
|
|
56246
|
-
"attribute": "
|
|
56247
|
-
"
|
|
56248
|
-
"name": "SbbButtonBaseElement",
|
|
56249
|
-
"module": "core/base-elements/button-base-element.js"
|
|
56250
|
-
}
|
|
56251
|
-
},
|
|
56252
|
-
{
|
|
56253
|
-
"kind": "field",
|
|
56254
|
-
"name": "type",
|
|
56255
|
-
"privacy": "public",
|
|
56256
|
-
"description": "The type attribute to use for the button.",
|
|
56257
|
-
"default": "'button'",
|
|
56258
|
-
"type": {
|
|
56259
|
-
"text": "SbbButtonType"
|
|
56260
|
-
},
|
|
56261
|
-
"attribute": "type",
|
|
56531
|
+
"description": "The href value you want to link to.",
|
|
56532
|
+
"attribute": "href",
|
|
56533
|
+
"reflects": true,
|
|
56262
56534
|
"inheritedFrom": {
|
|
56263
|
-
"name": "
|
|
56264
|
-
"module": "core/base-elements/
|
|
56535
|
+
"name": "SbbLinkBaseElement",
|
|
56536
|
+
"module": "core/base-elements/link-base-element.js"
|
|
56265
56537
|
}
|
|
56266
56538
|
},
|
|
56267
56539
|
{
|
|
56268
56540
|
"kind": "field",
|
|
56269
|
-
"name": "
|
|
56541
|
+
"name": "target",
|
|
56270
56542
|
"type": {
|
|
56271
|
-
"text": "
|
|
56543
|
+
"text": "LinkTargetType | string"
|
|
56272
56544
|
},
|
|
56273
56545
|
"privacy": "public",
|
|
56274
|
-
"
|
|
56275
|
-
"
|
|
56546
|
+
"default": "''",
|
|
56547
|
+
"description": "Where to display the linked URL.",
|
|
56548
|
+
"attribute": "target",
|
|
56549
|
+
"reflects": true,
|
|
56276
56550
|
"inheritedFrom": {
|
|
56277
|
-
"name": "
|
|
56278
|
-
"module": "core/base-elements/
|
|
56551
|
+
"name": "SbbLinkBaseElement",
|
|
56552
|
+
"module": "core/base-elements/link-base-element.js"
|
|
56279
56553
|
}
|
|
56280
56554
|
},
|
|
56281
56555
|
{
|
|
56282
56556
|
"kind": "field",
|
|
56283
|
-
"name": "
|
|
56557
|
+
"name": "rel",
|
|
56284
56558
|
"type": {
|
|
56285
56559
|
"text": "string"
|
|
56286
56560
|
},
|
|
56287
|
-
"privacy": "
|
|
56561
|
+
"privacy": "public",
|
|
56288
56562
|
"default": "''",
|
|
56563
|
+
"description": "The relationship of the linked URL as space-separated link types.",
|
|
56564
|
+
"attribute": "rel",
|
|
56565
|
+
"reflects": true,
|
|
56289
56566
|
"inheritedFrom": {
|
|
56290
|
-
"name": "
|
|
56291
|
-
"module": "core/base-elements/
|
|
56292
|
-
}
|
|
56293
|
-
},
|
|
56294
|
-
{
|
|
56295
|
-
"kind": "field",
|
|
56296
|
-
"name": "_handleButtonClick",
|
|
56297
|
-
"privacy": "private",
|
|
56298
|
-
"inheritedFrom": {
|
|
56299
|
-
"name": "SbbButtonBaseElement",
|
|
56300
|
-
"module": "core/base-elements/button-base-element.js"
|
|
56301
|
-
}
|
|
56302
|
-
},
|
|
56303
|
-
{
|
|
56304
|
-
"kind": "method",
|
|
56305
|
-
"name": "_requestSubmit",
|
|
56306
|
-
"privacy": "private",
|
|
56307
|
-
"return": {
|
|
56308
|
-
"type": {
|
|
56309
|
-
"text": "void"
|
|
56310
|
-
}
|
|
56311
|
-
},
|
|
56312
|
-
"parameters": [
|
|
56313
|
-
{
|
|
56314
|
-
"name": "form",
|
|
56315
|
-
"type": {
|
|
56316
|
-
"text": "HTMLFormElement"
|
|
56317
|
-
}
|
|
56318
|
-
}
|
|
56319
|
-
],
|
|
56320
|
-
"inheritedFrom": {
|
|
56321
|
-
"name": "SbbButtonBaseElement",
|
|
56322
|
-
"module": "core/base-elements/button-base-element.js"
|
|
56323
|
-
}
|
|
56324
|
-
},
|
|
56325
|
-
{
|
|
56326
|
-
"kind": "field",
|
|
56327
|
-
"name": "_formKeyDown",
|
|
56328
|
-
"privacy": "private",
|
|
56329
|
-
"inheritedFrom": {
|
|
56330
|
-
"name": "SbbButtonBaseElement",
|
|
56331
|
-
"module": "core/base-elements/button-base-element.js"
|
|
56567
|
+
"name": "SbbLinkBaseElement",
|
|
56568
|
+
"module": "core/base-elements/link-base-element.js"
|
|
56332
56569
|
}
|
|
56333
56570
|
},
|
|
56334
56571
|
{
|
|
56335
56572
|
"kind": "field",
|
|
56336
|
-
"name": "
|
|
56573
|
+
"name": "download",
|
|
56337
56574
|
"type": {
|
|
56338
56575
|
"text": "boolean"
|
|
56339
56576
|
},
|
|
56340
56577
|
"privacy": "public",
|
|
56341
|
-
"
|
|
56342
|
-
"
|
|
56578
|
+
"default": "false",
|
|
56579
|
+
"description": "Whether the browser will show the download dialog on click.",
|
|
56580
|
+
"attribute": "download",
|
|
56581
|
+
"reflects": true,
|
|
56343
56582
|
"inheritedFrom": {
|
|
56344
|
-
"name": "
|
|
56345
|
-
"module": "core/
|
|
56583
|
+
"name": "SbbLinkBaseElement",
|
|
56584
|
+
"module": "core/base-elements/link-base-element.js"
|
|
56346
56585
|
}
|
|
56347
56586
|
},
|
|
56348
56587
|
{
|
|
56349
56588
|
"kind": "field",
|
|
56350
|
-
"name": "
|
|
56351
|
-
"privacy": "public",
|
|
56352
|
-
"description": "Name of the form element. Will be read from name attribute.",
|
|
56589
|
+
"name": "accessibilityLabel",
|
|
56353
56590
|
"type": {
|
|
56354
56591
|
"text": "string"
|
|
56355
56592
|
},
|
|
56356
|
-
"attribute": "name",
|
|
56357
|
-
"inheritedFrom": {
|
|
56358
|
-
"name": "SbbFormAssociatedMixin",
|
|
56359
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
56360
|
-
}
|
|
56361
|
-
},
|
|
56362
|
-
{
|
|
56363
|
-
"kind": "field",
|
|
56364
|
-
"name": "validity",
|
|
56365
|
-
"type": {
|
|
56366
|
-
"text": "ValidityState"
|
|
56367
|
-
},
|
|
56368
56593
|
"privacy": "public",
|
|
56369
|
-
"
|
|
56370
|
-
"
|
|
56594
|
+
"default": "''",
|
|
56595
|
+
"description": "This will be forwarded as aria-label to the inner anchor element.",
|
|
56596
|
+
"attribute": "accessibility-label",
|
|
56371
56597
|
"inheritedFrom": {
|
|
56372
|
-
"name": "
|
|
56373
|
-
"module": "core/
|
|
56598
|
+
"name": "SbbLinkBaseElement",
|
|
56599
|
+
"module": "core/base-elements/link-base-element.js"
|
|
56374
56600
|
}
|
|
56375
56601
|
},
|
|
56376
56602
|
{
|
|
56377
56603
|
"kind": "field",
|
|
56378
|
-
"name": "
|
|
56604
|
+
"name": "accessibilityCurrent",
|
|
56379
56605
|
"type": {
|
|
56380
56606
|
"text": "string"
|
|
56381
56607
|
},
|
|
56382
56608
|
"privacy": "public",
|
|
56383
|
-
"
|
|
56384
|
-
"
|
|
56385
|
-
"
|
|
56386
|
-
"name": "SbbFormAssociatedMixin",
|
|
56387
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
56388
|
-
}
|
|
56389
|
-
},
|
|
56390
|
-
{
|
|
56391
|
-
"kind": "field",
|
|
56392
|
-
"name": "willValidate",
|
|
56393
|
-
"type": {
|
|
56394
|
-
"text": "boolean"
|
|
56395
|
-
},
|
|
56396
|
-
"privacy": "public",
|
|
56397
|
-
"description": "Returns true if this element will be validated\nwhen the form is submitted; false otherwise.",
|
|
56398
|
-
"readonly": true,
|
|
56609
|
+
"default": "''",
|
|
56610
|
+
"description": "This will be forwarded as aria-current to the inner anchor element.",
|
|
56611
|
+
"attribute": "accessibility-current",
|
|
56399
56612
|
"inheritedFrom": {
|
|
56400
|
-
"name": "
|
|
56401
|
-
"module": "core/
|
|
56613
|
+
"name": "SbbLinkBaseElement",
|
|
56614
|
+
"module": "core/base-elements/link-base-element.js"
|
|
56402
56615
|
}
|
|
56403
56616
|
},
|
|
56404
56617
|
{
|
|
56405
56618
|
"kind": "field",
|
|
56406
|
-
"name": "
|
|
56407
|
-
"privacy": "
|
|
56408
|
-
"default": "new
|
|
56619
|
+
"name": "language",
|
|
56620
|
+
"privacy": "protected",
|
|
56621
|
+
"default": "new SbbLanguageController(this)",
|
|
56409
56622
|
"inheritedFrom": {
|
|
56410
|
-
"name": "
|
|
56411
|
-
"module": "core/
|
|
56623
|
+
"name": "SbbLinkBaseElement",
|
|
56624
|
+
"module": "core/base-elements/link-base-element.js"
|
|
56412
56625
|
}
|
|
56413
56626
|
},
|
|
56414
56627
|
{
|
|
56415
56628
|
"kind": "field",
|
|
56416
|
-
"name": "
|
|
56629
|
+
"name": "anchorRole",
|
|
56417
56630
|
"type": {
|
|
56418
|
-
"text": "
|
|
56631
|
+
"text": "string | null"
|
|
56419
56632
|
},
|
|
56420
56633
|
"privacy": "protected",
|
|
56421
|
-
"
|
|
56422
|
-
"
|
|
56423
|
-
"inheritedFrom": {
|
|
56424
|
-
"name": "SbbFormAssociatedMixin",
|
|
56425
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
56426
|
-
}
|
|
56427
|
-
},
|
|
56428
|
-
{
|
|
56429
|
-
"kind": "method",
|
|
56430
|
-
"name": "checkValidity",
|
|
56431
|
-
"privacy": "public",
|
|
56432
|
-
"return": {
|
|
56433
|
-
"type": {
|
|
56434
|
-
"text": "boolean"
|
|
56435
|
-
}
|
|
56436
|
-
},
|
|
56437
|
-
"description": "Returns true if this element has no validity problems; false otherwise.\nFires an invalid event at the element in the latter case.",
|
|
56438
|
-
"inheritedFrom": {
|
|
56439
|
-
"name": "SbbFormAssociatedMixin",
|
|
56440
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
56441
|
-
}
|
|
56442
|
-
},
|
|
56443
|
-
{
|
|
56444
|
-
"kind": "method",
|
|
56445
|
-
"name": "reportValidity",
|
|
56446
|
-
"privacy": "public",
|
|
56447
|
-
"return": {
|
|
56448
|
-
"type": {
|
|
56449
|
-
"text": "boolean"
|
|
56450
|
-
}
|
|
56451
|
-
},
|
|
56452
|
-
"description": "Returns true if this element has no validity problems; otherwise,\nreturns false, fires an invalid event at the element,\nand (if the event isn't canceled) reports the problem to the user.",
|
|
56453
|
-
"inheritedFrom": {
|
|
56454
|
-
"name": "SbbFormAssociatedMixin",
|
|
56455
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
56456
|
-
}
|
|
56457
|
-
},
|
|
56458
|
-
{
|
|
56459
|
-
"kind": "method",
|
|
56460
|
-
"name": "setCustomValidity",
|
|
56461
|
-
"privacy": "public",
|
|
56462
|
-
"return": {
|
|
56463
|
-
"type": {
|
|
56464
|
-
"text": "void"
|
|
56465
|
-
}
|
|
56466
|
-
},
|
|
56467
|
-
"parameters": [
|
|
56468
|
-
{
|
|
56469
|
-
"name": "message",
|
|
56470
|
-
"type": {
|
|
56471
|
-
"text": "string"
|
|
56472
|
-
}
|
|
56473
|
-
}
|
|
56474
|
-
],
|
|
56475
|
-
"description": "Sets the custom validity message for this element. Use the empty string\nto indicate that the element does not have a custom validity error.",
|
|
56634
|
+
"readonly": true,
|
|
56635
|
+
"default": "null",
|
|
56476
56636
|
"inheritedFrom": {
|
|
56477
|
-
"name": "
|
|
56478
|
-
"module": "core/
|
|
56637
|
+
"name": "SbbLinkBaseElement",
|
|
56638
|
+
"module": "core/base-elements/link-base-element.js"
|
|
56479
56639
|
}
|
|
56480
56640
|
},
|
|
56481
56641
|
{
|
|
56482
|
-
"kind": "
|
|
56483
|
-
"name": "
|
|
56642
|
+
"kind": "field",
|
|
56643
|
+
"name": "_evaluateRelAttribute",
|
|
56484
56644
|
"privacy": "private",
|
|
56485
|
-
"return": {
|
|
56486
|
-
"type": {
|
|
56487
|
-
"text": "boolean"
|
|
56488
|
-
}
|
|
56489
|
-
},
|
|
56490
|
-
"inheritedFrom": {
|
|
56491
|
-
"name": "SbbFormAssociatedMixin",
|
|
56492
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
56493
|
-
}
|
|
56494
|
-
},
|
|
56495
|
-
{
|
|
56496
|
-
"kind": "method",
|
|
56497
|
-
"name": "updateFormValue",
|
|
56498
|
-
"privacy": "protected",
|
|
56499
|
-
"return": {
|
|
56500
|
-
"type": {
|
|
56501
|
-
"text": "void"
|
|
56502
|
-
}
|
|
56503
|
-
},
|
|
56504
|
-
"description": "Should be called when form value is changed.\nAdapts and sets the formValue in the supported format (string | FormData | File | null)\nhttps://developer.mozilla.org/en-US/docs/Web/API/ElementInternals/setFormValue",
|
|
56505
|
-
"inheritedFrom": {
|
|
56506
|
-
"name": "SbbFormAssociatedMixin",
|
|
56507
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
56508
|
-
}
|
|
56509
|
-
},
|
|
56510
|
-
{
|
|
56511
|
-
"kind": "method",
|
|
56512
|
-
"name": "formState",
|
|
56513
|
-
"privacy": "protected",
|
|
56514
|
-
"return": {
|
|
56515
|
-
"type": {
|
|
56516
|
-
"text": "FormRestoreState"
|
|
56517
|
-
}
|
|
56518
|
-
},
|
|
56519
|
-
"inheritedFrom": {
|
|
56520
|
-
"name": "SbbFormAssociatedMixin",
|
|
56521
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
56522
|
-
}
|
|
56523
|
-
},
|
|
56524
|
-
{
|
|
56525
|
-
"kind": "method",
|
|
56526
|
-
"name": "setValidityFlag",
|
|
56527
|
-
"privacy": "protected",
|
|
56528
|
-
"return": {
|
|
56529
|
-
"type": {
|
|
56530
|
-
"text": "void"
|
|
56531
|
-
}
|
|
56532
|
-
},
|
|
56533
|
-
"parameters": [
|
|
56534
|
-
{
|
|
56535
|
-
"name": "flag",
|
|
56536
|
-
"type": {
|
|
56537
|
-
"text": "T"
|
|
56538
|
-
}
|
|
56539
|
-
},
|
|
56540
|
-
{
|
|
56541
|
-
"name": "message",
|
|
56542
|
-
"type": {
|
|
56543
|
-
"text": "string"
|
|
56544
|
-
}
|
|
56545
|
-
},
|
|
56546
|
-
{
|
|
56547
|
-
"name": "flagValue",
|
|
56548
|
-
"optional": true,
|
|
56549
|
-
"type": {
|
|
56550
|
-
"text": "ValidityStateFlags[T]"
|
|
56551
|
-
}
|
|
56552
|
-
}
|
|
56553
|
-
],
|
|
56554
|
-
"description": "Marks this element as suffering from the constraint indicated by the\nflag argument and associates the given message to it.\nNote that only one message is displayed at a time and custom messages by\nconsumers are always displayed before internal messages and internal\nmessages are displayed in the order they were added.\nTo set/define custom validity state flags, you need to extend the\nValidityState prototype (and the CustomValidityState interface).",
|
|
56555
56645
|
"inheritedFrom": {
|
|
56556
|
-
"name": "
|
|
56557
|
-
"module": "core/
|
|
56558
|
-
}
|
|
56559
|
-
},
|
|
56560
|
-
{
|
|
56561
|
-
"kind": "method",
|
|
56562
|
-
"name": "removeValidityFlag",
|
|
56563
|
-
"privacy": "protected",
|
|
56564
|
-
"return": {
|
|
56565
|
-
"type": {
|
|
56566
|
-
"text": "void"
|
|
56567
|
-
}
|
|
56568
|
-
},
|
|
56569
|
-
"parameters": [
|
|
56570
|
-
{
|
|
56571
|
-
"name": "flag",
|
|
56572
|
-
"type": {
|
|
56573
|
-
"text": "T"
|
|
56574
|
-
}
|
|
56575
|
-
}
|
|
56576
|
-
],
|
|
56577
|
-
"description": "Removes the validity state flag entry and updates validity state.",
|
|
56578
|
-
"inheritedFrom": {
|
|
56579
|
-
"name": "SbbFormAssociatedMixin",
|
|
56580
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
56581
|
-
}
|
|
56582
|
-
},
|
|
56583
|
-
{
|
|
56584
|
-
"kind": "method",
|
|
56585
|
-
"name": "validate",
|
|
56586
|
-
"privacy": "protected",
|
|
56587
|
-
"return": {
|
|
56588
|
-
"type": {
|
|
56589
|
-
"text": "void"
|
|
56590
|
-
}
|
|
56591
|
-
},
|
|
56592
|
-
"description": "To be called whenever the current element needs to be validated.",
|
|
56593
|
-
"inheritedFrom": {
|
|
56594
|
-
"name": "SbbFormAssociatedMixin",
|
|
56595
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
56646
|
+
"name": "SbbLinkBaseElement",
|
|
56647
|
+
"module": "core/base-elements/link-base-element.js"
|
|
56596
56648
|
}
|
|
56597
56649
|
},
|
|
56598
56650
|
{
|
|
56599
56651
|
"kind": "method",
|
|
56600
|
-
"name": "
|
|
56652
|
+
"name": "renderLink",
|
|
56601
56653
|
"privacy": "protected",
|
|
56602
56654
|
"return": {
|
|
56603
56655
|
"type": {
|
|
56604
|
-
"text": "
|
|
56656
|
+
"text": "TemplateResult"
|
|
56605
56657
|
}
|
|
56606
56658
|
},
|
|
56607
56659
|
"parameters": [
|
|
56608
56660
|
{
|
|
56609
|
-
"name": "
|
|
56661
|
+
"name": "renderContent",
|
|
56610
56662
|
"type": {
|
|
56611
|
-
"text": "
|
|
56663
|
+
"text": "TemplateResult"
|
|
56612
56664
|
}
|
|
56613
56665
|
}
|
|
56614
56666
|
],
|
|
56615
|
-
"description": "Whether validation should be run on a property change with the given name.",
|
|
56616
|
-
"inheritedFrom": {
|
|
56617
|
-
"name": "SbbFormAssociatedMixin",
|
|
56618
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
56619
|
-
}
|
|
56620
|
-
},
|
|
56621
|
-
{
|
|
56622
|
-
"kind": "method",
|
|
56623
|
-
"name": "_setInternalValidity",
|
|
56624
|
-
"privacy": "private",
|
|
56625
|
-
"return": {
|
|
56626
|
-
"type": {
|
|
56627
|
-
"text": "void"
|
|
56628
|
-
}
|
|
56629
|
-
},
|
|
56630
56667
|
"inheritedFrom": {
|
|
56631
|
-
"name": "
|
|
56632
|
-
"module": "core/
|
|
56633
|
-
}
|
|
56634
|
-
},
|
|
56635
|
-
{
|
|
56636
|
-
"kind": "field",
|
|
56637
|
-
"name": "role",
|
|
56638
|
-
"type": {
|
|
56639
|
-
"text": "ElementInternals['role']"
|
|
56640
|
-
},
|
|
56641
|
-
"privacy": "public",
|
|
56642
|
-
"static": true,
|
|
56643
|
-
"readonly": true,
|
|
56644
|
-
"default": "'button'",
|
|
56645
|
-
"inheritedFrom": {
|
|
56646
|
-
"name": "SbbButtonLikeBaseElement",
|
|
56647
|
-
"module": "core/base-elements/button-base-element.js"
|
|
56648
|
-
}
|
|
56649
|
-
},
|
|
56650
|
-
{
|
|
56651
|
-
"kind": "field",
|
|
56652
|
-
"name": "_preventScrollOnSpaceKeydown",
|
|
56653
|
-
"privacy": "private",
|
|
56654
|
-
"description": "Prevents scrolling from pressing Space, when the event target is an action element.\nAlso sets active state.",
|
|
56655
|
-
"parameters": [
|
|
56656
|
-
{
|
|
56657
|
-
"description": "The origin event.",
|
|
56658
|
-
"name": "event"
|
|
56659
|
-
}
|
|
56660
|
-
],
|
|
56661
|
-
"inheritedFrom": {
|
|
56662
|
-
"name": "SbbButtonLikeBaseElement",
|
|
56663
|
-
"module": "core/base-elements/button-base-element.js"
|
|
56664
|
-
}
|
|
56665
|
-
},
|
|
56666
|
-
{
|
|
56667
|
-
"kind": "field",
|
|
56668
|
-
"name": "_removeActiveMarker",
|
|
56669
|
-
"privacy": "private",
|
|
56670
|
-
"inheritedFrom": {
|
|
56671
|
-
"name": "SbbButtonLikeBaseElement",
|
|
56672
|
-
"module": "core/base-elements/button-base-element.js"
|
|
56673
|
-
}
|
|
56674
|
-
},
|
|
56675
|
-
{
|
|
56676
|
-
"kind": "field",
|
|
56677
|
-
"name": "_dispatchClickEventOnSpaceKeyup",
|
|
56678
|
-
"privacy": "private",
|
|
56679
|
-
"description": "Dispatches a 'click' PointerEvent if the original keyboard event is a 'Space' press.\nAs verified with the native button, when 'Space' is pressed, a 'click' event is dispatched\nafter the 'keyup' event.",
|
|
56680
|
-
"parameters": [
|
|
56681
|
-
{
|
|
56682
|
-
"description": "The origin event.",
|
|
56683
|
-
"name": "event"
|
|
56684
|
-
}
|
|
56685
|
-
],
|
|
56686
|
-
"inheritedFrom": {
|
|
56687
|
-
"name": "SbbButtonLikeBaseElement",
|
|
56688
|
-
"module": "core/base-elements/button-base-element.js"
|
|
56689
|
-
}
|
|
56690
|
-
},
|
|
56691
|
-
{
|
|
56692
|
-
"kind": "field",
|
|
56693
|
-
"name": "_dispatchClickEvent",
|
|
56694
|
-
"privacy": "private",
|
|
56695
|
-
"inheritedFrom": {
|
|
56696
|
-
"name": "SbbButtonLikeBaseElement",
|
|
56697
|
-
"module": "core/base-elements/button-base-element.js"
|
|
56668
|
+
"name": "SbbLinkBaseElement",
|
|
56669
|
+
"module": "core/base-elements/link-base-element.js"
|
|
56698
56670
|
}
|
|
56699
56671
|
},
|
|
56700
56672
|
{
|
|
@@ -56850,10 +56822,10 @@
|
|
|
56850
56822
|
}
|
|
56851
56823
|
],
|
|
56852
56824
|
"superclass": {
|
|
56853
|
-
"name": "
|
|
56825
|
+
"name": "SbbLinkBaseElement",
|
|
56854
56826
|
"module": "core/base-elements.js"
|
|
56855
56827
|
},
|
|
56856
|
-
"tagName": "sbb-card-
|
|
56828
|
+
"tagName": "sbb-card-link",
|
|
56857
56829
|
"customElement": true,
|
|
56858
56830
|
"attributes": [
|
|
56859
56831
|
{
|
|
@@ -56869,53 +56841,81 @@
|
|
|
56869
56841
|
}
|
|
56870
56842
|
},
|
|
56871
56843
|
{
|
|
56872
|
-
"name": "
|
|
56844
|
+
"name": "href",
|
|
56873
56845
|
"type": {
|
|
56874
56846
|
"text": "string"
|
|
56875
56847
|
},
|
|
56876
56848
|
"default": "''",
|
|
56877
|
-
"description": "
|
|
56878
|
-
"fieldName": "
|
|
56849
|
+
"description": "The href value you want to link to.",
|
|
56850
|
+
"fieldName": "href",
|
|
56879
56851
|
"inheritedFrom": {
|
|
56880
|
-
"name": "
|
|
56881
|
-
"module": "core/base-elements/
|
|
56852
|
+
"name": "SbbLinkBaseElement",
|
|
56853
|
+
"module": "core/base-elements/link-base-element.js"
|
|
56882
56854
|
}
|
|
56883
56855
|
},
|
|
56884
56856
|
{
|
|
56885
|
-
"name": "
|
|
56886
|
-
"description": "The type attribute to use for the button.",
|
|
56887
|
-
"default": "'button'",
|
|
56857
|
+
"name": "target",
|
|
56888
56858
|
"type": {
|
|
56889
|
-
"text": "
|
|
56859
|
+
"text": "LinkTargetType | string"
|
|
56890
56860
|
},
|
|
56891
|
-
"
|
|
56861
|
+
"default": "''",
|
|
56862
|
+
"description": "Where to display the linked URL.",
|
|
56863
|
+
"fieldName": "target",
|
|
56892
56864
|
"inheritedFrom": {
|
|
56893
|
-
"name": "
|
|
56894
|
-
"module": "core/base-elements/
|
|
56865
|
+
"name": "SbbLinkBaseElement",
|
|
56866
|
+
"module": "core/base-elements/link-base-element.js"
|
|
56895
56867
|
}
|
|
56896
56868
|
},
|
|
56897
56869
|
{
|
|
56898
|
-
"name": "
|
|
56899
|
-
"description": "The `<form>` element to associate the button with.",
|
|
56870
|
+
"name": "rel",
|
|
56900
56871
|
"type": {
|
|
56901
|
-
"text": "
|
|
56872
|
+
"text": "string"
|
|
56902
56873
|
},
|
|
56903
|
-
"
|
|
56874
|
+
"default": "''",
|
|
56875
|
+
"description": "The relationship of the linked URL as space-separated link types.",
|
|
56876
|
+
"fieldName": "rel",
|
|
56904
56877
|
"inheritedFrom": {
|
|
56905
|
-
"name": "
|
|
56906
|
-
"module": "core/base-elements/
|
|
56878
|
+
"name": "SbbLinkBaseElement",
|
|
56879
|
+
"module": "core/base-elements/link-base-element.js"
|
|
56907
56880
|
}
|
|
56908
56881
|
},
|
|
56909
56882
|
{
|
|
56910
|
-
"name": "
|
|
56911
|
-
"
|
|
56883
|
+
"name": "download",
|
|
56884
|
+
"type": {
|
|
56885
|
+
"text": "boolean"
|
|
56886
|
+
},
|
|
56887
|
+
"default": "false",
|
|
56888
|
+
"description": "Whether the browser will show the download dialog on click.",
|
|
56889
|
+
"fieldName": "download",
|
|
56890
|
+
"inheritedFrom": {
|
|
56891
|
+
"name": "SbbLinkBaseElement",
|
|
56892
|
+
"module": "core/base-elements/link-base-element.js"
|
|
56893
|
+
}
|
|
56894
|
+
},
|
|
56895
|
+
{
|
|
56896
|
+
"name": "accessibility-label",
|
|
56912
56897
|
"type": {
|
|
56913
56898
|
"text": "string"
|
|
56914
56899
|
},
|
|
56915
|
-
"
|
|
56900
|
+
"default": "''",
|
|
56901
|
+
"description": "This will be forwarded as aria-label to the inner anchor element.",
|
|
56902
|
+
"fieldName": "accessibilityLabel",
|
|
56916
56903
|
"inheritedFrom": {
|
|
56917
|
-
"name": "
|
|
56918
|
-
"module": "core/
|
|
56904
|
+
"name": "SbbLinkBaseElement",
|
|
56905
|
+
"module": "core/base-elements/link-base-element.js"
|
|
56906
|
+
}
|
|
56907
|
+
},
|
|
56908
|
+
{
|
|
56909
|
+
"name": "accessibility-current",
|
|
56910
|
+
"type": {
|
|
56911
|
+
"text": "string"
|
|
56912
|
+
},
|
|
56913
|
+
"default": "''",
|
|
56914
|
+
"description": "This will be forwarded as aria-current to the inner anchor element.",
|
|
56915
|
+
"fieldName": "accessibilityCurrent",
|
|
56916
|
+
"inheritedFrom": {
|
|
56917
|
+
"name": "SbbLinkBaseElement",
|
|
56918
|
+
"module": "core/base-elements/link-base-element.js"
|
|
56919
56919
|
}
|
|
56920
56920
|
}
|
|
56921
56921
|
]
|
|
@@ -56924,10 +56924,10 @@
|
|
|
56924
56924
|
"exports": [
|
|
56925
56925
|
{
|
|
56926
56926
|
"kind": "js",
|
|
56927
|
-
"name": "
|
|
56927
|
+
"name": "SbbCardLinkElement",
|
|
56928
56928
|
"declaration": {
|
|
56929
|
-
"name": "
|
|
56930
|
-
"module": "card/card-
|
|
56929
|
+
"name": "SbbCardLinkElement",
|
|
56930
|
+
"module": "card/card-link/card-link.component.js"
|
|
56931
56931
|
}
|
|
56932
56932
|
}
|
|
56933
56933
|
]
|
|
@@ -128149,12 +128149,12 @@
|
|
|
128149
128149
|
},
|
|
128150
128150
|
{
|
|
128151
128151
|
"kind": "javascript-module",
|
|
128152
|
-
"path": "teaser-product/teaser-product
|
|
128152
|
+
"path": "teaser-product/teaser-product/teaser-product.component.js",
|
|
128153
128153
|
"declarations": [
|
|
128154
128154
|
{
|
|
128155
128155
|
"kind": "class",
|
|
128156
|
-
"description": "Displays a text and a footnote, combined with an image, to tease a product
|
|
128157
|
-
"name": "
|
|
128156
|
+
"description": "Displays a text and a footnote, combined with an image, to tease a product",
|
|
128157
|
+
"name": "SbbTeaserProductElement",
|
|
128158
128158
|
"cssProperties": [
|
|
128159
128159
|
{
|
|
128160
128160
|
"description": "At which percentage the background should start getting transparent.",
|
|
@@ -128195,7 +128195,7 @@
|
|
|
128195
128195
|
"name": "SbbElement",
|
|
128196
128196
|
"module": "core/base-elements/element.js"
|
|
128197
128197
|
},
|
|
128198
|
-
"default": "'sbb-teaser-product
|
|
128198
|
+
"default": "'sbb-teaser-product'"
|
|
128199
128199
|
},
|
|
128200
128200
|
{
|
|
128201
128201
|
"kind": "field",
|
|
@@ -128244,6 +128244,155 @@
|
|
|
128244
128244
|
"module": "core/mixins/negative-mixin.js"
|
|
128245
128245
|
}
|
|
128246
128246
|
},
|
|
128247
|
+
{
|
|
128248
|
+
"kind": "field",
|
|
128249
|
+
"name": "href",
|
|
128250
|
+
"type": {
|
|
128251
|
+
"text": "string"
|
|
128252
|
+
},
|
|
128253
|
+
"privacy": "public",
|
|
128254
|
+
"default": "''",
|
|
128255
|
+
"description": "The href value you want to link to.",
|
|
128256
|
+
"attribute": "href",
|
|
128257
|
+
"reflects": true,
|
|
128258
|
+
"inheritedFrom": {
|
|
128259
|
+
"name": "SbbLinkBaseElement",
|
|
128260
|
+
"module": "core/base-elements/link-base-element.js"
|
|
128261
|
+
}
|
|
128262
|
+
},
|
|
128263
|
+
{
|
|
128264
|
+
"kind": "field",
|
|
128265
|
+
"name": "target",
|
|
128266
|
+
"type": {
|
|
128267
|
+
"text": "LinkTargetType | string"
|
|
128268
|
+
},
|
|
128269
|
+
"privacy": "public",
|
|
128270
|
+
"default": "''",
|
|
128271
|
+
"description": "Where to display the linked URL.",
|
|
128272
|
+
"attribute": "target",
|
|
128273
|
+
"reflects": true,
|
|
128274
|
+
"inheritedFrom": {
|
|
128275
|
+
"name": "SbbLinkBaseElement",
|
|
128276
|
+
"module": "core/base-elements/link-base-element.js"
|
|
128277
|
+
}
|
|
128278
|
+
},
|
|
128279
|
+
{
|
|
128280
|
+
"kind": "field",
|
|
128281
|
+
"name": "rel",
|
|
128282
|
+
"type": {
|
|
128283
|
+
"text": "string"
|
|
128284
|
+
},
|
|
128285
|
+
"privacy": "public",
|
|
128286
|
+
"default": "''",
|
|
128287
|
+
"description": "The relationship of the linked URL as space-separated link types.",
|
|
128288
|
+
"attribute": "rel",
|
|
128289
|
+
"reflects": true,
|
|
128290
|
+
"inheritedFrom": {
|
|
128291
|
+
"name": "SbbLinkBaseElement",
|
|
128292
|
+
"module": "core/base-elements/link-base-element.js"
|
|
128293
|
+
}
|
|
128294
|
+
},
|
|
128295
|
+
{
|
|
128296
|
+
"kind": "field",
|
|
128297
|
+
"name": "download",
|
|
128298
|
+
"type": {
|
|
128299
|
+
"text": "boolean"
|
|
128300
|
+
},
|
|
128301
|
+
"privacy": "public",
|
|
128302
|
+
"default": "false",
|
|
128303
|
+
"description": "Whether the browser will show the download dialog on click.",
|
|
128304
|
+
"attribute": "download",
|
|
128305
|
+
"reflects": true,
|
|
128306
|
+
"inheritedFrom": {
|
|
128307
|
+
"name": "SbbLinkBaseElement",
|
|
128308
|
+
"module": "core/base-elements/link-base-element.js"
|
|
128309
|
+
}
|
|
128310
|
+
},
|
|
128311
|
+
{
|
|
128312
|
+
"kind": "field",
|
|
128313
|
+
"name": "accessibilityLabel",
|
|
128314
|
+
"type": {
|
|
128315
|
+
"text": "string"
|
|
128316
|
+
},
|
|
128317
|
+
"privacy": "public",
|
|
128318
|
+
"default": "''",
|
|
128319
|
+
"description": "This will be forwarded as aria-label to the inner anchor element.",
|
|
128320
|
+
"attribute": "accessibility-label",
|
|
128321
|
+
"inheritedFrom": {
|
|
128322
|
+
"name": "SbbLinkBaseElement",
|
|
128323
|
+
"module": "core/base-elements/link-base-element.js"
|
|
128324
|
+
}
|
|
128325
|
+
},
|
|
128326
|
+
{
|
|
128327
|
+
"kind": "field",
|
|
128328
|
+
"name": "accessibilityCurrent",
|
|
128329
|
+
"type": {
|
|
128330
|
+
"text": "string"
|
|
128331
|
+
},
|
|
128332
|
+
"privacy": "public",
|
|
128333
|
+
"default": "''",
|
|
128334
|
+
"description": "This will be forwarded as aria-current to the inner anchor element.",
|
|
128335
|
+
"attribute": "accessibility-current",
|
|
128336
|
+
"inheritedFrom": {
|
|
128337
|
+
"name": "SbbLinkBaseElement",
|
|
128338
|
+
"module": "core/base-elements/link-base-element.js"
|
|
128339
|
+
}
|
|
128340
|
+
},
|
|
128341
|
+
{
|
|
128342
|
+
"kind": "field",
|
|
128343
|
+
"name": "language",
|
|
128344
|
+
"privacy": "protected",
|
|
128345
|
+
"default": "new SbbLanguageController(this)",
|
|
128346
|
+
"inheritedFrom": {
|
|
128347
|
+
"name": "SbbLinkBaseElement",
|
|
128348
|
+
"module": "core/base-elements/link-base-element.js"
|
|
128349
|
+
}
|
|
128350
|
+
},
|
|
128351
|
+
{
|
|
128352
|
+
"kind": "field",
|
|
128353
|
+
"name": "anchorRole",
|
|
128354
|
+
"type": {
|
|
128355
|
+
"text": "string | null"
|
|
128356
|
+
},
|
|
128357
|
+
"privacy": "protected",
|
|
128358
|
+
"readonly": true,
|
|
128359
|
+
"default": "null",
|
|
128360
|
+
"inheritedFrom": {
|
|
128361
|
+
"name": "SbbLinkBaseElement",
|
|
128362
|
+
"module": "core/base-elements/link-base-element.js"
|
|
128363
|
+
}
|
|
128364
|
+
},
|
|
128365
|
+
{
|
|
128366
|
+
"kind": "field",
|
|
128367
|
+
"name": "_evaluateRelAttribute",
|
|
128368
|
+
"privacy": "private",
|
|
128369
|
+
"inheritedFrom": {
|
|
128370
|
+
"name": "SbbLinkBaseElement",
|
|
128371
|
+
"module": "core/base-elements/link-base-element.js"
|
|
128372
|
+
}
|
|
128373
|
+
},
|
|
128374
|
+
{
|
|
128375
|
+
"kind": "method",
|
|
128376
|
+
"name": "renderLink",
|
|
128377
|
+
"privacy": "protected",
|
|
128378
|
+
"return": {
|
|
128379
|
+
"type": {
|
|
128380
|
+
"text": "TemplateResult"
|
|
128381
|
+
}
|
|
128382
|
+
},
|
|
128383
|
+
"parameters": [
|
|
128384
|
+
{
|
|
128385
|
+
"name": "renderContent",
|
|
128386
|
+
"type": {
|
|
128387
|
+
"text": "TemplateResult"
|
|
128388
|
+
}
|
|
128389
|
+
}
|
|
128390
|
+
],
|
|
128391
|
+
"inheritedFrom": {
|
|
128392
|
+
"name": "SbbLinkBaseElement",
|
|
128393
|
+
"module": "core/base-elements/link-base-element.js"
|
|
128394
|
+
}
|
|
128395
|
+
},
|
|
128247
128396
|
{
|
|
128248
128397
|
"kind": "field",
|
|
128249
128398
|
"name": "maybeDisabled",
|
|
@@ -128397,10 +128546,10 @@
|
|
|
128397
128546
|
}
|
|
128398
128547
|
],
|
|
128399
128548
|
"superclass": {
|
|
128400
|
-
"name": "
|
|
128549
|
+
"name": "SbbLinkBaseElement",
|
|
128401
128550
|
"module": "core/base-elements.js"
|
|
128402
128551
|
},
|
|
128403
|
-
"tagName": "sbb-teaser-product
|
|
128552
|
+
"tagName": "sbb-teaser-product",
|
|
128404
128553
|
"customElement": true,
|
|
128405
128554
|
"attributes": [
|
|
128406
128555
|
{
|
|
@@ -128428,6 +128577,84 @@
|
|
|
128428
128577
|
"name": "SbbNegativeMixin",
|
|
128429
128578
|
"module": "core/mixins/negative-mixin.js"
|
|
128430
128579
|
}
|
|
128580
|
+
},
|
|
128581
|
+
{
|
|
128582
|
+
"name": "href",
|
|
128583
|
+
"type": {
|
|
128584
|
+
"text": "string"
|
|
128585
|
+
},
|
|
128586
|
+
"default": "''",
|
|
128587
|
+
"description": "The href value you want to link to.",
|
|
128588
|
+
"fieldName": "href",
|
|
128589
|
+
"inheritedFrom": {
|
|
128590
|
+
"name": "SbbLinkBaseElement",
|
|
128591
|
+
"module": "core/base-elements/link-base-element.js"
|
|
128592
|
+
}
|
|
128593
|
+
},
|
|
128594
|
+
{
|
|
128595
|
+
"name": "target",
|
|
128596
|
+
"type": {
|
|
128597
|
+
"text": "LinkTargetType | string"
|
|
128598
|
+
},
|
|
128599
|
+
"default": "''",
|
|
128600
|
+
"description": "Where to display the linked URL.",
|
|
128601
|
+
"fieldName": "target",
|
|
128602
|
+
"inheritedFrom": {
|
|
128603
|
+
"name": "SbbLinkBaseElement",
|
|
128604
|
+
"module": "core/base-elements/link-base-element.js"
|
|
128605
|
+
}
|
|
128606
|
+
},
|
|
128607
|
+
{
|
|
128608
|
+
"name": "rel",
|
|
128609
|
+
"type": {
|
|
128610
|
+
"text": "string"
|
|
128611
|
+
},
|
|
128612
|
+
"default": "''",
|
|
128613
|
+
"description": "The relationship of the linked URL as space-separated link types.",
|
|
128614
|
+
"fieldName": "rel",
|
|
128615
|
+
"inheritedFrom": {
|
|
128616
|
+
"name": "SbbLinkBaseElement",
|
|
128617
|
+
"module": "core/base-elements/link-base-element.js"
|
|
128618
|
+
}
|
|
128619
|
+
},
|
|
128620
|
+
{
|
|
128621
|
+
"name": "download",
|
|
128622
|
+
"type": {
|
|
128623
|
+
"text": "boolean"
|
|
128624
|
+
},
|
|
128625
|
+
"default": "false",
|
|
128626
|
+
"description": "Whether the browser will show the download dialog on click.",
|
|
128627
|
+
"fieldName": "download",
|
|
128628
|
+
"inheritedFrom": {
|
|
128629
|
+
"name": "SbbLinkBaseElement",
|
|
128630
|
+
"module": "core/base-elements/link-base-element.js"
|
|
128631
|
+
}
|
|
128632
|
+
},
|
|
128633
|
+
{
|
|
128634
|
+
"name": "accessibility-label",
|
|
128635
|
+
"type": {
|
|
128636
|
+
"text": "string"
|
|
128637
|
+
},
|
|
128638
|
+
"default": "''",
|
|
128639
|
+
"description": "This will be forwarded as aria-label to the inner anchor element.",
|
|
128640
|
+
"fieldName": "accessibilityLabel",
|
|
128641
|
+
"inheritedFrom": {
|
|
128642
|
+
"name": "SbbLinkBaseElement",
|
|
128643
|
+
"module": "core/base-elements/link-base-element.js"
|
|
128644
|
+
}
|
|
128645
|
+
},
|
|
128646
|
+
{
|
|
128647
|
+
"name": "accessibility-current",
|
|
128648
|
+
"type": {
|
|
128649
|
+
"text": "string"
|
|
128650
|
+
},
|
|
128651
|
+
"default": "''",
|
|
128652
|
+
"description": "This will be forwarded as aria-current to the inner anchor element.",
|
|
128653
|
+
"fieldName": "accessibilityCurrent",
|
|
128654
|
+
"inheritedFrom": {
|
|
128655
|
+
"name": "SbbLinkBaseElement",
|
|
128656
|
+
"module": "core/base-elements/link-base-element.js"
|
|
128657
|
+
}
|
|
128431
128658
|
}
|
|
128432
128659
|
]
|
|
128433
128660
|
}
|
|
@@ -128435,22 +128662,22 @@
|
|
|
128435
128662
|
"exports": [
|
|
128436
128663
|
{
|
|
128437
128664
|
"kind": "js",
|
|
128438
|
-
"name": "
|
|
128665
|
+
"name": "SbbTeaserProductElement",
|
|
128439
128666
|
"declaration": {
|
|
128440
|
-
"name": "
|
|
128441
|
-
"module": "teaser-product/teaser-product
|
|
128667
|
+
"name": "SbbTeaserProductElement",
|
|
128668
|
+
"module": "teaser-product/teaser-product/teaser-product.component.js"
|
|
128442
128669
|
}
|
|
128443
128670
|
}
|
|
128444
128671
|
]
|
|
128445
128672
|
},
|
|
128446
128673
|
{
|
|
128447
128674
|
"kind": "javascript-module",
|
|
128448
|
-
"path": "teaser-product/teaser-product/teaser-product.component.js",
|
|
128675
|
+
"path": "teaser-product/teaser-product-static/teaser-product-static.component.js",
|
|
128449
128676
|
"declarations": [
|
|
128450
128677
|
{
|
|
128451
128678
|
"kind": "class",
|
|
128452
|
-
"description": "Displays a text and a footnote, combined with an image, to tease a product",
|
|
128453
|
-
"name": "
|
|
128679
|
+
"description": "Displays a text and a footnote, combined with an image, to tease a product.",
|
|
128680
|
+
"name": "SbbTeaserProductStaticElement",
|
|
128454
128681
|
"cssProperties": [
|
|
128455
128682
|
{
|
|
128456
128683
|
"description": "At which percentage the background should start getting transparent.",
|
|
@@ -128491,7 +128718,7 @@
|
|
|
128491
128718
|
"name": "SbbElement",
|
|
128492
128719
|
"module": "core/base-elements/element.js"
|
|
128493
128720
|
},
|
|
128494
|
-
"default": "'sbb-teaser-product'"
|
|
128721
|
+
"default": "'sbb-teaser-product-static'"
|
|
128495
128722
|
},
|
|
128496
128723
|
{
|
|
128497
128724
|
"kind": "field",
|
|
@@ -128540,155 +128767,6 @@
|
|
|
128540
128767
|
"module": "core/mixins/negative-mixin.js"
|
|
128541
128768
|
}
|
|
128542
128769
|
},
|
|
128543
|
-
{
|
|
128544
|
-
"kind": "field",
|
|
128545
|
-
"name": "href",
|
|
128546
|
-
"type": {
|
|
128547
|
-
"text": "string"
|
|
128548
|
-
},
|
|
128549
|
-
"privacy": "public",
|
|
128550
|
-
"default": "''",
|
|
128551
|
-
"description": "The href value you want to link to.",
|
|
128552
|
-
"attribute": "href",
|
|
128553
|
-
"reflects": true,
|
|
128554
|
-
"inheritedFrom": {
|
|
128555
|
-
"name": "SbbLinkBaseElement",
|
|
128556
|
-
"module": "core/base-elements/link-base-element.js"
|
|
128557
|
-
}
|
|
128558
|
-
},
|
|
128559
|
-
{
|
|
128560
|
-
"kind": "field",
|
|
128561
|
-
"name": "target",
|
|
128562
|
-
"type": {
|
|
128563
|
-
"text": "LinkTargetType | string"
|
|
128564
|
-
},
|
|
128565
|
-
"privacy": "public",
|
|
128566
|
-
"default": "''",
|
|
128567
|
-
"description": "Where to display the linked URL.",
|
|
128568
|
-
"attribute": "target",
|
|
128569
|
-
"reflects": true,
|
|
128570
|
-
"inheritedFrom": {
|
|
128571
|
-
"name": "SbbLinkBaseElement",
|
|
128572
|
-
"module": "core/base-elements/link-base-element.js"
|
|
128573
|
-
}
|
|
128574
|
-
},
|
|
128575
|
-
{
|
|
128576
|
-
"kind": "field",
|
|
128577
|
-
"name": "rel",
|
|
128578
|
-
"type": {
|
|
128579
|
-
"text": "string"
|
|
128580
|
-
},
|
|
128581
|
-
"privacy": "public",
|
|
128582
|
-
"default": "''",
|
|
128583
|
-
"description": "The relationship of the linked URL as space-separated link types.",
|
|
128584
|
-
"attribute": "rel",
|
|
128585
|
-
"reflects": true,
|
|
128586
|
-
"inheritedFrom": {
|
|
128587
|
-
"name": "SbbLinkBaseElement",
|
|
128588
|
-
"module": "core/base-elements/link-base-element.js"
|
|
128589
|
-
}
|
|
128590
|
-
},
|
|
128591
|
-
{
|
|
128592
|
-
"kind": "field",
|
|
128593
|
-
"name": "download",
|
|
128594
|
-
"type": {
|
|
128595
|
-
"text": "boolean"
|
|
128596
|
-
},
|
|
128597
|
-
"privacy": "public",
|
|
128598
|
-
"default": "false",
|
|
128599
|
-
"description": "Whether the browser will show the download dialog on click.",
|
|
128600
|
-
"attribute": "download",
|
|
128601
|
-
"reflects": true,
|
|
128602
|
-
"inheritedFrom": {
|
|
128603
|
-
"name": "SbbLinkBaseElement",
|
|
128604
|
-
"module": "core/base-elements/link-base-element.js"
|
|
128605
|
-
}
|
|
128606
|
-
},
|
|
128607
|
-
{
|
|
128608
|
-
"kind": "field",
|
|
128609
|
-
"name": "accessibilityLabel",
|
|
128610
|
-
"type": {
|
|
128611
|
-
"text": "string"
|
|
128612
|
-
},
|
|
128613
|
-
"privacy": "public",
|
|
128614
|
-
"default": "''",
|
|
128615
|
-
"description": "This will be forwarded as aria-label to the inner anchor element.",
|
|
128616
|
-
"attribute": "accessibility-label",
|
|
128617
|
-
"inheritedFrom": {
|
|
128618
|
-
"name": "SbbLinkBaseElement",
|
|
128619
|
-
"module": "core/base-elements/link-base-element.js"
|
|
128620
|
-
}
|
|
128621
|
-
},
|
|
128622
|
-
{
|
|
128623
|
-
"kind": "field",
|
|
128624
|
-
"name": "accessibilityCurrent",
|
|
128625
|
-
"type": {
|
|
128626
|
-
"text": "string"
|
|
128627
|
-
},
|
|
128628
|
-
"privacy": "public",
|
|
128629
|
-
"default": "''",
|
|
128630
|
-
"description": "This will be forwarded as aria-current to the inner anchor element.",
|
|
128631
|
-
"attribute": "accessibility-current",
|
|
128632
|
-
"inheritedFrom": {
|
|
128633
|
-
"name": "SbbLinkBaseElement",
|
|
128634
|
-
"module": "core/base-elements/link-base-element.js"
|
|
128635
|
-
}
|
|
128636
|
-
},
|
|
128637
|
-
{
|
|
128638
|
-
"kind": "field",
|
|
128639
|
-
"name": "language",
|
|
128640
|
-
"privacy": "protected",
|
|
128641
|
-
"default": "new SbbLanguageController(this)",
|
|
128642
|
-
"inheritedFrom": {
|
|
128643
|
-
"name": "SbbLinkBaseElement",
|
|
128644
|
-
"module": "core/base-elements/link-base-element.js"
|
|
128645
|
-
}
|
|
128646
|
-
},
|
|
128647
|
-
{
|
|
128648
|
-
"kind": "field",
|
|
128649
|
-
"name": "anchorRole",
|
|
128650
|
-
"type": {
|
|
128651
|
-
"text": "string | null"
|
|
128652
|
-
},
|
|
128653
|
-
"privacy": "protected",
|
|
128654
|
-
"readonly": true,
|
|
128655
|
-
"default": "null",
|
|
128656
|
-
"inheritedFrom": {
|
|
128657
|
-
"name": "SbbLinkBaseElement",
|
|
128658
|
-
"module": "core/base-elements/link-base-element.js"
|
|
128659
|
-
}
|
|
128660
|
-
},
|
|
128661
|
-
{
|
|
128662
|
-
"kind": "field",
|
|
128663
|
-
"name": "_evaluateRelAttribute",
|
|
128664
|
-
"privacy": "private",
|
|
128665
|
-
"inheritedFrom": {
|
|
128666
|
-
"name": "SbbLinkBaseElement",
|
|
128667
|
-
"module": "core/base-elements/link-base-element.js"
|
|
128668
|
-
}
|
|
128669
|
-
},
|
|
128670
|
-
{
|
|
128671
|
-
"kind": "method",
|
|
128672
|
-
"name": "renderLink",
|
|
128673
|
-
"privacy": "protected",
|
|
128674
|
-
"return": {
|
|
128675
|
-
"type": {
|
|
128676
|
-
"text": "TemplateResult"
|
|
128677
|
-
}
|
|
128678
|
-
},
|
|
128679
|
-
"parameters": [
|
|
128680
|
-
{
|
|
128681
|
-
"name": "renderContent",
|
|
128682
|
-
"type": {
|
|
128683
|
-
"text": "TemplateResult"
|
|
128684
|
-
}
|
|
128685
|
-
}
|
|
128686
|
-
],
|
|
128687
|
-
"inheritedFrom": {
|
|
128688
|
-
"name": "SbbLinkBaseElement",
|
|
128689
|
-
"module": "core/base-elements/link-base-element.js"
|
|
128690
|
-
}
|
|
128691
|
-
},
|
|
128692
128770
|
{
|
|
128693
128771
|
"kind": "field",
|
|
128694
128772
|
"name": "maybeDisabled",
|
|
@@ -128842,10 +128920,10 @@
|
|
|
128842
128920
|
}
|
|
128843
128921
|
],
|
|
128844
128922
|
"superclass": {
|
|
128845
|
-
"name": "
|
|
128923
|
+
"name": "SbbActionBaseElement",
|
|
128846
128924
|
"module": "core/base-elements.js"
|
|
128847
128925
|
},
|
|
128848
|
-
"tagName": "sbb-teaser-product",
|
|
128926
|
+
"tagName": "sbb-teaser-product-static",
|
|
128849
128927
|
"customElement": true,
|
|
128850
128928
|
"attributes": [
|
|
128851
128929
|
{
|
|
@@ -128873,84 +128951,6 @@
|
|
|
128873
128951
|
"name": "SbbNegativeMixin",
|
|
128874
128952
|
"module": "core/mixins/negative-mixin.js"
|
|
128875
128953
|
}
|
|
128876
|
-
},
|
|
128877
|
-
{
|
|
128878
|
-
"name": "href",
|
|
128879
|
-
"type": {
|
|
128880
|
-
"text": "string"
|
|
128881
|
-
},
|
|
128882
|
-
"default": "''",
|
|
128883
|
-
"description": "The href value you want to link to.",
|
|
128884
|
-
"fieldName": "href",
|
|
128885
|
-
"inheritedFrom": {
|
|
128886
|
-
"name": "SbbLinkBaseElement",
|
|
128887
|
-
"module": "core/base-elements/link-base-element.js"
|
|
128888
|
-
}
|
|
128889
|
-
},
|
|
128890
|
-
{
|
|
128891
|
-
"name": "target",
|
|
128892
|
-
"type": {
|
|
128893
|
-
"text": "LinkTargetType | string"
|
|
128894
|
-
},
|
|
128895
|
-
"default": "''",
|
|
128896
|
-
"description": "Where to display the linked URL.",
|
|
128897
|
-
"fieldName": "target",
|
|
128898
|
-
"inheritedFrom": {
|
|
128899
|
-
"name": "SbbLinkBaseElement",
|
|
128900
|
-
"module": "core/base-elements/link-base-element.js"
|
|
128901
|
-
}
|
|
128902
|
-
},
|
|
128903
|
-
{
|
|
128904
|
-
"name": "rel",
|
|
128905
|
-
"type": {
|
|
128906
|
-
"text": "string"
|
|
128907
|
-
},
|
|
128908
|
-
"default": "''",
|
|
128909
|
-
"description": "The relationship of the linked URL as space-separated link types.",
|
|
128910
|
-
"fieldName": "rel",
|
|
128911
|
-
"inheritedFrom": {
|
|
128912
|
-
"name": "SbbLinkBaseElement",
|
|
128913
|
-
"module": "core/base-elements/link-base-element.js"
|
|
128914
|
-
}
|
|
128915
|
-
},
|
|
128916
|
-
{
|
|
128917
|
-
"name": "download",
|
|
128918
|
-
"type": {
|
|
128919
|
-
"text": "boolean"
|
|
128920
|
-
},
|
|
128921
|
-
"default": "false",
|
|
128922
|
-
"description": "Whether the browser will show the download dialog on click.",
|
|
128923
|
-
"fieldName": "download",
|
|
128924
|
-
"inheritedFrom": {
|
|
128925
|
-
"name": "SbbLinkBaseElement",
|
|
128926
|
-
"module": "core/base-elements/link-base-element.js"
|
|
128927
|
-
}
|
|
128928
|
-
},
|
|
128929
|
-
{
|
|
128930
|
-
"name": "accessibility-label",
|
|
128931
|
-
"type": {
|
|
128932
|
-
"text": "string"
|
|
128933
|
-
},
|
|
128934
|
-
"default": "''",
|
|
128935
|
-
"description": "This will be forwarded as aria-label to the inner anchor element.",
|
|
128936
|
-
"fieldName": "accessibilityLabel",
|
|
128937
|
-
"inheritedFrom": {
|
|
128938
|
-
"name": "SbbLinkBaseElement",
|
|
128939
|
-
"module": "core/base-elements/link-base-element.js"
|
|
128940
|
-
}
|
|
128941
|
-
},
|
|
128942
|
-
{
|
|
128943
|
-
"name": "accessibility-current",
|
|
128944
|
-
"type": {
|
|
128945
|
-
"text": "string"
|
|
128946
|
-
},
|
|
128947
|
-
"default": "''",
|
|
128948
|
-
"description": "This will be forwarded as aria-current to the inner anchor element.",
|
|
128949
|
-
"fieldName": "accessibilityCurrent",
|
|
128950
|
-
"inheritedFrom": {
|
|
128951
|
-
"name": "SbbLinkBaseElement",
|
|
128952
|
-
"module": "core/base-elements/link-base-element.js"
|
|
128953
|
-
}
|
|
128954
128954
|
}
|
|
128955
128955
|
]
|
|
128956
128956
|
}
|
|
@@ -128958,10 +128958,10 @@
|
|
|
128958
128958
|
"exports": [
|
|
128959
128959
|
{
|
|
128960
128960
|
"kind": "js",
|
|
128961
|
-
"name": "
|
|
128961
|
+
"name": "SbbTeaserProductStaticElement",
|
|
128962
128962
|
"declaration": {
|
|
128963
|
-
"name": "
|
|
128964
|
-
"module": "teaser-product/teaser-product/teaser-product.component.js"
|
|
128963
|
+
"name": "SbbTeaserProductStaticElement",
|
|
128964
|
+
"module": "teaser-product/teaser-product-static/teaser-product-static.component.js"
|
|
128965
128965
|
}
|
|
128966
128966
|
}
|
|
128967
128967
|
]
|