@sbb-esta/lyne-elements-dev 4.6.0-dev.1772417874 → 4.6.0-dev.1772438395
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
|
@@ -81257,15 +81257,15 @@
|
|
|
81257
81257
|
},
|
|
81258
81258
|
{
|
|
81259
81259
|
"kind": "javascript-module",
|
|
81260
|
-
"path": "link/block-link-
|
|
81260
|
+
"path": "link/block-link-button/block-link-button.component.js",
|
|
81261
81261
|
"declarations": [
|
|
81262
81262
|
{
|
|
81263
81263
|
"kind": "class",
|
|
81264
|
-
"description": "It displays a
|
|
81265
|
-
"name": "
|
|
81264
|
+
"description": "It displays a link enhanced with the SBB Design, which will behave as a button.",
|
|
81265
|
+
"name": "SbbBlockLinkButtonElement",
|
|
81266
81266
|
"slots": [
|
|
81267
81267
|
{
|
|
81268
|
-
"description": "Use the unnamed slot to add content to the `sbb-block-link-
|
|
81268
|
+
"description": "Use the unnamed slot to add content to the `sbb-block-link-button`.",
|
|
81269
81269
|
"name": ""
|
|
81270
81270
|
},
|
|
81271
81271
|
{
|
|
@@ -81279,15 +81279,15 @@
|
|
|
81279
81279
|
"module": "link/common.js"
|
|
81280
81280
|
},
|
|
81281
81281
|
{
|
|
81282
|
-
"name": "
|
|
81282
|
+
"name": "SbbDisabledTabIndexActionMixin",
|
|
81283
81283
|
"module": "core/mixins.js"
|
|
81284
81284
|
}
|
|
81285
81285
|
],
|
|
81286
81286
|
"superclass": {
|
|
81287
|
-
"name": "
|
|
81287
|
+
"name": "SbbButtonBaseElement",
|
|
81288
81288
|
"module": "core/base-elements.js"
|
|
81289
81289
|
},
|
|
81290
|
-
"tagName": "sbb-block-link-
|
|
81290
|
+
"tagName": "sbb-block-link-button",
|
|
81291
81291
|
"customElement": true,
|
|
81292
81292
|
"attributes": [
|
|
81293
81293
|
{
|
|
@@ -81329,6 +81329,19 @@
|
|
|
81329
81329
|
"module": "icon/icon-name-mixin.js"
|
|
81330
81330
|
}
|
|
81331
81331
|
},
|
|
81332
|
+
{
|
|
81333
|
+
"name": "disabled-interactive",
|
|
81334
|
+
"type": {
|
|
81335
|
+
"text": "boolean"
|
|
81336
|
+
},
|
|
81337
|
+
"default": "false",
|
|
81338
|
+
"description": "Whether the button should be aria-disabled but stay interactive.",
|
|
81339
|
+
"fieldName": "disabledInteractive",
|
|
81340
|
+
"inheritedFrom": {
|
|
81341
|
+
"name": "SbbDisabledInteractiveMixin",
|
|
81342
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
81343
|
+
}
|
|
81344
|
+
},
|
|
81332
81345
|
{
|
|
81333
81346
|
"name": "disabled",
|
|
81334
81347
|
"description": "Whether the component is disabled.",
|
|
@@ -81341,6 +81354,56 @@
|
|
|
81341
81354
|
"name": "SbbDisabledMixin",
|
|
81342
81355
|
"module": "core/mixins/disabled-mixin.js"
|
|
81343
81356
|
}
|
|
81357
|
+
},
|
|
81358
|
+
{
|
|
81359
|
+
"name": "value",
|
|
81360
|
+
"type": {
|
|
81361
|
+
"text": "string"
|
|
81362
|
+
},
|
|
81363
|
+
"default": "''",
|
|
81364
|
+
"description": "Value of the form element.",
|
|
81365
|
+
"fieldName": "value",
|
|
81366
|
+
"inheritedFrom": {
|
|
81367
|
+
"name": "SbbButtonBaseElement",
|
|
81368
|
+
"module": "core/base-elements/button-base-element.js"
|
|
81369
|
+
}
|
|
81370
|
+
},
|
|
81371
|
+
{
|
|
81372
|
+
"name": "type",
|
|
81373
|
+
"description": "The type attribute to use for the button.",
|
|
81374
|
+
"default": "'button'",
|
|
81375
|
+
"type": {
|
|
81376
|
+
"text": "SbbButtonType"
|
|
81377
|
+
},
|
|
81378
|
+
"fieldName": "type",
|
|
81379
|
+
"inheritedFrom": {
|
|
81380
|
+
"name": "SbbButtonBaseElement",
|
|
81381
|
+
"module": "core/base-elements/button-base-element.js"
|
|
81382
|
+
}
|
|
81383
|
+
},
|
|
81384
|
+
{
|
|
81385
|
+
"name": "form",
|
|
81386
|
+
"description": "The `<form>` element to associate the button with.",
|
|
81387
|
+
"type": {
|
|
81388
|
+
"text": "HTMLFormElement | null"
|
|
81389
|
+
},
|
|
81390
|
+
"fieldName": "form",
|
|
81391
|
+
"inheritedFrom": {
|
|
81392
|
+
"name": "SbbButtonBaseElement",
|
|
81393
|
+
"module": "core/base-elements/button-base-element.js"
|
|
81394
|
+
}
|
|
81395
|
+
},
|
|
81396
|
+
{
|
|
81397
|
+
"name": "name",
|
|
81398
|
+
"description": "Name of the form element. Will be read from name attribute.",
|
|
81399
|
+
"type": {
|
|
81400
|
+
"text": "string"
|
|
81401
|
+
},
|
|
81402
|
+
"fieldName": "name",
|
|
81403
|
+
"inheritedFrom": {
|
|
81404
|
+
"name": "SbbFormAssociatedMixin",
|
|
81405
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
81406
|
+
}
|
|
81344
81407
|
}
|
|
81345
81408
|
],
|
|
81346
81409
|
"members": [
|
|
@@ -81471,6 +81534,22 @@
|
|
|
81471
81534
|
"module": "icon/icon-name-mixin.js"
|
|
81472
81535
|
}
|
|
81473
81536
|
},
|
|
81537
|
+
{
|
|
81538
|
+
"kind": "field",
|
|
81539
|
+
"name": "disabledInteractive",
|
|
81540
|
+
"type": {
|
|
81541
|
+
"text": "boolean"
|
|
81542
|
+
},
|
|
81543
|
+
"privacy": "public",
|
|
81544
|
+
"default": "false",
|
|
81545
|
+
"description": "Whether the button should be aria-disabled but stay interactive.",
|
|
81546
|
+
"attribute": "disabled-interactive",
|
|
81547
|
+
"reflects": true,
|
|
81548
|
+
"inheritedFrom": {
|
|
81549
|
+
"name": "SbbDisabledInteractiveMixin",
|
|
81550
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
81551
|
+
}
|
|
81552
|
+
},
|
|
81474
81553
|
{
|
|
81475
81554
|
"kind": "field",
|
|
81476
81555
|
"name": "disabled",
|
|
@@ -81515,10 +81594,90 @@
|
|
|
81515
81594
|
"module": "core/mixins/disabled-mixin.js"
|
|
81516
81595
|
}
|
|
81517
81596
|
},
|
|
81597
|
+
{
|
|
81598
|
+
"kind": "field",
|
|
81599
|
+
"name": "_elementsOnWhichEnterPressTriggersSubmit",
|
|
81600
|
+
"type": {
|
|
81601
|
+
"text": "array"
|
|
81602
|
+
},
|
|
81603
|
+
"privacy": "private",
|
|
81604
|
+
"readonly": true,
|
|
81605
|
+
"default": "[ 'input', 'sbb-date-input', 'sbb-time-input', ]",
|
|
81606
|
+
"inheritedFrom": {
|
|
81607
|
+
"name": "SbbButtonBaseElement",
|
|
81608
|
+
"module": "core/base-elements/button-base-element.js"
|
|
81609
|
+
}
|
|
81610
|
+
},
|
|
81611
|
+
{
|
|
81612
|
+
"kind": "field",
|
|
81613
|
+
"name": "value",
|
|
81614
|
+
"type": {
|
|
81615
|
+
"text": "string"
|
|
81616
|
+
},
|
|
81617
|
+
"privacy": "public",
|
|
81618
|
+
"inheritedFrom": {
|
|
81619
|
+
"name": "SbbButtonBaseElement",
|
|
81620
|
+
"module": "core/base-elements/button-base-element.js"
|
|
81621
|
+
},
|
|
81622
|
+
"default": "''",
|
|
81623
|
+
"description": "Value of the form element.",
|
|
81624
|
+
"attribute": "value"
|
|
81625
|
+
},
|
|
81626
|
+
{
|
|
81627
|
+
"kind": "field",
|
|
81628
|
+
"name": "type",
|
|
81629
|
+
"privacy": "public",
|
|
81630
|
+
"description": "The type attribute to use for the button.",
|
|
81631
|
+
"default": "'button'",
|
|
81632
|
+
"type": {
|
|
81633
|
+
"text": "SbbButtonType"
|
|
81634
|
+
},
|
|
81635
|
+
"attribute": "type",
|
|
81636
|
+
"inheritedFrom": {
|
|
81637
|
+
"name": "SbbButtonBaseElement",
|
|
81638
|
+
"module": "core/base-elements/button-base-element.js"
|
|
81639
|
+
}
|
|
81640
|
+
},
|
|
81641
|
+
{
|
|
81642
|
+
"kind": "field",
|
|
81643
|
+
"name": "form",
|
|
81644
|
+
"type": {
|
|
81645
|
+
"text": "HTMLFormElement | null"
|
|
81646
|
+
},
|
|
81647
|
+
"privacy": "public",
|
|
81648
|
+
"description": "The `<form>` element to associate the button with.",
|
|
81649
|
+
"inheritedFrom": {
|
|
81650
|
+
"name": "SbbButtonBaseElement",
|
|
81651
|
+
"module": "core/base-elements/button-base-element.js"
|
|
81652
|
+
},
|
|
81653
|
+
"attribute": "form"
|
|
81654
|
+
},
|
|
81655
|
+
{
|
|
81656
|
+
"kind": "field",
|
|
81657
|
+
"name": "_formId",
|
|
81658
|
+
"type": {
|
|
81659
|
+
"text": "string"
|
|
81660
|
+
},
|
|
81661
|
+
"privacy": "private",
|
|
81662
|
+
"default": "''",
|
|
81663
|
+
"inheritedFrom": {
|
|
81664
|
+
"name": "SbbButtonBaseElement",
|
|
81665
|
+
"module": "core/base-elements/button-base-element.js"
|
|
81666
|
+
}
|
|
81667
|
+
},
|
|
81668
|
+
{
|
|
81669
|
+
"kind": "field",
|
|
81670
|
+
"name": "_handleButtonClick",
|
|
81671
|
+
"privacy": "private",
|
|
81672
|
+
"inheritedFrom": {
|
|
81673
|
+
"name": "SbbButtonBaseElement",
|
|
81674
|
+
"module": "core/base-elements/button-base-element.js"
|
|
81675
|
+
}
|
|
81676
|
+
},
|
|
81518
81677
|
{
|
|
81519
81678
|
"kind": "method",
|
|
81520
|
-
"name": "
|
|
81521
|
-
"privacy": "
|
|
81679
|
+
"name": "_requestSubmit",
|
|
81680
|
+
"privacy": "private",
|
|
81522
81681
|
"return": {
|
|
81523
81682
|
"type": {
|
|
81524
81683
|
"text": "void"
|
|
@@ -81526,509 +81685,396 @@
|
|
|
81526
81685
|
},
|
|
81527
81686
|
"parameters": [
|
|
81528
81687
|
{
|
|
81529
|
-
"name": "
|
|
81530
|
-
"type": {
|
|
81531
|
-
"text": "string"
|
|
81532
|
-
}
|
|
81533
|
-
},
|
|
81534
|
-
{
|
|
81535
|
-
"name": "force",
|
|
81536
|
-
"optional": true,
|
|
81688
|
+
"name": "form",
|
|
81537
81689
|
"type": {
|
|
81538
|
-
"text": "
|
|
81690
|
+
"text": "HTMLFormElement"
|
|
81539
81691
|
}
|
|
81540
81692
|
}
|
|
81541
81693
|
],
|
|
81542
81694
|
"inheritedFrom": {
|
|
81543
|
-
"name": "
|
|
81544
|
-
"module": "core/base-elements/
|
|
81695
|
+
"name": "SbbButtonBaseElement",
|
|
81696
|
+
"module": "core/base-elements/button-base-element.js"
|
|
81545
81697
|
}
|
|
81546
81698
|
},
|
|
81547
81699
|
{
|
|
81548
81700
|
"kind": "field",
|
|
81549
|
-
"name": "
|
|
81701
|
+
"name": "_formKeyDown",
|
|
81702
|
+
"privacy": "private",
|
|
81703
|
+
"inheritedFrom": {
|
|
81704
|
+
"name": "SbbButtonBaseElement",
|
|
81705
|
+
"module": "core/base-elements/button-base-element.js"
|
|
81706
|
+
}
|
|
81707
|
+
},
|
|
81708
|
+
{
|
|
81709
|
+
"kind": "field",
|
|
81710
|
+
"name": "formAssociated",
|
|
81550
81711
|
"type": {
|
|
81551
|
-
"text": "boolean
|
|
81712
|
+
"text": "boolean"
|
|
81552
81713
|
},
|
|
81553
|
-
"privacy": "
|
|
81554
|
-
"
|
|
81714
|
+
"privacy": "public",
|
|
81715
|
+
"static": true,
|
|
81716
|
+
"default": "true",
|
|
81555
81717
|
"inheritedFrom": {
|
|
81556
|
-
"name": "
|
|
81557
|
-
"module": "core/
|
|
81718
|
+
"name": "SbbFormAssociatedMixin",
|
|
81719
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
81558
81720
|
}
|
|
81559
81721
|
},
|
|
81560
81722
|
{
|
|
81561
81723
|
"kind": "field",
|
|
81562
|
-
"name": "
|
|
81724
|
+
"name": "name",
|
|
81725
|
+
"privacy": "public",
|
|
81726
|
+
"description": "Name of the form element. Will be read from name attribute.",
|
|
81563
81727
|
"type": {
|
|
81564
|
-
"text": "
|
|
81728
|
+
"text": "string"
|
|
81565
81729
|
},
|
|
81566
|
-
"
|
|
81567
|
-
"readonly": true,
|
|
81730
|
+
"attribute": "name",
|
|
81568
81731
|
"inheritedFrom": {
|
|
81569
|
-
"name": "
|
|
81570
|
-
"module": "core/
|
|
81732
|
+
"name": "SbbFormAssociatedMixin",
|
|
81733
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
81571
81734
|
}
|
|
81572
81735
|
},
|
|
81573
81736
|
{
|
|
81574
|
-
"kind": "
|
|
81575
|
-
"name": "
|
|
81576
|
-
"
|
|
81577
|
-
|
|
81578
|
-
"type": {
|
|
81579
|
-
"text": "void"
|
|
81580
|
-
}
|
|
81737
|
+
"kind": "field",
|
|
81738
|
+
"name": "validity",
|
|
81739
|
+
"type": {
|
|
81740
|
+
"text": "ValidityState"
|
|
81581
81741
|
},
|
|
81742
|
+
"privacy": "public",
|
|
81743
|
+
"description": "Returns the ValidityState object for this element.",
|
|
81744
|
+
"readonly": true,
|
|
81582
81745
|
"inheritedFrom": {
|
|
81583
|
-
"name": "
|
|
81584
|
-
"module": "core/
|
|
81585
|
-
}
|
|
81586
|
-
}
|
|
81587
|
-
]
|
|
81588
|
-
}
|
|
81589
|
-
],
|
|
81590
|
-
"exports": [
|
|
81591
|
-
{
|
|
81592
|
-
"kind": "js",
|
|
81593
|
-
"name": "SbbBlockLinkStaticElement",
|
|
81594
|
-
"declaration": {
|
|
81595
|
-
"name": "SbbBlockLinkStaticElement",
|
|
81596
|
-
"module": "link/block-link-static/block-link-static.component.js"
|
|
81597
|
-
}
|
|
81598
|
-
},
|
|
81599
|
-
{
|
|
81600
|
-
"kind": "custom-element-definition",
|
|
81601
|
-
"name": "sbb-block-link-static",
|
|
81602
|
-
"declaration": {
|
|
81603
|
-
"name": "SbbBlockLinkStaticElement",
|
|
81604
|
-
"module": "link/block-link-static/block-link-static.component.js"
|
|
81605
|
-
}
|
|
81606
|
-
}
|
|
81607
|
-
]
|
|
81608
|
-
},
|
|
81609
|
-
{
|
|
81610
|
-
"kind": "javascript-module",
|
|
81611
|
-
"path": "link/block-link-button/block-link-button.component.js",
|
|
81612
|
-
"declarations": [
|
|
81613
|
-
{
|
|
81614
|
-
"kind": "class",
|
|
81615
|
-
"description": "It displays a link enhanced with the SBB Design, which will behave as a button.",
|
|
81616
|
-
"name": "SbbBlockLinkButtonElement",
|
|
81617
|
-
"slots": [
|
|
81618
|
-
{
|
|
81619
|
-
"description": "Use the unnamed slot to add content to the `sbb-block-link-button`.",
|
|
81620
|
-
"name": ""
|
|
81621
|
-
},
|
|
81622
|
-
{
|
|
81623
|
-
"description": "Slot used to display the icon, if one is set.",
|
|
81624
|
-
"name": "icon"
|
|
81625
|
-
}
|
|
81626
|
-
],
|
|
81627
|
-
"mixins": [
|
|
81628
|
-
{
|
|
81629
|
-
"name": "SbbBlockLinkCommonElementMixin",
|
|
81630
|
-
"module": "link/common.js"
|
|
81631
|
-
},
|
|
81632
|
-
{
|
|
81633
|
-
"name": "SbbDisabledTabIndexActionMixin",
|
|
81634
|
-
"module": "core/mixins.js"
|
|
81635
|
-
}
|
|
81636
|
-
],
|
|
81637
|
-
"superclass": {
|
|
81638
|
-
"name": "SbbButtonBaseElement",
|
|
81639
|
-
"module": "core/base-elements.js"
|
|
81640
|
-
},
|
|
81641
|
-
"tagName": "sbb-block-link-button",
|
|
81642
|
-
"customElement": true,
|
|
81643
|
-
"attributes": [
|
|
81644
|
-
{
|
|
81645
|
-
"name": "icon-placement",
|
|
81646
|
-
"type": {
|
|
81647
|
-
"text": "SbbIconPlacement"
|
|
81648
|
-
},
|
|
81649
|
-
"default": "'start'",
|
|
81650
|
-
"description": "Moves the icon to the end of the component if set to true.",
|
|
81651
|
-
"fieldName": "iconPlacement",
|
|
81652
|
-
"inheritedFrom": {
|
|
81653
|
-
"name": "SbbBlockLinkCommonElementMixin",
|
|
81654
|
-
"module": "link/common/block-link-common.js"
|
|
81746
|
+
"name": "SbbFormAssociatedMixin",
|
|
81747
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
81655
81748
|
}
|
|
81656
81749
|
},
|
|
81657
81750
|
{
|
|
81658
|
-
"
|
|
81659
|
-
"
|
|
81660
|
-
"text": "SbbLinkSize"
|
|
81661
|
-
},
|
|
81662
|
-
"description": "Text size, the link should get in the non-button variation.\nWith inline variant, the text size adapts to where it is used.",
|
|
81663
|
-
"default": "'s' / 'xs' (lean)",
|
|
81664
|
-
"fieldName": "size",
|
|
81665
|
-
"inheritedFrom": {
|
|
81666
|
-
"name": "SbbLinkCommonElementMixin",
|
|
81667
|
-
"module": "link/common/link-common.js"
|
|
81668
|
-
}
|
|
81669
|
-
},
|
|
81670
|
-
{
|
|
81671
|
-
"name": "icon-name",
|
|
81751
|
+
"kind": "field",
|
|
81752
|
+
"name": "validationMessage",
|
|
81672
81753
|
"type": {
|
|
81673
81754
|
"text": "string"
|
|
81674
81755
|
},
|
|
81675
|
-
"
|
|
81676
|
-
"description": "
|
|
81677
|
-
"
|
|
81756
|
+
"privacy": "public",
|
|
81757
|
+
"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.",
|
|
81758
|
+
"readonly": true,
|
|
81678
81759
|
"inheritedFrom": {
|
|
81679
|
-
"name": "
|
|
81680
|
-
"module": "
|
|
81760
|
+
"name": "SbbFormAssociatedMixin",
|
|
81761
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
81681
81762
|
}
|
|
81682
81763
|
},
|
|
81683
81764
|
{
|
|
81684
|
-
"
|
|
81765
|
+
"kind": "field",
|
|
81766
|
+
"name": "willValidate",
|
|
81685
81767
|
"type": {
|
|
81686
81768
|
"text": "boolean"
|
|
81687
81769
|
},
|
|
81688
|
-
"
|
|
81689
|
-
"description": "
|
|
81690
|
-
"
|
|
81770
|
+
"privacy": "public",
|
|
81771
|
+
"description": "Returns true if this element will be validated\nwhen the form is submitted; false otherwise.",
|
|
81772
|
+
"readonly": true,
|
|
81691
81773
|
"inheritedFrom": {
|
|
81692
|
-
"name": "
|
|
81693
|
-
"module": "core/mixins/
|
|
81774
|
+
"name": "SbbFormAssociatedMixin",
|
|
81775
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
81694
81776
|
}
|
|
81695
81777
|
},
|
|
81696
81778
|
{
|
|
81697
|
-
"
|
|
81698
|
-
"
|
|
81699
|
-
"
|
|
81700
|
-
"
|
|
81701
|
-
"text": "boolean"
|
|
81702
|
-
},
|
|
81703
|
-
"fieldName": "disabled",
|
|
81779
|
+
"kind": "field",
|
|
81780
|
+
"name": "_validityStates",
|
|
81781
|
+
"privacy": "private",
|
|
81782
|
+
"default": "new Map< keyof ValidityStateFlags, { flagValue: unknown; message: string } >()",
|
|
81704
81783
|
"inheritedFrom": {
|
|
81705
|
-
"name": "
|
|
81706
|
-
"module": "core/mixins/
|
|
81784
|
+
"name": "SbbFormAssociatedMixin",
|
|
81785
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
81707
81786
|
}
|
|
81708
81787
|
},
|
|
81709
81788
|
{
|
|
81710
|
-
"
|
|
81789
|
+
"kind": "field",
|
|
81790
|
+
"name": "formDisabled",
|
|
81711
81791
|
"type": {
|
|
81712
|
-
"text": "
|
|
81792
|
+
"text": "boolean"
|
|
81713
81793
|
},
|
|
81714
|
-
"
|
|
81715
|
-
"
|
|
81716
|
-
"
|
|
81794
|
+
"privacy": "protected",
|
|
81795
|
+
"default": "false",
|
|
81796
|
+
"description": "Whenever a surrounding form or fieldset is changing its disabled state.",
|
|
81717
81797
|
"inheritedFrom": {
|
|
81718
|
-
"name": "
|
|
81719
|
-
"module": "core/
|
|
81798
|
+
"name": "SbbFormAssociatedMixin",
|
|
81799
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
81720
81800
|
}
|
|
81721
81801
|
},
|
|
81722
81802
|
{
|
|
81723
|
-
"
|
|
81724
|
-
"
|
|
81725
|
-
"
|
|
81726
|
-
"
|
|
81727
|
-
"
|
|
81803
|
+
"kind": "method",
|
|
81804
|
+
"name": "checkValidity",
|
|
81805
|
+
"privacy": "public",
|
|
81806
|
+
"return": {
|
|
81807
|
+
"type": {
|
|
81808
|
+
"text": "boolean"
|
|
81809
|
+
}
|
|
81728
81810
|
},
|
|
81729
|
-
"
|
|
81811
|
+
"description": "Returns true if this element has no validity problems; false otherwise.\nFires an invalid event at the element in the latter case.",
|
|
81730
81812
|
"inheritedFrom": {
|
|
81731
|
-
"name": "
|
|
81732
|
-
"module": "core/
|
|
81813
|
+
"name": "SbbFormAssociatedMixin",
|
|
81814
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
81733
81815
|
}
|
|
81734
81816
|
},
|
|
81735
81817
|
{
|
|
81736
|
-
"
|
|
81737
|
-
"
|
|
81738
|
-
"
|
|
81739
|
-
|
|
81818
|
+
"kind": "method",
|
|
81819
|
+
"name": "reportValidity",
|
|
81820
|
+
"privacy": "public",
|
|
81821
|
+
"return": {
|
|
81822
|
+
"type": {
|
|
81823
|
+
"text": "boolean"
|
|
81824
|
+
}
|
|
81740
81825
|
},
|
|
81741
|
-
"
|
|
81826
|
+
"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.",
|
|
81742
81827
|
"inheritedFrom": {
|
|
81743
|
-
"name": "
|
|
81744
|
-
"module": "core/
|
|
81828
|
+
"name": "SbbFormAssociatedMixin",
|
|
81829
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
81745
81830
|
}
|
|
81746
81831
|
},
|
|
81747
81832
|
{
|
|
81748
|
-
"
|
|
81749
|
-
"
|
|
81750
|
-
"
|
|
81751
|
-
|
|
81833
|
+
"kind": "method",
|
|
81834
|
+
"name": "setCustomValidity",
|
|
81835
|
+
"privacy": "public",
|
|
81836
|
+
"return": {
|
|
81837
|
+
"type": {
|
|
81838
|
+
"text": "void"
|
|
81839
|
+
}
|
|
81752
81840
|
},
|
|
81753
|
-
"
|
|
81841
|
+
"parameters": [
|
|
81842
|
+
{
|
|
81843
|
+
"name": "message",
|
|
81844
|
+
"type": {
|
|
81845
|
+
"text": "string"
|
|
81846
|
+
}
|
|
81847
|
+
}
|
|
81848
|
+
],
|
|
81849
|
+
"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.",
|
|
81754
81850
|
"inheritedFrom": {
|
|
81755
81851
|
"name": "SbbFormAssociatedMixin",
|
|
81756
81852
|
"module": "core/mixins/form-associated-mixin.js"
|
|
81757
81853
|
}
|
|
81758
|
-
}
|
|
81759
|
-
],
|
|
81760
|
-
"members": [
|
|
81761
|
-
{
|
|
81762
|
-
"kind": "field",
|
|
81763
|
-
"name": "styles",
|
|
81764
|
-
"type": {
|
|
81765
|
-
"text": "CSSResultGroup"
|
|
81766
|
-
},
|
|
81767
|
-
"privacy": "public",
|
|
81768
|
-
"static": true,
|
|
81769
|
-
"default": "[boxSizingStyles, style, blockStyle]",
|
|
81770
|
-
"inheritedFrom": {
|
|
81771
|
-
"name": "SbbLinkCommonElementMixin",
|
|
81772
|
-
"module": "link/common/link-common.js"
|
|
81773
|
-
}
|
|
81774
81854
|
},
|
|
81775
81855
|
{
|
|
81776
|
-
"kind": "
|
|
81777
|
-
"name": "
|
|
81778
|
-
"
|
|
81779
|
-
|
|
81856
|
+
"kind": "method",
|
|
81857
|
+
"name": "_hasDisabledAncestor",
|
|
81858
|
+
"privacy": "private",
|
|
81859
|
+
"return": {
|
|
81860
|
+
"type": {
|
|
81861
|
+
"text": "boolean"
|
|
81862
|
+
}
|
|
81780
81863
|
},
|
|
81781
|
-
"privacy": "public",
|
|
81782
|
-
"default": "'start'",
|
|
81783
|
-
"description": "Moves the icon to the end of the component if set to true.",
|
|
81784
|
-
"attribute": "icon-placement",
|
|
81785
|
-
"reflects": true,
|
|
81786
81864
|
"inheritedFrom": {
|
|
81787
|
-
"name": "
|
|
81788
|
-
"module": "
|
|
81865
|
+
"name": "SbbFormAssociatedMixin",
|
|
81866
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
81789
81867
|
}
|
|
81790
81868
|
},
|
|
81791
81869
|
{
|
|
81792
81870
|
"kind": "method",
|
|
81793
|
-
"name": "
|
|
81871
|
+
"name": "updateFormValue",
|
|
81794
81872
|
"privacy": "protected",
|
|
81795
81873
|
"return": {
|
|
81796
81874
|
"type": {
|
|
81797
|
-
"text": "
|
|
81875
|
+
"text": "void"
|
|
81798
81876
|
}
|
|
81799
81877
|
},
|
|
81800
|
-
"description": "
|
|
81801
|
-
"inheritedFrom": {
|
|
81802
|
-
"name": "SbbActionBaseElement",
|
|
81803
|
-
"module": "core/base-elements/action-base-element.js"
|
|
81804
|
-
}
|
|
81805
|
-
},
|
|
81806
|
-
{
|
|
81807
|
-
"kind": "field",
|
|
81808
|
-
"name": "size",
|
|
81809
|
-
"type": {
|
|
81810
|
-
"text": "SbbLinkSize"
|
|
81811
|
-
},
|
|
81812
|
-
"privacy": "public",
|
|
81813
|
-
"description": "Text size, the link should get in the non-button variation.\nWith inline variant, the text size adapts to where it is used.",
|
|
81814
|
-
"default": "'s' / 'xs' (lean)",
|
|
81815
|
-
"attribute": "size",
|
|
81816
|
-
"reflects": true,
|
|
81878
|
+
"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",
|
|
81817
81879
|
"inheritedFrom": {
|
|
81818
|
-
"name": "
|
|
81819
|
-
"module": "
|
|
81880
|
+
"name": "SbbFormAssociatedMixin",
|
|
81881
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
81820
81882
|
}
|
|
81821
81883
|
},
|
|
81822
81884
|
{
|
|
81823
|
-
"kind": "
|
|
81824
|
-
"name": "
|
|
81825
|
-
"
|
|
81826
|
-
|
|
81885
|
+
"kind": "method",
|
|
81886
|
+
"name": "formState",
|
|
81887
|
+
"privacy": "protected",
|
|
81888
|
+
"return": {
|
|
81889
|
+
"type": {
|
|
81890
|
+
"text": "FormRestoreState"
|
|
81891
|
+
}
|
|
81827
81892
|
},
|
|
81828
|
-
"privacy": "public",
|
|
81829
|
-
"default": "''",
|
|
81830
|
-
"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.",
|
|
81831
|
-
"attribute": "icon-name",
|
|
81832
81893
|
"inheritedFrom": {
|
|
81833
|
-
"name": "
|
|
81834
|
-
"module": "
|
|
81894
|
+
"name": "SbbFormAssociatedMixin",
|
|
81895
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
81835
81896
|
}
|
|
81836
81897
|
},
|
|
81837
81898
|
{
|
|
81838
81899
|
"kind": "method",
|
|
81839
|
-
"name": "
|
|
81900
|
+
"name": "setValidityFlag",
|
|
81840
81901
|
"privacy": "protected",
|
|
81841
81902
|
"return": {
|
|
81842
81903
|
"type": {
|
|
81843
|
-
"text": "
|
|
81904
|
+
"text": "void"
|
|
81844
81905
|
}
|
|
81845
81906
|
},
|
|
81846
81907
|
"parameters": [
|
|
81847
81908
|
{
|
|
81848
|
-
"name": "
|
|
81849
|
-
"
|
|
81909
|
+
"name": "flag",
|
|
81910
|
+
"type": {
|
|
81911
|
+
"text": "T"
|
|
81912
|
+
}
|
|
81913
|
+
},
|
|
81914
|
+
{
|
|
81915
|
+
"name": "message",
|
|
81850
81916
|
"type": {
|
|
81851
81917
|
"text": "string"
|
|
81852
81918
|
}
|
|
81919
|
+
},
|
|
81920
|
+
{
|
|
81921
|
+
"name": "flagValue",
|
|
81922
|
+
"optional": true,
|
|
81923
|
+
"type": {
|
|
81924
|
+
"text": "ValidityStateFlags[T]"
|
|
81925
|
+
}
|
|
81853
81926
|
}
|
|
81854
81927
|
],
|
|
81928
|
+
"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).",
|
|
81855
81929
|
"inheritedFrom": {
|
|
81856
|
-
"name": "
|
|
81857
|
-
"module": "
|
|
81930
|
+
"name": "SbbFormAssociatedMixin",
|
|
81931
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
81858
81932
|
}
|
|
81859
81933
|
},
|
|
81860
81934
|
{
|
|
81861
81935
|
"kind": "method",
|
|
81862
|
-
"name": "
|
|
81936
|
+
"name": "removeValidityFlag",
|
|
81863
81937
|
"privacy": "protected",
|
|
81864
81938
|
"return": {
|
|
81865
81939
|
"type": {
|
|
81866
|
-
"text": "
|
|
81940
|
+
"text": "void"
|
|
81867
81941
|
}
|
|
81868
81942
|
},
|
|
81943
|
+
"parameters": [
|
|
81944
|
+
{
|
|
81945
|
+
"name": "flag",
|
|
81946
|
+
"type": {
|
|
81947
|
+
"text": "T"
|
|
81948
|
+
}
|
|
81949
|
+
}
|
|
81950
|
+
],
|
|
81951
|
+
"description": "Removes the validity state flag entry and updates validity state.",
|
|
81869
81952
|
"inheritedFrom": {
|
|
81870
|
-
"name": "
|
|
81871
|
-
"module": "
|
|
81953
|
+
"name": "SbbFormAssociatedMixin",
|
|
81954
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
81872
81955
|
}
|
|
81873
81956
|
},
|
|
81874
81957
|
{
|
|
81875
81958
|
"kind": "method",
|
|
81876
|
-
"name": "
|
|
81877
|
-
"privacy": "
|
|
81959
|
+
"name": "validate",
|
|
81960
|
+
"privacy": "protected",
|
|
81878
81961
|
"return": {
|
|
81879
81962
|
"type": {
|
|
81880
|
-
"text": "
|
|
81963
|
+
"text": "void"
|
|
81881
81964
|
}
|
|
81882
81965
|
},
|
|
81966
|
+
"description": "To be called whenever the current element needs to be validated.",
|
|
81883
81967
|
"inheritedFrom": {
|
|
81884
|
-
"name": "
|
|
81885
|
-
"module": "
|
|
81886
|
-
}
|
|
81887
|
-
},
|
|
81888
|
-
{
|
|
81889
|
-
"kind": "field",
|
|
81890
|
-
"name": "disabledInteractive",
|
|
81891
|
-
"type": {
|
|
81892
|
-
"text": "boolean"
|
|
81893
|
-
},
|
|
81894
|
-
"privacy": "public",
|
|
81895
|
-
"default": "false",
|
|
81896
|
-
"description": "Whether the button should be aria-disabled but stay interactive.",
|
|
81897
|
-
"attribute": "disabled-interactive",
|
|
81898
|
-
"reflects": true,
|
|
81899
|
-
"inheritedFrom": {
|
|
81900
|
-
"name": "SbbDisabledInteractiveMixin",
|
|
81901
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
81902
|
-
}
|
|
81903
|
-
},
|
|
81904
|
-
{
|
|
81905
|
-
"kind": "field",
|
|
81906
|
-
"name": "disabled",
|
|
81907
|
-
"privacy": "public",
|
|
81908
|
-
"description": "Whether the component is disabled.",
|
|
81909
|
-
"default": "false",
|
|
81910
|
-
"type": {
|
|
81911
|
-
"text": "boolean"
|
|
81912
|
-
},
|
|
81913
|
-
"attribute": "disabled",
|
|
81914
|
-
"reflects": true,
|
|
81915
|
-
"inheritedFrom": {
|
|
81916
|
-
"name": "SbbDisabledMixin",
|
|
81917
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
81918
|
-
}
|
|
81919
|
-
},
|
|
81920
|
-
{
|
|
81921
|
-
"kind": "field",
|
|
81922
|
-
"name": "#disabled",
|
|
81923
|
-
"privacy": "private",
|
|
81924
|
-
"type": {
|
|
81925
|
-
"text": "boolean"
|
|
81926
|
-
},
|
|
81927
|
-
"default": "false",
|
|
81928
|
-
"inheritedFrom": {
|
|
81929
|
-
"name": "SbbDisabledMixin",
|
|
81930
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
81968
|
+
"name": "SbbFormAssociatedMixin",
|
|
81969
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
81931
81970
|
}
|
|
81932
81971
|
},
|
|
81933
81972
|
{
|
|
81934
81973
|
"kind": "method",
|
|
81935
|
-
"name": "
|
|
81974
|
+
"name": "shouldValidate",
|
|
81936
81975
|
"privacy": "protected",
|
|
81937
81976
|
"return": {
|
|
81938
81977
|
"type": {
|
|
81939
81978
|
"text": "boolean"
|
|
81940
81979
|
}
|
|
81941
81980
|
},
|
|
81942
|
-
"
|
|
81981
|
+
"parameters": [
|
|
81982
|
+
{
|
|
81983
|
+
"name": "name",
|
|
81984
|
+
"type": {
|
|
81985
|
+
"text": "PropertyKey | undefined"
|
|
81986
|
+
}
|
|
81987
|
+
}
|
|
81988
|
+
],
|
|
81989
|
+
"description": "Whether validation should be run on a property change with the given name.",
|
|
81943
81990
|
"inheritedFrom": {
|
|
81944
|
-
"name": "
|
|
81945
|
-
"module": "core/mixins/
|
|
81991
|
+
"name": "SbbFormAssociatedMixin",
|
|
81992
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
81946
81993
|
}
|
|
81947
81994
|
},
|
|
81948
81995
|
{
|
|
81949
|
-
"kind": "
|
|
81950
|
-
"name": "
|
|
81951
|
-
"type": {
|
|
81952
|
-
"text": "array"
|
|
81953
|
-
},
|
|
81996
|
+
"kind": "method",
|
|
81997
|
+
"name": "_setInternalValidity",
|
|
81954
81998
|
"privacy": "private",
|
|
81955
|
-
"
|
|
81956
|
-
|
|
81999
|
+
"return": {
|
|
82000
|
+
"type": {
|
|
82001
|
+
"text": "void"
|
|
82002
|
+
}
|
|
82003
|
+
},
|
|
81957
82004
|
"inheritedFrom": {
|
|
81958
|
-
"name": "
|
|
81959
|
-
"module": "core/
|
|
82005
|
+
"name": "SbbFormAssociatedMixin",
|
|
82006
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
81960
82007
|
}
|
|
81961
82008
|
},
|
|
81962
82009
|
{
|
|
81963
82010
|
"kind": "field",
|
|
81964
|
-
"name": "
|
|
82011
|
+
"name": "role",
|
|
81965
82012
|
"type": {
|
|
81966
|
-
"text": "
|
|
82013
|
+
"text": "ElementInternals['role']"
|
|
81967
82014
|
},
|
|
81968
82015
|
"privacy": "public",
|
|
82016
|
+
"static": true,
|
|
82017
|
+
"readonly": true,
|
|
82018
|
+
"default": "'button'",
|
|
81969
82019
|
"inheritedFrom": {
|
|
81970
|
-
"name": "
|
|
82020
|
+
"name": "SbbButtonLikeBaseElement",
|
|
81971
82021
|
"module": "core/base-elements/button-base-element.js"
|
|
81972
|
-
}
|
|
81973
|
-
"default": "''",
|
|
81974
|
-
"description": "Value of the form element.",
|
|
81975
|
-
"attribute": "value"
|
|
82022
|
+
}
|
|
81976
82023
|
},
|
|
81977
82024
|
{
|
|
81978
82025
|
"kind": "field",
|
|
81979
|
-
"name": "
|
|
81980
|
-
"privacy": "
|
|
81981
|
-
"description": "
|
|
81982
|
-
"
|
|
81983
|
-
|
|
81984
|
-
|
|
81985
|
-
|
|
81986
|
-
|
|
82026
|
+
"name": "_preventScrollOnSpaceKeydown",
|
|
82027
|
+
"privacy": "private",
|
|
82028
|
+
"description": "Prevents scrolling from pressing Space, when the event target is an action element.\nAlso sets active state.",
|
|
82029
|
+
"parameters": [
|
|
82030
|
+
{
|
|
82031
|
+
"description": "The origin event.",
|
|
82032
|
+
"name": "event"
|
|
82033
|
+
}
|
|
82034
|
+
],
|
|
81987
82035
|
"inheritedFrom": {
|
|
81988
|
-
"name": "
|
|
82036
|
+
"name": "SbbButtonLikeBaseElement",
|
|
81989
82037
|
"module": "core/base-elements/button-base-element.js"
|
|
81990
82038
|
}
|
|
81991
82039
|
},
|
|
81992
82040
|
{
|
|
81993
82041
|
"kind": "field",
|
|
81994
|
-
"name": "
|
|
81995
|
-
"
|
|
81996
|
-
"text": "HTMLFormElement | null"
|
|
81997
|
-
},
|
|
81998
|
-
"privacy": "public",
|
|
81999
|
-
"description": "The `<form>` element to associate the button with.",
|
|
82042
|
+
"name": "_removeActiveMarker",
|
|
82043
|
+
"privacy": "private",
|
|
82000
82044
|
"inheritedFrom": {
|
|
82001
|
-
"name": "
|
|
82045
|
+
"name": "SbbButtonLikeBaseElement",
|
|
82002
82046
|
"module": "core/base-elements/button-base-element.js"
|
|
82003
|
-
}
|
|
82004
|
-
"attribute": "form"
|
|
82047
|
+
}
|
|
82005
82048
|
},
|
|
82006
82049
|
{
|
|
82007
82050
|
"kind": "field",
|
|
82008
|
-
"name": "
|
|
82009
|
-
"type": {
|
|
82010
|
-
"text": "string"
|
|
82011
|
-
},
|
|
82051
|
+
"name": "_dispatchClickEventOnSpaceKeyup",
|
|
82012
82052
|
"privacy": "private",
|
|
82013
|
-
"
|
|
82053
|
+
"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.",
|
|
82054
|
+
"parameters": [
|
|
82055
|
+
{
|
|
82056
|
+
"description": "The origin event.",
|
|
82057
|
+
"name": "event"
|
|
82058
|
+
}
|
|
82059
|
+
],
|
|
82014
82060
|
"inheritedFrom": {
|
|
82015
|
-
"name": "
|
|
82061
|
+
"name": "SbbButtonLikeBaseElement",
|
|
82016
82062
|
"module": "core/base-elements/button-base-element.js"
|
|
82017
82063
|
}
|
|
82018
82064
|
},
|
|
82019
82065
|
{
|
|
82020
82066
|
"kind": "field",
|
|
82021
|
-
"name": "
|
|
82067
|
+
"name": "_dispatchClickEvent",
|
|
82022
82068
|
"privacy": "private",
|
|
82023
82069
|
"inheritedFrom": {
|
|
82024
|
-
"name": "
|
|
82070
|
+
"name": "SbbButtonLikeBaseElement",
|
|
82025
82071
|
"module": "core/base-elements/button-base-element.js"
|
|
82026
82072
|
}
|
|
82027
82073
|
},
|
|
82028
82074
|
{
|
|
82029
82075
|
"kind": "method",
|
|
82030
|
-
"name": "
|
|
82031
|
-
"privacy": "
|
|
82076
|
+
"name": "toggleState",
|
|
82077
|
+
"privacy": "protected",
|
|
82032
82078
|
"return": {
|
|
82033
82079
|
"type": {
|
|
82034
82080
|
"text": "void"
|
|
@@ -82036,390 +82082,344 @@
|
|
|
82036
82082
|
},
|
|
82037
82083
|
"parameters": [
|
|
82038
82084
|
{
|
|
82039
|
-
"name": "
|
|
82085
|
+
"name": "value",
|
|
82040
82086
|
"type": {
|
|
82041
|
-
"text": "
|
|
82087
|
+
"text": "string"
|
|
82088
|
+
}
|
|
82089
|
+
},
|
|
82090
|
+
{
|
|
82091
|
+
"name": "force",
|
|
82092
|
+
"optional": true,
|
|
82093
|
+
"type": {
|
|
82094
|
+
"text": "boolean"
|
|
82042
82095
|
}
|
|
82043
82096
|
}
|
|
82044
82097
|
],
|
|
82045
82098
|
"inheritedFrom": {
|
|
82046
|
-
"name": "
|
|
82047
|
-
"module": "core/base-elements/
|
|
82048
|
-
}
|
|
82049
|
-
},
|
|
82050
|
-
{
|
|
82051
|
-
"kind": "field",
|
|
82052
|
-
"name": "_formKeyDown",
|
|
82053
|
-
"privacy": "private",
|
|
82054
|
-
"inheritedFrom": {
|
|
82055
|
-
"name": "SbbButtonBaseElement",
|
|
82056
|
-
"module": "core/base-elements/button-base-element.js"
|
|
82099
|
+
"name": "SbbActionBaseElement",
|
|
82100
|
+
"module": "core/base-elements/action-base-element.js"
|
|
82057
82101
|
}
|
|
82058
82102
|
},
|
|
82059
82103
|
{
|
|
82060
82104
|
"kind": "field",
|
|
82061
|
-
"name": "
|
|
82105
|
+
"name": "maybeDisabled",
|
|
82062
82106
|
"type": {
|
|
82063
|
-
"text": "boolean"
|
|
82107
|
+
"text": "boolean | undefined"
|
|
82064
82108
|
},
|
|
82065
|
-
"privacy": "
|
|
82066
|
-
"
|
|
82067
|
-
"default": "true",
|
|
82109
|
+
"privacy": "protected",
|
|
82110
|
+
"readonly": true,
|
|
82068
82111
|
"inheritedFrom": {
|
|
82069
|
-
"name": "
|
|
82070
|
-
"module": "core/
|
|
82112
|
+
"name": "SbbActionBaseElement",
|
|
82113
|
+
"module": "core/base-elements/action-base-element.js"
|
|
82071
82114
|
}
|
|
82072
82115
|
},
|
|
82073
82116
|
{
|
|
82074
82117
|
"kind": "field",
|
|
82075
|
-
"name": "
|
|
82076
|
-
"privacy": "public",
|
|
82077
|
-
"description": "Name of the form element. Will be read from name attribute.",
|
|
82118
|
+
"name": "maybeDisabledInteractive",
|
|
82078
82119
|
"type": {
|
|
82079
|
-
"text": "
|
|
82120
|
+
"text": "boolean | undefined"
|
|
82080
82121
|
},
|
|
82081
|
-
"
|
|
82122
|
+
"privacy": "protected",
|
|
82123
|
+
"readonly": true,
|
|
82082
82124
|
"inheritedFrom": {
|
|
82083
|
-
"name": "
|
|
82084
|
-
"module": "core/
|
|
82125
|
+
"name": "SbbActionBaseElement",
|
|
82126
|
+
"module": "core/base-elements/action-base-element.js"
|
|
82085
82127
|
}
|
|
82086
82128
|
},
|
|
82087
82129
|
{
|
|
82088
|
-
"kind": "
|
|
82089
|
-
"name": "
|
|
82090
|
-
"
|
|
82091
|
-
|
|
82130
|
+
"kind": "method",
|
|
82131
|
+
"name": "setupBaseEventHandlers",
|
|
82132
|
+
"privacy": "protected",
|
|
82133
|
+
"return": {
|
|
82134
|
+
"type": {
|
|
82135
|
+
"text": "void"
|
|
82136
|
+
}
|
|
82092
82137
|
},
|
|
82093
|
-
"privacy": "public",
|
|
82094
|
-
"description": "Returns the ValidityState object for this element.",
|
|
82095
|
-
"readonly": true,
|
|
82096
82138
|
"inheritedFrom": {
|
|
82097
|
-
"name": "
|
|
82098
|
-
"module": "core/
|
|
82139
|
+
"name": "SbbActionBaseElement",
|
|
82140
|
+
"module": "core/base-elements/action-base-element.js"
|
|
82099
82141
|
}
|
|
82142
|
+
}
|
|
82143
|
+
]
|
|
82144
|
+
}
|
|
82145
|
+
],
|
|
82146
|
+
"exports": [
|
|
82147
|
+
{
|
|
82148
|
+
"kind": "js",
|
|
82149
|
+
"name": "SbbBlockLinkButtonElement",
|
|
82150
|
+
"declaration": {
|
|
82151
|
+
"name": "SbbBlockLinkButtonElement",
|
|
82152
|
+
"module": "link/block-link-button/block-link-button.component.js"
|
|
82153
|
+
}
|
|
82154
|
+
},
|
|
82155
|
+
{
|
|
82156
|
+
"kind": "custom-element-definition",
|
|
82157
|
+
"name": "sbb-block-link-button",
|
|
82158
|
+
"declaration": {
|
|
82159
|
+
"name": "SbbBlockLinkButtonElement",
|
|
82160
|
+
"module": "link/block-link-button/block-link-button.component.js"
|
|
82161
|
+
}
|
|
82162
|
+
}
|
|
82163
|
+
]
|
|
82164
|
+
},
|
|
82165
|
+
{
|
|
82166
|
+
"kind": "javascript-module",
|
|
82167
|
+
"path": "link/block-link-static/block-link-static.component.js",
|
|
82168
|
+
"declarations": [
|
|
82169
|
+
{
|
|
82170
|
+
"kind": "class",
|
|
82171
|
+
"description": "It displays a static link enhanced with the SBB Design.",
|
|
82172
|
+
"name": "SbbBlockLinkStaticElement",
|
|
82173
|
+
"slots": [
|
|
82174
|
+
{
|
|
82175
|
+
"description": "Use the unnamed slot to add content to the `sbb-block-link-static`.",
|
|
82176
|
+
"name": ""
|
|
82100
82177
|
},
|
|
82101
82178
|
{
|
|
82102
|
-
"
|
|
82103
|
-
"name": "
|
|
82104
|
-
|
|
82105
|
-
|
|
82106
|
-
|
|
82107
|
-
|
|
82108
|
-
"
|
|
82109
|
-
"
|
|
82110
|
-
"inheritedFrom": {
|
|
82111
|
-
"name": "SbbFormAssociatedMixin",
|
|
82112
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
82113
|
-
}
|
|
82179
|
+
"description": "Slot used to display the icon, if one is set.",
|
|
82180
|
+
"name": "icon"
|
|
82181
|
+
}
|
|
82182
|
+
],
|
|
82183
|
+
"mixins": [
|
|
82184
|
+
{
|
|
82185
|
+
"name": "SbbBlockLinkCommonElementMixin",
|
|
82186
|
+
"module": "link/common.js"
|
|
82114
82187
|
},
|
|
82115
82188
|
{
|
|
82116
|
-
"
|
|
82117
|
-
"
|
|
82189
|
+
"name": "SbbDisabledMixin",
|
|
82190
|
+
"module": "core/mixins.js"
|
|
82191
|
+
}
|
|
82192
|
+
],
|
|
82193
|
+
"superclass": {
|
|
82194
|
+
"name": "SbbActionBaseElement",
|
|
82195
|
+
"module": "core/base-elements.js"
|
|
82196
|
+
},
|
|
82197
|
+
"tagName": "sbb-block-link-static",
|
|
82198
|
+
"customElement": true,
|
|
82199
|
+
"attributes": [
|
|
82200
|
+
{
|
|
82201
|
+
"name": "icon-placement",
|
|
82118
82202
|
"type": {
|
|
82119
|
-
"text": "
|
|
82203
|
+
"text": "SbbIconPlacement"
|
|
82120
82204
|
},
|
|
82121
|
-
"
|
|
82122
|
-
"description": "
|
|
82123
|
-
"
|
|
82124
|
-
"inheritedFrom": {
|
|
82125
|
-
"name": "SbbFormAssociatedMixin",
|
|
82126
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
82127
|
-
}
|
|
82128
|
-
},
|
|
82129
|
-
{
|
|
82130
|
-
"kind": "field",
|
|
82131
|
-
"name": "_validityStates",
|
|
82132
|
-
"privacy": "private",
|
|
82133
|
-
"default": "new Map< keyof ValidityStateFlags, { flagValue: unknown; message: string } >()",
|
|
82205
|
+
"default": "'start'",
|
|
82206
|
+
"description": "Moves the icon to the end of the component if set to true.",
|
|
82207
|
+
"fieldName": "iconPlacement",
|
|
82134
82208
|
"inheritedFrom": {
|
|
82135
|
-
"name": "
|
|
82136
|
-
"module": "
|
|
82209
|
+
"name": "SbbBlockLinkCommonElementMixin",
|
|
82210
|
+
"module": "link/common/block-link-common.js"
|
|
82137
82211
|
}
|
|
82138
82212
|
},
|
|
82139
82213
|
{
|
|
82140
|
-
"
|
|
82141
|
-
"name": "formDisabled",
|
|
82214
|
+
"name": "size",
|
|
82142
82215
|
"type": {
|
|
82143
|
-
"text": "
|
|
82216
|
+
"text": "SbbLinkSize"
|
|
82144
82217
|
},
|
|
82145
|
-
"
|
|
82146
|
-
"default": "
|
|
82147
|
-
"
|
|
82218
|
+
"description": "Text size, the link should get in the non-button variation.\nWith inline variant, the text size adapts to where it is used.",
|
|
82219
|
+
"default": "'s' / 'xs' (lean)",
|
|
82220
|
+
"fieldName": "size",
|
|
82148
82221
|
"inheritedFrom": {
|
|
82149
|
-
"name": "
|
|
82150
|
-
"module": "
|
|
82222
|
+
"name": "SbbLinkCommonElementMixin",
|
|
82223
|
+
"module": "link/common/link-common.js"
|
|
82151
82224
|
}
|
|
82152
82225
|
},
|
|
82153
82226
|
{
|
|
82154
|
-
"
|
|
82155
|
-
"
|
|
82156
|
-
|
|
82157
|
-
"return": {
|
|
82158
|
-
"type": {
|
|
82159
|
-
"text": "boolean"
|
|
82160
|
-
}
|
|
82227
|
+
"name": "icon-name",
|
|
82228
|
+
"type": {
|
|
82229
|
+
"text": "string"
|
|
82161
82230
|
},
|
|
82162
|
-
"
|
|
82231
|
+
"default": "''",
|
|
82232
|
+
"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.",
|
|
82233
|
+
"fieldName": "iconName",
|
|
82163
82234
|
"inheritedFrom": {
|
|
82164
|
-
"name": "
|
|
82165
|
-
"module": "
|
|
82235
|
+
"name": "SbbIconNameMixin",
|
|
82236
|
+
"module": "icon/icon-name-mixin.js"
|
|
82166
82237
|
}
|
|
82167
82238
|
},
|
|
82168
82239
|
{
|
|
82169
|
-
"
|
|
82170
|
-
"
|
|
82171
|
-
"
|
|
82172
|
-
"
|
|
82173
|
-
"
|
|
82174
|
-
"text": "boolean"
|
|
82175
|
-
}
|
|
82240
|
+
"name": "disabled",
|
|
82241
|
+
"description": "Whether the component is disabled.",
|
|
82242
|
+
"default": "false",
|
|
82243
|
+
"type": {
|
|
82244
|
+
"text": "boolean"
|
|
82176
82245
|
},
|
|
82177
|
-
"
|
|
82246
|
+
"fieldName": "disabled",
|
|
82178
82247
|
"inheritedFrom": {
|
|
82179
|
-
"name": "
|
|
82180
|
-
"module": "core/mixins/
|
|
82181
|
-
}
|
|
82182
|
-
}
|
|
82183
|
-
|
|
82184
|
-
|
|
82185
|
-
|
|
82186
|
-
"
|
|
82187
|
-
"
|
|
82188
|
-
|
|
82189
|
-
|
|
82190
|
-
}
|
|
82248
|
+
"name": "SbbDisabledMixin",
|
|
82249
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
82250
|
+
}
|
|
82251
|
+
}
|
|
82252
|
+
],
|
|
82253
|
+
"members": [
|
|
82254
|
+
{
|
|
82255
|
+
"kind": "field",
|
|
82256
|
+
"name": "styles",
|
|
82257
|
+
"type": {
|
|
82258
|
+
"text": "CSSResultGroup"
|
|
82191
82259
|
},
|
|
82192
|
-
"
|
|
82193
|
-
|
|
82194
|
-
|
|
82195
|
-
"type": {
|
|
82196
|
-
"text": "string"
|
|
82197
|
-
}
|
|
82198
|
-
}
|
|
82199
|
-
],
|
|
82200
|
-
"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.",
|
|
82260
|
+
"privacy": "public",
|
|
82261
|
+
"static": true,
|
|
82262
|
+
"default": "[boxSizingStyles, style, blockStyle]",
|
|
82201
82263
|
"inheritedFrom": {
|
|
82202
|
-
"name": "
|
|
82203
|
-
"module": "
|
|
82264
|
+
"name": "SbbLinkCommonElementMixin",
|
|
82265
|
+
"module": "link/common/link-common.js"
|
|
82204
82266
|
}
|
|
82205
82267
|
},
|
|
82206
82268
|
{
|
|
82207
|
-
"kind": "
|
|
82208
|
-
"name": "
|
|
82209
|
-
"
|
|
82210
|
-
|
|
82211
|
-
"type": {
|
|
82212
|
-
"text": "boolean"
|
|
82213
|
-
}
|
|
82269
|
+
"kind": "field",
|
|
82270
|
+
"name": "iconPlacement",
|
|
82271
|
+
"type": {
|
|
82272
|
+
"text": "SbbIconPlacement"
|
|
82214
82273
|
},
|
|
82274
|
+
"privacy": "public",
|
|
82275
|
+
"default": "'start'",
|
|
82276
|
+
"description": "Moves the icon to the end of the component if set to true.",
|
|
82277
|
+
"attribute": "icon-placement",
|
|
82278
|
+
"reflects": true,
|
|
82215
82279
|
"inheritedFrom": {
|
|
82216
|
-
"name": "
|
|
82217
|
-
"module": "
|
|
82280
|
+
"name": "SbbBlockLinkCommonElementMixin",
|
|
82281
|
+
"module": "link/common/block-link-common.js"
|
|
82218
82282
|
}
|
|
82219
82283
|
},
|
|
82220
82284
|
{
|
|
82221
82285
|
"kind": "method",
|
|
82222
|
-
"name": "
|
|
82286
|
+
"name": "renderTemplate",
|
|
82223
82287
|
"privacy": "protected",
|
|
82224
82288
|
"return": {
|
|
82225
82289
|
"type": {
|
|
82226
|
-
"text": "
|
|
82290
|
+
"text": "TemplateResult"
|
|
82227
82291
|
}
|
|
82228
82292
|
},
|
|
82229
|
-
"description": "
|
|
82293
|
+
"description": "Override this method to render the component template.",
|
|
82230
82294
|
"inheritedFrom": {
|
|
82231
|
-
"name": "
|
|
82232
|
-
"module": "core/
|
|
82295
|
+
"name": "SbbActionBaseElement",
|
|
82296
|
+
"module": "core/base-elements/action-base-element.js"
|
|
82233
82297
|
}
|
|
82234
82298
|
},
|
|
82235
82299
|
{
|
|
82236
|
-
"kind": "
|
|
82237
|
-
"name": "
|
|
82238
|
-
"
|
|
82239
|
-
|
|
82240
|
-
"type": {
|
|
82241
|
-
"text": "FormRestoreState"
|
|
82242
|
-
}
|
|
82300
|
+
"kind": "field",
|
|
82301
|
+
"name": "size",
|
|
82302
|
+
"type": {
|
|
82303
|
+
"text": "SbbLinkSize"
|
|
82243
82304
|
},
|
|
82305
|
+
"privacy": "public",
|
|
82306
|
+
"description": "Text size, the link should get in the non-button variation.\nWith inline variant, the text size adapts to where it is used.",
|
|
82307
|
+
"default": "'s' / 'xs' (lean)",
|
|
82308
|
+
"attribute": "size",
|
|
82309
|
+
"reflects": true,
|
|
82244
82310
|
"inheritedFrom": {
|
|
82245
|
-
"name": "
|
|
82246
|
-
"module": "
|
|
82311
|
+
"name": "SbbLinkCommonElementMixin",
|
|
82312
|
+
"module": "link/common/link-common.js"
|
|
82247
82313
|
}
|
|
82248
82314
|
},
|
|
82249
82315
|
{
|
|
82250
|
-
"kind": "
|
|
82251
|
-
"name": "
|
|
82252
|
-
"
|
|
82253
|
-
|
|
82254
|
-
"type": {
|
|
82255
|
-
"text": "void"
|
|
82256
|
-
}
|
|
82316
|
+
"kind": "field",
|
|
82317
|
+
"name": "iconName",
|
|
82318
|
+
"type": {
|
|
82319
|
+
"text": "string"
|
|
82257
82320
|
},
|
|
82258
|
-
"
|
|
82259
|
-
|
|
82260
|
-
|
|
82261
|
-
|
|
82262
|
-
"text": "T"
|
|
82263
|
-
}
|
|
82264
|
-
},
|
|
82265
|
-
{
|
|
82266
|
-
"name": "message",
|
|
82267
|
-
"type": {
|
|
82268
|
-
"text": "string"
|
|
82269
|
-
}
|
|
82270
|
-
},
|
|
82271
|
-
{
|
|
82272
|
-
"name": "flagValue",
|
|
82273
|
-
"optional": true,
|
|
82274
|
-
"type": {
|
|
82275
|
-
"text": "ValidityStateFlags[T]"
|
|
82276
|
-
}
|
|
82277
|
-
}
|
|
82278
|
-
],
|
|
82279
|
-
"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).",
|
|
82321
|
+
"privacy": "public",
|
|
82322
|
+
"default": "''",
|
|
82323
|
+
"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.",
|
|
82324
|
+
"attribute": "icon-name",
|
|
82280
82325
|
"inheritedFrom": {
|
|
82281
|
-
"name": "
|
|
82282
|
-
"module": "
|
|
82326
|
+
"name": "SbbIconNameMixin",
|
|
82327
|
+
"module": "icon/icon-name-mixin.js"
|
|
82283
82328
|
}
|
|
82284
82329
|
},
|
|
82285
82330
|
{
|
|
82286
82331
|
"kind": "method",
|
|
82287
|
-
"name": "
|
|
82332
|
+
"name": "renderIconSlot",
|
|
82288
82333
|
"privacy": "protected",
|
|
82289
82334
|
"return": {
|
|
82290
82335
|
"type": {
|
|
82291
|
-
"text": "
|
|
82336
|
+
"text": "TemplateResult"
|
|
82292
82337
|
}
|
|
82293
82338
|
},
|
|
82294
82339
|
"parameters": [
|
|
82295
82340
|
{
|
|
82296
|
-
"name": "
|
|
82341
|
+
"name": "classname",
|
|
82342
|
+
"optional": true,
|
|
82297
82343
|
"type": {
|
|
82298
|
-
"text": "
|
|
82344
|
+
"text": "string"
|
|
82299
82345
|
}
|
|
82300
82346
|
}
|
|
82301
82347
|
],
|
|
82302
|
-
"description": "Removes the validity state flag entry and updates validity state.",
|
|
82303
|
-
"inheritedFrom": {
|
|
82304
|
-
"name": "SbbFormAssociatedMixin",
|
|
82305
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
82306
|
-
}
|
|
82307
|
-
},
|
|
82308
|
-
{
|
|
82309
|
-
"kind": "method",
|
|
82310
|
-
"name": "validate",
|
|
82311
|
-
"privacy": "protected",
|
|
82312
|
-
"return": {
|
|
82313
|
-
"type": {
|
|
82314
|
-
"text": "void"
|
|
82315
|
-
}
|
|
82316
|
-
},
|
|
82317
|
-
"description": "To be called whenever the current element needs to be validated.",
|
|
82318
82348
|
"inheritedFrom": {
|
|
82319
|
-
"name": "
|
|
82320
|
-
"module": "
|
|
82349
|
+
"name": "SbbIconNameMixin",
|
|
82350
|
+
"module": "icon/icon-name-mixin.js"
|
|
82321
82351
|
}
|
|
82322
82352
|
},
|
|
82323
82353
|
{
|
|
82324
82354
|
"kind": "method",
|
|
82325
|
-
"name": "
|
|
82355
|
+
"name": "renderIconName",
|
|
82326
82356
|
"privacy": "protected",
|
|
82327
82357
|
"return": {
|
|
82328
82358
|
"type": {
|
|
82329
|
-
"text": "
|
|
82359
|
+
"text": "string"
|
|
82330
82360
|
}
|
|
82331
82361
|
},
|
|
82332
|
-
"parameters": [
|
|
82333
|
-
{
|
|
82334
|
-
"name": "name",
|
|
82335
|
-
"type": {
|
|
82336
|
-
"text": "PropertyKey | undefined"
|
|
82337
|
-
}
|
|
82338
|
-
}
|
|
82339
|
-
],
|
|
82340
|
-
"description": "Whether validation should be run on a property change with the given name.",
|
|
82341
82362
|
"inheritedFrom": {
|
|
82342
|
-
"name": "
|
|
82343
|
-
"module": "
|
|
82363
|
+
"name": "SbbIconNameMixin",
|
|
82364
|
+
"module": "icon/icon-name-mixin.js"
|
|
82344
82365
|
}
|
|
82345
82366
|
},
|
|
82346
82367
|
{
|
|
82347
82368
|
"kind": "method",
|
|
82348
|
-
"name": "
|
|
82369
|
+
"name": "_renderIconName",
|
|
82349
82370
|
"privacy": "private",
|
|
82350
82371
|
"return": {
|
|
82351
82372
|
"type": {
|
|
82352
|
-
"text": "
|
|
82373
|
+
"text": "string"
|
|
82353
82374
|
}
|
|
82354
82375
|
},
|
|
82355
82376
|
"inheritedFrom": {
|
|
82356
|
-
"name": "
|
|
82357
|
-
"module": "
|
|
82377
|
+
"name": "SbbIconNameMixin",
|
|
82378
|
+
"module": "icon/icon-name-mixin.js"
|
|
82358
82379
|
}
|
|
82359
82380
|
},
|
|
82360
82381
|
{
|
|
82361
82382
|
"kind": "field",
|
|
82362
|
-
"name": "
|
|
82383
|
+
"name": "disabled",
|
|
82384
|
+
"privacy": "public",
|
|
82385
|
+
"description": "Whether the component is disabled.",
|
|
82386
|
+
"default": "false",
|
|
82363
82387
|
"type": {
|
|
82364
|
-
"text": "
|
|
82388
|
+
"text": "boolean"
|
|
82365
82389
|
},
|
|
82366
|
-
"
|
|
82367
|
-
"
|
|
82368
|
-
"readonly": true,
|
|
82369
|
-
"default": "'button'",
|
|
82370
|
-
"inheritedFrom": {
|
|
82371
|
-
"name": "SbbButtonLikeBaseElement",
|
|
82372
|
-
"module": "core/base-elements/button-base-element.js"
|
|
82373
|
-
}
|
|
82374
|
-
},
|
|
82375
|
-
{
|
|
82376
|
-
"kind": "field",
|
|
82377
|
-
"name": "_preventScrollOnSpaceKeydown",
|
|
82378
|
-
"privacy": "private",
|
|
82379
|
-
"description": "Prevents scrolling from pressing Space, when the event target is an action element.\nAlso sets active state.",
|
|
82380
|
-
"parameters": [
|
|
82381
|
-
{
|
|
82382
|
-
"description": "The origin event.",
|
|
82383
|
-
"name": "event"
|
|
82384
|
-
}
|
|
82385
|
-
],
|
|
82390
|
+
"attribute": "disabled",
|
|
82391
|
+
"reflects": true,
|
|
82386
82392
|
"inheritedFrom": {
|
|
82387
|
-
"name": "
|
|
82388
|
-
"module": "core/
|
|
82393
|
+
"name": "SbbDisabledMixin",
|
|
82394
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
82389
82395
|
}
|
|
82390
82396
|
},
|
|
82391
82397
|
{
|
|
82392
82398
|
"kind": "field",
|
|
82393
|
-
"name": "
|
|
82399
|
+
"name": "#disabled",
|
|
82394
82400
|
"privacy": "private",
|
|
82401
|
+
"type": {
|
|
82402
|
+
"text": "boolean"
|
|
82403
|
+
},
|
|
82404
|
+
"default": "false",
|
|
82395
82405
|
"inheritedFrom": {
|
|
82396
|
-
"name": "
|
|
82397
|
-
"module": "core/
|
|
82406
|
+
"name": "SbbDisabledMixin",
|
|
82407
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
82398
82408
|
}
|
|
82399
82409
|
},
|
|
82400
82410
|
{
|
|
82401
|
-
"kind": "
|
|
82402
|
-
"name": "
|
|
82403
|
-
"privacy": "
|
|
82404
|
-
"
|
|
82405
|
-
|
|
82406
|
-
|
|
82407
|
-
"description": "The origin event.",
|
|
82408
|
-
"name": "event"
|
|
82411
|
+
"kind": "method",
|
|
82412
|
+
"name": "isDisabledExternally",
|
|
82413
|
+
"privacy": "protected",
|
|
82414
|
+
"return": {
|
|
82415
|
+
"type": {
|
|
82416
|
+
"text": "boolean"
|
|
82409
82417
|
}
|
|
82410
|
-
|
|
82411
|
-
"
|
|
82412
|
-
"name": "SbbButtonLikeBaseElement",
|
|
82413
|
-
"module": "core/base-elements/button-base-element.js"
|
|
82414
|
-
}
|
|
82415
|
-
},
|
|
82416
|
-
{
|
|
82417
|
-
"kind": "field",
|
|
82418
|
-
"name": "_dispatchClickEvent",
|
|
82419
|
-
"privacy": "private",
|
|
82418
|
+
},
|
|
82419
|
+
"description": "Will be used as 'or' check to the current disabled state.\nCan e.g. be used to read disabled state of a group.",
|
|
82420
82420
|
"inheritedFrom": {
|
|
82421
|
-
"name": "
|
|
82422
|
-
"module": "core/
|
|
82421
|
+
"name": "SbbDisabledMixin",
|
|
82422
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
82423
82423
|
}
|
|
82424
82424
|
},
|
|
82425
82425
|
{
|
|
@@ -82497,18 +82497,18 @@
|
|
|
82497
82497
|
"exports": [
|
|
82498
82498
|
{
|
|
82499
82499
|
"kind": "js",
|
|
82500
|
-
"name": "
|
|
82500
|
+
"name": "SbbBlockLinkStaticElement",
|
|
82501
82501
|
"declaration": {
|
|
82502
|
-
"name": "
|
|
82503
|
-
"module": "link/block-link-
|
|
82502
|
+
"name": "SbbBlockLinkStaticElement",
|
|
82503
|
+
"module": "link/block-link-static/block-link-static.component.js"
|
|
82504
82504
|
}
|
|
82505
82505
|
},
|
|
82506
82506
|
{
|
|
82507
82507
|
"kind": "custom-element-definition",
|
|
82508
|
-
"name": "sbb-block-link-
|
|
82508
|
+
"name": "sbb-block-link-static",
|
|
82509
82509
|
"declaration": {
|
|
82510
|
-
"name": "
|
|
82511
|
-
"module": "link/block-link-
|
|
82510
|
+
"name": "SbbBlockLinkStaticElement",
|
|
82511
|
+
"module": "link/block-link-static/block-link-static.component.js"
|
|
82512
82512
|
}
|
|
82513
82513
|
}
|
|
82514
82514
|
]
|