@sbb-esta/lyne-elements-dev 4.11.0-dev.1777034128 → 4.11.0-dev.1777034939
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 +1543 -1543
- package/package.json +2 -2
package/custom-elements.json
CHANGED
|
@@ -60911,6 +60911,468 @@
|
|
|
60911
60911
|
}
|
|
60912
60912
|
]
|
|
60913
60913
|
},
|
|
60914
|
+
{
|
|
60915
|
+
"kind": "javascript-module",
|
|
60916
|
+
"path": "container/sticky-bar/sticky-bar.component.js",
|
|
60917
|
+
"declarations": [
|
|
60918
|
+
{
|
|
60919
|
+
"kind": "class",
|
|
60920
|
+
"description": "A container that sticks to the bottom of the page if slotted into `sbb-container`.",
|
|
60921
|
+
"name": "SbbStickyBarElement",
|
|
60922
|
+
"cssProperties": [
|
|
60923
|
+
{
|
|
60924
|
+
"description": "Block padding of the sticky bar.",
|
|
60925
|
+
"name": "--sbb-sticky-bar-padding-block",
|
|
60926
|
+
"default": "var(--sbb-spacing-responsive-xs)"
|
|
60927
|
+
},
|
|
60928
|
+
{
|
|
60929
|
+
"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.",
|
|
60930
|
+
"name": "--sbb-sticky-bar-bottom-overlapping-height",
|
|
60931
|
+
"default": "0px"
|
|
60932
|
+
},
|
|
60933
|
+
{
|
|
60934
|
+
"description": "To specify a custom stack order, the `z-index` can be overridden by defining this CSS variable.",
|
|
60935
|
+
"name": "--sbb-sticky-bar-z-index"
|
|
60936
|
+
}
|
|
60937
|
+
],
|
|
60938
|
+
"slots": [
|
|
60939
|
+
{
|
|
60940
|
+
"description": "Use the unnamed slot to add content to the sticky bar.",
|
|
60941
|
+
"name": ""
|
|
60942
|
+
}
|
|
60943
|
+
],
|
|
60944
|
+
"members": [
|
|
60945
|
+
{
|
|
60946
|
+
"kind": "field",
|
|
60947
|
+
"name": "elementName",
|
|
60948
|
+
"type": {
|
|
60949
|
+
"text": "string"
|
|
60950
|
+
},
|
|
60951
|
+
"privacy": "public",
|
|
60952
|
+
"static": true,
|
|
60953
|
+
"readonly": true,
|
|
60954
|
+
"default": "'sbb-sticky-bar'",
|
|
60955
|
+
"inheritedFrom": {
|
|
60956
|
+
"name": "SbbElement",
|
|
60957
|
+
"module": "core/base-elements/element.js"
|
|
60958
|
+
}
|
|
60959
|
+
},
|
|
60960
|
+
{
|
|
60961
|
+
"kind": "field",
|
|
60962
|
+
"name": "events",
|
|
60963
|
+
"privacy": "public",
|
|
60964
|
+
"static": true,
|
|
60965
|
+
"readonly": true,
|
|
60966
|
+
"default": "{ beforestick: 'beforestick', stick: 'stick', beforeunstick: 'beforeunstick', unstick: 'unstick', }",
|
|
60967
|
+
"type": {
|
|
60968
|
+
"text": "{\n beforestick: 'beforestick',\n stick: 'stick',\n beforeunstick: 'beforeunstick',\n unstick: 'unstick',\n }"
|
|
60969
|
+
}
|
|
60970
|
+
},
|
|
60971
|
+
{
|
|
60972
|
+
"kind": "field",
|
|
60973
|
+
"name": "color",
|
|
60974
|
+
"type": {
|
|
60975
|
+
"text": "| 'white'\n | 'milk'\n | 'midnight'\n | 'charcoal'\n | null"
|
|
60976
|
+
},
|
|
60977
|
+
"privacy": "public",
|
|
60978
|
+
"default": "null",
|
|
60979
|
+
"description": "Color of the container, like transparent, white etc.",
|
|
60980
|
+
"attribute": "color",
|
|
60981
|
+
"reflects": true
|
|
60982
|
+
},
|
|
60983
|
+
{
|
|
60984
|
+
"kind": "field",
|
|
60985
|
+
"name": "size",
|
|
60986
|
+
"type": {
|
|
60987
|
+
"text": "'m' | 's'"
|
|
60988
|
+
},
|
|
60989
|
+
"privacy": "public",
|
|
60990
|
+
"description": "Size of the container.",
|
|
60991
|
+
"default": "'m' / 's' (lean)",
|
|
60992
|
+
"attribute": "size",
|
|
60993
|
+
"reflects": true
|
|
60994
|
+
},
|
|
60995
|
+
{
|
|
60996
|
+
"kind": "field",
|
|
60997
|
+
"name": "_state",
|
|
60998
|
+
"privacy": "private",
|
|
60999
|
+
"description": "The state of the component.",
|
|
61000
|
+
"type": {
|
|
61001
|
+
"text": "StickyState"
|
|
61002
|
+
},
|
|
61003
|
+
"default": "'sticky'"
|
|
61004
|
+
},
|
|
61005
|
+
{
|
|
61006
|
+
"kind": "field",
|
|
61007
|
+
"name": "_stateInternal",
|
|
61008
|
+
"type": {
|
|
61009
|
+
"text": "StickyState"
|
|
61010
|
+
},
|
|
61011
|
+
"privacy": "private"
|
|
61012
|
+
},
|
|
61013
|
+
{
|
|
61014
|
+
"kind": "field",
|
|
61015
|
+
"name": "_intersector",
|
|
61016
|
+
"type": {
|
|
61017
|
+
"text": "HTMLSpanElement | undefined"
|
|
61018
|
+
},
|
|
61019
|
+
"privacy": "private"
|
|
61020
|
+
},
|
|
61021
|
+
{
|
|
61022
|
+
"kind": "field",
|
|
61023
|
+
"name": "_observer",
|
|
61024
|
+
"privacy": "private",
|
|
61025
|
+
"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]), })"
|
|
61026
|
+
},
|
|
61027
|
+
{
|
|
61028
|
+
"kind": "method",
|
|
61029
|
+
"name": "_isZeroAnimationDuration",
|
|
61030
|
+
"privacy": "private",
|
|
61031
|
+
"return": {
|
|
61032
|
+
"type": {
|
|
61033
|
+
"text": "boolean"
|
|
61034
|
+
}
|
|
61035
|
+
}
|
|
61036
|
+
},
|
|
61037
|
+
{
|
|
61038
|
+
"kind": "method",
|
|
61039
|
+
"name": "_detectStickyState",
|
|
61040
|
+
"privacy": "private",
|
|
61041
|
+
"return": {
|
|
61042
|
+
"type": {
|
|
61043
|
+
"text": "void"
|
|
61044
|
+
}
|
|
61045
|
+
},
|
|
61046
|
+
"parameters": [
|
|
61047
|
+
{
|
|
61048
|
+
"name": "entry",
|
|
61049
|
+
"type": {
|
|
61050
|
+
"text": "IntersectionObserverEntry"
|
|
61051
|
+
}
|
|
61052
|
+
}
|
|
61053
|
+
]
|
|
61054
|
+
},
|
|
61055
|
+
{
|
|
61056
|
+
"kind": "method",
|
|
61057
|
+
"name": "stick",
|
|
61058
|
+
"privacy": "public",
|
|
61059
|
+
"return": {
|
|
61060
|
+
"type": {
|
|
61061
|
+
"text": "void"
|
|
61062
|
+
}
|
|
61063
|
+
},
|
|
61064
|
+
"description": "Animates from normal content flow position to `position: sticky`."
|
|
61065
|
+
},
|
|
61066
|
+
{
|
|
61067
|
+
"kind": "method",
|
|
61068
|
+
"name": "unstick",
|
|
61069
|
+
"privacy": "public",
|
|
61070
|
+
"return": {
|
|
61071
|
+
"type": {
|
|
61072
|
+
"text": "void"
|
|
61073
|
+
}
|
|
61074
|
+
},
|
|
61075
|
+
"description": "Animates `position: sticky` to normal content flow position."
|
|
61076
|
+
},
|
|
61077
|
+
{
|
|
61078
|
+
"kind": "method",
|
|
61079
|
+
"name": "_stickyCallback",
|
|
61080
|
+
"privacy": "private",
|
|
61081
|
+
"return": {
|
|
61082
|
+
"type": {
|
|
61083
|
+
"text": "void"
|
|
61084
|
+
}
|
|
61085
|
+
}
|
|
61086
|
+
},
|
|
61087
|
+
{
|
|
61088
|
+
"kind": "method",
|
|
61089
|
+
"name": "_unstickyCallback",
|
|
61090
|
+
"privacy": "private",
|
|
61091
|
+
"return": {
|
|
61092
|
+
"type": {
|
|
61093
|
+
"text": "void"
|
|
61094
|
+
}
|
|
61095
|
+
}
|
|
61096
|
+
},
|
|
61097
|
+
{
|
|
61098
|
+
"kind": "method",
|
|
61099
|
+
"name": "_onAnimationEnd",
|
|
61100
|
+
"privacy": "private",
|
|
61101
|
+
"return": {
|
|
61102
|
+
"type": {
|
|
61103
|
+
"text": "void"
|
|
61104
|
+
}
|
|
61105
|
+
},
|
|
61106
|
+
"parameters": [
|
|
61107
|
+
{
|
|
61108
|
+
"name": "event",
|
|
61109
|
+
"type": {
|
|
61110
|
+
"text": "AnimationEvent"
|
|
61111
|
+
}
|
|
61112
|
+
}
|
|
61113
|
+
]
|
|
61114
|
+
},
|
|
61115
|
+
{
|
|
61116
|
+
"kind": "method",
|
|
61117
|
+
"name": "_dispatchBeforeStickEvent",
|
|
61118
|
+
"privacy": "private",
|
|
61119
|
+
"return": {
|
|
61120
|
+
"type": {
|
|
61121
|
+
"text": "boolean"
|
|
61122
|
+
}
|
|
61123
|
+
}
|
|
61124
|
+
},
|
|
61125
|
+
{
|
|
61126
|
+
"kind": "method",
|
|
61127
|
+
"name": "_dispatchBeforeUnStickEvent",
|
|
61128
|
+
"privacy": "private",
|
|
61129
|
+
"return": {
|
|
61130
|
+
"type": {
|
|
61131
|
+
"text": "boolean"
|
|
61132
|
+
}
|
|
61133
|
+
}
|
|
61134
|
+
},
|
|
61135
|
+
{
|
|
61136
|
+
"kind": "field",
|
|
61137
|
+
"name": "_updatePromise",
|
|
61138
|
+
"privacy": "private",
|
|
61139
|
+
"inheritedFrom": {
|
|
61140
|
+
"name": "SbbUpdateSchedulerMixin",
|
|
61141
|
+
"module": "core/mixins/update-scheduler-mixin.js"
|
|
61142
|
+
}
|
|
61143
|
+
},
|
|
61144
|
+
{
|
|
61145
|
+
"kind": "field",
|
|
61146
|
+
"name": "_updateResolve",
|
|
61147
|
+
"privacy": "private",
|
|
61148
|
+
"inheritedFrom": {
|
|
61149
|
+
"name": "SbbUpdateSchedulerMixin",
|
|
61150
|
+
"module": "core/mixins/update-scheduler-mixin.js"
|
|
61151
|
+
}
|
|
61152
|
+
},
|
|
61153
|
+
{
|
|
61154
|
+
"kind": "method",
|
|
61155
|
+
"name": "startUpdate",
|
|
61156
|
+
"privacy": "protected",
|
|
61157
|
+
"return": {
|
|
61158
|
+
"type": {
|
|
61159
|
+
"text": "void"
|
|
61160
|
+
}
|
|
61161
|
+
},
|
|
61162
|
+
"inheritedFrom": {
|
|
61163
|
+
"name": "SbbUpdateSchedulerMixin",
|
|
61164
|
+
"module": "core/mixins/update-scheduler-mixin.js"
|
|
61165
|
+
}
|
|
61166
|
+
},
|
|
61167
|
+
{
|
|
61168
|
+
"kind": "method",
|
|
61169
|
+
"name": "completeUpdate",
|
|
61170
|
+
"privacy": "protected",
|
|
61171
|
+
"return": {
|
|
61172
|
+
"type": {
|
|
61173
|
+
"text": "void"
|
|
61174
|
+
}
|
|
61175
|
+
},
|
|
61176
|
+
"inheritedFrom": {
|
|
61177
|
+
"name": "SbbUpdateSchedulerMixin",
|
|
61178
|
+
"module": "core/mixins/update-scheduler-mixin.js"
|
|
61179
|
+
}
|
|
61180
|
+
},
|
|
61181
|
+
{
|
|
61182
|
+
"kind": "method",
|
|
61183
|
+
"name": "getUpdateComplete",
|
|
61184
|
+
"privacy": "protected",
|
|
61185
|
+
"return": {
|
|
61186
|
+
"type": {
|
|
61187
|
+
"text": "Promise<boolean>"
|
|
61188
|
+
}
|
|
61189
|
+
},
|
|
61190
|
+
"inheritedFrom": {
|
|
61191
|
+
"name": "SbbUpdateSchedulerMixin",
|
|
61192
|
+
"module": "core/mixins/update-scheduler-mixin.js"
|
|
61193
|
+
}
|
|
61194
|
+
},
|
|
61195
|
+
{
|
|
61196
|
+
"kind": "field",
|
|
61197
|
+
"name": "_hydrationRequired",
|
|
61198
|
+
"type": {
|
|
61199
|
+
"text": "boolean"
|
|
61200
|
+
},
|
|
61201
|
+
"privacy": "private",
|
|
61202
|
+
"default": "!!this.shadowRoot",
|
|
61203
|
+
"inheritedFrom": {
|
|
61204
|
+
"name": "SbbHydrationMixin",
|
|
61205
|
+
"module": "core/mixins/hydration-mixin.js"
|
|
61206
|
+
}
|
|
61207
|
+
},
|
|
61208
|
+
{
|
|
61209
|
+
"kind": "field",
|
|
61210
|
+
"name": "_hydrationComplete",
|
|
61211
|
+
"privacy": "private",
|
|
61212
|
+
"default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
|
|
61213
|
+
"inheritedFrom": {
|
|
61214
|
+
"name": "SbbHydrationMixin",
|
|
61215
|
+
"module": "core/mixins/hydration-mixin.js"
|
|
61216
|
+
}
|
|
61217
|
+
},
|
|
61218
|
+
{
|
|
61219
|
+
"kind": "field",
|
|
61220
|
+
"name": "_resolveHydration",
|
|
61221
|
+
"type": {
|
|
61222
|
+
"text": "(hydrationRequired: boolean) => void"
|
|
61223
|
+
},
|
|
61224
|
+
"privacy": "private",
|
|
61225
|
+
"inheritedFrom": {
|
|
61226
|
+
"name": "SbbHydrationMixin",
|
|
61227
|
+
"module": "core/mixins/hydration-mixin.js"
|
|
61228
|
+
}
|
|
61229
|
+
},
|
|
61230
|
+
{
|
|
61231
|
+
"kind": "field",
|
|
61232
|
+
"name": "hydrationRequired",
|
|
61233
|
+
"type": {
|
|
61234
|
+
"text": "boolean"
|
|
61235
|
+
},
|
|
61236
|
+
"privacy": "protected",
|
|
61237
|
+
"description": "Returns whether hydration is required and not completed.",
|
|
61238
|
+
"readonly": true,
|
|
61239
|
+
"inheritedFrom": {
|
|
61240
|
+
"name": "SbbHydrationMixin",
|
|
61241
|
+
"module": "core/mixins/hydration-mixin.js"
|
|
61242
|
+
},
|
|
61243
|
+
"default": "!!this.shadowRoot"
|
|
61244
|
+
},
|
|
61245
|
+
{
|
|
61246
|
+
"kind": "method",
|
|
61247
|
+
"name": "toggleState",
|
|
61248
|
+
"privacy": "protected",
|
|
61249
|
+
"return": {
|
|
61250
|
+
"type": {
|
|
61251
|
+
"text": "void"
|
|
61252
|
+
}
|
|
61253
|
+
},
|
|
61254
|
+
"parameters": [
|
|
61255
|
+
{
|
|
61256
|
+
"name": "value",
|
|
61257
|
+
"type": {
|
|
61258
|
+
"text": "string"
|
|
61259
|
+
}
|
|
61260
|
+
},
|
|
61261
|
+
{
|
|
61262
|
+
"name": "force",
|
|
61263
|
+
"optional": true,
|
|
61264
|
+
"type": {
|
|
61265
|
+
"text": "boolean"
|
|
61266
|
+
}
|
|
61267
|
+
}
|
|
61268
|
+
],
|
|
61269
|
+
"inheritedFrom": {
|
|
61270
|
+
"name": "SbbElementInternalsMixin",
|
|
61271
|
+
"module": "core/mixins/element-internals-mixin.js"
|
|
61272
|
+
}
|
|
61273
|
+
},
|
|
61274
|
+
{
|
|
61275
|
+
"kind": "field",
|
|
61276
|
+
"name": "['_$sbbElement$']",
|
|
61277
|
+
"type": {
|
|
61278
|
+
"text": "boolean"
|
|
61279
|
+
},
|
|
61280
|
+
"privacy": "public",
|
|
61281
|
+
"static": true,
|
|
61282
|
+
"default": "true",
|
|
61283
|
+
"inheritedFrom": {
|
|
61284
|
+
"name": "SbbElement",
|
|
61285
|
+
"module": "core/base-elements/element.js"
|
|
61286
|
+
}
|
|
61287
|
+
},
|
|
61288
|
+
{
|
|
61289
|
+
"kind": "field",
|
|
61290
|
+
"name": "_controllers",
|
|
61291
|
+
"type": {
|
|
61292
|
+
"text": "Set<SbbReactiveController> | undefined"
|
|
61293
|
+
},
|
|
61294
|
+
"privacy": "private",
|
|
61295
|
+
"inheritedFrom": {
|
|
61296
|
+
"name": "SbbElement",
|
|
61297
|
+
"module": "core/base-elements/element.js"
|
|
61298
|
+
}
|
|
61299
|
+
}
|
|
61300
|
+
],
|
|
61301
|
+
"events": [
|
|
61302
|
+
{
|
|
61303
|
+
"name": "stick",
|
|
61304
|
+
"type": {
|
|
61305
|
+
"text": "Event"
|
|
61306
|
+
},
|
|
61307
|
+
"description": "Emits when the animation from normal content flow to `position: sticky` ends."
|
|
61308
|
+
},
|
|
61309
|
+
{
|
|
61310
|
+
"name": "unstick",
|
|
61311
|
+
"type": {
|
|
61312
|
+
"text": "Event"
|
|
61313
|
+
},
|
|
61314
|
+
"description": "Emits when the animation from `position: sticky` to normal content flow ends."
|
|
61315
|
+
},
|
|
61316
|
+
{
|
|
61317
|
+
"name": "beforestick",
|
|
61318
|
+
"type": {
|
|
61319
|
+
"text": "Event"
|
|
61320
|
+
},
|
|
61321
|
+
"description": "Emits when the animation from normal content flow to `position: sticky` starts. Can be canceled."
|
|
61322
|
+
},
|
|
61323
|
+
{
|
|
61324
|
+
"name": "beforeunstick",
|
|
61325
|
+
"type": {
|
|
61326
|
+
"text": "Event"
|
|
61327
|
+
},
|
|
61328
|
+
"description": "Emits when the animation from `position: sticky` to normal content flow starts. Can be canceled."
|
|
61329
|
+
}
|
|
61330
|
+
],
|
|
61331
|
+
"attributes": [
|
|
61332
|
+
{
|
|
61333
|
+
"name": "color",
|
|
61334
|
+
"type": {
|
|
61335
|
+
"text": "| 'white'\n | 'milk'\n | 'midnight'\n | 'charcoal'\n | null"
|
|
61336
|
+
},
|
|
61337
|
+
"default": "null",
|
|
61338
|
+
"description": "Color of the container, like transparent, white etc.",
|
|
61339
|
+
"fieldName": "color"
|
|
61340
|
+
},
|
|
61341
|
+
{
|
|
61342
|
+
"name": "size",
|
|
61343
|
+
"type": {
|
|
61344
|
+
"text": "'m' | 's'"
|
|
61345
|
+
},
|
|
61346
|
+
"description": "Size of the container.",
|
|
61347
|
+
"default": "'m' / 's' (lean)",
|
|
61348
|
+
"fieldName": "size"
|
|
61349
|
+
}
|
|
61350
|
+
],
|
|
61351
|
+
"mixins": [
|
|
61352
|
+
{
|
|
61353
|
+
"name": "SbbUpdateSchedulerMixin",
|
|
61354
|
+
"module": "core/mixins.js"
|
|
61355
|
+
}
|
|
61356
|
+
],
|
|
61357
|
+
"superclass": {
|
|
61358
|
+
"name": "SbbElement",
|
|
61359
|
+
"module": "core/base-elements.js"
|
|
61360
|
+
},
|
|
61361
|
+
"tagName": "sbb-sticky-bar",
|
|
61362
|
+
"customElement": true
|
|
61363
|
+
}
|
|
61364
|
+
],
|
|
61365
|
+
"exports": [
|
|
61366
|
+
{
|
|
61367
|
+
"kind": "js",
|
|
61368
|
+
"name": "SbbStickyBarElement",
|
|
61369
|
+
"declaration": {
|
|
61370
|
+
"name": "SbbStickyBarElement",
|
|
61371
|
+
"module": "container/sticky-bar/sticky-bar.component.js"
|
|
61372
|
+
}
|
|
61373
|
+
}
|
|
61374
|
+
]
|
|
61375
|
+
},
|
|
60914
61376
|
{
|
|
60915
61377
|
"kind": "javascript-module",
|
|
60916
61378
|
"path": "core/a11y/arrow-navigation.js",
|
|
@@ -61805,487 +62267,25 @@
|
|
|
61805
62267
|
},
|
|
61806
62268
|
{
|
|
61807
62269
|
"kind": "javascript-module",
|
|
61808
|
-
"path": "
|
|
62270
|
+
"path": "core/base-elements/action-base-element.js",
|
|
61809
62271
|
"declarations": [
|
|
61810
62272
|
{
|
|
61811
62273
|
"kind": "class",
|
|
61812
|
-
"description": "
|
|
61813
|
-
"name": "
|
|
61814
|
-
"cssProperties": [
|
|
61815
|
-
{
|
|
61816
|
-
"description": "Block padding of the sticky bar.",
|
|
61817
|
-
"name": "--sbb-sticky-bar-padding-block",
|
|
61818
|
-
"default": "var(--sbb-spacing-responsive-xs)"
|
|
61819
|
-
},
|
|
61820
|
-
{
|
|
61821
|
-
"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.",
|
|
61822
|
-
"name": "--sbb-sticky-bar-bottom-overlapping-height",
|
|
61823
|
-
"default": "0px"
|
|
61824
|
-
},
|
|
61825
|
-
{
|
|
61826
|
-
"description": "To specify a custom stack order, the `z-index` can be overridden by defining this CSS variable.",
|
|
61827
|
-
"name": "--sbb-sticky-bar-z-index"
|
|
61828
|
-
}
|
|
61829
|
-
],
|
|
61830
|
-
"slots": [
|
|
61831
|
-
{
|
|
61832
|
-
"description": "Use the unnamed slot to add content to the sticky bar.",
|
|
61833
|
-
"name": ""
|
|
61834
|
-
}
|
|
61835
|
-
],
|
|
62274
|
+
"description": "",
|
|
62275
|
+
"name": "SbbActionBaseElement",
|
|
61836
62276
|
"members": [
|
|
61837
62277
|
{
|
|
61838
62278
|
"kind": "field",
|
|
61839
|
-
"name": "
|
|
62279
|
+
"name": "maybeDisabled",
|
|
61840
62280
|
"type": {
|
|
61841
|
-
"text": "
|
|
62281
|
+
"text": "boolean | undefined"
|
|
61842
62282
|
},
|
|
61843
|
-
"privacy": "
|
|
61844
|
-
"
|
|
61845
|
-
"readonly": true,
|
|
61846
|
-
"default": "'sbb-sticky-bar'",
|
|
61847
|
-
"inheritedFrom": {
|
|
61848
|
-
"name": "SbbElement",
|
|
61849
|
-
"module": "core/base-elements/element.js"
|
|
61850
|
-
}
|
|
62283
|
+
"privacy": "protected",
|
|
62284
|
+
"readonly": true
|
|
61851
62285
|
},
|
|
61852
62286
|
{
|
|
61853
62287
|
"kind": "field",
|
|
61854
|
-
"name": "
|
|
61855
|
-
"privacy": "public",
|
|
61856
|
-
"static": true,
|
|
61857
|
-
"readonly": true,
|
|
61858
|
-
"default": "{ beforestick: 'beforestick', stick: 'stick', beforeunstick: 'beforeunstick', unstick: 'unstick', }",
|
|
61859
|
-
"type": {
|
|
61860
|
-
"text": "{\n beforestick: 'beforestick',\n stick: 'stick',\n beforeunstick: 'beforeunstick',\n unstick: 'unstick',\n }"
|
|
61861
|
-
}
|
|
61862
|
-
},
|
|
61863
|
-
{
|
|
61864
|
-
"kind": "field",
|
|
61865
|
-
"name": "color",
|
|
61866
|
-
"type": {
|
|
61867
|
-
"text": "| 'white'\n | 'milk'\n | 'midnight'\n | 'charcoal'\n | null"
|
|
61868
|
-
},
|
|
61869
|
-
"privacy": "public",
|
|
61870
|
-
"default": "null",
|
|
61871
|
-
"description": "Color of the container, like transparent, white etc.",
|
|
61872
|
-
"attribute": "color",
|
|
61873
|
-
"reflects": true
|
|
61874
|
-
},
|
|
61875
|
-
{
|
|
61876
|
-
"kind": "field",
|
|
61877
|
-
"name": "size",
|
|
61878
|
-
"type": {
|
|
61879
|
-
"text": "'m' | 's'"
|
|
61880
|
-
},
|
|
61881
|
-
"privacy": "public",
|
|
61882
|
-
"description": "Size of the container.",
|
|
61883
|
-
"default": "'m' / 's' (lean)",
|
|
61884
|
-
"attribute": "size",
|
|
61885
|
-
"reflects": true
|
|
61886
|
-
},
|
|
61887
|
-
{
|
|
61888
|
-
"kind": "field",
|
|
61889
|
-
"name": "_state",
|
|
61890
|
-
"privacy": "private",
|
|
61891
|
-
"description": "The state of the component.",
|
|
61892
|
-
"type": {
|
|
61893
|
-
"text": "StickyState"
|
|
61894
|
-
},
|
|
61895
|
-
"default": "'sticky'"
|
|
61896
|
-
},
|
|
61897
|
-
{
|
|
61898
|
-
"kind": "field",
|
|
61899
|
-
"name": "_stateInternal",
|
|
61900
|
-
"type": {
|
|
61901
|
-
"text": "StickyState"
|
|
61902
|
-
},
|
|
61903
|
-
"privacy": "private"
|
|
61904
|
-
},
|
|
61905
|
-
{
|
|
61906
|
-
"kind": "field",
|
|
61907
|
-
"name": "_intersector",
|
|
61908
|
-
"type": {
|
|
61909
|
-
"text": "HTMLSpanElement | undefined"
|
|
61910
|
-
},
|
|
61911
|
-
"privacy": "private"
|
|
61912
|
-
},
|
|
61913
|
-
{
|
|
61914
|
-
"kind": "field",
|
|
61915
|
-
"name": "_observer",
|
|
61916
|
-
"privacy": "private",
|
|
61917
|
-
"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]), })"
|
|
61918
|
-
},
|
|
61919
|
-
{
|
|
61920
|
-
"kind": "method",
|
|
61921
|
-
"name": "_isZeroAnimationDuration",
|
|
61922
|
-
"privacy": "private",
|
|
61923
|
-
"return": {
|
|
61924
|
-
"type": {
|
|
61925
|
-
"text": "boolean"
|
|
61926
|
-
}
|
|
61927
|
-
}
|
|
61928
|
-
},
|
|
61929
|
-
{
|
|
61930
|
-
"kind": "method",
|
|
61931
|
-
"name": "_detectStickyState",
|
|
61932
|
-
"privacy": "private",
|
|
61933
|
-
"return": {
|
|
61934
|
-
"type": {
|
|
61935
|
-
"text": "void"
|
|
61936
|
-
}
|
|
61937
|
-
},
|
|
61938
|
-
"parameters": [
|
|
61939
|
-
{
|
|
61940
|
-
"name": "entry",
|
|
61941
|
-
"type": {
|
|
61942
|
-
"text": "IntersectionObserverEntry"
|
|
61943
|
-
}
|
|
61944
|
-
}
|
|
61945
|
-
]
|
|
61946
|
-
},
|
|
61947
|
-
{
|
|
61948
|
-
"kind": "method",
|
|
61949
|
-
"name": "stick",
|
|
61950
|
-
"privacy": "public",
|
|
61951
|
-
"return": {
|
|
61952
|
-
"type": {
|
|
61953
|
-
"text": "void"
|
|
61954
|
-
}
|
|
61955
|
-
},
|
|
61956
|
-
"description": "Animates from normal content flow position to `position: sticky`."
|
|
61957
|
-
},
|
|
61958
|
-
{
|
|
61959
|
-
"kind": "method",
|
|
61960
|
-
"name": "unstick",
|
|
61961
|
-
"privacy": "public",
|
|
61962
|
-
"return": {
|
|
61963
|
-
"type": {
|
|
61964
|
-
"text": "void"
|
|
61965
|
-
}
|
|
61966
|
-
},
|
|
61967
|
-
"description": "Animates `position: sticky` to normal content flow position."
|
|
61968
|
-
},
|
|
61969
|
-
{
|
|
61970
|
-
"kind": "method",
|
|
61971
|
-
"name": "_stickyCallback",
|
|
61972
|
-
"privacy": "private",
|
|
61973
|
-
"return": {
|
|
61974
|
-
"type": {
|
|
61975
|
-
"text": "void"
|
|
61976
|
-
}
|
|
61977
|
-
}
|
|
61978
|
-
},
|
|
61979
|
-
{
|
|
61980
|
-
"kind": "method",
|
|
61981
|
-
"name": "_unstickyCallback",
|
|
61982
|
-
"privacy": "private",
|
|
61983
|
-
"return": {
|
|
61984
|
-
"type": {
|
|
61985
|
-
"text": "void"
|
|
61986
|
-
}
|
|
61987
|
-
}
|
|
61988
|
-
},
|
|
61989
|
-
{
|
|
61990
|
-
"kind": "method",
|
|
61991
|
-
"name": "_onAnimationEnd",
|
|
61992
|
-
"privacy": "private",
|
|
61993
|
-
"return": {
|
|
61994
|
-
"type": {
|
|
61995
|
-
"text": "void"
|
|
61996
|
-
}
|
|
61997
|
-
},
|
|
61998
|
-
"parameters": [
|
|
61999
|
-
{
|
|
62000
|
-
"name": "event",
|
|
62001
|
-
"type": {
|
|
62002
|
-
"text": "AnimationEvent"
|
|
62003
|
-
}
|
|
62004
|
-
}
|
|
62005
|
-
]
|
|
62006
|
-
},
|
|
62007
|
-
{
|
|
62008
|
-
"kind": "method",
|
|
62009
|
-
"name": "_dispatchBeforeStickEvent",
|
|
62010
|
-
"privacy": "private",
|
|
62011
|
-
"return": {
|
|
62012
|
-
"type": {
|
|
62013
|
-
"text": "boolean"
|
|
62014
|
-
}
|
|
62015
|
-
}
|
|
62016
|
-
},
|
|
62017
|
-
{
|
|
62018
|
-
"kind": "method",
|
|
62019
|
-
"name": "_dispatchBeforeUnStickEvent",
|
|
62020
|
-
"privacy": "private",
|
|
62021
|
-
"return": {
|
|
62022
|
-
"type": {
|
|
62023
|
-
"text": "boolean"
|
|
62024
|
-
}
|
|
62025
|
-
}
|
|
62026
|
-
},
|
|
62027
|
-
{
|
|
62028
|
-
"kind": "field",
|
|
62029
|
-
"name": "_updatePromise",
|
|
62030
|
-
"privacy": "private",
|
|
62031
|
-
"inheritedFrom": {
|
|
62032
|
-
"name": "SbbUpdateSchedulerMixin",
|
|
62033
|
-
"module": "core/mixins/update-scheduler-mixin.js"
|
|
62034
|
-
}
|
|
62035
|
-
},
|
|
62036
|
-
{
|
|
62037
|
-
"kind": "field",
|
|
62038
|
-
"name": "_updateResolve",
|
|
62039
|
-
"privacy": "private",
|
|
62040
|
-
"inheritedFrom": {
|
|
62041
|
-
"name": "SbbUpdateSchedulerMixin",
|
|
62042
|
-
"module": "core/mixins/update-scheduler-mixin.js"
|
|
62043
|
-
}
|
|
62044
|
-
},
|
|
62045
|
-
{
|
|
62046
|
-
"kind": "method",
|
|
62047
|
-
"name": "startUpdate",
|
|
62048
|
-
"privacy": "protected",
|
|
62049
|
-
"return": {
|
|
62050
|
-
"type": {
|
|
62051
|
-
"text": "void"
|
|
62052
|
-
}
|
|
62053
|
-
},
|
|
62054
|
-
"inheritedFrom": {
|
|
62055
|
-
"name": "SbbUpdateSchedulerMixin",
|
|
62056
|
-
"module": "core/mixins/update-scheduler-mixin.js"
|
|
62057
|
-
}
|
|
62058
|
-
},
|
|
62059
|
-
{
|
|
62060
|
-
"kind": "method",
|
|
62061
|
-
"name": "completeUpdate",
|
|
62062
|
-
"privacy": "protected",
|
|
62063
|
-
"return": {
|
|
62064
|
-
"type": {
|
|
62065
|
-
"text": "void"
|
|
62066
|
-
}
|
|
62067
|
-
},
|
|
62068
|
-
"inheritedFrom": {
|
|
62069
|
-
"name": "SbbUpdateSchedulerMixin",
|
|
62070
|
-
"module": "core/mixins/update-scheduler-mixin.js"
|
|
62071
|
-
}
|
|
62072
|
-
},
|
|
62073
|
-
{
|
|
62074
|
-
"kind": "method",
|
|
62075
|
-
"name": "getUpdateComplete",
|
|
62076
|
-
"privacy": "protected",
|
|
62077
|
-
"return": {
|
|
62078
|
-
"type": {
|
|
62079
|
-
"text": "Promise<boolean>"
|
|
62080
|
-
}
|
|
62081
|
-
},
|
|
62082
|
-
"inheritedFrom": {
|
|
62083
|
-
"name": "SbbUpdateSchedulerMixin",
|
|
62084
|
-
"module": "core/mixins/update-scheduler-mixin.js"
|
|
62085
|
-
}
|
|
62086
|
-
},
|
|
62087
|
-
{
|
|
62088
|
-
"kind": "field",
|
|
62089
|
-
"name": "_hydrationRequired",
|
|
62090
|
-
"type": {
|
|
62091
|
-
"text": "boolean"
|
|
62092
|
-
},
|
|
62093
|
-
"privacy": "private",
|
|
62094
|
-
"default": "!!this.shadowRoot",
|
|
62095
|
-
"inheritedFrom": {
|
|
62096
|
-
"name": "SbbHydrationMixin",
|
|
62097
|
-
"module": "core/mixins/hydration-mixin.js"
|
|
62098
|
-
}
|
|
62099
|
-
},
|
|
62100
|
-
{
|
|
62101
|
-
"kind": "field",
|
|
62102
|
-
"name": "_hydrationComplete",
|
|
62103
|
-
"privacy": "private",
|
|
62104
|
-
"default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
|
|
62105
|
-
"inheritedFrom": {
|
|
62106
|
-
"name": "SbbHydrationMixin",
|
|
62107
|
-
"module": "core/mixins/hydration-mixin.js"
|
|
62108
|
-
}
|
|
62109
|
-
},
|
|
62110
|
-
{
|
|
62111
|
-
"kind": "field",
|
|
62112
|
-
"name": "_resolveHydration",
|
|
62113
|
-
"type": {
|
|
62114
|
-
"text": "(hydrationRequired: boolean) => void"
|
|
62115
|
-
},
|
|
62116
|
-
"privacy": "private",
|
|
62117
|
-
"inheritedFrom": {
|
|
62118
|
-
"name": "SbbHydrationMixin",
|
|
62119
|
-
"module": "core/mixins/hydration-mixin.js"
|
|
62120
|
-
}
|
|
62121
|
-
},
|
|
62122
|
-
{
|
|
62123
|
-
"kind": "field",
|
|
62124
|
-
"name": "hydrationRequired",
|
|
62125
|
-
"type": {
|
|
62126
|
-
"text": "boolean"
|
|
62127
|
-
},
|
|
62128
|
-
"privacy": "protected",
|
|
62129
|
-
"description": "Returns whether hydration is required and not completed.",
|
|
62130
|
-
"readonly": true,
|
|
62131
|
-
"inheritedFrom": {
|
|
62132
|
-
"name": "SbbHydrationMixin",
|
|
62133
|
-
"module": "core/mixins/hydration-mixin.js"
|
|
62134
|
-
},
|
|
62135
|
-
"default": "!!this.shadowRoot"
|
|
62136
|
-
},
|
|
62137
|
-
{
|
|
62138
|
-
"kind": "method",
|
|
62139
|
-
"name": "toggleState",
|
|
62140
|
-
"privacy": "protected",
|
|
62141
|
-
"return": {
|
|
62142
|
-
"type": {
|
|
62143
|
-
"text": "void"
|
|
62144
|
-
}
|
|
62145
|
-
},
|
|
62146
|
-
"parameters": [
|
|
62147
|
-
{
|
|
62148
|
-
"name": "value",
|
|
62149
|
-
"type": {
|
|
62150
|
-
"text": "string"
|
|
62151
|
-
}
|
|
62152
|
-
},
|
|
62153
|
-
{
|
|
62154
|
-
"name": "force",
|
|
62155
|
-
"optional": true,
|
|
62156
|
-
"type": {
|
|
62157
|
-
"text": "boolean"
|
|
62158
|
-
}
|
|
62159
|
-
}
|
|
62160
|
-
],
|
|
62161
|
-
"inheritedFrom": {
|
|
62162
|
-
"name": "SbbElementInternalsMixin",
|
|
62163
|
-
"module": "core/mixins/element-internals-mixin.js"
|
|
62164
|
-
}
|
|
62165
|
-
},
|
|
62166
|
-
{
|
|
62167
|
-
"kind": "field",
|
|
62168
|
-
"name": "['_$sbbElement$']",
|
|
62169
|
-
"type": {
|
|
62170
|
-
"text": "boolean"
|
|
62171
|
-
},
|
|
62172
|
-
"privacy": "public",
|
|
62173
|
-
"static": true,
|
|
62174
|
-
"default": "true",
|
|
62175
|
-
"inheritedFrom": {
|
|
62176
|
-
"name": "SbbElement",
|
|
62177
|
-
"module": "core/base-elements/element.js"
|
|
62178
|
-
}
|
|
62179
|
-
},
|
|
62180
|
-
{
|
|
62181
|
-
"kind": "field",
|
|
62182
|
-
"name": "_controllers",
|
|
62183
|
-
"type": {
|
|
62184
|
-
"text": "Set<SbbReactiveController> | undefined"
|
|
62185
|
-
},
|
|
62186
|
-
"privacy": "private",
|
|
62187
|
-
"inheritedFrom": {
|
|
62188
|
-
"name": "SbbElement",
|
|
62189
|
-
"module": "core/base-elements/element.js"
|
|
62190
|
-
}
|
|
62191
|
-
}
|
|
62192
|
-
],
|
|
62193
|
-
"events": [
|
|
62194
|
-
{
|
|
62195
|
-
"name": "stick",
|
|
62196
|
-
"type": {
|
|
62197
|
-
"text": "Event"
|
|
62198
|
-
},
|
|
62199
|
-
"description": "Emits when the animation from normal content flow to `position: sticky` ends."
|
|
62200
|
-
},
|
|
62201
|
-
{
|
|
62202
|
-
"name": "unstick",
|
|
62203
|
-
"type": {
|
|
62204
|
-
"text": "Event"
|
|
62205
|
-
},
|
|
62206
|
-
"description": "Emits when the animation from `position: sticky` to normal content flow ends."
|
|
62207
|
-
},
|
|
62208
|
-
{
|
|
62209
|
-
"name": "beforestick",
|
|
62210
|
-
"type": {
|
|
62211
|
-
"text": "Event"
|
|
62212
|
-
},
|
|
62213
|
-
"description": "Emits when the animation from normal content flow to `position: sticky` starts. Can be canceled."
|
|
62214
|
-
},
|
|
62215
|
-
{
|
|
62216
|
-
"name": "beforeunstick",
|
|
62217
|
-
"type": {
|
|
62218
|
-
"text": "Event"
|
|
62219
|
-
},
|
|
62220
|
-
"description": "Emits when the animation from `position: sticky` to normal content flow starts. Can be canceled."
|
|
62221
|
-
}
|
|
62222
|
-
],
|
|
62223
|
-
"attributes": [
|
|
62224
|
-
{
|
|
62225
|
-
"name": "color",
|
|
62226
|
-
"type": {
|
|
62227
|
-
"text": "| 'white'\n | 'milk'\n | 'midnight'\n | 'charcoal'\n | null"
|
|
62228
|
-
},
|
|
62229
|
-
"default": "null",
|
|
62230
|
-
"description": "Color of the container, like transparent, white etc.",
|
|
62231
|
-
"fieldName": "color"
|
|
62232
|
-
},
|
|
62233
|
-
{
|
|
62234
|
-
"name": "size",
|
|
62235
|
-
"type": {
|
|
62236
|
-
"text": "'m' | 's'"
|
|
62237
|
-
},
|
|
62238
|
-
"description": "Size of the container.",
|
|
62239
|
-
"default": "'m' / 's' (lean)",
|
|
62240
|
-
"fieldName": "size"
|
|
62241
|
-
}
|
|
62242
|
-
],
|
|
62243
|
-
"mixins": [
|
|
62244
|
-
{
|
|
62245
|
-
"name": "SbbUpdateSchedulerMixin",
|
|
62246
|
-
"module": "core/mixins.js"
|
|
62247
|
-
}
|
|
62248
|
-
],
|
|
62249
|
-
"superclass": {
|
|
62250
|
-
"name": "SbbElement",
|
|
62251
|
-
"module": "core/base-elements.js"
|
|
62252
|
-
},
|
|
62253
|
-
"tagName": "sbb-sticky-bar",
|
|
62254
|
-
"customElement": true
|
|
62255
|
-
}
|
|
62256
|
-
],
|
|
62257
|
-
"exports": [
|
|
62258
|
-
{
|
|
62259
|
-
"kind": "js",
|
|
62260
|
-
"name": "SbbStickyBarElement",
|
|
62261
|
-
"declaration": {
|
|
62262
|
-
"name": "SbbStickyBarElement",
|
|
62263
|
-
"module": "container/sticky-bar/sticky-bar.component.js"
|
|
62264
|
-
}
|
|
62265
|
-
}
|
|
62266
|
-
]
|
|
62267
|
-
},
|
|
62268
|
-
{
|
|
62269
|
-
"kind": "javascript-module",
|
|
62270
|
-
"path": "core/base-elements/action-base-element.js",
|
|
62271
|
-
"declarations": [
|
|
62272
|
-
{
|
|
62273
|
-
"kind": "class",
|
|
62274
|
-
"description": "",
|
|
62275
|
-
"name": "SbbActionBaseElement",
|
|
62276
|
-
"members": [
|
|
62277
|
-
{
|
|
62278
|
-
"kind": "field",
|
|
62279
|
-
"name": "maybeDisabled",
|
|
62280
|
-
"type": {
|
|
62281
|
-
"text": "boolean | undefined"
|
|
62282
|
-
},
|
|
62283
|
-
"privacy": "protected",
|
|
62284
|
-
"readonly": true
|
|
62285
|
-
},
|
|
62286
|
-
{
|
|
62287
|
-
"kind": "field",
|
|
62288
|
-
"name": "maybeDisabledInteractive",
|
|
62288
|
+
"name": "maybeDisabledInteractive",
|
|
62289
62289
|
"type": {
|
|
62290
62290
|
"text": "boolean | undefined"
|
|
62291
62291
|
},
|
|
@@ -68593,6 +68593,229 @@
|
|
|
68593
68593
|
}
|
|
68594
68594
|
]
|
|
68595
68595
|
},
|
|
68596
|
+
{
|
|
68597
|
+
"kind": "javascript-module",
|
|
68598
|
+
"path": "core/decorators/base.js",
|
|
68599
|
+
"declarations": [],
|
|
68600
|
+
"exports": []
|
|
68601
|
+
},
|
|
68602
|
+
{
|
|
68603
|
+
"kind": "javascript-module",
|
|
68604
|
+
"path": "core/decorators/force-type.js",
|
|
68605
|
+
"declarations": [
|
|
68606
|
+
{
|
|
68607
|
+
"kind": "function",
|
|
68608
|
+
"name": "forceType",
|
|
68609
|
+
"return": {
|
|
68610
|
+
"type": {
|
|
68611
|
+
"text": "PropertyDecorator"
|
|
68612
|
+
}
|
|
68613
|
+
},
|
|
68614
|
+
"parameters": [
|
|
68615
|
+
{
|
|
68616
|
+
"name": "convert",
|
|
68617
|
+
"optional": true,
|
|
68618
|
+
"type": {
|
|
68619
|
+
"text": "(v: unknown) => V"
|
|
68620
|
+
}
|
|
68621
|
+
}
|
|
68622
|
+
],
|
|
68623
|
+
"description": "Decorator that forces the value of a property or getter/setter\nto the defined type."
|
|
68624
|
+
}
|
|
68625
|
+
],
|
|
68626
|
+
"exports": [
|
|
68627
|
+
{
|
|
68628
|
+
"kind": "js",
|
|
68629
|
+
"name": "forceType",
|
|
68630
|
+
"declaration": {
|
|
68631
|
+
"name": "forceType",
|
|
68632
|
+
"module": "core/decorators/force-type.js"
|
|
68633
|
+
}
|
|
68634
|
+
}
|
|
68635
|
+
]
|
|
68636
|
+
},
|
|
68637
|
+
{
|
|
68638
|
+
"kind": "javascript-module",
|
|
68639
|
+
"path": "core/decorators/get-override.js",
|
|
68640
|
+
"declarations": [
|
|
68641
|
+
{
|
|
68642
|
+
"kind": "function",
|
|
68643
|
+
"name": "getOverride",
|
|
68644
|
+
"parameters": [
|
|
68645
|
+
{
|
|
68646
|
+
"name": "callback",
|
|
68647
|
+
"type": {
|
|
68648
|
+
"text": "(instance: C, innerValue: V) => V"
|
|
68649
|
+
}
|
|
68650
|
+
}
|
|
68651
|
+
],
|
|
68652
|
+
"description": "Decorator that overrides the underlying getter of the accessor."
|
|
68653
|
+
}
|
|
68654
|
+
],
|
|
68655
|
+
"exports": [
|
|
68656
|
+
{
|
|
68657
|
+
"kind": "js",
|
|
68658
|
+
"name": "getOverride",
|
|
68659
|
+
"declaration": {
|
|
68660
|
+
"name": "getOverride",
|
|
68661
|
+
"module": "core/decorators/get-override.js"
|
|
68662
|
+
}
|
|
68663
|
+
}
|
|
68664
|
+
]
|
|
68665
|
+
},
|
|
68666
|
+
{
|
|
68667
|
+
"kind": "javascript-module",
|
|
68668
|
+
"path": "core/decorators/handle-distinct-change.js",
|
|
68669
|
+
"declarations": [
|
|
68670
|
+
{
|
|
68671
|
+
"kind": "function",
|
|
68672
|
+
"name": "handleDistinctChange",
|
|
68673
|
+
"parameters": [
|
|
68674
|
+
{
|
|
68675
|
+
"name": "callback",
|
|
68676
|
+
"type": {
|
|
68677
|
+
"text": "(instance: C, newValue: V, oldValue: V | undefined) => void"
|
|
68678
|
+
}
|
|
68679
|
+
}
|
|
68680
|
+
],
|
|
68681
|
+
"description": "Decorator that calls the given callback when the value\nof the associated property is changed."
|
|
68682
|
+
}
|
|
68683
|
+
],
|
|
68684
|
+
"exports": [
|
|
68685
|
+
{
|
|
68686
|
+
"kind": "js",
|
|
68687
|
+
"name": "handleDistinctChange",
|
|
68688
|
+
"declaration": {
|
|
68689
|
+
"name": "handleDistinctChange",
|
|
68690
|
+
"module": "core/decorators/handle-distinct-change.js"
|
|
68691
|
+
}
|
|
68692
|
+
}
|
|
68693
|
+
]
|
|
68694
|
+
},
|
|
68695
|
+
{
|
|
68696
|
+
"kind": "javascript-module",
|
|
68697
|
+
"path": "core/decorators/host-attributes.js",
|
|
68698
|
+
"declarations": [
|
|
68699
|
+
{
|
|
68700
|
+
"kind": "function",
|
|
68701
|
+
"name": "hostAttributes",
|
|
68702
|
+
"parameters": [
|
|
68703
|
+
{
|
|
68704
|
+
"name": "attributes",
|
|
68705
|
+
"type": {
|
|
68706
|
+
"text": "Record<string, string | null>"
|
|
68707
|
+
},
|
|
68708
|
+
"description": "A record of attributes to apply to the element."
|
|
68709
|
+
}
|
|
68710
|
+
],
|
|
68711
|
+
"description": "Applies the given attributes to the related element.\nIf an empty string is passed as a value, the attribute will be set\nwithout value.",
|
|
68712
|
+
"deprecated": "Will be removed with next major version."
|
|
68713
|
+
}
|
|
68714
|
+
],
|
|
68715
|
+
"exports": [
|
|
68716
|
+
{
|
|
68717
|
+
"kind": "js",
|
|
68718
|
+
"name": "hostAttributes",
|
|
68719
|
+
"declaration": {
|
|
68720
|
+
"name": "hostAttributes",
|
|
68721
|
+
"module": "core/decorators/host-attributes.js"
|
|
68722
|
+
}
|
|
68723
|
+
}
|
|
68724
|
+
]
|
|
68725
|
+
},
|
|
68726
|
+
{
|
|
68727
|
+
"kind": "javascript-module",
|
|
68728
|
+
"path": "core/decorators/id-reference.js",
|
|
68729
|
+
"declarations": [
|
|
68730
|
+
{
|
|
68731
|
+
"kind": "function",
|
|
68732
|
+
"name": "idReference",
|
|
68733
|
+
"description": "Accessor decorator that resolves id references dynamically.\nIf a string is passed (e.g. from an attribute), it will be resolved to the element with that id.\nThis decorator observes the connected document fragment for changes to the id attribute\nand child elements and if any id reference is established or removed, it will\nupdate the associated property."
|
|
68734
|
+
}
|
|
68735
|
+
],
|
|
68736
|
+
"exports": [
|
|
68737
|
+
{
|
|
68738
|
+
"kind": "js",
|
|
68739
|
+
"name": "idReference",
|
|
68740
|
+
"declaration": {
|
|
68741
|
+
"name": "idReference",
|
|
68742
|
+
"module": "core/decorators/id-reference.js"
|
|
68743
|
+
}
|
|
68744
|
+
}
|
|
68745
|
+
]
|
|
68746
|
+
},
|
|
68747
|
+
{
|
|
68748
|
+
"kind": "javascript-module",
|
|
68749
|
+
"path": "core/decorators/omit-empty-converter.js",
|
|
68750
|
+
"declarations": [
|
|
68751
|
+
{
|
|
68752
|
+
"kind": "variable",
|
|
68753
|
+
"name": "omitEmptyConverter",
|
|
68754
|
+
"type": {
|
|
68755
|
+
"text": "ComplexAttributeConverter"
|
|
68756
|
+
},
|
|
68757
|
+
"default": "{ toAttribute(value, type) { return ((type === String || type === undefined) && value === '') || (type === Number && isNaN(value as number)) ? null : defaultConverter.toAttribute!(value, type); }, }",
|
|
68758
|
+
"description": "Converts empty values to null, which will not be rendered as attributes.\ne.g. for string properties, an empty value '' will not be rendered as an\nempty attribute, as would be the default with lit."
|
|
68759
|
+
}
|
|
68760
|
+
],
|
|
68761
|
+
"exports": [
|
|
68762
|
+
{
|
|
68763
|
+
"kind": "js",
|
|
68764
|
+
"name": "omitEmptyConverter",
|
|
68765
|
+
"declaration": {
|
|
68766
|
+
"name": "omitEmptyConverter",
|
|
68767
|
+
"module": "core/decorators/omit-empty-converter.js"
|
|
68768
|
+
}
|
|
68769
|
+
}
|
|
68770
|
+
]
|
|
68771
|
+
},
|
|
68772
|
+
{
|
|
68773
|
+
"kind": "javascript-module",
|
|
68774
|
+
"path": "core/decorators/plain-date.js",
|
|
68775
|
+
"declarations": [
|
|
68776
|
+
{
|
|
68777
|
+
"kind": "variable",
|
|
68778
|
+
"name": "plainDateConverter",
|
|
68779
|
+
"type": {
|
|
68780
|
+
"text": "ComplexAttributeConverter"
|
|
68781
|
+
},
|
|
68782
|
+
"default": "{ toAttribute(value, _type) { const dateAdapter = readConfig().datetime?.dateAdapter ?? defaultDateAdapter; return dateAdapter.isValid(value) ? dateAdapter.toIso8601(value) : null; }, }",
|
|
68783
|
+
"description": "Will convert date object values to ISO8601 formatted strings as attributes.\nShould be used together with the `plainDate` decorator."
|
|
68784
|
+
},
|
|
68785
|
+
{
|
|
68786
|
+
"kind": "function",
|
|
68787
|
+
"name": "plainDate",
|
|
68788
|
+
"parameters": [
|
|
68789
|
+
{
|
|
68790
|
+
"name": "config",
|
|
68791
|
+
"optional": true,
|
|
68792
|
+
"type": {
|
|
68793
|
+
"text": "SbbPlainDateConfiguration"
|
|
68794
|
+
}
|
|
68795
|
+
}
|
|
68796
|
+
],
|
|
68797
|
+
"description": "Decorator that tries to deserialize the given value to a date object\nand adapts the getter to only return a copy of the internal value,\nin order to avoid outside manipulation of date objects."
|
|
68798
|
+
}
|
|
68799
|
+
],
|
|
68800
|
+
"exports": [
|
|
68801
|
+
{
|
|
68802
|
+
"kind": "js",
|
|
68803
|
+
"name": "plainDateConverter",
|
|
68804
|
+
"declaration": {
|
|
68805
|
+
"name": "plainDateConverter",
|
|
68806
|
+
"module": "core/decorators/plain-date.js"
|
|
68807
|
+
}
|
|
68808
|
+
},
|
|
68809
|
+
{
|
|
68810
|
+
"kind": "js",
|
|
68811
|
+
"name": "plainDate",
|
|
68812
|
+
"declaration": {
|
|
68813
|
+
"name": "plainDate",
|
|
68814
|
+
"module": "core/decorators/plain-date.js"
|
|
68815
|
+
}
|
|
68816
|
+
}
|
|
68817
|
+
]
|
|
68818
|
+
},
|
|
68596
68819
|
{
|
|
68597
68820
|
"kind": "javascript-module",
|
|
68598
68821
|
"path": "core/dom/animation.js",
|
|
@@ -69031,229 +69254,6 @@
|
|
|
69031
69254
|
}
|
|
69032
69255
|
]
|
|
69033
69256
|
},
|
|
69034
|
-
{
|
|
69035
|
-
"kind": "javascript-module",
|
|
69036
|
-
"path": "core/decorators/base.js",
|
|
69037
|
-
"declarations": [],
|
|
69038
|
-
"exports": []
|
|
69039
|
-
},
|
|
69040
|
-
{
|
|
69041
|
-
"kind": "javascript-module",
|
|
69042
|
-
"path": "core/decorators/force-type.js",
|
|
69043
|
-
"declarations": [
|
|
69044
|
-
{
|
|
69045
|
-
"kind": "function",
|
|
69046
|
-
"name": "forceType",
|
|
69047
|
-
"return": {
|
|
69048
|
-
"type": {
|
|
69049
|
-
"text": "PropertyDecorator"
|
|
69050
|
-
}
|
|
69051
|
-
},
|
|
69052
|
-
"parameters": [
|
|
69053
|
-
{
|
|
69054
|
-
"name": "convert",
|
|
69055
|
-
"optional": true,
|
|
69056
|
-
"type": {
|
|
69057
|
-
"text": "(v: unknown) => V"
|
|
69058
|
-
}
|
|
69059
|
-
}
|
|
69060
|
-
],
|
|
69061
|
-
"description": "Decorator that forces the value of a property or getter/setter\nto the defined type."
|
|
69062
|
-
}
|
|
69063
|
-
],
|
|
69064
|
-
"exports": [
|
|
69065
|
-
{
|
|
69066
|
-
"kind": "js",
|
|
69067
|
-
"name": "forceType",
|
|
69068
|
-
"declaration": {
|
|
69069
|
-
"name": "forceType",
|
|
69070
|
-
"module": "core/decorators/force-type.js"
|
|
69071
|
-
}
|
|
69072
|
-
}
|
|
69073
|
-
]
|
|
69074
|
-
},
|
|
69075
|
-
{
|
|
69076
|
-
"kind": "javascript-module",
|
|
69077
|
-
"path": "core/decorators/get-override.js",
|
|
69078
|
-
"declarations": [
|
|
69079
|
-
{
|
|
69080
|
-
"kind": "function",
|
|
69081
|
-
"name": "getOverride",
|
|
69082
|
-
"parameters": [
|
|
69083
|
-
{
|
|
69084
|
-
"name": "callback",
|
|
69085
|
-
"type": {
|
|
69086
|
-
"text": "(instance: C, innerValue: V) => V"
|
|
69087
|
-
}
|
|
69088
|
-
}
|
|
69089
|
-
],
|
|
69090
|
-
"description": "Decorator that overrides the underlying getter of the accessor."
|
|
69091
|
-
}
|
|
69092
|
-
],
|
|
69093
|
-
"exports": [
|
|
69094
|
-
{
|
|
69095
|
-
"kind": "js",
|
|
69096
|
-
"name": "getOverride",
|
|
69097
|
-
"declaration": {
|
|
69098
|
-
"name": "getOverride",
|
|
69099
|
-
"module": "core/decorators/get-override.js"
|
|
69100
|
-
}
|
|
69101
|
-
}
|
|
69102
|
-
]
|
|
69103
|
-
},
|
|
69104
|
-
{
|
|
69105
|
-
"kind": "javascript-module",
|
|
69106
|
-
"path": "core/decorators/handle-distinct-change.js",
|
|
69107
|
-
"declarations": [
|
|
69108
|
-
{
|
|
69109
|
-
"kind": "function",
|
|
69110
|
-
"name": "handleDistinctChange",
|
|
69111
|
-
"parameters": [
|
|
69112
|
-
{
|
|
69113
|
-
"name": "callback",
|
|
69114
|
-
"type": {
|
|
69115
|
-
"text": "(instance: C, newValue: V, oldValue: V | undefined) => void"
|
|
69116
|
-
}
|
|
69117
|
-
}
|
|
69118
|
-
],
|
|
69119
|
-
"description": "Decorator that calls the given callback when the value\nof the associated property is changed."
|
|
69120
|
-
}
|
|
69121
|
-
],
|
|
69122
|
-
"exports": [
|
|
69123
|
-
{
|
|
69124
|
-
"kind": "js",
|
|
69125
|
-
"name": "handleDistinctChange",
|
|
69126
|
-
"declaration": {
|
|
69127
|
-
"name": "handleDistinctChange",
|
|
69128
|
-
"module": "core/decorators/handle-distinct-change.js"
|
|
69129
|
-
}
|
|
69130
|
-
}
|
|
69131
|
-
]
|
|
69132
|
-
},
|
|
69133
|
-
{
|
|
69134
|
-
"kind": "javascript-module",
|
|
69135
|
-
"path": "core/decorators/host-attributes.js",
|
|
69136
|
-
"declarations": [
|
|
69137
|
-
{
|
|
69138
|
-
"kind": "function",
|
|
69139
|
-
"name": "hostAttributes",
|
|
69140
|
-
"parameters": [
|
|
69141
|
-
{
|
|
69142
|
-
"name": "attributes",
|
|
69143
|
-
"type": {
|
|
69144
|
-
"text": "Record<string, string | null>"
|
|
69145
|
-
},
|
|
69146
|
-
"description": "A record of attributes to apply to the element."
|
|
69147
|
-
}
|
|
69148
|
-
],
|
|
69149
|
-
"description": "Applies the given attributes to the related element.\nIf an empty string is passed as a value, the attribute will be set\nwithout value.",
|
|
69150
|
-
"deprecated": "Will be removed with next major version."
|
|
69151
|
-
}
|
|
69152
|
-
],
|
|
69153
|
-
"exports": [
|
|
69154
|
-
{
|
|
69155
|
-
"kind": "js",
|
|
69156
|
-
"name": "hostAttributes",
|
|
69157
|
-
"declaration": {
|
|
69158
|
-
"name": "hostAttributes",
|
|
69159
|
-
"module": "core/decorators/host-attributes.js"
|
|
69160
|
-
}
|
|
69161
|
-
}
|
|
69162
|
-
]
|
|
69163
|
-
},
|
|
69164
|
-
{
|
|
69165
|
-
"kind": "javascript-module",
|
|
69166
|
-
"path": "core/decorators/id-reference.js",
|
|
69167
|
-
"declarations": [
|
|
69168
|
-
{
|
|
69169
|
-
"kind": "function",
|
|
69170
|
-
"name": "idReference",
|
|
69171
|
-
"description": "Accessor decorator that resolves id references dynamically.\nIf a string is passed (e.g. from an attribute), it will be resolved to the element with that id.\nThis decorator observes the connected document fragment for changes to the id attribute\nand child elements and if any id reference is established or removed, it will\nupdate the associated property."
|
|
69172
|
-
}
|
|
69173
|
-
],
|
|
69174
|
-
"exports": [
|
|
69175
|
-
{
|
|
69176
|
-
"kind": "js",
|
|
69177
|
-
"name": "idReference",
|
|
69178
|
-
"declaration": {
|
|
69179
|
-
"name": "idReference",
|
|
69180
|
-
"module": "core/decorators/id-reference.js"
|
|
69181
|
-
}
|
|
69182
|
-
}
|
|
69183
|
-
]
|
|
69184
|
-
},
|
|
69185
|
-
{
|
|
69186
|
-
"kind": "javascript-module",
|
|
69187
|
-
"path": "core/decorators/omit-empty-converter.js",
|
|
69188
|
-
"declarations": [
|
|
69189
|
-
{
|
|
69190
|
-
"kind": "variable",
|
|
69191
|
-
"name": "omitEmptyConverter",
|
|
69192
|
-
"type": {
|
|
69193
|
-
"text": "ComplexAttributeConverter"
|
|
69194
|
-
},
|
|
69195
|
-
"default": "{ toAttribute(value, type) { return ((type === String || type === undefined) && value === '') || (type === Number && isNaN(value as number)) ? null : defaultConverter.toAttribute!(value, type); }, }",
|
|
69196
|
-
"description": "Converts empty values to null, which will not be rendered as attributes.\ne.g. for string properties, an empty value '' will not be rendered as an\nempty attribute, as would be the default with lit."
|
|
69197
|
-
}
|
|
69198
|
-
],
|
|
69199
|
-
"exports": [
|
|
69200
|
-
{
|
|
69201
|
-
"kind": "js",
|
|
69202
|
-
"name": "omitEmptyConverter",
|
|
69203
|
-
"declaration": {
|
|
69204
|
-
"name": "omitEmptyConverter",
|
|
69205
|
-
"module": "core/decorators/omit-empty-converter.js"
|
|
69206
|
-
}
|
|
69207
|
-
}
|
|
69208
|
-
]
|
|
69209
|
-
},
|
|
69210
|
-
{
|
|
69211
|
-
"kind": "javascript-module",
|
|
69212
|
-
"path": "core/decorators/plain-date.js",
|
|
69213
|
-
"declarations": [
|
|
69214
|
-
{
|
|
69215
|
-
"kind": "variable",
|
|
69216
|
-
"name": "plainDateConverter",
|
|
69217
|
-
"type": {
|
|
69218
|
-
"text": "ComplexAttributeConverter"
|
|
69219
|
-
},
|
|
69220
|
-
"default": "{ toAttribute(value, _type) { const dateAdapter = readConfig().datetime?.dateAdapter ?? defaultDateAdapter; return dateAdapter.isValid(value) ? dateAdapter.toIso8601(value) : null; }, }",
|
|
69221
|
-
"description": "Will convert date object values to ISO8601 formatted strings as attributes.\nShould be used together with the `plainDate` decorator."
|
|
69222
|
-
},
|
|
69223
|
-
{
|
|
69224
|
-
"kind": "function",
|
|
69225
|
-
"name": "plainDate",
|
|
69226
|
-
"parameters": [
|
|
69227
|
-
{
|
|
69228
|
-
"name": "config",
|
|
69229
|
-
"optional": true,
|
|
69230
|
-
"type": {
|
|
69231
|
-
"text": "SbbPlainDateConfiguration"
|
|
69232
|
-
}
|
|
69233
|
-
}
|
|
69234
|
-
],
|
|
69235
|
-
"description": "Decorator that tries to deserialize the given value to a date object\nand adapts the getter to only return a copy of the internal value,\nin order to avoid outside manipulation of date objects."
|
|
69236
|
-
}
|
|
69237
|
-
],
|
|
69238
|
-
"exports": [
|
|
69239
|
-
{
|
|
69240
|
-
"kind": "js",
|
|
69241
|
-
"name": "plainDateConverter",
|
|
69242
|
-
"declaration": {
|
|
69243
|
-
"name": "plainDateConverter",
|
|
69244
|
-
"module": "core/decorators/plain-date.js"
|
|
69245
|
-
}
|
|
69246
|
-
},
|
|
69247
|
-
{
|
|
69248
|
-
"kind": "js",
|
|
69249
|
-
"name": "plainDate",
|
|
69250
|
-
"declaration": {
|
|
69251
|
-
"name": "plainDate",
|
|
69252
|
-
"module": "core/decorators/plain-date.js"
|
|
69253
|
-
}
|
|
69254
|
-
}
|
|
69255
|
-
]
|
|
69256
|
-
},
|
|
69257
69257
|
{
|
|
69258
69258
|
"kind": "javascript-module",
|
|
69259
69259
|
"path": "core/eventing/composed-path-has-attribute.js",
|
|
@@ -81204,12 +81204,12 @@
|
|
|
81204
81204
|
},
|
|
81205
81205
|
{
|
|
81206
81206
|
"kind": "javascript-module",
|
|
81207
|
-
"path": "datepicker/datepicker-
|
|
81207
|
+
"path": "datepicker/datepicker-next-day/datepicker-next-day.component.js",
|
|
81208
81208
|
"declarations": [
|
|
81209
81209
|
{
|
|
81210
81210
|
"kind": "class",
|
|
81211
|
-
"description": "Combined with a `sbb-datepicker`, it can be used to move the date
|
|
81212
|
-
"name": "
|
|
81211
|
+
"description": "Combined with a `sbb-datepicker`, it can be used to move the date ahead.",
|
|
81212
|
+
"name": "SbbDatepickerNextDayElement",
|
|
81213
81213
|
"members": [
|
|
81214
81214
|
{
|
|
81215
81215
|
"kind": "field",
|
|
@@ -81224,7 +81224,7 @@
|
|
|
81224
81224
|
"name": "SbbElement",
|
|
81225
81225
|
"module": "core/base-elements/element.js"
|
|
81226
81226
|
},
|
|
81227
|
-
"default": "'sbb-datepicker-
|
|
81227
|
+
"default": "'sbb-datepicker-next-day'"
|
|
81228
81228
|
},
|
|
81229
81229
|
{
|
|
81230
81230
|
"kind": "field",
|
|
@@ -81237,7 +81237,7 @@
|
|
|
81237
81237
|
"name": "SbbDatepickerButtonBase",
|
|
81238
81238
|
"module": "datepicker/common/datepicker-button.js"
|
|
81239
81239
|
},
|
|
81240
|
-
"default": "'chevron-small-
|
|
81240
|
+
"default": "'chevron-small-right-small'"
|
|
81241
81241
|
},
|
|
81242
81242
|
{
|
|
81243
81243
|
"kind": "field",
|
|
@@ -81246,7 +81246,7 @@
|
|
|
81246
81246
|
"text": "Record<string, string>"
|
|
81247
81247
|
},
|
|
81248
81248
|
"privacy": "protected",
|
|
81249
|
-
"default": "
|
|
81249
|
+
"default": "i18nNextDay",
|
|
81250
81250
|
"inheritedFrom": {
|
|
81251
81251
|
"name": "SbbDatepickerButton",
|
|
81252
81252
|
"module": "datepicker/common/datepicker-button.js"
|
|
@@ -81259,7 +81259,7 @@
|
|
|
81259
81259
|
"text": "(_currentDate: string) => Record<string, string>"
|
|
81260
81260
|
},
|
|
81261
81261
|
"privacy": "protected",
|
|
81262
|
-
"default": "
|
|
81262
|
+
"default": "i18nSelectNextDay",
|
|
81263
81263
|
"inheritedFrom": {
|
|
81264
81264
|
"name": "SbbDatepickerButton",
|
|
81265
81265
|
"module": "datepicker/common/datepicker-button.js"
|
|
@@ -81289,7 +81289,7 @@
|
|
|
81289
81289
|
},
|
|
81290
81290
|
{
|
|
81291
81291
|
"kind": "method",
|
|
81292
|
-
"name": "
|
|
81292
|
+
"name": "_isAfterMaxDate",
|
|
81293
81293
|
"privacy": "private",
|
|
81294
81294
|
"return": {
|
|
81295
81295
|
"type": {
|
|
@@ -82149,7 +82149,7 @@
|
|
|
82149
82149
|
"name": "SbbDatepickerButton",
|
|
82150
82150
|
"module": "datepicker/common/datepicker-button.js"
|
|
82151
82151
|
},
|
|
82152
|
-
"tagName": "sbb-datepicker-
|
|
82152
|
+
"tagName": "sbb-datepicker-next-day",
|
|
82153
82153
|
"customElement": true,
|
|
82154
82154
|
"classGenerics": "T = Date",
|
|
82155
82155
|
"attributes": [
|
|
@@ -82259,22 +82259,22 @@
|
|
|
82259
82259
|
"exports": [
|
|
82260
82260
|
{
|
|
82261
82261
|
"kind": "js",
|
|
82262
|
-
"name": "
|
|
82262
|
+
"name": "SbbDatepickerNextDayElement",
|
|
82263
82263
|
"declaration": {
|
|
82264
|
-
"name": "
|
|
82265
|
-
"module": "datepicker/datepicker-
|
|
82264
|
+
"name": "SbbDatepickerNextDayElement",
|
|
82265
|
+
"module": "datepicker/datepicker-next-day/datepicker-next-day.component.js"
|
|
82266
82266
|
}
|
|
82267
82267
|
}
|
|
82268
82268
|
]
|
|
82269
82269
|
},
|
|
82270
82270
|
{
|
|
82271
82271
|
"kind": "javascript-module",
|
|
82272
|
-
"path": "datepicker/datepicker-
|
|
82272
|
+
"path": "datepicker/datepicker-previous-day/datepicker-previous-day.component.js",
|
|
82273
82273
|
"declarations": [
|
|
82274
82274
|
{
|
|
82275
82275
|
"kind": "class",
|
|
82276
|
-
"description": "Combined with a `sbb-datepicker`, it can be used to move the date
|
|
82277
|
-
"name": "
|
|
82276
|
+
"description": "Combined with a `sbb-datepicker`, it can be used to move the date back.",
|
|
82277
|
+
"name": "SbbDatepickerPreviousDayElement",
|
|
82278
82278
|
"members": [
|
|
82279
82279
|
{
|
|
82280
82280
|
"kind": "field",
|
|
@@ -82289,7 +82289,7 @@
|
|
|
82289
82289
|
"name": "SbbElement",
|
|
82290
82290
|
"module": "core/base-elements/element.js"
|
|
82291
82291
|
},
|
|
82292
|
-
"default": "'sbb-datepicker-
|
|
82292
|
+
"default": "'sbb-datepicker-previous-day'"
|
|
82293
82293
|
},
|
|
82294
82294
|
{
|
|
82295
82295
|
"kind": "field",
|
|
@@ -82302,7 +82302,7 @@
|
|
|
82302
82302
|
"name": "SbbDatepickerButtonBase",
|
|
82303
82303
|
"module": "datepicker/common/datepicker-button.js"
|
|
82304
82304
|
},
|
|
82305
|
-
"default": "'chevron-small-
|
|
82305
|
+
"default": "'chevron-small-left-small'"
|
|
82306
82306
|
},
|
|
82307
82307
|
{
|
|
82308
82308
|
"kind": "field",
|
|
@@ -82311,7 +82311,7 @@
|
|
|
82311
82311
|
"text": "Record<string, string>"
|
|
82312
82312
|
},
|
|
82313
82313
|
"privacy": "protected",
|
|
82314
|
-
"default": "
|
|
82314
|
+
"default": "i18nPreviousDay",
|
|
82315
82315
|
"inheritedFrom": {
|
|
82316
82316
|
"name": "SbbDatepickerButton",
|
|
82317
82317
|
"module": "datepicker/common/datepicker-button.js"
|
|
@@ -82324,7 +82324,7 @@
|
|
|
82324
82324
|
"text": "(_currentDate: string) => Record<string, string>"
|
|
82325
82325
|
},
|
|
82326
82326
|
"privacy": "protected",
|
|
82327
|
-
"default": "
|
|
82327
|
+
"default": "i18nSelectPreviousDay",
|
|
82328
82328
|
"inheritedFrom": {
|
|
82329
82329
|
"name": "SbbDatepickerButton",
|
|
82330
82330
|
"module": "datepicker/common/datepicker-button.js"
|
|
@@ -82354,7 +82354,7 @@
|
|
|
82354
82354
|
},
|
|
82355
82355
|
{
|
|
82356
82356
|
"kind": "method",
|
|
82357
|
-
"name": "
|
|
82357
|
+
"name": "_isBeforeMinDate",
|
|
82358
82358
|
"privacy": "private",
|
|
82359
82359
|
"return": {
|
|
82360
82360
|
"type": {
|
|
@@ -83214,7 +83214,7 @@
|
|
|
83214
83214
|
"name": "SbbDatepickerButton",
|
|
83215
83215
|
"module": "datepicker/common/datepicker-button.js"
|
|
83216
83216
|
},
|
|
83217
|
-
"tagName": "sbb-datepicker-
|
|
83217
|
+
"tagName": "sbb-datepicker-previous-day",
|
|
83218
83218
|
"customElement": true,
|
|
83219
83219
|
"classGenerics": "T = Date",
|
|
83220
83220
|
"attributes": [
|
|
@@ -83324,10 +83324,10 @@
|
|
|
83324
83324
|
"exports": [
|
|
83325
83325
|
{
|
|
83326
83326
|
"kind": "js",
|
|
83327
|
-
"name": "
|
|
83327
|
+
"name": "SbbDatepickerPreviousDayElement",
|
|
83328
83328
|
"declaration": {
|
|
83329
|
-
"name": "
|
|
83330
|
-
"module": "datepicker/datepicker-
|
|
83329
|
+
"name": "SbbDatepickerPreviousDayElement",
|
|
83330
|
+
"module": "datepicker/datepicker-previous-day/datepicker-previous-day.component.js"
|
|
83331
83331
|
}
|
|
83332
83332
|
}
|
|
83333
83333
|
]
|
|
@@ -100183,17 +100183,665 @@
|
|
|
100183
100183
|
],
|
|
100184
100184
|
"mixins": [
|
|
100185
100185
|
{
|
|
100186
|
-
"name": "SbbIconNameMixin",
|
|
100187
|
-
"module": "icon.js"
|
|
100186
|
+
"name": "SbbIconNameMixin",
|
|
100187
|
+
"module": "icon.js"
|
|
100188
|
+
}
|
|
100189
|
+
],
|
|
100190
|
+
"superclass": {
|
|
100191
|
+
"name": "SbbLinkBaseElement",
|
|
100192
|
+
"module": "core/base-elements.js"
|
|
100193
|
+
},
|
|
100194
|
+
"tagName": "sbb-icon-sidebar-link",
|
|
100195
|
+
"customElement": true,
|
|
100196
|
+
"attributes": [
|
|
100197
|
+
{
|
|
100198
|
+
"name": "icon-name",
|
|
100199
|
+
"type": {
|
|
100200
|
+
"text": "string"
|
|
100201
|
+
},
|
|
100202
|
+
"default": "''",
|
|
100203
|
+
"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.",
|
|
100204
|
+
"fieldName": "iconName",
|
|
100205
|
+
"inheritedFrom": {
|
|
100206
|
+
"name": "SbbIconNameMixin",
|
|
100207
|
+
"module": "icon/icon-name-mixin.js"
|
|
100208
|
+
}
|
|
100209
|
+
},
|
|
100210
|
+
{
|
|
100211
|
+
"name": "href",
|
|
100212
|
+
"type": {
|
|
100213
|
+
"text": "string"
|
|
100214
|
+
},
|
|
100215
|
+
"default": "''",
|
|
100216
|
+
"description": "The href value you want to link to.",
|
|
100217
|
+
"fieldName": "href",
|
|
100218
|
+
"inheritedFrom": {
|
|
100219
|
+
"name": "SbbLinkBaseElement",
|
|
100220
|
+
"module": "core/base-elements/link-base-element.js"
|
|
100221
|
+
}
|
|
100222
|
+
},
|
|
100223
|
+
{
|
|
100224
|
+
"name": "target",
|
|
100225
|
+
"type": {
|
|
100226
|
+
"text": "LinkTargetType | string"
|
|
100227
|
+
},
|
|
100228
|
+
"default": "''",
|
|
100229
|
+
"description": "Where to display the linked URL.",
|
|
100230
|
+
"fieldName": "target",
|
|
100231
|
+
"inheritedFrom": {
|
|
100232
|
+
"name": "SbbLinkBaseElement",
|
|
100233
|
+
"module": "core/base-elements/link-base-element.js"
|
|
100234
|
+
}
|
|
100235
|
+
},
|
|
100236
|
+
{
|
|
100237
|
+
"name": "rel",
|
|
100238
|
+
"type": {
|
|
100239
|
+
"text": "string"
|
|
100240
|
+
},
|
|
100241
|
+
"default": "''",
|
|
100242
|
+
"description": "The relationship of the linked URL as space-separated link types.",
|
|
100243
|
+
"fieldName": "rel",
|
|
100244
|
+
"inheritedFrom": {
|
|
100245
|
+
"name": "SbbLinkBaseElement",
|
|
100246
|
+
"module": "core/base-elements/link-base-element.js"
|
|
100247
|
+
}
|
|
100248
|
+
},
|
|
100249
|
+
{
|
|
100250
|
+
"name": "download",
|
|
100251
|
+
"type": {
|
|
100252
|
+
"text": "boolean"
|
|
100253
|
+
},
|
|
100254
|
+
"default": "false",
|
|
100255
|
+
"description": "Whether the browser will show the download dialog on click.",
|
|
100256
|
+
"fieldName": "download",
|
|
100257
|
+
"inheritedFrom": {
|
|
100258
|
+
"name": "SbbLinkBaseElement",
|
|
100259
|
+
"module": "core/base-elements/link-base-element.js"
|
|
100260
|
+
}
|
|
100261
|
+
},
|
|
100262
|
+
{
|
|
100263
|
+
"name": "accessibility-label",
|
|
100264
|
+
"type": {
|
|
100265
|
+
"text": "string"
|
|
100266
|
+
},
|
|
100267
|
+
"default": "''",
|
|
100268
|
+
"description": "This will be forwarded as aria-label to the inner anchor element.",
|
|
100269
|
+
"fieldName": "accessibilityLabel",
|
|
100270
|
+
"inheritedFrom": {
|
|
100271
|
+
"name": "SbbLinkBaseElement",
|
|
100272
|
+
"module": "core/base-elements/link-base-element.js"
|
|
100273
|
+
}
|
|
100274
|
+
},
|
|
100275
|
+
{
|
|
100276
|
+
"name": "accessibility-current",
|
|
100277
|
+
"type": {
|
|
100278
|
+
"text": "string"
|
|
100279
|
+
},
|
|
100280
|
+
"default": "''",
|
|
100281
|
+
"description": "This will be forwarded as aria-current to the inner anchor element.",
|
|
100282
|
+
"fieldName": "accessibilityCurrent",
|
|
100283
|
+
"inheritedFrom": {
|
|
100284
|
+
"name": "SbbLinkBaseElement",
|
|
100285
|
+
"module": "core/base-elements/link-base-element.js"
|
|
100286
|
+
}
|
|
100287
|
+
}
|
|
100288
|
+
]
|
|
100289
|
+
}
|
|
100290
|
+
],
|
|
100291
|
+
"exports": [
|
|
100292
|
+
{
|
|
100293
|
+
"kind": "js",
|
|
100294
|
+
"name": "SbbIconSidebarLinkElement",
|
|
100295
|
+
"declaration": {
|
|
100296
|
+
"name": "SbbIconSidebarLinkElement",
|
|
100297
|
+
"module": "icon-sidebar/icon-sidebar-link/icon-sidebar-link.component.js"
|
|
100298
|
+
}
|
|
100299
|
+
}
|
|
100300
|
+
]
|
|
100301
|
+
},
|
|
100302
|
+
{
|
|
100303
|
+
"kind": "javascript-module",
|
|
100304
|
+
"path": "link/block-link/block-link.component.js",
|
|
100305
|
+
"declarations": [
|
|
100306
|
+
{
|
|
100307
|
+
"kind": "class",
|
|
100308
|
+
"description": "It displays a link enhanced with the SBB Design.",
|
|
100309
|
+
"name": "SbbBlockLinkElement",
|
|
100310
|
+
"slots": [
|
|
100311
|
+
{
|
|
100312
|
+
"description": "Use the unnamed slot to add content to the `sbb-block-link`.",
|
|
100313
|
+
"name": ""
|
|
100314
|
+
},
|
|
100315
|
+
{
|
|
100316
|
+
"description": "Slot used to display the icon, if one is set.",
|
|
100317
|
+
"name": "icon"
|
|
100318
|
+
}
|
|
100319
|
+
],
|
|
100320
|
+
"members": [
|
|
100321
|
+
{
|
|
100322
|
+
"kind": "field",
|
|
100323
|
+
"name": "elementName",
|
|
100324
|
+
"type": {
|
|
100325
|
+
"text": "string"
|
|
100326
|
+
},
|
|
100327
|
+
"privacy": "public",
|
|
100328
|
+
"static": true,
|
|
100329
|
+
"readonly": true,
|
|
100330
|
+
"inheritedFrom": {
|
|
100331
|
+
"name": "SbbElement",
|
|
100332
|
+
"module": "core/base-elements/element.js"
|
|
100333
|
+
},
|
|
100334
|
+
"default": "'sbb-block-link'"
|
|
100335
|
+
},
|
|
100336
|
+
{
|
|
100337
|
+
"kind": "field",
|
|
100338
|
+
"name": "styles",
|
|
100339
|
+
"type": {
|
|
100340
|
+
"text": "CSSResultGroup"
|
|
100341
|
+
},
|
|
100342
|
+
"privacy": "public",
|
|
100343
|
+
"static": true,
|
|
100344
|
+
"default": "[super.styles, unsafeCSS(blockStyle)]",
|
|
100345
|
+
"inheritedFrom": {
|
|
100346
|
+
"name": "SbbLinkCommonElementMixin",
|
|
100347
|
+
"module": "link/common/link-common.js"
|
|
100348
|
+
}
|
|
100349
|
+
},
|
|
100350
|
+
{
|
|
100351
|
+
"kind": "field",
|
|
100352
|
+
"name": "iconPlacement",
|
|
100353
|
+
"type": {
|
|
100354
|
+
"text": "SbbIconPlacement"
|
|
100355
|
+
},
|
|
100356
|
+
"privacy": "public",
|
|
100357
|
+
"default": "'start'",
|
|
100358
|
+
"description": "Moves the icon to the end of the component if set to true.",
|
|
100359
|
+
"attribute": "icon-placement",
|
|
100360
|
+
"reflects": true,
|
|
100361
|
+
"inheritedFrom": {
|
|
100362
|
+
"name": "SbbBlockLinkCommonElementMixin",
|
|
100363
|
+
"module": "link/common/block-link-common.js"
|
|
100364
|
+
}
|
|
100365
|
+
},
|
|
100366
|
+
{
|
|
100367
|
+
"kind": "method",
|
|
100368
|
+
"name": "renderTemplate",
|
|
100369
|
+
"privacy": "protected",
|
|
100370
|
+
"return": {
|
|
100371
|
+
"type": {
|
|
100372
|
+
"text": "TemplateResult"
|
|
100373
|
+
}
|
|
100374
|
+
},
|
|
100375
|
+
"description": "Override this method to render the component template.",
|
|
100376
|
+
"inheritedFrom": {
|
|
100377
|
+
"name": "SbbActionBaseElement",
|
|
100378
|
+
"module": "core/base-elements/action-base-element.js"
|
|
100379
|
+
}
|
|
100380
|
+
},
|
|
100381
|
+
{
|
|
100382
|
+
"kind": "field",
|
|
100383
|
+
"name": "size",
|
|
100384
|
+
"type": {
|
|
100385
|
+
"text": "SbbLinkSize"
|
|
100386
|
+
},
|
|
100387
|
+
"privacy": "public",
|
|
100388
|
+
"description": "Text size, the link should get in the non-button variation.\nWith inline variant, the text size adapts to where it is used.",
|
|
100389
|
+
"default": "'s' / 'xs' (lean)",
|
|
100390
|
+
"attribute": "size",
|
|
100391
|
+
"reflects": true,
|
|
100392
|
+
"inheritedFrom": {
|
|
100393
|
+
"name": "SbbLinkCommonElementMixin",
|
|
100394
|
+
"module": "link/common/link-common.js"
|
|
100395
|
+
}
|
|
100396
|
+
},
|
|
100397
|
+
{
|
|
100398
|
+
"kind": "field",
|
|
100399
|
+
"name": "iconName",
|
|
100400
|
+
"type": {
|
|
100401
|
+
"text": "string"
|
|
100402
|
+
},
|
|
100403
|
+
"privacy": "public",
|
|
100404
|
+
"default": "''",
|
|
100405
|
+
"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.",
|
|
100406
|
+
"attribute": "icon-name",
|
|
100407
|
+
"inheritedFrom": {
|
|
100408
|
+
"name": "SbbIconNameMixin",
|
|
100409
|
+
"module": "icon/icon-name-mixin.js"
|
|
100410
|
+
}
|
|
100411
|
+
},
|
|
100412
|
+
{
|
|
100413
|
+
"kind": "method",
|
|
100414
|
+
"name": "renderIconSlot",
|
|
100415
|
+
"privacy": "protected",
|
|
100416
|
+
"return": {
|
|
100417
|
+
"type": {
|
|
100418
|
+
"text": "TemplateResult"
|
|
100419
|
+
}
|
|
100420
|
+
},
|
|
100421
|
+
"parameters": [
|
|
100422
|
+
{
|
|
100423
|
+
"name": "classname",
|
|
100424
|
+
"optional": true,
|
|
100425
|
+
"type": {
|
|
100426
|
+
"text": "string"
|
|
100427
|
+
}
|
|
100428
|
+
}
|
|
100429
|
+
],
|
|
100430
|
+
"inheritedFrom": {
|
|
100431
|
+
"name": "SbbIconNameMixin",
|
|
100432
|
+
"module": "icon/icon-name-mixin.js"
|
|
100433
|
+
}
|
|
100434
|
+
},
|
|
100435
|
+
{
|
|
100436
|
+
"kind": "method",
|
|
100437
|
+
"name": "renderIconName",
|
|
100438
|
+
"privacy": "protected",
|
|
100439
|
+
"return": {
|
|
100440
|
+
"type": {
|
|
100441
|
+
"text": "string"
|
|
100442
|
+
}
|
|
100443
|
+
},
|
|
100444
|
+
"inheritedFrom": {
|
|
100445
|
+
"name": "SbbIconNameMixin",
|
|
100446
|
+
"module": "icon/icon-name-mixin.js"
|
|
100447
|
+
}
|
|
100448
|
+
},
|
|
100449
|
+
{
|
|
100450
|
+
"kind": "method",
|
|
100451
|
+
"name": "_renderIconName",
|
|
100452
|
+
"privacy": "private",
|
|
100453
|
+
"return": {
|
|
100454
|
+
"type": {
|
|
100455
|
+
"text": "string"
|
|
100456
|
+
}
|
|
100457
|
+
},
|
|
100458
|
+
"inheritedFrom": {
|
|
100459
|
+
"name": "SbbIconNameMixin",
|
|
100460
|
+
"module": "icon/icon-name-mixin.js"
|
|
100461
|
+
}
|
|
100462
|
+
},
|
|
100463
|
+
{
|
|
100464
|
+
"kind": "field",
|
|
100465
|
+
"name": "disabled",
|
|
100466
|
+
"privacy": "public",
|
|
100467
|
+
"description": "Whether the component is disabled.",
|
|
100468
|
+
"default": "false",
|
|
100469
|
+
"type": {
|
|
100470
|
+
"text": "boolean"
|
|
100471
|
+
},
|
|
100472
|
+
"attribute": "disabled",
|
|
100473
|
+
"reflects": true,
|
|
100474
|
+
"inheritedFrom": {
|
|
100475
|
+
"name": "SbbDisabledMixin",
|
|
100476
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
100477
|
+
}
|
|
100478
|
+
},
|
|
100479
|
+
{
|
|
100480
|
+
"kind": "field",
|
|
100481
|
+
"name": "#disabled",
|
|
100482
|
+
"privacy": "private",
|
|
100483
|
+
"type": {
|
|
100484
|
+
"text": "boolean"
|
|
100485
|
+
},
|
|
100486
|
+
"default": "false",
|
|
100487
|
+
"inheritedFrom": {
|
|
100488
|
+
"name": "SbbDisabledMixin",
|
|
100489
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
100490
|
+
}
|
|
100491
|
+
},
|
|
100492
|
+
{
|
|
100493
|
+
"kind": "method",
|
|
100494
|
+
"name": "isDisabledExternally",
|
|
100495
|
+
"privacy": "protected",
|
|
100496
|
+
"return": {
|
|
100497
|
+
"type": {
|
|
100498
|
+
"text": "boolean"
|
|
100499
|
+
}
|
|
100500
|
+
},
|
|
100501
|
+
"description": "Will be used as 'or' check to the current disabled state.\nCan e.g. be used to read disabled state of a group.",
|
|
100502
|
+
"inheritedFrom": {
|
|
100503
|
+
"name": "SbbDisabledMixin",
|
|
100504
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
100505
|
+
}
|
|
100506
|
+
},
|
|
100507
|
+
{
|
|
100508
|
+
"kind": "field",
|
|
100509
|
+
"name": "href",
|
|
100510
|
+
"type": {
|
|
100511
|
+
"text": "string"
|
|
100512
|
+
},
|
|
100513
|
+
"privacy": "public",
|
|
100514
|
+
"default": "''",
|
|
100515
|
+
"description": "The href value you want to link to.",
|
|
100516
|
+
"attribute": "href",
|
|
100517
|
+
"reflects": true,
|
|
100518
|
+
"inheritedFrom": {
|
|
100519
|
+
"name": "SbbLinkBaseElement",
|
|
100520
|
+
"module": "core/base-elements/link-base-element.js"
|
|
100521
|
+
}
|
|
100522
|
+
},
|
|
100523
|
+
{
|
|
100524
|
+
"kind": "field",
|
|
100525
|
+
"name": "target",
|
|
100526
|
+
"type": {
|
|
100527
|
+
"text": "LinkTargetType | string"
|
|
100528
|
+
},
|
|
100529
|
+
"privacy": "public",
|
|
100530
|
+
"default": "''",
|
|
100531
|
+
"description": "Where to display the linked URL.",
|
|
100532
|
+
"attribute": "target",
|
|
100533
|
+
"reflects": true,
|
|
100534
|
+
"inheritedFrom": {
|
|
100535
|
+
"name": "SbbLinkBaseElement",
|
|
100536
|
+
"module": "core/base-elements/link-base-element.js"
|
|
100537
|
+
}
|
|
100538
|
+
},
|
|
100539
|
+
{
|
|
100540
|
+
"kind": "field",
|
|
100541
|
+
"name": "rel",
|
|
100542
|
+
"type": {
|
|
100543
|
+
"text": "string"
|
|
100544
|
+
},
|
|
100545
|
+
"privacy": "public",
|
|
100546
|
+
"default": "''",
|
|
100547
|
+
"description": "The relationship of the linked URL as space-separated link types.",
|
|
100548
|
+
"attribute": "rel",
|
|
100549
|
+
"reflects": true,
|
|
100550
|
+
"inheritedFrom": {
|
|
100551
|
+
"name": "SbbLinkBaseElement",
|
|
100552
|
+
"module": "core/base-elements/link-base-element.js"
|
|
100553
|
+
}
|
|
100554
|
+
},
|
|
100555
|
+
{
|
|
100556
|
+
"kind": "field",
|
|
100557
|
+
"name": "download",
|
|
100558
|
+
"type": {
|
|
100559
|
+
"text": "boolean"
|
|
100560
|
+
},
|
|
100561
|
+
"privacy": "public",
|
|
100562
|
+
"default": "false",
|
|
100563
|
+
"description": "Whether the browser will show the download dialog on click.",
|
|
100564
|
+
"attribute": "download",
|
|
100565
|
+
"reflects": true,
|
|
100566
|
+
"inheritedFrom": {
|
|
100567
|
+
"name": "SbbLinkBaseElement",
|
|
100568
|
+
"module": "core/base-elements/link-base-element.js"
|
|
100569
|
+
}
|
|
100570
|
+
},
|
|
100571
|
+
{
|
|
100572
|
+
"kind": "field",
|
|
100573
|
+
"name": "accessibilityLabel",
|
|
100574
|
+
"type": {
|
|
100575
|
+
"text": "string"
|
|
100576
|
+
},
|
|
100577
|
+
"privacy": "public",
|
|
100578
|
+
"default": "''",
|
|
100579
|
+
"description": "This will be forwarded as aria-label to the inner anchor element.",
|
|
100580
|
+
"attribute": "accessibility-label",
|
|
100581
|
+
"inheritedFrom": {
|
|
100582
|
+
"name": "SbbLinkBaseElement",
|
|
100583
|
+
"module": "core/base-elements/link-base-element.js"
|
|
100584
|
+
}
|
|
100585
|
+
},
|
|
100586
|
+
{
|
|
100587
|
+
"kind": "field",
|
|
100588
|
+
"name": "accessibilityCurrent",
|
|
100589
|
+
"type": {
|
|
100590
|
+
"text": "string"
|
|
100591
|
+
},
|
|
100592
|
+
"privacy": "public",
|
|
100593
|
+
"default": "''",
|
|
100594
|
+
"description": "This will be forwarded as aria-current to the inner anchor element.",
|
|
100595
|
+
"attribute": "accessibility-current",
|
|
100596
|
+
"inheritedFrom": {
|
|
100597
|
+
"name": "SbbLinkBaseElement",
|
|
100598
|
+
"module": "core/base-elements/link-base-element.js"
|
|
100599
|
+
}
|
|
100600
|
+
},
|
|
100601
|
+
{
|
|
100602
|
+
"kind": "field",
|
|
100603
|
+
"name": "language",
|
|
100604
|
+
"privacy": "protected",
|
|
100605
|
+
"default": "new SbbLanguageController(this)",
|
|
100606
|
+
"inheritedFrom": {
|
|
100607
|
+
"name": "SbbLinkBaseElement",
|
|
100608
|
+
"module": "core/base-elements/link-base-element.js"
|
|
100609
|
+
}
|
|
100610
|
+
},
|
|
100611
|
+
{
|
|
100612
|
+
"kind": "field",
|
|
100613
|
+
"name": "anchorRole",
|
|
100614
|
+
"type": {
|
|
100615
|
+
"text": "string | null"
|
|
100616
|
+
},
|
|
100617
|
+
"privacy": "protected",
|
|
100618
|
+
"readonly": true,
|
|
100619
|
+
"default": "null",
|
|
100620
|
+
"inheritedFrom": {
|
|
100621
|
+
"name": "SbbLinkBaseElement",
|
|
100622
|
+
"module": "core/base-elements/link-base-element.js"
|
|
100623
|
+
}
|
|
100624
|
+
},
|
|
100625
|
+
{
|
|
100626
|
+
"kind": "field",
|
|
100627
|
+
"name": "_evaluateRelAttribute",
|
|
100628
|
+
"privacy": "private",
|
|
100629
|
+
"inheritedFrom": {
|
|
100630
|
+
"name": "SbbLinkBaseElement",
|
|
100631
|
+
"module": "core/base-elements/link-base-element.js"
|
|
100632
|
+
}
|
|
100633
|
+
},
|
|
100634
|
+
{
|
|
100635
|
+
"kind": "method",
|
|
100636
|
+
"name": "renderLink",
|
|
100637
|
+
"privacy": "protected",
|
|
100638
|
+
"return": {
|
|
100639
|
+
"type": {
|
|
100640
|
+
"text": "TemplateResult"
|
|
100641
|
+
}
|
|
100642
|
+
},
|
|
100643
|
+
"parameters": [
|
|
100644
|
+
{
|
|
100645
|
+
"name": "renderContent",
|
|
100646
|
+
"type": {
|
|
100647
|
+
"text": "TemplateResult"
|
|
100648
|
+
}
|
|
100649
|
+
}
|
|
100650
|
+
],
|
|
100651
|
+
"inheritedFrom": {
|
|
100652
|
+
"name": "SbbLinkBaseElement",
|
|
100653
|
+
"module": "core/base-elements/link-base-element.js"
|
|
100654
|
+
}
|
|
100655
|
+
},
|
|
100656
|
+
{
|
|
100657
|
+
"kind": "field",
|
|
100658
|
+
"name": "maybeDisabled",
|
|
100659
|
+
"type": {
|
|
100660
|
+
"text": "boolean | undefined"
|
|
100661
|
+
},
|
|
100662
|
+
"privacy": "protected",
|
|
100663
|
+
"readonly": true,
|
|
100664
|
+
"inheritedFrom": {
|
|
100665
|
+
"name": "SbbActionBaseElement",
|
|
100666
|
+
"module": "core/base-elements/action-base-element.js"
|
|
100667
|
+
}
|
|
100668
|
+
},
|
|
100669
|
+
{
|
|
100670
|
+
"kind": "field",
|
|
100671
|
+
"name": "maybeDisabledInteractive",
|
|
100672
|
+
"type": {
|
|
100673
|
+
"text": "boolean | undefined"
|
|
100674
|
+
},
|
|
100675
|
+
"privacy": "protected",
|
|
100676
|
+
"readonly": true,
|
|
100677
|
+
"inheritedFrom": {
|
|
100678
|
+
"name": "SbbActionBaseElement",
|
|
100679
|
+
"module": "core/base-elements/action-base-element.js"
|
|
100680
|
+
}
|
|
100681
|
+
},
|
|
100682
|
+
{
|
|
100683
|
+
"kind": "method",
|
|
100684
|
+
"name": "setupBaseEventHandlers",
|
|
100685
|
+
"privacy": "protected",
|
|
100686
|
+
"return": {
|
|
100687
|
+
"type": {
|
|
100688
|
+
"text": "void"
|
|
100689
|
+
}
|
|
100690
|
+
},
|
|
100691
|
+
"inheritedFrom": {
|
|
100692
|
+
"name": "SbbActionBaseElement",
|
|
100693
|
+
"module": "core/base-elements/action-base-element.js"
|
|
100694
|
+
}
|
|
100695
|
+
},
|
|
100696
|
+
{
|
|
100697
|
+
"kind": "field",
|
|
100698
|
+
"name": "_hydrationRequired",
|
|
100699
|
+
"type": {
|
|
100700
|
+
"text": "boolean"
|
|
100701
|
+
},
|
|
100702
|
+
"privacy": "private",
|
|
100703
|
+
"default": "!!this.shadowRoot",
|
|
100704
|
+
"inheritedFrom": {
|
|
100705
|
+
"name": "SbbElement",
|
|
100706
|
+
"module": "core/base-elements/element.js"
|
|
100707
|
+
}
|
|
100708
|
+
},
|
|
100709
|
+
{
|
|
100710
|
+
"kind": "field",
|
|
100711
|
+
"name": "_hydrationComplete",
|
|
100712
|
+
"privacy": "private",
|
|
100713
|
+
"default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
|
|
100714
|
+
"inheritedFrom": {
|
|
100715
|
+
"name": "SbbElement",
|
|
100716
|
+
"module": "core/base-elements/element.js"
|
|
100717
|
+
}
|
|
100718
|
+
},
|
|
100719
|
+
{
|
|
100720
|
+
"kind": "field",
|
|
100721
|
+
"name": "_resolveHydration",
|
|
100722
|
+
"type": {
|
|
100723
|
+
"text": "(hydrationRequired: boolean) => void"
|
|
100724
|
+
},
|
|
100725
|
+
"privacy": "private",
|
|
100726
|
+
"inheritedFrom": {
|
|
100727
|
+
"name": "SbbElement",
|
|
100728
|
+
"module": "core/base-elements/element.js"
|
|
100729
|
+
}
|
|
100730
|
+
},
|
|
100731
|
+
{
|
|
100732
|
+
"kind": "field",
|
|
100733
|
+
"name": "hydrationRequired",
|
|
100734
|
+
"type": {
|
|
100735
|
+
"text": "boolean"
|
|
100736
|
+
},
|
|
100737
|
+
"privacy": "protected",
|
|
100738
|
+
"description": "Returns whether hydration is required and not completed.",
|
|
100739
|
+
"readonly": true,
|
|
100740
|
+
"inheritedFrom": {
|
|
100741
|
+
"name": "SbbElement",
|
|
100742
|
+
"module": "core/base-elements/element.js"
|
|
100743
|
+
},
|
|
100744
|
+
"default": "!!this.shadowRoot"
|
|
100745
|
+
},
|
|
100746
|
+
{
|
|
100747
|
+
"kind": "method",
|
|
100748
|
+
"name": "toggleState",
|
|
100749
|
+
"privacy": "protected",
|
|
100750
|
+
"return": {
|
|
100751
|
+
"type": {
|
|
100752
|
+
"text": "void"
|
|
100753
|
+
}
|
|
100754
|
+
},
|
|
100755
|
+
"parameters": [
|
|
100756
|
+
{
|
|
100757
|
+
"name": "value",
|
|
100758
|
+
"type": {
|
|
100759
|
+
"text": "string"
|
|
100760
|
+
}
|
|
100761
|
+
},
|
|
100762
|
+
{
|
|
100763
|
+
"name": "force",
|
|
100764
|
+
"optional": true,
|
|
100765
|
+
"type": {
|
|
100766
|
+
"text": "boolean"
|
|
100767
|
+
}
|
|
100768
|
+
}
|
|
100769
|
+
],
|
|
100770
|
+
"inheritedFrom": {
|
|
100771
|
+
"name": "SbbElement",
|
|
100772
|
+
"module": "core/base-elements/element.js"
|
|
100773
|
+
}
|
|
100774
|
+
},
|
|
100775
|
+
{
|
|
100776
|
+
"kind": "field",
|
|
100777
|
+
"name": "['_$sbbElement$']",
|
|
100778
|
+
"type": {
|
|
100779
|
+
"text": "boolean"
|
|
100780
|
+
},
|
|
100781
|
+
"privacy": "public",
|
|
100782
|
+
"static": true,
|
|
100783
|
+
"default": "true",
|
|
100784
|
+
"inheritedFrom": {
|
|
100785
|
+
"name": "SbbElement",
|
|
100786
|
+
"module": "core/base-elements/element.js"
|
|
100787
|
+
}
|
|
100788
|
+
},
|
|
100789
|
+
{
|
|
100790
|
+
"kind": "field",
|
|
100791
|
+
"name": "_controllers",
|
|
100792
|
+
"type": {
|
|
100793
|
+
"text": "Set<SbbReactiveController> | undefined"
|
|
100794
|
+
},
|
|
100795
|
+
"privacy": "private",
|
|
100796
|
+
"inheritedFrom": {
|
|
100797
|
+
"name": "SbbElement",
|
|
100798
|
+
"module": "core/base-elements/element.js"
|
|
100799
|
+
}
|
|
100800
|
+
}
|
|
100801
|
+
],
|
|
100802
|
+
"mixins": [
|
|
100803
|
+
{
|
|
100804
|
+
"name": "SbbBlockLinkCommonElementMixin",
|
|
100805
|
+
"module": "link/common/block-link-common.js"
|
|
100806
|
+
},
|
|
100807
|
+
{
|
|
100808
|
+
"name": "SbbDisabledMixin",
|
|
100809
|
+
"module": "core/mixins.js"
|
|
100188
100810
|
}
|
|
100189
100811
|
],
|
|
100190
100812
|
"superclass": {
|
|
100191
100813
|
"name": "SbbLinkBaseElement",
|
|
100192
100814
|
"module": "core/base-elements.js"
|
|
100193
100815
|
},
|
|
100194
|
-
"tagName": "sbb-
|
|
100816
|
+
"tagName": "sbb-block-link",
|
|
100195
100817
|
"customElement": true,
|
|
100196
100818
|
"attributes": [
|
|
100819
|
+
{
|
|
100820
|
+
"name": "icon-placement",
|
|
100821
|
+
"type": {
|
|
100822
|
+
"text": "SbbIconPlacement"
|
|
100823
|
+
},
|
|
100824
|
+
"default": "'start'",
|
|
100825
|
+
"description": "Moves the icon to the end of the component if set to true.",
|
|
100826
|
+
"fieldName": "iconPlacement",
|
|
100827
|
+
"inheritedFrom": {
|
|
100828
|
+
"name": "SbbBlockLinkCommonElementMixin",
|
|
100829
|
+
"module": "link/common/block-link-common.js"
|
|
100830
|
+
}
|
|
100831
|
+
},
|
|
100832
|
+
{
|
|
100833
|
+
"name": "size",
|
|
100834
|
+
"type": {
|
|
100835
|
+
"text": "SbbLinkSize"
|
|
100836
|
+
},
|
|
100837
|
+
"description": "Text size, the link should get in the non-button variation.\nWith inline variant, the text size adapts to where it is used.",
|
|
100838
|
+
"default": "'s' / 'xs' (lean)",
|
|
100839
|
+
"fieldName": "size",
|
|
100840
|
+
"inheritedFrom": {
|
|
100841
|
+
"name": "SbbLinkCommonElementMixin",
|
|
100842
|
+
"module": "link/common/link-common.js"
|
|
100843
|
+
}
|
|
100844
|
+
},
|
|
100197
100845
|
{
|
|
100198
100846
|
"name": "icon-name",
|
|
100199
100847
|
"type": {
|
|
@@ -100207,6 +100855,19 @@
|
|
|
100207
100855
|
"module": "icon/icon-name-mixin.js"
|
|
100208
100856
|
}
|
|
100209
100857
|
},
|
|
100858
|
+
{
|
|
100859
|
+
"name": "disabled",
|
|
100860
|
+
"description": "Whether the component is disabled.",
|
|
100861
|
+
"default": "false",
|
|
100862
|
+
"type": {
|
|
100863
|
+
"text": "boolean"
|
|
100864
|
+
},
|
|
100865
|
+
"fieldName": "disabled",
|
|
100866
|
+
"inheritedFrom": {
|
|
100867
|
+
"name": "SbbDisabledMixin",
|
|
100868
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
100869
|
+
}
|
|
100870
|
+
},
|
|
100210
100871
|
{
|
|
100211
100872
|
"name": "href",
|
|
100212
100873
|
"type": {
|
|
@@ -100291,25 +100952,25 @@
|
|
|
100291
100952
|
"exports": [
|
|
100292
100953
|
{
|
|
100293
100954
|
"kind": "js",
|
|
100294
|
-
"name": "
|
|
100955
|
+
"name": "SbbBlockLinkElement",
|
|
100295
100956
|
"declaration": {
|
|
100296
|
-
"name": "
|
|
100297
|
-
"module": "
|
|
100957
|
+
"name": "SbbBlockLinkElement",
|
|
100958
|
+
"module": "link/block-link/block-link.component.js"
|
|
100298
100959
|
}
|
|
100299
100960
|
}
|
|
100300
100961
|
]
|
|
100301
100962
|
},
|
|
100302
100963
|
{
|
|
100303
100964
|
"kind": "javascript-module",
|
|
100304
|
-
"path": "link/block-link/block-link.component.js",
|
|
100965
|
+
"path": "link/block-link-static/block-link-static.component.js",
|
|
100305
100966
|
"declarations": [
|
|
100306
100967
|
{
|
|
100307
100968
|
"kind": "class",
|
|
100308
|
-
"description": "It displays a link enhanced with the SBB Design.",
|
|
100309
|
-
"name": "
|
|
100969
|
+
"description": "It displays a static link enhanced with the SBB Design.",
|
|
100970
|
+
"name": "SbbBlockLinkStaticElement",
|
|
100310
100971
|
"slots": [
|
|
100311
100972
|
{
|
|
100312
|
-
"description": "Use the unnamed slot to add content to the `sbb-block-link`.",
|
|
100973
|
+
"description": "Use the unnamed slot to add content to the `sbb-block-link-static`.",
|
|
100313
100974
|
"name": ""
|
|
100314
100975
|
},
|
|
100315
100976
|
{
|
|
@@ -100331,7 +100992,7 @@
|
|
|
100331
100992
|
"name": "SbbElement",
|
|
100332
100993
|
"module": "core/base-elements/element.js"
|
|
100333
100994
|
},
|
|
100334
|
-
"default": "'sbb-block-link'"
|
|
100995
|
+
"default": "'sbb-block-link-static'"
|
|
100335
100996
|
},
|
|
100336
100997
|
{
|
|
100337
100998
|
"kind": "field",
|
|
@@ -100504,155 +101165,6 @@
|
|
|
100504
101165
|
"module": "core/mixins/disabled-mixin.js"
|
|
100505
101166
|
}
|
|
100506
101167
|
},
|
|
100507
|
-
{
|
|
100508
|
-
"kind": "field",
|
|
100509
|
-
"name": "href",
|
|
100510
|
-
"type": {
|
|
100511
|
-
"text": "string"
|
|
100512
|
-
},
|
|
100513
|
-
"privacy": "public",
|
|
100514
|
-
"default": "''",
|
|
100515
|
-
"description": "The href value you want to link to.",
|
|
100516
|
-
"attribute": "href",
|
|
100517
|
-
"reflects": true,
|
|
100518
|
-
"inheritedFrom": {
|
|
100519
|
-
"name": "SbbLinkBaseElement",
|
|
100520
|
-
"module": "core/base-elements/link-base-element.js"
|
|
100521
|
-
}
|
|
100522
|
-
},
|
|
100523
|
-
{
|
|
100524
|
-
"kind": "field",
|
|
100525
|
-
"name": "target",
|
|
100526
|
-
"type": {
|
|
100527
|
-
"text": "LinkTargetType | string"
|
|
100528
|
-
},
|
|
100529
|
-
"privacy": "public",
|
|
100530
|
-
"default": "''",
|
|
100531
|
-
"description": "Where to display the linked URL.",
|
|
100532
|
-
"attribute": "target",
|
|
100533
|
-
"reflects": true,
|
|
100534
|
-
"inheritedFrom": {
|
|
100535
|
-
"name": "SbbLinkBaseElement",
|
|
100536
|
-
"module": "core/base-elements/link-base-element.js"
|
|
100537
|
-
}
|
|
100538
|
-
},
|
|
100539
|
-
{
|
|
100540
|
-
"kind": "field",
|
|
100541
|
-
"name": "rel",
|
|
100542
|
-
"type": {
|
|
100543
|
-
"text": "string"
|
|
100544
|
-
},
|
|
100545
|
-
"privacy": "public",
|
|
100546
|
-
"default": "''",
|
|
100547
|
-
"description": "The relationship of the linked URL as space-separated link types.",
|
|
100548
|
-
"attribute": "rel",
|
|
100549
|
-
"reflects": true,
|
|
100550
|
-
"inheritedFrom": {
|
|
100551
|
-
"name": "SbbLinkBaseElement",
|
|
100552
|
-
"module": "core/base-elements/link-base-element.js"
|
|
100553
|
-
}
|
|
100554
|
-
},
|
|
100555
|
-
{
|
|
100556
|
-
"kind": "field",
|
|
100557
|
-
"name": "download",
|
|
100558
|
-
"type": {
|
|
100559
|
-
"text": "boolean"
|
|
100560
|
-
},
|
|
100561
|
-
"privacy": "public",
|
|
100562
|
-
"default": "false",
|
|
100563
|
-
"description": "Whether the browser will show the download dialog on click.",
|
|
100564
|
-
"attribute": "download",
|
|
100565
|
-
"reflects": true,
|
|
100566
|
-
"inheritedFrom": {
|
|
100567
|
-
"name": "SbbLinkBaseElement",
|
|
100568
|
-
"module": "core/base-elements/link-base-element.js"
|
|
100569
|
-
}
|
|
100570
|
-
},
|
|
100571
|
-
{
|
|
100572
|
-
"kind": "field",
|
|
100573
|
-
"name": "accessibilityLabel",
|
|
100574
|
-
"type": {
|
|
100575
|
-
"text": "string"
|
|
100576
|
-
},
|
|
100577
|
-
"privacy": "public",
|
|
100578
|
-
"default": "''",
|
|
100579
|
-
"description": "This will be forwarded as aria-label to the inner anchor element.",
|
|
100580
|
-
"attribute": "accessibility-label",
|
|
100581
|
-
"inheritedFrom": {
|
|
100582
|
-
"name": "SbbLinkBaseElement",
|
|
100583
|
-
"module": "core/base-elements/link-base-element.js"
|
|
100584
|
-
}
|
|
100585
|
-
},
|
|
100586
|
-
{
|
|
100587
|
-
"kind": "field",
|
|
100588
|
-
"name": "accessibilityCurrent",
|
|
100589
|
-
"type": {
|
|
100590
|
-
"text": "string"
|
|
100591
|
-
},
|
|
100592
|
-
"privacy": "public",
|
|
100593
|
-
"default": "''",
|
|
100594
|
-
"description": "This will be forwarded as aria-current to the inner anchor element.",
|
|
100595
|
-
"attribute": "accessibility-current",
|
|
100596
|
-
"inheritedFrom": {
|
|
100597
|
-
"name": "SbbLinkBaseElement",
|
|
100598
|
-
"module": "core/base-elements/link-base-element.js"
|
|
100599
|
-
}
|
|
100600
|
-
},
|
|
100601
|
-
{
|
|
100602
|
-
"kind": "field",
|
|
100603
|
-
"name": "language",
|
|
100604
|
-
"privacy": "protected",
|
|
100605
|
-
"default": "new SbbLanguageController(this)",
|
|
100606
|
-
"inheritedFrom": {
|
|
100607
|
-
"name": "SbbLinkBaseElement",
|
|
100608
|
-
"module": "core/base-elements/link-base-element.js"
|
|
100609
|
-
}
|
|
100610
|
-
},
|
|
100611
|
-
{
|
|
100612
|
-
"kind": "field",
|
|
100613
|
-
"name": "anchorRole",
|
|
100614
|
-
"type": {
|
|
100615
|
-
"text": "string | null"
|
|
100616
|
-
},
|
|
100617
|
-
"privacy": "protected",
|
|
100618
|
-
"readonly": true,
|
|
100619
|
-
"default": "null",
|
|
100620
|
-
"inheritedFrom": {
|
|
100621
|
-
"name": "SbbLinkBaseElement",
|
|
100622
|
-
"module": "core/base-elements/link-base-element.js"
|
|
100623
|
-
}
|
|
100624
|
-
},
|
|
100625
|
-
{
|
|
100626
|
-
"kind": "field",
|
|
100627
|
-
"name": "_evaluateRelAttribute",
|
|
100628
|
-
"privacy": "private",
|
|
100629
|
-
"inheritedFrom": {
|
|
100630
|
-
"name": "SbbLinkBaseElement",
|
|
100631
|
-
"module": "core/base-elements/link-base-element.js"
|
|
100632
|
-
}
|
|
100633
|
-
},
|
|
100634
|
-
{
|
|
100635
|
-
"kind": "method",
|
|
100636
|
-
"name": "renderLink",
|
|
100637
|
-
"privacy": "protected",
|
|
100638
|
-
"return": {
|
|
100639
|
-
"type": {
|
|
100640
|
-
"text": "TemplateResult"
|
|
100641
|
-
}
|
|
100642
|
-
},
|
|
100643
|
-
"parameters": [
|
|
100644
|
-
{
|
|
100645
|
-
"name": "renderContent",
|
|
100646
|
-
"type": {
|
|
100647
|
-
"text": "TemplateResult"
|
|
100648
|
-
}
|
|
100649
|
-
}
|
|
100650
|
-
],
|
|
100651
|
-
"inheritedFrom": {
|
|
100652
|
-
"name": "SbbLinkBaseElement",
|
|
100653
|
-
"module": "core/base-elements/link-base-element.js"
|
|
100654
|
-
}
|
|
100655
|
-
},
|
|
100656
101168
|
{
|
|
100657
101169
|
"kind": "field",
|
|
100658
101170
|
"name": "maybeDisabled",
|
|
@@ -100810,10 +101322,10 @@
|
|
|
100810
101322
|
}
|
|
100811
101323
|
],
|
|
100812
101324
|
"superclass": {
|
|
100813
|
-
"name": "
|
|
101325
|
+
"name": "SbbActionBaseElement",
|
|
100814
101326
|
"module": "core/base-elements.js"
|
|
100815
101327
|
},
|
|
100816
|
-
"tagName": "sbb-block-link",
|
|
101328
|
+
"tagName": "sbb-block-link-static",
|
|
100817
101329
|
"customElement": true,
|
|
100818
101330
|
"attributes": [
|
|
100819
101331
|
{
|
|
@@ -100867,84 +101379,6 @@
|
|
|
100867
101379
|
"name": "SbbDisabledMixin",
|
|
100868
101380
|
"module": "core/mixins/disabled-mixin.js"
|
|
100869
101381
|
}
|
|
100870
|
-
},
|
|
100871
|
-
{
|
|
100872
|
-
"name": "href",
|
|
100873
|
-
"type": {
|
|
100874
|
-
"text": "string"
|
|
100875
|
-
},
|
|
100876
|
-
"default": "''",
|
|
100877
|
-
"description": "The href value you want to link to.",
|
|
100878
|
-
"fieldName": "href",
|
|
100879
|
-
"inheritedFrom": {
|
|
100880
|
-
"name": "SbbLinkBaseElement",
|
|
100881
|
-
"module": "core/base-elements/link-base-element.js"
|
|
100882
|
-
}
|
|
100883
|
-
},
|
|
100884
|
-
{
|
|
100885
|
-
"name": "target",
|
|
100886
|
-
"type": {
|
|
100887
|
-
"text": "LinkTargetType | string"
|
|
100888
|
-
},
|
|
100889
|
-
"default": "''",
|
|
100890
|
-
"description": "Where to display the linked URL.",
|
|
100891
|
-
"fieldName": "target",
|
|
100892
|
-
"inheritedFrom": {
|
|
100893
|
-
"name": "SbbLinkBaseElement",
|
|
100894
|
-
"module": "core/base-elements/link-base-element.js"
|
|
100895
|
-
}
|
|
100896
|
-
},
|
|
100897
|
-
{
|
|
100898
|
-
"name": "rel",
|
|
100899
|
-
"type": {
|
|
100900
|
-
"text": "string"
|
|
100901
|
-
},
|
|
100902
|
-
"default": "''",
|
|
100903
|
-
"description": "The relationship of the linked URL as space-separated link types.",
|
|
100904
|
-
"fieldName": "rel",
|
|
100905
|
-
"inheritedFrom": {
|
|
100906
|
-
"name": "SbbLinkBaseElement",
|
|
100907
|
-
"module": "core/base-elements/link-base-element.js"
|
|
100908
|
-
}
|
|
100909
|
-
},
|
|
100910
|
-
{
|
|
100911
|
-
"name": "download",
|
|
100912
|
-
"type": {
|
|
100913
|
-
"text": "boolean"
|
|
100914
|
-
},
|
|
100915
|
-
"default": "false",
|
|
100916
|
-
"description": "Whether the browser will show the download dialog on click.",
|
|
100917
|
-
"fieldName": "download",
|
|
100918
|
-
"inheritedFrom": {
|
|
100919
|
-
"name": "SbbLinkBaseElement",
|
|
100920
|
-
"module": "core/base-elements/link-base-element.js"
|
|
100921
|
-
}
|
|
100922
|
-
},
|
|
100923
|
-
{
|
|
100924
|
-
"name": "accessibility-label",
|
|
100925
|
-
"type": {
|
|
100926
|
-
"text": "string"
|
|
100927
|
-
},
|
|
100928
|
-
"default": "''",
|
|
100929
|
-
"description": "This will be forwarded as aria-label to the inner anchor element.",
|
|
100930
|
-
"fieldName": "accessibilityLabel",
|
|
100931
|
-
"inheritedFrom": {
|
|
100932
|
-
"name": "SbbLinkBaseElement",
|
|
100933
|
-
"module": "core/base-elements/link-base-element.js"
|
|
100934
|
-
}
|
|
100935
|
-
},
|
|
100936
|
-
{
|
|
100937
|
-
"name": "accessibility-current",
|
|
100938
|
-
"type": {
|
|
100939
|
-
"text": "string"
|
|
100940
|
-
},
|
|
100941
|
-
"default": "''",
|
|
100942
|
-
"description": "This will be forwarded as aria-current to the inner anchor element.",
|
|
100943
|
-
"fieldName": "accessibilityCurrent",
|
|
100944
|
-
"inheritedFrom": {
|
|
100945
|
-
"name": "SbbLinkBaseElement",
|
|
100946
|
-
"module": "core/base-elements/link-base-element.js"
|
|
100947
|
-
}
|
|
100948
101382
|
}
|
|
100949
101383
|
]
|
|
100950
101384
|
}
|
|
@@ -100952,10 +101386,10 @@
|
|
|
100952
101386
|
"exports": [
|
|
100953
101387
|
{
|
|
100954
101388
|
"kind": "js",
|
|
100955
|
-
"name": "
|
|
101389
|
+
"name": "SbbBlockLinkStaticElement",
|
|
100956
101390
|
"declaration": {
|
|
100957
|
-
"name": "
|
|
100958
|
-
"module": "link/block-link/block-link.component.js"
|
|
101391
|
+
"name": "SbbBlockLinkStaticElement",
|
|
101392
|
+
"module": "link/block-link-static/block-link-static.component.js"
|
|
100959
101393
|
}
|
|
100960
101394
|
}
|
|
100961
101395
|
]
|
|
@@ -101950,440 +102384,6 @@
|
|
|
101950
102384
|
}
|
|
101951
102385
|
]
|
|
101952
102386
|
},
|
|
101953
|
-
{
|
|
101954
|
-
"kind": "javascript-module",
|
|
101955
|
-
"path": "link/block-link-static/block-link-static.component.js",
|
|
101956
|
-
"declarations": [
|
|
101957
|
-
{
|
|
101958
|
-
"kind": "class",
|
|
101959
|
-
"description": "It displays a static link enhanced with the SBB Design.",
|
|
101960
|
-
"name": "SbbBlockLinkStaticElement",
|
|
101961
|
-
"slots": [
|
|
101962
|
-
{
|
|
101963
|
-
"description": "Use the unnamed slot to add content to the `sbb-block-link-static`.",
|
|
101964
|
-
"name": ""
|
|
101965
|
-
},
|
|
101966
|
-
{
|
|
101967
|
-
"description": "Slot used to display the icon, if one is set.",
|
|
101968
|
-
"name": "icon"
|
|
101969
|
-
}
|
|
101970
|
-
],
|
|
101971
|
-
"members": [
|
|
101972
|
-
{
|
|
101973
|
-
"kind": "field",
|
|
101974
|
-
"name": "elementName",
|
|
101975
|
-
"type": {
|
|
101976
|
-
"text": "string"
|
|
101977
|
-
},
|
|
101978
|
-
"privacy": "public",
|
|
101979
|
-
"static": true,
|
|
101980
|
-
"readonly": true,
|
|
101981
|
-
"inheritedFrom": {
|
|
101982
|
-
"name": "SbbElement",
|
|
101983
|
-
"module": "core/base-elements/element.js"
|
|
101984
|
-
},
|
|
101985
|
-
"default": "'sbb-block-link-static'"
|
|
101986
|
-
},
|
|
101987
|
-
{
|
|
101988
|
-
"kind": "field",
|
|
101989
|
-
"name": "styles",
|
|
101990
|
-
"type": {
|
|
101991
|
-
"text": "CSSResultGroup"
|
|
101992
|
-
},
|
|
101993
|
-
"privacy": "public",
|
|
101994
|
-
"static": true,
|
|
101995
|
-
"default": "[super.styles, unsafeCSS(blockStyle)]",
|
|
101996
|
-
"inheritedFrom": {
|
|
101997
|
-
"name": "SbbLinkCommonElementMixin",
|
|
101998
|
-
"module": "link/common/link-common.js"
|
|
101999
|
-
}
|
|
102000
|
-
},
|
|
102001
|
-
{
|
|
102002
|
-
"kind": "field",
|
|
102003
|
-
"name": "iconPlacement",
|
|
102004
|
-
"type": {
|
|
102005
|
-
"text": "SbbIconPlacement"
|
|
102006
|
-
},
|
|
102007
|
-
"privacy": "public",
|
|
102008
|
-
"default": "'start'",
|
|
102009
|
-
"description": "Moves the icon to the end of the component if set to true.",
|
|
102010
|
-
"attribute": "icon-placement",
|
|
102011
|
-
"reflects": true,
|
|
102012
|
-
"inheritedFrom": {
|
|
102013
|
-
"name": "SbbBlockLinkCommonElementMixin",
|
|
102014
|
-
"module": "link/common/block-link-common.js"
|
|
102015
|
-
}
|
|
102016
|
-
},
|
|
102017
|
-
{
|
|
102018
|
-
"kind": "method",
|
|
102019
|
-
"name": "renderTemplate",
|
|
102020
|
-
"privacy": "protected",
|
|
102021
|
-
"return": {
|
|
102022
|
-
"type": {
|
|
102023
|
-
"text": "TemplateResult"
|
|
102024
|
-
}
|
|
102025
|
-
},
|
|
102026
|
-
"description": "Override this method to render the component template.",
|
|
102027
|
-
"inheritedFrom": {
|
|
102028
|
-
"name": "SbbActionBaseElement",
|
|
102029
|
-
"module": "core/base-elements/action-base-element.js"
|
|
102030
|
-
}
|
|
102031
|
-
},
|
|
102032
|
-
{
|
|
102033
|
-
"kind": "field",
|
|
102034
|
-
"name": "size",
|
|
102035
|
-
"type": {
|
|
102036
|
-
"text": "SbbLinkSize"
|
|
102037
|
-
},
|
|
102038
|
-
"privacy": "public",
|
|
102039
|
-
"description": "Text size, the link should get in the non-button variation.\nWith inline variant, the text size adapts to where it is used.",
|
|
102040
|
-
"default": "'s' / 'xs' (lean)",
|
|
102041
|
-
"attribute": "size",
|
|
102042
|
-
"reflects": true,
|
|
102043
|
-
"inheritedFrom": {
|
|
102044
|
-
"name": "SbbLinkCommonElementMixin",
|
|
102045
|
-
"module": "link/common/link-common.js"
|
|
102046
|
-
}
|
|
102047
|
-
},
|
|
102048
|
-
{
|
|
102049
|
-
"kind": "field",
|
|
102050
|
-
"name": "iconName",
|
|
102051
|
-
"type": {
|
|
102052
|
-
"text": "string"
|
|
102053
|
-
},
|
|
102054
|
-
"privacy": "public",
|
|
102055
|
-
"default": "''",
|
|
102056
|
-
"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.",
|
|
102057
|
-
"attribute": "icon-name",
|
|
102058
|
-
"inheritedFrom": {
|
|
102059
|
-
"name": "SbbIconNameMixin",
|
|
102060
|
-
"module": "icon/icon-name-mixin.js"
|
|
102061
|
-
}
|
|
102062
|
-
},
|
|
102063
|
-
{
|
|
102064
|
-
"kind": "method",
|
|
102065
|
-
"name": "renderIconSlot",
|
|
102066
|
-
"privacy": "protected",
|
|
102067
|
-
"return": {
|
|
102068
|
-
"type": {
|
|
102069
|
-
"text": "TemplateResult"
|
|
102070
|
-
}
|
|
102071
|
-
},
|
|
102072
|
-
"parameters": [
|
|
102073
|
-
{
|
|
102074
|
-
"name": "classname",
|
|
102075
|
-
"optional": true,
|
|
102076
|
-
"type": {
|
|
102077
|
-
"text": "string"
|
|
102078
|
-
}
|
|
102079
|
-
}
|
|
102080
|
-
],
|
|
102081
|
-
"inheritedFrom": {
|
|
102082
|
-
"name": "SbbIconNameMixin",
|
|
102083
|
-
"module": "icon/icon-name-mixin.js"
|
|
102084
|
-
}
|
|
102085
|
-
},
|
|
102086
|
-
{
|
|
102087
|
-
"kind": "method",
|
|
102088
|
-
"name": "renderIconName",
|
|
102089
|
-
"privacy": "protected",
|
|
102090
|
-
"return": {
|
|
102091
|
-
"type": {
|
|
102092
|
-
"text": "string"
|
|
102093
|
-
}
|
|
102094
|
-
},
|
|
102095
|
-
"inheritedFrom": {
|
|
102096
|
-
"name": "SbbIconNameMixin",
|
|
102097
|
-
"module": "icon/icon-name-mixin.js"
|
|
102098
|
-
}
|
|
102099
|
-
},
|
|
102100
|
-
{
|
|
102101
|
-
"kind": "method",
|
|
102102
|
-
"name": "_renderIconName",
|
|
102103
|
-
"privacy": "private",
|
|
102104
|
-
"return": {
|
|
102105
|
-
"type": {
|
|
102106
|
-
"text": "string"
|
|
102107
|
-
}
|
|
102108
|
-
},
|
|
102109
|
-
"inheritedFrom": {
|
|
102110
|
-
"name": "SbbIconNameMixin",
|
|
102111
|
-
"module": "icon/icon-name-mixin.js"
|
|
102112
|
-
}
|
|
102113
|
-
},
|
|
102114
|
-
{
|
|
102115
|
-
"kind": "field",
|
|
102116
|
-
"name": "disabled",
|
|
102117
|
-
"privacy": "public",
|
|
102118
|
-
"description": "Whether the component is disabled.",
|
|
102119
|
-
"default": "false",
|
|
102120
|
-
"type": {
|
|
102121
|
-
"text": "boolean"
|
|
102122
|
-
},
|
|
102123
|
-
"attribute": "disabled",
|
|
102124
|
-
"reflects": true,
|
|
102125
|
-
"inheritedFrom": {
|
|
102126
|
-
"name": "SbbDisabledMixin",
|
|
102127
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
102128
|
-
}
|
|
102129
|
-
},
|
|
102130
|
-
{
|
|
102131
|
-
"kind": "field",
|
|
102132
|
-
"name": "#disabled",
|
|
102133
|
-
"privacy": "private",
|
|
102134
|
-
"type": {
|
|
102135
|
-
"text": "boolean"
|
|
102136
|
-
},
|
|
102137
|
-
"default": "false",
|
|
102138
|
-
"inheritedFrom": {
|
|
102139
|
-
"name": "SbbDisabledMixin",
|
|
102140
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
102141
|
-
}
|
|
102142
|
-
},
|
|
102143
|
-
{
|
|
102144
|
-
"kind": "method",
|
|
102145
|
-
"name": "isDisabledExternally",
|
|
102146
|
-
"privacy": "protected",
|
|
102147
|
-
"return": {
|
|
102148
|
-
"type": {
|
|
102149
|
-
"text": "boolean"
|
|
102150
|
-
}
|
|
102151
|
-
},
|
|
102152
|
-
"description": "Will be used as 'or' check to the current disabled state.\nCan e.g. be used to read disabled state of a group.",
|
|
102153
|
-
"inheritedFrom": {
|
|
102154
|
-
"name": "SbbDisabledMixin",
|
|
102155
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
102156
|
-
}
|
|
102157
|
-
},
|
|
102158
|
-
{
|
|
102159
|
-
"kind": "field",
|
|
102160
|
-
"name": "maybeDisabled",
|
|
102161
|
-
"type": {
|
|
102162
|
-
"text": "boolean | undefined"
|
|
102163
|
-
},
|
|
102164
|
-
"privacy": "protected",
|
|
102165
|
-
"readonly": true,
|
|
102166
|
-
"inheritedFrom": {
|
|
102167
|
-
"name": "SbbActionBaseElement",
|
|
102168
|
-
"module": "core/base-elements/action-base-element.js"
|
|
102169
|
-
}
|
|
102170
|
-
},
|
|
102171
|
-
{
|
|
102172
|
-
"kind": "field",
|
|
102173
|
-
"name": "maybeDisabledInteractive",
|
|
102174
|
-
"type": {
|
|
102175
|
-
"text": "boolean | undefined"
|
|
102176
|
-
},
|
|
102177
|
-
"privacy": "protected",
|
|
102178
|
-
"readonly": true,
|
|
102179
|
-
"inheritedFrom": {
|
|
102180
|
-
"name": "SbbActionBaseElement",
|
|
102181
|
-
"module": "core/base-elements/action-base-element.js"
|
|
102182
|
-
}
|
|
102183
|
-
},
|
|
102184
|
-
{
|
|
102185
|
-
"kind": "method",
|
|
102186
|
-
"name": "setupBaseEventHandlers",
|
|
102187
|
-
"privacy": "protected",
|
|
102188
|
-
"return": {
|
|
102189
|
-
"type": {
|
|
102190
|
-
"text": "void"
|
|
102191
|
-
}
|
|
102192
|
-
},
|
|
102193
|
-
"inheritedFrom": {
|
|
102194
|
-
"name": "SbbActionBaseElement",
|
|
102195
|
-
"module": "core/base-elements/action-base-element.js"
|
|
102196
|
-
}
|
|
102197
|
-
},
|
|
102198
|
-
{
|
|
102199
|
-
"kind": "field",
|
|
102200
|
-
"name": "_hydrationRequired",
|
|
102201
|
-
"type": {
|
|
102202
|
-
"text": "boolean"
|
|
102203
|
-
},
|
|
102204
|
-
"privacy": "private",
|
|
102205
|
-
"default": "!!this.shadowRoot",
|
|
102206
|
-
"inheritedFrom": {
|
|
102207
|
-
"name": "SbbElement",
|
|
102208
|
-
"module": "core/base-elements/element.js"
|
|
102209
|
-
}
|
|
102210
|
-
},
|
|
102211
|
-
{
|
|
102212
|
-
"kind": "field",
|
|
102213
|
-
"name": "_hydrationComplete",
|
|
102214
|
-
"privacy": "private",
|
|
102215
|
-
"default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
|
|
102216
|
-
"inheritedFrom": {
|
|
102217
|
-
"name": "SbbElement",
|
|
102218
|
-
"module": "core/base-elements/element.js"
|
|
102219
|
-
}
|
|
102220
|
-
},
|
|
102221
|
-
{
|
|
102222
|
-
"kind": "field",
|
|
102223
|
-
"name": "_resolveHydration",
|
|
102224
|
-
"type": {
|
|
102225
|
-
"text": "(hydrationRequired: boolean) => void"
|
|
102226
|
-
},
|
|
102227
|
-
"privacy": "private",
|
|
102228
|
-
"inheritedFrom": {
|
|
102229
|
-
"name": "SbbElement",
|
|
102230
|
-
"module": "core/base-elements/element.js"
|
|
102231
|
-
}
|
|
102232
|
-
},
|
|
102233
|
-
{
|
|
102234
|
-
"kind": "field",
|
|
102235
|
-
"name": "hydrationRequired",
|
|
102236
|
-
"type": {
|
|
102237
|
-
"text": "boolean"
|
|
102238
|
-
},
|
|
102239
|
-
"privacy": "protected",
|
|
102240
|
-
"description": "Returns whether hydration is required and not completed.",
|
|
102241
|
-
"readonly": true,
|
|
102242
|
-
"inheritedFrom": {
|
|
102243
|
-
"name": "SbbElement",
|
|
102244
|
-
"module": "core/base-elements/element.js"
|
|
102245
|
-
},
|
|
102246
|
-
"default": "!!this.shadowRoot"
|
|
102247
|
-
},
|
|
102248
|
-
{
|
|
102249
|
-
"kind": "method",
|
|
102250
|
-
"name": "toggleState",
|
|
102251
|
-
"privacy": "protected",
|
|
102252
|
-
"return": {
|
|
102253
|
-
"type": {
|
|
102254
|
-
"text": "void"
|
|
102255
|
-
}
|
|
102256
|
-
},
|
|
102257
|
-
"parameters": [
|
|
102258
|
-
{
|
|
102259
|
-
"name": "value",
|
|
102260
|
-
"type": {
|
|
102261
|
-
"text": "string"
|
|
102262
|
-
}
|
|
102263
|
-
},
|
|
102264
|
-
{
|
|
102265
|
-
"name": "force",
|
|
102266
|
-
"optional": true,
|
|
102267
|
-
"type": {
|
|
102268
|
-
"text": "boolean"
|
|
102269
|
-
}
|
|
102270
|
-
}
|
|
102271
|
-
],
|
|
102272
|
-
"inheritedFrom": {
|
|
102273
|
-
"name": "SbbElement",
|
|
102274
|
-
"module": "core/base-elements/element.js"
|
|
102275
|
-
}
|
|
102276
|
-
},
|
|
102277
|
-
{
|
|
102278
|
-
"kind": "field",
|
|
102279
|
-
"name": "['_$sbbElement$']",
|
|
102280
|
-
"type": {
|
|
102281
|
-
"text": "boolean"
|
|
102282
|
-
},
|
|
102283
|
-
"privacy": "public",
|
|
102284
|
-
"static": true,
|
|
102285
|
-
"default": "true",
|
|
102286
|
-
"inheritedFrom": {
|
|
102287
|
-
"name": "SbbElement",
|
|
102288
|
-
"module": "core/base-elements/element.js"
|
|
102289
|
-
}
|
|
102290
|
-
},
|
|
102291
|
-
{
|
|
102292
|
-
"kind": "field",
|
|
102293
|
-
"name": "_controllers",
|
|
102294
|
-
"type": {
|
|
102295
|
-
"text": "Set<SbbReactiveController> | undefined"
|
|
102296
|
-
},
|
|
102297
|
-
"privacy": "private",
|
|
102298
|
-
"inheritedFrom": {
|
|
102299
|
-
"name": "SbbElement",
|
|
102300
|
-
"module": "core/base-elements/element.js"
|
|
102301
|
-
}
|
|
102302
|
-
}
|
|
102303
|
-
],
|
|
102304
|
-
"mixins": [
|
|
102305
|
-
{
|
|
102306
|
-
"name": "SbbBlockLinkCommonElementMixin",
|
|
102307
|
-
"module": "link/common/block-link-common.js"
|
|
102308
|
-
},
|
|
102309
|
-
{
|
|
102310
|
-
"name": "SbbDisabledMixin",
|
|
102311
|
-
"module": "core/mixins.js"
|
|
102312
|
-
}
|
|
102313
|
-
],
|
|
102314
|
-
"superclass": {
|
|
102315
|
-
"name": "SbbActionBaseElement",
|
|
102316
|
-
"module": "core/base-elements.js"
|
|
102317
|
-
},
|
|
102318
|
-
"tagName": "sbb-block-link-static",
|
|
102319
|
-
"customElement": true,
|
|
102320
|
-
"attributes": [
|
|
102321
|
-
{
|
|
102322
|
-
"name": "icon-placement",
|
|
102323
|
-
"type": {
|
|
102324
|
-
"text": "SbbIconPlacement"
|
|
102325
|
-
},
|
|
102326
|
-
"default": "'start'",
|
|
102327
|
-
"description": "Moves the icon to the end of the component if set to true.",
|
|
102328
|
-
"fieldName": "iconPlacement",
|
|
102329
|
-
"inheritedFrom": {
|
|
102330
|
-
"name": "SbbBlockLinkCommonElementMixin",
|
|
102331
|
-
"module": "link/common/block-link-common.js"
|
|
102332
|
-
}
|
|
102333
|
-
},
|
|
102334
|
-
{
|
|
102335
|
-
"name": "size",
|
|
102336
|
-
"type": {
|
|
102337
|
-
"text": "SbbLinkSize"
|
|
102338
|
-
},
|
|
102339
|
-
"description": "Text size, the link should get in the non-button variation.\nWith inline variant, the text size adapts to where it is used.",
|
|
102340
|
-
"default": "'s' / 'xs' (lean)",
|
|
102341
|
-
"fieldName": "size",
|
|
102342
|
-
"inheritedFrom": {
|
|
102343
|
-
"name": "SbbLinkCommonElementMixin",
|
|
102344
|
-
"module": "link/common/link-common.js"
|
|
102345
|
-
}
|
|
102346
|
-
},
|
|
102347
|
-
{
|
|
102348
|
-
"name": "icon-name",
|
|
102349
|
-
"type": {
|
|
102350
|
-
"text": "string"
|
|
102351
|
-
},
|
|
102352
|
-
"default": "''",
|
|
102353
|
-
"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.",
|
|
102354
|
-
"fieldName": "iconName",
|
|
102355
|
-
"inheritedFrom": {
|
|
102356
|
-
"name": "SbbIconNameMixin",
|
|
102357
|
-
"module": "icon/icon-name-mixin.js"
|
|
102358
|
-
}
|
|
102359
|
-
},
|
|
102360
|
-
{
|
|
102361
|
-
"name": "disabled",
|
|
102362
|
-
"description": "Whether the component is disabled.",
|
|
102363
|
-
"default": "false",
|
|
102364
|
-
"type": {
|
|
102365
|
-
"text": "boolean"
|
|
102366
|
-
},
|
|
102367
|
-
"fieldName": "disabled",
|
|
102368
|
-
"inheritedFrom": {
|
|
102369
|
-
"name": "SbbDisabledMixin",
|
|
102370
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
102371
|
-
}
|
|
102372
|
-
}
|
|
102373
|
-
]
|
|
102374
|
-
}
|
|
102375
|
-
],
|
|
102376
|
-
"exports": [
|
|
102377
|
-
{
|
|
102378
|
-
"kind": "js",
|
|
102379
|
-
"name": "SbbBlockLinkStaticElement",
|
|
102380
|
-
"declaration": {
|
|
102381
|
-
"name": "SbbBlockLinkStaticElement",
|
|
102382
|
-
"module": "link/block-link-static/block-link-static.component.js"
|
|
102383
|
-
}
|
|
102384
|
-
}
|
|
102385
|
-
]
|
|
102386
|
-
},
|
|
102387
102387
|
{
|
|
102388
102388
|
"kind": "javascript-module",
|
|
102389
102389
|
"path": "link/common/block-link-common.js",
|
|
@@ -132872,6 +132872,155 @@
|
|
|
132872
132872
|
}
|
|
132873
132873
|
]
|
|
132874
132874
|
},
|
|
132875
|
+
{
|
|
132876
|
+
"kind": "javascript-module",
|
|
132877
|
+
"path": "train/train-blocked-passage/train-blocked-passage.component.js",
|
|
132878
|
+
"declarations": [
|
|
132879
|
+
{
|
|
132880
|
+
"kind": "class",
|
|
132881
|
+
"description": "It visually displays a blocked passage between train wagons.",
|
|
132882
|
+
"name": "SbbTrainBlockedPassageElement",
|
|
132883
|
+
"members": [
|
|
132884
|
+
{
|
|
132885
|
+
"kind": "field",
|
|
132886
|
+
"name": "elementName",
|
|
132887
|
+
"type": {
|
|
132888
|
+
"text": "string"
|
|
132889
|
+
},
|
|
132890
|
+
"privacy": "public",
|
|
132891
|
+
"static": true,
|
|
132892
|
+
"readonly": true,
|
|
132893
|
+
"default": "'sbb-train-blocked-passage'",
|
|
132894
|
+
"inheritedFrom": {
|
|
132895
|
+
"name": "SbbElement",
|
|
132896
|
+
"module": "core/base-elements/element.js"
|
|
132897
|
+
}
|
|
132898
|
+
},
|
|
132899
|
+
{
|
|
132900
|
+
"kind": "field",
|
|
132901
|
+
"name": "_hydrationRequired",
|
|
132902
|
+
"type": {
|
|
132903
|
+
"text": "boolean"
|
|
132904
|
+
},
|
|
132905
|
+
"privacy": "private",
|
|
132906
|
+
"default": "!!this.shadowRoot",
|
|
132907
|
+
"inheritedFrom": {
|
|
132908
|
+
"name": "SbbElement",
|
|
132909
|
+
"module": "core/base-elements/element.js"
|
|
132910
|
+
}
|
|
132911
|
+
},
|
|
132912
|
+
{
|
|
132913
|
+
"kind": "field",
|
|
132914
|
+
"name": "_hydrationComplete",
|
|
132915
|
+
"privacy": "private",
|
|
132916
|
+
"default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
|
|
132917
|
+
"inheritedFrom": {
|
|
132918
|
+
"name": "SbbElement",
|
|
132919
|
+
"module": "core/base-elements/element.js"
|
|
132920
|
+
}
|
|
132921
|
+
},
|
|
132922
|
+
{
|
|
132923
|
+
"kind": "field",
|
|
132924
|
+
"name": "_resolveHydration",
|
|
132925
|
+
"type": {
|
|
132926
|
+
"text": "(hydrationRequired: boolean) => void"
|
|
132927
|
+
},
|
|
132928
|
+
"privacy": "private",
|
|
132929
|
+
"inheritedFrom": {
|
|
132930
|
+
"name": "SbbElement",
|
|
132931
|
+
"module": "core/base-elements/element.js"
|
|
132932
|
+
}
|
|
132933
|
+
},
|
|
132934
|
+
{
|
|
132935
|
+
"kind": "field",
|
|
132936
|
+
"name": "hydrationRequired",
|
|
132937
|
+
"type": {
|
|
132938
|
+
"text": "boolean"
|
|
132939
|
+
},
|
|
132940
|
+
"privacy": "protected",
|
|
132941
|
+
"description": "Returns whether hydration is required and not completed.",
|
|
132942
|
+
"readonly": true,
|
|
132943
|
+
"inheritedFrom": {
|
|
132944
|
+
"name": "SbbElement",
|
|
132945
|
+
"module": "core/base-elements/element.js"
|
|
132946
|
+
},
|
|
132947
|
+
"default": "!!this.shadowRoot"
|
|
132948
|
+
},
|
|
132949
|
+
{
|
|
132950
|
+
"kind": "method",
|
|
132951
|
+
"name": "toggleState",
|
|
132952
|
+
"privacy": "protected",
|
|
132953
|
+
"return": {
|
|
132954
|
+
"type": {
|
|
132955
|
+
"text": "void"
|
|
132956
|
+
}
|
|
132957
|
+
},
|
|
132958
|
+
"parameters": [
|
|
132959
|
+
{
|
|
132960
|
+
"name": "value",
|
|
132961
|
+
"type": {
|
|
132962
|
+
"text": "string"
|
|
132963
|
+
}
|
|
132964
|
+
},
|
|
132965
|
+
{
|
|
132966
|
+
"name": "force",
|
|
132967
|
+
"optional": true,
|
|
132968
|
+
"type": {
|
|
132969
|
+
"text": "boolean"
|
|
132970
|
+
}
|
|
132971
|
+
}
|
|
132972
|
+
],
|
|
132973
|
+
"inheritedFrom": {
|
|
132974
|
+
"name": "SbbElement",
|
|
132975
|
+
"module": "core/base-elements/element.js"
|
|
132976
|
+
}
|
|
132977
|
+
},
|
|
132978
|
+
{
|
|
132979
|
+
"kind": "field",
|
|
132980
|
+
"name": "['_$sbbElement$']",
|
|
132981
|
+
"type": {
|
|
132982
|
+
"text": "boolean"
|
|
132983
|
+
},
|
|
132984
|
+
"privacy": "public",
|
|
132985
|
+
"static": true,
|
|
132986
|
+
"default": "true",
|
|
132987
|
+
"inheritedFrom": {
|
|
132988
|
+
"name": "SbbElement",
|
|
132989
|
+
"module": "core/base-elements/element.js"
|
|
132990
|
+
}
|
|
132991
|
+
},
|
|
132992
|
+
{
|
|
132993
|
+
"kind": "field",
|
|
132994
|
+
"name": "_controllers",
|
|
132995
|
+
"type": {
|
|
132996
|
+
"text": "Set<SbbReactiveController> | undefined"
|
|
132997
|
+
},
|
|
132998
|
+
"privacy": "private",
|
|
132999
|
+
"inheritedFrom": {
|
|
133000
|
+
"name": "SbbElement",
|
|
133001
|
+
"module": "core/base-elements/element.js"
|
|
133002
|
+
}
|
|
133003
|
+
}
|
|
133004
|
+
],
|
|
133005
|
+
"superclass": {
|
|
133006
|
+
"name": "SbbElement",
|
|
133007
|
+
"module": "core/base-elements.js"
|
|
133008
|
+
},
|
|
133009
|
+
"tagName": "sbb-train-blocked-passage",
|
|
133010
|
+
"customElement": true
|
|
133011
|
+
}
|
|
133012
|
+
],
|
|
133013
|
+
"exports": [
|
|
133014
|
+
{
|
|
133015
|
+
"kind": "js",
|
|
133016
|
+
"name": "SbbTrainBlockedPassageElement",
|
|
133017
|
+
"declaration": {
|
|
133018
|
+
"name": "SbbTrainBlockedPassageElement",
|
|
133019
|
+
"module": "train/train-blocked-passage/train-blocked-passage.component.js"
|
|
133020
|
+
}
|
|
133021
|
+
}
|
|
133022
|
+
]
|
|
133023
|
+
},
|
|
132875
133024
|
{
|
|
132876
133025
|
"kind": "javascript-module",
|
|
132877
133026
|
"path": "train/train-formation/train-formation.component.js",
|
|
@@ -133204,155 +133353,6 @@
|
|
|
133204
133353
|
}
|
|
133205
133354
|
]
|
|
133206
133355
|
},
|
|
133207
|
-
{
|
|
133208
|
-
"kind": "javascript-module",
|
|
133209
|
-
"path": "train/train-blocked-passage/train-blocked-passage.component.js",
|
|
133210
|
-
"declarations": [
|
|
133211
|
-
{
|
|
133212
|
-
"kind": "class",
|
|
133213
|
-
"description": "It visually displays a blocked passage between train wagons.",
|
|
133214
|
-
"name": "SbbTrainBlockedPassageElement",
|
|
133215
|
-
"members": [
|
|
133216
|
-
{
|
|
133217
|
-
"kind": "field",
|
|
133218
|
-
"name": "elementName",
|
|
133219
|
-
"type": {
|
|
133220
|
-
"text": "string"
|
|
133221
|
-
},
|
|
133222
|
-
"privacy": "public",
|
|
133223
|
-
"static": true,
|
|
133224
|
-
"readonly": true,
|
|
133225
|
-
"default": "'sbb-train-blocked-passage'",
|
|
133226
|
-
"inheritedFrom": {
|
|
133227
|
-
"name": "SbbElement",
|
|
133228
|
-
"module": "core/base-elements/element.js"
|
|
133229
|
-
}
|
|
133230
|
-
},
|
|
133231
|
-
{
|
|
133232
|
-
"kind": "field",
|
|
133233
|
-
"name": "_hydrationRequired",
|
|
133234
|
-
"type": {
|
|
133235
|
-
"text": "boolean"
|
|
133236
|
-
},
|
|
133237
|
-
"privacy": "private",
|
|
133238
|
-
"default": "!!this.shadowRoot",
|
|
133239
|
-
"inheritedFrom": {
|
|
133240
|
-
"name": "SbbElement",
|
|
133241
|
-
"module": "core/base-elements/element.js"
|
|
133242
|
-
}
|
|
133243
|
-
},
|
|
133244
|
-
{
|
|
133245
|
-
"kind": "field",
|
|
133246
|
-
"name": "_hydrationComplete",
|
|
133247
|
-
"privacy": "private",
|
|
133248
|
-
"default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
|
|
133249
|
-
"inheritedFrom": {
|
|
133250
|
-
"name": "SbbElement",
|
|
133251
|
-
"module": "core/base-elements/element.js"
|
|
133252
|
-
}
|
|
133253
|
-
},
|
|
133254
|
-
{
|
|
133255
|
-
"kind": "field",
|
|
133256
|
-
"name": "_resolveHydration",
|
|
133257
|
-
"type": {
|
|
133258
|
-
"text": "(hydrationRequired: boolean) => void"
|
|
133259
|
-
},
|
|
133260
|
-
"privacy": "private",
|
|
133261
|
-
"inheritedFrom": {
|
|
133262
|
-
"name": "SbbElement",
|
|
133263
|
-
"module": "core/base-elements/element.js"
|
|
133264
|
-
}
|
|
133265
|
-
},
|
|
133266
|
-
{
|
|
133267
|
-
"kind": "field",
|
|
133268
|
-
"name": "hydrationRequired",
|
|
133269
|
-
"type": {
|
|
133270
|
-
"text": "boolean"
|
|
133271
|
-
},
|
|
133272
|
-
"privacy": "protected",
|
|
133273
|
-
"description": "Returns whether hydration is required and not completed.",
|
|
133274
|
-
"readonly": true,
|
|
133275
|
-
"inheritedFrom": {
|
|
133276
|
-
"name": "SbbElement",
|
|
133277
|
-
"module": "core/base-elements/element.js"
|
|
133278
|
-
},
|
|
133279
|
-
"default": "!!this.shadowRoot"
|
|
133280
|
-
},
|
|
133281
|
-
{
|
|
133282
|
-
"kind": "method",
|
|
133283
|
-
"name": "toggleState",
|
|
133284
|
-
"privacy": "protected",
|
|
133285
|
-
"return": {
|
|
133286
|
-
"type": {
|
|
133287
|
-
"text": "void"
|
|
133288
|
-
}
|
|
133289
|
-
},
|
|
133290
|
-
"parameters": [
|
|
133291
|
-
{
|
|
133292
|
-
"name": "value",
|
|
133293
|
-
"type": {
|
|
133294
|
-
"text": "string"
|
|
133295
|
-
}
|
|
133296
|
-
},
|
|
133297
|
-
{
|
|
133298
|
-
"name": "force",
|
|
133299
|
-
"optional": true,
|
|
133300
|
-
"type": {
|
|
133301
|
-
"text": "boolean"
|
|
133302
|
-
}
|
|
133303
|
-
}
|
|
133304
|
-
],
|
|
133305
|
-
"inheritedFrom": {
|
|
133306
|
-
"name": "SbbElement",
|
|
133307
|
-
"module": "core/base-elements/element.js"
|
|
133308
|
-
}
|
|
133309
|
-
},
|
|
133310
|
-
{
|
|
133311
|
-
"kind": "field",
|
|
133312
|
-
"name": "['_$sbbElement$']",
|
|
133313
|
-
"type": {
|
|
133314
|
-
"text": "boolean"
|
|
133315
|
-
},
|
|
133316
|
-
"privacy": "public",
|
|
133317
|
-
"static": true,
|
|
133318
|
-
"default": "true",
|
|
133319
|
-
"inheritedFrom": {
|
|
133320
|
-
"name": "SbbElement",
|
|
133321
|
-
"module": "core/base-elements/element.js"
|
|
133322
|
-
}
|
|
133323
|
-
},
|
|
133324
|
-
{
|
|
133325
|
-
"kind": "field",
|
|
133326
|
-
"name": "_controllers",
|
|
133327
|
-
"type": {
|
|
133328
|
-
"text": "Set<SbbReactiveController> | undefined"
|
|
133329
|
-
},
|
|
133330
|
-
"privacy": "private",
|
|
133331
|
-
"inheritedFrom": {
|
|
133332
|
-
"name": "SbbElement",
|
|
133333
|
-
"module": "core/base-elements/element.js"
|
|
133334
|
-
}
|
|
133335
|
-
}
|
|
133336
|
-
],
|
|
133337
|
-
"superclass": {
|
|
133338
|
-
"name": "SbbElement",
|
|
133339
|
-
"module": "core/base-elements.js"
|
|
133340
|
-
},
|
|
133341
|
-
"tagName": "sbb-train-blocked-passage",
|
|
133342
|
-
"customElement": true
|
|
133343
|
-
}
|
|
133344
|
-
],
|
|
133345
|
-
"exports": [
|
|
133346
|
-
{
|
|
133347
|
-
"kind": "js",
|
|
133348
|
-
"name": "SbbTrainBlockedPassageElement",
|
|
133349
|
-
"declaration": {
|
|
133350
|
-
"name": "SbbTrainBlockedPassageElement",
|
|
133351
|
-
"module": "train/train-blocked-passage/train-blocked-passage.component.js"
|
|
133352
|
-
}
|
|
133353
|
-
}
|
|
133354
|
-
]
|
|
133355
|
-
},
|
|
133356
133356
|
{
|
|
133357
133357
|
"kind": "javascript-module",
|
|
133358
133358
|
"path": "train/train-wagon/train-wagon.component.js",
|