@sbb-esta/lyne-elements-dev 4.5.1-dev.1772005757 → 4.5.1-dev.1772017123
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 +599 -599
- package/package.json +2 -2
package/custom-elements.json
CHANGED
|
@@ -80324,15 +80324,15 @@
|
|
|
80324
80324
|
},
|
|
80325
80325
|
{
|
|
80326
80326
|
"kind": "javascript-module",
|
|
80327
|
-
"path": "link/block-link-
|
|
80327
|
+
"path": "link/block-link-button/block-link-button.component.js",
|
|
80328
80328
|
"declarations": [
|
|
80329
80329
|
{
|
|
80330
80330
|
"kind": "class",
|
|
80331
|
-
"description": "It displays a
|
|
80332
|
-
"name": "
|
|
80331
|
+
"description": "It displays a link enhanced with the SBB Design, which will behave as a button.",
|
|
80332
|
+
"name": "SbbBlockLinkButtonElement",
|
|
80333
80333
|
"slots": [
|
|
80334
80334
|
{
|
|
80335
|
-
"description": "Use the unnamed slot to add content to the `sbb-block-link-
|
|
80335
|
+
"description": "Use the unnamed slot to add content to the `sbb-block-link-button`.",
|
|
80336
80336
|
"name": ""
|
|
80337
80337
|
},
|
|
80338
80338
|
{
|
|
@@ -80346,15 +80346,15 @@
|
|
|
80346
80346
|
"module": "link/common.js"
|
|
80347
80347
|
},
|
|
80348
80348
|
{
|
|
80349
|
-
"name": "
|
|
80349
|
+
"name": "SbbDisabledTabIndexActionMixin",
|
|
80350
80350
|
"module": "core/mixins.js"
|
|
80351
80351
|
}
|
|
80352
80352
|
],
|
|
80353
80353
|
"superclass": {
|
|
80354
|
-
"name": "
|
|
80354
|
+
"name": "SbbButtonBaseElement",
|
|
80355
80355
|
"module": "core/base-elements.js"
|
|
80356
80356
|
},
|
|
80357
|
-
"tagName": "sbb-block-link-
|
|
80357
|
+
"tagName": "sbb-block-link-button",
|
|
80358
80358
|
"customElement": true,
|
|
80359
80359
|
"attributes": [
|
|
80360
80360
|
{
|
|
@@ -80396,6 +80396,19 @@
|
|
|
80396
80396
|
"module": "icon/icon-name-mixin.js"
|
|
80397
80397
|
}
|
|
80398
80398
|
},
|
|
80399
|
+
{
|
|
80400
|
+
"name": "disabled-interactive",
|
|
80401
|
+
"type": {
|
|
80402
|
+
"text": "boolean"
|
|
80403
|
+
},
|
|
80404
|
+
"default": "false",
|
|
80405
|
+
"description": "Whether the button should be aria-disabled but stay interactive.",
|
|
80406
|
+
"fieldName": "disabledInteractive",
|
|
80407
|
+
"inheritedFrom": {
|
|
80408
|
+
"name": "SbbDisabledInteractiveMixin",
|
|
80409
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
80410
|
+
}
|
|
80411
|
+
},
|
|
80399
80412
|
{
|
|
80400
80413
|
"name": "disabled",
|
|
80401
80414
|
"description": "Whether the component is disabled.",
|
|
@@ -80408,6 +80421,56 @@
|
|
|
80408
80421
|
"name": "SbbDisabledMixin",
|
|
80409
80422
|
"module": "core/mixins/disabled-mixin.js"
|
|
80410
80423
|
}
|
|
80424
|
+
},
|
|
80425
|
+
{
|
|
80426
|
+
"name": "value",
|
|
80427
|
+
"type": {
|
|
80428
|
+
"text": "string"
|
|
80429
|
+
},
|
|
80430
|
+
"default": "''",
|
|
80431
|
+
"description": "Value of the form element.",
|
|
80432
|
+
"fieldName": "value",
|
|
80433
|
+
"inheritedFrom": {
|
|
80434
|
+
"name": "SbbButtonBaseElement",
|
|
80435
|
+
"module": "core/base-elements/button-base-element.js"
|
|
80436
|
+
}
|
|
80437
|
+
},
|
|
80438
|
+
{
|
|
80439
|
+
"name": "type",
|
|
80440
|
+
"description": "The type attribute to use for the button.",
|
|
80441
|
+
"default": "'button'",
|
|
80442
|
+
"type": {
|
|
80443
|
+
"text": "SbbButtonType"
|
|
80444
|
+
},
|
|
80445
|
+
"fieldName": "type",
|
|
80446
|
+
"inheritedFrom": {
|
|
80447
|
+
"name": "SbbButtonBaseElement",
|
|
80448
|
+
"module": "core/base-elements/button-base-element.js"
|
|
80449
|
+
}
|
|
80450
|
+
},
|
|
80451
|
+
{
|
|
80452
|
+
"name": "form",
|
|
80453
|
+
"description": "The `<form>` element to associate the button with.",
|
|
80454
|
+
"type": {
|
|
80455
|
+
"text": "HTMLFormElement | null"
|
|
80456
|
+
},
|
|
80457
|
+
"fieldName": "form",
|
|
80458
|
+
"inheritedFrom": {
|
|
80459
|
+
"name": "SbbButtonBaseElement",
|
|
80460
|
+
"module": "core/base-elements/button-base-element.js"
|
|
80461
|
+
}
|
|
80462
|
+
},
|
|
80463
|
+
{
|
|
80464
|
+
"name": "name",
|
|
80465
|
+
"description": "Name of the form element. Will be read from name attribute.",
|
|
80466
|
+
"type": {
|
|
80467
|
+
"text": "string"
|
|
80468
|
+
},
|
|
80469
|
+
"fieldName": "name",
|
|
80470
|
+
"inheritedFrom": {
|
|
80471
|
+
"name": "SbbFormAssociatedMixin",
|
|
80472
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
80473
|
+
}
|
|
80411
80474
|
}
|
|
80412
80475
|
],
|
|
80413
80476
|
"members": [
|
|
@@ -80538,6 +80601,22 @@
|
|
|
80538
80601
|
"module": "icon/icon-name-mixin.js"
|
|
80539
80602
|
}
|
|
80540
80603
|
},
|
|
80604
|
+
{
|
|
80605
|
+
"kind": "field",
|
|
80606
|
+
"name": "disabledInteractive",
|
|
80607
|
+
"type": {
|
|
80608
|
+
"text": "boolean"
|
|
80609
|
+
},
|
|
80610
|
+
"privacy": "public",
|
|
80611
|
+
"default": "false",
|
|
80612
|
+
"description": "Whether the button should be aria-disabled but stay interactive.",
|
|
80613
|
+
"attribute": "disabled-interactive",
|
|
80614
|
+
"reflects": true,
|
|
80615
|
+
"inheritedFrom": {
|
|
80616
|
+
"name": "SbbDisabledInteractiveMixin",
|
|
80617
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
80618
|
+
}
|
|
80619
|
+
},
|
|
80541
80620
|
{
|
|
80542
80621
|
"kind": "field",
|
|
80543
80622
|
"name": "disabled",
|
|
@@ -80582,10 +80661,90 @@
|
|
|
80582
80661
|
"module": "core/mixins/disabled-mixin.js"
|
|
80583
80662
|
}
|
|
80584
80663
|
},
|
|
80664
|
+
{
|
|
80665
|
+
"kind": "field",
|
|
80666
|
+
"name": "_elementsOnWhichEnterPressTriggersSubmit",
|
|
80667
|
+
"type": {
|
|
80668
|
+
"text": "array"
|
|
80669
|
+
},
|
|
80670
|
+
"privacy": "private",
|
|
80671
|
+
"readonly": true,
|
|
80672
|
+
"default": "[ 'input', 'sbb-date-input', 'sbb-time-input', ]",
|
|
80673
|
+
"inheritedFrom": {
|
|
80674
|
+
"name": "SbbButtonBaseElement",
|
|
80675
|
+
"module": "core/base-elements/button-base-element.js"
|
|
80676
|
+
}
|
|
80677
|
+
},
|
|
80678
|
+
{
|
|
80679
|
+
"kind": "field",
|
|
80680
|
+
"name": "value",
|
|
80681
|
+
"type": {
|
|
80682
|
+
"text": "string"
|
|
80683
|
+
},
|
|
80684
|
+
"privacy": "public",
|
|
80685
|
+
"inheritedFrom": {
|
|
80686
|
+
"name": "SbbButtonBaseElement",
|
|
80687
|
+
"module": "core/base-elements/button-base-element.js"
|
|
80688
|
+
},
|
|
80689
|
+
"default": "''",
|
|
80690
|
+
"description": "Value of the form element.",
|
|
80691
|
+
"attribute": "value"
|
|
80692
|
+
},
|
|
80693
|
+
{
|
|
80694
|
+
"kind": "field",
|
|
80695
|
+
"name": "type",
|
|
80696
|
+
"privacy": "public",
|
|
80697
|
+
"description": "The type attribute to use for the button.",
|
|
80698
|
+
"default": "'button'",
|
|
80699
|
+
"type": {
|
|
80700
|
+
"text": "SbbButtonType"
|
|
80701
|
+
},
|
|
80702
|
+
"attribute": "type",
|
|
80703
|
+
"inheritedFrom": {
|
|
80704
|
+
"name": "SbbButtonBaseElement",
|
|
80705
|
+
"module": "core/base-elements/button-base-element.js"
|
|
80706
|
+
}
|
|
80707
|
+
},
|
|
80708
|
+
{
|
|
80709
|
+
"kind": "field",
|
|
80710
|
+
"name": "form",
|
|
80711
|
+
"type": {
|
|
80712
|
+
"text": "HTMLFormElement | null"
|
|
80713
|
+
},
|
|
80714
|
+
"privacy": "public",
|
|
80715
|
+
"description": "The `<form>` element to associate the button with.",
|
|
80716
|
+
"inheritedFrom": {
|
|
80717
|
+
"name": "SbbButtonBaseElement",
|
|
80718
|
+
"module": "core/base-elements/button-base-element.js"
|
|
80719
|
+
},
|
|
80720
|
+
"attribute": "form"
|
|
80721
|
+
},
|
|
80722
|
+
{
|
|
80723
|
+
"kind": "field",
|
|
80724
|
+
"name": "_formId",
|
|
80725
|
+
"type": {
|
|
80726
|
+
"text": "string"
|
|
80727
|
+
},
|
|
80728
|
+
"privacy": "private",
|
|
80729
|
+
"default": "''",
|
|
80730
|
+
"inheritedFrom": {
|
|
80731
|
+
"name": "SbbButtonBaseElement",
|
|
80732
|
+
"module": "core/base-elements/button-base-element.js"
|
|
80733
|
+
}
|
|
80734
|
+
},
|
|
80735
|
+
{
|
|
80736
|
+
"kind": "field",
|
|
80737
|
+
"name": "_handleButtonClick",
|
|
80738
|
+
"privacy": "private",
|
|
80739
|
+
"inheritedFrom": {
|
|
80740
|
+
"name": "SbbButtonBaseElement",
|
|
80741
|
+
"module": "core/base-elements/button-base-element.js"
|
|
80742
|
+
}
|
|
80743
|
+
},
|
|
80585
80744
|
{
|
|
80586
80745
|
"kind": "method",
|
|
80587
|
-
"name": "
|
|
80588
|
-
"privacy": "
|
|
80746
|
+
"name": "_requestSubmit",
|
|
80747
|
+
"privacy": "private",
|
|
80589
80748
|
"return": {
|
|
80590
80749
|
"type": {
|
|
80591
80750
|
"text": "void"
|
|
@@ -80593,509 +80752,396 @@
|
|
|
80593
80752
|
},
|
|
80594
80753
|
"parameters": [
|
|
80595
80754
|
{
|
|
80596
|
-
"name": "
|
|
80597
|
-
"type": {
|
|
80598
|
-
"text": "string"
|
|
80599
|
-
}
|
|
80600
|
-
},
|
|
80601
|
-
{
|
|
80602
|
-
"name": "force",
|
|
80603
|
-
"optional": true,
|
|
80755
|
+
"name": "form",
|
|
80604
80756
|
"type": {
|
|
80605
|
-
"text": "
|
|
80757
|
+
"text": "HTMLFormElement"
|
|
80606
80758
|
}
|
|
80607
80759
|
}
|
|
80608
80760
|
],
|
|
80609
80761
|
"inheritedFrom": {
|
|
80610
|
-
"name": "
|
|
80611
|
-
"module": "core/base-elements/
|
|
80762
|
+
"name": "SbbButtonBaseElement",
|
|
80763
|
+
"module": "core/base-elements/button-base-element.js"
|
|
80612
80764
|
}
|
|
80613
80765
|
},
|
|
80614
80766
|
{
|
|
80615
80767
|
"kind": "field",
|
|
80616
|
-
"name": "
|
|
80768
|
+
"name": "_formKeyDown",
|
|
80769
|
+
"privacy": "private",
|
|
80770
|
+
"inheritedFrom": {
|
|
80771
|
+
"name": "SbbButtonBaseElement",
|
|
80772
|
+
"module": "core/base-elements/button-base-element.js"
|
|
80773
|
+
}
|
|
80774
|
+
},
|
|
80775
|
+
{
|
|
80776
|
+
"kind": "field",
|
|
80777
|
+
"name": "formAssociated",
|
|
80617
80778
|
"type": {
|
|
80618
|
-
"text": "boolean
|
|
80779
|
+
"text": "boolean"
|
|
80619
80780
|
},
|
|
80620
|
-
"privacy": "
|
|
80621
|
-
"
|
|
80781
|
+
"privacy": "public",
|
|
80782
|
+
"static": true,
|
|
80783
|
+
"default": "true",
|
|
80622
80784
|
"inheritedFrom": {
|
|
80623
|
-
"name": "
|
|
80624
|
-
"module": "core/
|
|
80785
|
+
"name": "SbbFormAssociatedMixin",
|
|
80786
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
80625
80787
|
}
|
|
80626
80788
|
},
|
|
80627
80789
|
{
|
|
80628
80790
|
"kind": "field",
|
|
80629
|
-
"name": "
|
|
80791
|
+
"name": "name",
|
|
80792
|
+
"privacy": "public",
|
|
80793
|
+
"description": "Name of the form element. Will be read from name attribute.",
|
|
80630
80794
|
"type": {
|
|
80631
|
-
"text": "
|
|
80795
|
+
"text": "string"
|
|
80632
80796
|
},
|
|
80633
|
-
"
|
|
80634
|
-
"readonly": true,
|
|
80797
|
+
"attribute": "name",
|
|
80635
80798
|
"inheritedFrom": {
|
|
80636
|
-
"name": "
|
|
80637
|
-
"module": "core/
|
|
80799
|
+
"name": "SbbFormAssociatedMixin",
|
|
80800
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
80638
80801
|
}
|
|
80639
80802
|
},
|
|
80640
80803
|
{
|
|
80641
|
-
"kind": "
|
|
80642
|
-
"name": "
|
|
80643
|
-
"
|
|
80644
|
-
|
|
80645
|
-
"type": {
|
|
80646
|
-
"text": "void"
|
|
80647
|
-
}
|
|
80804
|
+
"kind": "field",
|
|
80805
|
+
"name": "validity",
|
|
80806
|
+
"type": {
|
|
80807
|
+
"text": "ValidityState"
|
|
80648
80808
|
},
|
|
80809
|
+
"privacy": "public",
|
|
80810
|
+
"description": "Returns the ValidityState object for this element.",
|
|
80811
|
+
"readonly": true,
|
|
80649
80812
|
"inheritedFrom": {
|
|
80650
|
-
"name": "
|
|
80651
|
-
"module": "core/
|
|
80652
|
-
}
|
|
80653
|
-
}
|
|
80654
|
-
]
|
|
80655
|
-
}
|
|
80656
|
-
],
|
|
80657
|
-
"exports": [
|
|
80658
|
-
{
|
|
80659
|
-
"kind": "js",
|
|
80660
|
-
"name": "SbbBlockLinkStaticElement",
|
|
80661
|
-
"declaration": {
|
|
80662
|
-
"name": "SbbBlockLinkStaticElement",
|
|
80663
|
-
"module": "link/block-link-static/block-link-static.component.js"
|
|
80664
|
-
}
|
|
80665
|
-
},
|
|
80666
|
-
{
|
|
80667
|
-
"kind": "custom-element-definition",
|
|
80668
|
-
"name": "sbb-block-link-static",
|
|
80669
|
-
"declaration": {
|
|
80670
|
-
"name": "SbbBlockLinkStaticElement",
|
|
80671
|
-
"module": "link/block-link-static/block-link-static.component.js"
|
|
80672
|
-
}
|
|
80673
|
-
}
|
|
80674
|
-
]
|
|
80675
|
-
},
|
|
80676
|
-
{
|
|
80677
|
-
"kind": "javascript-module",
|
|
80678
|
-
"path": "link/block-link-button/block-link-button.component.js",
|
|
80679
|
-
"declarations": [
|
|
80680
|
-
{
|
|
80681
|
-
"kind": "class",
|
|
80682
|
-
"description": "It displays a link enhanced with the SBB Design, which will behave as a button.",
|
|
80683
|
-
"name": "SbbBlockLinkButtonElement",
|
|
80684
|
-
"slots": [
|
|
80685
|
-
{
|
|
80686
|
-
"description": "Use the unnamed slot to add content to the `sbb-block-link-button`.",
|
|
80687
|
-
"name": ""
|
|
80688
|
-
},
|
|
80689
|
-
{
|
|
80690
|
-
"description": "Slot used to display the icon, if one is set.",
|
|
80691
|
-
"name": "icon"
|
|
80692
|
-
}
|
|
80693
|
-
],
|
|
80694
|
-
"mixins": [
|
|
80695
|
-
{
|
|
80696
|
-
"name": "SbbBlockLinkCommonElementMixin",
|
|
80697
|
-
"module": "link/common.js"
|
|
80698
|
-
},
|
|
80699
|
-
{
|
|
80700
|
-
"name": "SbbDisabledTabIndexActionMixin",
|
|
80701
|
-
"module": "core/mixins.js"
|
|
80702
|
-
}
|
|
80703
|
-
],
|
|
80704
|
-
"superclass": {
|
|
80705
|
-
"name": "SbbButtonBaseElement",
|
|
80706
|
-
"module": "core/base-elements.js"
|
|
80707
|
-
},
|
|
80708
|
-
"tagName": "sbb-block-link-button",
|
|
80709
|
-
"customElement": true,
|
|
80710
|
-
"attributes": [
|
|
80711
|
-
{
|
|
80712
|
-
"name": "icon-placement",
|
|
80713
|
-
"type": {
|
|
80714
|
-
"text": "SbbIconPlacement"
|
|
80715
|
-
},
|
|
80716
|
-
"default": "'start'",
|
|
80717
|
-
"description": "Moves the icon to the end of the component if set to true.",
|
|
80718
|
-
"fieldName": "iconPlacement",
|
|
80719
|
-
"inheritedFrom": {
|
|
80720
|
-
"name": "SbbBlockLinkCommonElementMixin",
|
|
80721
|
-
"module": "link/common/block-link-common.js"
|
|
80813
|
+
"name": "SbbFormAssociatedMixin",
|
|
80814
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
80722
80815
|
}
|
|
80723
80816
|
},
|
|
80724
80817
|
{
|
|
80725
|
-
"
|
|
80726
|
-
"
|
|
80727
|
-
"text": "SbbLinkSize"
|
|
80728
|
-
},
|
|
80729
|
-
"description": "Text size, the link should get in the non-button variation.\nWith inline variant, the text size adapts to where it is used.",
|
|
80730
|
-
"default": "'s' / 'xs' (lean)",
|
|
80731
|
-
"fieldName": "size",
|
|
80732
|
-
"inheritedFrom": {
|
|
80733
|
-
"name": "SbbLinkCommonElementMixin",
|
|
80734
|
-
"module": "link/common/link-common.js"
|
|
80735
|
-
}
|
|
80736
|
-
},
|
|
80737
|
-
{
|
|
80738
|
-
"name": "icon-name",
|
|
80818
|
+
"kind": "field",
|
|
80819
|
+
"name": "validationMessage",
|
|
80739
80820
|
"type": {
|
|
80740
80821
|
"text": "string"
|
|
80741
80822
|
},
|
|
80742
|
-
"
|
|
80743
|
-
"description": "
|
|
80744
|
-
"
|
|
80823
|
+
"privacy": "public",
|
|
80824
|
+
"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.",
|
|
80825
|
+
"readonly": true,
|
|
80745
80826
|
"inheritedFrom": {
|
|
80746
|
-
"name": "
|
|
80747
|
-
"module": "
|
|
80827
|
+
"name": "SbbFormAssociatedMixin",
|
|
80828
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
80748
80829
|
}
|
|
80749
80830
|
},
|
|
80750
80831
|
{
|
|
80751
|
-
"
|
|
80832
|
+
"kind": "field",
|
|
80833
|
+
"name": "willValidate",
|
|
80752
80834
|
"type": {
|
|
80753
80835
|
"text": "boolean"
|
|
80754
80836
|
},
|
|
80755
|
-
"
|
|
80756
|
-
"description": "
|
|
80757
|
-
"
|
|
80837
|
+
"privacy": "public",
|
|
80838
|
+
"description": "Returns true if this element will be validated\nwhen the form is submitted; false otherwise.",
|
|
80839
|
+
"readonly": true,
|
|
80758
80840
|
"inheritedFrom": {
|
|
80759
|
-
"name": "
|
|
80760
|
-
"module": "core/mixins/
|
|
80841
|
+
"name": "SbbFormAssociatedMixin",
|
|
80842
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
80761
80843
|
}
|
|
80762
80844
|
},
|
|
80763
80845
|
{
|
|
80764
|
-
"
|
|
80765
|
-
"
|
|
80766
|
-
"
|
|
80767
|
-
"
|
|
80768
|
-
"text": "boolean"
|
|
80769
|
-
},
|
|
80770
|
-
"fieldName": "disabled",
|
|
80846
|
+
"kind": "field",
|
|
80847
|
+
"name": "_validityStates",
|
|
80848
|
+
"privacy": "private",
|
|
80849
|
+
"default": "new Map< keyof ValidityStateFlags, { flagValue: unknown; message: string } >()",
|
|
80771
80850
|
"inheritedFrom": {
|
|
80772
|
-
"name": "
|
|
80773
|
-
"module": "core/mixins/
|
|
80851
|
+
"name": "SbbFormAssociatedMixin",
|
|
80852
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
80774
80853
|
}
|
|
80775
80854
|
},
|
|
80776
80855
|
{
|
|
80777
|
-
"
|
|
80856
|
+
"kind": "field",
|
|
80857
|
+
"name": "formDisabled",
|
|
80778
80858
|
"type": {
|
|
80779
|
-
"text": "
|
|
80859
|
+
"text": "boolean"
|
|
80780
80860
|
},
|
|
80781
|
-
"
|
|
80782
|
-
"
|
|
80783
|
-
"
|
|
80861
|
+
"privacy": "protected",
|
|
80862
|
+
"default": "false",
|
|
80863
|
+
"description": "Whenever a surrounding form or fieldset is changing its disabled state.",
|
|
80784
80864
|
"inheritedFrom": {
|
|
80785
|
-
"name": "
|
|
80786
|
-
"module": "core/
|
|
80865
|
+
"name": "SbbFormAssociatedMixin",
|
|
80866
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
80787
80867
|
}
|
|
80788
80868
|
},
|
|
80789
80869
|
{
|
|
80790
|
-
"
|
|
80791
|
-
"
|
|
80792
|
-
"
|
|
80793
|
-
"
|
|
80794
|
-
"
|
|
80870
|
+
"kind": "method",
|
|
80871
|
+
"name": "checkValidity",
|
|
80872
|
+
"privacy": "public",
|
|
80873
|
+
"return": {
|
|
80874
|
+
"type": {
|
|
80875
|
+
"text": "boolean"
|
|
80876
|
+
}
|
|
80795
80877
|
},
|
|
80796
|
-
"
|
|
80878
|
+
"description": "Returns true if this element has no validity problems; false otherwise.\nFires an invalid event at the element in the latter case.",
|
|
80797
80879
|
"inheritedFrom": {
|
|
80798
|
-
"name": "
|
|
80799
|
-
"module": "core/
|
|
80880
|
+
"name": "SbbFormAssociatedMixin",
|
|
80881
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
80800
80882
|
}
|
|
80801
80883
|
},
|
|
80802
80884
|
{
|
|
80803
|
-
"
|
|
80804
|
-
"
|
|
80805
|
-
"
|
|
80806
|
-
|
|
80885
|
+
"kind": "method",
|
|
80886
|
+
"name": "reportValidity",
|
|
80887
|
+
"privacy": "public",
|
|
80888
|
+
"return": {
|
|
80889
|
+
"type": {
|
|
80890
|
+
"text": "boolean"
|
|
80891
|
+
}
|
|
80807
80892
|
},
|
|
80808
|
-
"
|
|
80893
|
+
"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.",
|
|
80809
80894
|
"inheritedFrom": {
|
|
80810
|
-
"name": "
|
|
80811
|
-
"module": "core/
|
|
80895
|
+
"name": "SbbFormAssociatedMixin",
|
|
80896
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
80812
80897
|
}
|
|
80813
80898
|
},
|
|
80814
80899
|
{
|
|
80815
|
-
"
|
|
80816
|
-
"
|
|
80817
|
-
"
|
|
80818
|
-
|
|
80900
|
+
"kind": "method",
|
|
80901
|
+
"name": "setCustomValidity",
|
|
80902
|
+
"privacy": "public",
|
|
80903
|
+
"return": {
|
|
80904
|
+
"type": {
|
|
80905
|
+
"text": "void"
|
|
80906
|
+
}
|
|
80819
80907
|
},
|
|
80820
|
-
"
|
|
80908
|
+
"parameters": [
|
|
80909
|
+
{
|
|
80910
|
+
"name": "message",
|
|
80911
|
+
"type": {
|
|
80912
|
+
"text": "string"
|
|
80913
|
+
}
|
|
80914
|
+
}
|
|
80915
|
+
],
|
|
80916
|
+
"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.",
|
|
80821
80917
|
"inheritedFrom": {
|
|
80822
80918
|
"name": "SbbFormAssociatedMixin",
|
|
80823
80919
|
"module": "core/mixins/form-associated-mixin.js"
|
|
80824
80920
|
}
|
|
80825
|
-
}
|
|
80826
|
-
],
|
|
80827
|
-
"members": [
|
|
80828
|
-
{
|
|
80829
|
-
"kind": "field",
|
|
80830
|
-
"name": "styles",
|
|
80831
|
-
"type": {
|
|
80832
|
-
"text": "CSSResultGroup"
|
|
80833
|
-
},
|
|
80834
|
-
"privacy": "public",
|
|
80835
|
-
"static": true,
|
|
80836
|
-
"default": "[boxSizingStyles, style, blockStyle]",
|
|
80837
|
-
"inheritedFrom": {
|
|
80838
|
-
"name": "SbbLinkCommonElementMixin",
|
|
80839
|
-
"module": "link/common/link-common.js"
|
|
80840
|
-
}
|
|
80841
80921
|
},
|
|
80842
80922
|
{
|
|
80843
|
-
"kind": "
|
|
80844
|
-
"name": "
|
|
80845
|
-
"
|
|
80846
|
-
|
|
80923
|
+
"kind": "method",
|
|
80924
|
+
"name": "_hasDisabledAncestor",
|
|
80925
|
+
"privacy": "private",
|
|
80926
|
+
"return": {
|
|
80927
|
+
"type": {
|
|
80928
|
+
"text": "boolean"
|
|
80929
|
+
}
|
|
80847
80930
|
},
|
|
80848
|
-
"privacy": "public",
|
|
80849
|
-
"default": "'start'",
|
|
80850
|
-
"description": "Moves the icon to the end of the component if set to true.",
|
|
80851
|
-
"attribute": "icon-placement",
|
|
80852
|
-
"reflects": true,
|
|
80853
80931
|
"inheritedFrom": {
|
|
80854
|
-
"name": "
|
|
80855
|
-
"module": "
|
|
80932
|
+
"name": "SbbFormAssociatedMixin",
|
|
80933
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
80856
80934
|
}
|
|
80857
80935
|
},
|
|
80858
80936
|
{
|
|
80859
80937
|
"kind": "method",
|
|
80860
|
-
"name": "
|
|
80938
|
+
"name": "updateFormValue",
|
|
80861
80939
|
"privacy": "protected",
|
|
80862
80940
|
"return": {
|
|
80863
80941
|
"type": {
|
|
80864
|
-
"text": "
|
|
80942
|
+
"text": "void"
|
|
80865
80943
|
}
|
|
80866
80944
|
},
|
|
80867
|
-
"description": "
|
|
80868
|
-
"inheritedFrom": {
|
|
80869
|
-
"name": "SbbActionBaseElement",
|
|
80870
|
-
"module": "core/base-elements/action-base-element.js"
|
|
80871
|
-
}
|
|
80872
|
-
},
|
|
80873
|
-
{
|
|
80874
|
-
"kind": "field",
|
|
80875
|
-
"name": "size",
|
|
80876
|
-
"type": {
|
|
80877
|
-
"text": "SbbLinkSize"
|
|
80878
|
-
},
|
|
80879
|
-
"privacy": "public",
|
|
80880
|
-
"description": "Text size, the link should get in the non-button variation.\nWith inline variant, the text size adapts to where it is used.",
|
|
80881
|
-
"default": "'s' / 'xs' (lean)",
|
|
80882
|
-
"attribute": "size",
|
|
80883
|
-
"reflects": true,
|
|
80945
|
+
"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",
|
|
80884
80946
|
"inheritedFrom": {
|
|
80885
|
-
"name": "
|
|
80886
|
-
"module": "
|
|
80947
|
+
"name": "SbbFormAssociatedMixin",
|
|
80948
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
80887
80949
|
}
|
|
80888
80950
|
},
|
|
80889
80951
|
{
|
|
80890
|
-
"kind": "
|
|
80891
|
-
"name": "
|
|
80892
|
-
"
|
|
80893
|
-
|
|
80952
|
+
"kind": "method",
|
|
80953
|
+
"name": "formState",
|
|
80954
|
+
"privacy": "protected",
|
|
80955
|
+
"return": {
|
|
80956
|
+
"type": {
|
|
80957
|
+
"text": "FormRestoreState"
|
|
80958
|
+
}
|
|
80894
80959
|
},
|
|
80895
|
-
"privacy": "public",
|
|
80896
|
-
"default": "''",
|
|
80897
|
-
"description": "The icon name we want to use, choose from the small icon variants\nfrom the ui-icons category from here\nhttps://icons.app.sbb.ch.",
|
|
80898
|
-
"attribute": "icon-name",
|
|
80899
80960
|
"inheritedFrom": {
|
|
80900
|
-
"name": "
|
|
80901
|
-
"module": "
|
|
80961
|
+
"name": "SbbFormAssociatedMixin",
|
|
80962
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
80902
80963
|
}
|
|
80903
80964
|
},
|
|
80904
80965
|
{
|
|
80905
80966
|
"kind": "method",
|
|
80906
|
-
"name": "
|
|
80967
|
+
"name": "setValidityFlag",
|
|
80907
80968
|
"privacy": "protected",
|
|
80908
80969
|
"return": {
|
|
80909
80970
|
"type": {
|
|
80910
|
-
"text": "
|
|
80971
|
+
"text": "void"
|
|
80911
80972
|
}
|
|
80912
80973
|
},
|
|
80913
80974
|
"parameters": [
|
|
80914
80975
|
{
|
|
80915
|
-
"name": "
|
|
80916
|
-
"
|
|
80976
|
+
"name": "flag",
|
|
80977
|
+
"type": {
|
|
80978
|
+
"text": "T"
|
|
80979
|
+
}
|
|
80980
|
+
},
|
|
80981
|
+
{
|
|
80982
|
+
"name": "message",
|
|
80917
80983
|
"type": {
|
|
80918
80984
|
"text": "string"
|
|
80919
80985
|
}
|
|
80986
|
+
},
|
|
80987
|
+
{
|
|
80988
|
+
"name": "flagValue",
|
|
80989
|
+
"optional": true,
|
|
80990
|
+
"type": {
|
|
80991
|
+
"text": "ValidityStateFlags[T]"
|
|
80992
|
+
}
|
|
80920
80993
|
}
|
|
80921
80994
|
],
|
|
80995
|
+
"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).",
|
|
80922
80996
|
"inheritedFrom": {
|
|
80923
|
-
"name": "
|
|
80924
|
-
"module": "
|
|
80997
|
+
"name": "SbbFormAssociatedMixin",
|
|
80998
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
80925
80999
|
}
|
|
80926
81000
|
},
|
|
80927
81001
|
{
|
|
80928
81002
|
"kind": "method",
|
|
80929
|
-
"name": "
|
|
81003
|
+
"name": "removeValidityFlag",
|
|
80930
81004
|
"privacy": "protected",
|
|
80931
81005
|
"return": {
|
|
80932
81006
|
"type": {
|
|
80933
|
-
"text": "
|
|
81007
|
+
"text": "void"
|
|
80934
81008
|
}
|
|
80935
81009
|
},
|
|
81010
|
+
"parameters": [
|
|
81011
|
+
{
|
|
81012
|
+
"name": "flag",
|
|
81013
|
+
"type": {
|
|
81014
|
+
"text": "T"
|
|
81015
|
+
}
|
|
81016
|
+
}
|
|
81017
|
+
],
|
|
81018
|
+
"description": "Removes the validity state flag entry and updates validity state.",
|
|
80936
81019
|
"inheritedFrom": {
|
|
80937
|
-
"name": "
|
|
80938
|
-
"module": "
|
|
81020
|
+
"name": "SbbFormAssociatedMixin",
|
|
81021
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
80939
81022
|
}
|
|
80940
81023
|
},
|
|
80941
81024
|
{
|
|
80942
81025
|
"kind": "method",
|
|
80943
|
-
"name": "
|
|
80944
|
-
"privacy": "
|
|
81026
|
+
"name": "validate",
|
|
81027
|
+
"privacy": "protected",
|
|
80945
81028
|
"return": {
|
|
80946
81029
|
"type": {
|
|
80947
|
-
"text": "
|
|
81030
|
+
"text": "void"
|
|
80948
81031
|
}
|
|
80949
81032
|
},
|
|
81033
|
+
"description": "To be called whenever the current element needs to be validated.",
|
|
80950
81034
|
"inheritedFrom": {
|
|
80951
|
-
"name": "
|
|
80952
|
-
"module": "
|
|
80953
|
-
}
|
|
80954
|
-
},
|
|
80955
|
-
{
|
|
80956
|
-
"kind": "field",
|
|
80957
|
-
"name": "disabledInteractive",
|
|
80958
|
-
"type": {
|
|
80959
|
-
"text": "boolean"
|
|
80960
|
-
},
|
|
80961
|
-
"privacy": "public",
|
|
80962
|
-
"default": "false",
|
|
80963
|
-
"description": "Whether the button should be aria-disabled but stay interactive.",
|
|
80964
|
-
"attribute": "disabled-interactive",
|
|
80965
|
-
"reflects": true,
|
|
80966
|
-
"inheritedFrom": {
|
|
80967
|
-
"name": "SbbDisabledInteractiveMixin",
|
|
80968
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
80969
|
-
}
|
|
80970
|
-
},
|
|
80971
|
-
{
|
|
80972
|
-
"kind": "field",
|
|
80973
|
-
"name": "disabled",
|
|
80974
|
-
"privacy": "public",
|
|
80975
|
-
"description": "Whether the component is disabled.",
|
|
80976
|
-
"default": "false",
|
|
80977
|
-
"type": {
|
|
80978
|
-
"text": "boolean"
|
|
80979
|
-
},
|
|
80980
|
-
"attribute": "disabled",
|
|
80981
|
-
"reflects": true,
|
|
80982
|
-
"inheritedFrom": {
|
|
80983
|
-
"name": "SbbDisabledMixin",
|
|
80984
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
80985
|
-
}
|
|
80986
|
-
},
|
|
80987
|
-
{
|
|
80988
|
-
"kind": "field",
|
|
80989
|
-
"name": "#disabled",
|
|
80990
|
-
"privacy": "private",
|
|
80991
|
-
"type": {
|
|
80992
|
-
"text": "boolean"
|
|
80993
|
-
},
|
|
80994
|
-
"default": "false",
|
|
80995
|
-
"inheritedFrom": {
|
|
80996
|
-
"name": "SbbDisabledMixin",
|
|
80997
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
81035
|
+
"name": "SbbFormAssociatedMixin",
|
|
81036
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
80998
81037
|
}
|
|
80999
81038
|
},
|
|
81000
81039
|
{
|
|
81001
81040
|
"kind": "method",
|
|
81002
|
-
"name": "
|
|
81041
|
+
"name": "shouldValidate",
|
|
81003
81042
|
"privacy": "protected",
|
|
81004
81043
|
"return": {
|
|
81005
81044
|
"type": {
|
|
81006
81045
|
"text": "boolean"
|
|
81007
81046
|
}
|
|
81008
81047
|
},
|
|
81009
|
-
"
|
|
81048
|
+
"parameters": [
|
|
81049
|
+
{
|
|
81050
|
+
"name": "name",
|
|
81051
|
+
"type": {
|
|
81052
|
+
"text": "PropertyKey | undefined"
|
|
81053
|
+
}
|
|
81054
|
+
}
|
|
81055
|
+
],
|
|
81056
|
+
"description": "Whether validation should be run on a property change with the given name.",
|
|
81010
81057
|
"inheritedFrom": {
|
|
81011
|
-
"name": "
|
|
81012
|
-
"module": "core/mixins/
|
|
81058
|
+
"name": "SbbFormAssociatedMixin",
|
|
81059
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
81013
81060
|
}
|
|
81014
81061
|
},
|
|
81015
81062
|
{
|
|
81016
|
-
"kind": "
|
|
81017
|
-
"name": "
|
|
81018
|
-
"type": {
|
|
81019
|
-
"text": "array"
|
|
81020
|
-
},
|
|
81063
|
+
"kind": "method",
|
|
81064
|
+
"name": "_setInternalValidity",
|
|
81021
81065
|
"privacy": "private",
|
|
81022
|
-
"
|
|
81023
|
-
|
|
81066
|
+
"return": {
|
|
81067
|
+
"type": {
|
|
81068
|
+
"text": "void"
|
|
81069
|
+
}
|
|
81070
|
+
},
|
|
81024
81071
|
"inheritedFrom": {
|
|
81025
|
-
"name": "
|
|
81026
|
-
"module": "core/
|
|
81072
|
+
"name": "SbbFormAssociatedMixin",
|
|
81073
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
81027
81074
|
}
|
|
81028
81075
|
},
|
|
81029
81076
|
{
|
|
81030
81077
|
"kind": "field",
|
|
81031
|
-
"name": "
|
|
81078
|
+
"name": "role",
|
|
81032
81079
|
"type": {
|
|
81033
|
-
"text": "
|
|
81080
|
+
"text": "ElementInternals['role']"
|
|
81034
81081
|
},
|
|
81035
81082
|
"privacy": "public",
|
|
81083
|
+
"static": true,
|
|
81084
|
+
"readonly": true,
|
|
81085
|
+
"default": "'button'",
|
|
81036
81086
|
"inheritedFrom": {
|
|
81037
|
-
"name": "
|
|
81087
|
+
"name": "SbbButtonLikeBaseElement",
|
|
81038
81088
|
"module": "core/base-elements/button-base-element.js"
|
|
81039
|
-
}
|
|
81040
|
-
"default": "''",
|
|
81041
|
-
"description": "Value of the form element.",
|
|
81042
|
-
"attribute": "value"
|
|
81089
|
+
}
|
|
81043
81090
|
},
|
|
81044
81091
|
{
|
|
81045
81092
|
"kind": "field",
|
|
81046
|
-
"name": "
|
|
81047
|
-
"privacy": "
|
|
81048
|
-
"description": "
|
|
81049
|
-
"
|
|
81050
|
-
|
|
81051
|
-
|
|
81052
|
-
|
|
81053
|
-
|
|
81093
|
+
"name": "_preventScrollOnSpaceKeydown",
|
|
81094
|
+
"privacy": "private",
|
|
81095
|
+
"description": "Prevents scrolling from pressing Space, when the event target is an action element.\nAlso sets active state.",
|
|
81096
|
+
"parameters": [
|
|
81097
|
+
{
|
|
81098
|
+
"description": "The origin event.",
|
|
81099
|
+
"name": "event"
|
|
81100
|
+
}
|
|
81101
|
+
],
|
|
81054
81102
|
"inheritedFrom": {
|
|
81055
|
-
"name": "
|
|
81103
|
+
"name": "SbbButtonLikeBaseElement",
|
|
81056
81104
|
"module": "core/base-elements/button-base-element.js"
|
|
81057
81105
|
}
|
|
81058
81106
|
},
|
|
81059
81107
|
{
|
|
81060
81108
|
"kind": "field",
|
|
81061
|
-
"name": "
|
|
81062
|
-
"
|
|
81063
|
-
"text": "HTMLFormElement | null"
|
|
81064
|
-
},
|
|
81065
|
-
"privacy": "public",
|
|
81066
|
-
"description": "The `<form>` element to associate the button with.",
|
|
81109
|
+
"name": "_removeActiveMarker",
|
|
81110
|
+
"privacy": "private",
|
|
81067
81111
|
"inheritedFrom": {
|
|
81068
|
-
"name": "
|
|
81112
|
+
"name": "SbbButtonLikeBaseElement",
|
|
81069
81113
|
"module": "core/base-elements/button-base-element.js"
|
|
81070
|
-
}
|
|
81071
|
-
"attribute": "form"
|
|
81114
|
+
}
|
|
81072
81115
|
},
|
|
81073
81116
|
{
|
|
81074
81117
|
"kind": "field",
|
|
81075
|
-
"name": "
|
|
81076
|
-
"type": {
|
|
81077
|
-
"text": "string"
|
|
81078
|
-
},
|
|
81118
|
+
"name": "_dispatchClickEventOnSpaceKeyup",
|
|
81079
81119
|
"privacy": "private",
|
|
81080
|
-
"
|
|
81120
|
+
"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.",
|
|
81121
|
+
"parameters": [
|
|
81122
|
+
{
|
|
81123
|
+
"description": "The origin event.",
|
|
81124
|
+
"name": "event"
|
|
81125
|
+
}
|
|
81126
|
+
],
|
|
81081
81127
|
"inheritedFrom": {
|
|
81082
|
-
"name": "
|
|
81128
|
+
"name": "SbbButtonLikeBaseElement",
|
|
81083
81129
|
"module": "core/base-elements/button-base-element.js"
|
|
81084
81130
|
}
|
|
81085
81131
|
},
|
|
81086
81132
|
{
|
|
81087
81133
|
"kind": "field",
|
|
81088
|
-
"name": "
|
|
81134
|
+
"name": "_dispatchClickEvent",
|
|
81089
81135
|
"privacy": "private",
|
|
81090
81136
|
"inheritedFrom": {
|
|
81091
|
-
"name": "
|
|
81137
|
+
"name": "SbbButtonLikeBaseElement",
|
|
81092
81138
|
"module": "core/base-elements/button-base-element.js"
|
|
81093
81139
|
}
|
|
81094
81140
|
},
|
|
81095
81141
|
{
|
|
81096
81142
|
"kind": "method",
|
|
81097
|
-
"name": "
|
|
81098
|
-
"privacy": "
|
|
81143
|
+
"name": "toggleState",
|
|
81144
|
+
"privacy": "protected",
|
|
81099
81145
|
"return": {
|
|
81100
81146
|
"type": {
|
|
81101
81147
|
"text": "void"
|
|
@@ -81103,390 +81149,344 @@
|
|
|
81103
81149
|
},
|
|
81104
81150
|
"parameters": [
|
|
81105
81151
|
{
|
|
81106
|
-
"name": "
|
|
81152
|
+
"name": "value",
|
|
81107
81153
|
"type": {
|
|
81108
|
-
"text": "
|
|
81154
|
+
"text": "string"
|
|
81155
|
+
}
|
|
81156
|
+
},
|
|
81157
|
+
{
|
|
81158
|
+
"name": "force",
|
|
81159
|
+
"optional": true,
|
|
81160
|
+
"type": {
|
|
81161
|
+
"text": "boolean"
|
|
81109
81162
|
}
|
|
81110
81163
|
}
|
|
81111
81164
|
],
|
|
81112
81165
|
"inheritedFrom": {
|
|
81113
|
-
"name": "
|
|
81114
|
-
"module": "core/base-elements/
|
|
81115
|
-
}
|
|
81116
|
-
},
|
|
81117
|
-
{
|
|
81118
|
-
"kind": "field",
|
|
81119
|
-
"name": "_formKeyDown",
|
|
81120
|
-
"privacy": "private",
|
|
81121
|
-
"inheritedFrom": {
|
|
81122
|
-
"name": "SbbButtonBaseElement",
|
|
81123
|
-
"module": "core/base-elements/button-base-element.js"
|
|
81166
|
+
"name": "SbbActionBaseElement",
|
|
81167
|
+
"module": "core/base-elements/action-base-element.js"
|
|
81124
81168
|
}
|
|
81125
81169
|
},
|
|
81126
81170
|
{
|
|
81127
81171
|
"kind": "field",
|
|
81128
|
-
"name": "
|
|
81172
|
+
"name": "maybeDisabled",
|
|
81129
81173
|
"type": {
|
|
81130
|
-
"text": "boolean"
|
|
81174
|
+
"text": "boolean | undefined"
|
|
81131
81175
|
},
|
|
81132
|
-
"privacy": "
|
|
81133
|
-
"
|
|
81134
|
-
"default": "true",
|
|
81176
|
+
"privacy": "protected",
|
|
81177
|
+
"readonly": true,
|
|
81135
81178
|
"inheritedFrom": {
|
|
81136
|
-
"name": "
|
|
81137
|
-
"module": "core/
|
|
81179
|
+
"name": "SbbActionBaseElement",
|
|
81180
|
+
"module": "core/base-elements/action-base-element.js"
|
|
81138
81181
|
}
|
|
81139
81182
|
},
|
|
81140
81183
|
{
|
|
81141
81184
|
"kind": "field",
|
|
81142
|
-
"name": "
|
|
81143
|
-
"privacy": "public",
|
|
81144
|
-
"description": "Name of the form element. Will be read from name attribute.",
|
|
81185
|
+
"name": "maybeDisabledInteractive",
|
|
81145
81186
|
"type": {
|
|
81146
|
-
"text": "
|
|
81187
|
+
"text": "boolean | undefined"
|
|
81147
81188
|
},
|
|
81148
|
-
"
|
|
81189
|
+
"privacy": "protected",
|
|
81190
|
+
"readonly": true,
|
|
81149
81191
|
"inheritedFrom": {
|
|
81150
|
-
"name": "
|
|
81151
|
-
"module": "core/
|
|
81192
|
+
"name": "SbbActionBaseElement",
|
|
81193
|
+
"module": "core/base-elements/action-base-element.js"
|
|
81152
81194
|
}
|
|
81153
81195
|
},
|
|
81154
81196
|
{
|
|
81155
|
-
"kind": "
|
|
81156
|
-
"name": "
|
|
81157
|
-
"
|
|
81158
|
-
|
|
81197
|
+
"kind": "method",
|
|
81198
|
+
"name": "setupBaseEventHandlers",
|
|
81199
|
+
"privacy": "protected",
|
|
81200
|
+
"return": {
|
|
81201
|
+
"type": {
|
|
81202
|
+
"text": "void"
|
|
81203
|
+
}
|
|
81159
81204
|
},
|
|
81160
|
-
"privacy": "public",
|
|
81161
|
-
"description": "Returns the ValidityState object for this element.",
|
|
81162
|
-
"readonly": true,
|
|
81163
81205
|
"inheritedFrom": {
|
|
81164
|
-
"name": "
|
|
81165
|
-
"module": "core/
|
|
81206
|
+
"name": "SbbActionBaseElement",
|
|
81207
|
+
"module": "core/base-elements/action-base-element.js"
|
|
81166
81208
|
}
|
|
81209
|
+
}
|
|
81210
|
+
]
|
|
81211
|
+
}
|
|
81212
|
+
],
|
|
81213
|
+
"exports": [
|
|
81214
|
+
{
|
|
81215
|
+
"kind": "js",
|
|
81216
|
+
"name": "SbbBlockLinkButtonElement",
|
|
81217
|
+
"declaration": {
|
|
81218
|
+
"name": "SbbBlockLinkButtonElement",
|
|
81219
|
+
"module": "link/block-link-button/block-link-button.component.js"
|
|
81220
|
+
}
|
|
81221
|
+
},
|
|
81222
|
+
{
|
|
81223
|
+
"kind": "custom-element-definition",
|
|
81224
|
+
"name": "sbb-block-link-button",
|
|
81225
|
+
"declaration": {
|
|
81226
|
+
"name": "SbbBlockLinkButtonElement",
|
|
81227
|
+
"module": "link/block-link-button/block-link-button.component.js"
|
|
81228
|
+
}
|
|
81229
|
+
}
|
|
81230
|
+
]
|
|
81231
|
+
},
|
|
81232
|
+
{
|
|
81233
|
+
"kind": "javascript-module",
|
|
81234
|
+
"path": "link/block-link-static/block-link-static.component.js",
|
|
81235
|
+
"declarations": [
|
|
81236
|
+
{
|
|
81237
|
+
"kind": "class",
|
|
81238
|
+
"description": "It displays a static link enhanced with the SBB Design.",
|
|
81239
|
+
"name": "SbbBlockLinkStaticElement",
|
|
81240
|
+
"slots": [
|
|
81241
|
+
{
|
|
81242
|
+
"description": "Use the unnamed slot to add content to the `sbb-block-link-static`.",
|
|
81243
|
+
"name": ""
|
|
81167
81244
|
},
|
|
81168
81245
|
{
|
|
81169
|
-
"
|
|
81170
|
-
"name": "
|
|
81171
|
-
|
|
81172
|
-
|
|
81173
|
-
|
|
81174
|
-
|
|
81175
|
-
"
|
|
81176
|
-
"
|
|
81177
|
-
"inheritedFrom": {
|
|
81178
|
-
"name": "SbbFormAssociatedMixin",
|
|
81179
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
81180
|
-
}
|
|
81246
|
+
"description": "Slot used to display the icon, if one is set.",
|
|
81247
|
+
"name": "icon"
|
|
81248
|
+
}
|
|
81249
|
+
],
|
|
81250
|
+
"mixins": [
|
|
81251
|
+
{
|
|
81252
|
+
"name": "SbbBlockLinkCommonElementMixin",
|
|
81253
|
+
"module": "link/common.js"
|
|
81181
81254
|
},
|
|
81182
81255
|
{
|
|
81183
|
-
"
|
|
81184
|
-
"
|
|
81256
|
+
"name": "SbbDisabledMixin",
|
|
81257
|
+
"module": "core/mixins.js"
|
|
81258
|
+
}
|
|
81259
|
+
],
|
|
81260
|
+
"superclass": {
|
|
81261
|
+
"name": "SbbActionBaseElement",
|
|
81262
|
+
"module": "core/base-elements.js"
|
|
81263
|
+
},
|
|
81264
|
+
"tagName": "sbb-block-link-static",
|
|
81265
|
+
"customElement": true,
|
|
81266
|
+
"attributes": [
|
|
81267
|
+
{
|
|
81268
|
+
"name": "icon-placement",
|
|
81185
81269
|
"type": {
|
|
81186
|
-
"text": "
|
|
81270
|
+
"text": "SbbIconPlacement"
|
|
81187
81271
|
},
|
|
81188
|
-
"
|
|
81189
|
-
"description": "
|
|
81190
|
-
"
|
|
81191
|
-
"inheritedFrom": {
|
|
81192
|
-
"name": "SbbFormAssociatedMixin",
|
|
81193
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
81194
|
-
}
|
|
81195
|
-
},
|
|
81196
|
-
{
|
|
81197
|
-
"kind": "field",
|
|
81198
|
-
"name": "_validityStates",
|
|
81199
|
-
"privacy": "private",
|
|
81200
|
-
"default": "new Map< keyof ValidityStateFlags, { flagValue: unknown; message: string } >()",
|
|
81272
|
+
"default": "'start'",
|
|
81273
|
+
"description": "Moves the icon to the end of the component if set to true.",
|
|
81274
|
+
"fieldName": "iconPlacement",
|
|
81201
81275
|
"inheritedFrom": {
|
|
81202
|
-
"name": "
|
|
81203
|
-
"module": "
|
|
81276
|
+
"name": "SbbBlockLinkCommonElementMixin",
|
|
81277
|
+
"module": "link/common/block-link-common.js"
|
|
81204
81278
|
}
|
|
81205
81279
|
},
|
|
81206
81280
|
{
|
|
81207
|
-
"
|
|
81208
|
-
"name": "formDisabled",
|
|
81281
|
+
"name": "size",
|
|
81209
81282
|
"type": {
|
|
81210
|
-
"text": "
|
|
81283
|
+
"text": "SbbLinkSize"
|
|
81211
81284
|
},
|
|
81212
|
-
"
|
|
81213
|
-
"default": "
|
|
81214
|
-
"
|
|
81285
|
+
"description": "Text size, the link should get in the non-button variation.\nWith inline variant, the text size adapts to where it is used.",
|
|
81286
|
+
"default": "'s' / 'xs' (lean)",
|
|
81287
|
+
"fieldName": "size",
|
|
81215
81288
|
"inheritedFrom": {
|
|
81216
|
-
"name": "
|
|
81217
|
-
"module": "
|
|
81289
|
+
"name": "SbbLinkCommonElementMixin",
|
|
81290
|
+
"module": "link/common/link-common.js"
|
|
81218
81291
|
}
|
|
81219
81292
|
},
|
|
81220
81293
|
{
|
|
81221
|
-
"
|
|
81222
|
-
"
|
|
81223
|
-
|
|
81224
|
-
"return": {
|
|
81225
|
-
"type": {
|
|
81226
|
-
"text": "boolean"
|
|
81227
|
-
}
|
|
81294
|
+
"name": "icon-name",
|
|
81295
|
+
"type": {
|
|
81296
|
+
"text": "string"
|
|
81228
81297
|
},
|
|
81229
|
-
"
|
|
81298
|
+
"default": "''",
|
|
81299
|
+
"description": "The icon name we want to use, choose from the small icon variants\nfrom the ui-icons category from here\nhttps://icons.app.sbb.ch.",
|
|
81300
|
+
"fieldName": "iconName",
|
|
81230
81301
|
"inheritedFrom": {
|
|
81231
|
-
"name": "
|
|
81232
|
-
"module": "
|
|
81302
|
+
"name": "SbbIconNameMixin",
|
|
81303
|
+
"module": "icon/icon-name-mixin.js"
|
|
81233
81304
|
}
|
|
81234
81305
|
},
|
|
81235
81306
|
{
|
|
81236
|
-
"
|
|
81237
|
-
"
|
|
81238
|
-
"
|
|
81239
|
-
"
|
|
81240
|
-
"
|
|
81241
|
-
"text": "boolean"
|
|
81242
|
-
}
|
|
81307
|
+
"name": "disabled",
|
|
81308
|
+
"description": "Whether the component is disabled.",
|
|
81309
|
+
"default": "false",
|
|
81310
|
+
"type": {
|
|
81311
|
+
"text": "boolean"
|
|
81243
81312
|
},
|
|
81244
|
-
"
|
|
81313
|
+
"fieldName": "disabled",
|
|
81245
81314
|
"inheritedFrom": {
|
|
81246
|
-
"name": "
|
|
81247
|
-
"module": "core/mixins/
|
|
81248
|
-
}
|
|
81249
|
-
}
|
|
81250
|
-
|
|
81251
|
-
|
|
81252
|
-
|
|
81253
|
-
"
|
|
81254
|
-
"
|
|
81255
|
-
|
|
81256
|
-
|
|
81257
|
-
}
|
|
81315
|
+
"name": "SbbDisabledMixin",
|
|
81316
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
81317
|
+
}
|
|
81318
|
+
}
|
|
81319
|
+
],
|
|
81320
|
+
"members": [
|
|
81321
|
+
{
|
|
81322
|
+
"kind": "field",
|
|
81323
|
+
"name": "styles",
|
|
81324
|
+
"type": {
|
|
81325
|
+
"text": "CSSResultGroup"
|
|
81258
81326
|
},
|
|
81259
|
-
"
|
|
81260
|
-
|
|
81261
|
-
|
|
81262
|
-
"type": {
|
|
81263
|
-
"text": "string"
|
|
81264
|
-
}
|
|
81265
|
-
}
|
|
81266
|
-
],
|
|
81267
|
-
"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.",
|
|
81327
|
+
"privacy": "public",
|
|
81328
|
+
"static": true,
|
|
81329
|
+
"default": "[boxSizingStyles, style, blockStyle]",
|
|
81268
81330
|
"inheritedFrom": {
|
|
81269
|
-
"name": "
|
|
81270
|
-
"module": "
|
|
81331
|
+
"name": "SbbLinkCommonElementMixin",
|
|
81332
|
+
"module": "link/common/link-common.js"
|
|
81271
81333
|
}
|
|
81272
81334
|
},
|
|
81273
81335
|
{
|
|
81274
|
-
"kind": "
|
|
81275
|
-
"name": "
|
|
81276
|
-
"
|
|
81277
|
-
|
|
81278
|
-
"type": {
|
|
81279
|
-
"text": "boolean"
|
|
81280
|
-
}
|
|
81336
|
+
"kind": "field",
|
|
81337
|
+
"name": "iconPlacement",
|
|
81338
|
+
"type": {
|
|
81339
|
+
"text": "SbbIconPlacement"
|
|
81281
81340
|
},
|
|
81341
|
+
"privacy": "public",
|
|
81342
|
+
"default": "'start'",
|
|
81343
|
+
"description": "Moves the icon to the end of the component if set to true.",
|
|
81344
|
+
"attribute": "icon-placement",
|
|
81345
|
+
"reflects": true,
|
|
81282
81346
|
"inheritedFrom": {
|
|
81283
|
-
"name": "
|
|
81284
|
-
"module": "
|
|
81347
|
+
"name": "SbbBlockLinkCommonElementMixin",
|
|
81348
|
+
"module": "link/common/block-link-common.js"
|
|
81285
81349
|
}
|
|
81286
81350
|
},
|
|
81287
81351
|
{
|
|
81288
81352
|
"kind": "method",
|
|
81289
|
-
"name": "
|
|
81353
|
+
"name": "renderTemplate",
|
|
81290
81354
|
"privacy": "protected",
|
|
81291
81355
|
"return": {
|
|
81292
81356
|
"type": {
|
|
81293
|
-
"text": "
|
|
81357
|
+
"text": "TemplateResult"
|
|
81294
81358
|
}
|
|
81295
81359
|
},
|
|
81296
|
-
"description": "
|
|
81360
|
+
"description": "Override this method to render the component template.",
|
|
81297
81361
|
"inheritedFrom": {
|
|
81298
|
-
"name": "
|
|
81299
|
-
"module": "core/
|
|
81362
|
+
"name": "SbbActionBaseElement",
|
|
81363
|
+
"module": "core/base-elements/action-base-element.js"
|
|
81300
81364
|
}
|
|
81301
81365
|
},
|
|
81302
81366
|
{
|
|
81303
|
-
"kind": "
|
|
81304
|
-
"name": "
|
|
81305
|
-
"
|
|
81306
|
-
|
|
81307
|
-
"type": {
|
|
81308
|
-
"text": "FormRestoreState"
|
|
81309
|
-
}
|
|
81367
|
+
"kind": "field",
|
|
81368
|
+
"name": "size",
|
|
81369
|
+
"type": {
|
|
81370
|
+
"text": "SbbLinkSize"
|
|
81310
81371
|
},
|
|
81372
|
+
"privacy": "public",
|
|
81373
|
+
"description": "Text size, the link should get in the non-button variation.\nWith inline variant, the text size adapts to where it is used.",
|
|
81374
|
+
"default": "'s' / 'xs' (lean)",
|
|
81375
|
+
"attribute": "size",
|
|
81376
|
+
"reflects": true,
|
|
81311
81377
|
"inheritedFrom": {
|
|
81312
|
-
"name": "
|
|
81313
|
-
"module": "
|
|
81378
|
+
"name": "SbbLinkCommonElementMixin",
|
|
81379
|
+
"module": "link/common/link-common.js"
|
|
81314
81380
|
}
|
|
81315
81381
|
},
|
|
81316
81382
|
{
|
|
81317
|
-
"kind": "
|
|
81318
|
-
"name": "
|
|
81319
|
-
"
|
|
81320
|
-
|
|
81321
|
-
"type": {
|
|
81322
|
-
"text": "void"
|
|
81323
|
-
}
|
|
81383
|
+
"kind": "field",
|
|
81384
|
+
"name": "iconName",
|
|
81385
|
+
"type": {
|
|
81386
|
+
"text": "string"
|
|
81324
81387
|
},
|
|
81325
|
-
"
|
|
81326
|
-
|
|
81327
|
-
|
|
81328
|
-
|
|
81329
|
-
"text": "T"
|
|
81330
|
-
}
|
|
81331
|
-
},
|
|
81332
|
-
{
|
|
81333
|
-
"name": "message",
|
|
81334
|
-
"type": {
|
|
81335
|
-
"text": "string"
|
|
81336
|
-
}
|
|
81337
|
-
},
|
|
81338
|
-
{
|
|
81339
|
-
"name": "flagValue",
|
|
81340
|
-
"optional": true,
|
|
81341
|
-
"type": {
|
|
81342
|
-
"text": "ValidityStateFlags[T]"
|
|
81343
|
-
}
|
|
81344
|
-
}
|
|
81345
|
-
],
|
|
81346
|
-
"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).",
|
|
81388
|
+
"privacy": "public",
|
|
81389
|
+
"default": "''",
|
|
81390
|
+
"description": "The icon name we want to use, choose from the small icon variants\nfrom the ui-icons category from here\nhttps://icons.app.sbb.ch.",
|
|
81391
|
+
"attribute": "icon-name",
|
|
81347
81392
|
"inheritedFrom": {
|
|
81348
|
-
"name": "
|
|
81349
|
-
"module": "
|
|
81393
|
+
"name": "SbbIconNameMixin",
|
|
81394
|
+
"module": "icon/icon-name-mixin.js"
|
|
81350
81395
|
}
|
|
81351
81396
|
},
|
|
81352
81397
|
{
|
|
81353
81398
|
"kind": "method",
|
|
81354
|
-
"name": "
|
|
81399
|
+
"name": "renderIconSlot",
|
|
81355
81400
|
"privacy": "protected",
|
|
81356
81401
|
"return": {
|
|
81357
81402
|
"type": {
|
|
81358
|
-
"text": "
|
|
81403
|
+
"text": "TemplateResult"
|
|
81359
81404
|
}
|
|
81360
81405
|
},
|
|
81361
81406
|
"parameters": [
|
|
81362
81407
|
{
|
|
81363
|
-
"name": "
|
|
81408
|
+
"name": "classname",
|
|
81409
|
+
"optional": true,
|
|
81364
81410
|
"type": {
|
|
81365
|
-
"text": "
|
|
81411
|
+
"text": "string"
|
|
81366
81412
|
}
|
|
81367
81413
|
}
|
|
81368
81414
|
],
|
|
81369
|
-
"description": "Removes the validity state flag entry and updates validity state.",
|
|
81370
|
-
"inheritedFrom": {
|
|
81371
|
-
"name": "SbbFormAssociatedMixin",
|
|
81372
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
81373
|
-
}
|
|
81374
|
-
},
|
|
81375
|
-
{
|
|
81376
|
-
"kind": "method",
|
|
81377
|
-
"name": "validate",
|
|
81378
|
-
"privacy": "protected",
|
|
81379
|
-
"return": {
|
|
81380
|
-
"type": {
|
|
81381
|
-
"text": "void"
|
|
81382
|
-
}
|
|
81383
|
-
},
|
|
81384
|
-
"description": "To be called whenever the current element needs to be validated.",
|
|
81385
81415
|
"inheritedFrom": {
|
|
81386
|
-
"name": "
|
|
81387
|
-
"module": "
|
|
81416
|
+
"name": "SbbIconNameMixin",
|
|
81417
|
+
"module": "icon/icon-name-mixin.js"
|
|
81388
81418
|
}
|
|
81389
81419
|
},
|
|
81390
81420
|
{
|
|
81391
81421
|
"kind": "method",
|
|
81392
|
-
"name": "
|
|
81422
|
+
"name": "renderIconName",
|
|
81393
81423
|
"privacy": "protected",
|
|
81394
81424
|
"return": {
|
|
81395
81425
|
"type": {
|
|
81396
|
-
"text": "
|
|
81426
|
+
"text": "string"
|
|
81397
81427
|
}
|
|
81398
81428
|
},
|
|
81399
|
-
"parameters": [
|
|
81400
|
-
{
|
|
81401
|
-
"name": "name",
|
|
81402
|
-
"type": {
|
|
81403
|
-
"text": "PropertyKey | undefined"
|
|
81404
|
-
}
|
|
81405
|
-
}
|
|
81406
|
-
],
|
|
81407
|
-
"description": "Whether validation should be run on a property change with the given name.",
|
|
81408
81429
|
"inheritedFrom": {
|
|
81409
|
-
"name": "
|
|
81410
|
-
"module": "
|
|
81430
|
+
"name": "SbbIconNameMixin",
|
|
81431
|
+
"module": "icon/icon-name-mixin.js"
|
|
81411
81432
|
}
|
|
81412
81433
|
},
|
|
81413
81434
|
{
|
|
81414
81435
|
"kind": "method",
|
|
81415
|
-
"name": "
|
|
81436
|
+
"name": "_renderIconName",
|
|
81416
81437
|
"privacy": "private",
|
|
81417
81438
|
"return": {
|
|
81418
81439
|
"type": {
|
|
81419
|
-
"text": "
|
|
81440
|
+
"text": "string"
|
|
81420
81441
|
}
|
|
81421
81442
|
},
|
|
81422
81443
|
"inheritedFrom": {
|
|
81423
|
-
"name": "
|
|
81424
|
-
"module": "
|
|
81444
|
+
"name": "SbbIconNameMixin",
|
|
81445
|
+
"module": "icon/icon-name-mixin.js"
|
|
81425
81446
|
}
|
|
81426
81447
|
},
|
|
81427
81448
|
{
|
|
81428
81449
|
"kind": "field",
|
|
81429
|
-
"name": "
|
|
81450
|
+
"name": "disabled",
|
|
81451
|
+
"privacy": "public",
|
|
81452
|
+
"description": "Whether the component is disabled.",
|
|
81453
|
+
"default": "false",
|
|
81430
81454
|
"type": {
|
|
81431
|
-
"text": "
|
|
81455
|
+
"text": "boolean"
|
|
81432
81456
|
},
|
|
81433
|
-
"
|
|
81434
|
-
"
|
|
81435
|
-
"readonly": true,
|
|
81436
|
-
"default": "'button'",
|
|
81437
|
-
"inheritedFrom": {
|
|
81438
|
-
"name": "SbbButtonLikeBaseElement",
|
|
81439
|
-
"module": "core/base-elements/button-base-element.js"
|
|
81440
|
-
}
|
|
81441
|
-
},
|
|
81442
|
-
{
|
|
81443
|
-
"kind": "field",
|
|
81444
|
-
"name": "_preventScrollOnSpaceKeydown",
|
|
81445
|
-
"privacy": "private",
|
|
81446
|
-
"description": "Prevents scrolling from pressing Space, when the event target is an action element.\nAlso sets active state.",
|
|
81447
|
-
"parameters": [
|
|
81448
|
-
{
|
|
81449
|
-
"description": "The origin event.",
|
|
81450
|
-
"name": "event"
|
|
81451
|
-
}
|
|
81452
|
-
],
|
|
81457
|
+
"attribute": "disabled",
|
|
81458
|
+
"reflects": true,
|
|
81453
81459
|
"inheritedFrom": {
|
|
81454
|
-
"name": "
|
|
81455
|
-
"module": "core/
|
|
81460
|
+
"name": "SbbDisabledMixin",
|
|
81461
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
81456
81462
|
}
|
|
81457
81463
|
},
|
|
81458
81464
|
{
|
|
81459
81465
|
"kind": "field",
|
|
81460
|
-
"name": "
|
|
81466
|
+
"name": "#disabled",
|
|
81461
81467
|
"privacy": "private",
|
|
81468
|
+
"type": {
|
|
81469
|
+
"text": "boolean"
|
|
81470
|
+
},
|
|
81471
|
+
"default": "false",
|
|
81462
81472
|
"inheritedFrom": {
|
|
81463
|
-
"name": "
|
|
81464
|
-
"module": "core/
|
|
81473
|
+
"name": "SbbDisabledMixin",
|
|
81474
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
81465
81475
|
}
|
|
81466
81476
|
},
|
|
81467
81477
|
{
|
|
81468
|
-
"kind": "
|
|
81469
|
-
"name": "
|
|
81470
|
-
"privacy": "
|
|
81471
|
-
"
|
|
81472
|
-
|
|
81473
|
-
|
|
81474
|
-
"description": "The origin event.",
|
|
81475
|
-
"name": "event"
|
|
81478
|
+
"kind": "method",
|
|
81479
|
+
"name": "isDisabledExternally",
|
|
81480
|
+
"privacy": "protected",
|
|
81481
|
+
"return": {
|
|
81482
|
+
"type": {
|
|
81483
|
+
"text": "boolean"
|
|
81476
81484
|
}
|
|
81477
|
-
|
|
81478
|
-
"
|
|
81479
|
-
"name": "SbbButtonLikeBaseElement",
|
|
81480
|
-
"module": "core/base-elements/button-base-element.js"
|
|
81481
|
-
}
|
|
81482
|
-
},
|
|
81483
|
-
{
|
|
81484
|
-
"kind": "field",
|
|
81485
|
-
"name": "_dispatchClickEvent",
|
|
81486
|
-
"privacy": "private",
|
|
81485
|
+
},
|
|
81486
|
+
"description": "Will be used as 'or' check to the current disabled state.\nCan e.g. be used to read disabled state of a group.",
|
|
81487
81487
|
"inheritedFrom": {
|
|
81488
|
-
"name": "
|
|
81489
|
-
"module": "core/
|
|
81488
|
+
"name": "SbbDisabledMixin",
|
|
81489
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
81490
81490
|
}
|
|
81491
81491
|
},
|
|
81492
81492
|
{
|
|
@@ -81564,18 +81564,18 @@
|
|
|
81564
81564
|
"exports": [
|
|
81565
81565
|
{
|
|
81566
81566
|
"kind": "js",
|
|
81567
|
-
"name": "
|
|
81567
|
+
"name": "SbbBlockLinkStaticElement",
|
|
81568
81568
|
"declaration": {
|
|
81569
|
-
"name": "
|
|
81570
|
-
"module": "link/block-link-
|
|
81569
|
+
"name": "SbbBlockLinkStaticElement",
|
|
81570
|
+
"module": "link/block-link-static/block-link-static.component.js"
|
|
81571
81571
|
}
|
|
81572
81572
|
},
|
|
81573
81573
|
{
|
|
81574
81574
|
"kind": "custom-element-definition",
|
|
81575
|
-
"name": "sbb-block-link-
|
|
81575
|
+
"name": "sbb-block-link-static",
|
|
81576
81576
|
"declaration": {
|
|
81577
|
-
"name": "
|
|
81578
|
-
"module": "link/block-link-
|
|
81577
|
+
"name": "SbbBlockLinkStaticElement",
|
|
81578
|
+
"module": "link/block-link-static/block-link-static.component.js"
|
|
81579
81579
|
}
|
|
81580
81580
|
}
|
|
81581
81581
|
]
|