@sbb-esta/lyne-elements 5.1.0 → 5.3.0
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/_index.scss +1 -0
- package/action-group.pure.js +1 -1
- package/alert.pure.js +14 -14
- package/breadcrumb.pure.js +3 -3
- package/calendar.pure.js +68 -68
- package/carousel/_carousel.global.scss +6 -0
- package/carousel.pure.js +1 -1
- package/chip.pure.js +1 -1
- package/clock.pure.js +1 -1
- package/core/styles/_theme.scss +6 -0
- package/core.js +17 -17
- package/custom-elements.json +1626 -221
- package/date-input.pure.js +1 -1
- package/development/action-group.pure.js +1 -1
- package/development/alert.pure.js +14 -14
- package/development/breadcrumb.pure.js +3 -3
- package/development/calendar.pure.js +67 -67
- package/development/carousel.pure.js +1 -1
- package/development/chip/chip-group/chip-group.component.d.ts +2 -1
- package/development/chip.pure.js +3 -0
- package/development/clock.pure.js +15 -17
- package/development/core/i18n/i18n.d.ts +2 -0
- package/development/core.js +15 -3
- package/development/date-input.pure.js +15 -7
- package/development/download/download/download.component.d.ts +51 -0
- package/development/download/download-info/download-info.component.d.ts +59 -0
- package/development/download.d.ts +1 -0
- package/development/download.js +10 -0
- package/development/download.pure.d.ts +3 -0
- package/development/download.pure.js +436 -0
- package/development/expansion-panel.pure.js +6 -6
- package/development/file-selector.pure.js +7 -3
- package/development/flip-card.pure.js +5 -4
- package/development/image.pure.js +8 -8
- package/development/map-container.pure.js +8 -8
- package/development/mini-calendar.pure.js +1 -1
- package/development/notification.pure.js +12 -9
- package/development/option.pure.js +11 -11
- package/development/overlay.pure.js +1 -1
- package/development/paginator.pure.js +18 -18
- package/development/popover.pure.js +1 -1
- package/development/signet.pure.js +17 -17
- package/development/stepper/step/step.component.d.ts +0 -2
- package/development/stepper/stepper/stepper.component.d.ts +2 -2
- package/development/stepper.pure.js +24 -17
- package/development/tabs.pure.js +4 -4
- package/development/teaser.pure.js +1 -1
- package/development/time-input.pure.js +10 -6
- package/development/timetable-form.pure.js +3 -3
- package/development/timetable-occupancy.pure.js +22 -22
- package/development/toast.pure.js +6 -6
- package/development/tooltip.pure.js +4 -2
- package/development/train.pure.js +29 -29
- package/development/visual-checkbox.pure.js +13 -13
- package/download/_download.global.scss +12 -0
- package/download.js +1 -0
- package/download.pure.js +21 -0
- package/expansion-panel.pure.js +6 -6
- package/file-selector.pure.js +2 -2
- package/flip-card.pure.js +1 -1
- package/image.pure.js +8 -8
- package/index.d.ts +3 -0
- package/index.js +3 -0
- package/lean-off-brand-theme.css +45 -5
- package/lean-safety-theme.css +45 -5
- package/lean-theme.css +45 -5
- package/map-container.pure.js +8 -8
- package/mini-calendar.pure.js +1 -1
- package/notification.pure.js +12 -9
- package/off-brand-theme.css +45 -5
- package/option.pure.js +11 -11
- package/overlay/_overlay.global.scss +0 -4
- package/overlay.pure.js +1 -1
- package/package.json +11 -1
- package/paginator.pure.js +18 -18
- package/popover.pure.js +2 -2
- package/safety-theme.css +45 -5
- package/signet.pure.js +17 -17
- package/standard-theme.css +45 -5
- package/stepper.pure.js +3 -3
- package/table/_table.global.scss +46 -1
- package/tabs.pure.js +4 -4
- package/teaser/_teaser.global.scss +4 -0
- package/teaser.pure.js +1 -1
- package/time-input.pure.js +1 -1
- package/timetable-form.pure.js +3 -3
- package/timetable-occupancy.pure.js +22 -22
- package/toast.pure.js +6 -6
- package/tooltip.pure.js +3 -3
- package/train.pure.js +29 -29
- package/visual-checkbox.pure.js +13 -13
package/custom-elements.json
CHANGED
|
@@ -5327,6 +5327,22 @@
|
|
|
5327
5327
|
},
|
|
5328
5328
|
"default": "{ de: 'Abfahrt', en: 'Departure', fr: 'Départ', it: 'Partenza', }"
|
|
5329
5329
|
},
|
|
5330
|
+
{
|
|
5331
|
+
"kind": "variable",
|
|
5332
|
+
"name": "i18nNonAccessible",
|
|
5333
|
+
"type": {
|
|
5334
|
+
"text": "Record<string, string>"
|
|
5335
|
+
},
|
|
5336
|
+
"default": "{ de: 'nicht barrierefrei', en: 'not accessible', fr: 'non accessible', it: 'non accessibile', }"
|
|
5337
|
+
},
|
|
5338
|
+
{
|
|
5339
|
+
"kind": "variable",
|
|
5340
|
+
"name": "i18nDownload",
|
|
5341
|
+
"type": {
|
|
5342
|
+
"text": "Record<string, string>"
|
|
5343
|
+
},
|
|
5344
|
+
"default": "{ de: 'herunterladen', en: 'download', fr: 'télécharger', it: 'scaricare', }"
|
|
5345
|
+
},
|
|
5330
5346
|
{
|
|
5331
5347
|
"kind": "variable",
|
|
5332
5348
|
"name": "i18nDurationMinute",
|
|
@@ -6241,6 +6257,22 @@
|
|
|
6241
6257
|
"module": "core/i18n/i18n.js"
|
|
6242
6258
|
}
|
|
6243
6259
|
},
|
|
6260
|
+
{
|
|
6261
|
+
"kind": "js",
|
|
6262
|
+
"name": "i18nNonAccessible",
|
|
6263
|
+
"declaration": {
|
|
6264
|
+
"name": "i18nNonAccessible",
|
|
6265
|
+
"module": "core/i18n/i18n.js"
|
|
6266
|
+
}
|
|
6267
|
+
},
|
|
6268
|
+
{
|
|
6269
|
+
"kind": "js",
|
|
6270
|
+
"name": "i18nDownload",
|
|
6271
|
+
"declaration": {
|
|
6272
|
+
"name": "i18nDownload",
|
|
6273
|
+
"module": "core/i18n/i18n.js"
|
|
6274
|
+
}
|
|
6275
|
+
},
|
|
6244
6276
|
{
|
|
6245
6277
|
"kind": "js",
|
|
6246
6278
|
"name": "i18nDurationMinute",
|
|
@@ -58688,6 +58720,20 @@
|
|
|
58688
58720
|
"module": "core/base-elements/element.js"
|
|
58689
58721
|
}
|
|
58690
58722
|
},
|
|
58723
|
+
{
|
|
58724
|
+
"kind": "field",
|
|
58725
|
+
"name": "elementDependencies",
|
|
58726
|
+
"type": {
|
|
58727
|
+
"text": "SbbElementType[]"
|
|
58728
|
+
},
|
|
58729
|
+
"privacy": "public",
|
|
58730
|
+
"static": true,
|
|
58731
|
+
"default": "[SbbChipElement]",
|
|
58732
|
+
"inheritedFrom": {
|
|
58733
|
+
"name": "SbbElement",
|
|
58734
|
+
"module": "core/base-elements/element.js"
|
|
58735
|
+
}
|
|
58736
|
+
},
|
|
58691
58737
|
{
|
|
58692
58738
|
"kind": "field",
|
|
58693
58739
|
"name": "role",
|
|
@@ -59497,19 +59543,6 @@
|
|
|
59497
59543
|
"module": "core/base-elements/element.js"
|
|
59498
59544
|
}
|
|
59499
59545
|
},
|
|
59500
|
-
{
|
|
59501
|
-
"kind": "field",
|
|
59502
|
-
"name": "elementDependencies",
|
|
59503
|
-
"type": {
|
|
59504
|
-
"text": "SbbElementType[] | undefined"
|
|
59505
|
-
},
|
|
59506
|
-
"privacy": "public",
|
|
59507
|
-
"static": true,
|
|
59508
|
-
"inheritedFrom": {
|
|
59509
|
-
"name": "SbbElement",
|
|
59510
|
-
"module": "core/base-elements/element.js"
|
|
59511
|
-
}
|
|
59512
|
-
},
|
|
59513
59546
|
{
|
|
59514
59547
|
"kind": "field",
|
|
59515
59548
|
"name": "_controllers",
|
|
@@ -79014,7 +79047,7 @@
|
|
|
79014
79047
|
"kind": "field",
|
|
79015
79048
|
"name": "color",
|
|
79016
79049
|
"type": {
|
|
79017
|
-
"text": "
|
|
79050
|
+
"text": "'white' | 'milk' | 'transparent-bordered' | 'transparent-bordered-dashed'"
|
|
79018
79051
|
},
|
|
79019
79052
|
"privacy": "public",
|
|
79020
79053
|
"default": "'white'",
|
|
@@ -79310,7 +79343,7 @@
|
|
|
79310
79343
|
{
|
|
79311
79344
|
"name": "color",
|
|
79312
79345
|
"type": {
|
|
79313
|
-
"text": "
|
|
79346
|
+
"text": "'white' | 'milk' | 'transparent-bordered' | 'transparent-bordered-dashed'"
|
|
79314
79347
|
},
|
|
79315
79348
|
"default": "'white'",
|
|
79316
79349
|
"description": "Option to set the component's background color.",
|
|
@@ -82939,7 +82972,7 @@
|
|
|
82939
82972
|
"kind": "field",
|
|
82940
82973
|
"name": "pagerPosition",
|
|
82941
82974
|
"type": {
|
|
82942
|
-
"text": "
|
|
82975
|
+
"text": "'start' | 'end'"
|
|
82943
82976
|
},
|
|
82944
82977
|
"privacy": "public",
|
|
82945
82978
|
"default": "'start'",
|
|
@@ -83263,7 +83296,7 @@
|
|
|
83263
83296
|
{
|
|
83264
83297
|
"name": "pager-position",
|
|
83265
83298
|
"type": {
|
|
83266
|
-
"text": "
|
|
83299
|
+
"text": "'start' | 'end'"
|
|
83267
83300
|
},
|
|
83268
83301
|
"default": "'start'",
|
|
83269
83302
|
"description": "Position of the prev/next buttons.",
|
|
@@ -83530,7 +83563,7 @@
|
|
|
83530
83563
|
"kind": "field",
|
|
83531
83564
|
"name": "pagerPosition",
|
|
83532
83565
|
"type": {
|
|
83533
|
-
"text": "
|
|
83566
|
+
"text": "'start' | 'end'"
|
|
83534
83567
|
},
|
|
83535
83568
|
"privacy": "public",
|
|
83536
83569
|
"default": "'start'",
|
|
@@ -84188,7 +84221,7 @@
|
|
|
84188
84221
|
{
|
|
84189
84222
|
"name": "pager-position",
|
|
84190
84223
|
"type": {
|
|
84191
|
-
"text": "
|
|
84224
|
+
"text": "'start' | 'end'"
|
|
84192
84225
|
},
|
|
84193
84226
|
"default": "'start'",
|
|
84194
84227
|
"description": "Position of the prev/next buttons.",
|
|
@@ -86578,7 +86611,7 @@
|
|
|
86578
86611
|
"kind": "field",
|
|
86579
86612
|
"name": "pagerPosition",
|
|
86580
86613
|
"type": {
|
|
86581
|
-
"text": "
|
|
86614
|
+
"text": "'start' | 'end'"
|
|
86582
86615
|
},
|
|
86583
86616
|
"privacy": "public",
|
|
86584
86617
|
"default": "'start'",
|
|
@@ -87387,7 +87420,7 @@
|
|
|
87387
87420
|
{
|
|
87388
87421
|
"name": "pager-position",
|
|
87389
87422
|
"type": {
|
|
87390
|
-
"text": "
|
|
87423
|
+
"text": "'start' | 'end'"
|
|
87391
87424
|
},
|
|
87392
87425
|
"default": "'start'",
|
|
87393
87426
|
"description": "Position of the prev/next buttons: if `pageSizeOptions` is set,\nthe sbb-select for the pageSize change will be positioned oppositely, with the page numbers always in the center.",
|
|
@@ -88671,7 +88704,7 @@
|
|
|
88671
88704
|
"privacy": "private",
|
|
88672
88705
|
"return": {
|
|
88673
88706
|
"type": {
|
|
88674
|
-
"text": "
|
|
88707
|
+
"text": "void"
|
|
88675
88708
|
}
|
|
88676
88709
|
}
|
|
88677
88710
|
},
|
|
@@ -88681,7 +88714,7 @@
|
|
|
88681
88714
|
"privacy": "private",
|
|
88682
88715
|
"return": {
|
|
88683
88716
|
"type": {
|
|
88684
|
-
"text": "
|
|
88717
|
+
"text": "void"
|
|
88685
88718
|
}
|
|
88686
88719
|
},
|
|
88687
88720
|
"description": "Starts the clock by defining the hands starting position then starting the animations."
|
|
@@ -88692,7 +88725,7 @@
|
|
|
88692
88725
|
"privacy": "private",
|
|
88693
88726
|
"return": {
|
|
88694
88727
|
"type": {
|
|
88695
|
-
"text": "
|
|
88728
|
+
"text": "void"
|
|
88696
88729
|
}
|
|
88697
88730
|
},
|
|
88698
88731
|
"description": "Stops the clock by removing all the animations."
|
|
@@ -89236,7 +89269,7 @@
|
|
|
89236
89269
|
"kind": "field",
|
|
89237
89270
|
"name": "color",
|
|
89238
89271
|
"type": {
|
|
89239
|
-
"text": "
|
|
89272
|
+
"text": "'transparent' | 'white' | 'milk' | 'midnight' | 'charcoal'"
|
|
89240
89273
|
},
|
|
89241
89274
|
"privacy": "public",
|
|
89242
89275
|
"default": "'white'",
|
|
@@ -89550,7 +89583,7 @@
|
|
|
89550
89583
|
{
|
|
89551
89584
|
"name": "color",
|
|
89552
89585
|
"type": {
|
|
89553
|
-
"text": "
|
|
89586
|
+
"text": "'transparent' | 'white' | 'milk' | 'midnight' | 'charcoal'"
|
|
89554
89587
|
},
|
|
89555
89588
|
"default": "'white'",
|
|
89556
89589
|
"description": "Color of the container, like transparent, white etc.",
|
|
@@ -89637,7 +89670,7 @@
|
|
|
89637
89670
|
"kind": "field",
|
|
89638
89671
|
"name": "color",
|
|
89639
89672
|
"type": {
|
|
89640
|
-
"text": "
|
|
89673
|
+
"text": "'white' | 'milk' | 'midnight' | 'charcoal' | null"
|
|
89641
89674
|
},
|
|
89642
89675
|
"privacy": "public",
|
|
89643
89676
|
"default": "null",
|
|
@@ -90177,7 +90210,7 @@
|
|
|
90177
90210
|
{
|
|
90178
90211
|
"name": "color",
|
|
90179
90212
|
"type": {
|
|
90180
|
-
"text": "
|
|
90213
|
+
"text": "'white' | 'milk' | 'midnight' | 'charcoal' | null"
|
|
90181
90214
|
},
|
|
90182
90215
|
"default": "null",
|
|
90183
90216
|
"description": "Color of the container, like transparent, white etc.",
|
|
@@ -100784,7 +100817,16 @@
|
|
|
100784
100817
|
"type": {
|
|
100785
100818
|
"text": "void"
|
|
100786
100819
|
}
|
|
100787
|
-
}
|
|
100820
|
+
},
|
|
100821
|
+
"parameters": [
|
|
100822
|
+
{
|
|
100823
|
+
"name": "except",
|
|
100824
|
+
"optional": true,
|
|
100825
|
+
"type": {
|
|
100826
|
+
"text": "keyof ValidityStateFlags"
|
|
100827
|
+
}
|
|
100828
|
+
}
|
|
100829
|
+
]
|
|
100788
100830
|
},
|
|
100789
100831
|
{
|
|
100790
100832
|
"kind": "field",
|
|
@@ -105684,7 +105726,7 @@
|
|
|
105684
105726
|
"kind": "field",
|
|
105685
105727
|
"name": "backdrop",
|
|
105686
105728
|
"type": {
|
|
105687
|
-
"text": "
|
|
105729
|
+
"text": "'opaque' | 'translucent'"
|
|
105688
105730
|
},
|
|
105689
105731
|
"privacy": "public",
|
|
105690
105732
|
"default": "'opaque'",
|
|
@@ -106741,7 +106783,7 @@
|
|
|
106741
106783
|
{
|
|
106742
106784
|
"name": "backdrop",
|
|
106743
106785
|
"type": {
|
|
106744
|
-
"text": "
|
|
106786
|
+
"text": "'opaque' | 'translucent'"
|
|
106745
106787
|
},
|
|
106746
106788
|
"default": "'opaque'",
|
|
106747
106789
|
"description": "Backdrop density.",
|
|
@@ -107166,38 +107208,1341 @@
|
|
|
107166
107208
|
}
|
|
107167
107209
|
],
|
|
107168
107210
|
"superclass": {
|
|
107169
|
-
"name": "SbbElement",
|
|
107211
|
+
"name": "SbbElement",
|
|
107212
|
+
"module": "core.js"
|
|
107213
|
+
},
|
|
107214
|
+
"tagName": "sbb-dialog-content",
|
|
107215
|
+
"customElement": true
|
|
107216
|
+
}
|
|
107217
|
+
],
|
|
107218
|
+
"exports": [
|
|
107219
|
+
{
|
|
107220
|
+
"kind": "js",
|
|
107221
|
+
"name": "SbbDialogContentElement",
|
|
107222
|
+
"declaration": {
|
|
107223
|
+
"name": "SbbDialogContentElement",
|
|
107224
|
+
"module": "dialog/dialog-content/dialog-content.component.js"
|
|
107225
|
+
}
|
|
107226
|
+
}
|
|
107227
|
+
]
|
|
107228
|
+
},
|
|
107229
|
+
{
|
|
107230
|
+
"kind": "javascript-module",
|
|
107231
|
+
"path": "dialog/dialog-title/dialog-title.component.js",
|
|
107232
|
+
"declarations": [
|
|
107233
|
+
{
|
|
107234
|
+
"kind": "class",
|
|
107235
|
+
"description": "It displays a title inside a dialog header.",
|
|
107236
|
+
"name": "SbbDialogTitleElement",
|
|
107237
|
+
"slots": [
|
|
107238
|
+
{
|
|
107239
|
+
"description": "Use the unnamed slot for the content of the dialog-title.",
|
|
107240
|
+
"name": ""
|
|
107241
|
+
}
|
|
107242
|
+
],
|
|
107243
|
+
"members": [
|
|
107244
|
+
{
|
|
107245
|
+
"kind": "field",
|
|
107246
|
+
"name": "elementName",
|
|
107247
|
+
"type": {
|
|
107248
|
+
"text": "string"
|
|
107249
|
+
},
|
|
107250
|
+
"privacy": "public",
|
|
107251
|
+
"static": true,
|
|
107252
|
+
"readonly": true,
|
|
107253
|
+
"inheritedFrom": {
|
|
107254
|
+
"name": "SbbElement",
|
|
107255
|
+
"module": "core/base-elements/element.js"
|
|
107256
|
+
},
|
|
107257
|
+
"default": "'sbb-dialog-title'"
|
|
107258
|
+
},
|
|
107259
|
+
{
|
|
107260
|
+
"kind": "field",
|
|
107261
|
+
"name": "level",
|
|
107262
|
+
"type": {
|
|
107263
|
+
"text": "SbbHeadingLevel",
|
|
107264
|
+
"resolved": "'1' | '2' | '3' | '4' | '5' | '6'"
|
|
107265
|
+
},
|
|
107266
|
+
"privacy": "public",
|
|
107267
|
+
"default": "'2'",
|
|
107268
|
+
"description": "Title level",
|
|
107269
|
+
"attribute": "level",
|
|
107270
|
+
"reflects": true,
|
|
107271
|
+
"inheritedFrom": {
|
|
107272
|
+
"name": "SbbTitleBase",
|
|
107273
|
+
"module": "title/title-base.js"
|
|
107274
|
+
}
|
|
107275
|
+
},
|
|
107276
|
+
{
|
|
107277
|
+
"kind": "field",
|
|
107278
|
+
"name": "visualLevel",
|
|
107279
|
+
"type": {
|
|
107280
|
+
"text": "SbbHeadingLevel | null",
|
|
107281
|
+
"resolved": "'1' | '2' | '3' | '4' | '5' | '6' | null"
|
|
107282
|
+
},
|
|
107283
|
+
"privacy": "public",
|
|
107284
|
+
"default": "'4'",
|
|
107285
|
+
"description": "Visual level for the title.",
|
|
107286
|
+
"attribute": "visual-level",
|
|
107287
|
+
"reflects": true,
|
|
107288
|
+
"inheritedFrom": {
|
|
107289
|
+
"name": "SbbTitleBase",
|
|
107290
|
+
"module": "title/title-base.js"
|
|
107291
|
+
}
|
|
107292
|
+
},
|
|
107293
|
+
{
|
|
107294
|
+
"kind": "field",
|
|
107295
|
+
"name": "negative",
|
|
107296
|
+
"type": {
|
|
107297
|
+
"text": "boolean"
|
|
107298
|
+
},
|
|
107299
|
+
"privacy": "public",
|
|
107300
|
+
"default": "false",
|
|
107301
|
+
"description": "Negative coloring variant flag.",
|
|
107302
|
+
"attribute": "negative",
|
|
107303
|
+
"reflects": true,
|
|
107304
|
+
"inheritedFrom": {
|
|
107305
|
+
"name": "SbbNegativeMixin",
|
|
107306
|
+
"module": "core/mixins/negative-mixin.js"
|
|
107307
|
+
}
|
|
107308
|
+
},
|
|
107309
|
+
{
|
|
107310
|
+
"kind": "field",
|
|
107311
|
+
"name": "role",
|
|
107312
|
+
"type": {
|
|
107313
|
+
"text": "string"
|
|
107314
|
+
},
|
|
107315
|
+
"privacy": "public",
|
|
107316
|
+
"static": true,
|
|
107317
|
+
"default": "'heading'",
|
|
107318
|
+
"inheritedFrom": {
|
|
107319
|
+
"name": "SbbElement",
|
|
107320
|
+
"module": "core/base-elements/element.js"
|
|
107321
|
+
}
|
|
107322
|
+
},
|
|
107323
|
+
{
|
|
107324
|
+
"kind": "field",
|
|
107325
|
+
"name": "['_$sbbElement$']",
|
|
107326
|
+
"type": {
|
|
107327
|
+
"text": "boolean"
|
|
107328
|
+
},
|
|
107329
|
+
"privacy": "public",
|
|
107330
|
+
"static": true,
|
|
107331
|
+
"default": "true",
|
|
107332
|
+
"inheritedFrom": {
|
|
107333
|
+
"name": "SbbElement",
|
|
107334
|
+
"module": "core/base-elements/element.js"
|
|
107335
|
+
}
|
|
107336
|
+
},
|
|
107337
|
+
{
|
|
107338
|
+
"kind": "field",
|
|
107339
|
+
"name": "elementDependencies",
|
|
107340
|
+
"type": {
|
|
107341
|
+
"text": "SbbElementType[] | undefined"
|
|
107342
|
+
},
|
|
107343
|
+
"privacy": "public",
|
|
107344
|
+
"static": true,
|
|
107345
|
+
"inheritedFrom": {
|
|
107346
|
+
"name": "SbbElement",
|
|
107347
|
+
"module": "core/base-elements/element.js"
|
|
107348
|
+
}
|
|
107349
|
+
},
|
|
107350
|
+
{
|
|
107351
|
+
"kind": "field",
|
|
107352
|
+
"name": "_controllers",
|
|
107353
|
+
"type": {
|
|
107354
|
+
"text": "Set<SbbReactiveController> | undefined"
|
|
107355
|
+
},
|
|
107356
|
+
"privacy": "private",
|
|
107357
|
+
"inheritedFrom": {
|
|
107358
|
+
"name": "SbbElement",
|
|
107359
|
+
"module": "core/base-elements/element.js"
|
|
107360
|
+
}
|
|
107361
|
+
},
|
|
107362
|
+
{
|
|
107363
|
+
"kind": "field",
|
|
107364
|
+
"name": "_hydrationRequired",
|
|
107365
|
+
"type": {
|
|
107366
|
+
"text": "boolean"
|
|
107367
|
+
},
|
|
107368
|
+
"privacy": "private",
|
|
107369
|
+
"default": "!!this.shadowRoot",
|
|
107370
|
+
"inheritedFrom": {
|
|
107371
|
+
"name": "SbbElement",
|
|
107372
|
+
"module": "core/base-elements/element.js"
|
|
107373
|
+
}
|
|
107374
|
+
},
|
|
107375
|
+
{
|
|
107376
|
+
"kind": "field",
|
|
107377
|
+
"name": "_hydrationComplete",
|
|
107378
|
+
"privacy": "private",
|
|
107379
|
+
"default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
|
|
107380
|
+
"inheritedFrom": {
|
|
107381
|
+
"name": "SbbElement",
|
|
107382
|
+
"module": "core/base-elements/element.js"
|
|
107383
|
+
}
|
|
107384
|
+
},
|
|
107385
|
+
{
|
|
107386
|
+
"kind": "field",
|
|
107387
|
+
"name": "_resolveHydration",
|
|
107388
|
+
"type": {
|
|
107389
|
+
"text": "(hydrationRequired: boolean) => void"
|
|
107390
|
+
},
|
|
107391
|
+
"privacy": "private",
|
|
107392
|
+
"inheritedFrom": {
|
|
107393
|
+
"name": "SbbElement",
|
|
107394
|
+
"module": "core/base-elements/element.js"
|
|
107395
|
+
}
|
|
107396
|
+
},
|
|
107397
|
+
{
|
|
107398
|
+
"kind": "field",
|
|
107399
|
+
"name": "_textObserver",
|
|
107400
|
+
"type": {
|
|
107401
|
+
"text": "MutationObserver | undefined"
|
|
107402
|
+
},
|
|
107403
|
+
"privacy": "private",
|
|
107404
|
+
"inheritedFrom": {
|
|
107405
|
+
"name": "SbbElement",
|
|
107406
|
+
"module": "core/base-elements/element.js"
|
|
107407
|
+
}
|
|
107408
|
+
},
|
|
107409
|
+
{
|
|
107410
|
+
"kind": "field",
|
|
107411
|
+
"name": "hydrationRequired",
|
|
107412
|
+
"type": {
|
|
107413
|
+
"text": "boolean"
|
|
107414
|
+
},
|
|
107415
|
+
"privacy": "protected",
|
|
107416
|
+
"description": "Returns whether hydration is required and not completed.",
|
|
107417
|
+
"readonly": true,
|
|
107418
|
+
"inheritedFrom": {
|
|
107419
|
+
"name": "SbbElement",
|
|
107420
|
+
"module": "core/base-elements/element.js"
|
|
107421
|
+
},
|
|
107422
|
+
"default": "!!this.shadowRoot"
|
|
107423
|
+
},
|
|
107424
|
+
{
|
|
107425
|
+
"kind": "method",
|
|
107426
|
+
"name": "finalizeStyles",
|
|
107427
|
+
"privacy": "protected",
|
|
107428
|
+
"static": true,
|
|
107429
|
+
"return": {
|
|
107430
|
+
"type": {
|
|
107431
|
+
"text": "CSSResultOrNative[]"
|
|
107432
|
+
}
|
|
107433
|
+
},
|
|
107434
|
+
"parameters": [
|
|
107435
|
+
{
|
|
107436
|
+
"name": "_styles",
|
|
107437
|
+
"type": {
|
|
107438
|
+
"text": "CSSResultGroup"
|
|
107439
|
+
}
|
|
107440
|
+
}
|
|
107441
|
+
],
|
|
107442
|
+
"description": "Collects `styles` from every class in the prototype chain (using `Object.hasOwn`)\nand merges them in top-down order. This means each class/mixin only needs to declare\nits **own** styles — there is no need to reference `super.styles`.\n\nLit's default behaviour already walks the chain, but fails for mixins where\n`super.styles` resolves to the wrong class. This override fixes that.",
|
|
107443
|
+
"inheritedFrom": {
|
|
107444
|
+
"name": "SbbElement",
|
|
107445
|
+
"module": "core/base-elements/element.js"
|
|
107446
|
+
}
|
|
107447
|
+
},
|
|
107448
|
+
{
|
|
107449
|
+
"kind": "method",
|
|
107450
|
+
"name": "toggleState",
|
|
107451
|
+
"privacy": "protected",
|
|
107452
|
+
"return": {
|
|
107453
|
+
"type": {
|
|
107454
|
+
"text": "void"
|
|
107455
|
+
}
|
|
107456
|
+
},
|
|
107457
|
+
"parameters": [
|
|
107458
|
+
{
|
|
107459
|
+
"name": "value",
|
|
107460
|
+
"type": {
|
|
107461
|
+
"text": "string"
|
|
107462
|
+
}
|
|
107463
|
+
},
|
|
107464
|
+
{
|
|
107465
|
+
"name": "force",
|
|
107466
|
+
"optional": true,
|
|
107467
|
+
"type": {
|
|
107468
|
+
"text": "boolean"
|
|
107469
|
+
}
|
|
107470
|
+
}
|
|
107471
|
+
],
|
|
107472
|
+
"inheritedFrom": {
|
|
107473
|
+
"name": "SbbElement",
|
|
107474
|
+
"module": "core/base-elements/element.js"
|
|
107475
|
+
}
|
|
107476
|
+
},
|
|
107477
|
+
{
|
|
107478
|
+
"kind": "method",
|
|
107479
|
+
"name": "_slotchangeHandler",
|
|
107480
|
+
"privacy": "private",
|
|
107481
|
+
"return": {
|
|
107482
|
+
"type": {
|
|
107483
|
+
"text": "void"
|
|
107484
|
+
}
|
|
107485
|
+
},
|
|
107486
|
+
"parameters": [
|
|
107487
|
+
{
|
|
107488
|
+
"name": "event",
|
|
107489
|
+
"type": {
|
|
107490
|
+
"text": "Event"
|
|
107491
|
+
}
|
|
107492
|
+
},
|
|
107493
|
+
{
|
|
107494
|
+
"name": "slot",
|
|
107495
|
+
"type": {
|
|
107496
|
+
"text": "HTMLSlotElement"
|
|
107497
|
+
}
|
|
107498
|
+
}
|
|
107499
|
+
],
|
|
107500
|
+
"inheritedFrom": {
|
|
107501
|
+
"name": "SbbElement",
|
|
107502
|
+
"module": "core/base-elements/element.js"
|
|
107503
|
+
}
|
|
107504
|
+
},
|
|
107505
|
+
{
|
|
107506
|
+
"kind": "method",
|
|
107507
|
+
"name": "_handleSlotChangeForSlottedState",
|
|
107508
|
+
"privacy": "private",
|
|
107509
|
+
"return": {
|
|
107510
|
+
"type": {
|
|
107511
|
+
"text": "void"
|
|
107512
|
+
}
|
|
107513
|
+
},
|
|
107514
|
+
"parameters": [
|
|
107515
|
+
{
|
|
107516
|
+
"name": "slot",
|
|
107517
|
+
"type": {
|
|
107518
|
+
"text": "HTMLSlotElement"
|
|
107519
|
+
}
|
|
107520
|
+
}
|
|
107521
|
+
],
|
|
107522
|
+
"inheritedFrom": {
|
|
107523
|
+
"name": "SbbElement",
|
|
107524
|
+
"module": "core/base-elements/element.js"
|
|
107525
|
+
}
|
|
107526
|
+
},
|
|
107527
|
+
{
|
|
107528
|
+
"kind": "method",
|
|
107529
|
+
"name": "_updateSlottedState",
|
|
107530
|
+
"privacy": "private",
|
|
107531
|
+
"return": {
|
|
107532
|
+
"type": {
|
|
107533
|
+
"text": "void"
|
|
107534
|
+
}
|
|
107535
|
+
},
|
|
107536
|
+
"parameters": [
|
|
107537
|
+
{
|
|
107538
|
+
"name": "slot",
|
|
107539
|
+
"type": {
|
|
107540
|
+
"text": "HTMLSlotElement"
|
|
107541
|
+
}
|
|
107542
|
+
}
|
|
107543
|
+
],
|
|
107544
|
+
"inheritedFrom": {
|
|
107545
|
+
"name": "SbbElement",
|
|
107546
|
+
"module": "core/base-elements/element.js"
|
|
107547
|
+
}
|
|
107548
|
+
},
|
|
107549
|
+
{
|
|
107550
|
+
"kind": "method",
|
|
107551
|
+
"name": "_observeTextNodesInSlot",
|
|
107552
|
+
"privacy": "private",
|
|
107553
|
+
"return": {
|
|
107554
|
+
"type": {
|
|
107555
|
+
"text": "void"
|
|
107556
|
+
}
|
|
107557
|
+
},
|
|
107558
|
+
"parameters": [
|
|
107559
|
+
{
|
|
107560
|
+
"name": "slot",
|
|
107561
|
+
"type": {
|
|
107562
|
+
"text": "HTMLSlotElement"
|
|
107563
|
+
}
|
|
107564
|
+
}
|
|
107565
|
+
],
|
|
107566
|
+
"inheritedFrom": {
|
|
107567
|
+
"name": "SbbElement",
|
|
107568
|
+
"module": "core/base-elements/element.js"
|
|
107569
|
+
}
|
|
107570
|
+
},
|
|
107571
|
+
{
|
|
107572
|
+
"kind": "method",
|
|
107573
|
+
"name": "_hasSlottedContent",
|
|
107574
|
+
"privacy": "private",
|
|
107575
|
+
"return": {
|
|
107576
|
+
"type": {
|
|
107577
|
+
"text": "boolean"
|
|
107578
|
+
}
|
|
107579
|
+
},
|
|
107580
|
+
"parameters": [
|
|
107581
|
+
{
|
|
107582
|
+
"name": "slot",
|
|
107583
|
+
"type": {
|
|
107584
|
+
"text": "HTMLSlotElement"
|
|
107585
|
+
}
|
|
107586
|
+
}
|
|
107587
|
+
],
|
|
107588
|
+
"inheritedFrom": {
|
|
107589
|
+
"name": "SbbElement",
|
|
107590
|
+
"module": "core/base-elements/element.js"
|
|
107591
|
+
}
|
|
107592
|
+
}
|
|
107593
|
+
],
|
|
107594
|
+
"mixins": [
|
|
107595
|
+
{
|
|
107596
|
+
"name": "SbbNegativeMixin",
|
|
107597
|
+
"module": "core.js"
|
|
107598
|
+
}
|
|
107599
|
+
],
|
|
107600
|
+
"superclass": {
|
|
107601
|
+
"name": "SbbTitleBase",
|
|
107602
|
+
"module": "title.pure.js"
|
|
107603
|
+
},
|
|
107604
|
+
"tagName": "sbb-dialog-title",
|
|
107605
|
+
"customElement": true,
|
|
107606
|
+
"attributes": [
|
|
107607
|
+
{
|
|
107608
|
+
"name": "negative",
|
|
107609
|
+
"type": {
|
|
107610
|
+
"text": "boolean"
|
|
107611
|
+
},
|
|
107612
|
+
"default": "false",
|
|
107613
|
+
"description": "Negative coloring variant flag.",
|
|
107614
|
+
"fieldName": "negative",
|
|
107615
|
+
"inheritedFrom": {
|
|
107616
|
+
"name": "SbbNegativeMixin",
|
|
107617
|
+
"module": "core/mixins/negative-mixin.js"
|
|
107618
|
+
}
|
|
107619
|
+
},
|
|
107620
|
+
{
|
|
107621
|
+
"name": "level",
|
|
107622
|
+
"type": {
|
|
107623
|
+
"text": "SbbHeadingLevel",
|
|
107624
|
+
"resolved": "'1' | '2' | '3' | '4' | '5' | '6'"
|
|
107625
|
+
},
|
|
107626
|
+
"default": "'1'",
|
|
107627
|
+
"description": "Title level",
|
|
107628
|
+
"fieldName": "level",
|
|
107629
|
+
"inheritedFrom": {
|
|
107630
|
+
"name": "SbbTitleBase",
|
|
107631
|
+
"module": "title/title-base.js"
|
|
107632
|
+
}
|
|
107633
|
+
},
|
|
107634
|
+
{
|
|
107635
|
+
"name": "visual-level",
|
|
107636
|
+
"type": {
|
|
107637
|
+
"text": "SbbHeadingLevel | null",
|
|
107638
|
+
"resolved": "'1' | '2' | '3' | '4' | '5' | '6' | null"
|
|
107639
|
+
},
|
|
107640
|
+
"default": "null",
|
|
107641
|
+
"description": "Visual level for the title.",
|
|
107642
|
+
"fieldName": "visualLevel",
|
|
107643
|
+
"inheritedFrom": {
|
|
107644
|
+
"name": "SbbTitleBase",
|
|
107645
|
+
"module": "title/title-base.js"
|
|
107646
|
+
}
|
|
107647
|
+
}
|
|
107648
|
+
]
|
|
107649
|
+
}
|
|
107650
|
+
],
|
|
107651
|
+
"exports": [
|
|
107652
|
+
{
|
|
107653
|
+
"kind": "js",
|
|
107654
|
+
"name": "SbbDialogTitleElement",
|
|
107655
|
+
"declaration": {
|
|
107656
|
+
"name": "SbbDialogTitleElement",
|
|
107657
|
+
"module": "dialog/dialog-title/dialog-title.component.js"
|
|
107658
|
+
}
|
|
107659
|
+
}
|
|
107660
|
+
]
|
|
107661
|
+
},
|
|
107662
|
+
{
|
|
107663
|
+
"kind": "javascript-module",
|
|
107664
|
+
"path": "dialog.pure.js",
|
|
107665
|
+
"declarations": [],
|
|
107666
|
+
"exports": [
|
|
107667
|
+
{
|
|
107668
|
+
"kind": "js",
|
|
107669
|
+
"name": "*",
|
|
107670
|
+
"declaration": {
|
|
107671
|
+
"name": "*",
|
|
107672
|
+
"module": "dialog/dialog-actions/dialog-actions.component.js"
|
|
107673
|
+
}
|
|
107674
|
+
},
|
|
107675
|
+
{
|
|
107676
|
+
"kind": "js",
|
|
107677
|
+
"name": "*",
|
|
107678
|
+
"declaration": {
|
|
107679
|
+
"name": "*",
|
|
107680
|
+
"module": "dialog/dialog-close-button/dialog-close-button.component.js"
|
|
107681
|
+
}
|
|
107682
|
+
},
|
|
107683
|
+
{
|
|
107684
|
+
"kind": "js",
|
|
107685
|
+
"name": "*",
|
|
107686
|
+
"declaration": {
|
|
107687
|
+
"name": "*",
|
|
107688
|
+
"module": "dialog/dialog-content/dialog-content.component.js"
|
|
107689
|
+
}
|
|
107690
|
+
},
|
|
107691
|
+
{
|
|
107692
|
+
"kind": "js",
|
|
107693
|
+
"name": "*",
|
|
107694
|
+
"declaration": {
|
|
107695
|
+
"name": "*",
|
|
107696
|
+
"module": "dialog/dialog-title/dialog-title.component.js"
|
|
107697
|
+
}
|
|
107698
|
+
},
|
|
107699
|
+
{
|
|
107700
|
+
"kind": "js",
|
|
107701
|
+
"name": "*",
|
|
107702
|
+
"declaration": {
|
|
107703
|
+
"name": "*",
|
|
107704
|
+
"module": "dialog/dialog/dialog.component.js"
|
|
107705
|
+
}
|
|
107706
|
+
}
|
|
107707
|
+
]
|
|
107708
|
+
},
|
|
107709
|
+
{
|
|
107710
|
+
"kind": "javascript-module",
|
|
107711
|
+
"path": "dialog.js",
|
|
107712
|
+
"declarations": [],
|
|
107713
|
+
"exports": [
|
|
107714
|
+
{
|
|
107715
|
+
"kind": "js",
|
|
107716
|
+
"name": "*",
|
|
107717
|
+
"declaration": {
|
|
107718
|
+
"name": "*",
|
|
107719
|
+
"module": "dialog.pure.js"
|
|
107720
|
+
}
|
|
107721
|
+
}
|
|
107722
|
+
]
|
|
107723
|
+
},
|
|
107724
|
+
{
|
|
107725
|
+
"kind": "javascript-module",
|
|
107726
|
+
"path": "divider.js",
|
|
107727
|
+
"declarations": [],
|
|
107728
|
+
"exports": [
|
|
107729
|
+
{
|
|
107730
|
+
"kind": "js",
|
|
107731
|
+
"name": "*",
|
|
107732
|
+
"declaration": {
|
|
107733
|
+
"name": "*",
|
|
107734
|
+
"module": "divider.pure.js"
|
|
107735
|
+
}
|
|
107736
|
+
}
|
|
107737
|
+
]
|
|
107738
|
+
},
|
|
107739
|
+
{
|
|
107740
|
+
"kind": "javascript-module",
|
|
107741
|
+
"path": "download/download/download.component.js",
|
|
107742
|
+
"declarations": [
|
|
107743
|
+
{
|
|
107744
|
+
"kind": "class",
|
|
107745
|
+
"description": "It displays a downloadable document, styled as a card.\n\nInherits link properties from `SbbLinkBaseElement`: `href`, `target`, `rel`\nand `accessibilityLabel`. The download behavior is always enabled.",
|
|
107746
|
+
"name": "SbbDownloadElement",
|
|
107747
|
+
"slots": [
|
|
107748
|
+
{
|
|
107749
|
+
"description": "Use the unnamed slot to add custom content. Optional.",
|
|
107750
|
+
"name": ""
|
|
107751
|
+
},
|
|
107752
|
+
{
|
|
107753
|
+
"description": "Slot used to render a `sbb-download-info`. A `sbb-download-info` placed in the unnamed slot is automatically moved to this slot. Optional.",
|
|
107754
|
+
"name": "info"
|
|
107755
|
+
},
|
|
107756
|
+
{
|
|
107757
|
+
"description": "Use this slot to display a custom icon, by providing a `sbb-icon` component. Optional.",
|
|
107758
|
+
"name": "icon"
|
|
107759
|
+
}
|
|
107760
|
+
],
|
|
107761
|
+
"members": [
|
|
107762
|
+
{
|
|
107763
|
+
"kind": "field",
|
|
107764
|
+
"name": "elementName",
|
|
107765
|
+
"type": {
|
|
107766
|
+
"text": "string"
|
|
107767
|
+
},
|
|
107768
|
+
"privacy": "public",
|
|
107769
|
+
"static": true,
|
|
107770
|
+
"readonly": true,
|
|
107771
|
+
"inheritedFrom": {
|
|
107772
|
+
"name": "SbbElement",
|
|
107773
|
+
"module": "core/base-elements/element.js"
|
|
107774
|
+
},
|
|
107775
|
+
"default": "'sbb-download'"
|
|
107776
|
+
},
|
|
107777
|
+
{
|
|
107778
|
+
"kind": "field",
|
|
107779
|
+
"name": "elementDependencies",
|
|
107780
|
+
"type": {
|
|
107781
|
+
"text": "SbbElementType[]"
|
|
107782
|
+
},
|
|
107783
|
+
"privacy": "public",
|
|
107784
|
+
"static": true,
|
|
107785
|
+
"inheritedFrom": {
|
|
107786
|
+
"name": "SbbElement",
|
|
107787
|
+
"module": "core/base-elements/element.js"
|
|
107788
|
+
},
|
|
107789
|
+
"default": "[SbbSecondaryButtonStaticElement]"
|
|
107790
|
+
},
|
|
107791
|
+
{
|
|
107792
|
+
"kind": "field",
|
|
107793
|
+
"name": "color",
|
|
107794
|
+
"type": {
|
|
107795
|
+
"text": "'white' | 'milk'"
|
|
107796
|
+
},
|
|
107797
|
+
"privacy": "public",
|
|
107798
|
+
"default": "'white'",
|
|
107799
|
+
"description": "Option to set the component's background color.",
|
|
107800
|
+
"attribute": "color",
|
|
107801
|
+
"reflects": true
|
|
107802
|
+
},
|
|
107803
|
+
{
|
|
107804
|
+
"kind": "field",
|
|
107805
|
+
"name": "label",
|
|
107806
|
+
"type": {
|
|
107807
|
+
"text": "string"
|
|
107808
|
+
},
|
|
107809
|
+
"privacy": "public",
|
|
107810
|
+
"default": "''",
|
|
107811
|
+
"description": "The label of the download. Defaults to the file name of the `href`.",
|
|
107812
|
+
"attribute": "label"
|
|
107813
|
+
},
|
|
107814
|
+
{
|
|
107815
|
+
"kind": "field",
|
|
107816
|
+
"name": "download",
|
|
107817
|
+
"type": {
|
|
107818
|
+
"text": "boolean"
|
|
107819
|
+
},
|
|
107820
|
+
"privacy": "public",
|
|
107821
|
+
"default": "true",
|
|
107822
|
+
"description": "The download behavior is always enabled and handled internally, therefore\nthis property cannot be disabled and is not reflected to the host element.",
|
|
107823
|
+
"attribute": "download",
|
|
107824
|
+
"reflects": true,
|
|
107825
|
+
"inheritedFrom": {
|
|
107826
|
+
"name": "SbbLinkBaseElement",
|
|
107827
|
+
"module": "core/base-elements/link-base-element.js"
|
|
107828
|
+
}
|
|
107829
|
+
},
|
|
107830
|
+
{
|
|
107831
|
+
"kind": "field",
|
|
107832
|
+
"name": "fileName",
|
|
107833
|
+
"type": {
|
|
107834
|
+
"text": "string"
|
|
107835
|
+
},
|
|
107836
|
+
"privacy": "public",
|
|
107837
|
+
"description": "The file name extracted from the `href` (e.g. `report.pdf`).",
|
|
107838
|
+
"readonly": true
|
|
107839
|
+
},
|
|
107840
|
+
{
|
|
107841
|
+
"kind": "field",
|
|
107842
|
+
"name": "fileExtension",
|
|
107843
|
+
"type": {
|
|
107844
|
+
"text": "string"
|
|
107845
|
+
},
|
|
107846
|
+
"privacy": "public",
|
|
107847
|
+
"description": "The lower-cased file extension extracted from the `href` (e.g. `pdf`), if any.",
|
|
107848
|
+
"readonly": true
|
|
107849
|
+
},
|
|
107850
|
+
{
|
|
107851
|
+
"kind": "field",
|
|
107852
|
+
"name": "_languageController",
|
|
107853
|
+
"privacy": "private",
|
|
107854
|
+
"default": "new SbbLanguageController(this)"
|
|
107855
|
+
},
|
|
107856
|
+
{
|
|
107857
|
+
"kind": "method",
|
|
107858
|
+
"name": "renderIconName",
|
|
107859
|
+
"privacy": "protected",
|
|
107860
|
+
"return": {
|
|
107861
|
+
"type": {
|
|
107862
|
+
"text": "string"
|
|
107863
|
+
}
|
|
107864
|
+
},
|
|
107865
|
+
"description": "Provides a default icon based on the `href` extension, if no icon name is\nset.",
|
|
107866
|
+
"inheritedFrom": {
|
|
107867
|
+
"name": "SbbIconNameMixin",
|
|
107868
|
+
"module": "icon/icon-name-mixin.js"
|
|
107869
|
+
}
|
|
107870
|
+
},
|
|
107871
|
+
{
|
|
107872
|
+
"kind": "method",
|
|
107873
|
+
"name": "_updateDescribedByElements",
|
|
107874
|
+
"privacy": "private",
|
|
107875
|
+
"return": {
|
|
107876
|
+
"type": {
|
|
107877
|
+
"text": "void"
|
|
107878
|
+
}
|
|
107879
|
+
}
|
|
107880
|
+
},
|
|
107881
|
+
{
|
|
107882
|
+
"kind": "method",
|
|
107883
|
+
"name": "_downloadInfoElements",
|
|
107884
|
+
"privacy": "private",
|
|
107885
|
+
"return": {
|
|
107886
|
+
"type": {
|
|
107887
|
+
"text": "NodeListOf<HTMLElement>"
|
|
107888
|
+
}
|
|
107889
|
+
}
|
|
107890
|
+
},
|
|
107891
|
+
{
|
|
107892
|
+
"kind": "method",
|
|
107893
|
+
"name": "renderTemplate",
|
|
107894
|
+
"privacy": "protected",
|
|
107895
|
+
"return": {
|
|
107896
|
+
"type": {
|
|
107897
|
+
"text": "TemplateResult"
|
|
107898
|
+
}
|
|
107899
|
+
},
|
|
107900
|
+
"description": "Override this method to render the component template.",
|
|
107901
|
+
"inheritedFrom": {
|
|
107902
|
+
"name": "SbbActionBaseElement",
|
|
107903
|
+
"module": "core/base-elements/action-base-element.js"
|
|
107904
|
+
}
|
|
107905
|
+
},
|
|
107906
|
+
{
|
|
107907
|
+
"kind": "field",
|
|
107908
|
+
"name": "iconName",
|
|
107909
|
+
"type": {
|
|
107910
|
+
"text": "string"
|
|
107911
|
+
},
|
|
107912
|
+
"privacy": "public",
|
|
107913
|
+
"default": "''",
|
|
107914
|
+
"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.",
|
|
107915
|
+
"attribute": "icon-name",
|
|
107916
|
+
"inheritedFrom": {
|
|
107917
|
+
"name": "SbbIconNameMixin",
|
|
107918
|
+
"module": "icon/icon-name-mixin.js"
|
|
107919
|
+
}
|
|
107920
|
+
},
|
|
107921
|
+
{
|
|
107922
|
+
"kind": "method",
|
|
107923
|
+
"name": "renderIconSlot",
|
|
107924
|
+
"privacy": "protected",
|
|
107925
|
+
"return": {
|
|
107926
|
+
"type": {
|
|
107927
|
+
"text": "TemplateResult"
|
|
107928
|
+
}
|
|
107929
|
+
},
|
|
107930
|
+
"parameters": [
|
|
107931
|
+
{
|
|
107932
|
+
"name": "classname",
|
|
107933
|
+
"optional": true,
|
|
107934
|
+
"type": {
|
|
107935
|
+
"text": "string"
|
|
107936
|
+
}
|
|
107937
|
+
}
|
|
107938
|
+
],
|
|
107939
|
+
"inheritedFrom": {
|
|
107940
|
+
"name": "SbbIconNameMixin",
|
|
107941
|
+
"module": "icon/icon-name-mixin.js"
|
|
107942
|
+
}
|
|
107943
|
+
},
|
|
107944
|
+
{
|
|
107945
|
+
"kind": "method",
|
|
107946
|
+
"name": "_renderIconName",
|
|
107947
|
+
"privacy": "private",
|
|
107948
|
+
"return": {
|
|
107949
|
+
"type": {
|
|
107950
|
+
"text": "string"
|
|
107951
|
+
}
|
|
107952
|
+
},
|
|
107953
|
+
"inheritedFrom": {
|
|
107954
|
+
"name": "SbbIconNameMixin",
|
|
107955
|
+
"module": "icon/icon-name-mixin.js"
|
|
107956
|
+
}
|
|
107957
|
+
},
|
|
107958
|
+
{
|
|
107959
|
+
"kind": "field",
|
|
107960
|
+
"name": "href",
|
|
107961
|
+
"type": {
|
|
107962
|
+
"text": "string"
|
|
107963
|
+
},
|
|
107964
|
+
"privacy": "public",
|
|
107965
|
+
"default": "''",
|
|
107966
|
+
"description": "The href value you want to link to.",
|
|
107967
|
+
"attribute": "href",
|
|
107968
|
+
"reflects": true,
|
|
107969
|
+
"inheritedFrom": {
|
|
107970
|
+
"name": "SbbLinkBaseElement",
|
|
107971
|
+
"module": "core/base-elements/link-base-element.js"
|
|
107972
|
+
}
|
|
107973
|
+
},
|
|
107974
|
+
{
|
|
107975
|
+
"kind": "field",
|
|
107976
|
+
"name": "target",
|
|
107977
|
+
"type": {
|
|
107978
|
+
"text": "'_blank' | '_self' | '_parent' | '_top' | string"
|
|
107979
|
+
},
|
|
107980
|
+
"privacy": "public",
|
|
107981
|
+
"default": "''",
|
|
107982
|
+
"description": "Where to display the linked URL.",
|
|
107983
|
+
"attribute": "target",
|
|
107984
|
+
"reflects": true,
|
|
107985
|
+
"inheritedFrom": {
|
|
107986
|
+
"name": "SbbLinkBaseElement",
|
|
107987
|
+
"module": "core/base-elements/link-base-element.js"
|
|
107988
|
+
}
|
|
107989
|
+
},
|
|
107990
|
+
{
|
|
107991
|
+
"kind": "field",
|
|
107992
|
+
"name": "rel",
|
|
107993
|
+
"type": {
|
|
107994
|
+
"text": "string"
|
|
107995
|
+
},
|
|
107996
|
+
"privacy": "public",
|
|
107997
|
+
"default": "''",
|
|
107998
|
+
"description": "The relationship of the linked URL as space-separated link types.",
|
|
107999
|
+
"attribute": "rel",
|
|
108000
|
+
"reflects": true,
|
|
108001
|
+
"inheritedFrom": {
|
|
108002
|
+
"name": "SbbLinkBaseElement",
|
|
108003
|
+
"module": "core/base-elements/link-base-element.js"
|
|
108004
|
+
}
|
|
108005
|
+
},
|
|
108006
|
+
{
|
|
108007
|
+
"kind": "field",
|
|
108008
|
+
"name": "accessibilityLabel",
|
|
108009
|
+
"type": {
|
|
108010
|
+
"text": "string"
|
|
108011
|
+
},
|
|
108012
|
+
"privacy": "public",
|
|
108013
|
+
"default": "''",
|
|
108014
|
+
"description": "This will be forwarded as aria-label to the inner anchor element.",
|
|
108015
|
+
"attribute": "accessibility-label",
|
|
108016
|
+
"inheritedFrom": {
|
|
108017
|
+
"name": "SbbLinkBaseElement",
|
|
108018
|
+
"module": "core/base-elements/link-base-element.js"
|
|
108019
|
+
}
|
|
108020
|
+
},
|
|
108021
|
+
{
|
|
108022
|
+
"kind": "field",
|
|
108023
|
+
"name": "accessibilityCurrent",
|
|
108024
|
+
"type": {
|
|
108025
|
+
"text": "string"
|
|
108026
|
+
},
|
|
108027
|
+
"privacy": "public",
|
|
108028
|
+
"default": "''",
|
|
108029
|
+
"description": "This will be forwarded as aria-current to the inner anchor element.",
|
|
108030
|
+
"attribute": "accessibility-current",
|
|
108031
|
+
"inheritedFrom": {
|
|
108032
|
+
"name": "SbbLinkBaseElement",
|
|
108033
|
+
"module": "core/base-elements/link-base-element.js"
|
|
108034
|
+
}
|
|
108035
|
+
},
|
|
108036
|
+
{
|
|
108037
|
+
"kind": "field",
|
|
108038
|
+
"name": "language",
|
|
108039
|
+
"privacy": "protected",
|
|
108040
|
+
"default": "new SbbLanguageController(this)",
|
|
108041
|
+
"inheritedFrom": {
|
|
108042
|
+
"name": "SbbLinkBaseElement",
|
|
108043
|
+
"module": "core/base-elements/link-base-element.js"
|
|
108044
|
+
}
|
|
108045
|
+
},
|
|
108046
|
+
{
|
|
108047
|
+
"kind": "field",
|
|
108048
|
+
"name": "anchorRole",
|
|
108049
|
+
"type": {
|
|
108050
|
+
"text": "string | null"
|
|
108051
|
+
},
|
|
108052
|
+
"privacy": "protected",
|
|
108053
|
+
"readonly": true,
|
|
108054
|
+
"default": "null",
|
|
108055
|
+
"inheritedFrom": {
|
|
108056
|
+
"name": "SbbLinkBaseElement",
|
|
108057
|
+
"module": "core/base-elements/link-base-element.js"
|
|
108058
|
+
}
|
|
108059
|
+
},
|
|
108060
|
+
{
|
|
108061
|
+
"kind": "field",
|
|
108062
|
+
"name": "_evaluateRelAttribute",
|
|
108063
|
+
"privacy": "private",
|
|
108064
|
+
"inheritedFrom": {
|
|
108065
|
+
"name": "SbbLinkBaseElement",
|
|
108066
|
+
"module": "core/base-elements/link-base-element.js"
|
|
108067
|
+
}
|
|
108068
|
+
},
|
|
108069
|
+
{
|
|
108070
|
+
"kind": "method",
|
|
108071
|
+
"name": "renderLink",
|
|
108072
|
+
"privacy": "protected",
|
|
108073
|
+
"return": {
|
|
108074
|
+
"type": {
|
|
108075
|
+
"text": "TemplateResult"
|
|
108076
|
+
}
|
|
108077
|
+
},
|
|
108078
|
+
"parameters": [
|
|
108079
|
+
{
|
|
108080
|
+
"name": "renderContent",
|
|
108081
|
+
"type": {
|
|
108082
|
+
"text": "TemplateResult"
|
|
108083
|
+
}
|
|
108084
|
+
}
|
|
108085
|
+
],
|
|
108086
|
+
"inheritedFrom": {
|
|
108087
|
+
"name": "SbbLinkBaseElement",
|
|
108088
|
+
"module": "core/base-elements/link-base-element.js"
|
|
108089
|
+
}
|
|
108090
|
+
},
|
|
108091
|
+
{
|
|
108092
|
+
"kind": "field",
|
|
108093
|
+
"name": "maybeDisabled",
|
|
108094
|
+
"type": {
|
|
108095
|
+
"text": "boolean | undefined"
|
|
108096
|
+
},
|
|
108097
|
+
"privacy": "protected",
|
|
108098
|
+
"readonly": true,
|
|
108099
|
+
"inheritedFrom": {
|
|
108100
|
+
"name": "SbbActionBaseElement",
|
|
108101
|
+
"module": "core/base-elements/action-base-element.js"
|
|
108102
|
+
}
|
|
108103
|
+
},
|
|
108104
|
+
{
|
|
108105
|
+
"kind": "field",
|
|
108106
|
+
"name": "maybeDisabledInteractive",
|
|
108107
|
+
"type": {
|
|
108108
|
+
"text": "boolean | undefined"
|
|
108109
|
+
},
|
|
108110
|
+
"privacy": "protected",
|
|
108111
|
+
"readonly": true,
|
|
108112
|
+
"inheritedFrom": {
|
|
108113
|
+
"name": "SbbActionBaseElement",
|
|
108114
|
+
"module": "core/base-elements/action-base-element.js"
|
|
108115
|
+
}
|
|
108116
|
+
},
|
|
108117
|
+
{
|
|
108118
|
+
"kind": "method",
|
|
108119
|
+
"name": "setupBaseEventHandlers",
|
|
108120
|
+
"privacy": "protected",
|
|
108121
|
+
"return": {
|
|
108122
|
+
"type": {
|
|
108123
|
+
"text": "void"
|
|
108124
|
+
}
|
|
108125
|
+
},
|
|
108126
|
+
"inheritedFrom": {
|
|
108127
|
+
"name": "SbbActionBaseElement",
|
|
108128
|
+
"module": "core/base-elements/action-base-element.js"
|
|
108129
|
+
}
|
|
108130
|
+
},
|
|
108131
|
+
{
|
|
108132
|
+
"kind": "field",
|
|
108133
|
+
"name": "['_$sbbElement$']",
|
|
108134
|
+
"type": {
|
|
108135
|
+
"text": "boolean"
|
|
108136
|
+
},
|
|
108137
|
+
"privacy": "public",
|
|
108138
|
+
"static": true,
|
|
108139
|
+
"default": "true",
|
|
108140
|
+
"inheritedFrom": {
|
|
108141
|
+
"name": "SbbElement",
|
|
108142
|
+
"module": "core/base-elements/element.js"
|
|
108143
|
+
}
|
|
108144
|
+
},
|
|
108145
|
+
{
|
|
108146
|
+
"kind": "field",
|
|
108147
|
+
"name": "role",
|
|
108148
|
+
"type": {
|
|
108149
|
+
"text": "ElementInternals['role'] | undefined"
|
|
108150
|
+
},
|
|
108151
|
+
"privacy": "public",
|
|
108152
|
+
"static": true,
|
|
108153
|
+
"inheritedFrom": {
|
|
108154
|
+
"name": "SbbElement",
|
|
108155
|
+
"module": "core/base-elements/element.js"
|
|
108156
|
+
}
|
|
108157
|
+
},
|
|
108158
|
+
{
|
|
108159
|
+
"kind": "field",
|
|
108160
|
+
"name": "_controllers",
|
|
108161
|
+
"type": {
|
|
108162
|
+
"text": "Set<SbbReactiveController> | undefined"
|
|
108163
|
+
},
|
|
108164
|
+
"privacy": "private",
|
|
108165
|
+
"inheritedFrom": {
|
|
108166
|
+
"name": "SbbElement",
|
|
108167
|
+
"module": "core/base-elements/element.js"
|
|
108168
|
+
}
|
|
108169
|
+
},
|
|
108170
|
+
{
|
|
108171
|
+
"kind": "field",
|
|
108172
|
+
"name": "_hydrationRequired",
|
|
108173
|
+
"type": {
|
|
108174
|
+
"text": "boolean"
|
|
108175
|
+
},
|
|
108176
|
+
"privacy": "private",
|
|
108177
|
+
"default": "!!this.shadowRoot",
|
|
108178
|
+
"inheritedFrom": {
|
|
108179
|
+
"name": "SbbElement",
|
|
108180
|
+
"module": "core/base-elements/element.js"
|
|
108181
|
+
}
|
|
108182
|
+
},
|
|
108183
|
+
{
|
|
108184
|
+
"kind": "field",
|
|
108185
|
+
"name": "_hydrationComplete",
|
|
108186
|
+
"privacy": "private",
|
|
108187
|
+
"default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
|
|
108188
|
+
"inheritedFrom": {
|
|
108189
|
+
"name": "SbbElement",
|
|
108190
|
+
"module": "core/base-elements/element.js"
|
|
108191
|
+
}
|
|
108192
|
+
},
|
|
108193
|
+
{
|
|
108194
|
+
"kind": "field",
|
|
108195
|
+
"name": "_resolveHydration",
|
|
108196
|
+
"type": {
|
|
108197
|
+
"text": "(hydrationRequired: boolean) => void"
|
|
108198
|
+
},
|
|
108199
|
+
"privacy": "private",
|
|
108200
|
+
"inheritedFrom": {
|
|
108201
|
+
"name": "SbbElement",
|
|
108202
|
+
"module": "core/base-elements/element.js"
|
|
108203
|
+
}
|
|
108204
|
+
},
|
|
108205
|
+
{
|
|
108206
|
+
"kind": "field",
|
|
108207
|
+
"name": "_textObserver",
|
|
108208
|
+
"type": {
|
|
108209
|
+
"text": "MutationObserver | undefined"
|
|
108210
|
+
},
|
|
108211
|
+
"privacy": "private",
|
|
108212
|
+
"inheritedFrom": {
|
|
108213
|
+
"name": "SbbElement",
|
|
108214
|
+
"module": "core/base-elements/element.js"
|
|
108215
|
+
}
|
|
108216
|
+
},
|
|
108217
|
+
{
|
|
108218
|
+
"kind": "field",
|
|
108219
|
+
"name": "hydrationRequired",
|
|
108220
|
+
"type": {
|
|
108221
|
+
"text": "boolean"
|
|
108222
|
+
},
|
|
108223
|
+
"privacy": "protected",
|
|
108224
|
+
"description": "Returns whether hydration is required and not completed.",
|
|
108225
|
+
"readonly": true,
|
|
108226
|
+
"inheritedFrom": {
|
|
108227
|
+
"name": "SbbElement",
|
|
108228
|
+
"module": "core/base-elements/element.js"
|
|
108229
|
+
},
|
|
108230
|
+
"default": "!!this.shadowRoot"
|
|
108231
|
+
},
|
|
108232
|
+
{
|
|
108233
|
+
"kind": "method",
|
|
108234
|
+
"name": "finalizeStyles",
|
|
108235
|
+
"privacy": "protected",
|
|
108236
|
+
"static": true,
|
|
108237
|
+
"return": {
|
|
108238
|
+
"type": {
|
|
108239
|
+
"text": "CSSResultOrNative[]"
|
|
108240
|
+
}
|
|
108241
|
+
},
|
|
108242
|
+
"parameters": [
|
|
108243
|
+
{
|
|
108244
|
+
"name": "_styles",
|
|
108245
|
+
"type": {
|
|
108246
|
+
"text": "CSSResultGroup"
|
|
108247
|
+
}
|
|
108248
|
+
}
|
|
108249
|
+
],
|
|
108250
|
+
"description": "Collects `styles` from every class in the prototype chain (using `Object.hasOwn`)\nand merges them in top-down order. This means each class/mixin only needs to declare\nits **own** styles — there is no need to reference `super.styles`.\n\nLit's default behaviour already walks the chain, but fails for mixins where\n`super.styles` resolves to the wrong class. This override fixes that.",
|
|
108251
|
+
"inheritedFrom": {
|
|
108252
|
+
"name": "SbbElement",
|
|
108253
|
+
"module": "core/base-elements/element.js"
|
|
108254
|
+
}
|
|
108255
|
+
},
|
|
108256
|
+
{
|
|
108257
|
+
"kind": "method",
|
|
108258
|
+
"name": "toggleState",
|
|
108259
|
+
"privacy": "protected",
|
|
108260
|
+
"return": {
|
|
108261
|
+
"type": {
|
|
108262
|
+
"text": "void"
|
|
108263
|
+
}
|
|
108264
|
+
},
|
|
108265
|
+
"parameters": [
|
|
108266
|
+
{
|
|
108267
|
+
"name": "value",
|
|
108268
|
+
"type": {
|
|
108269
|
+
"text": "string"
|
|
108270
|
+
}
|
|
108271
|
+
},
|
|
108272
|
+
{
|
|
108273
|
+
"name": "force",
|
|
108274
|
+
"optional": true,
|
|
108275
|
+
"type": {
|
|
108276
|
+
"text": "boolean"
|
|
108277
|
+
}
|
|
108278
|
+
}
|
|
108279
|
+
],
|
|
108280
|
+
"inheritedFrom": {
|
|
108281
|
+
"name": "SbbElement",
|
|
108282
|
+
"module": "core/base-elements/element.js"
|
|
108283
|
+
}
|
|
108284
|
+
},
|
|
108285
|
+
{
|
|
108286
|
+
"kind": "method",
|
|
108287
|
+
"name": "_slotchangeHandler",
|
|
108288
|
+
"privacy": "private",
|
|
108289
|
+
"return": {
|
|
108290
|
+
"type": {
|
|
108291
|
+
"text": "void"
|
|
108292
|
+
}
|
|
108293
|
+
},
|
|
108294
|
+
"parameters": [
|
|
108295
|
+
{
|
|
108296
|
+
"name": "event",
|
|
108297
|
+
"type": {
|
|
108298
|
+
"text": "Event"
|
|
108299
|
+
}
|
|
108300
|
+
},
|
|
108301
|
+
{
|
|
108302
|
+
"name": "slot",
|
|
108303
|
+
"type": {
|
|
108304
|
+
"text": "HTMLSlotElement"
|
|
108305
|
+
}
|
|
108306
|
+
}
|
|
108307
|
+
],
|
|
108308
|
+
"inheritedFrom": {
|
|
108309
|
+
"name": "SbbElement",
|
|
108310
|
+
"module": "core/base-elements/element.js"
|
|
108311
|
+
}
|
|
108312
|
+
},
|
|
108313
|
+
{
|
|
108314
|
+
"kind": "method",
|
|
108315
|
+
"name": "_handleSlotChangeForSlottedState",
|
|
108316
|
+
"privacy": "private",
|
|
108317
|
+
"return": {
|
|
108318
|
+
"type": {
|
|
108319
|
+
"text": "void"
|
|
108320
|
+
}
|
|
108321
|
+
},
|
|
108322
|
+
"parameters": [
|
|
108323
|
+
{
|
|
108324
|
+
"name": "slot",
|
|
108325
|
+
"type": {
|
|
108326
|
+
"text": "HTMLSlotElement"
|
|
108327
|
+
}
|
|
108328
|
+
}
|
|
108329
|
+
],
|
|
108330
|
+
"inheritedFrom": {
|
|
108331
|
+
"name": "SbbElement",
|
|
108332
|
+
"module": "core/base-elements/element.js"
|
|
108333
|
+
}
|
|
108334
|
+
},
|
|
108335
|
+
{
|
|
108336
|
+
"kind": "method",
|
|
108337
|
+
"name": "_updateSlottedState",
|
|
108338
|
+
"privacy": "private",
|
|
108339
|
+
"return": {
|
|
108340
|
+
"type": {
|
|
108341
|
+
"text": "void"
|
|
108342
|
+
}
|
|
108343
|
+
},
|
|
108344
|
+
"parameters": [
|
|
108345
|
+
{
|
|
108346
|
+
"name": "slot",
|
|
108347
|
+
"type": {
|
|
108348
|
+
"text": "HTMLSlotElement"
|
|
108349
|
+
}
|
|
108350
|
+
}
|
|
108351
|
+
],
|
|
108352
|
+
"inheritedFrom": {
|
|
108353
|
+
"name": "SbbElement",
|
|
108354
|
+
"module": "core/base-elements/element.js"
|
|
108355
|
+
}
|
|
108356
|
+
},
|
|
108357
|
+
{
|
|
108358
|
+
"kind": "method",
|
|
108359
|
+
"name": "_observeTextNodesInSlot",
|
|
108360
|
+
"privacy": "private",
|
|
108361
|
+
"return": {
|
|
108362
|
+
"type": {
|
|
108363
|
+
"text": "void"
|
|
108364
|
+
}
|
|
108365
|
+
},
|
|
108366
|
+
"parameters": [
|
|
108367
|
+
{
|
|
108368
|
+
"name": "slot",
|
|
108369
|
+
"type": {
|
|
108370
|
+
"text": "HTMLSlotElement"
|
|
108371
|
+
}
|
|
108372
|
+
}
|
|
108373
|
+
],
|
|
108374
|
+
"inheritedFrom": {
|
|
108375
|
+
"name": "SbbElement",
|
|
108376
|
+
"module": "core/base-elements/element.js"
|
|
108377
|
+
}
|
|
108378
|
+
},
|
|
108379
|
+
{
|
|
108380
|
+
"kind": "method",
|
|
108381
|
+
"name": "_hasSlottedContent",
|
|
108382
|
+
"privacy": "private",
|
|
108383
|
+
"return": {
|
|
108384
|
+
"type": {
|
|
108385
|
+
"text": "boolean"
|
|
108386
|
+
}
|
|
108387
|
+
},
|
|
108388
|
+
"parameters": [
|
|
108389
|
+
{
|
|
108390
|
+
"name": "slot",
|
|
108391
|
+
"type": {
|
|
108392
|
+
"text": "HTMLSlotElement"
|
|
108393
|
+
}
|
|
108394
|
+
}
|
|
108395
|
+
],
|
|
108396
|
+
"inheritedFrom": {
|
|
108397
|
+
"name": "SbbElement",
|
|
108398
|
+
"module": "core/base-elements/element.js"
|
|
108399
|
+
}
|
|
108400
|
+
}
|
|
108401
|
+
],
|
|
108402
|
+
"attributes": [
|
|
108403
|
+
{
|
|
108404
|
+
"name": "color",
|
|
108405
|
+
"type": {
|
|
108406
|
+
"text": "'white' | 'milk'"
|
|
108407
|
+
},
|
|
108408
|
+
"default": "'white'",
|
|
108409
|
+
"description": "Option to set the component's background color.",
|
|
108410
|
+
"fieldName": "color"
|
|
108411
|
+
},
|
|
108412
|
+
{
|
|
108413
|
+
"name": "label",
|
|
108414
|
+
"type": {
|
|
108415
|
+
"text": "string"
|
|
108416
|
+
},
|
|
108417
|
+
"default": "''",
|
|
108418
|
+
"description": "The label of the download. Defaults to the file name of the `href`.",
|
|
108419
|
+
"fieldName": "label"
|
|
108420
|
+
},
|
|
108421
|
+
{
|
|
108422
|
+
"name": "download",
|
|
108423
|
+
"type": {
|
|
108424
|
+
"text": "boolean"
|
|
108425
|
+
},
|
|
108426
|
+
"default": "true",
|
|
108427
|
+
"description": "The download behavior is always enabled and handled internally, therefore\nthis property cannot be disabled and is not reflected to the host element.",
|
|
108428
|
+
"fieldName": "download",
|
|
108429
|
+
"inheritedFrom": {
|
|
108430
|
+
"name": "SbbLinkBaseElement",
|
|
108431
|
+
"module": "core/base-elements/link-base-element.js"
|
|
108432
|
+
}
|
|
108433
|
+
},
|
|
108434
|
+
{
|
|
108435
|
+
"name": "icon-name",
|
|
108436
|
+
"type": {
|
|
108437
|
+
"text": "string"
|
|
108438
|
+
},
|
|
108439
|
+
"default": "''",
|
|
108440
|
+
"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.",
|
|
108441
|
+
"fieldName": "iconName",
|
|
108442
|
+
"inheritedFrom": {
|
|
108443
|
+
"name": "SbbIconNameMixin",
|
|
108444
|
+
"module": "icon/icon-name-mixin.js"
|
|
108445
|
+
}
|
|
108446
|
+
},
|
|
108447
|
+
{
|
|
108448
|
+
"name": "href",
|
|
108449
|
+
"type": {
|
|
108450
|
+
"text": "string"
|
|
108451
|
+
},
|
|
108452
|
+
"default": "''",
|
|
108453
|
+
"description": "The href value you want to link to.",
|
|
108454
|
+
"fieldName": "href",
|
|
108455
|
+
"inheritedFrom": {
|
|
108456
|
+
"name": "SbbLinkBaseElement",
|
|
108457
|
+
"module": "core/base-elements/link-base-element.js"
|
|
108458
|
+
}
|
|
108459
|
+
},
|
|
108460
|
+
{
|
|
108461
|
+
"name": "target",
|
|
108462
|
+
"type": {
|
|
108463
|
+
"text": "'_blank' | '_self' | '_parent' | '_top' | string"
|
|
108464
|
+
},
|
|
108465
|
+
"default": "''",
|
|
108466
|
+
"description": "Where to display the linked URL.",
|
|
108467
|
+
"fieldName": "target",
|
|
108468
|
+
"inheritedFrom": {
|
|
108469
|
+
"name": "SbbLinkBaseElement",
|
|
108470
|
+
"module": "core/base-elements/link-base-element.js"
|
|
108471
|
+
}
|
|
108472
|
+
},
|
|
108473
|
+
{
|
|
108474
|
+
"name": "rel",
|
|
108475
|
+
"type": {
|
|
108476
|
+
"text": "string"
|
|
108477
|
+
},
|
|
108478
|
+
"default": "''",
|
|
108479
|
+
"description": "The relationship of the linked URL as space-separated link types.",
|
|
108480
|
+
"fieldName": "rel",
|
|
108481
|
+
"inheritedFrom": {
|
|
108482
|
+
"name": "SbbLinkBaseElement",
|
|
108483
|
+
"module": "core/base-elements/link-base-element.js"
|
|
108484
|
+
}
|
|
108485
|
+
},
|
|
108486
|
+
{
|
|
108487
|
+
"name": "accessibility-label",
|
|
108488
|
+
"type": {
|
|
108489
|
+
"text": "string"
|
|
108490
|
+
},
|
|
108491
|
+
"default": "''",
|
|
108492
|
+
"description": "This will be forwarded as aria-label to the inner anchor element.",
|
|
108493
|
+
"fieldName": "accessibilityLabel",
|
|
108494
|
+
"inheritedFrom": {
|
|
108495
|
+
"name": "SbbLinkBaseElement",
|
|
108496
|
+
"module": "core/base-elements/link-base-element.js"
|
|
108497
|
+
}
|
|
108498
|
+
},
|
|
108499
|
+
{
|
|
108500
|
+
"name": "accessibility-current",
|
|
108501
|
+
"type": {
|
|
108502
|
+
"text": "string"
|
|
108503
|
+
},
|
|
108504
|
+
"default": "''",
|
|
108505
|
+
"description": "This will be forwarded as aria-current to the inner anchor element.",
|
|
108506
|
+
"fieldName": "accessibilityCurrent",
|
|
108507
|
+
"inheritedFrom": {
|
|
108508
|
+
"name": "SbbLinkBaseElement",
|
|
108509
|
+
"module": "core/base-elements/link-base-element.js"
|
|
108510
|
+
}
|
|
108511
|
+
}
|
|
108512
|
+
],
|
|
108513
|
+
"mixins": [
|
|
108514
|
+
{
|
|
108515
|
+
"name": "SbbIconNameMixin",
|
|
108516
|
+
"module": "icon.pure.js"
|
|
108517
|
+
}
|
|
108518
|
+
],
|
|
108519
|
+
"superclass": {
|
|
108520
|
+
"name": "SbbLinkBaseElement",
|
|
107170
108521
|
"module": "core.js"
|
|
107171
108522
|
},
|
|
107172
|
-
"tagName": "sbb-
|
|
108523
|
+
"tagName": "sbb-download",
|
|
107173
108524
|
"customElement": true
|
|
107174
108525
|
}
|
|
107175
108526
|
],
|
|
107176
108527
|
"exports": [
|
|
107177
108528
|
{
|
|
107178
108529
|
"kind": "js",
|
|
107179
|
-
"name": "
|
|
108530
|
+
"name": "SbbDownloadElement",
|
|
107180
108531
|
"declaration": {
|
|
107181
|
-
"name": "
|
|
107182
|
-
"module": "
|
|
108532
|
+
"name": "SbbDownloadElement",
|
|
108533
|
+
"module": "download/download/download.component.js"
|
|
107183
108534
|
}
|
|
107184
108535
|
}
|
|
107185
108536
|
]
|
|
107186
108537
|
},
|
|
107187
108538
|
{
|
|
107188
108539
|
"kind": "javascript-module",
|
|
107189
|
-
"path": "
|
|
108540
|
+
"path": "download/download-info/download-info.component.js",
|
|
107190
108541
|
"declarations": [
|
|
107191
108542
|
{
|
|
107192
108543
|
"kind": "class",
|
|
107193
|
-
"description": "It displays a
|
|
107194
|
-
"name": "
|
|
107195
|
-
"slots": [
|
|
107196
|
-
{
|
|
107197
|
-
"description": "Use the unnamed slot for the content of the dialog-title.",
|
|
107198
|
-
"name": ""
|
|
107199
|
-
}
|
|
107200
|
-
],
|
|
108544
|
+
"description": "It displays metadata of a document; used within a `sbb-download`.",
|
|
108545
|
+
"name": "SbbDownloadInfoElement",
|
|
107201
108546
|
"members": [
|
|
107202
108547
|
{
|
|
107203
108548
|
"kind": "field",
|
|
@@ -107208,71 +108553,159 @@
|
|
|
107208
108553
|
"privacy": "public",
|
|
107209
108554
|
"static": true,
|
|
107210
108555
|
"readonly": true,
|
|
108556
|
+
"default": "'sbb-download-info'",
|
|
107211
108557
|
"inheritedFrom": {
|
|
107212
108558
|
"name": "SbbElement",
|
|
107213
108559
|
"module": "core/base-elements/element.js"
|
|
108560
|
+
}
|
|
108561
|
+
},
|
|
108562
|
+
{
|
|
108563
|
+
"kind": "field",
|
|
108564
|
+
"name": "type",
|
|
108565
|
+
"type": {
|
|
108566
|
+
"text": "string"
|
|
107214
108567
|
},
|
|
107215
|
-
"
|
|
108568
|
+
"privacy": "public",
|
|
108569
|
+
"default": "''",
|
|
108570
|
+
"description": "The type of the document (e.g. `PDF`). Falls back to the extension of the\nparent `sbb-download`.",
|
|
108571
|
+
"attribute": "type"
|
|
107216
108572
|
},
|
|
107217
108573
|
{
|
|
107218
108574
|
"kind": "field",
|
|
107219
|
-
"name": "
|
|
108575
|
+
"name": "size",
|
|
107220
108576
|
"type": {
|
|
107221
|
-
"text": "
|
|
107222
|
-
"resolved": "'1' | '2' | '3' | '4' | '5' | '6'"
|
|
108577
|
+
"text": "string"
|
|
107223
108578
|
},
|
|
107224
108579
|
"privacy": "public",
|
|
107225
|
-
"default": "'
|
|
107226
|
-
"description": "
|
|
107227
|
-
"attribute": "
|
|
107228
|
-
"reflects": true,
|
|
107229
|
-
"inheritedFrom": {
|
|
107230
|
-
"name": "SbbTitleBase",
|
|
107231
|
-
"module": "title/title-base.js"
|
|
107232
|
-
}
|
|
108580
|
+
"default": "''",
|
|
108581
|
+
"description": "The size of the document. If the value contains non-numeric characters it\nis rendered as is, otherwise it is interpreted as a number of bytes and\nshortened to the closest unit.",
|
|
108582
|
+
"attribute": "size"
|
|
107233
108583
|
},
|
|
107234
108584
|
{
|
|
107235
108585
|
"kind": "field",
|
|
107236
|
-
"name": "
|
|
108586
|
+
"name": "changed",
|
|
107237
108587
|
"type": {
|
|
107238
|
-
"text": "
|
|
107239
|
-
"resolved": "'1' | '2' | '3' | '4' | '5' | '6' | null"
|
|
108588
|
+
"text": "string"
|
|
107240
108589
|
},
|
|
107241
108590
|
"privacy": "public",
|
|
107242
|
-
"default": "'
|
|
107243
|
-
"description": "
|
|
107244
|
-
"attribute": "
|
|
107245
|
-
"reflects": true,
|
|
107246
|
-
"inheritedFrom": {
|
|
107247
|
-
"name": "SbbTitleBase",
|
|
107248
|
-
"module": "title/title-base.js"
|
|
107249
|
-
}
|
|
108591
|
+
"default": "''",
|
|
108592
|
+
"description": "The date of the latest change of the document, as an ISO 8601 string.",
|
|
108593
|
+
"attribute": "changed"
|
|
107250
108594
|
},
|
|
107251
108595
|
{
|
|
107252
108596
|
"kind": "field",
|
|
107253
|
-
"name": "
|
|
108597
|
+
"name": "nonAccessible",
|
|
107254
108598
|
"type": {
|
|
107255
108599
|
"text": "boolean"
|
|
107256
108600
|
},
|
|
107257
108601
|
"privacy": "public",
|
|
107258
108602
|
"default": "false",
|
|
107259
|
-
"description": "
|
|
107260
|
-
"attribute": "
|
|
107261
|
-
"reflects": true,
|
|
107262
|
-
"inheritedFrom": {
|
|
107263
|
-
"name": "SbbNegativeMixin",
|
|
107264
|
-
"module": "core/mixins/negative-mixin.js"
|
|
107265
|
-
}
|
|
108603
|
+
"description": "Whether the document is not accessible.",
|
|
108604
|
+
"attribute": "non-accessible"
|
|
107266
108605
|
},
|
|
107267
108606
|
{
|
|
107268
108607
|
"kind": "field",
|
|
107269
|
-
"name": "
|
|
108608
|
+
"name": "_language",
|
|
108609
|
+
"privacy": "private",
|
|
108610
|
+
"default": "new SbbLanguageController(this)"
|
|
108611
|
+
},
|
|
108612
|
+
{
|
|
108613
|
+
"kind": "field",
|
|
108614
|
+
"name": "_dateAdapter",
|
|
108615
|
+
"type": {
|
|
108616
|
+
"text": "DateAdapter"
|
|
108617
|
+
},
|
|
108618
|
+
"privacy": "private"
|
|
108619
|
+
},
|
|
108620
|
+
{
|
|
108621
|
+
"kind": "field",
|
|
108622
|
+
"name": "_resolvedType",
|
|
108623
|
+
"type": {
|
|
108624
|
+
"text": "string"
|
|
108625
|
+
},
|
|
108626
|
+
"privacy": "private",
|
|
108627
|
+
"default": "''"
|
|
108628
|
+
},
|
|
108629
|
+
{
|
|
108630
|
+
"kind": "field",
|
|
108631
|
+
"name": "_typeRedundant",
|
|
108632
|
+
"type": {
|
|
108633
|
+
"text": "boolean"
|
|
108634
|
+
},
|
|
108635
|
+
"privacy": "private",
|
|
108636
|
+
"default": "false"
|
|
108637
|
+
},
|
|
108638
|
+
{
|
|
108639
|
+
"kind": "field",
|
|
108640
|
+
"name": "_resolvedSize",
|
|
107270
108641
|
"type": {
|
|
107271
108642
|
"text": "string"
|
|
107272
108643
|
},
|
|
108644
|
+
"privacy": "private",
|
|
108645
|
+
"default": "''"
|
|
108646
|
+
},
|
|
108647
|
+
{
|
|
108648
|
+
"kind": "field",
|
|
108649
|
+
"name": "_resolvedChanged",
|
|
108650
|
+
"type": {
|
|
108651
|
+
"text": "string"
|
|
108652
|
+
},
|
|
108653
|
+
"privacy": "private",
|
|
108654
|
+
"default": "''"
|
|
108655
|
+
},
|
|
108656
|
+
{
|
|
108657
|
+
"kind": "method",
|
|
108658
|
+
"name": "_resolveType",
|
|
108659
|
+
"privacy": "private",
|
|
108660
|
+
"return": {
|
|
108661
|
+
"type": {
|
|
108662
|
+
"text": "string"
|
|
108663
|
+
}
|
|
108664
|
+
},
|
|
108665
|
+
"description": "Resolves the type, falling back to the extension of the parent download's\nhref."
|
|
108666
|
+
},
|
|
108667
|
+
{
|
|
108668
|
+
"kind": "method",
|
|
108669
|
+
"name": "_isTypeRedundant",
|
|
108670
|
+
"privacy": "private",
|
|
108671
|
+
"return": {
|
|
108672
|
+
"type": {
|
|
108673
|
+
"text": "boolean"
|
|
108674
|
+
}
|
|
108675
|
+
},
|
|
108676
|
+
"description": "Whether the type is already conveyed by the parent download's label.\nWhen the parent download has no explicit `label`, it falls back to the file\nname (e.g. `some-file.pdf`), which already includes the extension. In that\ncase the type is redundant for assistive technology."
|
|
108677
|
+
},
|
|
108678
|
+
{
|
|
108679
|
+
"kind": "method",
|
|
108680
|
+
"name": "_resolveSize",
|
|
108681
|
+
"privacy": "private",
|
|
108682
|
+
"return": {
|
|
108683
|
+
"type": {
|
|
108684
|
+
"text": "string"
|
|
108685
|
+
}
|
|
108686
|
+
},
|
|
108687
|
+
"description": "Formats the size, shortening a pure number of bytes to the closest unit."
|
|
108688
|
+
},
|
|
108689
|
+
{
|
|
108690
|
+
"kind": "method",
|
|
108691
|
+
"name": "_resolveChanged",
|
|
108692
|
+
"privacy": "private",
|
|
108693
|
+
"return": {
|
|
108694
|
+
"type": {
|
|
108695
|
+
"text": "string"
|
|
108696
|
+
}
|
|
108697
|
+
},
|
|
108698
|
+
"description": "Formats the ISO 8601 change date using the configured date adapter, or\nrenders it as is if invalid."
|
|
108699
|
+
},
|
|
108700
|
+
{
|
|
108701
|
+
"kind": "field",
|
|
108702
|
+
"name": "['_$sbbElement$']",
|
|
108703
|
+
"type": {
|
|
108704
|
+
"text": "boolean"
|
|
108705
|
+
},
|
|
107273
108706
|
"privacy": "public",
|
|
107274
108707
|
"static": true,
|
|
107275
|
-
"default": "
|
|
108708
|
+
"default": "true",
|
|
107276
108709
|
"inheritedFrom": {
|
|
107277
108710
|
"name": "SbbElement",
|
|
107278
108711
|
"module": "core/base-elements/element.js"
|
|
@@ -107280,13 +108713,12 @@
|
|
|
107280
108713
|
},
|
|
107281
108714
|
{
|
|
107282
108715
|
"kind": "field",
|
|
107283
|
-
"name": "
|
|
108716
|
+
"name": "elementDependencies",
|
|
107284
108717
|
"type": {
|
|
107285
|
-
"text": "
|
|
108718
|
+
"text": "SbbElementType[] | undefined"
|
|
107286
108719
|
},
|
|
107287
108720
|
"privacy": "public",
|
|
107288
108721
|
"static": true,
|
|
107289
|
-
"default": "true",
|
|
107290
108722
|
"inheritedFrom": {
|
|
107291
108723
|
"name": "SbbElement",
|
|
107292
108724
|
"module": "core/base-elements/element.js"
|
|
@@ -107294,9 +108726,9 @@
|
|
|
107294
108726
|
},
|
|
107295
108727
|
{
|
|
107296
108728
|
"kind": "field",
|
|
107297
|
-
"name": "
|
|
108729
|
+
"name": "role",
|
|
107298
108730
|
"type": {
|
|
107299
|
-
"text": "
|
|
108731
|
+
"text": "ElementInternals['role'] | undefined"
|
|
107300
108732
|
},
|
|
107301
108733
|
"privacy": "public",
|
|
107302
108734
|
"static": true,
|
|
@@ -107549,77 +108981,66 @@
|
|
|
107549
108981
|
}
|
|
107550
108982
|
}
|
|
107551
108983
|
],
|
|
107552
|
-
"mixins": [
|
|
107553
|
-
{
|
|
107554
|
-
"name": "SbbNegativeMixin",
|
|
107555
|
-
"module": "core.js"
|
|
107556
|
-
}
|
|
107557
|
-
],
|
|
107558
|
-
"superclass": {
|
|
107559
|
-
"name": "SbbTitleBase",
|
|
107560
|
-
"module": "title.pure.js"
|
|
107561
|
-
},
|
|
107562
|
-
"tagName": "sbb-dialog-title",
|
|
107563
|
-
"customElement": true,
|
|
107564
108984
|
"attributes": [
|
|
107565
108985
|
{
|
|
107566
|
-
"name": "
|
|
108986
|
+
"name": "type",
|
|
107567
108987
|
"type": {
|
|
107568
|
-
"text": "
|
|
108988
|
+
"text": "string"
|
|
107569
108989
|
},
|
|
107570
|
-
"default": "
|
|
107571
|
-
"description": "
|
|
107572
|
-
"fieldName": "
|
|
107573
|
-
"inheritedFrom": {
|
|
107574
|
-
"name": "SbbNegativeMixin",
|
|
107575
|
-
"module": "core/mixins/negative-mixin.js"
|
|
107576
|
-
}
|
|
108990
|
+
"default": "''",
|
|
108991
|
+
"description": "The type of the document (e.g. `PDF`). Falls back to the extension of the\nparent `sbb-download`.",
|
|
108992
|
+
"fieldName": "type"
|
|
107577
108993
|
},
|
|
107578
108994
|
{
|
|
107579
|
-
"name": "
|
|
108995
|
+
"name": "size",
|
|
107580
108996
|
"type": {
|
|
107581
|
-
"text": "
|
|
107582
|
-
"resolved": "'1' | '2' | '3' | '4' | '5' | '6'"
|
|
108997
|
+
"text": "string"
|
|
107583
108998
|
},
|
|
107584
|
-
"default": "'
|
|
107585
|
-
"description": "
|
|
107586
|
-
"fieldName": "
|
|
107587
|
-
"inheritedFrom": {
|
|
107588
|
-
"name": "SbbTitleBase",
|
|
107589
|
-
"module": "title/title-base.js"
|
|
107590
|
-
}
|
|
108999
|
+
"default": "''",
|
|
109000
|
+
"description": "The size of the document. If the value contains non-numeric characters it\nis rendered as is, otherwise it is interpreted as a number of bytes and\nshortened to the closest unit.",
|
|
109001
|
+
"fieldName": "size"
|
|
107591
109002
|
},
|
|
107592
109003
|
{
|
|
107593
|
-
"name": "
|
|
109004
|
+
"name": "changed",
|
|
107594
109005
|
"type": {
|
|
107595
|
-
"text": "
|
|
107596
|
-
"resolved": "'1' | '2' | '3' | '4' | '5' | '6' | null"
|
|
109006
|
+
"text": "string"
|
|
107597
109007
|
},
|
|
107598
|
-
"default": "
|
|
107599
|
-
"description": "
|
|
107600
|
-
"fieldName": "
|
|
107601
|
-
|
|
107602
|
-
|
|
107603
|
-
|
|
107604
|
-
|
|
109008
|
+
"default": "''",
|
|
109009
|
+
"description": "The date of the latest change of the document, as an ISO 8601 string.",
|
|
109010
|
+
"fieldName": "changed"
|
|
109011
|
+
},
|
|
109012
|
+
{
|
|
109013
|
+
"name": "non-accessible",
|
|
109014
|
+
"type": {
|
|
109015
|
+
"text": "boolean"
|
|
109016
|
+
},
|
|
109017
|
+
"default": "false",
|
|
109018
|
+
"description": "Whether the document is not accessible.",
|
|
109019
|
+
"fieldName": "nonAccessible"
|
|
107605
109020
|
}
|
|
107606
|
-
]
|
|
109021
|
+
],
|
|
109022
|
+
"superclass": {
|
|
109023
|
+
"name": "SbbElement",
|
|
109024
|
+
"module": "core.js"
|
|
109025
|
+
},
|
|
109026
|
+
"tagName": "sbb-download-info",
|
|
109027
|
+
"customElement": true
|
|
107607
109028
|
}
|
|
107608
109029
|
],
|
|
107609
109030
|
"exports": [
|
|
107610
109031
|
{
|
|
107611
109032
|
"kind": "js",
|
|
107612
|
-
"name": "
|
|
109033
|
+
"name": "SbbDownloadInfoElement",
|
|
107613
109034
|
"declaration": {
|
|
107614
|
-
"name": "
|
|
107615
|
-
"module": "
|
|
109035
|
+
"name": "SbbDownloadInfoElement",
|
|
109036
|
+
"module": "download/download-info/download-info.component.js"
|
|
107616
109037
|
}
|
|
107617
109038
|
}
|
|
107618
109039
|
]
|
|
107619
109040
|
},
|
|
107620
109041
|
{
|
|
107621
109042
|
"kind": "javascript-module",
|
|
107622
|
-
"path": "
|
|
109043
|
+
"path": "download.pure.js",
|
|
107623
109044
|
"declarations": [],
|
|
107624
109045
|
"exports": [
|
|
107625
109046
|
{
|
|
@@ -107627,15 +109048,7 @@
|
|
|
107627
109048
|
"name": "*",
|
|
107628
109049
|
"declaration": {
|
|
107629
109050
|
"name": "*",
|
|
107630
|
-
"module": "
|
|
107631
|
-
}
|
|
107632
|
-
},
|
|
107633
|
-
{
|
|
107634
|
-
"kind": "js",
|
|
107635
|
-
"name": "*",
|
|
107636
|
-
"declaration": {
|
|
107637
|
-
"name": "*",
|
|
107638
|
-
"module": "dialog/dialog-close-button/dialog-close-button.component.js"
|
|
109051
|
+
"module": "download/download/download.component.js"
|
|
107639
109052
|
}
|
|
107640
109053
|
},
|
|
107641
109054
|
{
|
|
@@ -107643,45 +109056,14 @@
|
|
|
107643
109056
|
"name": "*",
|
|
107644
109057
|
"declaration": {
|
|
107645
109058
|
"name": "*",
|
|
107646
|
-
"module": "
|
|
107647
|
-
}
|
|
107648
|
-
},
|
|
107649
|
-
{
|
|
107650
|
-
"kind": "js",
|
|
107651
|
-
"name": "*",
|
|
107652
|
-
"declaration": {
|
|
107653
|
-
"name": "*",
|
|
107654
|
-
"module": "dialog/dialog-title/dialog-title.component.js"
|
|
107655
|
-
}
|
|
107656
|
-
},
|
|
107657
|
-
{
|
|
107658
|
-
"kind": "js",
|
|
107659
|
-
"name": "*",
|
|
107660
|
-
"declaration": {
|
|
107661
|
-
"name": "*",
|
|
107662
|
-
"module": "dialog/dialog/dialog.component.js"
|
|
107663
|
-
}
|
|
107664
|
-
}
|
|
107665
|
-
]
|
|
107666
|
-
},
|
|
107667
|
-
{
|
|
107668
|
-
"kind": "javascript-module",
|
|
107669
|
-
"path": "dialog.js",
|
|
107670
|
-
"declarations": [],
|
|
107671
|
-
"exports": [
|
|
107672
|
-
{
|
|
107673
|
-
"kind": "js",
|
|
107674
|
-
"name": "*",
|
|
107675
|
-
"declaration": {
|
|
107676
|
-
"name": "*",
|
|
107677
|
-
"module": "dialog.pure.js"
|
|
109059
|
+
"module": "download/download-info/download-info.component.js"
|
|
107678
109060
|
}
|
|
107679
109061
|
}
|
|
107680
109062
|
]
|
|
107681
109063
|
},
|
|
107682
109064
|
{
|
|
107683
109065
|
"kind": "javascript-module",
|
|
107684
|
-
"path": "
|
|
109066
|
+
"path": "download.js",
|
|
107685
109067
|
"declarations": [],
|
|
107686
109068
|
"exports": [
|
|
107687
109069
|
{
|
|
@@ -107689,7 +109071,7 @@
|
|
|
107689
109071
|
"name": "*",
|
|
107690
109072
|
"declaration": {
|
|
107691
109073
|
"name": "*",
|
|
107692
|
-
"module": "
|
|
109074
|
+
"module": "download.pure.js"
|
|
107693
109075
|
}
|
|
107694
109076
|
}
|
|
107695
109077
|
]
|
|
@@ -108950,6 +110332,10 @@
|
|
|
108950
110332
|
"type": {
|
|
108951
110333
|
"text": "FileList"
|
|
108952
110334
|
}
|
|
110335
|
+
},
|
|
110336
|
+
{
|
|
110337
|
+
"name": "emitNativeEvents",
|
|
110338
|
+
"default": "false"
|
|
108953
110339
|
}
|
|
108954
110340
|
]
|
|
108955
110341
|
},
|
|
@@ -108981,6 +110367,16 @@
|
|
|
108981
110367
|
}
|
|
108982
110368
|
]
|
|
108983
110369
|
},
|
|
110370
|
+
{
|
|
110371
|
+
"kind": "method",
|
|
110372
|
+
"name": "_dispatchNativeEvents",
|
|
110373
|
+
"privacy": "private",
|
|
110374
|
+
"return": {
|
|
110375
|
+
"type": {
|
|
110376
|
+
"text": "void"
|
|
110377
|
+
}
|
|
110378
|
+
}
|
|
110379
|
+
},
|
|
108984
110380
|
{
|
|
108985
110381
|
"kind": "method",
|
|
108986
110382
|
"name": "_dispatchFileChangedEvent",
|
|
@@ -110098,6 +111494,10 @@
|
|
|
110098
111494
|
"type": {
|
|
110099
111495
|
"text": "FileList"
|
|
110100
111496
|
}
|
|
111497
|
+
},
|
|
111498
|
+
{
|
|
111499
|
+
"name": "emitNativeEvents",
|
|
111500
|
+
"default": "false"
|
|
110101
111501
|
}
|
|
110102
111502
|
],
|
|
110103
111503
|
"inheritedFrom": {
|
|
@@ -110141,6 +111541,20 @@
|
|
|
110141
111541
|
"module": "file-selector/common/file-selector-common.js"
|
|
110142
111542
|
}
|
|
110143
111543
|
},
|
|
111544
|
+
{
|
|
111545
|
+
"kind": "method",
|
|
111546
|
+
"name": "_dispatchNativeEvents",
|
|
111547
|
+
"privacy": "private",
|
|
111548
|
+
"return": {
|
|
111549
|
+
"type": {
|
|
111550
|
+
"text": "void"
|
|
111551
|
+
}
|
|
111552
|
+
},
|
|
111553
|
+
"inheritedFrom": {
|
|
111554
|
+
"name": "SbbFileSelectorCommonElementMixin",
|
|
111555
|
+
"module": "file-selector/common/file-selector-common.js"
|
|
111556
|
+
}
|
|
111557
|
+
},
|
|
110144
111558
|
{
|
|
110145
111559
|
"kind": "method",
|
|
110146
111560
|
"name": "_dispatchFileChangedEvent",
|
|
@@ -111572,6 +112986,10 @@
|
|
|
111572
112986
|
"type": {
|
|
111573
112987
|
"text": "FileList"
|
|
111574
112988
|
}
|
|
112989
|
+
},
|
|
112990
|
+
{
|
|
112991
|
+
"name": "emitNativeEvents",
|
|
112992
|
+
"default": "false"
|
|
111575
112993
|
}
|
|
111576
112994
|
],
|
|
111577
112995
|
"inheritedFrom": {
|
|
@@ -111615,6 +113033,20 @@
|
|
|
111615
113033
|
"module": "file-selector/common/file-selector-common.js"
|
|
111616
113034
|
}
|
|
111617
113035
|
},
|
|
113036
|
+
{
|
|
113037
|
+
"kind": "method",
|
|
113038
|
+
"name": "_dispatchNativeEvents",
|
|
113039
|
+
"privacy": "private",
|
|
113040
|
+
"return": {
|
|
113041
|
+
"type": {
|
|
113042
|
+
"text": "void"
|
|
113043
|
+
}
|
|
113044
|
+
},
|
|
113045
|
+
"inheritedFrom": {
|
|
113046
|
+
"name": "SbbFileSelectorCommonElementMixin",
|
|
113047
|
+
"module": "file-selector/common/file-selector-common.js"
|
|
113048
|
+
}
|
|
113049
|
+
},
|
|
111618
113050
|
{
|
|
111619
113051
|
"kind": "method",
|
|
111620
113052
|
"name": "_dispatchFileChangedEvent",
|
|
@@ -138549,7 +139981,7 @@
|
|
|
138549
139981
|
"kind": "field",
|
|
138550
139982
|
"name": "type",
|
|
138551
139983
|
"type": {
|
|
138552
|
-
"text": "
|
|
139984
|
+
"text": "'info' | 'note' | 'success' | 'warn' | 'error'"
|
|
138553
139985
|
},
|
|
138554
139986
|
"privacy": "public",
|
|
138555
139987
|
"default": "'info'",
|
|
@@ -139137,7 +140569,7 @@
|
|
|
139137
140569
|
{
|
|
139138
140570
|
"name": "type",
|
|
139139
140571
|
"type": {
|
|
139140
|
-
"text": "
|
|
140572
|
+
"text": "'info' | 'note' | 'success' | 'warn' | 'error'"
|
|
139141
140573
|
},
|
|
139142
140574
|
"default": "'info'",
|
|
139143
140575
|
"description": "The type of the notification.",
|
|
@@ -146696,7 +148128,7 @@
|
|
|
146696
148128
|
"text": "void"
|
|
146697
148129
|
}
|
|
146698
148130
|
},
|
|
146699
|
-
"description": "Selects the next step."
|
|
148131
|
+
"description": "Selects the next enabled step. If no available step is found, it simply exits."
|
|
146700
148132
|
},
|
|
146701
148133
|
{
|
|
146702
148134
|
"kind": "method",
|
|
@@ -146707,7 +148139,7 @@
|
|
|
146707
148139
|
"text": "void"
|
|
146708
148140
|
}
|
|
146709
148141
|
},
|
|
146710
|
-
"description": "Selects the previous step."
|
|
148142
|
+
"description": "Selects the previous enabled step. If no available step is found, it simply exits."
|
|
146711
148143
|
},
|
|
146712
148144
|
{
|
|
146713
148145
|
"kind": "method",
|
|
@@ -147519,42 +148951,6 @@
|
|
|
147519
148951
|
],
|
|
147520
148952
|
"description": "Watches for clicked elements with `sbb-stepper-next` or `sbb-stepper-previous` attributes."
|
|
147521
148953
|
},
|
|
147522
|
-
{
|
|
147523
|
-
"kind": "method",
|
|
147524
|
-
"name": "_isGoNextElement",
|
|
147525
|
-
"privacy": "private",
|
|
147526
|
-
"return": {
|
|
147527
|
-
"type": {
|
|
147528
|
-
"text": "boolean"
|
|
147529
|
-
}
|
|
147530
|
-
},
|
|
147531
|
-
"parameters": [
|
|
147532
|
-
{
|
|
147533
|
-
"name": "element",
|
|
147534
|
-
"type": {
|
|
147535
|
-
"text": "HTMLElement"
|
|
147536
|
-
}
|
|
147537
|
-
}
|
|
147538
|
-
]
|
|
147539
|
-
},
|
|
147540
|
-
{
|
|
147541
|
-
"kind": "method",
|
|
147542
|
-
"name": "_isGoPreviousElement",
|
|
147543
|
-
"privacy": "private",
|
|
147544
|
-
"return": {
|
|
147545
|
-
"type": {
|
|
147546
|
-
"text": "boolean"
|
|
147547
|
-
}
|
|
147548
|
-
},
|
|
147549
|
-
"parameters": [
|
|
147550
|
-
{
|
|
147551
|
-
"name": "element",
|
|
147552
|
-
"type": {
|
|
147553
|
-
"text": "HTMLElement"
|
|
147554
|
-
}
|
|
147555
|
-
}
|
|
147556
|
-
]
|
|
147557
|
-
},
|
|
147558
148954
|
{
|
|
147559
148955
|
"kind": "method",
|
|
147560
148956
|
"name": "_onStepElementResize",
|
|
@@ -157542,7 +158938,16 @@
|
|
|
157542
158938
|
"type": {
|
|
157543
158939
|
"text": "void"
|
|
157544
158940
|
}
|
|
157545
|
-
}
|
|
158941
|
+
},
|
|
158942
|
+
"parameters": [
|
|
158943
|
+
{
|
|
158944
|
+
"name": "except",
|
|
158945
|
+
"optional": true,
|
|
158946
|
+
"type": {
|
|
158947
|
+
"text": "keyof ValidityStateFlags"
|
|
158948
|
+
}
|
|
158949
|
+
}
|
|
158950
|
+
]
|
|
157546
158951
|
},
|
|
157547
158952
|
{
|
|
157548
158953
|
"kind": "method",
|
|
@@ -166959,7 +168364,7 @@
|
|
|
166959
168364
|
"kind": "field",
|
|
166960
168365
|
"name": "wagonClass",
|
|
166961
168366
|
"type": {
|
|
166962
|
-
"text": "
|
|
168367
|
+
"text": "'1' | '2' | '1-2' | '2-1' | null"
|
|
166963
168368
|
},
|
|
166964
168369
|
"privacy": "public",
|
|
166965
168370
|
"default": "null",
|
|
@@ -167212,7 +168617,7 @@
|
|
|
167212
168617
|
{
|
|
167213
168618
|
"name": "wagon-class",
|
|
167214
168619
|
"type": {
|
|
167215
|
-
"text": "
|
|
168620
|
+
"text": "'1' | '2' | '1-2' | '2-1' | null"
|
|
167216
168621
|
},
|
|
167217
168622
|
"default": "null",
|
|
167218
168623
|
"description": "Class label",
|
|
@@ -168995,7 +170400,7 @@
|
|
|
168995
170400
|
"kind": "field",
|
|
168996
170401
|
"name": "wagonClass",
|
|
168997
170402
|
"type": {
|
|
168998
|
-
"text": "
|
|
170403
|
+
"text": "'1' | '2' | '1-2' | '2-1' | null"
|
|
168999
170404
|
},
|
|
169000
170405
|
"privacy": "public",
|
|
169001
170406
|
"default": "null",
|
|
@@ -170095,7 +171500,7 @@
|
|
|
170095
171500
|
{
|
|
170096
171501
|
"name": "wagon-class",
|
|
170097
171502
|
"type": {
|
|
170098
|
-
"text": "
|
|
171503
|
+
"text": "'1' | '2' | '1-2' | '2-1' | null"
|
|
170099
171504
|
},
|
|
170100
171505
|
"default": "null",
|
|
170101
171506
|
"description": "Class label",
|
|
@@ -170348,7 +171753,7 @@
|
|
|
170348
171753
|
"kind": "field",
|
|
170349
171754
|
"name": "wagonClass",
|
|
170350
171755
|
"type": {
|
|
170351
|
-
"text": "
|
|
171756
|
+
"text": "'1' | '2' | '1-2' | '2-1' | null"
|
|
170352
171757
|
},
|
|
170353
171758
|
"privacy": "public",
|
|
170354
171759
|
"default": "null",
|
|
@@ -171133,7 +172538,7 @@
|
|
|
171133
172538
|
{
|
|
171134
172539
|
"name": "wagon-class",
|
|
171135
172540
|
"type": {
|
|
171136
|
-
"text": "
|
|
172541
|
+
"text": "'1' | '2' | '1-2' | '2-1' | null"
|
|
171137
172542
|
},
|
|
171138
172543
|
"default": "null",
|
|
171139
172544
|
"description": "Class label",
|
|
@@ -171401,7 +172806,7 @@
|
|
|
171401
172806
|
"kind": "field",
|
|
171402
172807
|
"name": "wagonClass",
|
|
171403
172808
|
"type": {
|
|
171404
|
-
"text": "
|
|
172809
|
+
"text": "'1' | '2' | '1-2' | '2-1' | null"
|
|
171405
172810
|
},
|
|
171406
172811
|
"privacy": "public",
|
|
171407
172812
|
"default": "null",
|
|
@@ -171996,7 +173401,7 @@
|
|
|
171996
173401
|
{
|
|
171997
173402
|
"name": "wagon-class",
|
|
171998
173403
|
"type": {
|
|
171999
|
-
"text": "
|
|
173404
|
+
"text": "'1' | '2' | '1-2' | '2-1' | null"
|
|
172000
173405
|
},
|
|
172001
173406
|
"default": "null",
|
|
172002
173407
|
"description": "Class label",
|