@sbb-esta/lyne-elements-dev 5.0.0-next-dev.1776240735 → 5.0.0-next-dev.1776257807
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 +1738 -1535
- package/development/autocomplete/autocomplete-base-element.d.ts +6 -0
- package/development/autocomplete/autocomplete-base-element.d.ts.map +1 -1
- package/development/autocomplete/autocomplete-base-element.js +1 -1
- package/development/autocomplete/autocomplete.component.js +1 -1
- package/development/autocomplete-base-element-qUzJFqLU.js +678 -0
- package/development/autocomplete.js +1 -1
- package/development/autocomplete.pure.js +1 -1
- package/development/datepicker/common/datepicker-button.d.ts +6 -0
- package/development/datepicker/common/datepicker-button.d.ts.map +1 -1
- package/development/datepicker/common/datepicker-button.js +1 -1
- package/development/datepicker/datepicker/datepicker.component.d.ts +3 -0
- package/development/datepicker/datepicker/datepicker.component.d.ts.map +1 -1
- package/development/datepicker/datepicker/datepicker.component.js +1 -1
- package/development/datepicker-button-BI5R118p.js +166 -0
- package/development/datepicker.component-AKlc7SAO.js +214 -0
- package/development/datepicker.js +2 -2
- package/development/datepicker.pure.js +2 -2
- package/development/form-field/form-field-clear/form-field-clear.component.d.ts +3 -0
- package/development/form-field/form-field-clear/form-field-clear.component.d.ts.map +1 -1
- package/development/form-field/form-field-clear/form-field-clear.component.js +4 -1
- package/development/timetable-form/timetable-form-swap-button/timetable-form-swap-button.component.d.ts +3 -0
- package/development/timetable-form/timetable-form-swap-button/timetable-form-swap-button.component.d.ts.map +1 -1
- package/development/timetable-form/timetable-form-swap-button/timetable-form-swap-button.component.js +1 -1
- package/development/{timetable-form-swap-button.component-BGziVzB8.js → timetable-form-swap-button.component-_EUhzoww.js} +4 -1
- package/development/timetable-form.js +1 -1
- package/development/timetable-form.pure.js +1 -1
- package/development/toggle/toggle-option/toggle-option.component.d.ts +1 -0
- package/development/toggle/toggle-option/toggle-option.component.d.ts.map +1 -1
- package/development/toggle/toggle-option/toggle-option.component.js +1 -1
- package/development/{toggle-option.component-D8YWH_D5.js → toggle-option.component-DscH6K3b.js} +2 -1
- package/development/toggle.js +1 -1
- package/development/toggle.pure.js +1 -1
- package/package.json +2 -2
- package/development/autocomplete-base-element-B5n-eCMO.js +0 -672
- package/development/datepicker-button-CIvIHG8k.js +0 -160
- package/development/datepicker.component-BEiMYEc-.js +0 -211
package/custom-elements.json
CHANGED
|
@@ -4623,7 +4623,7 @@
|
|
|
4623
4623
|
"declarations": [
|
|
4624
4624
|
{
|
|
4625
4625
|
"kind": "class",
|
|
4626
|
-
"description": "",
|
|
4626
|
+
"description": "Base class for autocomplete components.",
|
|
4627
4627
|
"name": "SbbAutocompleteBaseElement",
|
|
4628
4628
|
"members": [
|
|
4629
4629
|
{
|
|
@@ -5707,6 +5707,66 @@
|
|
|
5707
5707
|
}
|
|
5708
5708
|
}
|
|
5709
5709
|
],
|
|
5710
|
+
"events": [
|
|
5711
|
+
{
|
|
5712
|
+
"type": {
|
|
5713
|
+
"text": "Event"
|
|
5714
|
+
},
|
|
5715
|
+
"description": "The change event is fired on the autocomplete's trigger when the user modifies the element's value. Unlike the input event, the change event is not necessarily fired for each alteration to an element's value.",
|
|
5716
|
+
"name": "change"
|
|
5717
|
+
},
|
|
5718
|
+
{
|
|
5719
|
+
"type": {
|
|
5720
|
+
"text": "InputEvent"
|
|
5721
|
+
},
|
|
5722
|
+
"description": "The input event fires on the autocomplete's trigger when the value has been changed as a direct result of a user action.",
|
|
5723
|
+
"name": "input"
|
|
5724
|
+
},
|
|
5725
|
+
{
|
|
5726
|
+
"name": "beforeopen",
|
|
5727
|
+
"type": {
|
|
5728
|
+
"text": "Event"
|
|
5729
|
+
},
|
|
5730
|
+
"description": "Emits whenever the component starts the opening transition. Can be canceled.",
|
|
5731
|
+
"inheritedFrom": {
|
|
5732
|
+
"name": "SbbOpenCloseBaseElement",
|
|
5733
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
5734
|
+
}
|
|
5735
|
+
},
|
|
5736
|
+
{
|
|
5737
|
+
"name": "open",
|
|
5738
|
+
"type": {
|
|
5739
|
+
"text": "Event"
|
|
5740
|
+
},
|
|
5741
|
+
"description": "Emits whenever the component is opened.",
|
|
5742
|
+
"inheritedFrom": {
|
|
5743
|
+
"name": "SbbOpenCloseBaseElement",
|
|
5744
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
5745
|
+
}
|
|
5746
|
+
},
|
|
5747
|
+
{
|
|
5748
|
+
"name": "beforeclose",
|
|
5749
|
+
"type": {
|
|
5750
|
+
"text": "Event"
|
|
5751
|
+
},
|
|
5752
|
+
"description": "Emits whenever the component begins the closing transition. Can be canceled.",
|
|
5753
|
+
"inheritedFrom": {
|
|
5754
|
+
"name": "SbbOpenCloseBaseElement",
|
|
5755
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
5756
|
+
}
|
|
5757
|
+
},
|
|
5758
|
+
{
|
|
5759
|
+
"name": "close",
|
|
5760
|
+
"type": {
|
|
5761
|
+
"text": "Event"
|
|
5762
|
+
},
|
|
5763
|
+
"description": "Emits whenever the component is closed.",
|
|
5764
|
+
"inheritedFrom": {
|
|
5765
|
+
"name": "SbbOpenCloseBaseElement",
|
|
5766
|
+
"module": "core/base-elements/open-close-base-element.js"
|
|
5767
|
+
}
|
|
5768
|
+
}
|
|
5769
|
+
],
|
|
5710
5770
|
"attributes": [
|
|
5711
5771
|
{
|
|
5712
5772
|
"name": "origin",
|
|
@@ -5813,53 +5873,7 @@
|
|
|
5813
5873
|
"name": "SbbOpenCloseBaseElement",
|
|
5814
5874
|
"module": "core.js"
|
|
5815
5875
|
},
|
|
5816
|
-
"classGenerics": "T = string"
|
|
5817
|
-
"events": [
|
|
5818
|
-
{
|
|
5819
|
-
"name": "beforeopen",
|
|
5820
|
-
"type": {
|
|
5821
|
-
"text": "Event"
|
|
5822
|
-
},
|
|
5823
|
-
"description": "Emits whenever the component starts the opening transition. Can be canceled.",
|
|
5824
|
-
"inheritedFrom": {
|
|
5825
|
-
"name": "SbbOpenCloseBaseElement",
|
|
5826
|
-
"module": "core/base-elements/open-close-base-element.js"
|
|
5827
|
-
}
|
|
5828
|
-
},
|
|
5829
|
-
{
|
|
5830
|
-
"name": "open",
|
|
5831
|
-
"type": {
|
|
5832
|
-
"text": "Event"
|
|
5833
|
-
},
|
|
5834
|
-
"description": "Emits whenever the component is opened.",
|
|
5835
|
-
"inheritedFrom": {
|
|
5836
|
-
"name": "SbbOpenCloseBaseElement",
|
|
5837
|
-
"module": "core/base-elements/open-close-base-element.js"
|
|
5838
|
-
}
|
|
5839
|
-
},
|
|
5840
|
-
{
|
|
5841
|
-
"name": "beforeclose",
|
|
5842
|
-
"type": {
|
|
5843
|
-
"text": "Event"
|
|
5844
|
-
},
|
|
5845
|
-
"description": "Emits whenever the component begins the closing transition. Can be canceled.",
|
|
5846
|
-
"inheritedFrom": {
|
|
5847
|
-
"name": "SbbOpenCloseBaseElement",
|
|
5848
|
-
"module": "core/base-elements/open-close-base-element.js"
|
|
5849
|
-
}
|
|
5850
|
-
},
|
|
5851
|
-
{
|
|
5852
|
-
"name": "close",
|
|
5853
|
-
"type": {
|
|
5854
|
-
"text": "Event"
|
|
5855
|
-
},
|
|
5856
|
-
"description": "Emits whenever the component is closed.",
|
|
5857
|
-
"inheritedFrom": {
|
|
5858
|
-
"name": "SbbOpenCloseBaseElement",
|
|
5859
|
-
"module": "core/base-elements/open-close-base-element.js"
|
|
5860
|
-
}
|
|
5861
|
-
}
|
|
5862
|
-
]
|
|
5876
|
+
"classGenerics": "T = string"
|
|
5863
5877
|
}
|
|
5864
5878
|
],
|
|
5865
5879
|
"exports": [
|
|
@@ -7344,6 +7358,28 @@
|
|
|
7344
7358
|
}
|
|
7345
7359
|
],
|
|
7346
7360
|
"events": [
|
|
7361
|
+
{
|
|
7362
|
+
"type": {
|
|
7363
|
+
"text": "Event"
|
|
7364
|
+
},
|
|
7365
|
+
"description": "The change event is fired on the autocomplete's trigger when the user modifies the element's value. Unlike the input event, the change event is not necessarily fired for each alteration to an element's value.",
|
|
7366
|
+
"name": "change",
|
|
7367
|
+
"inheritedFrom": {
|
|
7368
|
+
"name": "SbbAutocompleteBaseElement",
|
|
7369
|
+
"module": "autocomplete/autocomplete-base-element.js"
|
|
7370
|
+
}
|
|
7371
|
+
},
|
|
7372
|
+
{
|
|
7373
|
+
"type": {
|
|
7374
|
+
"text": "InputEvent"
|
|
7375
|
+
},
|
|
7376
|
+
"description": "The input event fires on the autocomplete's trigger when the value has been changed as a direct result of a user action.",
|
|
7377
|
+
"name": "input",
|
|
7378
|
+
"inheritedFrom": {
|
|
7379
|
+
"name": "SbbAutocompleteBaseElement",
|
|
7380
|
+
"module": "autocomplete/autocomplete-base-element.js"
|
|
7381
|
+
}
|
|
7382
|
+
},
|
|
7347
7383
|
{
|
|
7348
7384
|
"name": "beforeopen",
|
|
7349
7385
|
"type": {
|
|
@@ -43652,12 +43688,12 @@
|
|
|
43652
43688
|
},
|
|
43653
43689
|
{
|
|
43654
43690
|
"kind": "javascript-module",
|
|
43655
|
-
"path": "button/accent-button-
|
|
43691
|
+
"path": "button/accent-button-static/accent-button-static.component.js",
|
|
43656
43692
|
"declarations": [
|
|
43657
43693
|
{
|
|
43658
43694
|
"kind": "class",
|
|
43659
|
-
"description": "It displays a button enhanced with the SBB Design in the 'accent' variant
|
|
43660
|
-
"name": "
|
|
43695
|
+
"description": "It displays a static button enhanced with the SBB Design in the 'accent' variant.",
|
|
43696
|
+
"name": "SbbAccentButtonStaticElement",
|
|
43661
43697
|
"cssProperties": [
|
|
43662
43698
|
{
|
|
43663
43699
|
"description": "The delay before the loading animation starts, when setting the button into loading state.",
|
|
@@ -43667,7 +43703,7 @@
|
|
|
43667
43703
|
],
|
|
43668
43704
|
"slots": [
|
|
43669
43705
|
{
|
|
43670
|
-
"description": "Use the unnamed slot to add content to the accent-button-
|
|
43706
|
+
"description": "Use the unnamed slot to add content to the accent-button-static.",
|
|
43671
43707
|
"name": ""
|
|
43672
43708
|
},
|
|
43673
43709
|
{
|
|
@@ -43685,7 +43721,7 @@
|
|
|
43685
43721
|
"privacy": "public",
|
|
43686
43722
|
"static": true,
|
|
43687
43723
|
"readonly": true,
|
|
43688
|
-
"default": "'sbb-accent-button-
|
|
43724
|
+
"default": "'sbb-accent-button-static'",
|
|
43689
43725
|
"inheritedFrom": {
|
|
43690
43726
|
"name": "SbbElement",
|
|
43691
43727
|
"module": "core/base-elements/element.js"
|
|
@@ -43834,22 +43870,6 @@
|
|
|
43834
43870
|
"module": "icon/icon-name-mixin.js"
|
|
43835
43871
|
}
|
|
43836
43872
|
},
|
|
43837
|
-
{
|
|
43838
|
-
"kind": "field",
|
|
43839
|
-
"name": "disabledInteractive",
|
|
43840
|
-
"type": {
|
|
43841
|
-
"text": "boolean"
|
|
43842
|
-
},
|
|
43843
|
-
"privacy": "public",
|
|
43844
|
-
"default": "false",
|
|
43845
|
-
"description": "Whether the button should be aria-disabled but stay interactive.",
|
|
43846
|
-
"attribute": "disabled-interactive",
|
|
43847
|
-
"reflects": true,
|
|
43848
|
-
"inheritedFrom": {
|
|
43849
|
-
"name": "SbbDisabledInteractiveMixin",
|
|
43850
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
43851
|
-
}
|
|
43852
|
-
},
|
|
43853
43873
|
{
|
|
43854
43874
|
"kind": "field",
|
|
43855
43875
|
"name": "disabled",
|
|
@@ -43894,155 +43914,6 @@
|
|
|
43894
43914
|
"module": "core/mixins/disabled-mixin.js"
|
|
43895
43915
|
}
|
|
43896
43916
|
},
|
|
43897
|
-
{
|
|
43898
|
-
"kind": "field",
|
|
43899
|
-
"name": "href",
|
|
43900
|
-
"type": {
|
|
43901
|
-
"text": "string"
|
|
43902
|
-
},
|
|
43903
|
-
"privacy": "public",
|
|
43904
|
-
"default": "''",
|
|
43905
|
-
"description": "The href value you want to link to.",
|
|
43906
|
-
"attribute": "href",
|
|
43907
|
-
"reflects": true,
|
|
43908
|
-
"inheritedFrom": {
|
|
43909
|
-
"name": "SbbLinkBaseElement",
|
|
43910
|
-
"module": "core/base-elements/link-base-element.js"
|
|
43911
|
-
}
|
|
43912
|
-
},
|
|
43913
|
-
{
|
|
43914
|
-
"kind": "field",
|
|
43915
|
-
"name": "target",
|
|
43916
|
-
"type": {
|
|
43917
|
-
"text": "LinkTargetType | string"
|
|
43918
|
-
},
|
|
43919
|
-
"privacy": "public",
|
|
43920
|
-
"default": "''",
|
|
43921
|
-
"description": "Where to display the linked URL.",
|
|
43922
|
-
"attribute": "target",
|
|
43923
|
-
"reflects": true,
|
|
43924
|
-
"inheritedFrom": {
|
|
43925
|
-
"name": "SbbLinkBaseElement",
|
|
43926
|
-
"module": "core/base-elements/link-base-element.js"
|
|
43927
|
-
}
|
|
43928
|
-
},
|
|
43929
|
-
{
|
|
43930
|
-
"kind": "field",
|
|
43931
|
-
"name": "rel",
|
|
43932
|
-
"type": {
|
|
43933
|
-
"text": "string"
|
|
43934
|
-
},
|
|
43935
|
-
"privacy": "public",
|
|
43936
|
-
"default": "''",
|
|
43937
|
-
"description": "The relationship of the linked URL as space-separated link types.",
|
|
43938
|
-
"attribute": "rel",
|
|
43939
|
-
"reflects": true,
|
|
43940
|
-
"inheritedFrom": {
|
|
43941
|
-
"name": "SbbLinkBaseElement",
|
|
43942
|
-
"module": "core/base-elements/link-base-element.js"
|
|
43943
|
-
}
|
|
43944
|
-
},
|
|
43945
|
-
{
|
|
43946
|
-
"kind": "field",
|
|
43947
|
-
"name": "download",
|
|
43948
|
-
"type": {
|
|
43949
|
-
"text": "boolean"
|
|
43950
|
-
},
|
|
43951
|
-
"privacy": "public",
|
|
43952
|
-
"default": "false",
|
|
43953
|
-
"description": "Whether the browser will show the download dialog on click.",
|
|
43954
|
-
"attribute": "download",
|
|
43955
|
-
"reflects": true,
|
|
43956
|
-
"inheritedFrom": {
|
|
43957
|
-
"name": "SbbLinkBaseElement",
|
|
43958
|
-
"module": "core/base-elements/link-base-element.js"
|
|
43959
|
-
}
|
|
43960
|
-
},
|
|
43961
|
-
{
|
|
43962
|
-
"kind": "field",
|
|
43963
|
-
"name": "accessibilityLabel",
|
|
43964
|
-
"type": {
|
|
43965
|
-
"text": "string"
|
|
43966
|
-
},
|
|
43967
|
-
"privacy": "public",
|
|
43968
|
-
"default": "''",
|
|
43969
|
-
"description": "This will be forwarded as aria-label to the inner anchor element.",
|
|
43970
|
-
"attribute": "accessibility-label",
|
|
43971
|
-
"inheritedFrom": {
|
|
43972
|
-
"name": "SbbLinkBaseElement",
|
|
43973
|
-
"module": "core/base-elements/link-base-element.js"
|
|
43974
|
-
}
|
|
43975
|
-
},
|
|
43976
|
-
{
|
|
43977
|
-
"kind": "field",
|
|
43978
|
-
"name": "accessibilityCurrent",
|
|
43979
|
-
"type": {
|
|
43980
|
-
"text": "string"
|
|
43981
|
-
},
|
|
43982
|
-
"privacy": "public",
|
|
43983
|
-
"default": "''",
|
|
43984
|
-
"description": "This will be forwarded as aria-current to the inner anchor element.",
|
|
43985
|
-
"attribute": "accessibility-current",
|
|
43986
|
-
"inheritedFrom": {
|
|
43987
|
-
"name": "SbbLinkBaseElement",
|
|
43988
|
-
"module": "core/base-elements/link-base-element.js"
|
|
43989
|
-
}
|
|
43990
|
-
},
|
|
43991
|
-
{
|
|
43992
|
-
"kind": "field",
|
|
43993
|
-
"name": "language",
|
|
43994
|
-
"privacy": "protected",
|
|
43995
|
-
"default": "new SbbLanguageController(this)",
|
|
43996
|
-
"inheritedFrom": {
|
|
43997
|
-
"name": "SbbLinkBaseElement",
|
|
43998
|
-
"module": "core/base-elements/link-base-element.js"
|
|
43999
|
-
}
|
|
44000
|
-
},
|
|
44001
|
-
{
|
|
44002
|
-
"kind": "field",
|
|
44003
|
-
"name": "anchorRole",
|
|
44004
|
-
"type": {
|
|
44005
|
-
"text": "string | null"
|
|
44006
|
-
},
|
|
44007
|
-
"privacy": "protected",
|
|
44008
|
-
"readonly": true,
|
|
44009
|
-
"default": "null",
|
|
44010
|
-
"inheritedFrom": {
|
|
44011
|
-
"name": "SbbLinkBaseElement",
|
|
44012
|
-
"module": "core/base-elements/link-base-element.js"
|
|
44013
|
-
}
|
|
44014
|
-
},
|
|
44015
|
-
{
|
|
44016
|
-
"kind": "field",
|
|
44017
|
-
"name": "_evaluateRelAttribute",
|
|
44018
|
-
"privacy": "private",
|
|
44019
|
-
"inheritedFrom": {
|
|
44020
|
-
"name": "SbbLinkBaseElement",
|
|
44021
|
-
"module": "core/base-elements/link-base-element.js"
|
|
44022
|
-
}
|
|
44023
|
-
},
|
|
44024
|
-
{
|
|
44025
|
-
"kind": "method",
|
|
44026
|
-
"name": "renderLink",
|
|
44027
|
-
"privacy": "protected",
|
|
44028
|
-
"return": {
|
|
44029
|
-
"type": {
|
|
44030
|
-
"text": "TemplateResult"
|
|
44031
|
-
}
|
|
44032
|
-
},
|
|
44033
|
-
"parameters": [
|
|
44034
|
-
{
|
|
44035
|
-
"name": "renderContent",
|
|
44036
|
-
"type": {
|
|
44037
|
-
"text": "TemplateResult"
|
|
44038
|
-
}
|
|
44039
|
-
}
|
|
44040
|
-
],
|
|
44041
|
-
"inheritedFrom": {
|
|
44042
|
-
"name": "SbbLinkBaseElement",
|
|
44043
|
-
"module": "core/base-elements/link-base-element.js"
|
|
44044
|
-
}
|
|
44045
|
-
},
|
|
44046
43917
|
{
|
|
44047
43918
|
"kind": "field",
|
|
44048
43919
|
"name": "maybeDisabled",
|
|
@@ -44335,20 +44206,16 @@
|
|
|
44335
44206
|
"name": "SbbButtonCommonElementMixin",
|
|
44336
44207
|
"module": "button/common/button-common.js"
|
|
44337
44208
|
},
|
|
44338
|
-
{
|
|
44339
|
-
"name": "SbbDisabledInteractiveMixin",
|
|
44340
|
-
"module": "core.js"
|
|
44341
|
-
},
|
|
44342
44209
|
{
|
|
44343
44210
|
"name": "SbbDisabledMixin",
|
|
44344
44211
|
"module": "core.js"
|
|
44345
44212
|
}
|
|
44346
44213
|
],
|
|
44347
44214
|
"superclass": {
|
|
44348
|
-
"name": "
|
|
44215
|
+
"name": "SbbActionBaseElement",
|
|
44349
44216
|
"module": "core.js"
|
|
44350
44217
|
},
|
|
44351
|
-
"tagName": "sbb-accent-button-
|
|
44218
|
+
"tagName": "sbb-accent-button-static",
|
|
44352
44219
|
"customElement": true,
|
|
44353
44220
|
"attributes": [
|
|
44354
44221
|
{
|
|
@@ -44403,19 +44270,6 @@
|
|
|
44403
44270
|
"module": "icon/icon-name-mixin.js"
|
|
44404
44271
|
}
|
|
44405
44272
|
},
|
|
44406
|
-
{
|
|
44407
|
-
"name": "disabled-interactive",
|
|
44408
|
-
"type": {
|
|
44409
|
-
"text": "boolean"
|
|
44410
|
-
},
|
|
44411
|
-
"default": "false",
|
|
44412
|
-
"description": "Whether the button should be aria-disabled but stay interactive.",
|
|
44413
|
-
"fieldName": "disabledInteractive",
|
|
44414
|
-
"inheritedFrom": {
|
|
44415
|
-
"name": "SbbDisabledInteractiveMixin",
|
|
44416
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
44417
|
-
}
|
|
44418
|
-
},
|
|
44419
44273
|
{
|
|
44420
44274
|
"name": "disabled",
|
|
44421
44275
|
"description": "Whether the component is disabled.",
|
|
@@ -44428,84 +44282,6 @@
|
|
|
44428
44282
|
"name": "SbbDisabledMixin",
|
|
44429
44283
|
"module": "core/mixins/disabled-mixin.js"
|
|
44430
44284
|
}
|
|
44431
|
-
},
|
|
44432
|
-
{
|
|
44433
|
-
"name": "href",
|
|
44434
|
-
"type": {
|
|
44435
|
-
"text": "string"
|
|
44436
|
-
},
|
|
44437
|
-
"default": "''",
|
|
44438
|
-
"description": "The href value you want to link to.",
|
|
44439
|
-
"fieldName": "href",
|
|
44440
|
-
"inheritedFrom": {
|
|
44441
|
-
"name": "SbbLinkBaseElement",
|
|
44442
|
-
"module": "core/base-elements/link-base-element.js"
|
|
44443
|
-
}
|
|
44444
|
-
},
|
|
44445
|
-
{
|
|
44446
|
-
"name": "target",
|
|
44447
|
-
"type": {
|
|
44448
|
-
"text": "LinkTargetType | string"
|
|
44449
|
-
},
|
|
44450
|
-
"default": "''",
|
|
44451
|
-
"description": "Where to display the linked URL.",
|
|
44452
|
-
"fieldName": "target",
|
|
44453
|
-
"inheritedFrom": {
|
|
44454
|
-
"name": "SbbLinkBaseElement",
|
|
44455
|
-
"module": "core/base-elements/link-base-element.js"
|
|
44456
|
-
}
|
|
44457
|
-
},
|
|
44458
|
-
{
|
|
44459
|
-
"name": "rel",
|
|
44460
|
-
"type": {
|
|
44461
|
-
"text": "string"
|
|
44462
|
-
},
|
|
44463
|
-
"default": "''",
|
|
44464
|
-
"description": "The relationship of the linked URL as space-separated link types.",
|
|
44465
|
-
"fieldName": "rel",
|
|
44466
|
-
"inheritedFrom": {
|
|
44467
|
-
"name": "SbbLinkBaseElement",
|
|
44468
|
-
"module": "core/base-elements/link-base-element.js"
|
|
44469
|
-
}
|
|
44470
|
-
},
|
|
44471
|
-
{
|
|
44472
|
-
"name": "download",
|
|
44473
|
-
"type": {
|
|
44474
|
-
"text": "boolean"
|
|
44475
|
-
},
|
|
44476
|
-
"default": "false",
|
|
44477
|
-
"description": "Whether the browser will show the download dialog on click.",
|
|
44478
|
-
"fieldName": "download",
|
|
44479
|
-
"inheritedFrom": {
|
|
44480
|
-
"name": "SbbLinkBaseElement",
|
|
44481
|
-
"module": "core/base-elements/link-base-element.js"
|
|
44482
|
-
}
|
|
44483
|
-
},
|
|
44484
|
-
{
|
|
44485
|
-
"name": "accessibility-label",
|
|
44486
|
-
"type": {
|
|
44487
|
-
"text": "string"
|
|
44488
|
-
},
|
|
44489
|
-
"default": "''",
|
|
44490
|
-
"description": "This will be forwarded as aria-label to the inner anchor element.",
|
|
44491
|
-
"fieldName": "accessibilityLabel",
|
|
44492
|
-
"inheritedFrom": {
|
|
44493
|
-
"name": "SbbLinkBaseElement",
|
|
44494
|
-
"module": "core/base-elements/link-base-element.js"
|
|
44495
|
-
}
|
|
44496
|
-
},
|
|
44497
|
-
{
|
|
44498
|
-
"name": "accessibility-current",
|
|
44499
|
-
"type": {
|
|
44500
|
-
"text": "string"
|
|
44501
|
-
},
|
|
44502
|
-
"default": "''",
|
|
44503
|
-
"description": "This will be forwarded as aria-current to the inner anchor element.",
|
|
44504
|
-
"fieldName": "accessibilityCurrent",
|
|
44505
|
-
"inheritedFrom": {
|
|
44506
|
-
"name": "SbbLinkBaseElement",
|
|
44507
|
-
"module": "core/base-elements/link-base-element.js"
|
|
44508
|
-
}
|
|
44509
44285
|
}
|
|
44510
44286
|
]
|
|
44511
44287
|
}
|
|
@@ -44513,22 +44289,22 @@
|
|
|
44513
44289
|
"exports": [
|
|
44514
44290
|
{
|
|
44515
44291
|
"kind": "js",
|
|
44516
|
-
"name": "
|
|
44292
|
+
"name": "SbbAccentButtonStaticElement",
|
|
44517
44293
|
"declaration": {
|
|
44518
|
-
"name": "
|
|
44519
|
-
"module": "button/accent-button-
|
|
44294
|
+
"name": "SbbAccentButtonStaticElement",
|
|
44295
|
+
"module": "button/accent-button-static/accent-button-static.component.js"
|
|
44520
44296
|
}
|
|
44521
44297
|
}
|
|
44522
44298
|
]
|
|
44523
44299
|
},
|
|
44524
44300
|
{
|
|
44525
44301
|
"kind": "javascript-module",
|
|
44526
|
-
"path": "button/accent-button-
|
|
44302
|
+
"path": "button/accent-button-link/accent-button-link.component.js",
|
|
44527
44303
|
"declarations": [
|
|
44528
44304
|
{
|
|
44529
44305
|
"kind": "class",
|
|
44530
|
-
"description": "It displays a
|
|
44531
|
-
"name": "
|
|
44306
|
+
"description": "It displays a button enhanced with the SBB Design in the 'accent' variant, which will behave as a link.",
|
|
44307
|
+
"name": "SbbAccentButtonLinkElement",
|
|
44532
44308
|
"cssProperties": [
|
|
44533
44309
|
{
|
|
44534
44310
|
"description": "The delay before the loading animation starts, when setting the button into loading state.",
|
|
@@ -44538,7 +44314,7 @@
|
|
|
44538
44314
|
],
|
|
44539
44315
|
"slots": [
|
|
44540
44316
|
{
|
|
44541
|
-
"description": "Use the unnamed slot to add content to the accent-button-
|
|
44317
|
+
"description": "Use the unnamed slot to add content to the accent-button-link.",
|
|
44542
44318
|
"name": ""
|
|
44543
44319
|
},
|
|
44544
44320
|
{
|
|
@@ -44556,7 +44332,7 @@
|
|
|
44556
44332
|
"privacy": "public",
|
|
44557
44333
|
"static": true,
|
|
44558
44334
|
"readonly": true,
|
|
44559
|
-
"default": "'sbb-accent-button-
|
|
44335
|
+
"default": "'sbb-accent-button-link'",
|
|
44560
44336
|
"inheritedFrom": {
|
|
44561
44337
|
"name": "SbbElement",
|
|
44562
44338
|
"module": "core/base-elements/element.js"
|
|
@@ -44705,6 +44481,22 @@
|
|
|
44705
44481
|
"module": "icon/icon-name-mixin.js"
|
|
44706
44482
|
}
|
|
44707
44483
|
},
|
|
44484
|
+
{
|
|
44485
|
+
"kind": "field",
|
|
44486
|
+
"name": "disabledInteractive",
|
|
44487
|
+
"type": {
|
|
44488
|
+
"text": "boolean"
|
|
44489
|
+
},
|
|
44490
|
+
"privacy": "public",
|
|
44491
|
+
"default": "false",
|
|
44492
|
+
"description": "Whether the button should be aria-disabled but stay interactive.",
|
|
44493
|
+
"attribute": "disabled-interactive",
|
|
44494
|
+
"reflects": true,
|
|
44495
|
+
"inheritedFrom": {
|
|
44496
|
+
"name": "SbbDisabledInteractiveMixin",
|
|
44497
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
44498
|
+
}
|
|
44499
|
+
},
|
|
44708
44500
|
{
|
|
44709
44501
|
"kind": "field",
|
|
44710
44502
|
"name": "disabled",
|
|
@@ -44749,6 +44541,155 @@
|
|
|
44749
44541
|
"module": "core/mixins/disabled-mixin.js"
|
|
44750
44542
|
}
|
|
44751
44543
|
},
|
|
44544
|
+
{
|
|
44545
|
+
"kind": "field",
|
|
44546
|
+
"name": "href",
|
|
44547
|
+
"type": {
|
|
44548
|
+
"text": "string"
|
|
44549
|
+
},
|
|
44550
|
+
"privacy": "public",
|
|
44551
|
+
"default": "''",
|
|
44552
|
+
"description": "The href value you want to link to.",
|
|
44553
|
+
"attribute": "href",
|
|
44554
|
+
"reflects": true,
|
|
44555
|
+
"inheritedFrom": {
|
|
44556
|
+
"name": "SbbLinkBaseElement",
|
|
44557
|
+
"module": "core/base-elements/link-base-element.js"
|
|
44558
|
+
}
|
|
44559
|
+
},
|
|
44560
|
+
{
|
|
44561
|
+
"kind": "field",
|
|
44562
|
+
"name": "target",
|
|
44563
|
+
"type": {
|
|
44564
|
+
"text": "LinkTargetType | string"
|
|
44565
|
+
},
|
|
44566
|
+
"privacy": "public",
|
|
44567
|
+
"default": "''",
|
|
44568
|
+
"description": "Where to display the linked URL.",
|
|
44569
|
+
"attribute": "target",
|
|
44570
|
+
"reflects": true,
|
|
44571
|
+
"inheritedFrom": {
|
|
44572
|
+
"name": "SbbLinkBaseElement",
|
|
44573
|
+
"module": "core/base-elements/link-base-element.js"
|
|
44574
|
+
}
|
|
44575
|
+
},
|
|
44576
|
+
{
|
|
44577
|
+
"kind": "field",
|
|
44578
|
+
"name": "rel",
|
|
44579
|
+
"type": {
|
|
44580
|
+
"text": "string"
|
|
44581
|
+
},
|
|
44582
|
+
"privacy": "public",
|
|
44583
|
+
"default": "''",
|
|
44584
|
+
"description": "The relationship of the linked URL as space-separated link types.",
|
|
44585
|
+
"attribute": "rel",
|
|
44586
|
+
"reflects": true,
|
|
44587
|
+
"inheritedFrom": {
|
|
44588
|
+
"name": "SbbLinkBaseElement",
|
|
44589
|
+
"module": "core/base-elements/link-base-element.js"
|
|
44590
|
+
}
|
|
44591
|
+
},
|
|
44592
|
+
{
|
|
44593
|
+
"kind": "field",
|
|
44594
|
+
"name": "download",
|
|
44595
|
+
"type": {
|
|
44596
|
+
"text": "boolean"
|
|
44597
|
+
},
|
|
44598
|
+
"privacy": "public",
|
|
44599
|
+
"default": "false",
|
|
44600
|
+
"description": "Whether the browser will show the download dialog on click.",
|
|
44601
|
+
"attribute": "download",
|
|
44602
|
+
"reflects": true,
|
|
44603
|
+
"inheritedFrom": {
|
|
44604
|
+
"name": "SbbLinkBaseElement",
|
|
44605
|
+
"module": "core/base-elements/link-base-element.js"
|
|
44606
|
+
}
|
|
44607
|
+
},
|
|
44608
|
+
{
|
|
44609
|
+
"kind": "field",
|
|
44610
|
+
"name": "accessibilityLabel",
|
|
44611
|
+
"type": {
|
|
44612
|
+
"text": "string"
|
|
44613
|
+
},
|
|
44614
|
+
"privacy": "public",
|
|
44615
|
+
"default": "''",
|
|
44616
|
+
"description": "This will be forwarded as aria-label to the inner anchor element.",
|
|
44617
|
+
"attribute": "accessibility-label",
|
|
44618
|
+
"inheritedFrom": {
|
|
44619
|
+
"name": "SbbLinkBaseElement",
|
|
44620
|
+
"module": "core/base-elements/link-base-element.js"
|
|
44621
|
+
}
|
|
44622
|
+
},
|
|
44623
|
+
{
|
|
44624
|
+
"kind": "field",
|
|
44625
|
+
"name": "accessibilityCurrent",
|
|
44626
|
+
"type": {
|
|
44627
|
+
"text": "string"
|
|
44628
|
+
},
|
|
44629
|
+
"privacy": "public",
|
|
44630
|
+
"default": "''",
|
|
44631
|
+
"description": "This will be forwarded as aria-current to the inner anchor element.",
|
|
44632
|
+
"attribute": "accessibility-current",
|
|
44633
|
+
"inheritedFrom": {
|
|
44634
|
+
"name": "SbbLinkBaseElement",
|
|
44635
|
+
"module": "core/base-elements/link-base-element.js"
|
|
44636
|
+
}
|
|
44637
|
+
},
|
|
44638
|
+
{
|
|
44639
|
+
"kind": "field",
|
|
44640
|
+
"name": "language",
|
|
44641
|
+
"privacy": "protected",
|
|
44642
|
+
"default": "new SbbLanguageController(this)",
|
|
44643
|
+
"inheritedFrom": {
|
|
44644
|
+
"name": "SbbLinkBaseElement",
|
|
44645
|
+
"module": "core/base-elements/link-base-element.js"
|
|
44646
|
+
}
|
|
44647
|
+
},
|
|
44648
|
+
{
|
|
44649
|
+
"kind": "field",
|
|
44650
|
+
"name": "anchorRole",
|
|
44651
|
+
"type": {
|
|
44652
|
+
"text": "string | null"
|
|
44653
|
+
},
|
|
44654
|
+
"privacy": "protected",
|
|
44655
|
+
"readonly": true,
|
|
44656
|
+
"default": "null",
|
|
44657
|
+
"inheritedFrom": {
|
|
44658
|
+
"name": "SbbLinkBaseElement",
|
|
44659
|
+
"module": "core/base-elements/link-base-element.js"
|
|
44660
|
+
}
|
|
44661
|
+
},
|
|
44662
|
+
{
|
|
44663
|
+
"kind": "field",
|
|
44664
|
+
"name": "_evaluateRelAttribute",
|
|
44665
|
+
"privacy": "private",
|
|
44666
|
+
"inheritedFrom": {
|
|
44667
|
+
"name": "SbbLinkBaseElement",
|
|
44668
|
+
"module": "core/base-elements/link-base-element.js"
|
|
44669
|
+
}
|
|
44670
|
+
},
|
|
44671
|
+
{
|
|
44672
|
+
"kind": "method",
|
|
44673
|
+
"name": "renderLink",
|
|
44674
|
+
"privacy": "protected",
|
|
44675
|
+
"return": {
|
|
44676
|
+
"type": {
|
|
44677
|
+
"text": "TemplateResult"
|
|
44678
|
+
}
|
|
44679
|
+
},
|
|
44680
|
+
"parameters": [
|
|
44681
|
+
{
|
|
44682
|
+
"name": "renderContent",
|
|
44683
|
+
"type": {
|
|
44684
|
+
"text": "TemplateResult"
|
|
44685
|
+
}
|
|
44686
|
+
}
|
|
44687
|
+
],
|
|
44688
|
+
"inheritedFrom": {
|
|
44689
|
+
"name": "SbbLinkBaseElement",
|
|
44690
|
+
"module": "core/base-elements/link-base-element.js"
|
|
44691
|
+
}
|
|
44692
|
+
},
|
|
44752
44693
|
{
|
|
44753
44694
|
"kind": "field",
|
|
44754
44695
|
"name": "maybeDisabled",
|
|
@@ -45041,16 +44982,20 @@
|
|
|
45041
44982
|
"name": "SbbButtonCommonElementMixin",
|
|
45042
44983
|
"module": "button/common/button-common.js"
|
|
45043
44984
|
},
|
|
44985
|
+
{
|
|
44986
|
+
"name": "SbbDisabledInteractiveMixin",
|
|
44987
|
+
"module": "core.js"
|
|
44988
|
+
},
|
|
45044
44989
|
{
|
|
45045
44990
|
"name": "SbbDisabledMixin",
|
|
45046
44991
|
"module": "core.js"
|
|
45047
44992
|
}
|
|
45048
44993
|
],
|
|
45049
44994
|
"superclass": {
|
|
45050
|
-
"name": "
|
|
44995
|
+
"name": "SbbLinkBaseElement",
|
|
45051
44996
|
"module": "core.js"
|
|
45052
44997
|
},
|
|
45053
|
-
"tagName": "sbb-accent-button-
|
|
44998
|
+
"tagName": "sbb-accent-button-link",
|
|
45054
44999
|
"customElement": true,
|
|
45055
45000
|
"attributes": [
|
|
45056
45001
|
{
|
|
@@ -45105,6 +45050,19 @@
|
|
|
45105
45050
|
"module": "icon/icon-name-mixin.js"
|
|
45106
45051
|
}
|
|
45107
45052
|
},
|
|
45053
|
+
{
|
|
45054
|
+
"name": "disabled-interactive",
|
|
45055
|
+
"type": {
|
|
45056
|
+
"text": "boolean"
|
|
45057
|
+
},
|
|
45058
|
+
"default": "false",
|
|
45059
|
+
"description": "Whether the button should be aria-disabled but stay interactive.",
|
|
45060
|
+
"fieldName": "disabledInteractive",
|
|
45061
|
+
"inheritedFrom": {
|
|
45062
|
+
"name": "SbbDisabledInteractiveMixin",
|
|
45063
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
45064
|
+
}
|
|
45065
|
+
},
|
|
45108
45066
|
{
|
|
45109
45067
|
"name": "disabled",
|
|
45110
45068
|
"description": "Whether the component is disabled.",
|
|
@@ -45117,6 +45075,84 @@
|
|
|
45117
45075
|
"name": "SbbDisabledMixin",
|
|
45118
45076
|
"module": "core/mixins/disabled-mixin.js"
|
|
45119
45077
|
}
|
|
45078
|
+
},
|
|
45079
|
+
{
|
|
45080
|
+
"name": "href",
|
|
45081
|
+
"type": {
|
|
45082
|
+
"text": "string"
|
|
45083
|
+
},
|
|
45084
|
+
"default": "''",
|
|
45085
|
+
"description": "The href value you want to link to.",
|
|
45086
|
+
"fieldName": "href",
|
|
45087
|
+
"inheritedFrom": {
|
|
45088
|
+
"name": "SbbLinkBaseElement",
|
|
45089
|
+
"module": "core/base-elements/link-base-element.js"
|
|
45090
|
+
}
|
|
45091
|
+
},
|
|
45092
|
+
{
|
|
45093
|
+
"name": "target",
|
|
45094
|
+
"type": {
|
|
45095
|
+
"text": "LinkTargetType | string"
|
|
45096
|
+
},
|
|
45097
|
+
"default": "''",
|
|
45098
|
+
"description": "Where to display the linked URL.",
|
|
45099
|
+
"fieldName": "target",
|
|
45100
|
+
"inheritedFrom": {
|
|
45101
|
+
"name": "SbbLinkBaseElement",
|
|
45102
|
+
"module": "core/base-elements/link-base-element.js"
|
|
45103
|
+
}
|
|
45104
|
+
},
|
|
45105
|
+
{
|
|
45106
|
+
"name": "rel",
|
|
45107
|
+
"type": {
|
|
45108
|
+
"text": "string"
|
|
45109
|
+
},
|
|
45110
|
+
"default": "''",
|
|
45111
|
+
"description": "The relationship of the linked URL as space-separated link types.",
|
|
45112
|
+
"fieldName": "rel",
|
|
45113
|
+
"inheritedFrom": {
|
|
45114
|
+
"name": "SbbLinkBaseElement",
|
|
45115
|
+
"module": "core/base-elements/link-base-element.js"
|
|
45116
|
+
}
|
|
45117
|
+
},
|
|
45118
|
+
{
|
|
45119
|
+
"name": "download",
|
|
45120
|
+
"type": {
|
|
45121
|
+
"text": "boolean"
|
|
45122
|
+
},
|
|
45123
|
+
"default": "false",
|
|
45124
|
+
"description": "Whether the browser will show the download dialog on click.",
|
|
45125
|
+
"fieldName": "download",
|
|
45126
|
+
"inheritedFrom": {
|
|
45127
|
+
"name": "SbbLinkBaseElement",
|
|
45128
|
+
"module": "core/base-elements/link-base-element.js"
|
|
45129
|
+
}
|
|
45130
|
+
},
|
|
45131
|
+
{
|
|
45132
|
+
"name": "accessibility-label",
|
|
45133
|
+
"type": {
|
|
45134
|
+
"text": "string"
|
|
45135
|
+
},
|
|
45136
|
+
"default": "''",
|
|
45137
|
+
"description": "This will be forwarded as aria-label to the inner anchor element.",
|
|
45138
|
+
"fieldName": "accessibilityLabel",
|
|
45139
|
+
"inheritedFrom": {
|
|
45140
|
+
"name": "SbbLinkBaseElement",
|
|
45141
|
+
"module": "core/base-elements/link-base-element.js"
|
|
45142
|
+
}
|
|
45143
|
+
},
|
|
45144
|
+
{
|
|
45145
|
+
"name": "accessibility-current",
|
|
45146
|
+
"type": {
|
|
45147
|
+
"text": "string"
|
|
45148
|
+
},
|
|
45149
|
+
"default": "''",
|
|
45150
|
+
"description": "This will be forwarded as aria-current to the inner anchor element.",
|
|
45151
|
+
"fieldName": "accessibilityCurrent",
|
|
45152
|
+
"inheritedFrom": {
|
|
45153
|
+
"name": "SbbLinkBaseElement",
|
|
45154
|
+
"module": "core/base-elements/link-base-element.js"
|
|
45155
|
+
}
|
|
45120
45156
|
}
|
|
45121
45157
|
]
|
|
45122
45158
|
}
|
|
@@ -45124,10 +45160,10 @@
|
|
|
45124
45160
|
"exports": [
|
|
45125
45161
|
{
|
|
45126
45162
|
"kind": "js",
|
|
45127
|
-
"name": "
|
|
45163
|
+
"name": "SbbAccentButtonLinkElement",
|
|
45128
45164
|
"declaration": {
|
|
45129
|
-
"name": "
|
|
45130
|
-
"module": "button/accent-button-
|
|
45165
|
+
"name": "SbbAccentButtonLinkElement",
|
|
45166
|
+
"module": "button/accent-button-link/accent-button-link.component.js"
|
|
45131
45167
|
}
|
|
45132
45168
|
}
|
|
45133
45169
|
]
|
|
@@ -91234,7 +91270,7 @@
|
|
|
91234
91270
|
},
|
|
91235
91271
|
{
|
|
91236
91272
|
"kind": "class",
|
|
91237
|
-
"description": "",
|
|
91273
|
+
"description": "Base component for datepicker's buttons.",
|
|
91238
91274
|
"name": "SbbDatepickerButtonBase",
|
|
91239
91275
|
"members": [
|
|
91240
91276
|
{
|
|
@@ -92149,6 +92185,22 @@
|
|
|
92149
92185
|
}
|
|
92150
92186
|
}
|
|
92151
92187
|
],
|
|
92188
|
+
"events": [
|
|
92189
|
+
{
|
|
92190
|
+
"type": {
|
|
92191
|
+
"text": "Event"
|
|
92192
|
+
},
|
|
92193
|
+
"description": "The change event is fired on the datepicker's input when the user modifies the element's value. Unlike the input event, the change event is not necessarily fired for each alteration to an element's value.",
|
|
92194
|
+
"name": "change"
|
|
92195
|
+
},
|
|
92196
|
+
{
|
|
92197
|
+
"type": {
|
|
92198
|
+
"text": "InputEvent"
|
|
92199
|
+
},
|
|
92200
|
+
"description": "The input event fires on the datepicker's input when the value has been changed as a direct result of a user action.",
|
|
92201
|
+
"name": "input"
|
|
92202
|
+
}
|
|
92203
|
+
],
|
|
92152
92204
|
"attributes": [
|
|
92153
92205
|
{
|
|
92154
92206
|
"name": "input",
|
|
@@ -93352,6 +93404,30 @@
|
|
|
93352
93404
|
"module": "core/mixins/form-associated-mixin.js"
|
|
93353
93405
|
}
|
|
93354
93406
|
}
|
|
93407
|
+
],
|
|
93408
|
+
"events": [
|
|
93409
|
+
{
|
|
93410
|
+
"type": {
|
|
93411
|
+
"text": "Event"
|
|
93412
|
+
},
|
|
93413
|
+
"description": "The change event is fired on the datepicker's input when the user modifies the element's value. Unlike the input event, the change event is not necessarily fired for each alteration to an element's value.",
|
|
93414
|
+
"name": "change",
|
|
93415
|
+
"inheritedFrom": {
|
|
93416
|
+
"name": "SbbDatepickerButtonBase",
|
|
93417
|
+
"module": "datepicker/common/datepicker-button.js"
|
|
93418
|
+
}
|
|
93419
|
+
},
|
|
93420
|
+
{
|
|
93421
|
+
"type": {
|
|
93422
|
+
"text": "InputEvent"
|
|
93423
|
+
},
|
|
93424
|
+
"description": "The input event fires on the datepicker's input when the value has been changed as a direct result of a user action.",
|
|
93425
|
+
"name": "input",
|
|
93426
|
+
"inheritedFrom": {
|
|
93427
|
+
"name": "SbbDatepickerButtonBase",
|
|
93428
|
+
"module": "datepicker/common/datepicker-button.js"
|
|
93429
|
+
}
|
|
93430
|
+
}
|
|
93355
93431
|
]
|
|
93356
93432
|
}
|
|
93357
93433
|
],
|
|
@@ -94378,6 +94454,20 @@
|
|
|
94378
94454
|
"description": "Event emitted on date selection.",
|
|
94379
94455
|
"name": "dateselected"
|
|
94380
94456
|
},
|
|
94457
|
+
{
|
|
94458
|
+
"type": {
|
|
94459
|
+
"text": "Event"
|
|
94460
|
+
},
|
|
94461
|
+
"description": "The change event is fired on the datepicker's input when the user modifies the element's value. Unlike the input event, the change event is not necessarily fired for each alteration to an element's value.",
|
|
94462
|
+
"name": "change"
|
|
94463
|
+
},
|
|
94464
|
+
{
|
|
94465
|
+
"type": {
|
|
94466
|
+
"text": "InputEvent"
|
|
94467
|
+
},
|
|
94468
|
+
"description": "The input event fires on the datepicker's input when the value has been changed as a direct result of a user action.",
|
|
94469
|
+
"name": "input"
|
|
94470
|
+
},
|
|
94381
94471
|
{
|
|
94382
94472
|
"name": "beforeclose",
|
|
94383
94473
|
"type": {
|
|
@@ -95660,6 +95750,30 @@
|
|
|
95660
95750
|
"module": "core/mixins/form-associated-mixin.js"
|
|
95661
95751
|
}
|
|
95662
95752
|
}
|
|
95753
|
+
],
|
|
95754
|
+
"events": [
|
|
95755
|
+
{
|
|
95756
|
+
"type": {
|
|
95757
|
+
"text": "Event"
|
|
95758
|
+
},
|
|
95759
|
+
"description": "The change event is fired on the datepicker's input when the user modifies the element's value. Unlike the input event, the change event is not necessarily fired for each alteration to an element's value.",
|
|
95760
|
+
"name": "change",
|
|
95761
|
+
"inheritedFrom": {
|
|
95762
|
+
"name": "SbbDatepickerButtonBase",
|
|
95763
|
+
"module": "datepicker/common/datepicker-button.js"
|
|
95764
|
+
}
|
|
95765
|
+
},
|
|
95766
|
+
{
|
|
95767
|
+
"type": {
|
|
95768
|
+
"text": "InputEvent"
|
|
95769
|
+
},
|
|
95770
|
+
"description": "The input event fires on the datepicker's input when the value has been changed as a direct result of a user action.",
|
|
95771
|
+
"name": "input",
|
|
95772
|
+
"inheritedFrom": {
|
|
95773
|
+
"name": "SbbDatepickerButtonBase",
|
|
95774
|
+
"module": "datepicker/common/datepicker-button.js"
|
|
95775
|
+
}
|
|
95776
|
+
}
|
|
95663
95777
|
]
|
|
95664
95778
|
}
|
|
95665
95779
|
],
|
|
@@ -96843,6 +96957,30 @@
|
|
|
96843
96957
|
"module": "core/mixins/form-associated-mixin.js"
|
|
96844
96958
|
}
|
|
96845
96959
|
}
|
|
96960
|
+
],
|
|
96961
|
+
"events": [
|
|
96962
|
+
{
|
|
96963
|
+
"type": {
|
|
96964
|
+
"text": "Event"
|
|
96965
|
+
},
|
|
96966
|
+
"description": "The change event is fired on the datepicker's input when the user modifies the element's value. Unlike the input event, the change event is not necessarily fired for each alteration to an element's value.",
|
|
96967
|
+
"name": "change",
|
|
96968
|
+
"inheritedFrom": {
|
|
96969
|
+
"name": "SbbDatepickerButtonBase",
|
|
96970
|
+
"module": "datepicker/common/datepicker-button.js"
|
|
96971
|
+
}
|
|
96972
|
+
},
|
|
96973
|
+
{
|
|
96974
|
+
"type": {
|
|
96975
|
+
"text": "InputEvent"
|
|
96976
|
+
},
|
|
96977
|
+
"description": "The input event fires on the datepicker's input when the value has been changed as a direct result of a user action.",
|
|
96978
|
+
"name": "input",
|
|
96979
|
+
"inheritedFrom": {
|
|
96980
|
+
"name": "SbbDatepickerButtonBase",
|
|
96981
|
+
"module": "datepicker/common/datepicker-button.js"
|
|
96982
|
+
}
|
|
96983
|
+
}
|
|
96846
96984
|
]
|
|
96847
96985
|
}
|
|
96848
96986
|
],
|
|
@@ -97928,7 +98066,31 @@
|
|
|
97928
98066
|
},
|
|
97929
98067
|
"tagName": "sbb-datepicker-toggle",
|
|
97930
98068
|
"customElement": true,
|
|
97931
|
-
"classGenerics": "T = Date"
|
|
98069
|
+
"classGenerics": "T = Date",
|
|
98070
|
+
"events": [
|
|
98071
|
+
{
|
|
98072
|
+
"type": {
|
|
98073
|
+
"text": "Event"
|
|
98074
|
+
},
|
|
98075
|
+
"description": "The change event is fired on the datepicker's input when the user modifies the element's value. Unlike the input event, the change event is not necessarily fired for each alteration to an element's value.",
|
|
98076
|
+
"name": "change",
|
|
98077
|
+
"inheritedFrom": {
|
|
98078
|
+
"name": "SbbDatepickerButtonBase",
|
|
98079
|
+
"module": "datepicker/common/datepicker-button.js"
|
|
98080
|
+
}
|
|
98081
|
+
},
|
|
98082
|
+
{
|
|
98083
|
+
"type": {
|
|
98084
|
+
"text": "InputEvent"
|
|
98085
|
+
},
|
|
98086
|
+
"description": "The input event fires on the datepicker's input when the value has been changed as a direct result of a user action.",
|
|
98087
|
+
"name": "input",
|
|
98088
|
+
"inheritedFrom": {
|
|
98089
|
+
"name": "SbbDatepickerButtonBase",
|
|
98090
|
+
"module": "datepicker/common/datepicker-button.js"
|
|
98091
|
+
}
|
|
98092
|
+
}
|
|
98093
|
+
]
|
|
97932
98094
|
}
|
|
97933
98095
|
],
|
|
97934
98096
|
"exports": [
|
|
@@ -102472,115 +102634,85 @@
|
|
|
102472
102634
|
},
|
|
102473
102635
|
{
|
|
102474
102636
|
"kind": "javascript-module",
|
|
102475
|
-
"path": "
|
|
102637
|
+
"path": "expansion-panel/expansion-panel-header/expansion-panel-header.component.js",
|
|
102476
102638
|
"declarations": [
|
|
102477
|
-
{
|
|
102478
|
-
"kind": "variable",
|
|
102479
|
-
"name": "fileSelectorCommonStyle"
|
|
102480
|
-
},
|
|
102481
102639
|
{
|
|
102482
102640
|
"kind": "class",
|
|
102483
|
-
"description": "",
|
|
102484
|
-
"name": "
|
|
102485
|
-
"
|
|
102486
|
-
{
|
|
102487
|
-
"kind": "field",
|
|
102488
|
-
"name": "size",
|
|
102489
|
-
"type": {
|
|
102490
|
-
"text": "'s' | 'm'"
|
|
102491
|
-
},
|
|
102492
|
-
"privacy": "public"
|
|
102493
|
-
},
|
|
102641
|
+
"description": "It acts as a native `summary` tag for the `sbb-expansion-panel` component.",
|
|
102642
|
+
"name": "SbbExpansionPanelHeaderElement",
|
|
102643
|
+
"slots": [
|
|
102494
102644
|
{
|
|
102495
|
-
"
|
|
102496
|
-
"name": "
|
|
102497
|
-
"type": {
|
|
102498
|
-
"text": "boolean"
|
|
102499
|
-
},
|
|
102500
|
-
"privacy": "public"
|
|
102645
|
+
"description": "Use the unnamed slot to add content to the `sbb-expansion-panel-header`.",
|
|
102646
|
+
"name": ""
|
|
102501
102647
|
},
|
|
102502
102648
|
{
|
|
102503
|
-
"
|
|
102504
|
-
"name": "
|
|
102505
|
-
|
|
102506
|
-
|
|
102507
|
-
|
|
102508
|
-
"privacy": "public"
|
|
102509
|
-
},
|
|
102649
|
+
"description": "Slot used to render the `sbb-expansion-panel-header` icon.",
|
|
102650
|
+
"name": "icon"
|
|
102651
|
+
}
|
|
102652
|
+
],
|
|
102653
|
+
"members": [
|
|
102510
102654
|
{
|
|
102511
102655
|
"kind": "field",
|
|
102512
|
-
"name": "
|
|
102656
|
+
"name": "elementName",
|
|
102513
102657
|
"type": {
|
|
102514
102658
|
"text": "string"
|
|
102515
102659
|
},
|
|
102516
|
-
"privacy": "public"
|
|
102517
|
-
|
|
102518
|
-
|
|
102519
|
-
"
|
|
102520
|
-
|
|
102521
|
-
|
|
102522
|
-
"text": "string"
|
|
102660
|
+
"privacy": "public",
|
|
102661
|
+
"static": true,
|
|
102662
|
+
"readonly": true,
|
|
102663
|
+
"inheritedFrom": {
|
|
102664
|
+
"name": "SbbElement",
|
|
102665
|
+
"module": "core/base-elements/element.js"
|
|
102523
102666
|
},
|
|
102524
|
-
"
|
|
102667
|
+
"default": "'sbb-expansion-panel-header'"
|
|
102525
102668
|
},
|
|
102526
102669
|
{
|
|
102527
102670
|
"kind": "field",
|
|
102528
|
-
"name": "
|
|
102671
|
+
"name": "events",
|
|
102672
|
+
"privacy": "public",
|
|
102673
|
+
"static": true,
|
|
102674
|
+
"readonly": true,
|
|
102675
|
+
"default": "{ toggleexpanded: 'toggleexpanded', }",
|
|
102529
102676
|
"type": {
|
|
102530
|
-
"text": "
|
|
102531
|
-
}
|
|
102532
|
-
"privacy": "public"
|
|
102677
|
+
"text": "{\n toggleexpanded: 'toggleexpanded',\n }"
|
|
102678
|
+
}
|
|
102533
102679
|
},
|
|
102534
102680
|
{
|
|
102535
102681
|
"kind": "field",
|
|
102536
|
-
"name": "
|
|
102537
|
-
"
|
|
102538
|
-
|
|
102539
|
-
},
|
|
102540
|
-
"privacy": "public",
|
|
102541
|
-
"inheritedFrom": {
|
|
102542
|
-
"name": "SbbFormAssociatedMixin",
|
|
102543
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
102544
|
-
}
|
|
102682
|
+
"name": "_mediaMatcher",
|
|
102683
|
+
"privacy": "private",
|
|
102684
|
+
"default": "new SbbMediaMatcherController(this, { [SbbMediaQueryHover]: (m) => (this._isHover = m), })"
|
|
102545
102685
|
},
|
|
102546
102686
|
{
|
|
102547
102687
|
"kind": "field",
|
|
102548
|
-
"name": "
|
|
102688
|
+
"name": "_isHover",
|
|
102549
102689
|
"type": {
|
|
102550
|
-
"text": "
|
|
102690
|
+
"text": "boolean"
|
|
102551
102691
|
},
|
|
102552
|
-
"privacy": "
|
|
102692
|
+
"privacy": "private"
|
|
102553
102693
|
},
|
|
102554
102694
|
{
|
|
102555
102695
|
"kind": "field",
|
|
102556
|
-
"name": "
|
|
102696
|
+
"name": "_previousSize",
|
|
102557
102697
|
"type": {
|
|
102558
|
-
"text": "
|
|
102698
|
+
"text": "string | undefined"
|
|
102559
102699
|
},
|
|
102560
|
-
"privacy": "
|
|
102700
|
+
"privacy": "private"
|
|
102561
102701
|
},
|
|
102562
102702
|
{
|
|
102563
102703
|
"kind": "method",
|
|
102564
|
-
"name": "
|
|
102565
|
-
"privacy": "
|
|
102704
|
+
"name": "_emitExpandedEvent",
|
|
102705
|
+
"privacy": "private",
|
|
102566
102706
|
"return": {
|
|
102567
102707
|
"type": {
|
|
102568
|
-
"text": "
|
|
102569
|
-
}
|
|
102570
|
-
},
|
|
102571
|
-
"parameters": [
|
|
102572
|
-
{
|
|
102573
|
-
"name": "input",
|
|
102574
|
-
"type": {
|
|
102575
|
-
"text": "TemplateResult"
|
|
102576
|
-
}
|
|
102708
|
+
"text": "void"
|
|
102577
102709
|
}
|
|
102578
|
-
|
|
102710
|
+
}
|
|
102579
102711
|
},
|
|
102580
102712
|
{
|
|
102581
102713
|
"kind": "method",
|
|
102582
|
-
"name": "
|
|
102583
|
-
"privacy": "
|
|
102714
|
+
"name": "_onMouseMovement",
|
|
102715
|
+
"privacy": "private",
|
|
102584
102716
|
"return": {
|
|
102585
102717
|
"type": {
|
|
102586
102718
|
"text": "void"
|
|
@@ -102588,56 +102720,54 @@
|
|
|
102588
102720
|
},
|
|
102589
102721
|
"parameters": [
|
|
102590
102722
|
{
|
|
102591
|
-
"name": "
|
|
102723
|
+
"name": "toggleDataAttribute",
|
|
102592
102724
|
"type": {
|
|
102593
|
-
"text": "
|
|
102725
|
+
"text": "boolean"
|
|
102594
102726
|
}
|
|
102595
102727
|
}
|
|
102596
102728
|
]
|
|
102597
102729
|
},
|
|
102598
102730
|
{
|
|
102599
102731
|
"kind": "method",
|
|
102600
|
-
"name": "
|
|
102601
|
-
"privacy": "
|
|
102732
|
+
"name": "_setIconState",
|
|
102733
|
+
"privacy": "private",
|
|
102602
102734
|
"return": {
|
|
102603
102735
|
"type": {
|
|
102604
|
-
"text": "
|
|
102736
|
+
"text": "void"
|
|
102605
102737
|
}
|
|
102606
|
-
}
|
|
102738
|
+
},
|
|
102739
|
+
"description": "The :state(icon) is used by the 'sbb-expansion-panel'.\nIt needs to be set before the"
|
|
102607
102740
|
},
|
|
102608
102741
|
{
|
|
102609
102742
|
"kind": "method",
|
|
102610
|
-
"name": "
|
|
102611
|
-
"privacy": "
|
|
102743
|
+
"name": "renderTemplate",
|
|
102744
|
+
"privacy": "protected",
|
|
102612
102745
|
"return": {
|
|
102613
102746
|
"type": {
|
|
102614
|
-
"text": "
|
|
102747
|
+
"text": "TemplateResult"
|
|
102615
102748
|
}
|
|
102749
|
+
},
|
|
102750
|
+
"description": "Override this method to render the component template.",
|
|
102751
|
+
"inheritedFrom": {
|
|
102752
|
+
"name": "SbbActionBaseElement",
|
|
102753
|
+
"module": "core/base-elements/action-base-element.js"
|
|
102616
102754
|
}
|
|
102617
102755
|
},
|
|
102618
102756
|
{
|
|
102619
|
-
"kind": "
|
|
102620
|
-
"name": "
|
|
102621
|
-
"
|
|
102622
|
-
|
|
102623
|
-
"type": {
|
|
102624
|
-
"text": "void"
|
|
102625
|
-
}
|
|
102757
|
+
"kind": "field",
|
|
102758
|
+
"name": "disabledInteractive",
|
|
102759
|
+
"type": {
|
|
102760
|
+
"text": "boolean"
|
|
102626
102761
|
},
|
|
102627
|
-
"
|
|
102628
|
-
|
|
102629
|
-
|
|
102630
|
-
|
|
102631
|
-
|
|
102632
|
-
|
|
102633
|
-
|
|
102634
|
-
|
|
102635
|
-
|
|
102636
|
-
"type": {
|
|
102637
|
-
"text": "FormRestoreReason"
|
|
102638
|
-
}
|
|
102639
|
-
}
|
|
102640
|
-
]
|
|
102762
|
+
"privacy": "public",
|
|
102763
|
+
"default": "false",
|
|
102764
|
+
"description": "Whether the button should be aria-disabled but stay interactive.",
|
|
102765
|
+
"attribute": "disabled-interactive",
|
|
102766
|
+
"reflects": true,
|
|
102767
|
+
"inheritedFrom": {
|
|
102768
|
+
"name": "SbbDisabledInteractiveMixin",
|
|
102769
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
102770
|
+
}
|
|
102641
102771
|
},
|
|
102642
102772
|
{
|
|
102643
102773
|
"kind": "field",
|
|
@@ -102685,16 +102815,126 @@
|
|
|
102685
102815
|
},
|
|
102686
102816
|
{
|
|
102687
102817
|
"kind": "field",
|
|
102688
|
-
"name": "
|
|
102818
|
+
"name": "elementDependencies",
|
|
102689
102819
|
"type": {
|
|
102690
|
-
"text": "
|
|
102820
|
+
"text": "SbbElementType[]"
|
|
102691
102821
|
},
|
|
102692
102822
|
"privacy": "public",
|
|
102693
102823
|
"static": true,
|
|
102694
|
-
"default": "true",
|
|
102695
102824
|
"inheritedFrom": {
|
|
102696
|
-
"name": "
|
|
102697
|
-
"module": "core/
|
|
102825
|
+
"name": "SbbElement",
|
|
102826
|
+
"module": "core/base-elements/element.js"
|
|
102827
|
+
},
|
|
102828
|
+
"default": "[SbbIconElement]"
|
|
102829
|
+
},
|
|
102830
|
+
{
|
|
102831
|
+
"kind": "field",
|
|
102832
|
+
"name": "iconName",
|
|
102833
|
+
"type": {
|
|
102834
|
+
"text": "string"
|
|
102835
|
+
},
|
|
102836
|
+
"privacy": "public",
|
|
102837
|
+
"default": "''",
|
|
102838
|
+
"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.",
|
|
102839
|
+
"attribute": "icon-name",
|
|
102840
|
+
"inheritedFrom": {
|
|
102841
|
+
"name": "SbbIconNameMixin",
|
|
102842
|
+
"module": "icon/icon-name-mixin.js"
|
|
102843
|
+
}
|
|
102844
|
+
},
|
|
102845
|
+
{
|
|
102846
|
+
"kind": "method",
|
|
102847
|
+
"name": "renderIconSlot",
|
|
102848
|
+
"privacy": "protected",
|
|
102849
|
+
"return": {
|
|
102850
|
+
"type": {
|
|
102851
|
+
"text": "TemplateResult"
|
|
102852
|
+
}
|
|
102853
|
+
},
|
|
102854
|
+
"parameters": [
|
|
102855
|
+
{
|
|
102856
|
+
"name": "classname",
|
|
102857
|
+
"optional": true,
|
|
102858
|
+
"type": {
|
|
102859
|
+
"text": "string"
|
|
102860
|
+
}
|
|
102861
|
+
}
|
|
102862
|
+
],
|
|
102863
|
+
"inheritedFrom": {
|
|
102864
|
+
"name": "SbbIconNameMixin",
|
|
102865
|
+
"module": "icon/icon-name-mixin.js"
|
|
102866
|
+
}
|
|
102867
|
+
},
|
|
102868
|
+
{
|
|
102869
|
+
"kind": "method",
|
|
102870
|
+
"name": "renderIconName",
|
|
102871
|
+
"privacy": "protected",
|
|
102872
|
+
"return": {
|
|
102873
|
+
"type": {
|
|
102874
|
+
"text": "string"
|
|
102875
|
+
}
|
|
102876
|
+
},
|
|
102877
|
+
"inheritedFrom": {
|
|
102878
|
+
"name": "SbbIconNameMixin",
|
|
102879
|
+
"module": "icon/icon-name-mixin.js"
|
|
102880
|
+
}
|
|
102881
|
+
},
|
|
102882
|
+
{
|
|
102883
|
+
"kind": "method",
|
|
102884
|
+
"name": "_renderIconName",
|
|
102885
|
+
"privacy": "private",
|
|
102886
|
+
"return": {
|
|
102887
|
+
"type": {
|
|
102888
|
+
"text": "string"
|
|
102889
|
+
}
|
|
102890
|
+
},
|
|
102891
|
+
"inheritedFrom": {
|
|
102892
|
+
"name": "SbbIconNameMixin",
|
|
102893
|
+
"module": "icon/icon-name-mixin.js"
|
|
102894
|
+
}
|
|
102895
|
+
},
|
|
102896
|
+
{
|
|
102897
|
+
"kind": "field",
|
|
102898
|
+
"name": "_elementsOnWhichEnterPressTriggersSubmit",
|
|
102899
|
+
"type": {
|
|
102900
|
+
"text": "array"
|
|
102901
|
+
},
|
|
102902
|
+
"privacy": "private",
|
|
102903
|
+
"readonly": true,
|
|
102904
|
+
"default": "[ 'input', 'sbb-date-input', 'sbb-time-input', ]",
|
|
102905
|
+
"inheritedFrom": {
|
|
102906
|
+
"name": "SbbButtonBaseElement",
|
|
102907
|
+
"module": "core/base-elements/button-base-element.js"
|
|
102908
|
+
}
|
|
102909
|
+
},
|
|
102910
|
+
{
|
|
102911
|
+
"kind": "field",
|
|
102912
|
+
"name": "value",
|
|
102913
|
+
"type": {
|
|
102914
|
+
"text": "string"
|
|
102915
|
+
},
|
|
102916
|
+
"privacy": "public",
|
|
102917
|
+
"inheritedFrom": {
|
|
102918
|
+
"name": "SbbButtonBaseElement",
|
|
102919
|
+
"module": "core/base-elements/button-base-element.js"
|
|
102920
|
+
},
|
|
102921
|
+
"default": "''",
|
|
102922
|
+
"description": "Value of the form element.",
|
|
102923
|
+
"attribute": "value"
|
|
102924
|
+
},
|
|
102925
|
+
{
|
|
102926
|
+
"kind": "field",
|
|
102927
|
+
"name": "type",
|
|
102928
|
+
"privacy": "public",
|
|
102929
|
+
"description": "The type attribute to use for the button.",
|
|
102930
|
+
"default": "'button'",
|
|
102931
|
+
"type": {
|
|
102932
|
+
"text": "SbbButtonType"
|
|
102933
|
+
},
|
|
102934
|
+
"attribute": "type",
|
|
102935
|
+
"inheritedFrom": {
|
|
102936
|
+
"name": "SbbButtonBaseElement",
|
|
102937
|
+
"module": "core/base-elements/button-base-element.js"
|
|
102698
102938
|
}
|
|
102699
102939
|
},
|
|
102700
102940
|
{
|
|
@@ -102704,8 +102944,75 @@
|
|
|
102704
102944
|
"text": "HTMLFormElement | null"
|
|
102705
102945
|
},
|
|
102706
102946
|
"privacy": "public",
|
|
102707
|
-
"description": "
|
|
102708
|
-
"
|
|
102947
|
+
"description": "The `<form>` element to associate the button with.",
|
|
102948
|
+
"inheritedFrom": {
|
|
102949
|
+
"name": "SbbButtonBaseElement",
|
|
102950
|
+
"module": "core/base-elements/button-base-element.js"
|
|
102951
|
+
},
|
|
102952
|
+
"attribute": "form"
|
|
102953
|
+
},
|
|
102954
|
+
{
|
|
102955
|
+
"kind": "field",
|
|
102956
|
+
"name": "_formId",
|
|
102957
|
+
"type": {
|
|
102958
|
+
"text": "string"
|
|
102959
|
+
},
|
|
102960
|
+
"privacy": "private",
|
|
102961
|
+
"default": "''",
|
|
102962
|
+
"inheritedFrom": {
|
|
102963
|
+
"name": "SbbButtonBaseElement",
|
|
102964
|
+
"module": "core/base-elements/button-base-element.js"
|
|
102965
|
+
}
|
|
102966
|
+
},
|
|
102967
|
+
{
|
|
102968
|
+
"kind": "field",
|
|
102969
|
+
"name": "_handleButtonClick",
|
|
102970
|
+
"privacy": "private",
|
|
102971
|
+
"inheritedFrom": {
|
|
102972
|
+
"name": "SbbButtonBaseElement",
|
|
102973
|
+
"module": "core/base-elements/button-base-element.js"
|
|
102974
|
+
}
|
|
102975
|
+
},
|
|
102976
|
+
{
|
|
102977
|
+
"kind": "method",
|
|
102978
|
+
"name": "_requestSubmit",
|
|
102979
|
+
"privacy": "private",
|
|
102980
|
+
"return": {
|
|
102981
|
+
"type": {
|
|
102982
|
+
"text": "void"
|
|
102983
|
+
}
|
|
102984
|
+
},
|
|
102985
|
+
"parameters": [
|
|
102986
|
+
{
|
|
102987
|
+
"name": "form",
|
|
102988
|
+
"type": {
|
|
102989
|
+
"text": "HTMLFormElement"
|
|
102990
|
+
}
|
|
102991
|
+
}
|
|
102992
|
+
],
|
|
102993
|
+
"inheritedFrom": {
|
|
102994
|
+
"name": "SbbButtonBaseElement",
|
|
102995
|
+
"module": "core/base-elements/button-base-element.js"
|
|
102996
|
+
}
|
|
102997
|
+
},
|
|
102998
|
+
{
|
|
102999
|
+
"kind": "field",
|
|
103000
|
+
"name": "_formKeyDown",
|
|
103001
|
+
"privacy": "private",
|
|
103002
|
+
"inheritedFrom": {
|
|
103003
|
+
"name": "SbbButtonBaseElement",
|
|
103004
|
+
"module": "core/base-elements/button-base-element.js"
|
|
103005
|
+
}
|
|
103006
|
+
},
|
|
103007
|
+
{
|
|
103008
|
+
"kind": "field",
|
|
103009
|
+
"name": "formAssociated",
|
|
103010
|
+
"type": {
|
|
103011
|
+
"text": "boolean"
|
|
103012
|
+
},
|
|
103013
|
+
"privacy": "public",
|
|
103014
|
+
"static": true,
|
|
103015
|
+
"default": "true",
|
|
102709
103016
|
"inheritedFrom": {
|
|
102710
103017
|
"name": "SbbFormAssociatedMixin",
|
|
102711
103018
|
"module": "core/mixins/form-associated-mixin.js"
|
|
@@ -103000,53 +103307,118 @@
|
|
|
103000
103307
|
},
|
|
103001
103308
|
{
|
|
103002
103309
|
"kind": "field",
|
|
103003
|
-
"name": "
|
|
103310
|
+
"name": "role",
|
|
103004
103311
|
"type": {
|
|
103005
|
-
"text": "
|
|
103312
|
+
"text": "ElementInternals['role']"
|
|
103006
103313
|
},
|
|
103007
103314
|
"privacy": "public",
|
|
103008
103315
|
"static": true,
|
|
103009
|
-
"default": "true",
|
|
103010
103316
|
"inheritedFrom": {
|
|
103011
103317
|
"name": "SbbElement",
|
|
103012
103318
|
"module": "core/base-elements/element.js"
|
|
103319
|
+
},
|
|
103320
|
+
"readonly": true,
|
|
103321
|
+
"default": "'button'"
|
|
103322
|
+
},
|
|
103323
|
+
{
|
|
103324
|
+
"kind": "field",
|
|
103325
|
+
"name": "_preventScrollOnSpaceKeydown",
|
|
103326
|
+
"privacy": "private",
|
|
103327
|
+
"description": "Prevents scrolling from pressing Space, when the event target is an action element.\nAlso sets active state.",
|
|
103328
|
+
"parameters": [
|
|
103329
|
+
{
|
|
103330
|
+
"description": "The origin event.",
|
|
103331
|
+
"name": "event"
|
|
103332
|
+
}
|
|
103333
|
+
],
|
|
103334
|
+
"inheritedFrom": {
|
|
103335
|
+
"name": "SbbButtonLikeBaseElement",
|
|
103336
|
+
"module": "core/base-elements/button-base-element.js"
|
|
103013
103337
|
}
|
|
103014
103338
|
},
|
|
103015
103339
|
{
|
|
103016
103340
|
"kind": "field",
|
|
103017
|
-
"name": "
|
|
103341
|
+
"name": "_removeActiveMarker",
|
|
103342
|
+
"privacy": "private",
|
|
103343
|
+
"inheritedFrom": {
|
|
103344
|
+
"name": "SbbButtonLikeBaseElement",
|
|
103345
|
+
"module": "core/base-elements/button-base-element.js"
|
|
103346
|
+
}
|
|
103347
|
+
},
|
|
103348
|
+
{
|
|
103349
|
+
"kind": "field",
|
|
103350
|
+
"name": "_dispatchClickEventOnSpaceKeyup",
|
|
103351
|
+
"privacy": "private",
|
|
103352
|
+
"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.",
|
|
103353
|
+
"parameters": [
|
|
103354
|
+
{
|
|
103355
|
+
"description": "The origin event.",
|
|
103356
|
+
"name": "event"
|
|
103357
|
+
}
|
|
103358
|
+
],
|
|
103359
|
+
"inheritedFrom": {
|
|
103360
|
+
"name": "SbbButtonLikeBaseElement",
|
|
103361
|
+
"module": "core/base-elements/button-base-element.js"
|
|
103362
|
+
}
|
|
103363
|
+
},
|
|
103364
|
+
{
|
|
103365
|
+
"kind": "field",
|
|
103366
|
+
"name": "_dispatchClickEvent",
|
|
103367
|
+
"privacy": "private",
|
|
103368
|
+
"inheritedFrom": {
|
|
103369
|
+
"name": "SbbButtonLikeBaseElement",
|
|
103370
|
+
"module": "core/base-elements/button-base-element.js"
|
|
103371
|
+
}
|
|
103372
|
+
},
|
|
103373
|
+
{
|
|
103374
|
+
"kind": "field",
|
|
103375
|
+
"name": "maybeDisabled",
|
|
103018
103376
|
"type": {
|
|
103019
|
-
"text": "
|
|
103377
|
+
"text": "boolean | undefined"
|
|
103020
103378
|
},
|
|
103021
|
-
"privacy": "
|
|
103022
|
-
"static": true,
|
|
103379
|
+
"privacy": "protected",
|
|
103023
103380
|
"readonly": true,
|
|
103024
103381
|
"inheritedFrom": {
|
|
103025
|
-
"name": "
|
|
103026
|
-
"module": "core/base-elements/element.js"
|
|
103382
|
+
"name": "SbbActionBaseElement",
|
|
103383
|
+
"module": "core/base-elements/action-base-element.js"
|
|
103027
103384
|
}
|
|
103028
103385
|
},
|
|
103029
103386
|
{
|
|
103030
103387
|
"kind": "field",
|
|
103031
|
-
"name": "
|
|
103388
|
+
"name": "maybeDisabledInteractive",
|
|
103032
103389
|
"type": {
|
|
103033
|
-
"text": "
|
|
103390
|
+
"text": "boolean | undefined"
|
|
103034
103391
|
},
|
|
103035
|
-
"privacy": "
|
|
103036
|
-
"
|
|
103392
|
+
"privacy": "protected",
|
|
103393
|
+
"readonly": true,
|
|
103037
103394
|
"inheritedFrom": {
|
|
103038
|
-
"name": "
|
|
103039
|
-
"module": "core/base-elements/element.js"
|
|
103395
|
+
"name": "SbbActionBaseElement",
|
|
103396
|
+
"module": "core/base-elements/action-base-element.js"
|
|
103397
|
+
}
|
|
103398
|
+
},
|
|
103399
|
+
{
|
|
103400
|
+
"kind": "method",
|
|
103401
|
+
"name": "setupBaseEventHandlers",
|
|
103402
|
+
"privacy": "protected",
|
|
103403
|
+
"return": {
|
|
103404
|
+
"type": {
|
|
103405
|
+
"text": "void"
|
|
103406
|
+
}
|
|
103407
|
+
},
|
|
103408
|
+
"inheritedFrom": {
|
|
103409
|
+
"name": "SbbActionBaseElement",
|
|
103410
|
+
"module": "core/base-elements/action-base-element.js"
|
|
103040
103411
|
}
|
|
103041
103412
|
},
|
|
103042
103413
|
{
|
|
103043
103414
|
"kind": "field",
|
|
103044
|
-
"name": "
|
|
103415
|
+
"name": "['_$sbbElement$']",
|
|
103045
103416
|
"type": {
|
|
103046
|
-
"text": "
|
|
103417
|
+
"text": "boolean"
|
|
103047
103418
|
},
|
|
103048
103419
|
"privacy": "public",
|
|
103049
103420
|
"static": true,
|
|
103421
|
+
"default": "true",
|
|
103050
103422
|
"inheritedFrom": {
|
|
103051
103423
|
"name": "SbbElement",
|
|
103052
103424
|
"module": "core/base-elements/element.js"
|
|
@@ -103272,21 +103644,45 @@
|
|
|
103272
103644
|
}
|
|
103273
103645
|
}
|
|
103274
103646
|
],
|
|
103647
|
+
"events": [
|
|
103648
|
+
{
|
|
103649
|
+
"name": "toggleexpanded",
|
|
103650
|
+
"type": {
|
|
103651
|
+
"text": "Event"
|
|
103652
|
+
},
|
|
103653
|
+
"description": "Notifies that the `sbb-expansion-panel` is about to expand/shrink."
|
|
103654
|
+
}
|
|
103655
|
+
],
|
|
103275
103656
|
"mixins": [
|
|
103276
103657
|
{
|
|
103277
|
-
"name": "
|
|
103658
|
+
"name": "SbbDisabledTabIndexActionMixin",
|
|
103278
103659
|
"module": "core.js"
|
|
103279
103660
|
},
|
|
103280
103661
|
{
|
|
103281
|
-
"name": "
|
|
103282
|
-
"module": "
|
|
103662
|
+
"name": "SbbIconNameMixin",
|
|
103663
|
+
"module": "icon.pure.js"
|
|
103283
103664
|
}
|
|
103284
103665
|
],
|
|
103285
103666
|
"superclass": {
|
|
103286
|
-
"name": "
|
|
103667
|
+
"name": "SbbButtonBaseElement",
|
|
103287
103668
|
"module": "core.js"
|
|
103288
103669
|
},
|
|
103670
|
+
"tagName": "sbb-expansion-panel-header",
|
|
103671
|
+
"customElement": true,
|
|
103289
103672
|
"attributes": [
|
|
103673
|
+
{
|
|
103674
|
+
"name": "disabled-interactive",
|
|
103675
|
+
"type": {
|
|
103676
|
+
"text": "boolean"
|
|
103677
|
+
},
|
|
103678
|
+
"default": "false",
|
|
103679
|
+
"description": "Whether the button should be aria-disabled but stay interactive.",
|
|
103680
|
+
"fieldName": "disabledInteractive",
|
|
103681
|
+
"inheritedFrom": {
|
|
103682
|
+
"name": "SbbDisabledInteractiveMixin",
|
|
103683
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
103684
|
+
}
|
|
103685
|
+
},
|
|
103290
103686
|
{
|
|
103291
103687
|
"name": "disabled",
|
|
103292
103688
|
"description": "Whether the component is disabled.",
|
|
@@ -103300,6 +103696,57 @@
|
|
|
103300
103696
|
"module": "core/mixins/disabled-mixin.js"
|
|
103301
103697
|
}
|
|
103302
103698
|
},
|
|
103699
|
+
{
|
|
103700
|
+
"name": "icon-name",
|
|
103701
|
+
"type": {
|
|
103702
|
+
"text": "string"
|
|
103703
|
+
},
|
|
103704
|
+
"default": "''",
|
|
103705
|
+
"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.",
|
|
103706
|
+
"fieldName": "iconName",
|
|
103707
|
+
"inheritedFrom": {
|
|
103708
|
+
"name": "SbbIconNameMixin",
|
|
103709
|
+
"module": "icon/icon-name-mixin.js"
|
|
103710
|
+
}
|
|
103711
|
+
},
|
|
103712
|
+
{
|
|
103713
|
+
"name": "value",
|
|
103714
|
+
"type": {
|
|
103715
|
+
"text": "string"
|
|
103716
|
+
},
|
|
103717
|
+
"default": "''",
|
|
103718
|
+
"description": "Value of the form element.",
|
|
103719
|
+
"fieldName": "value",
|
|
103720
|
+
"inheritedFrom": {
|
|
103721
|
+
"name": "SbbButtonBaseElement",
|
|
103722
|
+
"module": "core/base-elements/button-base-element.js"
|
|
103723
|
+
}
|
|
103724
|
+
},
|
|
103725
|
+
{
|
|
103726
|
+
"name": "type",
|
|
103727
|
+
"description": "The type attribute to use for the button.",
|
|
103728
|
+
"default": "'button'",
|
|
103729
|
+
"type": {
|
|
103730
|
+
"text": "SbbButtonType"
|
|
103731
|
+
},
|
|
103732
|
+
"fieldName": "type",
|
|
103733
|
+
"inheritedFrom": {
|
|
103734
|
+
"name": "SbbButtonBaseElement",
|
|
103735
|
+
"module": "core/base-elements/button-base-element.js"
|
|
103736
|
+
}
|
|
103737
|
+
},
|
|
103738
|
+
{
|
|
103739
|
+
"name": "form",
|
|
103740
|
+
"description": "The `<form>` element to associate the button with.",
|
|
103741
|
+
"type": {
|
|
103742
|
+
"text": "HTMLFormElement | null"
|
|
103743
|
+
},
|
|
103744
|
+
"fieldName": "form",
|
|
103745
|
+
"inheritedFrom": {
|
|
103746
|
+
"name": "SbbButtonBaseElement",
|
|
103747
|
+
"module": "core/base-elements/button-base-element.js"
|
|
103748
|
+
}
|
|
103749
|
+
},
|
|
103303
103750
|
{
|
|
103304
103751
|
"name": "name",
|
|
103305
103752
|
"description": "Name of the form element. Will be read from name attribute.",
|
|
@@ -103313,44 +103760,39 @@
|
|
|
103313
103760
|
}
|
|
103314
103761
|
}
|
|
103315
103762
|
]
|
|
103763
|
+
}
|
|
103764
|
+
],
|
|
103765
|
+
"exports": [
|
|
103766
|
+
{
|
|
103767
|
+
"kind": "js",
|
|
103768
|
+
"name": "SbbExpansionPanelHeaderElement",
|
|
103769
|
+
"declaration": {
|
|
103770
|
+
"name": "SbbExpansionPanelHeaderElement",
|
|
103771
|
+
"module": "expansion-panel/expansion-panel-header/expansion-panel-header.component.js"
|
|
103772
|
+
}
|
|
103773
|
+
}
|
|
103774
|
+
]
|
|
103775
|
+
},
|
|
103776
|
+
{
|
|
103777
|
+
"kind": "javascript-module",
|
|
103778
|
+
"path": "file-selector/common/file-selector-common.js",
|
|
103779
|
+
"declarations": [
|
|
103780
|
+
{
|
|
103781
|
+
"kind": "variable",
|
|
103782
|
+
"name": "fileSelectorCommonStyle"
|
|
103316
103783
|
},
|
|
103317
103784
|
{
|
|
103318
|
-
"kind": "
|
|
103785
|
+
"kind": "class",
|
|
103319
103786
|
"description": "",
|
|
103320
|
-
"name": "
|
|
103787
|
+
"name": "SbbFileSelectorCommonElementMixinType",
|
|
103321
103788
|
"members": [
|
|
103322
|
-
{
|
|
103323
|
-
"kind": "field",
|
|
103324
|
-
"name": "elementDependencies",
|
|
103325
|
-
"type": {
|
|
103326
|
-
"text": "SbbElementType[]"
|
|
103327
|
-
},
|
|
103328
|
-
"privacy": "public",
|
|
103329
|
-
"static": true,
|
|
103330
|
-
"default": "[SbbSecondaryButtonElement]"
|
|
103331
|
-
},
|
|
103332
|
-
{
|
|
103333
|
-
"kind": "field",
|
|
103334
|
-
"name": "events",
|
|
103335
|
-
"privacy": "public",
|
|
103336
|
-
"static": true,
|
|
103337
|
-
"readonly": true,
|
|
103338
|
-
"default": "{ filechanged: 'filechanged', }",
|
|
103339
|
-
"type": {
|
|
103340
|
-
"text": "{\n filechanged: 'filechanged',\n }"
|
|
103341
|
-
}
|
|
103342
|
-
},
|
|
103343
103789
|
{
|
|
103344
103790
|
"kind": "field",
|
|
103345
103791
|
"name": "size",
|
|
103346
103792
|
"type": {
|
|
103347
103793
|
"text": "'s' | 'm'"
|
|
103348
103794
|
},
|
|
103349
|
-
"privacy": "public"
|
|
103350
|
-
"description": "Size variant, either s or m.",
|
|
103351
|
-
"default": "'m' / 's' (lean)",
|
|
103352
|
-
"attribute": "size",
|
|
103353
|
-
"reflects": true
|
|
103795
|
+
"privacy": "public"
|
|
103354
103796
|
},
|
|
103355
103797
|
{
|
|
103356
103798
|
"kind": "field",
|
|
@@ -103358,10 +103800,7 @@
|
|
|
103358
103800
|
"type": {
|
|
103359
103801
|
"text": "boolean"
|
|
103360
103802
|
},
|
|
103361
|
-
"privacy": "public"
|
|
103362
|
-
"default": "false",
|
|
103363
|
-
"description": "Whether more than one file can be selected.",
|
|
103364
|
-
"attribute": "multiple"
|
|
103803
|
+
"privacy": "public"
|
|
103365
103804
|
},
|
|
103366
103805
|
{
|
|
103367
103806
|
"kind": "field",
|
|
@@ -103369,10 +103808,7 @@
|
|
|
103369
103808
|
"type": {
|
|
103370
103809
|
"text": "'default' | 'persistent'"
|
|
103371
103810
|
},
|
|
103372
|
-
"privacy": "public"
|
|
103373
|
-
"default": "'default'",
|
|
103374
|
-
"description": "Whether the newly added files should override the previously added ones.",
|
|
103375
|
-
"attribute": "multiple-mode"
|
|
103811
|
+
"privacy": "public"
|
|
103376
103812
|
},
|
|
103377
103813
|
{
|
|
103378
103814
|
"kind": "field",
|
|
@@ -103380,10 +103816,7 @@
|
|
|
103380
103816
|
"type": {
|
|
103381
103817
|
"text": "string"
|
|
103382
103818
|
},
|
|
103383
|
-
"privacy": "public"
|
|
103384
|
-
"default": "''",
|
|
103385
|
-
"description": "A comma-separated list of allowed unique file type specifiers.",
|
|
103386
|
-
"attribute": "accept"
|
|
103819
|
+
"privacy": "public"
|
|
103387
103820
|
},
|
|
103388
103821
|
{
|
|
103389
103822
|
"kind": "field",
|
|
@@ -103391,77 +103824,27 @@
|
|
|
103391
103824
|
"type": {
|
|
103392
103825
|
"text": "string"
|
|
103393
103826
|
},
|
|
103394
|
-
"privacy": "public"
|
|
103395
|
-
"default": "''",
|
|
103396
|
-
"description": "This will be forwarded as aria-label to the native input element.",
|
|
103397
|
-
"attribute": "accessibility-label"
|
|
103398
|
-
},
|
|
103399
|
-
{
|
|
103400
|
-
"kind": "field",
|
|
103401
|
-
"name": "value",
|
|
103402
|
-
"type": {
|
|
103403
|
-
"text": "string | null"
|
|
103404
|
-
},
|
|
103405
|
-
"privacy": "public",
|
|
103406
|
-
"description": "The path of the first selected file. Empty string ('') if no file is selected",
|
|
103407
|
-
"inheritedFrom": {
|
|
103408
|
-
"name": "SbbFormAssociatedMixin",
|
|
103409
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
103410
|
-
}
|
|
103827
|
+
"privacy": "public"
|
|
103411
103828
|
},
|
|
103412
103829
|
{
|
|
103413
103830
|
"kind": "field",
|
|
103414
103831
|
"name": "files",
|
|
103415
|
-
"privacy": "public",
|
|
103416
|
-
"description": "The list of selected files.",
|
|
103417
|
-
"type": {
|
|
103418
|
-
"text": "Readonly<File>[]"
|
|
103419
|
-
}
|
|
103420
|
-
},
|
|
103421
|
-
{
|
|
103422
|
-
"kind": "field",
|
|
103423
|
-
"name": "_files",
|
|
103424
103832
|
"type": {
|
|
103425
103833
|
"text": "Readonly<File>[]"
|
|
103426
103834
|
},
|
|
103427
|
-
"privacy": "
|
|
103428
|
-
"default": "[]"
|
|
103835
|
+
"privacy": "public"
|
|
103429
103836
|
},
|
|
103430
103837
|
{
|
|
103431
103838
|
"kind": "field",
|
|
103432
|
-
"name": "
|
|
103839
|
+
"name": "value",
|
|
103433
103840
|
"type": {
|
|
103434
|
-
"text": "string"
|
|
103841
|
+
"text": "string | null"
|
|
103435
103842
|
},
|
|
103436
103843
|
"privacy": "public",
|
|
103437
|
-
"
|
|
103438
|
-
|
|
103439
|
-
|
|
103440
|
-
|
|
103441
|
-
{
|
|
103442
|
-
"kind": "field",
|
|
103443
|
-
"name": "_hiddenInput",
|
|
103444
|
-
"type": {
|
|
103445
|
-
"text": "HTMLInputElement"
|
|
103446
|
-
},
|
|
103447
|
-
"privacy": "private"
|
|
103448
|
-
},
|
|
103449
|
-
{
|
|
103450
|
-
"kind": "field",
|
|
103451
|
-
"name": "_suffixes",
|
|
103452
|
-
"type": {
|
|
103453
|
-
"text": "string[]"
|
|
103454
|
-
},
|
|
103455
|
-
"privacy": "private",
|
|
103456
|
-
"default": "['B', 'kB', 'MB', 'GB', 'TB']"
|
|
103457
|
-
},
|
|
103458
|
-
{
|
|
103459
|
-
"kind": "field",
|
|
103460
|
-
"name": "_liveRegion",
|
|
103461
|
-
"type": {
|
|
103462
|
-
"text": "HTMLParagraphElement"
|
|
103463
|
-
},
|
|
103464
|
-
"privacy": "private"
|
|
103844
|
+
"inheritedFrom": {
|
|
103845
|
+
"name": "SbbFormAssociatedMixin",
|
|
103846
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
103847
|
+
}
|
|
103465
103848
|
},
|
|
103466
103849
|
{
|
|
103467
103850
|
"kind": "field",
|
|
@@ -103474,25 +103857,10 @@
|
|
|
103474
103857
|
{
|
|
103475
103858
|
"kind": "field",
|
|
103476
103859
|
"name": "language",
|
|
103477
|
-
"privacy": "protected",
|
|
103478
|
-
"default": "new SbbLanguageController(this)"
|
|
103479
|
-
},
|
|
103480
|
-
{
|
|
103481
|
-
"kind": "field",
|
|
103482
|
-
"name": "_counter",
|
|
103483
103860
|
"type": {
|
|
103484
|
-
"text": "
|
|
103485
|
-
},
|
|
103486
|
-
"privacy": "private",
|
|
103487
|
-
"default": "0"
|
|
103488
|
-
},
|
|
103489
|
-
{
|
|
103490
|
-
"kind": "field",
|
|
103491
|
-
"name": "_dragTarget",
|
|
103492
|
-
"type": {
|
|
103493
|
-
"text": "HTMLElement | undefined"
|
|
103861
|
+
"text": "SbbLanguageController"
|
|
103494
103862
|
},
|
|
103495
|
-
"privacy": "
|
|
103863
|
+
"privacy": "protected"
|
|
103496
103864
|
},
|
|
103497
103865
|
{
|
|
103498
103866
|
"kind": "method",
|
|
@@ -103512,118 +103880,6 @@
|
|
|
103512
103880
|
}
|
|
103513
103881
|
]
|
|
103514
103882
|
},
|
|
103515
|
-
{
|
|
103516
|
-
"kind": "method",
|
|
103517
|
-
"name": "formResetCallback",
|
|
103518
|
-
"privacy": "public",
|
|
103519
|
-
"return": {
|
|
103520
|
-
"type": {
|
|
103521
|
-
"text": "void"
|
|
103522
|
-
}
|
|
103523
|
-
}
|
|
103524
|
-
},
|
|
103525
|
-
{
|
|
103526
|
-
"kind": "method",
|
|
103527
|
-
"name": "formStateRestoreCallback",
|
|
103528
|
-
"privacy": "public",
|
|
103529
|
-
"return": {
|
|
103530
|
-
"type": {
|
|
103531
|
-
"text": "void"
|
|
103532
|
-
}
|
|
103533
|
-
},
|
|
103534
|
-
"parameters": [
|
|
103535
|
-
{
|
|
103536
|
-
"name": "state",
|
|
103537
|
-
"type": {
|
|
103538
|
-
"text": "FormRestoreState | null"
|
|
103539
|
-
}
|
|
103540
|
-
},
|
|
103541
|
-
{
|
|
103542
|
-
"name": "_reason",
|
|
103543
|
-
"optional": true,
|
|
103544
|
-
"type": {
|
|
103545
|
-
"text": "FormRestoreReason"
|
|
103546
|
-
}
|
|
103547
|
-
}
|
|
103548
|
-
]
|
|
103549
|
-
},
|
|
103550
|
-
{
|
|
103551
|
-
"kind": "method",
|
|
103552
|
-
"name": "updateFormValue",
|
|
103553
|
-
"privacy": "protected",
|
|
103554
|
-
"return": {
|
|
103555
|
-
"type": {
|
|
103556
|
-
"text": "void"
|
|
103557
|
-
}
|
|
103558
|
-
},
|
|
103559
|
-
"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",
|
|
103560
|
-
"inheritedFrom": {
|
|
103561
|
-
"name": "SbbFormAssociatedMixin",
|
|
103562
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
103563
|
-
}
|
|
103564
|
-
},
|
|
103565
|
-
{
|
|
103566
|
-
"kind": "method",
|
|
103567
|
-
"name": "_checkFileEquality",
|
|
103568
|
-
"privacy": "private",
|
|
103569
|
-
"return": {
|
|
103570
|
-
"type": {
|
|
103571
|
-
"text": "boolean"
|
|
103572
|
-
}
|
|
103573
|
-
},
|
|
103574
|
-
"parameters": [
|
|
103575
|
-
{
|
|
103576
|
-
"name": "file1",
|
|
103577
|
-
"type": {
|
|
103578
|
-
"text": "Readonly<File>"
|
|
103579
|
-
}
|
|
103580
|
-
},
|
|
103581
|
-
{
|
|
103582
|
-
"name": "file2",
|
|
103583
|
-
"type": {
|
|
103584
|
-
"text": "Readonly<File>"
|
|
103585
|
-
}
|
|
103586
|
-
}
|
|
103587
|
-
]
|
|
103588
|
-
},
|
|
103589
|
-
{
|
|
103590
|
-
"kind": "method",
|
|
103591
|
-
"name": "_onFocus",
|
|
103592
|
-
"privacy": "private",
|
|
103593
|
-
"return": {
|
|
103594
|
-
"type": {
|
|
103595
|
-
"text": "void"
|
|
103596
|
-
}
|
|
103597
|
-
}
|
|
103598
|
-
},
|
|
103599
|
-
{
|
|
103600
|
-
"kind": "method",
|
|
103601
|
-
"name": "_onBlur",
|
|
103602
|
-
"privacy": "private",
|
|
103603
|
-
"return": {
|
|
103604
|
-
"type": {
|
|
103605
|
-
"text": "void"
|
|
103606
|
-
}
|
|
103607
|
-
}
|
|
103608
|
-
},
|
|
103609
|
-
{
|
|
103610
|
-
"kind": "method",
|
|
103611
|
-
"name": "_readFiles",
|
|
103612
|
-
"privacy": "private",
|
|
103613
|
-
"return": {
|
|
103614
|
-
"type": {
|
|
103615
|
-
"text": "void"
|
|
103616
|
-
}
|
|
103617
|
-
},
|
|
103618
|
-
"parameters": [
|
|
103619
|
-
{
|
|
103620
|
-
"name": "event",
|
|
103621
|
-
"type": {
|
|
103622
|
-
"text": "Event"
|
|
103623
|
-
}
|
|
103624
|
-
}
|
|
103625
|
-
]
|
|
103626
|
-
},
|
|
103627
103883
|
{
|
|
103628
103884
|
"kind": "method",
|
|
103629
103885
|
"name": "createFileList",
|
|
@@ -103654,55 +103910,8 @@
|
|
|
103654
103910
|
},
|
|
103655
103911
|
{
|
|
103656
103912
|
"kind": "method",
|
|
103657
|
-
"name": "
|
|
103658
|
-
"privacy": "
|
|
103659
|
-
"return": {
|
|
103660
|
-
"type": {
|
|
103661
|
-
"text": "void"
|
|
103662
|
-
}
|
|
103663
|
-
},
|
|
103664
|
-
"parameters": [
|
|
103665
|
-
{
|
|
103666
|
-
"name": "file",
|
|
103667
|
-
"type": {
|
|
103668
|
-
"text": "Readonly<File>"
|
|
103669
|
-
}
|
|
103670
|
-
}
|
|
103671
|
-
]
|
|
103672
|
-
},
|
|
103673
|
-
{
|
|
103674
|
-
"kind": "method",
|
|
103675
|
-
"name": "_dispatchFileChangedEvent",
|
|
103676
|
-
"privacy": "private",
|
|
103677
|
-
"return": {
|
|
103678
|
-
"type": {
|
|
103679
|
-
"text": "void"
|
|
103680
|
-
}
|
|
103681
|
-
}
|
|
103682
|
-
},
|
|
103683
|
-
{
|
|
103684
|
-
"kind": "method",
|
|
103685
|
-
"name": "_formatFileSize",
|
|
103686
|
-
"privacy": "private",
|
|
103687
|
-
"return": {
|
|
103688
|
-
"type": {
|
|
103689
|
-
"text": "string"
|
|
103690
|
-
}
|
|
103691
|
-
},
|
|
103692
|
-
"parameters": [
|
|
103693
|
-
{
|
|
103694
|
-
"name": "size",
|
|
103695
|
-
"type": {
|
|
103696
|
-
"text": "number"
|
|
103697
|
-
}
|
|
103698
|
-
}
|
|
103699
|
-
],
|
|
103700
|
-
"description": "Calculates the correct unit for the file's size."
|
|
103701
|
-
},
|
|
103702
|
-
{
|
|
103703
|
-
"kind": "method",
|
|
103704
|
-
"name": "_updateA11yLiveRegion",
|
|
103705
|
-
"privacy": "private",
|
|
103913
|
+
"name": "formResetCallback",
|
|
103914
|
+
"privacy": "public",
|
|
103706
103915
|
"return": {
|
|
103707
103916
|
"type": {
|
|
103708
103917
|
"text": "void"
|
|
@@ -103711,90 +103920,8 @@
|
|
|
103711
103920
|
},
|
|
103712
103921
|
{
|
|
103713
103922
|
"kind": "method",
|
|
103714
|
-
"name": "
|
|
103715
|
-
"privacy": "
|
|
103716
|
-
"return": {
|
|
103717
|
-
"type": {
|
|
103718
|
-
"text": "TemplateResult"
|
|
103719
|
-
}
|
|
103720
|
-
}
|
|
103721
|
-
},
|
|
103722
|
-
{
|
|
103723
|
-
"kind": "method",
|
|
103724
|
-
"name": "_onDragEnter",
|
|
103725
|
-
"privacy": "private",
|
|
103726
|
-
"return": {
|
|
103727
|
-
"type": {
|
|
103728
|
-
"text": "void"
|
|
103729
|
-
}
|
|
103730
|
-
},
|
|
103731
|
-
"parameters": [
|
|
103732
|
-
{
|
|
103733
|
-
"name": "event",
|
|
103734
|
-
"type": {
|
|
103735
|
-
"text": "DragEvent"
|
|
103736
|
-
}
|
|
103737
|
-
}
|
|
103738
|
-
]
|
|
103739
|
-
},
|
|
103740
|
-
{
|
|
103741
|
-
"kind": "method",
|
|
103742
|
-
"name": "_onDragLeave",
|
|
103743
|
-
"privacy": "private",
|
|
103744
|
-
"return": {
|
|
103745
|
-
"type": {
|
|
103746
|
-
"text": "void"
|
|
103747
|
-
}
|
|
103748
|
-
},
|
|
103749
|
-
"parameters": [
|
|
103750
|
-
{
|
|
103751
|
-
"name": "event",
|
|
103752
|
-
"type": {
|
|
103753
|
-
"text": "DragEvent"
|
|
103754
|
-
}
|
|
103755
|
-
}
|
|
103756
|
-
]
|
|
103757
|
-
},
|
|
103758
|
-
{
|
|
103759
|
-
"kind": "method",
|
|
103760
|
-
"name": "_onFileDrop",
|
|
103761
|
-
"privacy": "private",
|
|
103762
|
-
"return": {
|
|
103763
|
-
"type": {
|
|
103764
|
-
"text": "void"
|
|
103765
|
-
}
|
|
103766
|
-
},
|
|
103767
|
-
"parameters": [
|
|
103768
|
-
{
|
|
103769
|
-
"name": "event",
|
|
103770
|
-
"type": {
|
|
103771
|
-
"text": "DragEvent"
|
|
103772
|
-
}
|
|
103773
|
-
}
|
|
103774
|
-
]
|
|
103775
|
-
},
|
|
103776
|
-
{
|
|
103777
|
-
"kind": "method",
|
|
103778
|
-
"name": "_blockEvent",
|
|
103779
|
-
"privacy": "private",
|
|
103780
|
-
"return": {
|
|
103781
|
-
"type": {
|
|
103782
|
-
"text": "void"
|
|
103783
|
-
}
|
|
103784
|
-
},
|
|
103785
|
-
"parameters": [
|
|
103786
|
-
{
|
|
103787
|
-
"name": "event",
|
|
103788
|
-
"type": {
|
|
103789
|
-
"text": "DragEvent"
|
|
103790
|
-
}
|
|
103791
|
-
}
|
|
103792
|
-
]
|
|
103793
|
-
},
|
|
103794
|
-
{
|
|
103795
|
-
"kind": "method",
|
|
103796
|
-
"name": "_setDragState",
|
|
103797
|
-
"privacy": "private",
|
|
103923
|
+
"name": "formStateRestoreCallback",
|
|
103924
|
+
"privacy": "public",
|
|
103798
103925
|
"return": {
|
|
103799
103926
|
"type": {
|
|
103800
103927
|
"text": "void"
|
|
@@ -103802,17 +103929,15 @@
|
|
|
103802
103929
|
},
|
|
103803
103930
|
"parameters": [
|
|
103804
103931
|
{
|
|
103805
|
-
"name": "
|
|
103806
|
-
"default": "undefined",
|
|
103932
|
+
"name": "state",
|
|
103807
103933
|
"type": {
|
|
103808
|
-
"text": "
|
|
103934
|
+
"text": "FormRestoreState | null"
|
|
103809
103935
|
}
|
|
103810
103936
|
},
|
|
103811
103937
|
{
|
|
103812
|
-
"name": "
|
|
103813
|
-
"default": "false",
|
|
103938
|
+
"name": "reason",
|
|
103814
103939
|
"type": {
|
|
103815
|
-
"text": "
|
|
103940
|
+
"text": "FormRestoreReason"
|
|
103816
103941
|
}
|
|
103817
103942
|
}
|
|
103818
103943
|
]
|
|
@@ -104036,6 +104161,21 @@
|
|
|
104036
104161
|
"module": "core/mixins/form-associated-mixin.js"
|
|
104037
104162
|
}
|
|
104038
104163
|
},
|
|
104164
|
+
{
|
|
104165
|
+
"kind": "method",
|
|
104166
|
+
"name": "updateFormValue",
|
|
104167
|
+
"privacy": "protected",
|
|
104168
|
+
"return": {
|
|
104169
|
+
"type": {
|
|
104170
|
+
"text": "void"
|
|
104171
|
+
}
|
|
104172
|
+
},
|
|
104173
|
+
"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",
|
|
104174
|
+
"inheritedFrom": {
|
|
104175
|
+
"name": "SbbFormAssociatedMixin",
|
|
104176
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
104177
|
+
}
|
|
104178
|
+
},
|
|
104039
104179
|
{
|
|
104040
104180
|
"kind": "method",
|
|
104041
104181
|
"name": "formState",
|
|
@@ -104160,100 +104300,278 @@
|
|
|
104160
104300
|
"name": "SbbFormAssociatedMixin",
|
|
104161
104301
|
"module": "core/mixins/form-associated-mixin.js"
|
|
104162
104302
|
}
|
|
104163
|
-
}
|
|
104164
|
-
],
|
|
104165
|
-
"events": [
|
|
104303
|
+
},
|
|
104166
104304
|
{
|
|
104167
|
-
"
|
|
104305
|
+
"kind": "field",
|
|
104306
|
+
"name": "['_$sbbElement$']",
|
|
104168
104307
|
"type": {
|
|
104169
|
-
"text": "
|
|
104308
|
+
"text": "boolean"
|
|
104170
104309
|
},
|
|
104171
|
-
"
|
|
104310
|
+
"privacy": "public",
|
|
104311
|
+
"static": true,
|
|
104312
|
+
"default": "true",
|
|
104313
|
+
"inheritedFrom": {
|
|
104314
|
+
"name": "SbbElement",
|
|
104315
|
+
"module": "core/base-elements/element.js"
|
|
104316
|
+
}
|
|
104172
104317
|
},
|
|
104173
104318
|
{
|
|
104174
|
-
"
|
|
104319
|
+
"kind": "field",
|
|
104320
|
+
"name": "elementName",
|
|
104175
104321
|
"type": {
|
|
104176
|
-
"text": "
|
|
104322
|
+
"text": "string"
|
|
104177
104323
|
},
|
|
104178
|
-
"
|
|
104324
|
+
"privacy": "public",
|
|
104325
|
+
"static": true,
|
|
104326
|
+
"readonly": true,
|
|
104327
|
+
"inheritedFrom": {
|
|
104328
|
+
"name": "SbbElement",
|
|
104329
|
+
"module": "core/base-elements/element.js"
|
|
104330
|
+
}
|
|
104179
104331
|
},
|
|
104180
104332
|
{
|
|
104181
|
-
"
|
|
104333
|
+
"kind": "field",
|
|
104334
|
+
"name": "elementDependencies",
|
|
104182
104335
|
"type": {
|
|
104183
|
-
"text": "
|
|
104336
|
+
"text": "SbbElementType[] | undefined"
|
|
104184
104337
|
},
|
|
104185
|
-
"
|
|
104186
|
-
|
|
104187
|
-
|
|
104188
|
-
|
|
104338
|
+
"privacy": "public",
|
|
104339
|
+
"static": true,
|
|
104340
|
+
"inheritedFrom": {
|
|
104341
|
+
"name": "SbbElement",
|
|
104342
|
+
"module": "core/base-elements/element.js"
|
|
104343
|
+
}
|
|
104344
|
+
},
|
|
104189
104345
|
{
|
|
104190
|
-
"
|
|
104346
|
+
"kind": "field",
|
|
104347
|
+
"name": "role",
|
|
104191
104348
|
"type": {
|
|
104192
|
-
"text": "'
|
|
104349
|
+
"text": "ElementInternals['role'] | undefined"
|
|
104193
104350
|
},
|
|
104194
|
-
"
|
|
104195
|
-
"
|
|
104196
|
-
"
|
|
104351
|
+
"privacy": "public",
|
|
104352
|
+
"static": true,
|
|
104353
|
+
"inheritedFrom": {
|
|
104354
|
+
"name": "SbbElement",
|
|
104355
|
+
"module": "core/base-elements/element.js"
|
|
104356
|
+
}
|
|
104197
104357
|
},
|
|
104198
104358
|
{
|
|
104199
|
-
"
|
|
104359
|
+
"kind": "field",
|
|
104360
|
+
"name": "_controllers",
|
|
104200
104361
|
"type": {
|
|
104201
|
-
"text": "
|
|
104362
|
+
"text": "Set<SbbReactiveController> | undefined"
|
|
104202
104363
|
},
|
|
104203
|
-
"
|
|
104204
|
-
"
|
|
104205
|
-
|
|
104364
|
+
"privacy": "private",
|
|
104365
|
+
"inheritedFrom": {
|
|
104366
|
+
"name": "SbbElement",
|
|
104367
|
+
"module": "core/base-elements/element.js"
|
|
104368
|
+
}
|
|
104206
104369
|
},
|
|
104207
104370
|
{
|
|
104208
|
-
"
|
|
104371
|
+
"kind": "field",
|
|
104372
|
+
"name": "_hydrationRequired",
|
|
104209
104373
|
"type": {
|
|
104210
|
-
"text": "
|
|
104374
|
+
"text": "boolean"
|
|
104211
104375
|
},
|
|
104212
|
-
"
|
|
104213
|
-
"
|
|
104214
|
-
"
|
|
104376
|
+
"privacy": "private",
|
|
104377
|
+
"default": "!!this.shadowRoot",
|
|
104378
|
+
"inheritedFrom": {
|
|
104379
|
+
"name": "SbbElement",
|
|
104380
|
+
"module": "core/base-elements/element.js"
|
|
104381
|
+
}
|
|
104215
104382
|
},
|
|
104216
104383
|
{
|
|
104217
|
-
"
|
|
104384
|
+
"kind": "field",
|
|
104385
|
+
"name": "_hydrationComplete",
|
|
104386
|
+
"privacy": "private",
|
|
104387
|
+
"default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
|
|
104388
|
+
"inheritedFrom": {
|
|
104389
|
+
"name": "SbbElement",
|
|
104390
|
+
"module": "core/base-elements/element.js"
|
|
104391
|
+
}
|
|
104392
|
+
},
|
|
104393
|
+
{
|
|
104394
|
+
"kind": "field",
|
|
104395
|
+
"name": "_resolveHydration",
|
|
104218
104396
|
"type": {
|
|
104219
|
-
"text": "
|
|
104397
|
+
"text": "(hydrationRequired: boolean) => void"
|
|
104220
104398
|
},
|
|
104221
|
-
"
|
|
104222
|
-
"
|
|
104223
|
-
|
|
104399
|
+
"privacy": "private",
|
|
104400
|
+
"inheritedFrom": {
|
|
104401
|
+
"name": "SbbElement",
|
|
104402
|
+
"module": "core/base-elements/element.js"
|
|
104403
|
+
}
|
|
104224
104404
|
},
|
|
104225
104405
|
{
|
|
104226
|
-
"
|
|
104406
|
+
"kind": "field",
|
|
104407
|
+
"name": "_textObserver",
|
|
104227
104408
|
"type": {
|
|
104228
|
-
"text": "
|
|
104409
|
+
"text": "MutationObserver | undefined"
|
|
104229
104410
|
},
|
|
104230
|
-
"
|
|
104231
|
-
"
|
|
104232
|
-
|
|
104411
|
+
"privacy": "private",
|
|
104412
|
+
"inheritedFrom": {
|
|
104413
|
+
"name": "SbbElement",
|
|
104414
|
+
"module": "core/base-elements/element.js"
|
|
104415
|
+
}
|
|
104233
104416
|
},
|
|
104234
104417
|
{
|
|
104235
|
-
"
|
|
104236
|
-
"
|
|
104237
|
-
"default": "false",
|
|
104418
|
+
"kind": "field",
|
|
104419
|
+
"name": "hydrationRequired",
|
|
104238
104420
|
"type": {
|
|
104239
104421
|
"text": "boolean"
|
|
104240
104422
|
},
|
|
104241
|
-
"
|
|
104423
|
+
"privacy": "protected",
|
|
104424
|
+
"description": "Returns whether hydration is required and not completed.",
|
|
104425
|
+
"readonly": true,
|
|
104242
104426
|
"inheritedFrom": {
|
|
104243
|
-
"name": "
|
|
104244
|
-
"module": "core/
|
|
104427
|
+
"name": "SbbElement",
|
|
104428
|
+
"module": "core/base-elements/element.js"
|
|
104429
|
+
},
|
|
104430
|
+
"default": "!!this.shadowRoot"
|
|
104431
|
+
},
|
|
104432
|
+
{
|
|
104433
|
+
"kind": "method",
|
|
104434
|
+
"name": "toggleState",
|
|
104435
|
+
"privacy": "protected",
|
|
104436
|
+
"return": {
|
|
104437
|
+
"type": {
|
|
104438
|
+
"text": "void"
|
|
104439
|
+
}
|
|
104440
|
+
},
|
|
104441
|
+
"parameters": [
|
|
104442
|
+
{
|
|
104443
|
+
"name": "value",
|
|
104444
|
+
"type": {
|
|
104445
|
+
"text": "string"
|
|
104446
|
+
}
|
|
104447
|
+
},
|
|
104448
|
+
{
|
|
104449
|
+
"name": "force",
|
|
104450
|
+
"optional": true,
|
|
104451
|
+
"type": {
|
|
104452
|
+
"text": "boolean"
|
|
104453
|
+
}
|
|
104454
|
+
}
|
|
104455
|
+
],
|
|
104456
|
+
"inheritedFrom": {
|
|
104457
|
+
"name": "SbbElement",
|
|
104458
|
+
"module": "core/base-elements/element.js"
|
|
104245
104459
|
}
|
|
104246
104460
|
},
|
|
104247
104461
|
{
|
|
104248
|
-
"
|
|
104249
|
-
"
|
|
104250
|
-
"
|
|
104251
|
-
|
|
104462
|
+
"kind": "method",
|
|
104463
|
+
"name": "_slotchangeHandler",
|
|
104464
|
+
"privacy": "private",
|
|
104465
|
+
"return": {
|
|
104466
|
+
"type": {
|
|
104467
|
+
"text": "void"
|
|
104468
|
+
}
|
|
104252
104469
|
},
|
|
104253
|
-
"
|
|
104470
|
+
"parameters": [
|
|
104471
|
+
{
|
|
104472
|
+
"name": "event",
|
|
104473
|
+
"type": {
|
|
104474
|
+
"text": "Event"
|
|
104475
|
+
}
|
|
104476
|
+
},
|
|
104477
|
+
{
|
|
104478
|
+
"name": "slot",
|
|
104479
|
+
"type": {
|
|
104480
|
+
"text": "HTMLSlotElement"
|
|
104481
|
+
}
|
|
104482
|
+
}
|
|
104483
|
+
],
|
|
104254
104484
|
"inheritedFrom": {
|
|
104255
|
-
"name": "
|
|
104256
|
-
"module": "core/
|
|
104485
|
+
"name": "SbbElement",
|
|
104486
|
+
"module": "core/base-elements/element.js"
|
|
104487
|
+
}
|
|
104488
|
+
},
|
|
104489
|
+
{
|
|
104490
|
+
"kind": "method",
|
|
104491
|
+
"name": "_handleSlotChangeForSlottedState",
|
|
104492
|
+
"privacy": "private",
|
|
104493
|
+
"return": {
|
|
104494
|
+
"type": {
|
|
104495
|
+
"text": "void"
|
|
104496
|
+
}
|
|
104497
|
+
},
|
|
104498
|
+
"parameters": [
|
|
104499
|
+
{
|
|
104500
|
+
"name": "slot",
|
|
104501
|
+
"type": {
|
|
104502
|
+
"text": "HTMLSlotElement"
|
|
104503
|
+
}
|
|
104504
|
+
}
|
|
104505
|
+
],
|
|
104506
|
+
"inheritedFrom": {
|
|
104507
|
+
"name": "SbbElement",
|
|
104508
|
+
"module": "core/base-elements/element.js"
|
|
104509
|
+
}
|
|
104510
|
+
},
|
|
104511
|
+
{
|
|
104512
|
+
"kind": "method",
|
|
104513
|
+
"name": "_updateSlottedState",
|
|
104514
|
+
"privacy": "private",
|
|
104515
|
+
"return": {
|
|
104516
|
+
"type": {
|
|
104517
|
+
"text": "void"
|
|
104518
|
+
}
|
|
104519
|
+
},
|
|
104520
|
+
"parameters": [
|
|
104521
|
+
{
|
|
104522
|
+
"name": "slot",
|
|
104523
|
+
"type": {
|
|
104524
|
+
"text": "HTMLSlotElement"
|
|
104525
|
+
}
|
|
104526
|
+
}
|
|
104527
|
+
],
|
|
104528
|
+
"inheritedFrom": {
|
|
104529
|
+
"name": "SbbElement",
|
|
104530
|
+
"module": "core/base-elements/element.js"
|
|
104531
|
+
}
|
|
104532
|
+
},
|
|
104533
|
+
{
|
|
104534
|
+
"kind": "method",
|
|
104535
|
+
"name": "_observeTextNodesInSlot",
|
|
104536
|
+
"privacy": "private",
|
|
104537
|
+
"return": {
|
|
104538
|
+
"type": {
|
|
104539
|
+
"text": "void"
|
|
104540
|
+
}
|
|
104541
|
+
},
|
|
104542
|
+
"parameters": [
|
|
104543
|
+
{
|
|
104544
|
+
"name": "slot",
|
|
104545
|
+
"type": {
|
|
104546
|
+
"text": "HTMLSlotElement"
|
|
104547
|
+
}
|
|
104548
|
+
}
|
|
104549
|
+
],
|
|
104550
|
+
"inheritedFrom": {
|
|
104551
|
+
"name": "SbbElement",
|
|
104552
|
+
"module": "core/base-elements/element.js"
|
|
104553
|
+
}
|
|
104554
|
+
},
|
|
104555
|
+
{
|
|
104556
|
+
"kind": "method",
|
|
104557
|
+
"name": "_hasSlottedContent",
|
|
104558
|
+
"privacy": "private",
|
|
104559
|
+
"return": {
|
|
104560
|
+
"type": {
|
|
104561
|
+
"text": "boolean"
|
|
104562
|
+
}
|
|
104563
|
+
},
|
|
104564
|
+
"parameters": [
|
|
104565
|
+
{
|
|
104566
|
+
"name": "slot",
|
|
104567
|
+
"type": {
|
|
104568
|
+
"text": "HTMLSlotElement"
|
|
104569
|
+
}
|
|
104570
|
+
}
|
|
104571
|
+
],
|
|
104572
|
+
"inheritedFrom": {
|
|
104573
|
+
"name": "SbbElement",
|
|
104574
|
+
"module": "core/base-elements/element.js"
|
|
104257
104575
|
}
|
|
104258
104576
|
}
|
|
104259
104577
|
],
|
|
@@ -104267,76 +104585,52 @@
|
|
|
104267
104585
|
"module": "core.js"
|
|
104268
104586
|
}
|
|
104269
104587
|
],
|
|
104270
|
-
"
|
|
104588
|
+
"superclass": {
|
|
104589
|
+
"name": "SbbElement",
|
|
104590
|
+
"module": "core.js"
|
|
104591
|
+
},
|
|
104592
|
+
"attributes": [
|
|
104271
104593
|
{
|
|
104272
|
-
"name": "
|
|
104594
|
+
"name": "disabled",
|
|
104595
|
+
"description": "Whether the component is disabled.",
|
|
104596
|
+
"default": "false",
|
|
104273
104597
|
"type": {
|
|
104274
|
-
"text": "
|
|
104598
|
+
"text": "boolean"
|
|
104599
|
+
},
|
|
104600
|
+
"fieldName": "disabled",
|
|
104601
|
+
"inheritedFrom": {
|
|
104602
|
+
"name": "SbbDisabledMixin",
|
|
104603
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
104604
|
+
}
|
|
104605
|
+
},
|
|
104606
|
+
{
|
|
104607
|
+
"name": "name",
|
|
104608
|
+
"description": "Name of the form element. Will be read from name attribute.",
|
|
104609
|
+
"type": {
|
|
104610
|
+
"text": "string"
|
|
104611
|
+
},
|
|
104612
|
+
"fieldName": "name",
|
|
104613
|
+
"inheritedFrom": {
|
|
104614
|
+
"name": "SbbFormAssociatedMixin",
|
|
104615
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
104275
104616
|
}
|
|
104276
104617
|
}
|
|
104277
104618
|
]
|
|
104278
|
-
}
|
|
104279
|
-
],
|
|
104280
|
-
"exports": [
|
|
104281
|
-
{
|
|
104282
|
-
"kind": "js",
|
|
104283
|
-
"name": "fileSelectorCommonStyle",
|
|
104284
|
-
"declaration": {
|
|
104285
|
-
"name": "fileSelectorCommonStyle",
|
|
104286
|
-
"module": "file-selector/common/file-selector-common.js"
|
|
104287
|
-
}
|
|
104288
104619
|
},
|
|
104289
104620
|
{
|
|
104290
|
-
"kind": "
|
|
104291
|
-
"
|
|
104292
|
-
"declaration": {
|
|
104293
|
-
"name": "SbbFileSelectorCommonElementMixinType",
|
|
104294
|
-
"module": "file-selector/common/file-selector-common.js"
|
|
104295
|
-
}
|
|
104296
|
-
},
|
|
104297
|
-
{
|
|
104298
|
-
"kind": "js",
|
|
104621
|
+
"kind": "mixin",
|
|
104622
|
+
"description": "",
|
|
104299
104623
|
"name": "SbbFileSelectorCommonElementMixin",
|
|
104300
|
-
"declaration": {
|
|
104301
|
-
"name": "SbbFileSelectorCommonElementMixin",
|
|
104302
|
-
"module": "file-selector/common/file-selector-common.js"
|
|
104303
|
-
}
|
|
104304
|
-
}
|
|
104305
|
-
]
|
|
104306
|
-
},
|
|
104307
|
-
{
|
|
104308
|
-
"kind": "javascript-module",
|
|
104309
|
-
"path": "expansion-panel/expansion-panel-header/expansion-panel-header.component.js",
|
|
104310
|
-
"declarations": [
|
|
104311
|
-
{
|
|
104312
|
-
"kind": "class",
|
|
104313
|
-
"description": "It acts as a native `summary` tag for the `sbb-expansion-panel` component.",
|
|
104314
|
-
"name": "SbbExpansionPanelHeaderElement",
|
|
104315
|
-
"slots": [
|
|
104316
|
-
{
|
|
104317
|
-
"description": "Use the unnamed slot to add content to the `sbb-expansion-panel-header`.",
|
|
104318
|
-
"name": ""
|
|
104319
|
-
},
|
|
104320
|
-
{
|
|
104321
|
-
"description": "Slot used to render the `sbb-expansion-panel-header` icon.",
|
|
104322
|
-
"name": "icon"
|
|
104323
|
-
}
|
|
104324
|
-
],
|
|
104325
104624
|
"members": [
|
|
104326
104625
|
{
|
|
104327
104626
|
"kind": "field",
|
|
104328
|
-
"name": "
|
|
104627
|
+
"name": "elementDependencies",
|
|
104329
104628
|
"type": {
|
|
104330
|
-
"text": "
|
|
104629
|
+
"text": "SbbElementType[]"
|
|
104331
104630
|
},
|
|
104332
104631
|
"privacy": "public",
|
|
104333
104632
|
"static": true,
|
|
104334
|
-
"
|
|
104335
|
-
"inheritedFrom": {
|
|
104336
|
-
"name": "SbbElement",
|
|
104337
|
-
"module": "core/base-elements/element.js"
|
|
104338
|
-
},
|
|
104339
|
-
"default": "'sbb-expansion-panel-header'"
|
|
104633
|
+
"default": "[SbbSecondaryButtonElement]"
|
|
104340
104634
|
},
|
|
104341
104635
|
{
|
|
104342
104636
|
"kind": "field",
|
|
@@ -104344,37 +104638,187 @@
|
|
|
104344
104638
|
"privacy": "public",
|
|
104345
104639
|
"static": true,
|
|
104346
104640
|
"readonly": true,
|
|
104347
|
-
"default": "{
|
|
104641
|
+
"default": "{ filechanged: 'filechanged', }",
|
|
104348
104642
|
"type": {
|
|
104349
|
-
"text": "{\n
|
|
104643
|
+
"text": "{\n filechanged: 'filechanged',\n }"
|
|
104350
104644
|
}
|
|
104351
104645
|
},
|
|
104352
104646
|
{
|
|
104353
104647
|
"kind": "field",
|
|
104354
|
-
"name": "
|
|
104355
|
-
"
|
|
104356
|
-
|
|
104648
|
+
"name": "size",
|
|
104649
|
+
"type": {
|
|
104650
|
+
"text": "'s' | 'm'"
|
|
104651
|
+
},
|
|
104652
|
+
"privacy": "public",
|
|
104653
|
+
"description": "Size variant, either s or m.",
|
|
104654
|
+
"default": "'m' / 's' (lean)",
|
|
104655
|
+
"attribute": "size",
|
|
104656
|
+
"reflects": true
|
|
104357
104657
|
},
|
|
104358
104658
|
{
|
|
104359
104659
|
"kind": "field",
|
|
104360
|
-
"name": "
|
|
104660
|
+
"name": "multiple",
|
|
104361
104661
|
"type": {
|
|
104362
104662
|
"text": "boolean"
|
|
104363
104663
|
},
|
|
104664
|
+
"privacy": "public",
|
|
104665
|
+
"default": "false",
|
|
104666
|
+
"description": "Whether more than one file can be selected.",
|
|
104667
|
+
"attribute": "multiple"
|
|
104668
|
+
},
|
|
104669
|
+
{
|
|
104670
|
+
"kind": "field",
|
|
104671
|
+
"name": "multipleMode",
|
|
104672
|
+
"type": {
|
|
104673
|
+
"text": "'default' | 'persistent'"
|
|
104674
|
+
},
|
|
104675
|
+
"privacy": "public",
|
|
104676
|
+
"default": "'default'",
|
|
104677
|
+
"description": "Whether the newly added files should override the previously added ones.",
|
|
104678
|
+
"attribute": "multiple-mode"
|
|
104679
|
+
},
|
|
104680
|
+
{
|
|
104681
|
+
"kind": "field",
|
|
104682
|
+
"name": "accept",
|
|
104683
|
+
"type": {
|
|
104684
|
+
"text": "string"
|
|
104685
|
+
},
|
|
104686
|
+
"privacy": "public",
|
|
104687
|
+
"default": "''",
|
|
104688
|
+
"description": "A comma-separated list of allowed unique file type specifiers.",
|
|
104689
|
+
"attribute": "accept"
|
|
104690
|
+
},
|
|
104691
|
+
{
|
|
104692
|
+
"kind": "field",
|
|
104693
|
+
"name": "accessibilityLabel",
|
|
104694
|
+
"type": {
|
|
104695
|
+
"text": "string"
|
|
104696
|
+
},
|
|
104697
|
+
"privacy": "public",
|
|
104698
|
+
"default": "''",
|
|
104699
|
+
"description": "This will be forwarded as aria-label to the native input element.",
|
|
104700
|
+
"attribute": "accessibility-label"
|
|
104701
|
+
},
|
|
104702
|
+
{
|
|
104703
|
+
"kind": "field",
|
|
104704
|
+
"name": "value",
|
|
104705
|
+
"type": {
|
|
104706
|
+
"text": "string | null"
|
|
104707
|
+
},
|
|
104708
|
+
"privacy": "public",
|
|
104709
|
+
"description": "The path of the first selected file. Empty string ('') if no file is selected",
|
|
104710
|
+
"inheritedFrom": {
|
|
104711
|
+
"name": "SbbFormAssociatedMixin",
|
|
104712
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
104713
|
+
}
|
|
104714
|
+
},
|
|
104715
|
+
{
|
|
104716
|
+
"kind": "field",
|
|
104717
|
+
"name": "files",
|
|
104718
|
+
"privacy": "public",
|
|
104719
|
+
"description": "The list of selected files.",
|
|
104720
|
+
"type": {
|
|
104721
|
+
"text": "Readonly<File>[]"
|
|
104722
|
+
}
|
|
104723
|
+
},
|
|
104724
|
+
{
|
|
104725
|
+
"kind": "field",
|
|
104726
|
+
"name": "_files",
|
|
104727
|
+
"type": {
|
|
104728
|
+
"text": "Readonly<File>[]"
|
|
104729
|
+
},
|
|
104730
|
+
"privacy": "private",
|
|
104731
|
+
"default": "[]"
|
|
104732
|
+
},
|
|
104733
|
+
{
|
|
104734
|
+
"kind": "field",
|
|
104735
|
+
"name": "type",
|
|
104736
|
+
"type": {
|
|
104737
|
+
"text": "string"
|
|
104738
|
+
},
|
|
104739
|
+
"privacy": "public",
|
|
104740
|
+
"description": "Form type of element.",
|
|
104741
|
+
"default": "'file'",
|
|
104742
|
+
"readonly": true
|
|
104743
|
+
},
|
|
104744
|
+
{
|
|
104745
|
+
"kind": "field",
|
|
104746
|
+
"name": "_hiddenInput",
|
|
104747
|
+
"type": {
|
|
104748
|
+
"text": "HTMLInputElement"
|
|
104749
|
+
},
|
|
104364
104750
|
"privacy": "private"
|
|
104365
104751
|
},
|
|
104366
104752
|
{
|
|
104367
104753
|
"kind": "field",
|
|
104368
|
-
"name": "
|
|
104754
|
+
"name": "_suffixes",
|
|
104369
104755
|
"type": {
|
|
104370
|
-
"text": "string
|
|
104756
|
+
"text": "string[]"
|
|
104757
|
+
},
|
|
104758
|
+
"privacy": "private",
|
|
104759
|
+
"default": "['B', 'kB', 'MB', 'GB', 'TB']"
|
|
104760
|
+
},
|
|
104761
|
+
{
|
|
104762
|
+
"kind": "field",
|
|
104763
|
+
"name": "_liveRegion",
|
|
104764
|
+
"type": {
|
|
104765
|
+
"text": "HTMLParagraphElement"
|
|
104371
104766
|
},
|
|
104372
104767
|
"privacy": "private"
|
|
104373
104768
|
},
|
|
104374
104769
|
{
|
|
104375
|
-
"kind": "
|
|
104376
|
-
"name": "
|
|
104770
|
+
"kind": "field",
|
|
104771
|
+
"name": "loadButton",
|
|
104772
|
+
"type": {
|
|
104773
|
+
"text": "SbbSecondaryButtonStaticElement"
|
|
104774
|
+
},
|
|
104775
|
+
"privacy": "protected"
|
|
104776
|
+
},
|
|
104777
|
+
{
|
|
104778
|
+
"kind": "field",
|
|
104779
|
+
"name": "language",
|
|
104780
|
+
"privacy": "protected",
|
|
104781
|
+
"default": "new SbbLanguageController(this)"
|
|
104782
|
+
},
|
|
104783
|
+
{
|
|
104784
|
+
"kind": "field",
|
|
104785
|
+
"name": "_counter",
|
|
104786
|
+
"type": {
|
|
104787
|
+
"text": "number"
|
|
104788
|
+
},
|
|
104377
104789
|
"privacy": "private",
|
|
104790
|
+
"default": "0"
|
|
104791
|
+
},
|
|
104792
|
+
{
|
|
104793
|
+
"kind": "field",
|
|
104794
|
+
"name": "_dragTarget",
|
|
104795
|
+
"type": {
|
|
104796
|
+
"text": "HTMLElement | undefined"
|
|
104797
|
+
},
|
|
104798
|
+
"privacy": "private"
|
|
104799
|
+
},
|
|
104800
|
+
{
|
|
104801
|
+
"kind": "method",
|
|
104802
|
+
"name": "renderTemplate",
|
|
104803
|
+
"privacy": "protected",
|
|
104804
|
+
"return": {
|
|
104805
|
+
"type": {
|
|
104806
|
+
"text": "TemplateResult"
|
|
104807
|
+
}
|
|
104808
|
+
},
|
|
104809
|
+
"parameters": [
|
|
104810
|
+
{
|
|
104811
|
+
"name": "input",
|
|
104812
|
+
"type": {
|
|
104813
|
+
"text": "TemplateResult"
|
|
104814
|
+
}
|
|
104815
|
+
}
|
|
104816
|
+
]
|
|
104817
|
+
},
|
|
104818
|
+
{
|
|
104819
|
+
"kind": "method",
|
|
104820
|
+
"name": "formResetCallback",
|
|
104821
|
+
"privacy": "public",
|
|
104378
104822
|
"return": {
|
|
104379
104823
|
"type": {
|
|
104380
104824
|
"text": "void"
|
|
@@ -104383,8 +104827,8 @@
|
|
|
104383
104827
|
},
|
|
104384
104828
|
{
|
|
104385
104829
|
"kind": "method",
|
|
104386
|
-
"name": "
|
|
104387
|
-
"privacy": "
|
|
104830
|
+
"name": "formStateRestoreCallback",
|
|
104831
|
+
"privacy": "public",
|
|
104388
104832
|
"return": {
|
|
104389
104833
|
"type": {
|
|
104390
104834
|
"text": "void"
|
|
@@ -104392,262 +104836,267 @@
|
|
|
104392
104836
|
},
|
|
104393
104837
|
"parameters": [
|
|
104394
104838
|
{
|
|
104395
|
-
"name": "
|
|
104839
|
+
"name": "state",
|
|
104396
104840
|
"type": {
|
|
104397
|
-
"text": "
|
|
104841
|
+
"text": "FormRestoreState | null"
|
|
104842
|
+
}
|
|
104843
|
+
},
|
|
104844
|
+
{
|
|
104845
|
+
"name": "_reason",
|
|
104846
|
+
"optional": true,
|
|
104847
|
+
"type": {
|
|
104848
|
+
"text": "FormRestoreReason"
|
|
104398
104849
|
}
|
|
104399
104850
|
}
|
|
104400
104851
|
]
|
|
104401
104852
|
},
|
|
104402
104853
|
{
|
|
104403
104854
|
"kind": "method",
|
|
104404
|
-
"name": "
|
|
104405
|
-
"privacy": "
|
|
104855
|
+
"name": "updateFormValue",
|
|
104856
|
+
"privacy": "protected",
|
|
104406
104857
|
"return": {
|
|
104407
104858
|
"type": {
|
|
104408
104859
|
"text": "void"
|
|
104409
104860
|
}
|
|
104410
104861
|
},
|
|
104411
|
-
"description": "
|
|
104862
|
+
"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",
|
|
104863
|
+
"inheritedFrom": {
|
|
104864
|
+
"name": "SbbFormAssociatedMixin",
|
|
104865
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
104866
|
+
}
|
|
104412
104867
|
},
|
|
104413
104868
|
{
|
|
104414
104869
|
"kind": "method",
|
|
104415
|
-
"name": "
|
|
104416
|
-
"privacy": "
|
|
104870
|
+
"name": "_checkFileEquality",
|
|
104871
|
+
"privacy": "private",
|
|
104417
104872
|
"return": {
|
|
104418
104873
|
"type": {
|
|
104419
|
-
"text": "
|
|
104874
|
+
"text": "boolean"
|
|
104420
104875
|
}
|
|
104421
104876
|
},
|
|
104422
|
-
"
|
|
104423
|
-
|
|
104424
|
-
|
|
104425
|
-
|
|
104426
|
-
|
|
104877
|
+
"parameters": [
|
|
104878
|
+
{
|
|
104879
|
+
"name": "file1",
|
|
104880
|
+
"type": {
|
|
104881
|
+
"text": "Readonly<File>"
|
|
104882
|
+
}
|
|
104883
|
+
},
|
|
104884
|
+
{
|
|
104885
|
+
"name": "file2",
|
|
104886
|
+
"type": {
|
|
104887
|
+
"text": "Readonly<File>"
|
|
104888
|
+
}
|
|
104889
|
+
}
|
|
104890
|
+
]
|
|
104427
104891
|
},
|
|
104428
104892
|
{
|
|
104429
|
-
"kind": "
|
|
104430
|
-
"name": "
|
|
104431
|
-
"
|
|
104432
|
-
|
|
104433
|
-
|
|
104434
|
-
|
|
104435
|
-
|
|
104436
|
-
"description": "Whether the button should be aria-disabled but stay interactive.",
|
|
104437
|
-
"attribute": "disabled-interactive",
|
|
104438
|
-
"reflects": true,
|
|
104439
|
-
"inheritedFrom": {
|
|
104440
|
-
"name": "SbbDisabledInteractiveMixin",
|
|
104441
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
104893
|
+
"kind": "method",
|
|
104894
|
+
"name": "_onFocus",
|
|
104895
|
+
"privacy": "private",
|
|
104896
|
+
"return": {
|
|
104897
|
+
"type": {
|
|
104898
|
+
"text": "void"
|
|
104899
|
+
}
|
|
104442
104900
|
}
|
|
104443
104901
|
},
|
|
104444
104902
|
{
|
|
104445
|
-
"kind": "
|
|
104446
|
-
"name": "
|
|
104447
|
-
"privacy": "
|
|
104448
|
-
"
|
|
104449
|
-
|
|
104450
|
-
|
|
104451
|
-
|
|
104452
|
-
},
|
|
104453
|
-
"attribute": "disabled",
|
|
104454
|
-
"reflects": true,
|
|
104455
|
-
"inheritedFrom": {
|
|
104456
|
-
"name": "SbbDisabledMixin",
|
|
104457
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
104903
|
+
"kind": "method",
|
|
104904
|
+
"name": "_onBlur",
|
|
104905
|
+
"privacy": "private",
|
|
104906
|
+
"return": {
|
|
104907
|
+
"type": {
|
|
104908
|
+
"text": "void"
|
|
104909
|
+
}
|
|
104458
104910
|
}
|
|
104459
104911
|
},
|
|
104460
104912
|
{
|
|
104461
|
-
"kind": "
|
|
104462
|
-
"name": "
|
|
104913
|
+
"kind": "method",
|
|
104914
|
+
"name": "_readFiles",
|
|
104463
104915
|
"privacy": "private",
|
|
104464
|
-
"
|
|
104465
|
-
"
|
|
104916
|
+
"return": {
|
|
104917
|
+
"type": {
|
|
104918
|
+
"text": "void"
|
|
104919
|
+
}
|
|
104466
104920
|
},
|
|
104467
|
-
"
|
|
104468
|
-
|
|
104469
|
-
|
|
104470
|
-
|
|
104471
|
-
|
|
104921
|
+
"parameters": [
|
|
104922
|
+
{
|
|
104923
|
+
"name": "event",
|
|
104924
|
+
"type": {
|
|
104925
|
+
"text": "Event"
|
|
104926
|
+
}
|
|
104927
|
+
}
|
|
104928
|
+
]
|
|
104472
104929
|
},
|
|
104473
104930
|
{
|
|
104474
104931
|
"kind": "method",
|
|
104475
|
-
"name": "
|
|
104932
|
+
"name": "createFileList",
|
|
104476
104933
|
"privacy": "protected",
|
|
104477
104934
|
"return": {
|
|
104478
104935
|
"type": {
|
|
104479
|
-
"text": "
|
|
104936
|
+
"text": "void"
|
|
104480
104937
|
}
|
|
104481
104938
|
},
|
|
104482
|
-
"
|
|
104483
|
-
|
|
104484
|
-
|
|
104485
|
-
|
|
104486
|
-
|
|
104487
|
-
|
|
104488
|
-
|
|
104489
|
-
|
|
104490
|
-
"name": "elementDependencies",
|
|
104491
|
-
"type": {
|
|
104492
|
-
"text": "SbbElementType[]"
|
|
104493
|
-
},
|
|
104494
|
-
"privacy": "public",
|
|
104495
|
-
"static": true,
|
|
104496
|
-
"inheritedFrom": {
|
|
104497
|
-
"name": "SbbElement",
|
|
104498
|
-
"module": "core/base-elements/element.js"
|
|
104499
|
-
},
|
|
104500
|
-
"default": "[SbbIconElement]"
|
|
104939
|
+
"parameters": [
|
|
104940
|
+
{
|
|
104941
|
+
"name": "files",
|
|
104942
|
+
"type": {
|
|
104943
|
+
"text": "FileList"
|
|
104944
|
+
}
|
|
104945
|
+
}
|
|
104946
|
+
]
|
|
104501
104947
|
},
|
|
104502
104948
|
{
|
|
104503
|
-
"kind": "
|
|
104504
|
-
"name": "
|
|
104505
|
-
"
|
|
104506
|
-
|
|
104507
|
-
|
|
104508
|
-
|
|
104509
|
-
|
|
104510
|
-
"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.",
|
|
104511
|
-
"attribute": "icon-name",
|
|
104512
|
-
"inheritedFrom": {
|
|
104513
|
-
"name": "SbbIconNameMixin",
|
|
104514
|
-
"module": "icon/icon-name-mixin.js"
|
|
104949
|
+
"kind": "method",
|
|
104950
|
+
"name": "getButtonLabel",
|
|
104951
|
+
"privacy": "protected",
|
|
104952
|
+
"return": {
|
|
104953
|
+
"type": {
|
|
104954
|
+
"text": "string"
|
|
104955
|
+
}
|
|
104515
104956
|
}
|
|
104516
104957
|
},
|
|
104517
104958
|
{
|
|
104518
104959
|
"kind": "method",
|
|
104519
|
-
"name": "
|
|
104520
|
-
"privacy": "
|
|
104960
|
+
"name": "_removeFile",
|
|
104961
|
+
"privacy": "private",
|
|
104521
104962
|
"return": {
|
|
104522
104963
|
"type": {
|
|
104523
|
-
"text": "
|
|
104964
|
+
"text": "void"
|
|
104524
104965
|
}
|
|
104525
104966
|
},
|
|
104526
104967
|
"parameters": [
|
|
104527
104968
|
{
|
|
104528
|
-
"name": "
|
|
104529
|
-
"optional": true,
|
|
104969
|
+
"name": "file",
|
|
104530
104970
|
"type": {
|
|
104531
|
-
"text": "
|
|
104971
|
+
"text": "Readonly<File>"
|
|
104532
104972
|
}
|
|
104533
104973
|
}
|
|
104534
|
-
]
|
|
104535
|
-
"inheritedFrom": {
|
|
104536
|
-
"name": "SbbIconNameMixin",
|
|
104537
|
-
"module": "icon/icon-name-mixin.js"
|
|
104538
|
-
}
|
|
104974
|
+
]
|
|
104539
104975
|
},
|
|
104540
104976
|
{
|
|
104541
104977
|
"kind": "method",
|
|
104542
|
-
"name": "
|
|
104543
|
-
"privacy": "
|
|
104978
|
+
"name": "_dispatchFileChangedEvent",
|
|
104979
|
+
"privacy": "private",
|
|
104544
104980
|
"return": {
|
|
104545
104981
|
"type": {
|
|
104546
|
-
"text": "
|
|
104982
|
+
"text": "void"
|
|
104547
104983
|
}
|
|
104548
|
-
},
|
|
104549
|
-
"inheritedFrom": {
|
|
104550
|
-
"name": "SbbIconNameMixin",
|
|
104551
|
-
"module": "icon/icon-name-mixin.js"
|
|
104552
104984
|
}
|
|
104553
104985
|
},
|
|
104554
104986
|
{
|
|
104555
104987
|
"kind": "method",
|
|
104556
|
-
"name": "
|
|
104988
|
+
"name": "_formatFileSize",
|
|
104557
104989
|
"privacy": "private",
|
|
104558
104990
|
"return": {
|
|
104559
104991
|
"type": {
|
|
104560
104992
|
"text": "string"
|
|
104561
104993
|
}
|
|
104562
104994
|
},
|
|
104563
|
-
"
|
|
104564
|
-
|
|
104565
|
-
|
|
104566
|
-
|
|
104995
|
+
"parameters": [
|
|
104996
|
+
{
|
|
104997
|
+
"name": "size",
|
|
104998
|
+
"type": {
|
|
104999
|
+
"text": "number"
|
|
105000
|
+
}
|
|
105001
|
+
}
|
|
105002
|
+
],
|
|
105003
|
+
"description": "Calculates the correct unit for the file's size."
|
|
104567
105004
|
},
|
|
104568
105005
|
{
|
|
104569
|
-
"kind": "
|
|
104570
|
-
"name": "
|
|
104571
|
-
"type": {
|
|
104572
|
-
"text": "array"
|
|
104573
|
-
},
|
|
105006
|
+
"kind": "method",
|
|
105007
|
+
"name": "_updateA11yLiveRegion",
|
|
104574
105008
|
"privacy": "private",
|
|
104575
|
-
"
|
|
104576
|
-
|
|
104577
|
-
|
|
104578
|
-
|
|
104579
|
-
"module": "core/base-elements/button-base-element.js"
|
|
105009
|
+
"return": {
|
|
105010
|
+
"type": {
|
|
105011
|
+
"text": "void"
|
|
105012
|
+
}
|
|
104580
105013
|
}
|
|
104581
105014
|
},
|
|
104582
105015
|
{
|
|
104583
|
-
"kind": "
|
|
104584
|
-
"name": "
|
|
104585
|
-
"
|
|
104586
|
-
|
|
104587
|
-
|
|
104588
|
-
|
|
104589
|
-
|
|
104590
|
-
|
|
104591
|
-
"module": "core/base-elements/button-base-element.js"
|
|
104592
|
-
},
|
|
104593
|
-
"default": "''",
|
|
104594
|
-
"description": "Value of the form element.",
|
|
104595
|
-
"attribute": "value"
|
|
105016
|
+
"kind": "method",
|
|
105017
|
+
"name": "_renderFileList",
|
|
105018
|
+
"privacy": "private",
|
|
105019
|
+
"return": {
|
|
105020
|
+
"type": {
|
|
105021
|
+
"text": "TemplateResult"
|
|
105022
|
+
}
|
|
105023
|
+
}
|
|
104596
105024
|
},
|
|
104597
105025
|
{
|
|
104598
|
-
"kind": "
|
|
104599
|
-
"name": "
|
|
104600
|
-
"privacy": "
|
|
104601
|
-
"
|
|
104602
|
-
|
|
104603
|
-
|
|
104604
|
-
|
|
105026
|
+
"kind": "method",
|
|
105027
|
+
"name": "_onDragEnter",
|
|
105028
|
+
"privacy": "private",
|
|
105029
|
+
"return": {
|
|
105030
|
+
"type": {
|
|
105031
|
+
"text": "void"
|
|
105032
|
+
}
|
|
104605
105033
|
},
|
|
104606
|
-
"
|
|
104607
|
-
|
|
104608
|
-
|
|
104609
|
-
|
|
104610
|
-
|
|
105034
|
+
"parameters": [
|
|
105035
|
+
{
|
|
105036
|
+
"name": "event",
|
|
105037
|
+
"type": {
|
|
105038
|
+
"text": "DragEvent"
|
|
105039
|
+
}
|
|
105040
|
+
}
|
|
105041
|
+
]
|
|
104611
105042
|
},
|
|
104612
105043
|
{
|
|
104613
|
-
"kind": "
|
|
104614
|
-
"name": "
|
|
104615
|
-
"
|
|
104616
|
-
|
|
104617
|
-
|
|
104618
|
-
|
|
104619
|
-
|
|
104620
|
-
"inheritedFrom": {
|
|
104621
|
-
"name": "SbbButtonBaseElement",
|
|
104622
|
-
"module": "core/base-elements/button-base-element.js"
|
|
105044
|
+
"kind": "method",
|
|
105045
|
+
"name": "_onDragLeave",
|
|
105046
|
+
"privacy": "private",
|
|
105047
|
+
"return": {
|
|
105048
|
+
"type": {
|
|
105049
|
+
"text": "void"
|
|
105050
|
+
}
|
|
104623
105051
|
},
|
|
104624
|
-
"
|
|
105052
|
+
"parameters": [
|
|
105053
|
+
{
|
|
105054
|
+
"name": "event",
|
|
105055
|
+
"type": {
|
|
105056
|
+
"text": "DragEvent"
|
|
105057
|
+
}
|
|
105058
|
+
}
|
|
105059
|
+
]
|
|
104625
105060
|
},
|
|
104626
105061
|
{
|
|
104627
|
-
"kind": "
|
|
104628
|
-
"name": "
|
|
104629
|
-
"type": {
|
|
104630
|
-
"text": "string"
|
|
104631
|
-
},
|
|
105062
|
+
"kind": "method",
|
|
105063
|
+
"name": "_onFileDrop",
|
|
104632
105064
|
"privacy": "private",
|
|
104633
|
-
"
|
|
104634
|
-
|
|
104635
|
-
|
|
104636
|
-
|
|
104637
|
-
}
|
|
105065
|
+
"return": {
|
|
105066
|
+
"type": {
|
|
105067
|
+
"text": "void"
|
|
105068
|
+
}
|
|
105069
|
+
},
|
|
105070
|
+
"parameters": [
|
|
105071
|
+
{
|
|
105072
|
+
"name": "event",
|
|
105073
|
+
"type": {
|
|
105074
|
+
"text": "DragEvent"
|
|
105075
|
+
}
|
|
105076
|
+
}
|
|
105077
|
+
]
|
|
104638
105078
|
},
|
|
104639
105079
|
{
|
|
104640
|
-
"kind": "
|
|
104641
|
-
"name": "
|
|
105080
|
+
"kind": "method",
|
|
105081
|
+
"name": "_blockEvent",
|
|
104642
105082
|
"privacy": "private",
|
|
104643
|
-
"
|
|
104644
|
-
"
|
|
104645
|
-
|
|
104646
|
-
|
|
105083
|
+
"return": {
|
|
105084
|
+
"type": {
|
|
105085
|
+
"text": "void"
|
|
105086
|
+
}
|
|
105087
|
+
},
|
|
105088
|
+
"parameters": [
|
|
105089
|
+
{
|
|
105090
|
+
"name": "event",
|
|
105091
|
+
"type": {
|
|
105092
|
+
"text": "DragEvent"
|
|
105093
|
+
}
|
|
105094
|
+
}
|
|
105095
|
+
]
|
|
104647
105096
|
},
|
|
104648
105097
|
{
|
|
104649
105098
|
"kind": "method",
|
|
104650
|
-
"name": "
|
|
105099
|
+
"name": "_setDragState",
|
|
104651
105100
|
"privacy": "private",
|
|
104652
105101
|
"return": {
|
|
104653
105102
|
"type": {
|
|
@@ -104656,24 +105105,63 @@
|
|
|
104656
105105
|
},
|
|
104657
105106
|
"parameters": [
|
|
104658
105107
|
{
|
|
104659
|
-
"name": "
|
|
105108
|
+
"name": "dragTarget",
|
|
105109
|
+
"default": "undefined",
|
|
104660
105110
|
"type": {
|
|
104661
|
-
"text": "
|
|
105111
|
+
"text": "HTMLElement | undefined"
|
|
105112
|
+
}
|
|
105113
|
+
},
|
|
105114
|
+
{
|
|
105115
|
+
"name": "isDragEnter",
|
|
105116
|
+
"default": "false",
|
|
105117
|
+
"type": {
|
|
105118
|
+
"text": "boolean"
|
|
104662
105119
|
}
|
|
104663
105120
|
}
|
|
104664
|
-
]
|
|
105121
|
+
]
|
|
105122
|
+
},
|
|
105123
|
+
{
|
|
105124
|
+
"kind": "field",
|
|
105125
|
+
"name": "disabled",
|
|
105126
|
+
"privacy": "public",
|
|
105127
|
+
"description": "Whether the component is disabled.",
|
|
105128
|
+
"default": "false",
|
|
105129
|
+
"type": {
|
|
105130
|
+
"text": "boolean"
|
|
105131
|
+
},
|
|
105132
|
+
"attribute": "disabled",
|
|
105133
|
+
"reflects": true,
|
|
104665
105134
|
"inheritedFrom": {
|
|
104666
|
-
"name": "
|
|
104667
|
-
"module": "core/
|
|
105135
|
+
"name": "SbbDisabledMixin",
|
|
105136
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
104668
105137
|
}
|
|
104669
105138
|
},
|
|
104670
105139
|
{
|
|
104671
105140
|
"kind": "field",
|
|
104672
|
-
"name": "
|
|
105141
|
+
"name": "#disabled",
|
|
104673
105142
|
"privacy": "private",
|
|
105143
|
+
"type": {
|
|
105144
|
+
"text": "boolean"
|
|
105145
|
+
},
|
|
105146
|
+
"default": "false",
|
|
104674
105147
|
"inheritedFrom": {
|
|
104675
|
-
"name": "
|
|
104676
|
-
"module": "core/
|
|
105148
|
+
"name": "SbbDisabledMixin",
|
|
105149
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
105150
|
+
}
|
|
105151
|
+
},
|
|
105152
|
+
{
|
|
105153
|
+
"kind": "method",
|
|
105154
|
+
"name": "isDisabledExternally",
|
|
105155
|
+
"privacy": "protected",
|
|
105156
|
+
"return": {
|
|
105157
|
+
"type": {
|
|
105158
|
+
"text": "boolean"
|
|
105159
|
+
}
|
|
105160
|
+
},
|
|
105161
|
+
"description": "Will be used as 'or' check to the current disabled state.\nCan e.g. be used to read disabled state of a group.",
|
|
105162
|
+
"inheritedFrom": {
|
|
105163
|
+
"name": "SbbDisabledMixin",
|
|
105164
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
104677
105165
|
}
|
|
104678
105166
|
},
|
|
104679
105167
|
{
|
|
@@ -104690,6 +105178,20 @@
|
|
|
104690
105178
|
"module": "core/mixins/form-associated-mixin.js"
|
|
104691
105179
|
}
|
|
104692
105180
|
},
|
|
105181
|
+
{
|
|
105182
|
+
"kind": "field",
|
|
105183
|
+
"name": "form",
|
|
105184
|
+
"type": {
|
|
105185
|
+
"text": "HTMLFormElement | null"
|
|
105186
|
+
},
|
|
105187
|
+
"privacy": "public",
|
|
105188
|
+
"description": "Returns the form owner of this element.",
|
|
105189
|
+
"readonly": true,
|
|
105190
|
+
"inheritedFrom": {
|
|
105191
|
+
"name": "SbbFormAssociatedMixin",
|
|
105192
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
105193
|
+
}
|
|
105194
|
+
},
|
|
104693
105195
|
{
|
|
104694
105196
|
"kind": "field",
|
|
104695
105197
|
"name": "name",
|
|
@@ -104837,21 +105339,6 @@
|
|
|
104837
105339
|
"module": "core/mixins/form-associated-mixin.js"
|
|
104838
105340
|
}
|
|
104839
105341
|
},
|
|
104840
|
-
{
|
|
104841
|
-
"kind": "method",
|
|
104842
|
-
"name": "updateFormValue",
|
|
104843
|
-
"privacy": "protected",
|
|
104844
|
-
"return": {
|
|
104845
|
-
"type": {
|
|
104846
|
-
"text": "void"
|
|
104847
|
-
}
|
|
104848
|
-
},
|
|
104849
|
-
"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",
|
|
104850
|
-
"inheritedFrom": {
|
|
104851
|
-
"name": "SbbFormAssociatedMixin",
|
|
104852
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
104853
|
-
}
|
|
104854
|
-
},
|
|
104855
105342
|
{
|
|
104856
105343
|
"kind": "method",
|
|
104857
105344
|
"name": "formState",
|
|
@@ -104976,384 +105463,76 @@
|
|
|
104976
105463
|
"name": "SbbFormAssociatedMixin",
|
|
104977
105464
|
"module": "core/mixins/form-associated-mixin.js"
|
|
104978
105465
|
}
|
|
104979
|
-
}
|
|
104980
|
-
|
|
104981
|
-
|
|
104982
|
-
"name": "role",
|
|
104983
|
-
"type": {
|
|
104984
|
-
"text": "ElementInternals['role']"
|
|
104985
|
-
},
|
|
104986
|
-
"privacy": "public",
|
|
104987
|
-
"static": true,
|
|
104988
|
-
"inheritedFrom": {
|
|
104989
|
-
"name": "SbbElement",
|
|
104990
|
-
"module": "core/base-elements/element.js"
|
|
104991
|
-
},
|
|
104992
|
-
"readonly": true,
|
|
104993
|
-
"default": "'button'"
|
|
104994
|
-
},
|
|
104995
|
-
{
|
|
104996
|
-
"kind": "field",
|
|
104997
|
-
"name": "_preventScrollOnSpaceKeydown",
|
|
104998
|
-
"privacy": "private",
|
|
104999
|
-
"description": "Prevents scrolling from pressing Space, when the event target is an action element.\nAlso sets active state.",
|
|
105000
|
-
"parameters": [
|
|
105001
|
-
{
|
|
105002
|
-
"description": "The origin event.",
|
|
105003
|
-
"name": "event"
|
|
105004
|
-
}
|
|
105005
|
-
],
|
|
105006
|
-
"inheritedFrom": {
|
|
105007
|
-
"name": "SbbButtonLikeBaseElement",
|
|
105008
|
-
"module": "core/base-elements/button-base-element.js"
|
|
105009
|
-
}
|
|
105010
|
-
},
|
|
105011
|
-
{
|
|
105012
|
-
"kind": "field",
|
|
105013
|
-
"name": "_removeActiveMarker",
|
|
105014
|
-
"privacy": "private",
|
|
105015
|
-
"inheritedFrom": {
|
|
105016
|
-
"name": "SbbButtonLikeBaseElement",
|
|
105017
|
-
"module": "core/base-elements/button-base-element.js"
|
|
105018
|
-
}
|
|
105019
|
-
},
|
|
105020
|
-
{
|
|
105021
|
-
"kind": "field",
|
|
105022
|
-
"name": "_dispatchClickEventOnSpaceKeyup",
|
|
105023
|
-
"privacy": "private",
|
|
105024
|
-
"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.",
|
|
105025
|
-
"parameters": [
|
|
105026
|
-
{
|
|
105027
|
-
"description": "The origin event.",
|
|
105028
|
-
"name": "event"
|
|
105029
|
-
}
|
|
105030
|
-
],
|
|
105031
|
-
"inheritedFrom": {
|
|
105032
|
-
"name": "SbbButtonLikeBaseElement",
|
|
105033
|
-
"module": "core/base-elements/button-base-element.js"
|
|
105034
|
-
}
|
|
105035
|
-
},
|
|
105036
|
-
{
|
|
105037
|
-
"kind": "field",
|
|
105038
|
-
"name": "_dispatchClickEvent",
|
|
105039
|
-
"privacy": "private",
|
|
105040
|
-
"inheritedFrom": {
|
|
105041
|
-
"name": "SbbButtonLikeBaseElement",
|
|
105042
|
-
"module": "core/base-elements/button-base-element.js"
|
|
105043
|
-
}
|
|
105044
|
-
},
|
|
105466
|
+
}
|
|
105467
|
+
],
|
|
105468
|
+
"events": [
|
|
105045
105469
|
{
|
|
105046
|
-
"
|
|
105047
|
-
"name": "maybeDisabled",
|
|
105470
|
+
"name": "input",
|
|
105048
105471
|
"type": {
|
|
105049
|
-
"text": "
|
|
105472
|
+
"text": "InputEvent"
|
|
105050
105473
|
},
|
|
105051
|
-
"
|
|
105052
|
-
"readonly": true,
|
|
105053
|
-
"inheritedFrom": {
|
|
105054
|
-
"name": "SbbActionBaseElement",
|
|
105055
|
-
"module": "core/base-elements/action-base-element.js"
|
|
105056
|
-
}
|
|
105474
|
+
"description": "The input event fires when the value has been changed as a direct result of a user action."
|
|
105057
105475
|
},
|
|
105058
105476
|
{
|
|
105059
|
-
"
|
|
105060
|
-
"name": "maybeDisabledInteractive",
|
|
105477
|
+
"name": "change",
|
|
105061
105478
|
"type": {
|
|
105062
|
-
"text": "
|
|
105063
|
-
},
|
|
105064
|
-
"privacy": "protected",
|
|
105065
|
-
"readonly": true,
|
|
105066
|
-
"inheritedFrom": {
|
|
105067
|
-
"name": "SbbActionBaseElement",
|
|
105068
|
-
"module": "core/base-elements/action-base-element.js"
|
|
105069
|
-
}
|
|
105070
|
-
},
|
|
105071
|
-
{
|
|
105072
|
-
"kind": "method",
|
|
105073
|
-
"name": "setupBaseEventHandlers",
|
|
105074
|
-
"privacy": "protected",
|
|
105075
|
-
"return": {
|
|
105076
|
-
"type": {
|
|
105077
|
-
"text": "void"
|
|
105078
|
-
}
|
|
105479
|
+
"text": "Event"
|
|
105079
105480
|
},
|
|
105080
|
-
"
|
|
105081
|
-
"name": "SbbActionBaseElement",
|
|
105082
|
-
"module": "core/base-elements/action-base-element.js"
|
|
105083
|
-
}
|
|
105481
|
+
"description": "The change event is fired when the user modifies the element's value.\nUnlike the input event, the change event is not necessarily fired\nfor each alteration to an element's value."
|
|
105084
105482
|
},
|
|
105085
105483
|
{
|
|
105086
|
-
"
|
|
105087
|
-
"name": "['_$sbbElement$']",
|
|
105484
|
+
"name": "filechanged",
|
|
105088
105485
|
"type": {
|
|
105089
|
-
"text": "
|
|
105486
|
+
"text": "CustomEvent<Readonly<File>[]>"
|
|
105090
105487
|
},
|
|
105091
|
-
"
|
|
105092
|
-
|
|
105093
|
-
|
|
105094
|
-
|
|
105095
|
-
"name": "SbbElement",
|
|
105096
|
-
"module": "core/base-elements/element.js"
|
|
105097
|
-
}
|
|
105098
|
-
},
|
|
105488
|
+
"description": "An event which is emitted each time the file list changes."
|
|
105489
|
+
}
|
|
105490
|
+
],
|
|
105491
|
+
"attributes": [
|
|
105099
105492
|
{
|
|
105100
|
-
"
|
|
105101
|
-
"name": "_controllers",
|
|
105493
|
+
"name": "size",
|
|
105102
105494
|
"type": {
|
|
105103
|
-
"text": "
|
|
105495
|
+
"text": "'s' | 'm'"
|
|
105104
105496
|
},
|
|
105105
|
-
"
|
|
105106
|
-
"
|
|
105107
|
-
|
|
105108
|
-
"module": "core/base-elements/element.js"
|
|
105109
|
-
}
|
|
105497
|
+
"description": "Size variant, either s or m.",
|
|
105498
|
+
"default": "'m' / 's' (lean)",
|
|
105499
|
+
"fieldName": "size"
|
|
105110
105500
|
},
|
|
105111
105501
|
{
|
|
105112
|
-
"
|
|
105113
|
-
"name": "_hydrationRequired",
|
|
105502
|
+
"name": "multiple",
|
|
105114
105503
|
"type": {
|
|
105115
105504
|
"text": "boolean"
|
|
105116
105505
|
},
|
|
105117
|
-
"
|
|
105118
|
-
"
|
|
105119
|
-
"
|
|
105120
|
-
"name": "SbbElement",
|
|
105121
|
-
"module": "core/base-elements/element.js"
|
|
105122
|
-
}
|
|
105123
|
-
},
|
|
105124
|
-
{
|
|
105125
|
-
"kind": "field",
|
|
105126
|
-
"name": "_hydrationComplete",
|
|
105127
|
-
"privacy": "private",
|
|
105128
|
-
"default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
|
|
105129
|
-
"inheritedFrom": {
|
|
105130
|
-
"name": "SbbElement",
|
|
105131
|
-
"module": "core/base-elements/element.js"
|
|
105132
|
-
}
|
|
105133
|
-
},
|
|
105134
|
-
{
|
|
105135
|
-
"kind": "field",
|
|
105136
|
-
"name": "_resolveHydration",
|
|
105137
|
-
"type": {
|
|
105138
|
-
"text": "(hydrationRequired: boolean) => void"
|
|
105139
|
-
},
|
|
105140
|
-
"privacy": "private",
|
|
105141
|
-
"inheritedFrom": {
|
|
105142
|
-
"name": "SbbElement",
|
|
105143
|
-
"module": "core/base-elements/element.js"
|
|
105144
|
-
}
|
|
105145
|
-
},
|
|
105146
|
-
{
|
|
105147
|
-
"kind": "field",
|
|
105148
|
-
"name": "_textObserver",
|
|
105149
|
-
"type": {
|
|
105150
|
-
"text": "MutationObserver | undefined"
|
|
105151
|
-
},
|
|
105152
|
-
"privacy": "private",
|
|
105153
|
-
"inheritedFrom": {
|
|
105154
|
-
"name": "SbbElement",
|
|
105155
|
-
"module": "core/base-elements/element.js"
|
|
105156
|
-
}
|
|
105506
|
+
"default": "false",
|
|
105507
|
+
"description": "Whether more than one file can be selected.",
|
|
105508
|
+
"fieldName": "multiple"
|
|
105157
105509
|
},
|
|
105158
105510
|
{
|
|
105159
|
-
"
|
|
105160
|
-
"name": "hydrationRequired",
|
|
105511
|
+
"name": "multiple-mode",
|
|
105161
105512
|
"type": {
|
|
105162
|
-
"text": "
|
|
105163
|
-
},
|
|
105164
|
-
"privacy": "protected",
|
|
105165
|
-
"description": "Returns whether hydration is required and not completed.",
|
|
105166
|
-
"readonly": true,
|
|
105167
|
-
"inheritedFrom": {
|
|
105168
|
-
"name": "SbbElement",
|
|
105169
|
-
"module": "core/base-elements/element.js"
|
|
105170
|
-
},
|
|
105171
|
-
"default": "!!this.shadowRoot"
|
|
105172
|
-
},
|
|
105173
|
-
{
|
|
105174
|
-
"kind": "method",
|
|
105175
|
-
"name": "toggleState",
|
|
105176
|
-
"privacy": "protected",
|
|
105177
|
-
"return": {
|
|
105178
|
-
"type": {
|
|
105179
|
-
"text": "void"
|
|
105180
|
-
}
|
|
105181
|
-
},
|
|
105182
|
-
"parameters": [
|
|
105183
|
-
{
|
|
105184
|
-
"name": "value",
|
|
105185
|
-
"type": {
|
|
105186
|
-
"text": "string"
|
|
105187
|
-
}
|
|
105188
|
-
},
|
|
105189
|
-
{
|
|
105190
|
-
"name": "force",
|
|
105191
|
-
"optional": true,
|
|
105192
|
-
"type": {
|
|
105193
|
-
"text": "boolean"
|
|
105194
|
-
}
|
|
105195
|
-
}
|
|
105196
|
-
],
|
|
105197
|
-
"inheritedFrom": {
|
|
105198
|
-
"name": "SbbElement",
|
|
105199
|
-
"module": "core/base-elements/element.js"
|
|
105200
|
-
}
|
|
105201
|
-
},
|
|
105202
|
-
{
|
|
105203
|
-
"kind": "method",
|
|
105204
|
-
"name": "_slotchangeHandler",
|
|
105205
|
-
"privacy": "private",
|
|
105206
|
-
"return": {
|
|
105207
|
-
"type": {
|
|
105208
|
-
"text": "void"
|
|
105209
|
-
}
|
|
105210
|
-
},
|
|
105211
|
-
"parameters": [
|
|
105212
|
-
{
|
|
105213
|
-
"name": "event",
|
|
105214
|
-
"type": {
|
|
105215
|
-
"text": "Event"
|
|
105216
|
-
}
|
|
105217
|
-
},
|
|
105218
|
-
{
|
|
105219
|
-
"name": "slot",
|
|
105220
|
-
"type": {
|
|
105221
|
-
"text": "HTMLSlotElement"
|
|
105222
|
-
}
|
|
105223
|
-
}
|
|
105224
|
-
],
|
|
105225
|
-
"inheritedFrom": {
|
|
105226
|
-
"name": "SbbElement",
|
|
105227
|
-
"module": "core/base-elements/element.js"
|
|
105228
|
-
}
|
|
105229
|
-
},
|
|
105230
|
-
{
|
|
105231
|
-
"kind": "method",
|
|
105232
|
-
"name": "_handleSlotChangeForSlottedState",
|
|
105233
|
-
"privacy": "private",
|
|
105234
|
-
"return": {
|
|
105235
|
-
"type": {
|
|
105236
|
-
"text": "void"
|
|
105237
|
-
}
|
|
105238
|
-
},
|
|
105239
|
-
"parameters": [
|
|
105240
|
-
{
|
|
105241
|
-
"name": "slot",
|
|
105242
|
-
"type": {
|
|
105243
|
-
"text": "HTMLSlotElement"
|
|
105244
|
-
}
|
|
105245
|
-
}
|
|
105246
|
-
],
|
|
105247
|
-
"inheritedFrom": {
|
|
105248
|
-
"name": "SbbElement",
|
|
105249
|
-
"module": "core/base-elements/element.js"
|
|
105250
|
-
}
|
|
105251
|
-
},
|
|
105252
|
-
{
|
|
105253
|
-
"kind": "method",
|
|
105254
|
-
"name": "_updateSlottedState",
|
|
105255
|
-
"privacy": "private",
|
|
105256
|
-
"return": {
|
|
105257
|
-
"type": {
|
|
105258
|
-
"text": "void"
|
|
105259
|
-
}
|
|
105260
|
-
},
|
|
105261
|
-
"parameters": [
|
|
105262
|
-
{
|
|
105263
|
-
"name": "slot",
|
|
105264
|
-
"type": {
|
|
105265
|
-
"text": "HTMLSlotElement"
|
|
105266
|
-
}
|
|
105267
|
-
}
|
|
105268
|
-
],
|
|
105269
|
-
"inheritedFrom": {
|
|
105270
|
-
"name": "SbbElement",
|
|
105271
|
-
"module": "core/base-elements/element.js"
|
|
105272
|
-
}
|
|
105273
|
-
},
|
|
105274
|
-
{
|
|
105275
|
-
"kind": "method",
|
|
105276
|
-
"name": "_observeTextNodesInSlot",
|
|
105277
|
-
"privacy": "private",
|
|
105278
|
-
"return": {
|
|
105279
|
-
"type": {
|
|
105280
|
-
"text": "void"
|
|
105281
|
-
}
|
|
105513
|
+
"text": "'default' | 'persistent'"
|
|
105282
105514
|
},
|
|
105283
|
-
"
|
|
105284
|
-
|
|
105285
|
-
|
|
105286
|
-
"type": {
|
|
105287
|
-
"text": "HTMLSlotElement"
|
|
105288
|
-
}
|
|
105289
|
-
}
|
|
105290
|
-
],
|
|
105291
|
-
"inheritedFrom": {
|
|
105292
|
-
"name": "SbbElement",
|
|
105293
|
-
"module": "core/base-elements/element.js"
|
|
105294
|
-
}
|
|
105515
|
+
"default": "'default'",
|
|
105516
|
+
"description": "Whether the newly added files should override the previously added ones.",
|
|
105517
|
+
"fieldName": "multipleMode"
|
|
105295
105518
|
},
|
|
105296
105519
|
{
|
|
105297
|
-
"
|
|
105298
|
-
"name": "_hasSlottedContent",
|
|
105299
|
-
"privacy": "private",
|
|
105300
|
-
"return": {
|
|
105301
|
-
"type": {
|
|
105302
|
-
"text": "boolean"
|
|
105303
|
-
}
|
|
105304
|
-
},
|
|
105305
|
-
"parameters": [
|
|
105306
|
-
{
|
|
105307
|
-
"name": "slot",
|
|
105308
|
-
"type": {
|
|
105309
|
-
"text": "HTMLSlotElement"
|
|
105310
|
-
}
|
|
105311
|
-
}
|
|
105312
|
-
],
|
|
105313
|
-
"inheritedFrom": {
|
|
105314
|
-
"name": "SbbElement",
|
|
105315
|
-
"module": "core/base-elements/element.js"
|
|
105316
|
-
}
|
|
105317
|
-
}
|
|
105318
|
-
],
|
|
105319
|
-
"events": [
|
|
105320
|
-
{
|
|
105321
|
-
"name": "toggleexpanded",
|
|
105520
|
+
"name": "accept",
|
|
105322
105521
|
"type": {
|
|
105323
|
-
"text": "
|
|
105522
|
+
"text": "string"
|
|
105324
105523
|
},
|
|
105325
|
-
"
|
|
105326
|
-
|
|
105327
|
-
|
|
105328
|
-
"mixins": [
|
|
105329
|
-
{
|
|
105330
|
-
"name": "SbbDisabledTabIndexActionMixin",
|
|
105331
|
-
"module": "core.js"
|
|
105524
|
+
"default": "''",
|
|
105525
|
+
"description": "A comma-separated list of allowed unique file type specifiers.",
|
|
105526
|
+
"fieldName": "accept"
|
|
105332
105527
|
},
|
|
105333
105528
|
{
|
|
105334
|
-
"name": "
|
|
105335
|
-
"module": "icon.pure.js"
|
|
105336
|
-
}
|
|
105337
|
-
],
|
|
105338
|
-
"superclass": {
|
|
105339
|
-
"name": "SbbButtonBaseElement",
|
|
105340
|
-
"module": "core.js"
|
|
105341
|
-
},
|
|
105342
|
-
"tagName": "sbb-expansion-panel-header",
|
|
105343
|
-
"customElement": true,
|
|
105344
|
-
"attributes": [
|
|
105345
|
-
{
|
|
105346
|
-
"name": "disabled-interactive",
|
|
105529
|
+
"name": "accessibility-label",
|
|
105347
105530
|
"type": {
|
|
105348
|
-
"text": "
|
|
105531
|
+
"text": "string"
|
|
105349
105532
|
},
|
|
105350
|
-
"default": "
|
|
105351
|
-
"description": "
|
|
105352
|
-
"fieldName": "
|
|
105353
|
-
"inheritedFrom": {
|
|
105354
|
-
"name": "SbbDisabledInteractiveMixin",
|
|
105355
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
105356
|
-
}
|
|
105533
|
+
"default": "''",
|
|
105534
|
+
"description": "This will be forwarded as aria-label to the native input element.",
|
|
105535
|
+
"fieldName": "accessibilityLabel"
|
|
105357
105536
|
},
|
|
105358
105537
|
{
|
|
105359
105538
|
"name": "disabled",
|
|
@@ -105369,66 +105548,33 @@
|
|
|
105369
105548
|
}
|
|
105370
105549
|
},
|
|
105371
105550
|
{
|
|
105372
|
-
"name": "
|
|
105373
|
-
"
|
|
105374
|
-
"text": "string"
|
|
105375
|
-
},
|
|
105376
|
-
"default": "''",
|
|
105377
|
-
"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.",
|
|
105378
|
-
"fieldName": "iconName",
|
|
105379
|
-
"inheritedFrom": {
|
|
105380
|
-
"name": "SbbIconNameMixin",
|
|
105381
|
-
"module": "icon/icon-name-mixin.js"
|
|
105382
|
-
}
|
|
105383
|
-
},
|
|
105384
|
-
{
|
|
105385
|
-
"name": "value",
|
|
105551
|
+
"name": "name",
|
|
105552
|
+
"description": "Name of the form element. Will be read from name attribute.",
|
|
105386
105553
|
"type": {
|
|
105387
105554
|
"text": "string"
|
|
105388
105555
|
},
|
|
105389
|
-
"
|
|
105390
|
-
"description": "Value of the form element.",
|
|
105391
|
-
"fieldName": "value",
|
|
105556
|
+
"fieldName": "name",
|
|
105392
105557
|
"inheritedFrom": {
|
|
105393
|
-
"name": "
|
|
105394
|
-
"module": "core/
|
|
105558
|
+
"name": "SbbFormAssociatedMixin",
|
|
105559
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
105395
105560
|
}
|
|
105396
|
-
}
|
|
105561
|
+
}
|
|
105562
|
+
],
|
|
105563
|
+
"mixins": [
|
|
105397
105564
|
{
|
|
105398
|
-
"name": "
|
|
105399
|
-
"
|
|
105400
|
-
"default": "'button'",
|
|
105401
|
-
"type": {
|
|
105402
|
-
"text": "SbbButtonType"
|
|
105403
|
-
},
|
|
105404
|
-
"fieldName": "type",
|
|
105405
|
-
"inheritedFrom": {
|
|
105406
|
-
"name": "SbbButtonBaseElement",
|
|
105407
|
-
"module": "core/base-elements/button-base-element.js"
|
|
105408
|
-
}
|
|
105565
|
+
"name": "SbbDisabledMixin",
|
|
105566
|
+
"module": "core.js"
|
|
105409
105567
|
},
|
|
105410
105568
|
{
|
|
105411
|
-
"name": "
|
|
105412
|
-
"
|
|
105413
|
-
|
|
105414
|
-
|
|
105415
|
-
|
|
105416
|
-
"fieldName": "form",
|
|
105417
|
-
"inheritedFrom": {
|
|
105418
|
-
"name": "SbbButtonBaseElement",
|
|
105419
|
-
"module": "core/base-elements/button-base-element.js"
|
|
105420
|
-
}
|
|
105421
|
-
},
|
|
105569
|
+
"name": "SbbFormAssociatedMixin",
|
|
105570
|
+
"module": "core.js"
|
|
105571
|
+
}
|
|
105572
|
+
],
|
|
105573
|
+
"parameters": [
|
|
105422
105574
|
{
|
|
105423
|
-
"name": "
|
|
105424
|
-
"description": "Name of the form element. Will be read from name attribute.",
|
|
105575
|
+
"name": "superclass",
|
|
105425
105576
|
"type": {
|
|
105426
|
-
"text": "
|
|
105427
|
-
},
|
|
105428
|
-
"fieldName": "name",
|
|
105429
|
-
"inheritedFrom": {
|
|
105430
|
-
"name": "SbbFormAssociatedMixin",
|
|
105431
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
105577
|
+
"text": "T"
|
|
105432
105578
|
}
|
|
105433
105579
|
}
|
|
105434
105580
|
]
|
|
@@ -105437,10 +105583,26 @@
|
|
|
105437
105583
|
"exports": [
|
|
105438
105584
|
{
|
|
105439
105585
|
"kind": "js",
|
|
105440
|
-
"name": "
|
|
105586
|
+
"name": "fileSelectorCommonStyle",
|
|
105441
105587
|
"declaration": {
|
|
105442
|
-
"name": "
|
|
105443
|
-
"module": "
|
|
105588
|
+
"name": "fileSelectorCommonStyle",
|
|
105589
|
+
"module": "file-selector/common/file-selector-common.js"
|
|
105590
|
+
}
|
|
105591
|
+
},
|
|
105592
|
+
{
|
|
105593
|
+
"kind": "js",
|
|
105594
|
+
"name": "SbbFileSelectorCommonElementMixinType",
|
|
105595
|
+
"declaration": {
|
|
105596
|
+
"name": "SbbFileSelectorCommonElementMixinType",
|
|
105597
|
+
"module": "file-selector/common/file-selector-common.js"
|
|
105598
|
+
}
|
|
105599
|
+
},
|
|
105600
|
+
{
|
|
105601
|
+
"kind": "js",
|
|
105602
|
+
"name": "SbbFileSelectorCommonElementMixin",
|
|
105603
|
+
"declaration": {
|
|
105604
|
+
"name": "SbbFileSelectorCommonElementMixin",
|
|
105605
|
+
"module": "file-selector/common/file-selector-common.js"
|
|
105444
105606
|
}
|
|
105445
105607
|
}
|
|
105446
105608
|
]
|
|
@@ -111552,6 +111714,22 @@
|
|
|
111552
111714
|
}
|
|
111553
111715
|
}
|
|
111554
111716
|
],
|
|
111717
|
+
"events": [
|
|
111718
|
+
{
|
|
111719
|
+
"type": {
|
|
111720
|
+
"text": "Event"
|
|
111721
|
+
},
|
|
111722
|
+
"description": "The change event is fired on the component's associated input when the user modifies the element's value. Unlike the input event, the change event is not necessarily fired for each alteration to an element's value.",
|
|
111723
|
+
"name": "change"
|
|
111724
|
+
},
|
|
111725
|
+
{
|
|
111726
|
+
"type": {
|
|
111727
|
+
"text": "InputEvent"
|
|
111728
|
+
},
|
|
111729
|
+
"description": "The input event fires on the component's associated input when the value has been changed as a direct result of a user action.",
|
|
111730
|
+
"name": "input"
|
|
111731
|
+
}
|
|
111732
|
+
],
|
|
111555
111733
|
"mixins": [
|
|
111556
111734
|
{
|
|
111557
111735
|
"name": "SbbNegativeMixin",
|
|
@@ -157042,6 +157220,22 @@
|
|
|
157042
157220
|
}
|
|
157043
157221
|
}
|
|
157044
157222
|
],
|
|
157223
|
+
"events": [
|
|
157224
|
+
{
|
|
157225
|
+
"type": {
|
|
157226
|
+
"text": "Event"
|
|
157227
|
+
},
|
|
157228
|
+
"description": "The change event is fired on the associated inputs when the user modifies the element's value. Unlike the input event, the change event is not necessarily fired for each alteration to an element's value.",
|
|
157229
|
+
"name": "change"
|
|
157230
|
+
},
|
|
157231
|
+
{
|
|
157232
|
+
"type": {
|
|
157233
|
+
"text": "InputEvent"
|
|
157234
|
+
},
|
|
157235
|
+
"description": "The input event fires on the associated inputs when the value has been changed as a direct result of a user action.",
|
|
157236
|
+
"name": "input"
|
|
157237
|
+
}
|
|
157238
|
+
],
|
|
157045
157239
|
"superclass": {
|
|
157046
157240
|
"name": "SbbSecondaryButtonElement",
|
|
157047
157241
|
"module": "button.pure.js"
|
|
@@ -158613,6 +158807,15 @@
|
|
|
158613
158807
|
}
|
|
158614
158808
|
}
|
|
158615
158809
|
],
|
|
158810
|
+
"events": [
|
|
158811
|
+
{
|
|
158812
|
+
"type": {
|
|
158813
|
+
"text": "InputEvent"
|
|
158814
|
+
},
|
|
158815
|
+
"description": "The input event fires when the value has been changed as a direct result of a user action.",
|
|
158816
|
+
"name": "input"
|
|
158817
|
+
}
|
|
158818
|
+
],
|
|
158616
158819
|
"attributes": [
|
|
158617
158820
|
{
|
|
158618
158821
|
"name": "checked",
|