@sbb-esta/lyne-elements-dev 4.13.0-dev.1780955594 → 4.13.1-dev.1781015161
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 +1621 -1621
- package/package.json +2 -2
package/custom-elements.json
CHANGED
|
@@ -60781,30 +60781,32 @@
|
|
|
60781
60781
|
},
|
|
60782
60782
|
{
|
|
60783
60783
|
"kind": "javascript-module",
|
|
60784
|
-
"path": "container/
|
|
60784
|
+
"path": "container/sticky-bar/sticky-bar.component.js",
|
|
60785
60785
|
"declarations": [
|
|
60786
60786
|
{
|
|
60787
60787
|
"kind": "class",
|
|
60788
|
-
"description": "
|
|
60789
|
-
"name": "
|
|
60788
|
+
"description": "A container that sticks to the bottom of the page if slotted into `sbb-container`.",
|
|
60789
|
+
"name": "SbbStickyBarElement",
|
|
60790
60790
|
"cssProperties": [
|
|
60791
60791
|
{
|
|
60792
|
-
"description": "
|
|
60793
|
-
"name": "--sbb-
|
|
60792
|
+
"description": "Block padding of the sticky bar.",
|
|
60793
|
+
"name": "--sbb-sticky-bar-padding-block",
|
|
60794
|
+
"default": "var(--sbb-spacing-responsive-xs)"
|
|
60795
|
+
},
|
|
60796
|
+
{
|
|
60797
|
+
"description": "Define an additional area where the sticky bar overlaps the following content on the bottom. This area becomes visible when the sticky bar transitions from sticky to the normal document flow.",
|
|
60798
|
+
"name": "--sbb-sticky-bar-bottom-overlapping-height",
|
|
60799
|
+
"default": "0px"
|
|
60800
|
+
},
|
|
60801
|
+
{
|
|
60802
|
+
"description": "To specify a custom stack order, the `z-index` can be overridden by defining this CSS variable.",
|
|
60803
|
+
"name": "--sbb-sticky-bar-z-index"
|
|
60794
60804
|
}
|
|
60795
60805
|
],
|
|
60796
60806
|
"slots": [
|
|
60797
60807
|
{
|
|
60798
|
-
"description": "Use the unnamed slot to add
|
|
60808
|
+
"description": "Use the unnamed slot to add content to the sticky bar.",
|
|
60799
60809
|
"name": ""
|
|
60800
|
-
},
|
|
60801
|
-
{
|
|
60802
|
-
"description": "The slot used by the sbb-sticky-bar component.",
|
|
60803
|
-
"name": "sticky-bar"
|
|
60804
|
-
},
|
|
60805
|
-
{
|
|
60806
|
-
"description": "The slot used to slot an `sbb-image` to use as background.",
|
|
60807
|
-
"name": "image"
|
|
60808
60810
|
}
|
|
60809
60811
|
],
|
|
60810
60812
|
"members": [
|
|
@@ -60817,7 +60819,7 @@
|
|
|
60817
60819
|
"privacy": "public",
|
|
60818
60820
|
"static": true,
|
|
60819
60821
|
"readonly": true,
|
|
60820
|
-
"default": "'sbb-
|
|
60822
|
+
"default": "'sbb-sticky-bar'",
|
|
60821
60823
|
"inheritedFrom": {
|
|
60822
60824
|
"name": "SbbElement",
|
|
60823
60825
|
"module": "core/base-elements/element.js"
|
|
@@ -60825,39 +60827,238 @@
|
|
|
60825
60827
|
},
|
|
60826
60828
|
{
|
|
60827
60829
|
"kind": "field",
|
|
60828
|
-
"name": "
|
|
60830
|
+
"name": "events",
|
|
60831
|
+
"privacy": "public",
|
|
60832
|
+
"static": true,
|
|
60833
|
+
"readonly": true,
|
|
60834
|
+
"default": "{ beforestick: 'beforestick', stick: 'stick', beforeunstick: 'beforeunstick', unstick: 'unstick', }",
|
|
60829
60835
|
"type": {
|
|
60830
|
-
"text": "
|
|
60836
|
+
"text": "{\n beforestick: 'beforestick',\n stick: 'stick',\n beforeunstick: 'beforeunstick',\n unstick: 'unstick',\n }"
|
|
60837
|
+
}
|
|
60838
|
+
},
|
|
60839
|
+
{
|
|
60840
|
+
"kind": "field",
|
|
60841
|
+
"name": "color",
|
|
60842
|
+
"type": {
|
|
60843
|
+
"text": "| 'white'\n | 'milk'\n | 'midnight'\n | 'charcoal'\n | null"
|
|
60831
60844
|
},
|
|
60832
60845
|
"privacy": "public",
|
|
60833
|
-
"default": "
|
|
60834
|
-
"description": "
|
|
60835
|
-
"attribute": "
|
|
60846
|
+
"default": "null",
|
|
60847
|
+
"description": "Color of the container, like transparent, white etc.",
|
|
60848
|
+
"attribute": "color",
|
|
60836
60849
|
"reflects": true
|
|
60837
60850
|
},
|
|
60838
60851
|
{
|
|
60839
60852
|
"kind": "field",
|
|
60840
|
-
"name": "
|
|
60853
|
+
"name": "size",
|
|
60841
60854
|
"type": {
|
|
60842
|
-
"text": "
|
|
60855
|
+
"text": "'m' | 's'"
|
|
60843
60856
|
},
|
|
60844
60857
|
"privacy": "public",
|
|
60845
|
-
"
|
|
60846
|
-
"
|
|
60847
|
-
"attribute": "
|
|
60858
|
+
"description": "Size of the container.",
|
|
60859
|
+
"default": "'m' / 's' (lean)",
|
|
60860
|
+
"attribute": "size",
|
|
60848
60861
|
"reflects": true
|
|
60849
60862
|
},
|
|
60850
60863
|
{
|
|
60851
60864
|
"kind": "field",
|
|
60852
|
-
"name": "
|
|
60865
|
+
"name": "_state",
|
|
60866
|
+
"privacy": "private",
|
|
60867
|
+
"description": "The state of the component.",
|
|
60853
60868
|
"type": {
|
|
60854
|
-
"text": "
|
|
60869
|
+
"text": "StickyState"
|
|
60870
|
+
},
|
|
60871
|
+
"default": "'sticky'"
|
|
60872
|
+
},
|
|
60873
|
+
{
|
|
60874
|
+
"kind": "field",
|
|
60875
|
+
"name": "_stateInternal",
|
|
60876
|
+
"type": {
|
|
60877
|
+
"text": "StickyState"
|
|
60878
|
+
},
|
|
60879
|
+
"privacy": "private"
|
|
60880
|
+
},
|
|
60881
|
+
{
|
|
60882
|
+
"kind": "field",
|
|
60883
|
+
"name": "_intersector",
|
|
60884
|
+
"type": {
|
|
60885
|
+
"text": "HTMLSpanElement | undefined"
|
|
60855
60886
|
},
|
|
60887
|
+
"privacy": "private"
|
|
60888
|
+
},
|
|
60889
|
+
{
|
|
60890
|
+
"kind": "field",
|
|
60891
|
+
"name": "_observer",
|
|
60892
|
+
"privacy": "private",
|
|
60893
|
+
"default": "new IntersectionController(this, { // Although `this` is observed, we have to postpone observing // into firstUpdated() to achieve a correct initial state. target: null, callback: (entries) => this._detectStickyState(entries[0]), })"
|
|
60894
|
+
},
|
|
60895
|
+
{
|
|
60896
|
+
"kind": "method",
|
|
60897
|
+
"name": "_isZeroAnimationDuration",
|
|
60898
|
+
"privacy": "private",
|
|
60899
|
+
"return": {
|
|
60900
|
+
"type": {
|
|
60901
|
+
"text": "boolean"
|
|
60902
|
+
}
|
|
60903
|
+
}
|
|
60904
|
+
},
|
|
60905
|
+
{
|
|
60906
|
+
"kind": "method",
|
|
60907
|
+
"name": "_detectStickyState",
|
|
60908
|
+
"privacy": "private",
|
|
60909
|
+
"return": {
|
|
60910
|
+
"type": {
|
|
60911
|
+
"text": "void"
|
|
60912
|
+
}
|
|
60913
|
+
},
|
|
60914
|
+
"parameters": [
|
|
60915
|
+
{
|
|
60916
|
+
"name": "entry",
|
|
60917
|
+
"type": {
|
|
60918
|
+
"text": "IntersectionObserverEntry"
|
|
60919
|
+
}
|
|
60920
|
+
}
|
|
60921
|
+
]
|
|
60922
|
+
},
|
|
60923
|
+
{
|
|
60924
|
+
"kind": "method",
|
|
60925
|
+
"name": "stick",
|
|
60856
60926
|
"privacy": "public",
|
|
60857
|
-
"
|
|
60858
|
-
|
|
60859
|
-
|
|
60860
|
-
|
|
60927
|
+
"return": {
|
|
60928
|
+
"type": {
|
|
60929
|
+
"text": "void"
|
|
60930
|
+
}
|
|
60931
|
+
},
|
|
60932
|
+
"description": "Animates from normal content flow position to `position: sticky`."
|
|
60933
|
+
},
|
|
60934
|
+
{
|
|
60935
|
+
"kind": "method",
|
|
60936
|
+
"name": "unstick",
|
|
60937
|
+
"privacy": "public",
|
|
60938
|
+
"return": {
|
|
60939
|
+
"type": {
|
|
60940
|
+
"text": "void"
|
|
60941
|
+
}
|
|
60942
|
+
},
|
|
60943
|
+
"description": "Animates `position: sticky` to normal content flow position."
|
|
60944
|
+
},
|
|
60945
|
+
{
|
|
60946
|
+
"kind": "method",
|
|
60947
|
+
"name": "_stickyCallback",
|
|
60948
|
+
"privacy": "private",
|
|
60949
|
+
"return": {
|
|
60950
|
+
"type": {
|
|
60951
|
+
"text": "void"
|
|
60952
|
+
}
|
|
60953
|
+
}
|
|
60954
|
+
},
|
|
60955
|
+
{
|
|
60956
|
+
"kind": "method",
|
|
60957
|
+
"name": "_unstickyCallback",
|
|
60958
|
+
"privacy": "private",
|
|
60959
|
+
"return": {
|
|
60960
|
+
"type": {
|
|
60961
|
+
"text": "void"
|
|
60962
|
+
}
|
|
60963
|
+
}
|
|
60964
|
+
},
|
|
60965
|
+
{
|
|
60966
|
+
"kind": "method",
|
|
60967
|
+
"name": "_onAnimationEnd",
|
|
60968
|
+
"privacy": "private",
|
|
60969
|
+
"return": {
|
|
60970
|
+
"type": {
|
|
60971
|
+
"text": "void"
|
|
60972
|
+
}
|
|
60973
|
+
},
|
|
60974
|
+
"parameters": [
|
|
60975
|
+
{
|
|
60976
|
+
"name": "event",
|
|
60977
|
+
"type": {
|
|
60978
|
+
"text": "AnimationEvent"
|
|
60979
|
+
}
|
|
60980
|
+
}
|
|
60981
|
+
]
|
|
60982
|
+
},
|
|
60983
|
+
{
|
|
60984
|
+
"kind": "method",
|
|
60985
|
+
"name": "_dispatchBeforeStickEvent",
|
|
60986
|
+
"privacy": "private",
|
|
60987
|
+
"return": {
|
|
60988
|
+
"type": {
|
|
60989
|
+
"text": "boolean"
|
|
60990
|
+
}
|
|
60991
|
+
}
|
|
60992
|
+
},
|
|
60993
|
+
{
|
|
60994
|
+
"kind": "method",
|
|
60995
|
+
"name": "_dispatchBeforeUnStickEvent",
|
|
60996
|
+
"privacy": "private",
|
|
60997
|
+
"return": {
|
|
60998
|
+
"type": {
|
|
60999
|
+
"text": "boolean"
|
|
61000
|
+
}
|
|
61001
|
+
}
|
|
61002
|
+
},
|
|
61003
|
+
{
|
|
61004
|
+
"kind": "field",
|
|
61005
|
+
"name": "_updatePromise",
|
|
61006
|
+
"privacy": "private",
|
|
61007
|
+
"inheritedFrom": {
|
|
61008
|
+
"name": "SbbUpdateSchedulerMixin",
|
|
61009
|
+
"module": "core/mixins/update-scheduler-mixin.js"
|
|
61010
|
+
}
|
|
61011
|
+
},
|
|
61012
|
+
{
|
|
61013
|
+
"kind": "field",
|
|
61014
|
+
"name": "_updateResolve",
|
|
61015
|
+
"privacy": "private",
|
|
61016
|
+
"inheritedFrom": {
|
|
61017
|
+
"name": "SbbUpdateSchedulerMixin",
|
|
61018
|
+
"module": "core/mixins/update-scheduler-mixin.js"
|
|
61019
|
+
}
|
|
61020
|
+
},
|
|
61021
|
+
{
|
|
61022
|
+
"kind": "method",
|
|
61023
|
+
"name": "startUpdate",
|
|
61024
|
+
"privacy": "protected",
|
|
61025
|
+
"return": {
|
|
61026
|
+
"type": {
|
|
61027
|
+
"text": "void"
|
|
61028
|
+
}
|
|
61029
|
+
},
|
|
61030
|
+
"inheritedFrom": {
|
|
61031
|
+
"name": "SbbUpdateSchedulerMixin",
|
|
61032
|
+
"module": "core/mixins/update-scheduler-mixin.js"
|
|
61033
|
+
}
|
|
61034
|
+
},
|
|
61035
|
+
{
|
|
61036
|
+
"kind": "method",
|
|
61037
|
+
"name": "completeUpdate",
|
|
61038
|
+
"privacy": "protected",
|
|
61039
|
+
"return": {
|
|
61040
|
+
"type": {
|
|
61041
|
+
"text": "void"
|
|
61042
|
+
}
|
|
61043
|
+
},
|
|
61044
|
+
"inheritedFrom": {
|
|
61045
|
+
"name": "SbbUpdateSchedulerMixin",
|
|
61046
|
+
"module": "core/mixins/update-scheduler-mixin.js"
|
|
61047
|
+
}
|
|
61048
|
+
},
|
|
61049
|
+
{
|
|
61050
|
+
"kind": "method",
|
|
61051
|
+
"name": "getUpdateComplete",
|
|
61052
|
+
"privacy": "protected",
|
|
61053
|
+
"return": {
|
|
61054
|
+
"type": {
|
|
61055
|
+
"text": "Promise<boolean>"
|
|
61056
|
+
}
|
|
61057
|
+
},
|
|
61058
|
+
"inheritedFrom": {
|
|
61059
|
+
"name": "SbbUpdateSchedulerMixin",
|
|
61060
|
+
"module": "core/mixins/update-scheduler-mixin.js"
|
|
61061
|
+
}
|
|
60861
61062
|
},
|
|
60862
61063
|
{
|
|
60863
61064
|
"kind": "field",
|
|
@@ -60965,50 +61166,77 @@
|
|
|
60965
61166
|
}
|
|
60966
61167
|
}
|
|
60967
61168
|
],
|
|
60968
|
-
"
|
|
61169
|
+
"events": [
|
|
60969
61170
|
{
|
|
60970
|
-
"name": "
|
|
61171
|
+
"name": "stick",
|
|
60971
61172
|
"type": {
|
|
60972
|
-
"text": "
|
|
61173
|
+
"text": "Event"
|
|
60973
61174
|
},
|
|
60974
|
-
"
|
|
60975
|
-
"description": "Whether the container is expanded.",
|
|
60976
|
-
"fieldName": "expanded"
|
|
61175
|
+
"description": "Emits when the animation from normal content flow to `position: sticky` ends."
|
|
60977
61176
|
},
|
|
60978
61177
|
{
|
|
60979
|
-
"name": "
|
|
61178
|
+
"name": "unstick",
|
|
60980
61179
|
"type": {
|
|
60981
|
-
"text": "
|
|
61180
|
+
"text": "Event"
|
|
60982
61181
|
},
|
|
60983
|
-
"
|
|
60984
|
-
"description": "Whether the background color is shown on full container width on large screens.",
|
|
60985
|
-
"fieldName": "backgroundExpanded"
|
|
61182
|
+
"description": "Emits when the animation from `position: sticky` to normal content flow ends."
|
|
60986
61183
|
},
|
|
61184
|
+
{
|
|
61185
|
+
"name": "beforestick",
|
|
61186
|
+
"type": {
|
|
61187
|
+
"text": "Event"
|
|
61188
|
+
},
|
|
61189
|
+
"description": "Emits when the animation from normal content flow to `position: sticky` starts. Can be canceled."
|
|
61190
|
+
},
|
|
61191
|
+
{
|
|
61192
|
+
"name": "beforeunstick",
|
|
61193
|
+
"type": {
|
|
61194
|
+
"text": "Event"
|
|
61195
|
+
},
|
|
61196
|
+
"description": "Emits when the animation from `position: sticky` to normal content flow starts. Can be canceled."
|
|
61197
|
+
}
|
|
61198
|
+
],
|
|
61199
|
+
"attributes": [
|
|
60987
61200
|
{
|
|
60988
61201
|
"name": "color",
|
|
60989
61202
|
"type": {
|
|
60990
|
-
"text": "| '
|
|
61203
|
+
"text": "| 'white'\n | 'milk'\n | 'midnight'\n | 'charcoal'\n | null"
|
|
60991
61204
|
},
|
|
60992
|
-
"default": "
|
|
61205
|
+
"default": "null",
|
|
60993
61206
|
"description": "Color of the container, like transparent, white etc.",
|
|
60994
61207
|
"fieldName": "color"
|
|
61208
|
+
},
|
|
61209
|
+
{
|
|
61210
|
+
"name": "size",
|
|
61211
|
+
"type": {
|
|
61212
|
+
"text": "'m' | 's'"
|
|
61213
|
+
},
|
|
61214
|
+
"description": "Size of the container.",
|
|
61215
|
+
"default": "'m' / 's' (lean)",
|
|
61216
|
+
"fieldName": "size"
|
|
61217
|
+
}
|
|
61218
|
+
],
|
|
61219
|
+
"mixins": [
|
|
61220
|
+
{
|
|
61221
|
+
"name": "SbbUpdateSchedulerMixin",
|
|
61222
|
+
"module": "core/mixins.js"
|
|
60995
61223
|
}
|
|
60996
61224
|
],
|
|
60997
61225
|
"superclass": {
|
|
60998
61226
|
"name": "SbbElement",
|
|
60999
61227
|
"module": "core/base-elements.js"
|
|
61000
61228
|
},
|
|
61001
|
-
"tagName": "sbb-
|
|
61229
|
+
"tagName": "sbb-sticky-bar",
|
|
61002
61230
|
"customElement": true
|
|
61003
61231
|
}
|
|
61004
61232
|
],
|
|
61005
61233
|
"exports": [
|
|
61006
61234
|
{
|
|
61007
61235
|
"kind": "js",
|
|
61008
|
-
"name": "
|
|
61236
|
+
"name": "SbbStickyBarElement",
|
|
61009
61237
|
"declaration": {
|
|
61010
|
-
"name": "
|
|
61011
|
-
"module": "container/
|
|
61238
|
+
"name": "SbbStickyBarElement",
|
|
61239
|
+
"module": "container/sticky-bar/sticky-bar.component.js"
|
|
61012
61240
|
}
|
|
61013
61241
|
}
|
|
61014
61242
|
]
|
|
@@ -61907,32 +62135,30 @@
|
|
|
61907
62135
|
},
|
|
61908
62136
|
{
|
|
61909
62137
|
"kind": "javascript-module",
|
|
61910
|
-
"path": "container/
|
|
62138
|
+
"path": "container/container/container.component.js",
|
|
61911
62139
|
"declarations": [
|
|
61912
62140
|
{
|
|
61913
62141
|
"kind": "class",
|
|
61914
|
-
"description": "
|
|
61915
|
-
"name": "
|
|
62142
|
+
"description": "It displays its content with the default page spacing.",
|
|
62143
|
+
"name": "SbbContainerElement",
|
|
61916
62144
|
"cssProperties": [
|
|
61917
62145
|
{
|
|
61918
|
-
"description": "
|
|
61919
|
-
"name": "--sbb-
|
|
61920
|
-
"default": "var(--sbb-spacing-responsive-xs)"
|
|
61921
|
-
},
|
|
61922
|
-
{
|
|
61923
|
-
"description": "Define an additional area where the sticky bar overlaps the following content on the bottom. This area becomes visible when the sticky bar transitions from sticky to the normal document flow.",
|
|
61924
|
-
"name": "--sbb-sticky-bar-bottom-overlapping-height",
|
|
61925
|
-
"default": "0px"
|
|
61926
|
-
},
|
|
61927
|
-
{
|
|
61928
|
-
"description": "To specify a custom stack order, the `z-index` can be overridden by defining this CSS variable.",
|
|
61929
|
-
"name": "--sbb-sticky-bar-z-index"
|
|
62146
|
+
"description": "Use this variable to override the default page spacing. Note that overriding this will disable the standard responsive spacing behavior of the container.",
|
|
62147
|
+
"name": "--sbb-page-spacing-padding"
|
|
61930
62148
|
}
|
|
61931
62149
|
],
|
|
61932
62150
|
"slots": [
|
|
61933
62151
|
{
|
|
61934
|
-
"description": "Use the unnamed slot to add
|
|
62152
|
+
"description": "Use the unnamed slot to add anything to the container.",
|
|
61935
62153
|
"name": ""
|
|
62154
|
+
},
|
|
62155
|
+
{
|
|
62156
|
+
"description": "The slot used by the sbb-sticky-bar component.",
|
|
62157
|
+
"name": "sticky-bar"
|
|
62158
|
+
},
|
|
62159
|
+
{
|
|
62160
|
+
"description": "The slot used to slot an `sbb-image` to use as background.",
|
|
62161
|
+
"name": "image"
|
|
61936
62162
|
}
|
|
61937
62163
|
],
|
|
61938
62164
|
"members": [
|
|
@@ -61945,7 +62171,7 @@
|
|
|
61945
62171
|
"privacy": "public",
|
|
61946
62172
|
"static": true,
|
|
61947
62173
|
"readonly": true,
|
|
61948
|
-
"default": "'sbb-
|
|
62174
|
+
"default": "'sbb-container'",
|
|
61949
62175
|
"inheritedFrom": {
|
|
61950
62176
|
"name": "SbbElement",
|
|
61951
62177
|
"module": "core/base-elements/element.js"
|
|
@@ -61953,238 +62179,39 @@
|
|
|
61953
62179
|
},
|
|
61954
62180
|
{
|
|
61955
62181
|
"kind": "field",
|
|
61956
|
-
"name": "
|
|
61957
|
-
"privacy": "public",
|
|
61958
|
-
"static": true,
|
|
61959
|
-
"readonly": true,
|
|
61960
|
-
"default": "{ beforestick: 'beforestick', stick: 'stick', beforeunstick: 'beforeunstick', unstick: 'unstick', }",
|
|
61961
|
-
"type": {
|
|
61962
|
-
"text": "{\n beforestick: 'beforestick',\n stick: 'stick',\n beforeunstick: 'beforeunstick',\n unstick: 'unstick',\n }"
|
|
61963
|
-
}
|
|
61964
|
-
},
|
|
61965
|
-
{
|
|
61966
|
-
"kind": "field",
|
|
61967
|
-
"name": "color",
|
|
62182
|
+
"name": "expanded",
|
|
61968
62183
|
"type": {
|
|
61969
|
-
"text": "
|
|
62184
|
+
"text": "boolean"
|
|
61970
62185
|
},
|
|
61971
62186
|
"privacy": "public",
|
|
61972
|
-
"default": "
|
|
61973
|
-
"description": "
|
|
61974
|
-
"attribute": "
|
|
62187
|
+
"default": "false",
|
|
62188
|
+
"description": "Whether the container is expanded.",
|
|
62189
|
+
"attribute": "expanded",
|
|
61975
62190
|
"reflects": true
|
|
61976
62191
|
},
|
|
61977
62192
|
{
|
|
61978
62193
|
"kind": "field",
|
|
61979
|
-
"name": "
|
|
62194
|
+
"name": "backgroundExpanded",
|
|
61980
62195
|
"type": {
|
|
61981
|
-
"text": "
|
|
62196
|
+
"text": "boolean"
|
|
61982
62197
|
},
|
|
61983
62198
|
"privacy": "public",
|
|
61984
|
-
"
|
|
61985
|
-
"
|
|
61986
|
-
"attribute": "
|
|
62199
|
+
"default": "false",
|
|
62200
|
+
"description": "Whether the background color is shown on full container width on large screens.",
|
|
62201
|
+
"attribute": "background-expanded",
|
|
61987
62202
|
"reflects": true
|
|
61988
62203
|
},
|
|
61989
62204
|
{
|
|
61990
62205
|
"kind": "field",
|
|
61991
|
-
"name": "
|
|
61992
|
-
"privacy": "private",
|
|
61993
|
-
"description": "The state of the component.",
|
|
61994
|
-
"type": {
|
|
61995
|
-
"text": "StickyState"
|
|
61996
|
-
},
|
|
61997
|
-
"default": "'sticky'"
|
|
61998
|
-
},
|
|
61999
|
-
{
|
|
62000
|
-
"kind": "field",
|
|
62001
|
-
"name": "_stateInternal",
|
|
62002
|
-
"type": {
|
|
62003
|
-
"text": "StickyState"
|
|
62004
|
-
},
|
|
62005
|
-
"privacy": "private"
|
|
62006
|
-
},
|
|
62007
|
-
{
|
|
62008
|
-
"kind": "field",
|
|
62009
|
-
"name": "_intersector",
|
|
62206
|
+
"name": "color",
|
|
62010
62207
|
"type": {
|
|
62011
|
-
"text": "
|
|
62012
|
-
},
|
|
62013
|
-
"privacy": "private"
|
|
62014
|
-
},
|
|
62015
|
-
{
|
|
62016
|
-
"kind": "field",
|
|
62017
|
-
"name": "_observer",
|
|
62018
|
-
"privacy": "private",
|
|
62019
|
-
"default": "new IntersectionController(this, { // Although `this` is observed, we have to postpone observing // into firstUpdated() to achieve a correct initial state. target: null, callback: (entries) => this._detectStickyState(entries[0]), })"
|
|
62020
|
-
},
|
|
62021
|
-
{
|
|
62022
|
-
"kind": "method",
|
|
62023
|
-
"name": "_isZeroAnimationDuration",
|
|
62024
|
-
"privacy": "private",
|
|
62025
|
-
"return": {
|
|
62026
|
-
"type": {
|
|
62027
|
-
"text": "boolean"
|
|
62028
|
-
}
|
|
62029
|
-
}
|
|
62030
|
-
},
|
|
62031
|
-
{
|
|
62032
|
-
"kind": "method",
|
|
62033
|
-
"name": "_detectStickyState",
|
|
62034
|
-
"privacy": "private",
|
|
62035
|
-
"return": {
|
|
62036
|
-
"type": {
|
|
62037
|
-
"text": "void"
|
|
62038
|
-
}
|
|
62039
|
-
},
|
|
62040
|
-
"parameters": [
|
|
62041
|
-
{
|
|
62042
|
-
"name": "entry",
|
|
62043
|
-
"type": {
|
|
62044
|
-
"text": "IntersectionObserverEntry"
|
|
62045
|
-
}
|
|
62046
|
-
}
|
|
62047
|
-
]
|
|
62048
|
-
},
|
|
62049
|
-
{
|
|
62050
|
-
"kind": "method",
|
|
62051
|
-
"name": "stick",
|
|
62052
|
-
"privacy": "public",
|
|
62053
|
-
"return": {
|
|
62054
|
-
"type": {
|
|
62055
|
-
"text": "void"
|
|
62056
|
-
}
|
|
62208
|
+
"text": "| 'transparent'\n | 'white'\n | 'milk'\n | 'midnight'\n | 'charcoal'"
|
|
62057
62209
|
},
|
|
62058
|
-
"description": "Animates from normal content flow position to `position: sticky`."
|
|
62059
|
-
},
|
|
62060
|
-
{
|
|
62061
|
-
"kind": "method",
|
|
62062
|
-
"name": "unstick",
|
|
62063
62210
|
"privacy": "public",
|
|
62064
|
-
"
|
|
62065
|
-
|
|
62066
|
-
|
|
62067
|
-
|
|
62068
|
-
},
|
|
62069
|
-
"description": "Animates `position: sticky` to normal content flow position."
|
|
62070
|
-
},
|
|
62071
|
-
{
|
|
62072
|
-
"kind": "method",
|
|
62073
|
-
"name": "_stickyCallback",
|
|
62074
|
-
"privacy": "private",
|
|
62075
|
-
"return": {
|
|
62076
|
-
"type": {
|
|
62077
|
-
"text": "void"
|
|
62078
|
-
}
|
|
62079
|
-
}
|
|
62080
|
-
},
|
|
62081
|
-
{
|
|
62082
|
-
"kind": "method",
|
|
62083
|
-
"name": "_unstickyCallback",
|
|
62084
|
-
"privacy": "private",
|
|
62085
|
-
"return": {
|
|
62086
|
-
"type": {
|
|
62087
|
-
"text": "void"
|
|
62088
|
-
}
|
|
62089
|
-
}
|
|
62090
|
-
},
|
|
62091
|
-
{
|
|
62092
|
-
"kind": "method",
|
|
62093
|
-
"name": "_onAnimationEnd",
|
|
62094
|
-
"privacy": "private",
|
|
62095
|
-
"return": {
|
|
62096
|
-
"type": {
|
|
62097
|
-
"text": "void"
|
|
62098
|
-
}
|
|
62099
|
-
},
|
|
62100
|
-
"parameters": [
|
|
62101
|
-
{
|
|
62102
|
-
"name": "event",
|
|
62103
|
-
"type": {
|
|
62104
|
-
"text": "AnimationEvent"
|
|
62105
|
-
}
|
|
62106
|
-
}
|
|
62107
|
-
]
|
|
62108
|
-
},
|
|
62109
|
-
{
|
|
62110
|
-
"kind": "method",
|
|
62111
|
-
"name": "_dispatchBeforeStickEvent",
|
|
62112
|
-
"privacy": "private",
|
|
62113
|
-
"return": {
|
|
62114
|
-
"type": {
|
|
62115
|
-
"text": "boolean"
|
|
62116
|
-
}
|
|
62117
|
-
}
|
|
62118
|
-
},
|
|
62119
|
-
{
|
|
62120
|
-
"kind": "method",
|
|
62121
|
-
"name": "_dispatchBeforeUnStickEvent",
|
|
62122
|
-
"privacy": "private",
|
|
62123
|
-
"return": {
|
|
62124
|
-
"type": {
|
|
62125
|
-
"text": "boolean"
|
|
62126
|
-
}
|
|
62127
|
-
}
|
|
62128
|
-
},
|
|
62129
|
-
{
|
|
62130
|
-
"kind": "field",
|
|
62131
|
-
"name": "_updatePromise",
|
|
62132
|
-
"privacy": "private",
|
|
62133
|
-
"inheritedFrom": {
|
|
62134
|
-
"name": "SbbUpdateSchedulerMixin",
|
|
62135
|
-
"module": "core/mixins/update-scheduler-mixin.js"
|
|
62136
|
-
}
|
|
62137
|
-
},
|
|
62138
|
-
{
|
|
62139
|
-
"kind": "field",
|
|
62140
|
-
"name": "_updateResolve",
|
|
62141
|
-
"privacy": "private",
|
|
62142
|
-
"inheritedFrom": {
|
|
62143
|
-
"name": "SbbUpdateSchedulerMixin",
|
|
62144
|
-
"module": "core/mixins/update-scheduler-mixin.js"
|
|
62145
|
-
}
|
|
62146
|
-
},
|
|
62147
|
-
{
|
|
62148
|
-
"kind": "method",
|
|
62149
|
-
"name": "startUpdate",
|
|
62150
|
-
"privacy": "protected",
|
|
62151
|
-
"return": {
|
|
62152
|
-
"type": {
|
|
62153
|
-
"text": "void"
|
|
62154
|
-
}
|
|
62155
|
-
},
|
|
62156
|
-
"inheritedFrom": {
|
|
62157
|
-
"name": "SbbUpdateSchedulerMixin",
|
|
62158
|
-
"module": "core/mixins/update-scheduler-mixin.js"
|
|
62159
|
-
}
|
|
62160
|
-
},
|
|
62161
|
-
{
|
|
62162
|
-
"kind": "method",
|
|
62163
|
-
"name": "completeUpdate",
|
|
62164
|
-
"privacy": "protected",
|
|
62165
|
-
"return": {
|
|
62166
|
-
"type": {
|
|
62167
|
-
"text": "void"
|
|
62168
|
-
}
|
|
62169
|
-
},
|
|
62170
|
-
"inheritedFrom": {
|
|
62171
|
-
"name": "SbbUpdateSchedulerMixin",
|
|
62172
|
-
"module": "core/mixins/update-scheduler-mixin.js"
|
|
62173
|
-
}
|
|
62174
|
-
},
|
|
62175
|
-
{
|
|
62176
|
-
"kind": "method",
|
|
62177
|
-
"name": "getUpdateComplete",
|
|
62178
|
-
"privacy": "protected",
|
|
62179
|
-
"return": {
|
|
62180
|
-
"type": {
|
|
62181
|
-
"text": "Promise<boolean>"
|
|
62182
|
-
}
|
|
62183
|
-
},
|
|
62184
|
-
"inheritedFrom": {
|
|
62185
|
-
"name": "SbbUpdateSchedulerMixin",
|
|
62186
|
-
"module": "core/mixins/update-scheduler-mixin.js"
|
|
62187
|
-
}
|
|
62211
|
+
"default": "'white'",
|
|
62212
|
+
"description": "Color of the container, like transparent, white etc.",
|
|
62213
|
+
"attribute": "color",
|
|
62214
|
+
"reflects": true
|
|
62188
62215
|
},
|
|
62189
62216
|
{
|
|
62190
62217
|
"kind": "field",
|
|
@@ -62292,77 +62319,50 @@
|
|
|
62292
62319
|
}
|
|
62293
62320
|
}
|
|
62294
62321
|
],
|
|
62295
|
-
"
|
|
62296
|
-
{
|
|
62297
|
-
"name": "stick",
|
|
62298
|
-
"type": {
|
|
62299
|
-
"text": "Event"
|
|
62300
|
-
},
|
|
62301
|
-
"description": "Emits when the animation from normal content flow to `position: sticky` ends."
|
|
62302
|
-
},
|
|
62322
|
+
"attributes": [
|
|
62303
62323
|
{
|
|
62304
|
-
"name": "
|
|
62324
|
+
"name": "expanded",
|
|
62305
62325
|
"type": {
|
|
62306
|
-
"text": "
|
|
62326
|
+
"text": "boolean"
|
|
62307
62327
|
},
|
|
62308
|
-
"
|
|
62328
|
+
"default": "false",
|
|
62329
|
+
"description": "Whether the container is expanded.",
|
|
62330
|
+
"fieldName": "expanded"
|
|
62309
62331
|
},
|
|
62310
62332
|
{
|
|
62311
|
-
"name": "
|
|
62333
|
+
"name": "background-expanded",
|
|
62312
62334
|
"type": {
|
|
62313
|
-
"text": "
|
|
62335
|
+
"text": "boolean"
|
|
62314
62336
|
},
|
|
62315
|
-
"
|
|
62337
|
+
"default": "false",
|
|
62338
|
+
"description": "Whether the background color is shown on full container width on large screens.",
|
|
62339
|
+
"fieldName": "backgroundExpanded"
|
|
62316
62340
|
},
|
|
62317
|
-
{
|
|
62318
|
-
"name": "beforeunstick",
|
|
62319
|
-
"type": {
|
|
62320
|
-
"text": "Event"
|
|
62321
|
-
},
|
|
62322
|
-
"description": "Emits when the animation from `position: sticky` to normal content flow starts. Can be canceled."
|
|
62323
|
-
}
|
|
62324
|
-
],
|
|
62325
|
-
"attributes": [
|
|
62326
62341
|
{
|
|
62327
62342
|
"name": "color",
|
|
62328
62343
|
"type": {
|
|
62329
|
-
"text": "| '
|
|
62344
|
+
"text": "| 'transparent'\n | 'white'\n | 'milk'\n | 'midnight'\n | 'charcoal'"
|
|
62330
62345
|
},
|
|
62331
|
-
"default": "
|
|
62346
|
+
"default": "'white'",
|
|
62332
62347
|
"description": "Color of the container, like transparent, white etc.",
|
|
62333
62348
|
"fieldName": "color"
|
|
62334
|
-
},
|
|
62335
|
-
{
|
|
62336
|
-
"name": "size",
|
|
62337
|
-
"type": {
|
|
62338
|
-
"text": "'m' | 's'"
|
|
62339
|
-
},
|
|
62340
|
-
"description": "Size of the container.",
|
|
62341
|
-
"default": "'m' / 's' (lean)",
|
|
62342
|
-
"fieldName": "size"
|
|
62343
|
-
}
|
|
62344
|
-
],
|
|
62345
|
-
"mixins": [
|
|
62346
|
-
{
|
|
62347
|
-
"name": "SbbUpdateSchedulerMixin",
|
|
62348
|
-
"module": "core/mixins.js"
|
|
62349
62349
|
}
|
|
62350
62350
|
],
|
|
62351
62351
|
"superclass": {
|
|
62352
62352
|
"name": "SbbElement",
|
|
62353
62353
|
"module": "core/base-elements.js"
|
|
62354
62354
|
},
|
|
62355
|
-
"tagName": "sbb-
|
|
62355
|
+
"tagName": "sbb-container",
|
|
62356
62356
|
"customElement": true
|
|
62357
62357
|
}
|
|
62358
62358
|
],
|
|
62359
62359
|
"exports": [
|
|
62360
62360
|
{
|
|
62361
62361
|
"kind": "js",
|
|
62362
|
-
"name": "
|
|
62362
|
+
"name": "SbbContainerElement",
|
|
62363
62363
|
"declaration": {
|
|
62364
|
-
"name": "
|
|
62365
|
-
"module": "container/
|
|
62364
|
+
"name": "SbbContainerElement",
|
|
62365
|
+
"module": "container/container/container.component.js"
|
|
62366
62366
|
}
|
|
62367
62367
|
}
|
|
62368
62368
|
]
|
|
@@ -81344,12 +81344,12 @@
|
|
|
81344
81344
|
},
|
|
81345
81345
|
{
|
|
81346
81346
|
"kind": "javascript-module",
|
|
81347
|
-
"path": "datepicker/datepicker-
|
|
81347
|
+
"path": "datepicker/datepicker-previous-day/datepicker-previous-day.component.js",
|
|
81348
81348
|
"declarations": [
|
|
81349
81349
|
{
|
|
81350
81350
|
"kind": "class",
|
|
81351
|
-
"description": "Combined with a `sbb-datepicker`, it can be used to move the date
|
|
81352
|
-
"name": "
|
|
81351
|
+
"description": "Combined with a `sbb-datepicker`, it can be used to move the date back.",
|
|
81352
|
+
"name": "SbbDatepickerPreviousDayElement",
|
|
81353
81353
|
"members": [
|
|
81354
81354
|
{
|
|
81355
81355
|
"kind": "field",
|
|
@@ -81364,7 +81364,7 @@
|
|
|
81364
81364
|
"name": "SbbElement",
|
|
81365
81365
|
"module": "core/base-elements/element.js"
|
|
81366
81366
|
},
|
|
81367
|
-
"default": "'sbb-datepicker-
|
|
81367
|
+
"default": "'sbb-datepicker-previous-day'"
|
|
81368
81368
|
},
|
|
81369
81369
|
{
|
|
81370
81370
|
"kind": "field",
|
|
@@ -81377,7 +81377,7 @@
|
|
|
81377
81377
|
"name": "SbbDatepickerButtonBase",
|
|
81378
81378
|
"module": "datepicker/common/datepicker-button.js"
|
|
81379
81379
|
},
|
|
81380
|
-
"default": "'chevron-small-
|
|
81380
|
+
"default": "'chevron-small-left-small'"
|
|
81381
81381
|
},
|
|
81382
81382
|
{
|
|
81383
81383
|
"kind": "field",
|
|
@@ -81386,7 +81386,7 @@
|
|
|
81386
81386
|
"text": "Record<string, string>"
|
|
81387
81387
|
},
|
|
81388
81388
|
"privacy": "protected",
|
|
81389
|
-
"default": "
|
|
81389
|
+
"default": "i18nPreviousDay",
|
|
81390
81390
|
"inheritedFrom": {
|
|
81391
81391
|
"name": "SbbDatepickerButton",
|
|
81392
81392
|
"module": "datepicker/common/datepicker-button.js"
|
|
@@ -81399,7 +81399,7 @@
|
|
|
81399
81399
|
"text": "(_currentDate: string) => Record<string, string>"
|
|
81400
81400
|
},
|
|
81401
81401
|
"privacy": "protected",
|
|
81402
|
-
"default": "
|
|
81402
|
+
"default": "i18nSelectPreviousDay",
|
|
81403
81403
|
"inheritedFrom": {
|
|
81404
81404
|
"name": "SbbDatepickerButton",
|
|
81405
81405
|
"module": "datepicker/common/datepicker-button.js"
|
|
@@ -81429,7 +81429,7 @@
|
|
|
81429
81429
|
},
|
|
81430
81430
|
{
|
|
81431
81431
|
"kind": "method",
|
|
81432
|
-
"name": "
|
|
81432
|
+
"name": "_isBeforeMinDate",
|
|
81433
81433
|
"privacy": "private",
|
|
81434
81434
|
"return": {
|
|
81435
81435
|
"type": {
|
|
@@ -82289,7 +82289,7 @@
|
|
|
82289
82289
|
"name": "SbbDatepickerButton",
|
|
82290
82290
|
"module": "datepicker/common/datepicker-button.js"
|
|
82291
82291
|
},
|
|
82292
|
-
"tagName": "sbb-datepicker-
|
|
82292
|
+
"tagName": "sbb-datepicker-previous-day",
|
|
82293
82293
|
"customElement": true,
|
|
82294
82294
|
"classGenerics": "T = Date",
|
|
82295
82295
|
"attributes": [
|
|
@@ -82399,22 +82399,22 @@
|
|
|
82399
82399
|
"exports": [
|
|
82400
82400
|
{
|
|
82401
82401
|
"kind": "js",
|
|
82402
|
-
"name": "
|
|
82402
|
+
"name": "SbbDatepickerPreviousDayElement",
|
|
82403
82403
|
"declaration": {
|
|
82404
|
-
"name": "
|
|
82405
|
-
"module": "datepicker/datepicker-
|
|
82404
|
+
"name": "SbbDatepickerPreviousDayElement",
|
|
82405
|
+
"module": "datepicker/datepicker-previous-day/datepicker-previous-day.component.js"
|
|
82406
82406
|
}
|
|
82407
82407
|
}
|
|
82408
82408
|
]
|
|
82409
82409
|
},
|
|
82410
82410
|
{
|
|
82411
82411
|
"kind": "javascript-module",
|
|
82412
|
-
"path": "datepicker/datepicker-
|
|
82412
|
+
"path": "datepicker/datepicker-next-day/datepicker-next-day.component.js",
|
|
82413
82413
|
"declarations": [
|
|
82414
82414
|
{
|
|
82415
82415
|
"kind": "class",
|
|
82416
|
-
"description": "Combined with a `sbb-datepicker`, it can be used to move the date
|
|
82417
|
-
"name": "
|
|
82416
|
+
"description": "Combined with a `sbb-datepicker`, it can be used to move the date ahead.",
|
|
82417
|
+
"name": "SbbDatepickerNextDayElement",
|
|
82418
82418
|
"members": [
|
|
82419
82419
|
{
|
|
82420
82420
|
"kind": "field",
|
|
@@ -82429,7 +82429,7 @@
|
|
|
82429
82429
|
"name": "SbbElement",
|
|
82430
82430
|
"module": "core/base-elements/element.js"
|
|
82431
82431
|
},
|
|
82432
|
-
"default": "'sbb-datepicker-
|
|
82432
|
+
"default": "'sbb-datepicker-next-day'"
|
|
82433
82433
|
},
|
|
82434
82434
|
{
|
|
82435
82435
|
"kind": "field",
|
|
@@ -82442,7 +82442,7 @@
|
|
|
82442
82442
|
"name": "SbbDatepickerButtonBase",
|
|
82443
82443
|
"module": "datepicker/common/datepicker-button.js"
|
|
82444
82444
|
},
|
|
82445
|
-
"default": "'chevron-small-
|
|
82445
|
+
"default": "'chevron-small-right-small'"
|
|
82446
82446
|
},
|
|
82447
82447
|
{
|
|
82448
82448
|
"kind": "field",
|
|
@@ -82451,7 +82451,7 @@
|
|
|
82451
82451
|
"text": "Record<string, string>"
|
|
82452
82452
|
},
|
|
82453
82453
|
"privacy": "protected",
|
|
82454
|
-
"default": "
|
|
82454
|
+
"default": "i18nNextDay",
|
|
82455
82455
|
"inheritedFrom": {
|
|
82456
82456
|
"name": "SbbDatepickerButton",
|
|
82457
82457
|
"module": "datepicker/common/datepicker-button.js"
|
|
@@ -82464,7 +82464,7 @@
|
|
|
82464
82464
|
"text": "(_currentDate: string) => Record<string, string>"
|
|
82465
82465
|
},
|
|
82466
82466
|
"privacy": "protected",
|
|
82467
|
-
"default": "
|
|
82467
|
+
"default": "i18nSelectNextDay",
|
|
82468
82468
|
"inheritedFrom": {
|
|
82469
82469
|
"name": "SbbDatepickerButton",
|
|
82470
82470
|
"module": "datepicker/common/datepicker-button.js"
|
|
@@ -82494,7 +82494,7 @@
|
|
|
82494
82494
|
},
|
|
82495
82495
|
{
|
|
82496
82496
|
"kind": "method",
|
|
82497
|
-
"name": "
|
|
82497
|
+
"name": "_isAfterMaxDate",
|
|
82498
82498
|
"privacy": "private",
|
|
82499
82499
|
"return": {
|
|
82500
82500
|
"type": {
|
|
@@ -83354,7 +83354,7 @@
|
|
|
83354
83354
|
"name": "SbbDatepickerButton",
|
|
83355
83355
|
"module": "datepicker/common/datepicker-button.js"
|
|
83356
83356
|
},
|
|
83357
|
-
"tagName": "sbb-datepicker-
|
|
83357
|
+
"tagName": "sbb-datepicker-next-day",
|
|
83358
83358
|
"customElement": true,
|
|
83359
83359
|
"classGenerics": "T = Date",
|
|
83360
83360
|
"attributes": [
|
|
@@ -83464,10 +83464,10 @@
|
|
|
83464
83464
|
"exports": [
|
|
83465
83465
|
{
|
|
83466
83466
|
"kind": "js",
|
|
83467
|
-
"name": "
|
|
83467
|
+
"name": "SbbDatepickerNextDayElement",
|
|
83468
83468
|
"declaration": {
|
|
83469
|
-
"name": "
|
|
83470
|
-
"module": "datepicker/datepicker-
|
|
83469
|
+
"name": "SbbDatepickerNextDayElement",
|
|
83470
|
+
"module": "datepicker/datepicker-next-day/datepicker-next-day.component.js"
|
|
83471
83471
|
}
|
|
83472
83472
|
}
|
|
83473
83473
|
]
|
|
@@ -87924,115 +87924,85 @@
|
|
|
87924
87924
|
},
|
|
87925
87925
|
{
|
|
87926
87926
|
"kind": "javascript-module",
|
|
87927
|
-
"path": "
|
|
87927
|
+
"path": "expansion-panel/expansion-panel-header/expansion-panel-header.component.js",
|
|
87928
87928
|
"declarations": [
|
|
87929
|
-
{
|
|
87930
|
-
"kind": "variable",
|
|
87931
|
-
"name": "fileSelectorCommonStyle"
|
|
87932
|
-
},
|
|
87933
87929
|
{
|
|
87934
87930
|
"kind": "class",
|
|
87935
|
-
"description": "",
|
|
87936
|
-
"name": "
|
|
87937
|
-
"
|
|
87938
|
-
{
|
|
87939
|
-
"kind": "field",
|
|
87940
|
-
"name": "size",
|
|
87941
|
-
"type": {
|
|
87942
|
-
"text": "'s' | 'm'"
|
|
87943
|
-
},
|
|
87944
|
-
"privacy": "public"
|
|
87945
|
-
},
|
|
87931
|
+
"description": "It acts as a native `summary` tag for the `sbb-expansion-panel` component.",
|
|
87932
|
+
"name": "SbbExpansionPanelHeaderElement",
|
|
87933
|
+
"slots": [
|
|
87946
87934
|
{
|
|
87947
|
-
"
|
|
87948
|
-
"name": "
|
|
87949
|
-
"type": {
|
|
87950
|
-
"text": "boolean"
|
|
87951
|
-
},
|
|
87952
|
-
"privacy": "public"
|
|
87935
|
+
"description": "Use the unnamed slot to add content to the `sbb-expansion-panel-header`.",
|
|
87936
|
+
"name": ""
|
|
87953
87937
|
},
|
|
87954
87938
|
{
|
|
87955
|
-
"
|
|
87956
|
-
"name": "
|
|
87957
|
-
|
|
87958
|
-
|
|
87959
|
-
|
|
87960
|
-
"privacy": "public"
|
|
87961
|
-
},
|
|
87939
|
+
"description": "Slot used to render the `sbb-expansion-panel-header` icon.",
|
|
87940
|
+
"name": "icon"
|
|
87941
|
+
}
|
|
87942
|
+
],
|
|
87943
|
+
"members": [
|
|
87962
87944
|
{
|
|
87963
87945
|
"kind": "field",
|
|
87964
|
-
"name": "
|
|
87946
|
+
"name": "elementName",
|
|
87965
87947
|
"type": {
|
|
87966
87948
|
"text": "string"
|
|
87967
87949
|
},
|
|
87968
|
-
"privacy": "public"
|
|
87969
|
-
|
|
87970
|
-
|
|
87971
|
-
"
|
|
87972
|
-
|
|
87973
|
-
|
|
87974
|
-
"text": "string"
|
|
87950
|
+
"privacy": "public",
|
|
87951
|
+
"static": true,
|
|
87952
|
+
"readonly": true,
|
|
87953
|
+
"inheritedFrom": {
|
|
87954
|
+
"name": "SbbElement",
|
|
87955
|
+
"module": "core/base-elements/element.js"
|
|
87975
87956
|
},
|
|
87976
|
-
"
|
|
87957
|
+
"default": "'sbb-expansion-panel-header'"
|
|
87977
87958
|
},
|
|
87978
87959
|
{
|
|
87979
87960
|
"kind": "field",
|
|
87980
|
-
"name": "
|
|
87961
|
+
"name": "events",
|
|
87962
|
+
"privacy": "public",
|
|
87963
|
+
"static": true,
|
|
87964
|
+
"readonly": true,
|
|
87965
|
+
"default": "{ toggleexpanded: 'toggleexpanded', }",
|
|
87981
87966
|
"type": {
|
|
87982
|
-
"text": "
|
|
87983
|
-
}
|
|
87984
|
-
"privacy": "public"
|
|
87967
|
+
"text": "{\n toggleexpanded: 'toggleexpanded',\n }"
|
|
87968
|
+
}
|
|
87985
87969
|
},
|
|
87986
87970
|
{
|
|
87987
87971
|
"kind": "field",
|
|
87988
|
-
"name": "
|
|
87989
|
-
"
|
|
87990
|
-
|
|
87991
|
-
},
|
|
87992
|
-
"privacy": "public",
|
|
87993
|
-
"inheritedFrom": {
|
|
87994
|
-
"name": "SbbFormAssociatedMixin",
|
|
87995
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
87996
|
-
}
|
|
87972
|
+
"name": "_mediaMatcher",
|
|
87973
|
+
"privacy": "private",
|
|
87974
|
+
"default": "new SbbMediaMatcherController(this, { [SbbMediaQueryHover]: (m) => (this._isHover = m), })"
|
|
87997
87975
|
},
|
|
87998
87976
|
{
|
|
87999
87977
|
"kind": "field",
|
|
88000
|
-
"name": "
|
|
87978
|
+
"name": "_isHover",
|
|
88001
87979
|
"type": {
|
|
88002
|
-
"text": "
|
|
87980
|
+
"text": "boolean"
|
|
88003
87981
|
},
|
|
88004
|
-
"privacy": "
|
|
87982
|
+
"privacy": "private"
|
|
88005
87983
|
},
|
|
88006
87984
|
{
|
|
88007
87985
|
"kind": "field",
|
|
88008
|
-
"name": "
|
|
87986
|
+
"name": "_previousSize",
|
|
88009
87987
|
"type": {
|
|
88010
|
-
"text": "
|
|
87988
|
+
"text": "string | undefined"
|
|
88011
87989
|
},
|
|
88012
|
-
"privacy": "
|
|
87990
|
+
"privacy": "private"
|
|
88013
87991
|
},
|
|
88014
87992
|
{
|
|
88015
87993
|
"kind": "method",
|
|
88016
|
-
"name": "
|
|
88017
|
-
"privacy": "
|
|
87994
|
+
"name": "_emitExpandedEvent",
|
|
87995
|
+
"privacy": "private",
|
|
88018
87996
|
"return": {
|
|
88019
87997
|
"type": {
|
|
88020
|
-
"text": "
|
|
88021
|
-
}
|
|
88022
|
-
},
|
|
88023
|
-
"parameters": [
|
|
88024
|
-
{
|
|
88025
|
-
"name": "input",
|
|
88026
|
-
"type": {
|
|
88027
|
-
"text": "TemplateResult"
|
|
88028
|
-
}
|
|
87998
|
+
"text": "void"
|
|
88029
87999
|
}
|
|
88030
|
-
|
|
88000
|
+
}
|
|
88031
88001
|
},
|
|
88032
88002
|
{
|
|
88033
88003
|
"kind": "method",
|
|
88034
|
-
"name": "
|
|
88035
|
-
"privacy": "
|
|
88004
|
+
"name": "_onMouseMovement",
|
|
88005
|
+
"privacy": "private",
|
|
88036
88006
|
"return": {
|
|
88037
88007
|
"type": {
|
|
88038
88008
|
"text": "void"
|
|
@@ -88040,56 +88010,54 @@
|
|
|
88040
88010
|
},
|
|
88041
88011
|
"parameters": [
|
|
88042
88012
|
{
|
|
88043
|
-
"name": "
|
|
88013
|
+
"name": "toggleDataAttribute",
|
|
88044
88014
|
"type": {
|
|
88045
|
-
"text": "
|
|
88015
|
+
"text": "boolean"
|
|
88046
88016
|
}
|
|
88047
88017
|
}
|
|
88048
88018
|
]
|
|
88049
88019
|
},
|
|
88050
88020
|
{
|
|
88051
88021
|
"kind": "method",
|
|
88052
|
-
"name": "
|
|
88053
|
-
"privacy": "
|
|
88022
|
+
"name": "_setIconState",
|
|
88023
|
+
"privacy": "private",
|
|
88054
88024
|
"return": {
|
|
88055
88025
|
"type": {
|
|
88056
|
-
"text": "
|
|
88026
|
+
"text": "void"
|
|
88057
88027
|
}
|
|
88058
|
-
}
|
|
88028
|
+
},
|
|
88029
|
+
"description": "The :state(icon) is used by the 'sbb-expansion-panel'.\nIt needs to be set before the"
|
|
88059
88030
|
},
|
|
88060
88031
|
{
|
|
88061
88032
|
"kind": "method",
|
|
88062
|
-
"name": "
|
|
88063
|
-
"privacy": "
|
|
88033
|
+
"name": "renderTemplate",
|
|
88034
|
+
"privacy": "protected",
|
|
88064
88035
|
"return": {
|
|
88065
88036
|
"type": {
|
|
88066
|
-
"text": "
|
|
88037
|
+
"text": "TemplateResult"
|
|
88067
88038
|
}
|
|
88039
|
+
},
|
|
88040
|
+
"description": "Override this method to render the component template.",
|
|
88041
|
+
"inheritedFrom": {
|
|
88042
|
+
"name": "SbbActionBaseElement",
|
|
88043
|
+
"module": "core/base-elements/action-base-element.js"
|
|
88068
88044
|
}
|
|
88069
88045
|
},
|
|
88070
88046
|
{
|
|
88071
|
-
"kind": "
|
|
88072
|
-
"name": "
|
|
88073
|
-
"
|
|
88074
|
-
|
|
88075
|
-
"type": {
|
|
88076
|
-
"text": "void"
|
|
88077
|
-
}
|
|
88047
|
+
"kind": "field",
|
|
88048
|
+
"name": "disabledInteractive",
|
|
88049
|
+
"type": {
|
|
88050
|
+
"text": "boolean"
|
|
88078
88051
|
},
|
|
88079
|
-
"
|
|
88080
|
-
|
|
88081
|
-
|
|
88082
|
-
|
|
88083
|
-
|
|
88084
|
-
|
|
88085
|
-
|
|
88086
|
-
|
|
88087
|
-
|
|
88088
|
-
"type": {
|
|
88089
|
-
"text": "FormRestoreReason"
|
|
88090
|
-
}
|
|
88091
|
-
}
|
|
88092
|
-
]
|
|
88052
|
+
"privacy": "public",
|
|
88053
|
+
"default": "false",
|
|
88054
|
+
"description": "Whether the button should be aria-disabled but stay interactive.",
|
|
88055
|
+
"attribute": "disabled-interactive",
|
|
88056
|
+
"reflects": true,
|
|
88057
|
+
"inheritedFrom": {
|
|
88058
|
+
"name": "SbbDisabledInteractiveMixin",
|
|
88059
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
88060
|
+
}
|
|
88093
88061
|
},
|
|
88094
88062
|
{
|
|
88095
88063
|
"kind": "field",
|
|
@@ -88137,16 +88105,112 @@
|
|
|
88137
88105
|
},
|
|
88138
88106
|
{
|
|
88139
88107
|
"kind": "field",
|
|
88140
|
-
"name": "
|
|
88108
|
+
"name": "iconName",
|
|
88141
88109
|
"type": {
|
|
88142
|
-
"text": "
|
|
88110
|
+
"text": "string"
|
|
88143
88111
|
},
|
|
88144
88112
|
"privacy": "public",
|
|
88145
|
-
"
|
|
88146
|
-
"
|
|
88113
|
+
"default": "''",
|
|
88114
|
+
"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.",
|
|
88115
|
+
"attribute": "icon-name",
|
|
88147
88116
|
"inheritedFrom": {
|
|
88148
|
-
"name": "
|
|
88149
|
-
"module": "
|
|
88117
|
+
"name": "SbbIconNameMixin",
|
|
88118
|
+
"module": "icon/icon-name-mixin.js"
|
|
88119
|
+
}
|
|
88120
|
+
},
|
|
88121
|
+
{
|
|
88122
|
+
"kind": "method",
|
|
88123
|
+
"name": "renderIconSlot",
|
|
88124
|
+
"privacy": "protected",
|
|
88125
|
+
"return": {
|
|
88126
|
+
"type": {
|
|
88127
|
+
"text": "TemplateResult"
|
|
88128
|
+
}
|
|
88129
|
+
},
|
|
88130
|
+
"parameters": [
|
|
88131
|
+
{
|
|
88132
|
+
"name": "classname",
|
|
88133
|
+
"optional": true,
|
|
88134
|
+
"type": {
|
|
88135
|
+
"text": "string"
|
|
88136
|
+
}
|
|
88137
|
+
}
|
|
88138
|
+
],
|
|
88139
|
+
"inheritedFrom": {
|
|
88140
|
+
"name": "SbbIconNameMixin",
|
|
88141
|
+
"module": "icon/icon-name-mixin.js"
|
|
88142
|
+
}
|
|
88143
|
+
},
|
|
88144
|
+
{
|
|
88145
|
+
"kind": "method",
|
|
88146
|
+
"name": "renderIconName",
|
|
88147
|
+
"privacy": "protected",
|
|
88148
|
+
"return": {
|
|
88149
|
+
"type": {
|
|
88150
|
+
"text": "string"
|
|
88151
|
+
}
|
|
88152
|
+
},
|
|
88153
|
+
"inheritedFrom": {
|
|
88154
|
+
"name": "SbbIconNameMixin",
|
|
88155
|
+
"module": "icon/icon-name-mixin.js"
|
|
88156
|
+
}
|
|
88157
|
+
},
|
|
88158
|
+
{
|
|
88159
|
+
"kind": "method",
|
|
88160
|
+
"name": "_renderIconName",
|
|
88161
|
+
"privacy": "private",
|
|
88162
|
+
"return": {
|
|
88163
|
+
"type": {
|
|
88164
|
+
"text": "string"
|
|
88165
|
+
}
|
|
88166
|
+
},
|
|
88167
|
+
"inheritedFrom": {
|
|
88168
|
+
"name": "SbbIconNameMixin",
|
|
88169
|
+
"module": "icon/icon-name-mixin.js"
|
|
88170
|
+
}
|
|
88171
|
+
},
|
|
88172
|
+
{
|
|
88173
|
+
"kind": "field",
|
|
88174
|
+
"name": "_elementsOnWhichEnterPressTriggersSubmit",
|
|
88175
|
+
"type": {
|
|
88176
|
+
"text": "array"
|
|
88177
|
+
},
|
|
88178
|
+
"privacy": "private",
|
|
88179
|
+
"readonly": true,
|
|
88180
|
+
"default": "[ 'input', 'sbb-date-input', 'sbb-time-input', ]",
|
|
88181
|
+
"inheritedFrom": {
|
|
88182
|
+
"name": "SbbButtonBaseElement",
|
|
88183
|
+
"module": "core/base-elements/button-base-element.js"
|
|
88184
|
+
}
|
|
88185
|
+
},
|
|
88186
|
+
{
|
|
88187
|
+
"kind": "field",
|
|
88188
|
+
"name": "value",
|
|
88189
|
+
"type": {
|
|
88190
|
+
"text": "string"
|
|
88191
|
+
},
|
|
88192
|
+
"privacy": "public",
|
|
88193
|
+
"inheritedFrom": {
|
|
88194
|
+
"name": "SbbButtonBaseElement",
|
|
88195
|
+
"module": "core/base-elements/button-base-element.js"
|
|
88196
|
+
},
|
|
88197
|
+
"default": "''",
|
|
88198
|
+
"description": "Value of the form element.",
|
|
88199
|
+
"attribute": "value"
|
|
88200
|
+
},
|
|
88201
|
+
{
|
|
88202
|
+
"kind": "field",
|
|
88203
|
+
"name": "type",
|
|
88204
|
+
"privacy": "public",
|
|
88205
|
+
"description": "The type attribute to use for the button.",
|
|
88206
|
+
"default": "'button'",
|
|
88207
|
+
"type": {
|
|
88208
|
+
"text": "SbbButtonType"
|
|
88209
|
+
},
|
|
88210
|
+
"attribute": "type",
|
|
88211
|
+
"inheritedFrom": {
|
|
88212
|
+
"name": "SbbButtonBaseElement",
|
|
88213
|
+
"module": "core/base-elements/button-base-element.js"
|
|
88150
88214
|
}
|
|
88151
88215
|
},
|
|
88152
88216
|
{
|
|
@@ -88156,8 +88220,75 @@
|
|
|
88156
88220
|
"text": "HTMLFormElement | null"
|
|
88157
88221
|
},
|
|
88158
88222
|
"privacy": "public",
|
|
88159
|
-
"description": "
|
|
88160
|
-
"
|
|
88223
|
+
"description": "The `<form>` element to associate the button with.",
|
|
88224
|
+
"inheritedFrom": {
|
|
88225
|
+
"name": "SbbButtonBaseElement",
|
|
88226
|
+
"module": "core/base-elements/button-base-element.js"
|
|
88227
|
+
},
|
|
88228
|
+
"attribute": "form"
|
|
88229
|
+
},
|
|
88230
|
+
{
|
|
88231
|
+
"kind": "field",
|
|
88232
|
+
"name": "_formId",
|
|
88233
|
+
"type": {
|
|
88234
|
+
"text": "string"
|
|
88235
|
+
},
|
|
88236
|
+
"privacy": "private",
|
|
88237
|
+
"default": "''",
|
|
88238
|
+
"inheritedFrom": {
|
|
88239
|
+
"name": "SbbButtonBaseElement",
|
|
88240
|
+
"module": "core/base-elements/button-base-element.js"
|
|
88241
|
+
}
|
|
88242
|
+
},
|
|
88243
|
+
{
|
|
88244
|
+
"kind": "field",
|
|
88245
|
+
"name": "_handleButtonClick",
|
|
88246
|
+
"privacy": "private",
|
|
88247
|
+
"inheritedFrom": {
|
|
88248
|
+
"name": "SbbButtonBaseElement",
|
|
88249
|
+
"module": "core/base-elements/button-base-element.js"
|
|
88250
|
+
}
|
|
88251
|
+
},
|
|
88252
|
+
{
|
|
88253
|
+
"kind": "method",
|
|
88254
|
+
"name": "_requestSubmit",
|
|
88255
|
+
"privacy": "private",
|
|
88256
|
+
"return": {
|
|
88257
|
+
"type": {
|
|
88258
|
+
"text": "void"
|
|
88259
|
+
}
|
|
88260
|
+
},
|
|
88261
|
+
"parameters": [
|
|
88262
|
+
{
|
|
88263
|
+
"name": "form",
|
|
88264
|
+
"type": {
|
|
88265
|
+
"text": "HTMLFormElement"
|
|
88266
|
+
}
|
|
88267
|
+
}
|
|
88268
|
+
],
|
|
88269
|
+
"inheritedFrom": {
|
|
88270
|
+
"name": "SbbButtonBaseElement",
|
|
88271
|
+
"module": "core/base-elements/button-base-element.js"
|
|
88272
|
+
}
|
|
88273
|
+
},
|
|
88274
|
+
{
|
|
88275
|
+
"kind": "field",
|
|
88276
|
+
"name": "_formKeyDown",
|
|
88277
|
+
"privacy": "private",
|
|
88278
|
+
"inheritedFrom": {
|
|
88279
|
+
"name": "SbbButtonBaseElement",
|
|
88280
|
+
"module": "core/base-elements/button-base-element.js"
|
|
88281
|
+
}
|
|
88282
|
+
},
|
|
88283
|
+
{
|
|
88284
|
+
"kind": "field",
|
|
88285
|
+
"name": "formAssociated",
|
|
88286
|
+
"type": {
|
|
88287
|
+
"text": "boolean"
|
|
88288
|
+
},
|
|
88289
|
+
"privacy": "public",
|
|
88290
|
+
"static": true,
|
|
88291
|
+
"default": "true",
|
|
88161
88292
|
"inheritedFrom": {
|
|
88162
88293
|
"name": "SbbFormAssociatedMixin",
|
|
88163
88294
|
"module": "core/mixins/form-associated-mixin.js"
|
|
@@ -88450,6 +88581,111 @@
|
|
|
88450
88581
|
"module": "core/mixins/form-associated-mixin.js"
|
|
88451
88582
|
}
|
|
88452
88583
|
},
|
|
88584
|
+
{
|
|
88585
|
+
"kind": "field",
|
|
88586
|
+
"name": "role",
|
|
88587
|
+
"type": {
|
|
88588
|
+
"text": "ElementInternals['role']"
|
|
88589
|
+
},
|
|
88590
|
+
"privacy": "public",
|
|
88591
|
+
"static": true,
|
|
88592
|
+
"readonly": true,
|
|
88593
|
+
"default": "'button'",
|
|
88594
|
+
"inheritedFrom": {
|
|
88595
|
+
"name": "SbbButtonLikeBaseElement",
|
|
88596
|
+
"module": "core/base-elements/button-base-element.js"
|
|
88597
|
+
}
|
|
88598
|
+
},
|
|
88599
|
+
{
|
|
88600
|
+
"kind": "field",
|
|
88601
|
+
"name": "_preventScrollOnSpaceKeydown",
|
|
88602
|
+
"privacy": "private",
|
|
88603
|
+
"description": "Prevents scrolling from pressing Space, when the event target is an action element.\nAlso sets active state.",
|
|
88604
|
+
"parameters": [
|
|
88605
|
+
{
|
|
88606
|
+
"description": "The origin event.",
|
|
88607
|
+
"name": "event"
|
|
88608
|
+
}
|
|
88609
|
+
],
|
|
88610
|
+
"inheritedFrom": {
|
|
88611
|
+
"name": "SbbButtonLikeBaseElement",
|
|
88612
|
+
"module": "core/base-elements/button-base-element.js"
|
|
88613
|
+
}
|
|
88614
|
+
},
|
|
88615
|
+
{
|
|
88616
|
+
"kind": "field",
|
|
88617
|
+
"name": "_removeActiveMarker",
|
|
88618
|
+
"privacy": "private",
|
|
88619
|
+
"inheritedFrom": {
|
|
88620
|
+
"name": "SbbButtonLikeBaseElement",
|
|
88621
|
+
"module": "core/base-elements/button-base-element.js"
|
|
88622
|
+
}
|
|
88623
|
+
},
|
|
88624
|
+
{
|
|
88625
|
+
"kind": "field",
|
|
88626
|
+
"name": "_dispatchClickEventOnSpaceKeyup",
|
|
88627
|
+
"privacy": "private",
|
|
88628
|
+
"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.",
|
|
88629
|
+
"parameters": [
|
|
88630
|
+
{
|
|
88631
|
+
"description": "The origin event.",
|
|
88632
|
+
"name": "event"
|
|
88633
|
+
}
|
|
88634
|
+
],
|
|
88635
|
+
"inheritedFrom": {
|
|
88636
|
+
"name": "SbbButtonLikeBaseElement",
|
|
88637
|
+
"module": "core/base-elements/button-base-element.js"
|
|
88638
|
+
}
|
|
88639
|
+
},
|
|
88640
|
+
{
|
|
88641
|
+
"kind": "field",
|
|
88642
|
+
"name": "_dispatchClickEvent",
|
|
88643
|
+
"privacy": "private",
|
|
88644
|
+
"inheritedFrom": {
|
|
88645
|
+
"name": "SbbButtonLikeBaseElement",
|
|
88646
|
+
"module": "core/base-elements/button-base-element.js"
|
|
88647
|
+
}
|
|
88648
|
+
},
|
|
88649
|
+
{
|
|
88650
|
+
"kind": "field",
|
|
88651
|
+
"name": "maybeDisabled",
|
|
88652
|
+
"type": {
|
|
88653
|
+
"text": "boolean | undefined"
|
|
88654
|
+
},
|
|
88655
|
+
"privacy": "protected",
|
|
88656
|
+
"readonly": true,
|
|
88657
|
+
"inheritedFrom": {
|
|
88658
|
+
"name": "SbbActionBaseElement",
|
|
88659
|
+
"module": "core/base-elements/action-base-element.js"
|
|
88660
|
+
}
|
|
88661
|
+
},
|
|
88662
|
+
{
|
|
88663
|
+
"kind": "field",
|
|
88664
|
+
"name": "maybeDisabledInteractive",
|
|
88665
|
+
"type": {
|
|
88666
|
+
"text": "boolean | undefined"
|
|
88667
|
+
},
|
|
88668
|
+
"privacy": "protected",
|
|
88669
|
+
"readonly": true,
|
|
88670
|
+
"inheritedFrom": {
|
|
88671
|
+
"name": "SbbActionBaseElement",
|
|
88672
|
+
"module": "core/base-elements/action-base-element.js"
|
|
88673
|
+
}
|
|
88674
|
+
},
|
|
88675
|
+
{
|
|
88676
|
+
"kind": "method",
|
|
88677
|
+
"name": "setupBaseEventHandlers",
|
|
88678
|
+
"privacy": "protected",
|
|
88679
|
+
"return": {
|
|
88680
|
+
"type": {
|
|
88681
|
+
"text": "void"
|
|
88682
|
+
}
|
|
88683
|
+
},
|
|
88684
|
+
"inheritedFrom": {
|
|
88685
|
+
"name": "SbbActionBaseElement",
|
|
88686
|
+
"module": "core/base-elements/action-base-element.js"
|
|
88687
|
+
}
|
|
88688
|
+
},
|
|
88453
88689
|
{
|
|
88454
88690
|
"kind": "field",
|
|
88455
88691
|
"name": "_hydrationRequired",
|
|
@@ -88543,20 +88779,6 @@
|
|
|
88543
88779
|
"module": "core/base-elements/element.js"
|
|
88544
88780
|
}
|
|
88545
88781
|
},
|
|
88546
|
-
{
|
|
88547
|
-
"kind": "field",
|
|
88548
|
-
"name": "elementName",
|
|
88549
|
-
"type": {
|
|
88550
|
-
"text": "string"
|
|
88551
|
-
},
|
|
88552
|
-
"privacy": "public",
|
|
88553
|
-
"static": true,
|
|
88554
|
-
"readonly": true,
|
|
88555
|
-
"inheritedFrom": {
|
|
88556
|
-
"name": "SbbElement",
|
|
88557
|
-
"module": "core/base-elements/element.js"
|
|
88558
|
-
}
|
|
88559
|
-
},
|
|
88560
88782
|
{
|
|
88561
88783
|
"kind": "field",
|
|
88562
88784
|
"name": "_controllers",
|
|
@@ -88570,21 +88792,45 @@
|
|
|
88570
88792
|
}
|
|
88571
88793
|
}
|
|
88572
88794
|
],
|
|
88795
|
+
"events": [
|
|
88796
|
+
{
|
|
88797
|
+
"name": "toggleexpanded",
|
|
88798
|
+
"type": {
|
|
88799
|
+
"text": "Event"
|
|
88800
|
+
},
|
|
88801
|
+
"description": "Notifies that the `sbb-expansion-panel` is about to expand/shrink."
|
|
88802
|
+
}
|
|
88803
|
+
],
|
|
88573
88804
|
"mixins": [
|
|
88574
88805
|
{
|
|
88575
|
-
"name": "
|
|
88806
|
+
"name": "SbbDisabledTabIndexActionMixin",
|
|
88576
88807
|
"module": "core/mixins.js"
|
|
88577
88808
|
},
|
|
88578
88809
|
{
|
|
88579
|
-
"name": "
|
|
88580
|
-
"module": "
|
|
88810
|
+
"name": "SbbIconNameMixin",
|
|
88811
|
+
"module": "icon.js"
|
|
88581
88812
|
}
|
|
88582
88813
|
],
|
|
88583
88814
|
"superclass": {
|
|
88584
|
-
"name": "
|
|
88815
|
+
"name": "SbbButtonBaseElement",
|
|
88585
88816
|
"module": "core/base-elements.js"
|
|
88586
88817
|
},
|
|
88818
|
+
"tagName": "sbb-expansion-panel-header",
|
|
88819
|
+
"customElement": true,
|
|
88587
88820
|
"attributes": [
|
|
88821
|
+
{
|
|
88822
|
+
"name": "disabled-interactive",
|
|
88823
|
+
"type": {
|
|
88824
|
+
"text": "boolean"
|
|
88825
|
+
},
|
|
88826
|
+
"default": "false",
|
|
88827
|
+
"description": "Whether the button should be aria-disabled but stay interactive.",
|
|
88828
|
+
"fieldName": "disabledInteractive",
|
|
88829
|
+
"inheritedFrom": {
|
|
88830
|
+
"name": "SbbDisabledInteractiveMixin",
|
|
88831
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
88832
|
+
}
|
|
88833
|
+
},
|
|
88588
88834
|
{
|
|
88589
88835
|
"name": "disabled",
|
|
88590
88836
|
"description": "Whether the component is disabled.",
|
|
@@ -88598,6 +88844,57 @@
|
|
|
88598
88844
|
"module": "core/mixins/disabled-mixin.js"
|
|
88599
88845
|
}
|
|
88600
88846
|
},
|
|
88847
|
+
{
|
|
88848
|
+
"name": "icon-name",
|
|
88849
|
+
"type": {
|
|
88850
|
+
"text": "string"
|
|
88851
|
+
},
|
|
88852
|
+
"default": "''",
|
|
88853
|
+
"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.",
|
|
88854
|
+
"fieldName": "iconName",
|
|
88855
|
+
"inheritedFrom": {
|
|
88856
|
+
"name": "SbbIconNameMixin",
|
|
88857
|
+
"module": "icon/icon-name-mixin.js"
|
|
88858
|
+
}
|
|
88859
|
+
},
|
|
88860
|
+
{
|
|
88861
|
+
"name": "value",
|
|
88862
|
+
"type": {
|
|
88863
|
+
"text": "string"
|
|
88864
|
+
},
|
|
88865
|
+
"default": "''",
|
|
88866
|
+
"description": "Value of the form element.",
|
|
88867
|
+
"fieldName": "value",
|
|
88868
|
+
"inheritedFrom": {
|
|
88869
|
+
"name": "SbbButtonBaseElement",
|
|
88870
|
+
"module": "core/base-elements/button-base-element.js"
|
|
88871
|
+
}
|
|
88872
|
+
},
|
|
88873
|
+
{
|
|
88874
|
+
"name": "type",
|
|
88875
|
+
"description": "The type attribute to use for the button.",
|
|
88876
|
+
"default": "'button'",
|
|
88877
|
+
"type": {
|
|
88878
|
+
"text": "SbbButtonType"
|
|
88879
|
+
},
|
|
88880
|
+
"fieldName": "type",
|
|
88881
|
+
"inheritedFrom": {
|
|
88882
|
+
"name": "SbbButtonBaseElement",
|
|
88883
|
+
"module": "core/base-elements/button-base-element.js"
|
|
88884
|
+
}
|
|
88885
|
+
},
|
|
88886
|
+
{
|
|
88887
|
+
"name": "form",
|
|
88888
|
+
"description": "The `<form>` element to associate the button with.",
|
|
88889
|
+
"type": {
|
|
88890
|
+
"text": "HTMLFormElement | null"
|
|
88891
|
+
},
|
|
88892
|
+
"fieldName": "form",
|
|
88893
|
+
"inheritedFrom": {
|
|
88894
|
+
"name": "SbbButtonBaseElement",
|
|
88895
|
+
"module": "core/base-elements/button-base-element.js"
|
|
88896
|
+
}
|
|
88897
|
+
},
|
|
88601
88898
|
{
|
|
88602
88899
|
"name": "name",
|
|
88603
88900
|
"description": "Name of the form element. Will be read from name attribute.",
|
|
@@ -88611,34 +88908,39 @@
|
|
|
88611
88908
|
}
|
|
88612
88909
|
}
|
|
88613
88910
|
]
|
|
88911
|
+
}
|
|
88912
|
+
],
|
|
88913
|
+
"exports": [
|
|
88914
|
+
{
|
|
88915
|
+
"kind": "js",
|
|
88916
|
+
"name": "SbbExpansionPanelHeaderElement",
|
|
88917
|
+
"declaration": {
|
|
88918
|
+
"name": "SbbExpansionPanelHeaderElement",
|
|
88919
|
+
"module": "expansion-panel/expansion-panel-header/expansion-panel-header.component.js"
|
|
88920
|
+
}
|
|
88921
|
+
}
|
|
88922
|
+
]
|
|
88923
|
+
},
|
|
88924
|
+
{
|
|
88925
|
+
"kind": "javascript-module",
|
|
88926
|
+
"path": "file-selector/common/file-selector-common.js",
|
|
88927
|
+
"declarations": [
|
|
88928
|
+
{
|
|
88929
|
+
"kind": "variable",
|
|
88930
|
+
"name": "fileSelectorCommonStyle"
|
|
88614
88931
|
},
|
|
88615
88932
|
{
|
|
88616
|
-
"kind": "
|
|
88933
|
+
"kind": "class",
|
|
88617
88934
|
"description": "",
|
|
88618
|
-
"name": "
|
|
88935
|
+
"name": "SbbFileSelectorCommonElementMixinType",
|
|
88619
88936
|
"members": [
|
|
88620
|
-
{
|
|
88621
|
-
"kind": "field",
|
|
88622
|
-
"name": "events",
|
|
88623
|
-
"privacy": "public",
|
|
88624
|
-
"static": true,
|
|
88625
|
-
"readonly": true,
|
|
88626
|
-
"default": "{ filechanged: 'filechanged', }",
|
|
88627
|
-
"type": {
|
|
88628
|
-
"text": "{\n filechanged: 'filechanged',\n }"
|
|
88629
|
-
}
|
|
88630
|
-
},
|
|
88631
88937
|
{
|
|
88632
88938
|
"kind": "field",
|
|
88633
88939
|
"name": "size",
|
|
88634
88940
|
"type": {
|
|
88635
88941
|
"text": "'s' | 'm'"
|
|
88636
88942
|
},
|
|
88637
|
-
"privacy": "public"
|
|
88638
|
-
"description": "Size variant, either s or m.",
|
|
88639
|
-
"default": "'m' / 's' (lean)",
|
|
88640
|
-
"attribute": "size",
|
|
88641
|
-
"reflects": true
|
|
88943
|
+
"privacy": "public"
|
|
88642
88944
|
},
|
|
88643
88945
|
{
|
|
88644
88946
|
"kind": "field",
|
|
@@ -88646,10 +88948,7 @@
|
|
|
88646
88948
|
"type": {
|
|
88647
88949
|
"text": "boolean"
|
|
88648
88950
|
},
|
|
88649
|
-
"privacy": "public"
|
|
88650
|
-
"default": "false",
|
|
88651
|
-
"description": "Whether more than one file can be selected.",
|
|
88652
|
-
"attribute": "multiple"
|
|
88951
|
+
"privacy": "public"
|
|
88653
88952
|
},
|
|
88654
88953
|
{
|
|
88655
88954
|
"kind": "field",
|
|
@@ -88657,10 +88956,7 @@
|
|
|
88657
88956
|
"type": {
|
|
88658
88957
|
"text": "'default' | 'persistent'"
|
|
88659
88958
|
},
|
|
88660
|
-
"privacy": "public"
|
|
88661
|
-
"default": "'default'",
|
|
88662
|
-
"description": "Whether the newly added files should override the previously added ones.",
|
|
88663
|
-
"attribute": "multiple-mode"
|
|
88959
|
+
"privacy": "public"
|
|
88664
88960
|
},
|
|
88665
88961
|
{
|
|
88666
88962
|
"kind": "field",
|
|
@@ -88668,10 +88964,7 @@
|
|
|
88668
88964
|
"type": {
|
|
88669
88965
|
"text": "string"
|
|
88670
88966
|
},
|
|
88671
|
-
"privacy": "public"
|
|
88672
|
-
"default": "''",
|
|
88673
|
-
"description": "A comma-separated list of allowed unique file type specifiers.",
|
|
88674
|
-
"attribute": "accept"
|
|
88967
|
+
"privacy": "public"
|
|
88675
88968
|
},
|
|
88676
88969
|
{
|
|
88677
88970
|
"kind": "field",
|
|
@@ -88679,77 +88972,27 @@
|
|
|
88679
88972
|
"type": {
|
|
88680
88973
|
"text": "string"
|
|
88681
88974
|
},
|
|
88682
|
-
"privacy": "public"
|
|
88683
|
-
"default": "''",
|
|
88684
|
-
"description": "This will be forwarded as aria-label to the native input element.",
|
|
88685
|
-
"attribute": "accessibility-label"
|
|
88686
|
-
},
|
|
88687
|
-
{
|
|
88688
|
-
"kind": "field",
|
|
88689
|
-
"name": "value",
|
|
88690
|
-
"type": {
|
|
88691
|
-
"text": "string | null"
|
|
88692
|
-
},
|
|
88693
|
-
"privacy": "public",
|
|
88694
|
-
"description": "The path of the first selected file. Empty string ('') if no file is selected",
|
|
88695
|
-
"inheritedFrom": {
|
|
88696
|
-
"name": "SbbFormAssociatedMixin",
|
|
88697
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
88698
|
-
}
|
|
88975
|
+
"privacy": "public"
|
|
88699
88976
|
},
|
|
88700
88977
|
{
|
|
88701
88978
|
"kind": "field",
|
|
88702
88979
|
"name": "files",
|
|
88703
|
-
"privacy": "public",
|
|
88704
|
-
"description": "The list of selected files.",
|
|
88705
|
-
"type": {
|
|
88706
|
-
"text": "Readonly<File>[]"
|
|
88707
|
-
}
|
|
88708
|
-
},
|
|
88709
|
-
{
|
|
88710
|
-
"kind": "field",
|
|
88711
|
-
"name": "_files",
|
|
88712
88980
|
"type": {
|
|
88713
88981
|
"text": "Readonly<File>[]"
|
|
88714
88982
|
},
|
|
88715
|
-
"privacy": "
|
|
88716
|
-
"default": "[]"
|
|
88983
|
+
"privacy": "public"
|
|
88717
88984
|
},
|
|
88718
88985
|
{
|
|
88719
88986
|
"kind": "field",
|
|
88720
|
-
"name": "
|
|
88987
|
+
"name": "value",
|
|
88721
88988
|
"type": {
|
|
88722
|
-
"text": "string"
|
|
88989
|
+
"text": "string | null"
|
|
88723
88990
|
},
|
|
88724
88991
|
"privacy": "public",
|
|
88725
|
-
"
|
|
88726
|
-
|
|
88727
|
-
|
|
88728
|
-
|
|
88729
|
-
{
|
|
88730
|
-
"kind": "field",
|
|
88731
|
-
"name": "_hiddenInput",
|
|
88732
|
-
"type": {
|
|
88733
|
-
"text": "HTMLInputElement"
|
|
88734
|
-
},
|
|
88735
|
-
"privacy": "private"
|
|
88736
|
-
},
|
|
88737
|
-
{
|
|
88738
|
-
"kind": "field",
|
|
88739
|
-
"name": "_suffixes",
|
|
88740
|
-
"type": {
|
|
88741
|
-
"text": "string[]"
|
|
88742
|
-
},
|
|
88743
|
-
"privacy": "private",
|
|
88744
|
-
"default": "['B', 'kB', 'MB', 'GB', 'TB']"
|
|
88745
|
-
},
|
|
88746
|
-
{
|
|
88747
|
-
"kind": "field",
|
|
88748
|
-
"name": "_liveRegion",
|
|
88749
|
-
"type": {
|
|
88750
|
-
"text": "HTMLParagraphElement"
|
|
88751
|
-
},
|
|
88752
|
-
"privacy": "private"
|
|
88992
|
+
"inheritedFrom": {
|
|
88993
|
+
"name": "SbbFormAssociatedMixin",
|
|
88994
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
88995
|
+
}
|
|
88753
88996
|
},
|
|
88754
88997
|
{
|
|
88755
88998
|
"kind": "field",
|
|
@@ -88762,25 +89005,10 @@
|
|
|
88762
89005
|
{
|
|
88763
89006
|
"kind": "field",
|
|
88764
89007
|
"name": "language",
|
|
88765
|
-
"privacy": "protected",
|
|
88766
|
-
"default": "new SbbLanguageController(this)"
|
|
88767
|
-
},
|
|
88768
|
-
{
|
|
88769
|
-
"kind": "field",
|
|
88770
|
-
"name": "_counter",
|
|
88771
|
-
"type": {
|
|
88772
|
-
"text": "number"
|
|
88773
|
-
},
|
|
88774
|
-
"privacy": "private",
|
|
88775
|
-
"default": "0"
|
|
88776
|
-
},
|
|
88777
|
-
{
|
|
88778
|
-
"kind": "field",
|
|
88779
|
-
"name": "_dragTarget",
|
|
88780
89008
|
"type": {
|
|
88781
|
-
"text": "
|
|
89009
|
+
"text": "SbbLanguageController"
|
|
88782
89010
|
},
|
|
88783
|
-
"privacy": "
|
|
89011
|
+
"privacy": "protected"
|
|
88784
89012
|
},
|
|
88785
89013
|
{
|
|
88786
89014
|
"kind": "method",
|
|
@@ -88802,92 +89030,36 @@
|
|
|
88802
89030
|
},
|
|
88803
89031
|
{
|
|
88804
89032
|
"kind": "method",
|
|
88805
|
-
"name": "
|
|
88806
|
-
"privacy": "public",
|
|
88807
|
-
"return": {
|
|
88808
|
-
"type": {
|
|
88809
|
-
"text": "void"
|
|
88810
|
-
}
|
|
88811
|
-
}
|
|
88812
|
-
},
|
|
88813
|
-
{
|
|
88814
|
-
"kind": "method",
|
|
88815
|
-
"name": "formStateRestoreCallback",
|
|
88816
|
-
"privacy": "public",
|
|
88817
|
-
"return": {
|
|
88818
|
-
"type": {
|
|
88819
|
-
"text": "void"
|
|
88820
|
-
}
|
|
88821
|
-
},
|
|
88822
|
-
"parameters": [
|
|
88823
|
-
{
|
|
88824
|
-
"name": "state",
|
|
88825
|
-
"type": {
|
|
88826
|
-
"text": "FormRestoreState | null"
|
|
88827
|
-
}
|
|
88828
|
-
},
|
|
88829
|
-
{
|
|
88830
|
-
"name": "_reason",
|
|
88831
|
-
"optional": true,
|
|
88832
|
-
"type": {
|
|
88833
|
-
"text": "FormRestoreReason"
|
|
88834
|
-
}
|
|
88835
|
-
}
|
|
88836
|
-
]
|
|
88837
|
-
},
|
|
88838
|
-
{
|
|
88839
|
-
"kind": "method",
|
|
88840
|
-
"name": "updateFormValue",
|
|
89033
|
+
"name": "createFileList",
|
|
88841
89034
|
"privacy": "protected",
|
|
88842
89035
|
"return": {
|
|
88843
89036
|
"type": {
|
|
88844
89037
|
"text": "void"
|
|
88845
89038
|
}
|
|
88846
89039
|
},
|
|
88847
|
-
"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",
|
|
88848
|
-
"inheritedFrom": {
|
|
88849
|
-
"name": "SbbFormAssociatedMixin",
|
|
88850
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
88851
|
-
}
|
|
88852
|
-
},
|
|
88853
|
-
{
|
|
88854
|
-
"kind": "method",
|
|
88855
|
-
"name": "_checkFileEquality",
|
|
88856
|
-
"privacy": "private",
|
|
88857
|
-
"return": {
|
|
88858
|
-
"type": {
|
|
88859
|
-
"text": "boolean"
|
|
88860
|
-
}
|
|
88861
|
-
},
|
|
88862
89040
|
"parameters": [
|
|
88863
89041
|
{
|
|
88864
|
-
"name": "
|
|
88865
|
-
"type": {
|
|
88866
|
-
"text": "Readonly<File>"
|
|
88867
|
-
}
|
|
88868
|
-
},
|
|
88869
|
-
{
|
|
88870
|
-
"name": "file2",
|
|
89042
|
+
"name": "files",
|
|
88871
89043
|
"type": {
|
|
88872
|
-
"text": "
|
|
89044
|
+
"text": "FileList"
|
|
88873
89045
|
}
|
|
88874
89046
|
}
|
|
88875
89047
|
]
|
|
88876
89048
|
},
|
|
88877
89049
|
{
|
|
88878
89050
|
"kind": "method",
|
|
88879
|
-
"name": "
|
|
88880
|
-
"privacy": "
|
|
89051
|
+
"name": "getButtonLabel",
|
|
89052
|
+
"privacy": "protected",
|
|
88881
89053
|
"return": {
|
|
88882
89054
|
"type": {
|
|
88883
|
-
"text": "
|
|
89055
|
+
"text": "string"
|
|
88884
89056
|
}
|
|
88885
89057
|
}
|
|
88886
89058
|
},
|
|
88887
89059
|
{
|
|
88888
89060
|
"kind": "method",
|
|
88889
|
-
"name": "
|
|
88890
|
-
"privacy": "
|
|
89061
|
+
"name": "formResetCallback",
|
|
89062
|
+
"privacy": "public",
|
|
88891
89063
|
"return": {
|
|
88892
89064
|
"type": {
|
|
88893
89065
|
"text": "void"
|
|
@@ -88896,8 +89068,8 @@
|
|
|
88896
89068
|
},
|
|
88897
89069
|
{
|
|
88898
89070
|
"kind": "method",
|
|
88899
|
-
"name": "
|
|
88900
|
-
"privacy": "
|
|
89071
|
+
"name": "formStateRestoreCallback",
|
|
89072
|
+
"privacy": "public",
|
|
88901
89073
|
"return": {
|
|
88902
89074
|
"type": {
|
|
88903
89075
|
"text": "void"
|
|
@@ -88905,249 +89077,62 @@
|
|
|
88905
89077
|
},
|
|
88906
89078
|
"parameters": [
|
|
88907
89079
|
{
|
|
88908
|
-
"name": "
|
|
89080
|
+
"name": "state",
|
|
88909
89081
|
"type": {
|
|
88910
|
-
"text": "
|
|
89082
|
+
"text": "FormRestoreState | null"
|
|
88911
89083
|
}
|
|
88912
|
-
}
|
|
88913
|
-
]
|
|
88914
|
-
},
|
|
88915
|
-
{
|
|
88916
|
-
"kind": "method",
|
|
88917
|
-
"name": "createFileList",
|
|
88918
|
-
"privacy": "protected",
|
|
88919
|
-
"return": {
|
|
88920
|
-
"type": {
|
|
88921
|
-
"text": "void"
|
|
88922
|
-
}
|
|
88923
|
-
},
|
|
88924
|
-
"parameters": [
|
|
89084
|
+
},
|
|
88925
89085
|
{
|
|
88926
|
-
"name": "
|
|
89086
|
+
"name": "reason",
|
|
88927
89087
|
"type": {
|
|
88928
|
-
"text": "
|
|
89088
|
+
"text": "FormRestoreReason"
|
|
88929
89089
|
}
|
|
88930
89090
|
}
|
|
88931
89091
|
]
|
|
88932
89092
|
},
|
|
88933
89093
|
{
|
|
88934
|
-
"kind": "
|
|
88935
|
-
"name": "
|
|
88936
|
-
"privacy": "
|
|
88937
|
-
"
|
|
88938
|
-
|
|
88939
|
-
|
|
88940
|
-
|
|
89094
|
+
"kind": "field",
|
|
89095
|
+
"name": "disabled",
|
|
89096
|
+
"privacy": "public",
|
|
89097
|
+
"description": "Whether the component is disabled.",
|
|
89098
|
+
"default": "false",
|
|
89099
|
+
"type": {
|
|
89100
|
+
"text": "boolean"
|
|
89101
|
+
},
|
|
89102
|
+
"attribute": "disabled",
|
|
89103
|
+
"reflects": true,
|
|
89104
|
+
"inheritedFrom": {
|
|
89105
|
+
"name": "SbbDisabledMixin",
|
|
89106
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
88941
89107
|
}
|
|
88942
89108
|
},
|
|
88943
89109
|
{
|
|
88944
|
-
"kind": "
|
|
88945
|
-
"name": "
|
|
89110
|
+
"kind": "field",
|
|
89111
|
+
"name": "#disabled",
|
|
88946
89112
|
"privacy": "private",
|
|
88947
|
-
"
|
|
88948
|
-
"
|
|
88949
|
-
"text": "void"
|
|
88950
|
-
}
|
|
89113
|
+
"type": {
|
|
89114
|
+
"text": "boolean"
|
|
88951
89115
|
},
|
|
88952
|
-
"
|
|
88953
|
-
|
|
88954
|
-
|
|
88955
|
-
|
|
88956
|
-
"text": "Readonly<File>"
|
|
88957
|
-
}
|
|
88958
|
-
}
|
|
88959
|
-
]
|
|
88960
|
-
},
|
|
88961
|
-
{
|
|
88962
|
-
"kind": "method",
|
|
88963
|
-
"name": "_dispatchFileChangedEvent",
|
|
88964
|
-
"privacy": "private",
|
|
88965
|
-
"return": {
|
|
88966
|
-
"type": {
|
|
88967
|
-
"text": "void"
|
|
88968
|
-
}
|
|
89116
|
+
"default": "false",
|
|
89117
|
+
"inheritedFrom": {
|
|
89118
|
+
"name": "SbbDisabledMixin",
|
|
89119
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
88969
89120
|
}
|
|
88970
89121
|
},
|
|
88971
89122
|
{
|
|
88972
89123
|
"kind": "method",
|
|
88973
|
-
"name": "
|
|
88974
|
-
"privacy": "
|
|
89124
|
+
"name": "isDisabledExternally",
|
|
89125
|
+
"privacy": "protected",
|
|
88975
89126
|
"return": {
|
|
88976
89127
|
"type": {
|
|
88977
|
-
"text": "
|
|
89128
|
+
"text": "boolean"
|
|
88978
89129
|
}
|
|
88979
89130
|
},
|
|
88980
|
-
"
|
|
88981
|
-
|
|
88982
|
-
|
|
88983
|
-
|
|
88984
|
-
|
|
88985
|
-
}
|
|
88986
|
-
}
|
|
88987
|
-
],
|
|
88988
|
-
"description": "Calculates the correct unit for the file's size."
|
|
88989
|
-
},
|
|
88990
|
-
{
|
|
88991
|
-
"kind": "method",
|
|
88992
|
-
"name": "_updateA11yLiveRegion",
|
|
88993
|
-
"privacy": "private",
|
|
88994
|
-
"return": {
|
|
88995
|
-
"type": {
|
|
88996
|
-
"text": "void"
|
|
88997
|
-
}
|
|
88998
|
-
}
|
|
88999
|
-
},
|
|
89000
|
-
{
|
|
89001
|
-
"kind": "method",
|
|
89002
|
-
"name": "_renderFileList",
|
|
89003
|
-
"privacy": "private",
|
|
89004
|
-
"return": {
|
|
89005
|
-
"type": {
|
|
89006
|
-
"text": "TemplateResult"
|
|
89007
|
-
}
|
|
89008
|
-
}
|
|
89009
|
-
},
|
|
89010
|
-
{
|
|
89011
|
-
"kind": "method",
|
|
89012
|
-
"name": "_onDragEnter",
|
|
89013
|
-
"privacy": "private",
|
|
89014
|
-
"return": {
|
|
89015
|
-
"type": {
|
|
89016
|
-
"text": "void"
|
|
89017
|
-
}
|
|
89018
|
-
},
|
|
89019
|
-
"parameters": [
|
|
89020
|
-
{
|
|
89021
|
-
"name": "event",
|
|
89022
|
-
"type": {
|
|
89023
|
-
"text": "DragEvent"
|
|
89024
|
-
}
|
|
89025
|
-
}
|
|
89026
|
-
]
|
|
89027
|
-
},
|
|
89028
|
-
{
|
|
89029
|
-
"kind": "method",
|
|
89030
|
-
"name": "_onDragLeave",
|
|
89031
|
-
"privacy": "private",
|
|
89032
|
-
"return": {
|
|
89033
|
-
"type": {
|
|
89034
|
-
"text": "void"
|
|
89035
|
-
}
|
|
89036
|
-
},
|
|
89037
|
-
"parameters": [
|
|
89038
|
-
{
|
|
89039
|
-
"name": "event",
|
|
89040
|
-
"type": {
|
|
89041
|
-
"text": "DragEvent"
|
|
89042
|
-
}
|
|
89043
|
-
}
|
|
89044
|
-
]
|
|
89045
|
-
},
|
|
89046
|
-
{
|
|
89047
|
-
"kind": "method",
|
|
89048
|
-
"name": "_onFileDrop",
|
|
89049
|
-
"privacy": "private",
|
|
89050
|
-
"return": {
|
|
89051
|
-
"type": {
|
|
89052
|
-
"text": "void"
|
|
89053
|
-
}
|
|
89054
|
-
},
|
|
89055
|
-
"parameters": [
|
|
89056
|
-
{
|
|
89057
|
-
"name": "event",
|
|
89058
|
-
"type": {
|
|
89059
|
-
"text": "DragEvent"
|
|
89060
|
-
}
|
|
89061
|
-
}
|
|
89062
|
-
]
|
|
89063
|
-
},
|
|
89064
|
-
{
|
|
89065
|
-
"kind": "method",
|
|
89066
|
-
"name": "_blockEvent",
|
|
89067
|
-
"privacy": "private",
|
|
89068
|
-
"return": {
|
|
89069
|
-
"type": {
|
|
89070
|
-
"text": "void"
|
|
89071
|
-
}
|
|
89072
|
-
},
|
|
89073
|
-
"parameters": [
|
|
89074
|
-
{
|
|
89075
|
-
"name": "event",
|
|
89076
|
-
"type": {
|
|
89077
|
-
"text": "DragEvent"
|
|
89078
|
-
}
|
|
89079
|
-
}
|
|
89080
|
-
]
|
|
89081
|
-
},
|
|
89082
|
-
{
|
|
89083
|
-
"kind": "method",
|
|
89084
|
-
"name": "_setDragState",
|
|
89085
|
-
"privacy": "private",
|
|
89086
|
-
"return": {
|
|
89087
|
-
"type": {
|
|
89088
|
-
"text": "void"
|
|
89089
|
-
}
|
|
89090
|
-
},
|
|
89091
|
-
"parameters": [
|
|
89092
|
-
{
|
|
89093
|
-
"name": "dragTarget",
|
|
89094
|
-
"default": "undefined",
|
|
89095
|
-
"type": {
|
|
89096
|
-
"text": "HTMLElement | undefined"
|
|
89097
|
-
}
|
|
89098
|
-
},
|
|
89099
|
-
{
|
|
89100
|
-
"name": "isDragEnter",
|
|
89101
|
-
"default": "false",
|
|
89102
|
-
"type": {
|
|
89103
|
-
"text": "boolean"
|
|
89104
|
-
}
|
|
89105
|
-
}
|
|
89106
|
-
]
|
|
89107
|
-
},
|
|
89108
|
-
{
|
|
89109
|
-
"kind": "field",
|
|
89110
|
-
"name": "disabled",
|
|
89111
|
-
"privacy": "public",
|
|
89112
|
-
"description": "Whether the component is disabled.",
|
|
89113
|
-
"default": "false",
|
|
89114
|
-
"type": {
|
|
89115
|
-
"text": "boolean"
|
|
89116
|
-
},
|
|
89117
|
-
"attribute": "disabled",
|
|
89118
|
-
"reflects": true,
|
|
89119
|
-
"inheritedFrom": {
|
|
89120
|
-
"name": "SbbDisabledMixin",
|
|
89121
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
89122
|
-
}
|
|
89123
|
-
},
|
|
89124
|
-
{
|
|
89125
|
-
"kind": "field",
|
|
89126
|
-
"name": "#disabled",
|
|
89127
|
-
"privacy": "private",
|
|
89128
|
-
"type": {
|
|
89129
|
-
"text": "boolean"
|
|
89130
|
-
},
|
|
89131
|
-
"default": "false",
|
|
89132
|
-
"inheritedFrom": {
|
|
89133
|
-
"name": "SbbDisabledMixin",
|
|
89134
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
89135
|
-
}
|
|
89136
|
-
},
|
|
89137
|
-
{
|
|
89138
|
-
"kind": "method",
|
|
89139
|
-
"name": "isDisabledExternally",
|
|
89140
|
-
"privacy": "protected",
|
|
89141
|
-
"return": {
|
|
89142
|
-
"type": {
|
|
89143
|
-
"text": "boolean"
|
|
89144
|
-
}
|
|
89145
|
-
},
|
|
89146
|
-
"description": "Will be used as 'or' check to the current disabled state.\nCan e.g. be used to read disabled state of a group.",
|
|
89147
|
-
"inheritedFrom": {
|
|
89148
|
-
"name": "SbbDisabledMixin",
|
|
89149
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
89150
|
-
}
|
|
89131
|
+
"description": "Will be used as 'or' check to the current disabled state.\nCan e.g. be used to read disabled state of a group.",
|
|
89132
|
+
"inheritedFrom": {
|
|
89133
|
+
"name": "SbbDisabledMixin",
|
|
89134
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
89135
|
+
}
|
|
89151
89136
|
},
|
|
89152
89137
|
{
|
|
89153
89138
|
"kind": "field",
|
|
@@ -89324,6 +89309,21 @@
|
|
|
89324
89309
|
"module": "core/mixins/form-associated-mixin.js"
|
|
89325
89310
|
}
|
|
89326
89311
|
},
|
|
89312
|
+
{
|
|
89313
|
+
"kind": "method",
|
|
89314
|
+
"name": "updateFormValue",
|
|
89315
|
+
"privacy": "protected",
|
|
89316
|
+
"return": {
|
|
89317
|
+
"type": {
|
|
89318
|
+
"text": "void"
|
|
89319
|
+
}
|
|
89320
|
+
},
|
|
89321
|
+
"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",
|
|
89322
|
+
"inheritedFrom": {
|
|
89323
|
+
"name": "SbbFormAssociatedMixin",
|
|
89324
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
89325
|
+
}
|
|
89326
|
+
},
|
|
89327
89327
|
{
|
|
89328
89328
|
"kind": "method",
|
|
89329
89329
|
"name": "formState",
|
|
@@ -89448,77 +89448,142 @@
|
|
|
89448
89448
|
"name": "SbbFormAssociatedMixin",
|
|
89449
89449
|
"module": "core/mixins/form-associated-mixin.js"
|
|
89450
89450
|
}
|
|
89451
|
-
}
|
|
89452
|
-
],
|
|
89453
|
-
"events": [
|
|
89451
|
+
},
|
|
89454
89452
|
{
|
|
89455
|
-
"
|
|
89453
|
+
"kind": "field",
|
|
89454
|
+
"name": "_hydrationRequired",
|
|
89456
89455
|
"type": {
|
|
89457
|
-
"text": "
|
|
89456
|
+
"text": "boolean"
|
|
89458
89457
|
},
|
|
89459
|
-
"
|
|
89458
|
+
"privacy": "private",
|
|
89459
|
+
"default": "!!this.shadowRoot",
|
|
89460
|
+
"inheritedFrom": {
|
|
89461
|
+
"name": "SbbElement",
|
|
89462
|
+
"module": "core/base-elements/element.js"
|
|
89463
|
+
}
|
|
89460
89464
|
},
|
|
89461
89465
|
{
|
|
89462
|
-
"
|
|
89463
|
-
"
|
|
89464
|
-
|
|
89465
|
-
|
|
89466
|
-
"
|
|
89466
|
+
"kind": "field",
|
|
89467
|
+
"name": "_hydrationComplete",
|
|
89468
|
+
"privacy": "private",
|
|
89469
|
+
"default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
|
|
89470
|
+
"inheritedFrom": {
|
|
89471
|
+
"name": "SbbElement",
|
|
89472
|
+
"module": "core/base-elements/element.js"
|
|
89473
|
+
}
|
|
89467
89474
|
},
|
|
89468
89475
|
{
|
|
89469
|
-
"
|
|
89476
|
+
"kind": "field",
|
|
89477
|
+
"name": "_resolveHydration",
|
|
89470
89478
|
"type": {
|
|
89471
|
-
"text": "
|
|
89479
|
+
"text": "(hydrationRequired: boolean) => void"
|
|
89472
89480
|
},
|
|
89473
|
-
"
|
|
89474
|
-
|
|
89475
|
-
|
|
89476
|
-
|
|
89481
|
+
"privacy": "private",
|
|
89482
|
+
"inheritedFrom": {
|
|
89483
|
+
"name": "SbbElement",
|
|
89484
|
+
"module": "core/base-elements/element.js"
|
|
89485
|
+
}
|
|
89486
|
+
},
|
|
89477
89487
|
{
|
|
89478
|
-
"
|
|
89488
|
+
"kind": "field",
|
|
89489
|
+
"name": "hydrationRequired",
|
|
89479
89490
|
"type": {
|
|
89480
|
-
"text": "
|
|
89491
|
+
"text": "boolean"
|
|
89481
89492
|
},
|
|
89482
|
-
"
|
|
89483
|
-
"
|
|
89484
|
-
"
|
|
89493
|
+
"privacy": "protected",
|
|
89494
|
+
"description": "Returns whether hydration is required and not completed.",
|
|
89495
|
+
"readonly": true,
|
|
89496
|
+
"inheritedFrom": {
|
|
89497
|
+
"name": "SbbElement",
|
|
89498
|
+
"module": "core/base-elements/element.js"
|
|
89499
|
+
},
|
|
89500
|
+
"default": "!!this.shadowRoot"
|
|
89485
89501
|
},
|
|
89486
89502
|
{
|
|
89487
|
-
"
|
|
89488
|
-
"
|
|
89489
|
-
|
|
89503
|
+
"kind": "method",
|
|
89504
|
+
"name": "toggleState",
|
|
89505
|
+
"privacy": "protected",
|
|
89506
|
+
"return": {
|
|
89507
|
+
"type": {
|
|
89508
|
+
"text": "void"
|
|
89509
|
+
}
|
|
89490
89510
|
},
|
|
89491
|
-
"
|
|
89492
|
-
|
|
89493
|
-
|
|
89511
|
+
"parameters": [
|
|
89512
|
+
{
|
|
89513
|
+
"name": "value",
|
|
89514
|
+
"type": {
|
|
89515
|
+
"text": "string"
|
|
89516
|
+
}
|
|
89517
|
+
},
|
|
89518
|
+
{
|
|
89519
|
+
"name": "force",
|
|
89520
|
+
"optional": true,
|
|
89521
|
+
"type": {
|
|
89522
|
+
"text": "boolean"
|
|
89523
|
+
}
|
|
89524
|
+
}
|
|
89525
|
+
],
|
|
89526
|
+
"inheritedFrom": {
|
|
89527
|
+
"name": "SbbElement",
|
|
89528
|
+
"module": "core/base-elements/element.js"
|
|
89529
|
+
}
|
|
89494
89530
|
},
|
|
89495
89531
|
{
|
|
89496
|
-
"
|
|
89532
|
+
"kind": "field",
|
|
89533
|
+
"name": "['_$sbbElement$']",
|
|
89497
89534
|
"type": {
|
|
89498
|
-
"text": "
|
|
89535
|
+
"text": "boolean"
|
|
89499
89536
|
},
|
|
89500
|
-
"
|
|
89501
|
-
"
|
|
89502
|
-
"
|
|
89537
|
+
"privacy": "public",
|
|
89538
|
+
"static": true,
|
|
89539
|
+
"default": "true",
|
|
89540
|
+
"inheritedFrom": {
|
|
89541
|
+
"name": "SbbElement",
|
|
89542
|
+
"module": "core/base-elements/element.js"
|
|
89543
|
+
}
|
|
89503
89544
|
},
|
|
89504
89545
|
{
|
|
89505
|
-
"
|
|
89546
|
+
"kind": "field",
|
|
89547
|
+
"name": "elementName",
|
|
89506
89548
|
"type": {
|
|
89507
89549
|
"text": "string"
|
|
89508
89550
|
},
|
|
89509
|
-
"
|
|
89510
|
-
"
|
|
89511
|
-
"
|
|
89551
|
+
"privacy": "public",
|
|
89552
|
+
"static": true,
|
|
89553
|
+
"readonly": true,
|
|
89554
|
+
"inheritedFrom": {
|
|
89555
|
+
"name": "SbbElement",
|
|
89556
|
+
"module": "core/base-elements/element.js"
|
|
89557
|
+
}
|
|
89512
89558
|
},
|
|
89513
89559
|
{
|
|
89514
|
-
"
|
|
89560
|
+
"kind": "field",
|
|
89561
|
+
"name": "_controllers",
|
|
89515
89562
|
"type": {
|
|
89516
|
-
"text": "
|
|
89563
|
+
"text": "Set<SbbReactiveController> | undefined"
|
|
89517
89564
|
},
|
|
89518
|
-
"
|
|
89519
|
-
"
|
|
89520
|
-
|
|
89565
|
+
"privacy": "private",
|
|
89566
|
+
"inheritedFrom": {
|
|
89567
|
+
"name": "SbbElement",
|
|
89568
|
+
"module": "core/base-elements/element.js"
|
|
89569
|
+
}
|
|
89570
|
+
}
|
|
89571
|
+
],
|
|
89572
|
+
"mixins": [
|
|
89573
|
+
{
|
|
89574
|
+
"name": "SbbDisabledMixin",
|
|
89575
|
+
"module": "core/mixins.js"
|
|
89521
89576
|
},
|
|
89577
|
+
{
|
|
89578
|
+
"name": "SbbFormAssociatedMixin",
|
|
89579
|
+
"module": "core/mixins.js"
|
|
89580
|
+
}
|
|
89581
|
+
],
|
|
89582
|
+
"superclass": {
|
|
89583
|
+
"name": "SbbElement",
|
|
89584
|
+
"module": "core/base-elements.js"
|
|
89585
|
+
},
|
|
89586
|
+
"attributes": [
|
|
89522
89587
|
{
|
|
89523
89588
|
"name": "disabled",
|
|
89524
89589
|
"description": "Whether the component is disabled.",
|
|
@@ -89544,125 +89609,200 @@
|
|
|
89544
89609
|
"module": "core/mixins/form-associated-mixin.js"
|
|
89545
89610
|
}
|
|
89546
89611
|
}
|
|
89547
|
-
]
|
|
89548
|
-
|
|
89612
|
+
]
|
|
89613
|
+
},
|
|
89614
|
+
{
|
|
89615
|
+
"kind": "mixin",
|
|
89616
|
+
"description": "",
|
|
89617
|
+
"name": "SbbFileSelectorCommonElementMixin",
|
|
89618
|
+
"members": [
|
|
89549
89619
|
{
|
|
89550
|
-
"
|
|
89551
|
-
"
|
|
89620
|
+
"kind": "field",
|
|
89621
|
+
"name": "events",
|
|
89622
|
+
"privacy": "public",
|
|
89623
|
+
"static": true,
|
|
89624
|
+
"readonly": true,
|
|
89625
|
+
"default": "{ filechanged: 'filechanged', }",
|
|
89626
|
+
"type": {
|
|
89627
|
+
"text": "{\n filechanged: 'filechanged',\n }"
|
|
89628
|
+
}
|
|
89552
89629
|
},
|
|
89553
89630
|
{
|
|
89554
|
-
"
|
|
89555
|
-
"
|
|
89556
|
-
|
|
89557
|
-
|
|
89558
|
-
|
|
89631
|
+
"kind": "field",
|
|
89632
|
+
"name": "size",
|
|
89633
|
+
"type": {
|
|
89634
|
+
"text": "'s' | 'm'"
|
|
89635
|
+
},
|
|
89636
|
+
"privacy": "public",
|
|
89637
|
+
"description": "Size variant, either s or m.",
|
|
89638
|
+
"default": "'m' / 's' (lean)",
|
|
89639
|
+
"attribute": "size",
|
|
89640
|
+
"reflects": true
|
|
89641
|
+
},
|
|
89559
89642
|
{
|
|
89560
|
-
"
|
|
89643
|
+
"kind": "field",
|
|
89644
|
+
"name": "multiple",
|
|
89561
89645
|
"type": {
|
|
89562
|
-
"text": "
|
|
89563
|
-
}
|
|
89564
|
-
|
|
89565
|
-
|
|
89566
|
-
|
|
89567
|
-
|
|
89568
|
-
|
|
89569
|
-
{
|
|
89570
|
-
"kind": "js",
|
|
89571
|
-
"name": "fileSelectorCommonStyle",
|
|
89572
|
-
"declaration": {
|
|
89573
|
-
"name": "fileSelectorCommonStyle",
|
|
89574
|
-
"module": "file-selector/common/file-selector-common.js"
|
|
89575
|
-
}
|
|
89576
|
-
},
|
|
89577
|
-
{
|
|
89578
|
-
"kind": "js",
|
|
89579
|
-
"name": "SbbFileSelectorCommonElementMixinType",
|
|
89580
|
-
"declaration": {
|
|
89581
|
-
"name": "SbbFileSelectorCommonElementMixinType",
|
|
89582
|
-
"module": "file-selector/common/file-selector-common.js"
|
|
89583
|
-
}
|
|
89584
|
-
},
|
|
89585
|
-
{
|
|
89586
|
-
"kind": "js",
|
|
89587
|
-
"name": "SbbFileSelectorCommonElementMixin",
|
|
89588
|
-
"declaration": {
|
|
89589
|
-
"name": "SbbFileSelectorCommonElementMixin",
|
|
89590
|
-
"module": "file-selector/common/file-selector-common.js"
|
|
89591
|
-
}
|
|
89592
|
-
}
|
|
89593
|
-
]
|
|
89594
|
-
},
|
|
89595
|
-
{
|
|
89596
|
-
"kind": "javascript-module",
|
|
89597
|
-
"path": "expansion-panel/expansion-panel-header/expansion-panel-header.component.js",
|
|
89598
|
-
"declarations": [
|
|
89599
|
-
{
|
|
89600
|
-
"kind": "class",
|
|
89601
|
-
"description": "It acts as a native `summary` tag for the `sbb-expansion-panel` component.",
|
|
89602
|
-
"name": "SbbExpansionPanelHeaderElement",
|
|
89603
|
-
"slots": [
|
|
89646
|
+
"text": "boolean"
|
|
89647
|
+
},
|
|
89648
|
+
"privacy": "public",
|
|
89649
|
+
"default": "false",
|
|
89650
|
+
"description": "Whether more than one file can be selected.",
|
|
89651
|
+
"attribute": "multiple"
|
|
89652
|
+
},
|
|
89604
89653
|
{
|
|
89605
|
-
"
|
|
89606
|
-
"name": ""
|
|
89654
|
+
"kind": "field",
|
|
89655
|
+
"name": "multipleMode",
|
|
89656
|
+
"type": {
|
|
89657
|
+
"text": "'default' | 'persistent'"
|
|
89658
|
+
},
|
|
89659
|
+
"privacy": "public",
|
|
89660
|
+
"default": "'default'",
|
|
89661
|
+
"description": "Whether the newly added files should override the previously added ones.",
|
|
89662
|
+
"attribute": "multiple-mode"
|
|
89607
89663
|
},
|
|
89608
89664
|
{
|
|
89609
|
-
"
|
|
89610
|
-
"name": "
|
|
89611
|
-
|
|
89612
|
-
|
|
89613
|
-
|
|
89665
|
+
"kind": "field",
|
|
89666
|
+
"name": "accept",
|
|
89667
|
+
"type": {
|
|
89668
|
+
"text": "string"
|
|
89669
|
+
},
|
|
89670
|
+
"privacy": "public",
|
|
89671
|
+
"default": "''",
|
|
89672
|
+
"description": "A comma-separated list of allowed unique file type specifiers.",
|
|
89673
|
+
"attribute": "accept"
|
|
89674
|
+
},
|
|
89614
89675
|
{
|
|
89615
89676
|
"kind": "field",
|
|
89616
|
-
"name": "
|
|
89677
|
+
"name": "accessibilityLabel",
|
|
89617
89678
|
"type": {
|
|
89618
89679
|
"text": "string"
|
|
89619
89680
|
},
|
|
89620
89681
|
"privacy": "public",
|
|
89621
|
-
"
|
|
89622
|
-
"
|
|
89623
|
-
"
|
|
89624
|
-
|
|
89625
|
-
|
|
89682
|
+
"default": "''",
|
|
89683
|
+
"description": "This will be forwarded as aria-label to the native input element.",
|
|
89684
|
+
"attribute": "accessibility-label"
|
|
89685
|
+
},
|
|
89686
|
+
{
|
|
89687
|
+
"kind": "field",
|
|
89688
|
+
"name": "value",
|
|
89689
|
+
"type": {
|
|
89690
|
+
"text": "string | null"
|
|
89626
89691
|
},
|
|
89627
|
-
"
|
|
89692
|
+
"privacy": "public",
|
|
89693
|
+
"description": "The path of the first selected file. Empty string ('') if no file is selected",
|
|
89694
|
+
"inheritedFrom": {
|
|
89695
|
+
"name": "SbbFormAssociatedMixin",
|
|
89696
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
89697
|
+
}
|
|
89628
89698
|
},
|
|
89629
89699
|
{
|
|
89630
89700
|
"kind": "field",
|
|
89631
|
-
"name": "
|
|
89701
|
+
"name": "files",
|
|
89632
89702
|
"privacy": "public",
|
|
89633
|
-
"
|
|
89634
|
-
"readonly": true,
|
|
89635
|
-
"default": "{ toggleexpanded: 'toggleexpanded', }",
|
|
89703
|
+
"description": "The list of selected files.",
|
|
89636
89704
|
"type": {
|
|
89637
|
-
"text": "
|
|
89705
|
+
"text": "Readonly<File>[]"
|
|
89638
89706
|
}
|
|
89639
89707
|
},
|
|
89640
89708
|
{
|
|
89641
89709
|
"kind": "field",
|
|
89642
|
-
"name": "
|
|
89710
|
+
"name": "_files",
|
|
89711
|
+
"type": {
|
|
89712
|
+
"text": "Readonly<File>[]"
|
|
89713
|
+
},
|
|
89643
89714
|
"privacy": "private",
|
|
89644
|
-
"default": "
|
|
89715
|
+
"default": "[]"
|
|
89645
89716
|
},
|
|
89646
89717
|
{
|
|
89647
89718
|
"kind": "field",
|
|
89648
|
-
"name": "
|
|
89719
|
+
"name": "type",
|
|
89649
89720
|
"type": {
|
|
89650
|
-
"text": "
|
|
89721
|
+
"text": "string"
|
|
89722
|
+
},
|
|
89723
|
+
"privacy": "public",
|
|
89724
|
+
"description": "Form type of element.",
|
|
89725
|
+
"default": "'file'",
|
|
89726
|
+
"readonly": true
|
|
89727
|
+
},
|
|
89728
|
+
{
|
|
89729
|
+
"kind": "field",
|
|
89730
|
+
"name": "_hiddenInput",
|
|
89731
|
+
"type": {
|
|
89732
|
+
"text": "HTMLInputElement"
|
|
89651
89733
|
},
|
|
89652
89734
|
"privacy": "private"
|
|
89653
89735
|
},
|
|
89654
89736
|
{
|
|
89655
89737
|
"kind": "field",
|
|
89656
|
-
"name": "
|
|
89738
|
+
"name": "_suffixes",
|
|
89657
89739
|
"type": {
|
|
89658
|
-
"text": "string
|
|
89740
|
+
"text": "string[]"
|
|
89741
|
+
},
|
|
89742
|
+
"privacy": "private",
|
|
89743
|
+
"default": "['B', 'kB', 'MB', 'GB', 'TB']"
|
|
89744
|
+
},
|
|
89745
|
+
{
|
|
89746
|
+
"kind": "field",
|
|
89747
|
+
"name": "_liveRegion",
|
|
89748
|
+
"type": {
|
|
89749
|
+
"text": "HTMLParagraphElement"
|
|
89659
89750
|
},
|
|
89660
89751
|
"privacy": "private"
|
|
89661
89752
|
},
|
|
89662
89753
|
{
|
|
89663
|
-
"kind": "
|
|
89664
|
-
"name": "
|
|
89754
|
+
"kind": "field",
|
|
89755
|
+
"name": "loadButton",
|
|
89756
|
+
"type": {
|
|
89757
|
+
"text": "SbbSecondaryButtonStaticElement"
|
|
89758
|
+
},
|
|
89759
|
+
"privacy": "protected"
|
|
89760
|
+
},
|
|
89761
|
+
{
|
|
89762
|
+
"kind": "field",
|
|
89763
|
+
"name": "language",
|
|
89764
|
+
"privacy": "protected",
|
|
89765
|
+
"default": "new SbbLanguageController(this)"
|
|
89766
|
+
},
|
|
89767
|
+
{
|
|
89768
|
+
"kind": "field",
|
|
89769
|
+
"name": "_counter",
|
|
89770
|
+
"type": {
|
|
89771
|
+
"text": "number"
|
|
89772
|
+
},
|
|
89665
89773
|
"privacy": "private",
|
|
89774
|
+
"default": "0"
|
|
89775
|
+
},
|
|
89776
|
+
{
|
|
89777
|
+
"kind": "field",
|
|
89778
|
+
"name": "_dragTarget",
|
|
89779
|
+
"type": {
|
|
89780
|
+
"text": "HTMLElement | undefined"
|
|
89781
|
+
},
|
|
89782
|
+
"privacy": "private"
|
|
89783
|
+
},
|
|
89784
|
+
{
|
|
89785
|
+
"kind": "method",
|
|
89786
|
+
"name": "renderTemplate",
|
|
89787
|
+
"privacy": "protected",
|
|
89788
|
+
"return": {
|
|
89789
|
+
"type": {
|
|
89790
|
+
"text": "TemplateResult"
|
|
89791
|
+
}
|
|
89792
|
+
},
|
|
89793
|
+
"parameters": [
|
|
89794
|
+
{
|
|
89795
|
+
"name": "input",
|
|
89796
|
+
"type": {
|
|
89797
|
+
"text": "TemplateResult"
|
|
89798
|
+
}
|
|
89799
|
+
}
|
|
89800
|
+
]
|
|
89801
|
+
},
|
|
89802
|
+
{
|
|
89803
|
+
"kind": "method",
|
|
89804
|
+
"name": "formResetCallback",
|
|
89805
|
+
"privacy": "public",
|
|
89666
89806
|
"return": {
|
|
89667
89807
|
"type": {
|
|
89668
89808
|
"text": "void"
|
|
@@ -89671,8 +89811,8 @@
|
|
|
89671
89811
|
},
|
|
89672
89812
|
{
|
|
89673
89813
|
"kind": "method",
|
|
89674
|
-
"name": "
|
|
89675
|
-
"privacy": "
|
|
89814
|
+
"name": "formStateRestoreCallback",
|
|
89815
|
+
"privacy": "public",
|
|
89676
89816
|
"return": {
|
|
89677
89817
|
"type": {
|
|
89678
89818
|
"text": "void"
|
|
@@ -89680,285 +89820,357 @@
|
|
|
89680
89820
|
},
|
|
89681
89821
|
"parameters": [
|
|
89682
89822
|
{
|
|
89683
|
-
"name": "
|
|
89823
|
+
"name": "state",
|
|
89684
89824
|
"type": {
|
|
89685
|
-
"text": "
|
|
89825
|
+
"text": "FormRestoreState | null"
|
|
89826
|
+
}
|
|
89827
|
+
},
|
|
89828
|
+
{
|
|
89829
|
+
"name": "_reason",
|
|
89830
|
+
"optional": true,
|
|
89831
|
+
"type": {
|
|
89832
|
+
"text": "FormRestoreReason"
|
|
89686
89833
|
}
|
|
89687
89834
|
}
|
|
89688
89835
|
]
|
|
89689
89836
|
},
|
|
89690
89837
|
{
|
|
89691
89838
|
"kind": "method",
|
|
89692
|
-
"name": "
|
|
89693
|
-
"privacy": "
|
|
89839
|
+
"name": "updateFormValue",
|
|
89840
|
+
"privacy": "protected",
|
|
89694
89841
|
"return": {
|
|
89695
89842
|
"type": {
|
|
89696
89843
|
"text": "void"
|
|
89697
89844
|
}
|
|
89698
89845
|
},
|
|
89699
|
-
"description": "
|
|
89846
|
+
"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",
|
|
89847
|
+
"inheritedFrom": {
|
|
89848
|
+
"name": "SbbFormAssociatedMixin",
|
|
89849
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
89850
|
+
}
|
|
89700
89851
|
},
|
|
89701
89852
|
{
|
|
89702
89853
|
"kind": "method",
|
|
89703
|
-
"name": "
|
|
89704
|
-
"privacy": "
|
|
89854
|
+
"name": "_checkFileEquality",
|
|
89855
|
+
"privacy": "private",
|
|
89705
89856
|
"return": {
|
|
89706
89857
|
"type": {
|
|
89707
|
-
"text": "
|
|
89858
|
+
"text": "boolean"
|
|
89708
89859
|
}
|
|
89709
89860
|
},
|
|
89710
|
-
"
|
|
89711
|
-
|
|
89712
|
-
|
|
89713
|
-
|
|
89714
|
-
|
|
89861
|
+
"parameters": [
|
|
89862
|
+
{
|
|
89863
|
+
"name": "file1",
|
|
89864
|
+
"type": {
|
|
89865
|
+
"text": "Readonly<File>"
|
|
89866
|
+
}
|
|
89867
|
+
},
|
|
89868
|
+
{
|
|
89869
|
+
"name": "file2",
|
|
89870
|
+
"type": {
|
|
89871
|
+
"text": "Readonly<File>"
|
|
89872
|
+
}
|
|
89873
|
+
}
|
|
89874
|
+
]
|
|
89715
89875
|
},
|
|
89716
89876
|
{
|
|
89717
|
-
"kind": "
|
|
89718
|
-
"name": "
|
|
89719
|
-
"
|
|
89720
|
-
|
|
89721
|
-
|
|
89722
|
-
|
|
89723
|
-
|
|
89724
|
-
"description": "Whether the button should be aria-disabled but stay interactive.",
|
|
89725
|
-
"attribute": "disabled-interactive",
|
|
89726
|
-
"reflects": true,
|
|
89727
|
-
"inheritedFrom": {
|
|
89728
|
-
"name": "SbbDisabledInteractiveMixin",
|
|
89729
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
89877
|
+
"kind": "method",
|
|
89878
|
+
"name": "_onFocus",
|
|
89879
|
+
"privacy": "private",
|
|
89880
|
+
"return": {
|
|
89881
|
+
"type": {
|
|
89882
|
+
"text": "void"
|
|
89883
|
+
}
|
|
89730
89884
|
}
|
|
89731
89885
|
},
|
|
89732
89886
|
{
|
|
89733
|
-
"kind": "
|
|
89734
|
-
"name": "
|
|
89735
|
-
"privacy": "
|
|
89736
|
-
"
|
|
89737
|
-
|
|
89738
|
-
|
|
89739
|
-
|
|
89740
|
-
},
|
|
89741
|
-
"attribute": "disabled",
|
|
89742
|
-
"reflects": true,
|
|
89743
|
-
"inheritedFrom": {
|
|
89744
|
-
"name": "SbbDisabledMixin",
|
|
89745
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
89887
|
+
"kind": "method",
|
|
89888
|
+
"name": "_onBlur",
|
|
89889
|
+
"privacy": "private",
|
|
89890
|
+
"return": {
|
|
89891
|
+
"type": {
|
|
89892
|
+
"text": "void"
|
|
89893
|
+
}
|
|
89746
89894
|
}
|
|
89747
89895
|
},
|
|
89748
89896
|
{
|
|
89749
|
-
"kind": "
|
|
89750
|
-
"name": "
|
|
89897
|
+
"kind": "method",
|
|
89898
|
+
"name": "_readFiles",
|
|
89751
89899
|
"privacy": "private",
|
|
89752
|
-
"
|
|
89753
|
-
"
|
|
89900
|
+
"return": {
|
|
89901
|
+
"type": {
|
|
89902
|
+
"text": "void"
|
|
89903
|
+
}
|
|
89754
89904
|
},
|
|
89755
|
-
"
|
|
89756
|
-
|
|
89757
|
-
|
|
89758
|
-
|
|
89759
|
-
|
|
89905
|
+
"parameters": [
|
|
89906
|
+
{
|
|
89907
|
+
"name": "event",
|
|
89908
|
+
"type": {
|
|
89909
|
+
"text": "Event"
|
|
89910
|
+
}
|
|
89911
|
+
}
|
|
89912
|
+
]
|
|
89760
89913
|
},
|
|
89761
89914
|
{
|
|
89762
89915
|
"kind": "method",
|
|
89763
|
-
"name": "
|
|
89916
|
+
"name": "createFileList",
|
|
89764
89917
|
"privacy": "protected",
|
|
89765
89918
|
"return": {
|
|
89766
89919
|
"type": {
|
|
89767
|
-
"text": "
|
|
89920
|
+
"text": "void"
|
|
89768
89921
|
}
|
|
89769
89922
|
},
|
|
89770
|
-
"
|
|
89771
|
-
|
|
89772
|
-
|
|
89773
|
-
|
|
89923
|
+
"parameters": [
|
|
89924
|
+
{
|
|
89925
|
+
"name": "files",
|
|
89926
|
+
"type": {
|
|
89927
|
+
"text": "FileList"
|
|
89928
|
+
}
|
|
89929
|
+
}
|
|
89930
|
+
]
|
|
89931
|
+
},
|
|
89932
|
+
{
|
|
89933
|
+
"kind": "method",
|
|
89934
|
+
"name": "getButtonLabel",
|
|
89935
|
+
"privacy": "protected",
|
|
89936
|
+
"return": {
|
|
89937
|
+
"type": {
|
|
89938
|
+
"text": "string"
|
|
89939
|
+
}
|
|
89774
89940
|
}
|
|
89775
89941
|
},
|
|
89776
89942
|
{
|
|
89777
|
-
"kind": "
|
|
89778
|
-
"name": "
|
|
89779
|
-
"
|
|
89780
|
-
|
|
89943
|
+
"kind": "method",
|
|
89944
|
+
"name": "_removeFile",
|
|
89945
|
+
"privacy": "private",
|
|
89946
|
+
"return": {
|
|
89947
|
+
"type": {
|
|
89948
|
+
"text": "void"
|
|
89949
|
+
}
|
|
89781
89950
|
},
|
|
89782
|
-
"
|
|
89783
|
-
|
|
89784
|
-
|
|
89785
|
-
|
|
89786
|
-
|
|
89787
|
-
|
|
89788
|
-
|
|
89951
|
+
"parameters": [
|
|
89952
|
+
{
|
|
89953
|
+
"name": "file",
|
|
89954
|
+
"type": {
|
|
89955
|
+
"text": "Readonly<File>"
|
|
89956
|
+
}
|
|
89957
|
+
}
|
|
89958
|
+
]
|
|
89959
|
+
},
|
|
89960
|
+
{
|
|
89961
|
+
"kind": "method",
|
|
89962
|
+
"name": "_dispatchFileChangedEvent",
|
|
89963
|
+
"privacy": "private",
|
|
89964
|
+
"return": {
|
|
89965
|
+
"type": {
|
|
89966
|
+
"text": "void"
|
|
89967
|
+
}
|
|
89789
89968
|
}
|
|
89790
89969
|
},
|
|
89791
89970
|
{
|
|
89792
89971
|
"kind": "method",
|
|
89793
|
-
"name": "
|
|
89794
|
-
"privacy": "
|
|
89972
|
+
"name": "_formatFileSize",
|
|
89973
|
+
"privacy": "private",
|
|
89795
89974
|
"return": {
|
|
89796
89975
|
"type": {
|
|
89797
|
-
"text": "
|
|
89976
|
+
"text": "string"
|
|
89798
89977
|
}
|
|
89799
89978
|
},
|
|
89800
89979
|
"parameters": [
|
|
89801
89980
|
{
|
|
89802
|
-
"name": "
|
|
89803
|
-
"optional": true,
|
|
89981
|
+
"name": "size",
|
|
89804
89982
|
"type": {
|
|
89805
|
-
"text": "
|
|
89983
|
+
"text": "number"
|
|
89806
89984
|
}
|
|
89807
89985
|
}
|
|
89808
89986
|
],
|
|
89809
|
-
"
|
|
89810
|
-
|
|
89811
|
-
|
|
89987
|
+
"description": "Calculates the correct unit for the file's size."
|
|
89988
|
+
},
|
|
89989
|
+
{
|
|
89990
|
+
"kind": "method",
|
|
89991
|
+
"name": "_updateA11yLiveRegion",
|
|
89992
|
+
"privacy": "private",
|
|
89993
|
+
"return": {
|
|
89994
|
+
"type": {
|
|
89995
|
+
"text": "void"
|
|
89996
|
+
}
|
|
89812
89997
|
}
|
|
89813
89998
|
},
|
|
89814
89999
|
{
|
|
89815
90000
|
"kind": "method",
|
|
89816
|
-
"name": "
|
|
89817
|
-
"privacy": "
|
|
90001
|
+
"name": "_renderFileList",
|
|
90002
|
+
"privacy": "private",
|
|
89818
90003
|
"return": {
|
|
89819
90004
|
"type": {
|
|
89820
|
-
"text": "
|
|
90005
|
+
"text": "TemplateResult"
|
|
90006
|
+
}
|
|
90007
|
+
}
|
|
90008
|
+
},
|
|
90009
|
+
{
|
|
90010
|
+
"kind": "method",
|
|
90011
|
+
"name": "_onDragEnter",
|
|
90012
|
+
"privacy": "private",
|
|
90013
|
+
"return": {
|
|
90014
|
+
"type": {
|
|
90015
|
+
"text": "void"
|
|
90016
|
+
}
|
|
90017
|
+
},
|
|
90018
|
+
"parameters": [
|
|
90019
|
+
{
|
|
90020
|
+
"name": "event",
|
|
90021
|
+
"type": {
|
|
90022
|
+
"text": "DragEvent"
|
|
90023
|
+
}
|
|
90024
|
+
}
|
|
90025
|
+
]
|
|
90026
|
+
},
|
|
90027
|
+
{
|
|
90028
|
+
"kind": "method",
|
|
90029
|
+
"name": "_onDragLeave",
|
|
90030
|
+
"privacy": "private",
|
|
90031
|
+
"return": {
|
|
90032
|
+
"type": {
|
|
90033
|
+
"text": "void"
|
|
90034
|
+
}
|
|
90035
|
+
},
|
|
90036
|
+
"parameters": [
|
|
90037
|
+
{
|
|
90038
|
+
"name": "event",
|
|
90039
|
+
"type": {
|
|
90040
|
+
"text": "DragEvent"
|
|
90041
|
+
}
|
|
90042
|
+
}
|
|
90043
|
+
]
|
|
90044
|
+
},
|
|
90045
|
+
{
|
|
90046
|
+
"kind": "method",
|
|
90047
|
+
"name": "_onFileDrop",
|
|
90048
|
+
"privacy": "private",
|
|
90049
|
+
"return": {
|
|
90050
|
+
"type": {
|
|
90051
|
+
"text": "void"
|
|
90052
|
+
}
|
|
90053
|
+
},
|
|
90054
|
+
"parameters": [
|
|
90055
|
+
{
|
|
90056
|
+
"name": "event",
|
|
90057
|
+
"type": {
|
|
90058
|
+
"text": "DragEvent"
|
|
90059
|
+
}
|
|
90060
|
+
}
|
|
90061
|
+
]
|
|
90062
|
+
},
|
|
90063
|
+
{
|
|
90064
|
+
"kind": "method",
|
|
90065
|
+
"name": "_blockEvent",
|
|
90066
|
+
"privacy": "private",
|
|
90067
|
+
"return": {
|
|
90068
|
+
"type": {
|
|
90069
|
+
"text": "void"
|
|
90070
|
+
}
|
|
90071
|
+
},
|
|
90072
|
+
"parameters": [
|
|
90073
|
+
{
|
|
90074
|
+
"name": "event",
|
|
90075
|
+
"type": {
|
|
90076
|
+
"text": "DragEvent"
|
|
90077
|
+
}
|
|
89821
90078
|
}
|
|
89822
|
-
|
|
89823
|
-
"inheritedFrom": {
|
|
89824
|
-
"name": "SbbIconNameMixin",
|
|
89825
|
-
"module": "icon/icon-name-mixin.js"
|
|
89826
|
-
}
|
|
90079
|
+
]
|
|
89827
90080
|
},
|
|
89828
90081
|
{
|
|
89829
90082
|
"kind": "method",
|
|
89830
|
-
"name": "
|
|
90083
|
+
"name": "_setDragState",
|
|
89831
90084
|
"privacy": "private",
|
|
89832
90085
|
"return": {
|
|
89833
90086
|
"type": {
|
|
89834
|
-
"text": "
|
|
90087
|
+
"text": "void"
|
|
89835
90088
|
}
|
|
89836
90089
|
},
|
|
89837
|
-
"
|
|
89838
|
-
|
|
89839
|
-
|
|
89840
|
-
|
|
89841
|
-
|
|
89842
|
-
|
|
89843
|
-
|
|
89844
|
-
|
|
89845
|
-
|
|
89846
|
-
|
|
89847
|
-
|
|
89848
|
-
|
|
89849
|
-
|
|
89850
|
-
|
|
89851
|
-
|
|
89852
|
-
|
|
89853
|
-
"module": "core/base-elements/button-base-element.js"
|
|
89854
|
-
}
|
|
89855
|
-
},
|
|
89856
|
-
{
|
|
89857
|
-
"kind": "field",
|
|
89858
|
-
"name": "value",
|
|
89859
|
-
"type": {
|
|
89860
|
-
"text": "string"
|
|
89861
|
-
},
|
|
89862
|
-
"privacy": "public",
|
|
89863
|
-
"inheritedFrom": {
|
|
89864
|
-
"name": "SbbButtonBaseElement",
|
|
89865
|
-
"module": "core/base-elements/button-base-element.js"
|
|
89866
|
-
},
|
|
89867
|
-
"default": "''",
|
|
89868
|
-
"description": "Value of the form element.",
|
|
89869
|
-
"attribute": "value"
|
|
90090
|
+
"parameters": [
|
|
90091
|
+
{
|
|
90092
|
+
"name": "dragTarget",
|
|
90093
|
+
"default": "undefined",
|
|
90094
|
+
"type": {
|
|
90095
|
+
"text": "HTMLElement | undefined"
|
|
90096
|
+
}
|
|
90097
|
+
},
|
|
90098
|
+
{
|
|
90099
|
+
"name": "isDragEnter",
|
|
90100
|
+
"default": "false",
|
|
90101
|
+
"type": {
|
|
90102
|
+
"text": "boolean"
|
|
90103
|
+
}
|
|
90104
|
+
}
|
|
90105
|
+
]
|
|
89870
90106
|
},
|
|
89871
90107
|
{
|
|
89872
90108
|
"kind": "field",
|
|
89873
|
-
"name": "
|
|
90109
|
+
"name": "disabled",
|
|
89874
90110
|
"privacy": "public",
|
|
89875
|
-
"description": "
|
|
89876
|
-
"default": "
|
|
90111
|
+
"description": "Whether the component is disabled.",
|
|
90112
|
+
"default": "false",
|
|
89877
90113
|
"type": {
|
|
89878
|
-
"text": "
|
|
90114
|
+
"text": "boolean"
|
|
89879
90115
|
},
|
|
89880
|
-
"attribute": "
|
|
90116
|
+
"attribute": "disabled",
|
|
90117
|
+
"reflects": true,
|
|
89881
90118
|
"inheritedFrom": {
|
|
89882
|
-
"name": "
|
|
89883
|
-
"module": "core/
|
|
90119
|
+
"name": "SbbDisabledMixin",
|
|
90120
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
89884
90121
|
}
|
|
89885
90122
|
},
|
|
89886
90123
|
{
|
|
89887
90124
|
"kind": "field",
|
|
89888
|
-
"name": "
|
|
89889
|
-
"
|
|
89890
|
-
"text": "HTMLFormElement | null"
|
|
89891
|
-
},
|
|
89892
|
-
"privacy": "public",
|
|
89893
|
-
"description": "The `<form>` element to associate the button with.",
|
|
89894
|
-
"inheritedFrom": {
|
|
89895
|
-
"name": "SbbButtonBaseElement",
|
|
89896
|
-
"module": "core/base-elements/button-base-element.js"
|
|
89897
|
-
},
|
|
89898
|
-
"attribute": "form"
|
|
89899
|
-
},
|
|
89900
|
-
{
|
|
89901
|
-
"kind": "field",
|
|
89902
|
-
"name": "_formId",
|
|
90125
|
+
"name": "#disabled",
|
|
90126
|
+
"privacy": "private",
|
|
89903
90127
|
"type": {
|
|
89904
|
-
"text": "
|
|
90128
|
+
"text": "boolean"
|
|
89905
90129
|
},
|
|
89906
|
-
"
|
|
89907
|
-
"default": "''",
|
|
89908
|
-
"inheritedFrom": {
|
|
89909
|
-
"name": "SbbButtonBaseElement",
|
|
89910
|
-
"module": "core/base-elements/button-base-element.js"
|
|
89911
|
-
}
|
|
89912
|
-
},
|
|
89913
|
-
{
|
|
89914
|
-
"kind": "field",
|
|
89915
|
-
"name": "_handleButtonClick",
|
|
89916
|
-
"privacy": "private",
|
|
90130
|
+
"default": "false",
|
|
89917
90131
|
"inheritedFrom": {
|
|
89918
|
-
"name": "
|
|
89919
|
-
"module": "core/
|
|
90132
|
+
"name": "SbbDisabledMixin",
|
|
90133
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
89920
90134
|
}
|
|
89921
90135
|
},
|
|
89922
90136
|
{
|
|
89923
90137
|
"kind": "method",
|
|
89924
|
-
"name": "
|
|
89925
|
-
"privacy": "
|
|
90138
|
+
"name": "isDisabledExternally",
|
|
90139
|
+
"privacy": "protected",
|
|
89926
90140
|
"return": {
|
|
89927
90141
|
"type": {
|
|
89928
|
-
"text": "
|
|
90142
|
+
"text": "boolean"
|
|
89929
90143
|
}
|
|
89930
90144
|
},
|
|
89931
|
-
"
|
|
89932
|
-
{
|
|
89933
|
-
"name": "form",
|
|
89934
|
-
"type": {
|
|
89935
|
-
"text": "HTMLFormElement"
|
|
89936
|
-
}
|
|
89937
|
-
}
|
|
89938
|
-
],
|
|
90145
|
+
"description": "Will be used as 'or' check to the current disabled state.\nCan e.g. be used to read disabled state of a group.",
|
|
89939
90146
|
"inheritedFrom": {
|
|
89940
|
-
"name": "
|
|
89941
|
-
"module": "core/
|
|
90147
|
+
"name": "SbbDisabledMixin",
|
|
90148
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
89942
90149
|
}
|
|
89943
90150
|
},
|
|
89944
90151
|
{
|
|
89945
90152
|
"kind": "field",
|
|
89946
|
-
"name": "
|
|
89947
|
-
"
|
|
90153
|
+
"name": "formAssociated",
|
|
90154
|
+
"type": {
|
|
90155
|
+
"text": "boolean"
|
|
90156
|
+
},
|
|
90157
|
+
"privacy": "public",
|
|
90158
|
+
"static": true,
|
|
90159
|
+
"default": "true",
|
|
89948
90160
|
"inheritedFrom": {
|
|
89949
|
-
"name": "
|
|
89950
|
-
"module": "core/
|
|
90161
|
+
"name": "SbbFormAssociatedMixin",
|
|
90162
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
89951
90163
|
}
|
|
89952
90164
|
},
|
|
89953
90165
|
{
|
|
89954
90166
|
"kind": "field",
|
|
89955
|
-
"name": "
|
|
90167
|
+
"name": "form",
|
|
89956
90168
|
"type": {
|
|
89957
|
-
"text": "
|
|
90169
|
+
"text": "HTMLFormElement | null"
|
|
89958
90170
|
},
|
|
89959
90171
|
"privacy": "public",
|
|
89960
|
-
"
|
|
89961
|
-
"
|
|
90172
|
+
"description": "Returns the form owner of this element.",
|
|
90173
|
+
"readonly": true,
|
|
89962
90174
|
"inheritedFrom": {
|
|
89963
90175
|
"name": "SbbFormAssociatedMixin",
|
|
89964
90176
|
"module": "core/mixins/form-associated-mixin.js"
|
|
@@ -90111,21 +90323,6 @@
|
|
|
90111
90323
|
"module": "core/mixins/form-associated-mixin.js"
|
|
90112
90324
|
}
|
|
90113
90325
|
},
|
|
90114
|
-
{
|
|
90115
|
-
"kind": "method",
|
|
90116
|
-
"name": "updateFormValue",
|
|
90117
|
-
"privacy": "protected",
|
|
90118
|
-
"return": {
|
|
90119
|
-
"type": {
|
|
90120
|
-
"text": "void"
|
|
90121
|
-
}
|
|
90122
|
-
},
|
|
90123
|
-
"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",
|
|
90124
|
-
"inheritedFrom": {
|
|
90125
|
-
"name": "SbbFormAssociatedMixin",
|
|
90126
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
90127
|
-
}
|
|
90128
|
-
},
|
|
90129
90326
|
{
|
|
90130
90327
|
"kind": "method",
|
|
90131
90328
|
"name": "formState",
|
|
@@ -90250,256 +90447,76 @@
|
|
|
90250
90447
|
"name": "SbbFormAssociatedMixin",
|
|
90251
90448
|
"module": "core/mixins/form-associated-mixin.js"
|
|
90252
90449
|
}
|
|
90253
|
-
}
|
|
90254
|
-
|
|
90255
|
-
|
|
90256
|
-
"name": "role",
|
|
90257
|
-
"type": {
|
|
90258
|
-
"text": "ElementInternals['role']"
|
|
90259
|
-
},
|
|
90260
|
-
"privacy": "public",
|
|
90261
|
-
"static": true,
|
|
90262
|
-
"readonly": true,
|
|
90263
|
-
"default": "'button'",
|
|
90264
|
-
"inheritedFrom": {
|
|
90265
|
-
"name": "SbbButtonLikeBaseElement",
|
|
90266
|
-
"module": "core/base-elements/button-base-element.js"
|
|
90267
|
-
}
|
|
90268
|
-
},
|
|
90269
|
-
{
|
|
90270
|
-
"kind": "field",
|
|
90271
|
-
"name": "_preventScrollOnSpaceKeydown",
|
|
90272
|
-
"privacy": "private",
|
|
90273
|
-
"description": "Prevents scrolling from pressing Space, when the event target is an action element.\nAlso sets active state.",
|
|
90274
|
-
"parameters": [
|
|
90275
|
-
{
|
|
90276
|
-
"description": "The origin event.",
|
|
90277
|
-
"name": "event"
|
|
90278
|
-
}
|
|
90279
|
-
],
|
|
90280
|
-
"inheritedFrom": {
|
|
90281
|
-
"name": "SbbButtonLikeBaseElement",
|
|
90282
|
-
"module": "core/base-elements/button-base-element.js"
|
|
90283
|
-
}
|
|
90284
|
-
},
|
|
90285
|
-
{
|
|
90286
|
-
"kind": "field",
|
|
90287
|
-
"name": "_removeActiveMarker",
|
|
90288
|
-
"privacy": "private",
|
|
90289
|
-
"inheritedFrom": {
|
|
90290
|
-
"name": "SbbButtonLikeBaseElement",
|
|
90291
|
-
"module": "core/base-elements/button-base-element.js"
|
|
90292
|
-
}
|
|
90293
|
-
},
|
|
90294
|
-
{
|
|
90295
|
-
"kind": "field",
|
|
90296
|
-
"name": "_dispatchClickEventOnSpaceKeyup",
|
|
90297
|
-
"privacy": "private",
|
|
90298
|
-
"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.",
|
|
90299
|
-
"parameters": [
|
|
90300
|
-
{
|
|
90301
|
-
"description": "The origin event.",
|
|
90302
|
-
"name": "event"
|
|
90303
|
-
}
|
|
90304
|
-
],
|
|
90305
|
-
"inheritedFrom": {
|
|
90306
|
-
"name": "SbbButtonLikeBaseElement",
|
|
90307
|
-
"module": "core/base-elements/button-base-element.js"
|
|
90308
|
-
}
|
|
90309
|
-
},
|
|
90310
|
-
{
|
|
90311
|
-
"kind": "field",
|
|
90312
|
-
"name": "_dispatchClickEvent",
|
|
90313
|
-
"privacy": "private",
|
|
90314
|
-
"inheritedFrom": {
|
|
90315
|
-
"name": "SbbButtonLikeBaseElement",
|
|
90316
|
-
"module": "core/base-elements/button-base-element.js"
|
|
90317
|
-
}
|
|
90318
|
-
},
|
|
90450
|
+
}
|
|
90451
|
+
],
|
|
90452
|
+
"events": [
|
|
90319
90453
|
{
|
|
90320
|
-
"
|
|
90321
|
-
"name": "maybeDisabled",
|
|
90454
|
+
"name": "input",
|
|
90322
90455
|
"type": {
|
|
90323
|
-
"text": "
|
|
90456
|
+
"text": "InputEvent"
|
|
90324
90457
|
},
|
|
90325
|
-
"
|
|
90326
|
-
"readonly": true,
|
|
90327
|
-
"inheritedFrom": {
|
|
90328
|
-
"name": "SbbActionBaseElement",
|
|
90329
|
-
"module": "core/base-elements/action-base-element.js"
|
|
90330
|
-
}
|
|
90458
|
+
"description": "The input event fires when the value has been changed as a direct result of a user action."
|
|
90331
90459
|
},
|
|
90332
90460
|
{
|
|
90333
|
-
"
|
|
90334
|
-
"name": "maybeDisabledInteractive",
|
|
90461
|
+
"name": "change",
|
|
90335
90462
|
"type": {
|
|
90336
|
-
"text": "
|
|
90337
|
-
},
|
|
90338
|
-
"privacy": "protected",
|
|
90339
|
-
"readonly": true,
|
|
90340
|
-
"inheritedFrom": {
|
|
90341
|
-
"name": "SbbActionBaseElement",
|
|
90342
|
-
"module": "core/base-elements/action-base-element.js"
|
|
90343
|
-
}
|
|
90344
|
-
},
|
|
90345
|
-
{
|
|
90346
|
-
"kind": "method",
|
|
90347
|
-
"name": "setupBaseEventHandlers",
|
|
90348
|
-
"privacy": "protected",
|
|
90349
|
-
"return": {
|
|
90350
|
-
"type": {
|
|
90351
|
-
"text": "void"
|
|
90352
|
-
}
|
|
90463
|
+
"text": "Event"
|
|
90353
90464
|
},
|
|
90354
|
-
"
|
|
90355
|
-
"name": "SbbActionBaseElement",
|
|
90356
|
-
"module": "core/base-elements/action-base-element.js"
|
|
90357
|
-
}
|
|
90465
|
+
"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."
|
|
90358
90466
|
},
|
|
90359
90467
|
{
|
|
90360
|
-
"
|
|
90361
|
-
"name": "_hydrationRequired",
|
|
90468
|
+
"name": "filechanged",
|
|
90362
90469
|
"type": {
|
|
90363
|
-
"text": "
|
|
90470
|
+
"text": "CustomEvent<Readonly<File>[]>"
|
|
90364
90471
|
},
|
|
90365
|
-
"
|
|
90366
|
-
|
|
90367
|
-
|
|
90368
|
-
|
|
90369
|
-
"module": "core/base-elements/element.js"
|
|
90370
|
-
}
|
|
90371
|
-
},
|
|
90372
|
-
{
|
|
90373
|
-
"kind": "field",
|
|
90374
|
-
"name": "_hydrationComplete",
|
|
90375
|
-
"privacy": "private",
|
|
90376
|
-
"default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
|
|
90377
|
-
"inheritedFrom": {
|
|
90378
|
-
"name": "SbbElement",
|
|
90379
|
-
"module": "core/base-elements/element.js"
|
|
90380
|
-
}
|
|
90381
|
-
},
|
|
90472
|
+
"description": "An event which is emitted each time the file list changes."
|
|
90473
|
+
}
|
|
90474
|
+
],
|
|
90475
|
+
"attributes": [
|
|
90382
90476
|
{
|
|
90383
|
-
"
|
|
90384
|
-
"name": "_resolveHydration",
|
|
90477
|
+
"name": "size",
|
|
90385
90478
|
"type": {
|
|
90386
|
-
"text": "
|
|
90479
|
+
"text": "'s' | 'm'"
|
|
90387
90480
|
},
|
|
90388
|
-
"
|
|
90389
|
-
"
|
|
90390
|
-
|
|
90391
|
-
"module": "core/base-elements/element.js"
|
|
90392
|
-
}
|
|
90481
|
+
"description": "Size variant, either s or m.",
|
|
90482
|
+
"default": "'m' / 's' (lean)",
|
|
90483
|
+
"fieldName": "size"
|
|
90393
90484
|
},
|
|
90394
90485
|
{
|
|
90395
|
-
"
|
|
90396
|
-
"name": "hydrationRequired",
|
|
90486
|
+
"name": "multiple",
|
|
90397
90487
|
"type": {
|
|
90398
90488
|
"text": "boolean"
|
|
90399
90489
|
},
|
|
90400
|
-
"
|
|
90401
|
-
"description": "
|
|
90402
|
-
"
|
|
90403
|
-
"inheritedFrom": {
|
|
90404
|
-
"name": "SbbElement",
|
|
90405
|
-
"module": "core/base-elements/element.js"
|
|
90406
|
-
},
|
|
90407
|
-
"default": "!!this.shadowRoot"
|
|
90408
|
-
},
|
|
90409
|
-
{
|
|
90410
|
-
"kind": "method",
|
|
90411
|
-
"name": "toggleState",
|
|
90412
|
-
"privacy": "protected",
|
|
90413
|
-
"return": {
|
|
90414
|
-
"type": {
|
|
90415
|
-
"text": "void"
|
|
90416
|
-
}
|
|
90417
|
-
},
|
|
90418
|
-
"parameters": [
|
|
90419
|
-
{
|
|
90420
|
-
"name": "value",
|
|
90421
|
-
"type": {
|
|
90422
|
-
"text": "string"
|
|
90423
|
-
}
|
|
90424
|
-
},
|
|
90425
|
-
{
|
|
90426
|
-
"name": "force",
|
|
90427
|
-
"optional": true,
|
|
90428
|
-
"type": {
|
|
90429
|
-
"text": "boolean"
|
|
90430
|
-
}
|
|
90431
|
-
}
|
|
90432
|
-
],
|
|
90433
|
-
"inheritedFrom": {
|
|
90434
|
-
"name": "SbbElement",
|
|
90435
|
-
"module": "core/base-elements/element.js"
|
|
90436
|
-
}
|
|
90490
|
+
"default": "false",
|
|
90491
|
+
"description": "Whether more than one file can be selected.",
|
|
90492
|
+
"fieldName": "multiple"
|
|
90437
90493
|
},
|
|
90438
90494
|
{
|
|
90439
|
-
"
|
|
90440
|
-
"name": "['_$sbbElement$']",
|
|
90495
|
+
"name": "multiple-mode",
|
|
90441
90496
|
"type": {
|
|
90442
|
-
"text": "
|
|
90497
|
+
"text": "'default' | 'persistent'"
|
|
90443
90498
|
},
|
|
90444
|
-
"
|
|
90445
|
-
"
|
|
90446
|
-
"
|
|
90447
|
-
"inheritedFrom": {
|
|
90448
|
-
"name": "SbbElement",
|
|
90449
|
-
"module": "core/base-elements/element.js"
|
|
90450
|
-
}
|
|
90499
|
+
"default": "'default'",
|
|
90500
|
+
"description": "Whether the newly added files should override the previously added ones.",
|
|
90501
|
+
"fieldName": "multipleMode"
|
|
90451
90502
|
},
|
|
90452
90503
|
{
|
|
90453
|
-
"
|
|
90454
|
-
"name": "_controllers",
|
|
90455
|
-
"type": {
|
|
90456
|
-
"text": "Set<SbbReactiveController> | undefined"
|
|
90457
|
-
},
|
|
90458
|
-
"privacy": "private",
|
|
90459
|
-
"inheritedFrom": {
|
|
90460
|
-
"name": "SbbElement",
|
|
90461
|
-
"module": "core/base-elements/element.js"
|
|
90462
|
-
}
|
|
90463
|
-
}
|
|
90464
|
-
],
|
|
90465
|
-
"events": [
|
|
90466
|
-
{
|
|
90467
|
-
"name": "toggleexpanded",
|
|
90504
|
+
"name": "accept",
|
|
90468
90505
|
"type": {
|
|
90469
|
-
"text": "
|
|
90506
|
+
"text": "string"
|
|
90470
90507
|
},
|
|
90471
|
-
"
|
|
90472
|
-
|
|
90473
|
-
|
|
90474
|
-
"mixins": [
|
|
90475
|
-
{
|
|
90476
|
-
"name": "SbbDisabledTabIndexActionMixin",
|
|
90477
|
-
"module": "core/mixins.js"
|
|
90508
|
+
"default": "''",
|
|
90509
|
+
"description": "A comma-separated list of allowed unique file type specifiers.",
|
|
90510
|
+
"fieldName": "accept"
|
|
90478
90511
|
},
|
|
90479
90512
|
{
|
|
90480
|
-
"name": "
|
|
90481
|
-
"module": "icon.js"
|
|
90482
|
-
}
|
|
90483
|
-
],
|
|
90484
|
-
"superclass": {
|
|
90485
|
-
"name": "SbbButtonBaseElement",
|
|
90486
|
-
"module": "core/base-elements.js"
|
|
90487
|
-
},
|
|
90488
|
-
"tagName": "sbb-expansion-panel-header",
|
|
90489
|
-
"customElement": true,
|
|
90490
|
-
"attributes": [
|
|
90491
|
-
{
|
|
90492
|
-
"name": "disabled-interactive",
|
|
90513
|
+
"name": "accessibility-label",
|
|
90493
90514
|
"type": {
|
|
90494
|
-
"text": "
|
|
90515
|
+
"text": "string"
|
|
90495
90516
|
},
|
|
90496
|
-
"default": "
|
|
90497
|
-
"description": "
|
|
90498
|
-
"fieldName": "
|
|
90499
|
-
"inheritedFrom": {
|
|
90500
|
-
"name": "SbbDisabledInteractiveMixin",
|
|
90501
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
90502
|
-
}
|
|
90517
|
+
"default": "''",
|
|
90518
|
+
"description": "This will be forwarded as aria-label to the native input element.",
|
|
90519
|
+
"fieldName": "accessibilityLabel"
|
|
90503
90520
|
},
|
|
90504
90521
|
{
|
|
90505
90522
|
"name": "disabled",
|
|
@@ -90515,66 +90532,33 @@
|
|
|
90515
90532
|
}
|
|
90516
90533
|
},
|
|
90517
90534
|
{
|
|
90518
|
-
"name": "
|
|
90519
|
-
"
|
|
90520
|
-
"text": "string"
|
|
90521
|
-
},
|
|
90522
|
-
"default": "''",
|
|
90523
|
-
"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.",
|
|
90524
|
-
"fieldName": "iconName",
|
|
90525
|
-
"inheritedFrom": {
|
|
90526
|
-
"name": "SbbIconNameMixin",
|
|
90527
|
-
"module": "icon/icon-name-mixin.js"
|
|
90528
|
-
}
|
|
90529
|
-
},
|
|
90530
|
-
{
|
|
90531
|
-
"name": "value",
|
|
90535
|
+
"name": "name",
|
|
90536
|
+
"description": "Name of the form element. Will be read from name attribute.",
|
|
90532
90537
|
"type": {
|
|
90533
90538
|
"text": "string"
|
|
90534
90539
|
},
|
|
90535
|
-
"
|
|
90536
|
-
"description": "Value of the form element.",
|
|
90537
|
-
"fieldName": "value",
|
|
90540
|
+
"fieldName": "name",
|
|
90538
90541
|
"inheritedFrom": {
|
|
90539
|
-
"name": "
|
|
90540
|
-
"module": "core/
|
|
90542
|
+
"name": "SbbFormAssociatedMixin",
|
|
90543
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
90541
90544
|
}
|
|
90542
|
-
}
|
|
90545
|
+
}
|
|
90546
|
+
],
|
|
90547
|
+
"mixins": [
|
|
90543
90548
|
{
|
|
90544
|
-
"name": "
|
|
90545
|
-
"
|
|
90546
|
-
"default": "'button'",
|
|
90547
|
-
"type": {
|
|
90548
|
-
"text": "SbbButtonType"
|
|
90549
|
-
},
|
|
90550
|
-
"fieldName": "type",
|
|
90551
|
-
"inheritedFrom": {
|
|
90552
|
-
"name": "SbbButtonBaseElement",
|
|
90553
|
-
"module": "core/base-elements/button-base-element.js"
|
|
90554
|
-
}
|
|
90549
|
+
"name": "SbbDisabledMixin",
|
|
90550
|
+
"module": "core/mixins.js"
|
|
90555
90551
|
},
|
|
90556
90552
|
{
|
|
90557
|
-
"name": "
|
|
90558
|
-
"
|
|
90559
|
-
|
|
90560
|
-
|
|
90561
|
-
|
|
90562
|
-
"fieldName": "form",
|
|
90563
|
-
"inheritedFrom": {
|
|
90564
|
-
"name": "SbbButtonBaseElement",
|
|
90565
|
-
"module": "core/base-elements/button-base-element.js"
|
|
90566
|
-
}
|
|
90567
|
-
},
|
|
90553
|
+
"name": "SbbFormAssociatedMixin",
|
|
90554
|
+
"module": "core/mixins.js"
|
|
90555
|
+
}
|
|
90556
|
+
],
|
|
90557
|
+
"parameters": [
|
|
90568
90558
|
{
|
|
90569
|
-
"name": "
|
|
90570
|
-
"description": "Name of the form element. Will be read from name attribute.",
|
|
90559
|
+
"name": "superclass",
|
|
90571
90560
|
"type": {
|
|
90572
|
-
"text": "
|
|
90573
|
-
},
|
|
90574
|
-
"fieldName": "name",
|
|
90575
|
-
"inheritedFrom": {
|
|
90576
|
-
"name": "SbbFormAssociatedMixin",
|
|
90577
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
90561
|
+
"text": "T"
|
|
90578
90562
|
}
|
|
90579
90563
|
}
|
|
90580
90564
|
]
|
|
@@ -90583,10 +90567,26 @@
|
|
|
90583
90567
|
"exports": [
|
|
90584
90568
|
{
|
|
90585
90569
|
"kind": "js",
|
|
90586
|
-
"name": "
|
|
90570
|
+
"name": "fileSelectorCommonStyle",
|
|
90587
90571
|
"declaration": {
|
|
90588
|
-
"name": "
|
|
90589
|
-
"module": "
|
|
90572
|
+
"name": "fileSelectorCommonStyle",
|
|
90573
|
+
"module": "file-selector/common/file-selector-common.js"
|
|
90574
|
+
}
|
|
90575
|
+
},
|
|
90576
|
+
{
|
|
90577
|
+
"kind": "js",
|
|
90578
|
+
"name": "SbbFileSelectorCommonElementMixinType",
|
|
90579
|
+
"declaration": {
|
|
90580
|
+
"name": "SbbFileSelectorCommonElementMixinType",
|
|
90581
|
+
"module": "file-selector/common/file-selector-common.js"
|
|
90582
|
+
}
|
|
90583
|
+
},
|
|
90584
|
+
{
|
|
90585
|
+
"kind": "js",
|
|
90586
|
+
"name": "SbbFileSelectorCommonElementMixin",
|
|
90587
|
+
"declaration": {
|
|
90588
|
+
"name": "SbbFileSelectorCommonElementMixin",
|
|
90589
|
+
"module": "file-selector/common/file-selector-common.js"
|
|
90590
90590
|
}
|
|
90591
90591
|
}
|
|
90592
90592
|
]
|
|
@@ -110097,6 +110097,176 @@
|
|
|
110097
110097
|
}
|
|
110098
110098
|
]
|
|
110099
110099
|
},
|
|
110100
|
+
{
|
|
110101
|
+
"kind": "javascript-module",
|
|
110102
|
+
"path": "navigation/common/navigation-action-common.js",
|
|
110103
|
+
"declarations": [
|
|
110104
|
+
{
|
|
110105
|
+
"kind": "class",
|
|
110106
|
+
"description": "",
|
|
110107
|
+
"name": "SbbNavigationActionCommonElementMixinType",
|
|
110108
|
+
"members": [
|
|
110109
|
+
{
|
|
110110
|
+
"kind": "field",
|
|
110111
|
+
"name": "size",
|
|
110112
|
+
"type": {
|
|
110113
|
+
"text": "SbbNavigationActionSize"
|
|
110114
|
+
},
|
|
110115
|
+
"privacy": "public"
|
|
110116
|
+
},
|
|
110117
|
+
{
|
|
110118
|
+
"kind": "field",
|
|
110119
|
+
"name": "marker",
|
|
110120
|
+
"type": {
|
|
110121
|
+
"text": "SbbNavigationMarkerElement | null"
|
|
110122
|
+
},
|
|
110123
|
+
"privacy": "public",
|
|
110124
|
+
"readonly": true
|
|
110125
|
+
},
|
|
110126
|
+
{
|
|
110127
|
+
"kind": "field",
|
|
110128
|
+
"name": "section",
|
|
110129
|
+
"type": {
|
|
110130
|
+
"text": "SbbNavigationSectionElement | null"
|
|
110131
|
+
},
|
|
110132
|
+
"privacy": "public",
|
|
110133
|
+
"readonly": true
|
|
110134
|
+
},
|
|
110135
|
+
{
|
|
110136
|
+
"kind": "field",
|
|
110137
|
+
"name": "connectedSection",
|
|
110138
|
+
"type": {
|
|
110139
|
+
"text": "SbbNavigationSectionElement | undefined"
|
|
110140
|
+
},
|
|
110141
|
+
"privacy": "public"
|
|
110142
|
+
}
|
|
110143
|
+
]
|
|
110144
|
+
},
|
|
110145
|
+
{
|
|
110146
|
+
"kind": "mixin",
|
|
110147
|
+
"description": "",
|
|
110148
|
+
"name": "SbbNavigationActionCommonElementMixin",
|
|
110149
|
+
"members": [
|
|
110150
|
+
{
|
|
110151
|
+
"kind": "field",
|
|
110152
|
+
"name": "styles",
|
|
110153
|
+
"type": {
|
|
110154
|
+
"text": "CSSResultGroup"
|
|
110155
|
+
},
|
|
110156
|
+
"privacy": "public",
|
|
110157
|
+
"static": true,
|
|
110158
|
+
"default": "[boxSizingStyles, unsafeCSS(style)]"
|
|
110159
|
+
},
|
|
110160
|
+
{
|
|
110161
|
+
"kind": "field",
|
|
110162
|
+
"name": "size",
|
|
110163
|
+
"type": {
|
|
110164
|
+
"text": "SbbNavigationActionSize"
|
|
110165
|
+
},
|
|
110166
|
+
"privacy": "public",
|
|
110167
|
+
"description": "Action size variant, either s, m or l.",
|
|
110168
|
+
"default": "'l' / 's' (lean)",
|
|
110169
|
+
"attribute": "size",
|
|
110170
|
+
"reflects": true
|
|
110171
|
+
},
|
|
110172
|
+
{
|
|
110173
|
+
"kind": "field",
|
|
110174
|
+
"name": "connectedSection",
|
|
110175
|
+
"type": {
|
|
110176
|
+
"text": "SbbNavigationSectionElement | undefined"
|
|
110177
|
+
},
|
|
110178
|
+
"privacy": "public",
|
|
110179
|
+
"description": "The section that is being controlled by the action, if any."
|
|
110180
|
+
},
|
|
110181
|
+
{
|
|
110182
|
+
"kind": "field",
|
|
110183
|
+
"name": "marker",
|
|
110184
|
+
"type": {
|
|
110185
|
+
"text": "SbbNavigationMarkerElement | null"
|
|
110186
|
+
},
|
|
110187
|
+
"privacy": "public",
|
|
110188
|
+
"description": "The navigation marker in which the action is nested.",
|
|
110189
|
+
"readonly": true
|
|
110190
|
+
},
|
|
110191
|
+
{
|
|
110192
|
+
"kind": "field",
|
|
110193
|
+
"name": "section",
|
|
110194
|
+
"type": {
|
|
110195
|
+
"text": "SbbNavigationSectionElement | null"
|
|
110196
|
+
},
|
|
110197
|
+
"privacy": "public",
|
|
110198
|
+
"description": "The section in which the action is nested.",
|
|
110199
|
+
"readonly": true
|
|
110200
|
+
},
|
|
110201
|
+
{
|
|
110202
|
+
"kind": "field",
|
|
110203
|
+
"name": "_navigationMarker",
|
|
110204
|
+
"type": {
|
|
110205
|
+
"text": "SbbNavigationMarkerElement | null"
|
|
110206
|
+
},
|
|
110207
|
+
"privacy": "private",
|
|
110208
|
+
"default": "null"
|
|
110209
|
+
},
|
|
110210
|
+
{
|
|
110211
|
+
"kind": "field",
|
|
110212
|
+
"name": "_navigationSection",
|
|
110213
|
+
"type": {
|
|
110214
|
+
"text": "SbbNavigationSectionElement | null"
|
|
110215
|
+
},
|
|
110216
|
+
"privacy": "private",
|
|
110217
|
+
"default": "null"
|
|
110218
|
+
},
|
|
110219
|
+
{
|
|
110220
|
+
"kind": "method",
|
|
110221
|
+
"name": "renderTemplate",
|
|
110222
|
+
"privacy": "protected",
|
|
110223
|
+
"return": {
|
|
110224
|
+
"type": {
|
|
110225
|
+
"text": "TemplateResult"
|
|
110226
|
+
}
|
|
110227
|
+
}
|
|
110228
|
+
}
|
|
110229
|
+
],
|
|
110230
|
+
"attributes": [
|
|
110231
|
+
{
|
|
110232
|
+
"name": "size",
|
|
110233
|
+
"type": {
|
|
110234
|
+
"text": "SbbNavigationActionSize"
|
|
110235
|
+
},
|
|
110236
|
+
"description": "Action size variant, either s, m or l.",
|
|
110237
|
+
"default": "'l' / 's' (lean)",
|
|
110238
|
+
"fieldName": "size"
|
|
110239
|
+
}
|
|
110240
|
+
],
|
|
110241
|
+
"parameters": [
|
|
110242
|
+
{
|
|
110243
|
+
"name": "superClass",
|
|
110244
|
+
"type": {
|
|
110245
|
+
"text": "T"
|
|
110246
|
+
}
|
|
110247
|
+
}
|
|
110248
|
+
]
|
|
110249
|
+
}
|
|
110250
|
+
],
|
|
110251
|
+
"exports": [
|
|
110252
|
+
{
|
|
110253
|
+
"kind": "js",
|
|
110254
|
+
"name": "SbbNavigationActionCommonElementMixinType",
|
|
110255
|
+
"declaration": {
|
|
110256
|
+
"name": "SbbNavigationActionCommonElementMixinType",
|
|
110257
|
+
"module": "navigation/common/navigation-action-common.js"
|
|
110258
|
+
}
|
|
110259
|
+
},
|
|
110260
|
+
{
|
|
110261
|
+
"kind": "js",
|
|
110262
|
+
"name": "SbbNavigationActionCommonElementMixin",
|
|
110263
|
+
"declaration": {
|
|
110264
|
+
"name": "SbbNavigationActionCommonElementMixin",
|
|
110265
|
+
"module": "navigation/common/navigation-action-common.js"
|
|
110266
|
+
}
|
|
110267
|
+
}
|
|
110268
|
+
]
|
|
110269
|
+
},
|
|
110100
110270
|
{
|
|
110101
110271
|
"kind": "javascript-module",
|
|
110102
110272
|
"path": "mini-calendar/mini-calendar-month/mini-calendar-month.component.js",
|
|
@@ -110315,176 +110485,6 @@
|
|
|
110315
110485
|
}
|
|
110316
110486
|
]
|
|
110317
110487
|
},
|
|
110318
|
-
{
|
|
110319
|
-
"kind": "javascript-module",
|
|
110320
|
-
"path": "navigation/common/navigation-action-common.js",
|
|
110321
|
-
"declarations": [
|
|
110322
|
-
{
|
|
110323
|
-
"kind": "class",
|
|
110324
|
-
"description": "",
|
|
110325
|
-
"name": "SbbNavigationActionCommonElementMixinType",
|
|
110326
|
-
"members": [
|
|
110327
|
-
{
|
|
110328
|
-
"kind": "field",
|
|
110329
|
-
"name": "size",
|
|
110330
|
-
"type": {
|
|
110331
|
-
"text": "SbbNavigationActionSize"
|
|
110332
|
-
},
|
|
110333
|
-
"privacy": "public"
|
|
110334
|
-
},
|
|
110335
|
-
{
|
|
110336
|
-
"kind": "field",
|
|
110337
|
-
"name": "marker",
|
|
110338
|
-
"type": {
|
|
110339
|
-
"text": "SbbNavigationMarkerElement | null"
|
|
110340
|
-
},
|
|
110341
|
-
"privacy": "public",
|
|
110342
|
-
"readonly": true
|
|
110343
|
-
},
|
|
110344
|
-
{
|
|
110345
|
-
"kind": "field",
|
|
110346
|
-
"name": "section",
|
|
110347
|
-
"type": {
|
|
110348
|
-
"text": "SbbNavigationSectionElement | null"
|
|
110349
|
-
},
|
|
110350
|
-
"privacy": "public",
|
|
110351
|
-
"readonly": true
|
|
110352
|
-
},
|
|
110353
|
-
{
|
|
110354
|
-
"kind": "field",
|
|
110355
|
-
"name": "connectedSection",
|
|
110356
|
-
"type": {
|
|
110357
|
-
"text": "SbbNavigationSectionElement | undefined"
|
|
110358
|
-
},
|
|
110359
|
-
"privacy": "public"
|
|
110360
|
-
}
|
|
110361
|
-
]
|
|
110362
|
-
},
|
|
110363
|
-
{
|
|
110364
|
-
"kind": "mixin",
|
|
110365
|
-
"description": "",
|
|
110366
|
-
"name": "SbbNavigationActionCommonElementMixin",
|
|
110367
|
-
"members": [
|
|
110368
|
-
{
|
|
110369
|
-
"kind": "field",
|
|
110370
|
-
"name": "styles",
|
|
110371
|
-
"type": {
|
|
110372
|
-
"text": "CSSResultGroup"
|
|
110373
|
-
},
|
|
110374
|
-
"privacy": "public",
|
|
110375
|
-
"static": true,
|
|
110376
|
-
"default": "[boxSizingStyles, unsafeCSS(style)]"
|
|
110377
|
-
},
|
|
110378
|
-
{
|
|
110379
|
-
"kind": "field",
|
|
110380
|
-
"name": "size",
|
|
110381
|
-
"type": {
|
|
110382
|
-
"text": "SbbNavigationActionSize"
|
|
110383
|
-
},
|
|
110384
|
-
"privacy": "public",
|
|
110385
|
-
"description": "Action size variant, either s, m or l.",
|
|
110386
|
-
"default": "'l' / 's' (lean)",
|
|
110387
|
-
"attribute": "size",
|
|
110388
|
-
"reflects": true
|
|
110389
|
-
},
|
|
110390
|
-
{
|
|
110391
|
-
"kind": "field",
|
|
110392
|
-
"name": "connectedSection",
|
|
110393
|
-
"type": {
|
|
110394
|
-
"text": "SbbNavigationSectionElement | undefined"
|
|
110395
|
-
},
|
|
110396
|
-
"privacy": "public",
|
|
110397
|
-
"description": "The section that is being controlled by the action, if any."
|
|
110398
|
-
},
|
|
110399
|
-
{
|
|
110400
|
-
"kind": "field",
|
|
110401
|
-
"name": "marker",
|
|
110402
|
-
"type": {
|
|
110403
|
-
"text": "SbbNavigationMarkerElement | null"
|
|
110404
|
-
},
|
|
110405
|
-
"privacy": "public",
|
|
110406
|
-
"description": "The navigation marker in which the action is nested.",
|
|
110407
|
-
"readonly": true
|
|
110408
|
-
},
|
|
110409
|
-
{
|
|
110410
|
-
"kind": "field",
|
|
110411
|
-
"name": "section",
|
|
110412
|
-
"type": {
|
|
110413
|
-
"text": "SbbNavigationSectionElement | null"
|
|
110414
|
-
},
|
|
110415
|
-
"privacy": "public",
|
|
110416
|
-
"description": "The section in which the action is nested.",
|
|
110417
|
-
"readonly": true
|
|
110418
|
-
},
|
|
110419
|
-
{
|
|
110420
|
-
"kind": "field",
|
|
110421
|
-
"name": "_navigationMarker",
|
|
110422
|
-
"type": {
|
|
110423
|
-
"text": "SbbNavigationMarkerElement | null"
|
|
110424
|
-
},
|
|
110425
|
-
"privacy": "private",
|
|
110426
|
-
"default": "null"
|
|
110427
|
-
},
|
|
110428
|
-
{
|
|
110429
|
-
"kind": "field",
|
|
110430
|
-
"name": "_navigationSection",
|
|
110431
|
-
"type": {
|
|
110432
|
-
"text": "SbbNavigationSectionElement | null"
|
|
110433
|
-
},
|
|
110434
|
-
"privacy": "private",
|
|
110435
|
-
"default": "null"
|
|
110436
|
-
},
|
|
110437
|
-
{
|
|
110438
|
-
"kind": "method",
|
|
110439
|
-
"name": "renderTemplate",
|
|
110440
|
-
"privacy": "protected",
|
|
110441
|
-
"return": {
|
|
110442
|
-
"type": {
|
|
110443
|
-
"text": "TemplateResult"
|
|
110444
|
-
}
|
|
110445
|
-
}
|
|
110446
|
-
}
|
|
110447
|
-
],
|
|
110448
|
-
"attributes": [
|
|
110449
|
-
{
|
|
110450
|
-
"name": "size",
|
|
110451
|
-
"type": {
|
|
110452
|
-
"text": "SbbNavigationActionSize"
|
|
110453
|
-
},
|
|
110454
|
-
"description": "Action size variant, either s, m or l.",
|
|
110455
|
-
"default": "'l' / 's' (lean)",
|
|
110456
|
-
"fieldName": "size"
|
|
110457
|
-
}
|
|
110458
|
-
],
|
|
110459
|
-
"parameters": [
|
|
110460
|
-
{
|
|
110461
|
-
"name": "superClass",
|
|
110462
|
-
"type": {
|
|
110463
|
-
"text": "T"
|
|
110464
|
-
}
|
|
110465
|
-
}
|
|
110466
|
-
]
|
|
110467
|
-
}
|
|
110468
|
-
],
|
|
110469
|
-
"exports": [
|
|
110470
|
-
{
|
|
110471
|
-
"kind": "js",
|
|
110472
|
-
"name": "SbbNavigationActionCommonElementMixinType",
|
|
110473
|
-
"declaration": {
|
|
110474
|
-
"name": "SbbNavigationActionCommonElementMixinType",
|
|
110475
|
-
"module": "navigation/common/navigation-action-common.js"
|
|
110476
|
-
}
|
|
110477
|
-
},
|
|
110478
|
-
{
|
|
110479
|
-
"kind": "js",
|
|
110480
|
-
"name": "SbbNavigationActionCommonElementMixin",
|
|
110481
|
-
"declaration": {
|
|
110482
|
-
"name": "SbbNavigationActionCommonElementMixin",
|
|
110483
|
-
"module": "navigation/common/navigation-action-common.js"
|
|
110484
|
-
}
|
|
110485
|
-
}
|
|
110486
|
-
]
|
|
110487
|
-
},
|
|
110488
110488
|
{
|
|
110489
110489
|
"kind": "javascript-module",
|
|
110490
110490
|
"path": "navigation/navigation/navigation.component.js",
|