@sbb-esta/lyne-elements-dev 4.9.0-dev.1774875578 → 4.9.0-dev.1774908961
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/calendar/calendar/calendar.component.js +1 -1
- package/calendar/calendar.js +1 -1
- package/{calendar.component-Dk8Xun-b.js → calendar.component-BRIW9HVu.js} +88 -186
- package/calendar.js +1 -1
- package/calendar.pure.js +1 -1
- package/core/datetime/date-adapter.js +13 -13
- package/core/datetime.js +4 -4
- package/core.js +47 -47
- package/custom-elements.json +1271 -1160
- package/development/calendar/calendar/calendar.component.d.ts +1 -12
- package/development/calendar/calendar/calendar.component.d.ts.map +1 -1
- package/development/calendar/calendar/calendar.component.js +1 -1
- package/development/calendar/calendar.js +1 -1
- package/development/calendar.component-CsAl9EAg.js +1678 -0
- package/development/calendar.js +1 -1
- package/development/calendar.pure.js +1 -1
- package/development/core/datetime/date-adapter.d.ts +9 -2
- package/development/core/datetime/date-adapter.d.ts.map +1 -1
- package/development/core/datetime/date-adapter.js +11 -4
- package/development/core/datetime.js +2 -2
- package/development/core.js +2 -2
- package/package.json +2 -2
- package/development/calendar.component-CRvTYw1K.js +0 -2223
package/custom-elements.json
CHANGED
|
@@ -48740,25 +48740,6 @@
|
|
|
48740
48740
|
},
|
|
48741
48741
|
"description": "Creates the array of weekdays."
|
|
48742
48742
|
},
|
|
48743
|
-
{
|
|
48744
|
-
"kind": "method",
|
|
48745
|
-
"name": "_createWeekNumbers",
|
|
48746
|
-
"privacy": "private",
|
|
48747
|
-
"return": {
|
|
48748
|
-
"type": {
|
|
48749
|
-
"text": "number[]"
|
|
48750
|
-
}
|
|
48751
|
-
},
|
|
48752
|
-
"parameters": [
|
|
48753
|
-
{
|
|
48754
|
-
"name": "date",
|
|
48755
|
-
"type": {
|
|
48756
|
-
"text": "T"
|
|
48757
|
-
}
|
|
48758
|
-
}
|
|
48759
|
-
],
|
|
48760
|
-
"description": "Given a date, it returns the week numbers for the month the date belongs to.\nTODO: check if date-fns can be replaced with custom logic.\n\nSince the calculation is not simple (see https://en.wikipedia.org/wiki/Week#Numbering),\nthe date-fns library has been used this way:\nthe first and the last day of the month are calculated and then passed to the `eachWeekOfInterval` function,\nwhich returns an array containing the starting day of every ISO week of the month,\nconsidering Monday as the first day.\nThen, this array is mapped via the `getWeek` function, which returns the ISO week number for that date."
|
|
48761
|
-
},
|
|
48762
48743
|
{
|
|
48763
48744
|
"kind": "method",
|
|
48764
48745
|
"name": "_createWeekRows",
|
|
@@ -48862,6 +48843,24 @@
|
|
|
48862
48843
|
}
|
|
48863
48844
|
]
|
|
48864
48845
|
},
|
|
48846
|
+
{
|
|
48847
|
+
"kind": "method",
|
|
48848
|
+
"name": "_getWeek",
|
|
48849
|
+
"privacy": "private",
|
|
48850
|
+
"return": {
|
|
48851
|
+
"type": {
|
|
48852
|
+
"text": "number"
|
|
48853
|
+
}
|
|
48854
|
+
},
|
|
48855
|
+
"parameters": [
|
|
48856
|
+
{
|
|
48857
|
+
"name": "date",
|
|
48858
|
+
"type": {
|
|
48859
|
+
"text": "T"
|
|
48860
|
+
}
|
|
48861
|
+
}
|
|
48862
|
+
]
|
|
48863
|
+
},
|
|
48865
48864
|
{
|
|
48866
48865
|
"kind": "method",
|
|
48867
48866
|
"name": "_mapValueToISODate",
|
|
@@ -66089,6 +66088,72 @@
|
|
|
66089
66088
|
"kind": "javascript-module",
|
|
66090
66089
|
"path": "core/datetime/date-adapter.js",
|
|
66091
66090
|
"declarations": [
|
|
66091
|
+
{
|
|
66092
|
+
"kind": "variable",
|
|
66093
|
+
"name": "FORMAT_DATE",
|
|
66094
|
+
"default": "/(0?[1-9]|[12][0-9]|3[01])[.,\\\\/\\-\\s](0?[1-9]|1[0-2])[.,\\\\/\\-\\s]([0-9]{1,4}$)?/"
|
|
66095
|
+
},
|
|
66096
|
+
{
|
|
66097
|
+
"kind": "variable",
|
|
66098
|
+
"name": "ISO8601_FORMAT_DATE",
|
|
66099
|
+
"default": "/^([0-9]{4})-(0[1-9]|1[0-2])-(0[1-9]|[1-3][0-9])$/"
|
|
66100
|
+
},
|
|
66101
|
+
{
|
|
66102
|
+
"kind": "variable",
|
|
66103
|
+
"name": "MONDAY",
|
|
66104
|
+
"type": {
|
|
66105
|
+
"text": "number"
|
|
66106
|
+
},
|
|
66107
|
+
"default": "1"
|
|
66108
|
+
},
|
|
66109
|
+
{
|
|
66110
|
+
"kind": "variable",
|
|
66111
|
+
"name": "TUESDAY",
|
|
66112
|
+
"type": {
|
|
66113
|
+
"text": "number"
|
|
66114
|
+
},
|
|
66115
|
+
"default": "2"
|
|
66116
|
+
},
|
|
66117
|
+
{
|
|
66118
|
+
"kind": "variable",
|
|
66119
|
+
"name": "WEDNESDAY",
|
|
66120
|
+
"type": {
|
|
66121
|
+
"text": "number"
|
|
66122
|
+
},
|
|
66123
|
+
"default": "3"
|
|
66124
|
+
},
|
|
66125
|
+
{
|
|
66126
|
+
"kind": "variable",
|
|
66127
|
+
"name": "THURSDAY",
|
|
66128
|
+
"type": {
|
|
66129
|
+
"text": "number"
|
|
66130
|
+
},
|
|
66131
|
+
"default": "4"
|
|
66132
|
+
},
|
|
66133
|
+
{
|
|
66134
|
+
"kind": "variable",
|
|
66135
|
+
"name": "FRIDAY",
|
|
66136
|
+
"type": {
|
|
66137
|
+
"text": "number"
|
|
66138
|
+
},
|
|
66139
|
+
"default": "5"
|
|
66140
|
+
},
|
|
66141
|
+
{
|
|
66142
|
+
"kind": "variable",
|
|
66143
|
+
"name": "SATURDAY",
|
|
66144
|
+
"type": {
|
|
66145
|
+
"text": "number"
|
|
66146
|
+
},
|
|
66147
|
+
"default": "6"
|
|
66148
|
+
},
|
|
66149
|
+
{
|
|
66150
|
+
"kind": "variable",
|
|
66151
|
+
"name": "SUNDAY",
|
|
66152
|
+
"type": {
|
|
66153
|
+
"text": "number"
|
|
66154
|
+
},
|
|
66155
|
+
"default": "0"
|
|
66156
|
+
},
|
|
66092
66157
|
{
|
|
66093
66158
|
"kind": "variable",
|
|
66094
66159
|
"name": "DAYS_PER_ROW",
|
|
@@ -66129,16 +66194,6 @@
|
|
|
66129
66194
|
},
|
|
66130
66195
|
"default": "24"
|
|
66131
66196
|
},
|
|
66132
|
-
{
|
|
66133
|
-
"kind": "variable",
|
|
66134
|
-
"name": "FORMAT_DATE",
|
|
66135
|
-
"default": "/(0?[1-9]|[12][0-9]|3[01])[.,\\\\/\\-\\s](0?[1-9]|1[0-2])[.,\\\\/\\-\\s]([0-9]{1,4}$)?/"
|
|
66136
|
-
},
|
|
66137
|
-
{
|
|
66138
|
-
"kind": "variable",
|
|
66139
|
-
"name": "ISO8601_FORMAT_DATE",
|
|
66140
|
-
"default": "/^([0-9]{4})-(0[1-9]|1[0-2])-(0[1-9]|[1-3][0-9])$/"
|
|
66141
|
-
},
|
|
66142
66197
|
{
|
|
66143
66198
|
"kind": "class",
|
|
66144
66199
|
"description": "Abstract date functionality.\n\nAdapted from https://github.com/angular/components/blob/main/src/material/core/datetime/date-adapter.ts",
|
|
@@ -66746,57 +66801,113 @@
|
|
|
66746
66801
|
"exports": [
|
|
66747
66802
|
{
|
|
66748
66803
|
"kind": "js",
|
|
66749
|
-
"name": "
|
|
66804
|
+
"name": "FORMAT_DATE",
|
|
66750
66805
|
"declaration": {
|
|
66751
|
-
"name": "
|
|
66806
|
+
"name": "FORMAT_DATE",
|
|
66752
66807
|
"module": "core/datetime/date-adapter.js"
|
|
66753
66808
|
}
|
|
66754
66809
|
},
|
|
66755
66810
|
{
|
|
66756
66811
|
"kind": "js",
|
|
66757
|
-
"name": "
|
|
66812
|
+
"name": "ISO8601_FORMAT_DATE",
|
|
66758
66813
|
"declaration": {
|
|
66759
|
-
"name": "
|
|
66814
|
+
"name": "ISO8601_FORMAT_DATE",
|
|
66760
66815
|
"module": "core/datetime/date-adapter.js"
|
|
66761
66816
|
}
|
|
66762
66817
|
},
|
|
66763
66818
|
{
|
|
66764
66819
|
"kind": "js",
|
|
66765
|
-
"name": "
|
|
66820
|
+
"name": "MONDAY",
|
|
66766
66821
|
"declaration": {
|
|
66767
|
-
"name": "
|
|
66822
|
+
"name": "MONDAY",
|
|
66768
66823
|
"module": "core/datetime/date-adapter.js"
|
|
66769
66824
|
}
|
|
66770
66825
|
},
|
|
66771
66826
|
{
|
|
66772
66827
|
"kind": "js",
|
|
66773
|
-
"name": "
|
|
66828
|
+
"name": "TUESDAY",
|
|
66774
66829
|
"declaration": {
|
|
66775
|
-
"name": "
|
|
66830
|
+
"name": "TUESDAY",
|
|
66776
66831
|
"module": "core/datetime/date-adapter.js"
|
|
66777
66832
|
}
|
|
66778
66833
|
},
|
|
66779
66834
|
{
|
|
66780
66835
|
"kind": "js",
|
|
66781
|
-
"name": "
|
|
66836
|
+
"name": "WEDNESDAY",
|
|
66782
66837
|
"declaration": {
|
|
66783
|
-
"name": "
|
|
66838
|
+
"name": "WEDNESDAY",
|
|
66784
66839
|
"module": "core/datetime/date-adapter.js"
|
|
66785
66840
|
}
|
|
66786
66841
|
},
|
|
66787
66842
|
{
|
|
66788
66843
|
"kind": "js",
|
|
66789
|
-
"name": "
|
|
66844
|
+
"name": "THURSDAY",
|
|
66790
66845
|
"declaration": {
|
|
66791
|
-
"name": "
|
|
66846
|
+
"name": "THURSDAY",
|
|
66792
66847
|
"module": "core/datetime/date-adapter.js"
|
|
66793
66848
|
}
|
|
66794
66849
|
},
|
|
66795
66850
|
{
|
|
66796
66851
|
"kind": "js",
|
|
66797
|
-
"name": "
|
|
66852
|
+
"name": "FRIDAY",
|
|
66798
66853
|
"declaration": {
|
|
66799
|
-
"name": "
|
|
66854
|
+
"name": "FRIDAY",
|
|
66855
|
+
"module": "core/datetime/date-adapter.js"
|
|
66856
|
+
}
|
|
66857
|
+
},
|
|
66858
|
+
{
|
|
66859
|
+
"kind": "js",
|
|
66860
|
+
"name": "SATURDAY",
|
|
66861
|
+
"declaration": {
|
|
66862
|
+
"name": "SATURDAY",
|
|
66863
|
+
"module": "core/datetime/date-adapter.js"
|
|
66864
|
+
}
|
|
66865
|
+
},
|
|
66866
|
+
{
|
|
66867
|
+
"kind": "js",
|
|
66868
|
+
"name": "SUNDAY",
|
|
66869
|
+
"declaration": {
|
|
66870
|
+
"name": "SUNDAY",
|
|
66871
|
+
"module": "core/datetime/date-adapter.js"
|
|
66872
|
+
}
|
|
66873
|
+
},
|
|
66874
|
+
{
|
|
66875
|
+
"kind": "js",
|
|
66876
|
+
"name": "DAYS_PER_ROW",
|
|
66877
|
+
"declaration": {
|
|
66878
|
+
"name": "DAYS_PER_ROW",
|
|
66879
|
+
"module": "core/datetime/date-adapter.js"
|
|
66880
|
+
}
|
|
66881
|
+
},
|
|
66882
|
+
{
|
|
66883
|
+
"kind": "js",
|
|
66884
|
+
"name": "MONTHS_PER_ROW",
|
|
66885
|
+
"declaration": {
|
|
66886
|
+
"name": "MONTHS_PER_ROW",
|
|
66887
|
+
"module": "core/datetime/date-adapter.js"
|
|
66888
|
+
}
|
|
66889
|
+
},
|
|
66890
|
+
{
|
|
66891
|
+
"kind": "js",
|
|
66892
|
+
"name": "YEARS_PER_ROW",
|
|
66893
|
+
"declaration": {
|
|
66894
|
+
"name": "YEARS_PER_ROW",
|
|
66895
|
+
"module": "core/datetime/date-adapter.js"
|
|
66896
|
+
}
|
|
66897
|
+
},
|
|
66898
|
+
{
|
|
66899
|
+
"kind": "js",
|
|
66900
|
+
"name": "MONTHS_PER_PAGE",
|
|
66901
|
+
"declaration": {
|
|
66902
|
+
"name": "MONTHS_PER_PAGE",
|
|
66903
|
+
"module": "core/datetime/date-adapter.js"
|
|
66904
|
+
}
|
|
66905
|
+
},
|
|
66906
|
+
{
|
|
66907
|
+
"kind": "js",
|
|
66908
|
+
"name": "YEARS_PER_PAGE",
|
|
66909
|
+
"declaration": {
|
|
66910
|
+
"name": "YEARS_PER_PAGE",
|
|
66800
66911
|
"module": "core/datetime/date-adapter.js"
|
|
66801
66912
|
}
|
|
66802
66913
|
},
|
|
@@ -87383,85 +87494,111 @@
|
|
|
87383
87494
|
},
|
|
87384
87495
|
{
|
|
87385
87496
|
"kind": "javascript-module",
|
|
87386
|
-
"path": "
|
|
87497
|
+
"path": "file-selector/common/file-selector-common.js",
|
|
87387
87498
|
"declarations": [
|
|
87388
87499
|
{
|
|
87389
87500
|
"kind": "class",
|
|
87390
|
-
"description": "
|
|
87391
|
-
"name": "
|
|
87392
|
-
"
|
|
87501
|
+
"description": "",
|
|
87502
|
+
"name": "SbbFileSelectorCommonElementMixinType",
|
|
87503
|
+
"members": [
|
|
87393
87504
|
{
|
|
87394
|
-
"
|
|
87395
|
-
"name": ""
|
|
87505
|
+
"kind": "field",
|
|
87506
|
+
"name": "size",
|
|
87507
|
+
"type": {
|
|
87508
|
+
"text": "'s' | 'm'"
|
|
87509
|
+
},
|
|
87510
|
+
"privacy": "public"
|
|
87396
87511
|
},
|
|
87397
87512
|
{
|
|
87398
|
-
"
|
|
87399
|
-
"name": "
|
|
87400
|
-
|
|
87401
|
-
|
|
87402
|
-
|
|
87513
|
+
"kind": "field",
|
|
87514
|
+
"name": "multiple",
|
|
87515
|
+
"type": {
|
|
87516
|
+
"text": "boolean"
|
|
87517
|
+
},
|
|
87518
|
+
"privacy": "public"
|
|
87519
|
+
},
|
|
87403
87520
|
{
|
|
87404
87521
|
"kind": "field",
|
|
87405
|
-
"name": "
|
|
87522
|
+
"name": "multipleMode",
|
|
87523
|
+
"type": {
|
|
87524
|
+
"text": "'default' | 'persistent'"
|
|
87525
|
+
},
|
|
87526
|
+
"privacy": "public"
|
|
87527
|
+
},
|
|
87528
|
+
{
|
|
87529
|
+
"kind": "field",
|
|
87530
|
+
"name": "accept",
|
|
87406
87531
|
"type": {
|
|
87407
87532
|
"text": "string"
|
|
87408
87533
|
},
|
|
87409
|
-
"privacy": "public"
|
|
87410
|
-
|
|
87411
|
-
|
|
87412
|
-
"
|
|
87413
|
-
|
|
87414
|
-
|
|
87534
|
+
"privacy": "public"
|
|
87535
|
+
},
|
|
87536
|
+
{
|
|
87537
|
+
"kind": "field",
|
|
87538
|
+
"name": "accessibilityLabel",
|
|
87539
|
+
"type": {
|
|
87540
|
+
"text": "string"
|
|
87415
87541
|
},
|
|
87416
|
-
"
|
|
87542
|
+
"privacy": "public"
|
|
87417
87543
|
},
|
|
87418
87544
|
{
|
|
87419
87545
|
"kind": "field",
|
|
87420
|
-
"name": "
|
|
87421
|
-
"privacy": "public",
|
|
87422
|
-
"static": true,
|
|
87423
|
-
"readonly": true,
|
|
87424
|
-
"default": "{ toggleexpanded: 'toggleexpanded', }",
|
|
87546
|
+
"name": "files",
|
|
87425
87547
|
"type": {
|
|
87426
|
-
"text": "
|
|
87427
|
-
}
|
|
87548
|
+
"text": "Readonly<File>[]"
|
|
87549
|
+
},
|
|
87550
|
+
"privacy": "public"
|
|
87428
87551
|
},
|
|
87429
87552
|
{
|
|
87430
87553
|
"kind": "field",
|
|
87431
|
-
"name": "
|
|
87432
|
-
"
|
|
87433
|
-
|
|
87554
|
+
"name": "value",
|
|
87555
|
+
"type": {
|
|
87556
|
+
"text": "string | null"
|
|
87557
|
+
},
|
|
87558
|
+
"privacy": "public",
|
|
87559
|
+
"inheritedFrom": {
|
|
87560
|
+
"name": "SbbFormAssociatedMixin",
|
|
87561
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
87562
|
+
}
|
|
87434
87563
|
},
|
|
87435
87564
|
{
|
|
87436
87565
|
"kind": "field",
|
|
87437
|
-
"name": "
|
|
87566
|
+
"name": "loadButton",
|
|
87438
87567
|
"type": {
|
|
87439
|
-
"text": "
|
|
87568
|
+
"text": "SbbSecondaryButtonStaticElement"
|
|
87440
87569
|
},
|
|
87441
|
-
"privacy": "
|
|
87570
|
+
"privacy": "protected"
|
|
87442
87571
|
},
|
|
87443
87572
|
{
|
|
87444
87573
|
"kind": "field",
|
|
87445
|
-
"name": "
|
|
87574
|
+
"name": "language",
|
|
87446
87575
|
"type": {
|
|
87447
|
-
"text": "
|
|
87576
|
+
"text": "SbbLanguageController"
|
|
87448
87577
|
},
|
|
87449
|
-
"privacy": "
|
|
87578
|
+
"privacy": "protected"
|
|
87450
87579
|
},
|
|
87451
87580
|
{
|
|
87452
87581
|
"kind": "method",
|
|
87453
|
-
"name": "
|
|
87454
|
-
"privacy": "
|
|
87582
|
+
"name": "renderTemplate",
|
|
87583
|
+
"privacy": "protected",
|
|
87455
87584
|
"return": {
|
|
87456
87585
|
"type": {
|
|
87457
|
-
"text": "
|
|
87586
|
+
"text": "TemplateResult"
|
|
87458
87587
|
}
|
|
87459
|
-
}
|
|
87588
|
+
},
|
|
87589
|
+
"parameters": [
|
|
87590
|
+
{
|
|
87591
|
+
"name": "input",
|
|
87592
|
+
"type": {
|
|
87593
|
+
"text": "TemplateResult"
|
|
87594
|
+
}
|
|
87595
|
+
}
|
|
87596
|
+
]
|
|
87460
87597
|
},
|
|
87461
87598
|
{
|
|
87462
87599
|
"kind": "method",
|
|
87463
|
-
"name": "
|
|
87464
|
-
"privacy": "
|
|
87600
|
+
"name": "createFileList",
|
|
87601
|
+
"privacy": "protected",
|
|
87465
87602
|
"return": {
|
|
87466
87603
|
"type": {
|
|
87467
87604
|
"text": "void"
|
|
@@ -87469,54 +87606,56 @@
|
|
|
87469
87606
|
},
|
|
87470
87607
|
"parameters": [
|
|
87471
87608
|
{
|
|
87472
|
-
"name": "
|
|
87609
|
+
"name": "files",
|
|
87473
87610
|
"type": {
|
|
87474
|
-
"text": "
|
|
87611
|
+
"text": "FileList"
|
|
87475
87612
|
}
|
|
87476
87613
|
}
|
|
87477
87614
|
]
|
|
87478
87615
|
},
|
|
87479
87616
|
{
|
|
87480
87617
|
"kind": "method",
|
|
87481
|
-
"name": "
|
|
87482
|
-
"privacy": "
|
|
87618
|
+
"name": "getButtonLabel",
|
|
87619
|
+
"privacy": "protected",
|
|
87483
87620
|
"return": {
|
|
87484
87621
|
"type": {
|
|
87485
|
-
"text": "
|
|
87622
|
+
"text": "string"
|
|
87486
87623
|
}
|
|
87487
|
-
}
|
|
87488
|
-
"description": "The :state(icon) is used by the 'sbb-expansion-panel'.\nIt needs to be set before the"
|
|
87624
|
+
}
|
|
87489
87625
|
},
|
|
87490
87626
|
{
|
|
87491
87627
|
"kind": "method",
|
|
87492
|
-
"name": "
|
|
87493
|
-
"privacy": "
|
|
87628
|
+
"name": "formResetCallback",
|
|
87629
|
+
"privacy": "public",
|
|
87494
87630
|
"return": {
|
|
87495
87631
|
"type": {
|
|
87496
|
-
"text": "
|
|
87632
|
+
"text": "void"
|
|
87497
87633
|
}
|
|
87498
|
-
},
|
|
87499
|
-
"description": "Override this method to render the component template.",
|
|
87500
|
-
"inheritedFrom": {
|
|
87501
|
-
"name": "SbbActionBaseElement",
|
|
87502
|
-
"module": "core/base-elements/action-base-element.js"
|
|
87503
87634
|
}
|
|
87504
87635
|
},
|
|
87505
87636
|
{
|
|
87506
|
-
"kind": "
|
|
87507
|
-
"name": "
|
|
87508
|
-
"type": {
|
|
87509
|
-
"text": "boolean"
|
|
87510
|
-
},
|
|
87637
|
+
"kind": "method",
|
|
87638
|
+
"name": "formStateRestoreCallback",
|
|
87511
87639
|
"privacy": "public",
|
|
87512
|
-
"
|
|
87513
|
-
|
|
87514
|
-
|
|
87515
|
-
|
|
87516
|
-
|
|
87517
|
-
|
|
87518
|
-
|
|
87519
|
-
|
|
87640
|
+
"return": {
|
|
87641
|
+
"type": {
|
|
87642
|
+
"text": "void"
|
|
87643
|
+
}
|
|
87644
|
+
},
|
|
87645
|
+
"parameters": [
|
|
87646
|
+
{
|
|
87647
|
+
"name": "state",
|
|
87648
|
+
"type": {
|
|
87649
|
+
"text": "FormRestoreState | null"
|
|
87650
|
+
}
|
|
87651
|
+
},
|
|
87652
|
+
{
|
|
87653
|
+
"name": "reason",
|
|
87654
|
+
"type": {
|
|
87655
|
+
"text": "FormRestoreReason"
|
|
87656
|
+
}
|
|
87657
|
+
}
|
|
87658
|
+
]
|
|
87520
87659
|
},
|
|
87521
87660
|
{
|
|
87522
87661
|
"kind": "field",
|
|
@@ -87564,112 +87703,16 @@
|
|
|
87564
87703
|
},
|
|
87565
87704
|
{
|
|
87566
87705
|
"kind": "field",
|
|
87567
|
-
"name": "
|
|
87568
|
-
"type": {
|
|
87569
|
-
"text": "string"
|
|
87570
|
-
},
|
|
87571
|
-
"privacy": "public",
|
|
87572
|
-
"default": "''",
|
|
87573
|
-
"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.",
|
|
87574
|
-
"attribute": "icon-name",
|
|
87575
|
-
"inheritedFrom": {
|
|
87576
|
-
"name": "SbbIconNameMixin",
|
|
87577
|
-
"module": "icon/icon-name-mixin.js"
|
|
87578
|
-
}
|
|
87579
|
-
},
|
|
87580
|
-
{
|
|
87581
|
-
"kind": "method",
|
|
87582
|
-
"name": "renderIconSlot",
|
|
87583
|
-
"privacy": "protected",
|
|
87584
|
-
"return": {
|
|
87585
|
-
"type": {
|
|
87586
|
-
"text": "TemplateResult"
|
|
87587
|
-
}
|
|
87588
|
-
},
|
|
87589
|
-
"parameters": [
|
|
87590
|
-
{
|
|
87591
|
-
"name": "classname",
|
|
87592
|
-
"optional": true,
|
|
87593
|
-
"type": {
|
|
87594
|
-
"text": "string"
|
|
87595
|
-
}
|
|
87596
|
-
}
|
|
87597
|
-
],
|
|
87598
|
-
"inheritedFrom": {
|
|
87599
|
-
"name": "SbbIconNameMixin",
|
|
87600
|
-
"module": "icon/icon-name-mixin.js"
|
|
87601
|
-
}
|
|
87602
|
-
},
|
|
87603
|
-
{
|
|
87604
|
-
"kind": "method",
|
|
87605
|
-
"name": "renderIconName",
|
|
87606
|
-
"privacy": "protected",
|
|
87607
|
-
"return": {
|
|
87608
|
-
"type": {
|
|
87609
|
-
"text": "string"
|
|
87610
|
-
}
|
|
87611
|
-
},
|
|
87612
|
-
"inheritedFrom": {
|
|
87613
|
-
"name": "SbbIconNameMixin",
|
|
87614
|
-
"module": "icon/icon-name-mixin.js"
|
|
87615
|
-
}
|
|
87616
|
-
},
|
|
87617
|
-
{
|
|
87618
|
-
"kind": "method",
|
|
87619
|
-
"name": "_renderIconName",
|
|
87620
|
-
"privacy": "private",
|
|
87621
|
-
"return": {
|
|
87622
|
-
"type": {
|
|
87623
|
-
"text": "string"
|
|
87624
|
-
}
|
|
87625
|
-
},
|
|
87626
|
-
"inheritedFrom": {
|
|
87627
|
-
"name": "SbbIconNameMixin",
|
|
87628
|
-
"module": "icon/icon-name-mixin.js"
|
|
87629
|
-
}
|
|
87630
|
-
},
|
|
87631
|
-
{
|
|
87632
|
-
"kind": "field",
|
|
87633
|
-
"name": "_elementsOnWhichEnterPressTriggersSubmit",
|
|
87634
|
-
"type": {
|
|
87635
|
-
"text": "array"
|
|
87636
|
-
},
|
|
87637
|
-
"privacy": "private",
|
|
87638
|
-
"readonly": true,
|
|
87639
|
-
"default": "[ 'input', 'sbb-date-input', 'sbb-time-input', ]",
|
|
87640
|
-
"inheritedFrom": {
|
|
87641
|
-
"name": "SbbButtonBaseElement",
|
|
87642
|
-
"module": "core/base-elements/button-base-element.js"
|
|
87643
|
-
}
|
|
87644
|
-
},
|
|
87645
|
-
{
|
|
87646
|
-
"kind": "field",
|
|
87647
|
-
"name": "value",
|
|
87706
|
+
"name": "formAssociated",
|
|
87648
87707
|
"type": {
|
|
87649
|
-
"text": "
|
|
87650
|
-
},
|
|
87651
|
-
"privacy": "public",
|
|
87652
|
-
"inheritedFrom": {
|
|
87653
|
-
"name": "SbbButtonBaseElement",
|
|
87654
|
-
"module": "core/base-elements/button-base-element.js"
|
|
87708
|
+
"text": "boolean"
|
|
87655
87709
|
},
|
|
87656
|
-
"default": "''",
|
|
87657
|
-
"description": "Value of the form element.",
|
|
87658
|
-
"attribute": "value"
|
|
87659
|
-
},
|
|
87660
|
-
{
|
|
87661
|
-
"kind": "field",
|
|
87662
|
-
"name": "type",
|
|
87663
87710
|
"privacy": "public",
|
|
87664
|
-
"
|
|
87665
|
-
"default": "
|
|
87666
|
-
"type": {
|
|
87667
|
-
"text": "SbbButtonType"
|
|
87668
|
-
},
|
|
87669
|
-
"attribute": "type",
|
|
87711
|
+
"static": true,
|
|
87712
|
+
"default": "true",
|
|
87670
87713
|
"inheritedFrom": {
|
|
87671
|
-
"name": "
|
|
87672
|
-
"module": "core/
|
|
87714
|
+
"name": "SbbFormAssociatedMixin",
|
|
87715
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
87673
87716
|
}
|
|
87674
87717
|
},
|
|
87675
87718
|
{
|
|
@@ -87679,75 +87722,8 @@
|
|
|
87679
87722
|
"text": "HTMLFormElement | null"
|
|
87680
87723
|
},
|
|
87681
87724
|
"privacy": "public",
|
|
87682
|
-
"description": "
|
|
87683
|
-
"
|
|
87684
|
-
"name": "SbbButtonBaseElement",
|
|
87685
|
-
"module": "core/base-elements/button-base-element.js"
|
|
87686
|
-
},
|
|
87687
|
-
"attribute": "form"
|
|
87688
|
-
},
|
|
87689
|
-
{
|
|
87690
|
-
"kind": "field",
|
|
87691
|
-
"name": "_formId",
|
|
87692
|
-
"type": {
|
|
87693
|
-
"text": "string"
|
|
87694
|
-
},
|
|
87695
|
-
"privacy": "private",
|
|
87696
|
-
"default": "''",
|
|
87697
|
-
"inheritedFrom": {
|
|
87698
|
-
"name": "SbbButtonBaseElement",
|
|
87699
|
-
"module": "core/base-elements/button-base-element.js"
|
|
87700
|
-
}
|
|
87701
|
-
},
|
|
87702
|
-
{
|
|
87703
|
-
"kind": "field",
|
|
87704
|
-
"name": "_handleButtonClick",
|
|
87705
|
-
"privacy": "private",
|
|
87706
|
-
"inheritedFrom": {
|
|
87707
|
-
"name": "SbbButtonBaseElement",
|
|
87708
|
-
"module": "core/base-elements/button-base-element.js"
|
|
87709
|
-
}
|
|
87710
|
-
},
|
|
87711
|
-
{
|
|
87712
|
-
"kind": "method",
|
|
87713
|
-
"name": "_requestSubmit",
|
|
87714
|
-
"privacy": "private",
|
|
87715
|
-
"return": {
|
|
87716
|
-
"type": {
|
|
87717
|
-
"text": "void"
|
|
87718
|
-
}
|
|
87719
|
-
},
|
|
87720
|
-
"parameters": [
|
|
87721
|
-
{
|
|
87722
|
-
"name": "form",
|
|
87723
|
-
"type": {
|
|
87724
|
-
"text": "HTMLFormElement"
|
|
87725
|
-
}
|
|
87726
|
-
}
|
|
87727
|
-
],
|
|
87728
|
-
"inheritedFrom": {
|
|
87729
|
-
"name": "SbbButtonBaseElement",
|
|
87730
|
-
"module": "core/base-elements/button-base-element.js"
|
|
87731
|
-
}
|
|
87732
|
-
},
|
|
87733
|
-
{
|
|
87734
|
-
"kind": "field",
|
|
87735
|
-
"name": "_formKeyDown",
|
|
87736
|
-
"privacy": "private",
|
|
87737
|
-
"inheritedFrom": {
|
|
87738
|
-
"name": "SbbButtonBaseElement",
|
|
87739
|
-
"module": "core/base-elements/button-base-element.js"
|
|
87740
|
-
}
|
|
87741
|
-
},
|
|
87742
|
-
{
|
|
87743
|
-
"kind": "field",
|
|
87744
|
-
"name": "formAssociated",
|
|
87745
|
-
"type": {
|
|
87746
|
-
"text": "boolean"
|
|
87747
|
-
},
|
|
87748
|
-
"privacy": "public",
|
|
87749
|
-
"static": true,
|
|
87750
|
-
"default": "true",
|
|
87725
|
+
"description": "Returns the form owner of this element.",
|
|
87726
|
+
"readonly": true,
|
|
87751
87727
|
"inheritedFrom": {
|
|
87752
87728
|
"name": "SbbFormAssociatedMixin",
|
|
87753
87729
|
"module": "core/mixins/form-associated-mixin.js"
|
|
@@ -88040,111 +88016,6 @@
|
|
|
88040
88016
|
"module": "core/mixins/form-associated-mixin.js"
|
|
88041
88017
|
}
|
|
88042
88018
|
},
|
|
88043
|
-
{
|
|
88044
|
-
"kind": "field",
|
|
88045
|
-
"name": "role",
|
|
88046
|
-
"type": {
|
|
88047
|
-
"text": "ElementInternals['role']"
|
|
88048
|
-
},
|
|
88049
|
-
"privacy": "public",
|
|
88050
|
-
"static": true,
|
|
88051
|
-
"readonly": true,
|
|
88052
|
-
"default": "'button'",
|
|
88053
|
-
"inheritedFrom": {
|
|
88054
|
-
"name": "SbbButtonLikeBaseElement",
|
|
88055
|
-
"module": "core/base-elements/button-base-element.js"
|
|
88056
|
-
}
|
|
88057
|
-
},
|
|
88058
|
-
{
|
|
88059
|
-
"kind": "field",
|
|
88060
|
-
"name": "_preventScrollOnSpaceKeydown",
|
|
88061
|
-
"privacy": "private",
|
|
88062
|
-
"description": "Prevents scrolling from pressing Space, when the event target is an action element.\nAlso sets active state.",
|
|
88063
|
-
"parameters": [
|
|
88064
|
-
{
|
|
88065
|
-
"description": "The origin event.",
|
|
88066
|
-
"name": "event"
|
|
88067
|
-
}
|
|
88068
|
-
],
|
|
88069
|
-
"inheritedFrom": {
|
|
88070
|
-
"name": "SbbButtonLikeBaseElement",
|
|
88071
|
-
"module": "core/base-elements/button-base-element.js"
|
|
88072
|
-
}
|
|
88073
|
-
},
|
|
88074
|
-
{
|
|
88075
|
-
"kind": "field",
|
|
88076
|
-
"name": "_removeActiveMarker",
|
|
88077
|
-
"privacy": "private",
|
|
88078
|
-
"inheritedFrom": {
|
|
88079
|
-
"name": "SbbButtonLikeBaseElement",
|
|
88080
|
-
"module": "core/base-elements/button-base-element.js"
|
|
88081
|
-
}
|
|
88082
|
-
},
|
|
88083
|
-
{
|
|
88084
|
-
"kind": "field",
|
|
88085
|
-
"name": "_dispatchClickEventOnSpaceKeyup",
|
|
88086
|
-
"privacy": "private",
|
|
88087
|
-
"description": "Dispatches a 'click' PointerEvent if the original keyboard event is a 'Space' press.\nAs verified with the native button, when 'Space' is pressed, a 'click' event is dispatched\nafter the 'keyup' event.",
|
|
88088
|
-
"parameters": [
|
|
88089
|
-
{
|
|
88090
|
-
"description": "The origin event.",
|
|
88091
|
-
"name": "event"
|
|
88092
|
-
}
|
|
88093
|
-
],
|
|
88094
|
-
"inheritedFrom": {
|
|
88095
|
-
"name": "SbbButtonLikeBaseElement",
|
|
88096
|
-
"module": "core/base-elements/button-base-element.js"
|
|
88097
|
-
}
|
|
88098
|
-
},
|
|
88099
|
-
{
|
|
88100
|
-
"kind": "field",
|
|
88101
|
-
"name": "_dispatchClickEvent",
|
|
88102
|
-
"privacy": "private",
|
|
88103
|
-
"inheritedFrom": {
|
|
88104
|
-
"name": "SbbButtonLikeBaseElement",
|
|
88105
|
-
"module": "core/base-elements/button-base-element.js"
|
|
88106
|
-
}
|
|
88107
|
-
},
|
|
88108
|
-
{
|
|
88109
|
-
"kind": "field",
|
|
88110
|
-
"name": "maybeDisabled",
|
|
88111
|
-
"type": {
|
|
88112
|
-
"text": "boolean | undefined"
|
|
88113
|
-
},
|
|
88114
|
-
"privacy": "protected",
|
|
88115
|
-
"readonly": true,
|
|
88116
|
-
"inheritedFrom": {
|
|
88117
|
-
"name": "SbbActionBaseElement",
|
|
88118
|
-
"module": "core/base-elements/action-base-element.js"
|
|
88119
|
-
}
|
|
88120
|
-
},
|
|
88121
|
-
{
|
|
88122
|
-
"kind": "field",
|
|
88123
|
-
"name": "maybeDisabledInteractive",
|
|
88124
|
-
"type": {
|
|
88125
|
-
"text": "boolean | undefined"
|
|
88126
|
-
},
|
|
88127
|
-
"privacy": "protected",
|
|
88128
|
-
"readonly": true,
|
|
88129
|
-
"inheritedFrom": {
|
|
88130
|
-
"name": "SbbActionBaseElement",
|
|
88131
|
-
"module": "core/base-elements/action-base-element.js"
|
|
88132
|
-
}
|
|
88133
|
-
},
|
|
88134
|
-
{
|
|
88135
|
-
"kind": "method",
|
|
88136
|
-
"name": "setupBaseEventHandlers",
|
|
88137
|
-
"privacy": "protected",
|
|
88138
|
-
"return": {
|
|
88139
|
-
"type": {
|
|
88140
|
-
"text": "void"
|
|
88141
|
-
}
|
|
88142
|
-
},
|
|
88143
|
-
"inheritedFrom": {
|
|
88144
|
-
"name": "SbbActionBaseElement",
|
|
88145
|
-
"module": "core/base-elements/action-base-element.js"
|
|
88146
|
-
}
|
|
88147
|
-
},
|
|
88148
88019
|
{
|
|
88149
88020
|
"kind": "field",
|
|
88150
88021
|
"name": "_hydrationRequired",
|
|
@@ -88240,56 +88111,46 @@
|
|
|
88240
88111
|
},
|
|
88241
88112
|
{
|
|
88242
88113
|
"kind": "field",
|
|
88243
|
-
"name": "
|
|
88114
|
+
"name": "elementName",
|
|
88244
88115
|
"type": {
|
|
88245
|
-
"text": "
|
|
88116
|
+
"text": "string"
|
|
88246
88117
|
},
|
|
88247
|
-
"privacy": "
|
|
88118
|
+
"privacy": "public",
|
|
88119
|
+
"static": true,
|
|
88120
|
+
"readonly": true,
|
|
88248
88121
|
"inheritedFrom": {
|
|
88249
88122
|
"name": "SbbElement",
|
|
88250
88123
|
"module": "core/base-elements/element.js"
|
|
88251
88124
|
}
|
|
88252
|
-
}
|
|
88253
|
-
],
|
|
88254
|
-
"events": [
|
|
88125
|
+
},
|
|
88255
88126
|
{
|
|
88256
|
-
"
|
|
88127
|
+
"kind": "field",
|
|
88128
|
+
"name": "_controllers",
|
|
88257
88129
|
"type": {
|
|
88258
|
-
"text": "
|
|
88130
|
+
"text": "Set<SbbReactiveController> | undefined"
|
|
88259
88131
|
},
|
|
88260
|
-
"
|
|
88132
|
+
"privacy": "private",
|
|
88133
|
+
"inheritedFrom": {
|
|
88134
|
+
"name": "SbbElement",
|
|
88135
|
+
"module": "core/base-elements/element.js"
|
|
88136
|
+
}
|
|
88261
88137
|
}
|
|
88262
88138
|
],
|
|
88263
88139
|
"mixins": [
|
|
88264
88140
|
{
|
|
88265
|
-
"name": "
|
|
88141
|
+
"name": "SbbDisabledMixin",
|
|
88266
88142
|
"module": "core/mixins.js"
|
|
88267
88143
|
},
|
|
88268
88144
|
{
|
|
88269
|
-
"name": "
|
|
88270
|
-
"module": "
|
|
88145
|
+
"name": "SbbFormAssociatedMixin",
|
|
88146
|
+
"module": "core/mixins.js"
|
|
88271
88147
|
}
|
|
88272
88148
|
],
|
|
88273
88149
|
"superclass": {
|
|
88274
|
-
"name": "
|
|
88150
|
+
"name": "SbbElement",
|
|
88275
88151
|
"module": "core/base-elements.js"
|
|
88276
88152
|
},
|
|
88277
|
-
"tagName": "sbb-expansion-panel-header",
|
|
88278
|
-
"customElement": true,
|
|
88279
88153
|
"attributes": [
|
|
88280
|
-
{
|
|
88281
|
-
"name": "disabled-interactive",
|
|
88282
|
-
"type": {
|
|
88283
|
-
"text": "boolean"
|
|
88284
|
-
},
|
|
88285
|
-
"default": "false",
|
|
88286
|
-
"description": "Whether the button should be aria-disabled but stay interactive.",
|
|
88287
|
-
"fieldName": "disabledInteractive",
|
|
88288
|
-
"inheritedFrom": {
|
|
88289
|
-
"name": "SbbDisabledInteractiveMixin",
|
|
88290
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
88291
|
-
}
|
|
88292
|
-
},
|
|
88293
88154
|
{
|
|
88294
88155
|
"name": "disabled",
|
|
88295
88156
|
"description": "Whether the component is disabled.",
|
|
@@ -88303,57 +88164,6 @@
|
|
|
88303
88164
|
"module": "core/mixins/disabled-mixin.js"
|
|
88304
88165
|
}
|
|
88305
88166
|
},
|
|
88306
|
-
{
|
|
88307
|
-
"name": "icon-name",
|
|
88308
|
-
"type": {
|
|
88309
|
-
"text": "string"
|
|
88310
|
-
},
|
|
88311
|
-
"default": "''",
|
|
88312
|
-
"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.",
|
|
88313
|
-
"fieldName": "iconName",
|
|
88314
|
-
"inheritedFrom": {
|
|
88315
|
-
"name": "SbbIconNameMixin",
|
|
88316
|
-
"module": "icon/icon-name-mixin.js"
|
|
88317
|
-
}
|
|
88318
|
-
},
|
|
88319
|
-
{
|
|
88320
|
-
"name": "value",
|
|
88321
|
-
"type": {
|
|
88322
|
-
"text": "string"
|
|
88323
|
-
},
|
|
88324
|
-
"default": "''",
|
|
88325
|
-
"description": "Value of the form element.",
|
|
88326
|
-
"fieldName": "value",
|
|
88327
|
-
"inheritedFrom": {
|
|
88328
|
-
"name": "SbbButtonBaseElement",
|
|
88329
|
-
"module": "core/base-elements/button-base-element.js"
|
|
88330
|
-
}
|
|
88331
|
-
},
|
|
88332
|
-
{
|
|
88333
|
-
"name": "type",
|
|
88334
|
-
"description": "The type attribute to use for the button.",
|
|
88335
|
-
"default": "'button'",
|
|
88336
|
-
"type": {
|
|
88337
|
-
"text": "SbbButtonType"
|
|
88338
|
-
},
|
|
88339
|
-
"fieldName": "type",
|
|
88340
|
-
"inheritedFrom": {
|
|
88341
|
-
"name": "SbbButtonBaseElement",
|
|
88342
|
-
"module": "core/base-elements/button-base-element.js"
|
|
88343
|
-
}
|
|
88344
|
-
},
|
|
88345
|
-
{
|
|
88346
|
-
"name": "form",
|
|
88347
|
-
"description": "The `<form>` element to associate the button with.",
|
|
88348
|
-
"type": {
|
|
88349
|
-
"text": "HTMLFormElement | null"
|
|
88350
|
-
},
|
|
88351
|
-
"fieldName": "form",
|
|
88352
|
-
"inheritedFrom": {
|
|
88353
|
-
"name": "SbbButtonBaseElement",
|
|
88354
|
-
"module": "core/base-elements/button-base-element.js"
|
|
88355
|
-
}
|
|
88356
|
-
},
|
|
88357
88167
|
{
|
|
88358
88168
|
"name": "name",
|
|
88359
88169
|
"description": "Name of the form element. Will be read from name attribute.",
|
|
@@ -88367,35 +88177,34 @@
|
|
|
88367
88177
|
}
|
|
88368
88178
|
}
|
|
88369
88179
|
]
|
|
88370
|
-
}
|
|
88371
|
-
],
|
|
88372
|
-
"exports": [
|
|
88373
|
-
{
|
|
88374
|
-
"kind": "js",
|
|
88375
|
-
"name": "SbbExpansionPanelHeaderElement",
|
|
88376
|
-
"declaration": {
|
|
88377
|
-
"name": "SbbExpansionPanelHeaderElement",
|
|
88378
|
-
"module": "expansion-panel/expansion-panel-header/expansion-panel-header.component.js"
|
|
88379
|
-
}
|
|
88380
|
-
}
|
|
88381
|
-
]
|
|
88382
|
-
},
|
|
88383
|
-
{
|
|
88384
|
-
"kind": "javascript-module",
|
|
88385
|
-
"path": "file-selector/common/file-selector-common.js",
|
|
88386
|
-
"declarations": [
|
|
88180
|
+
},
|
|
88387
88181
|
{
|
|
88388
|
-
"kind": "
|
|
88182
|
+
"kind": "mixin",
|
|
88389
88183
|
"description": "",
|
|
88390
|
-
"name": "
|
|
88184
|
+
"name": "SbbFileSelectorCommonElementMixin",
|
|
88391
88185
|
"members": [
|
|
88186
|
+
{
|
|
88187
|
+
"kind": "field",
|
|
88188
|
+
"name": "events",
|
|
88189
|
+
"privacy": "public",
|
|
88190
|
+
"static": true,
|
|
88191
|
+
"readonly": true,
|
|
88192
|
+
"default": "{ filechanged: 'filechanged', }",
|
|
88193
|
+
"type": {
|
|
88194
|
+
"text": "{\n filechanged: 'filechanged',\n }"
|
|
88195
|
+
}
|
|
88196
|
+
},
|
|
88392
88197
|
{
|
|
88393
88198
|
"kind": "field",
|
|
88394
88199
|
"name": "size",
|
|
88395
88200
|
"type": {
|
|
88396
88201
|
"text": "'s' | 'm'"
|
|
88397
88202
|
},
|
|
88398
|
-
"privacy": "public"
|
|
88203
|
+
"privacy": "public",
|
|
88204
|
+
"description": "Size variant, either s or m.",
|
|
88205
|
+
"default": "'m' / 's' (lean)",
|
|
88206
|
+
"attribute": "size",
|
|
88207
|
+
"reflects": true
|
|
88399
88208
|
},
|
|
88400
88209
|
{
|
|
88401
88210
|
"kind": "field",
|
|
@@ -88403,7 +88212,10 @@
|
|
|
88403
88212
|
"type": {
|
|
88404
88213
|
"text": "boolean"
|
|
88405
88214
|
},
|
|
88406
|
-
"privacy": "public"
|
|
88215
|
+
"privacy": "public",
|
|
88216
|
+
"default": "false",
|
|
88217
|
+
"description": "Whether more than one file can be selected.",
|
|
88218
|
+
"attribute": "multiple"
|
|
88407
88219
|
},
|
|
88408
88220
|
{
|
|
88409
88221
|
"kind": "field",
|
|
@@ -88411,7 +88223,10 @@
|
|
|
88411
88223
|
"type": {
|
|
88412
88224
|
"text": "'default' | 'persistent'"
|
|
88413
88225
|
},
|
|
88414
|
-
"privacy": "public"
|
|
88226
|
+
"privacy": "public",
|
|
88227
|
+
"default": "'default'",
|
|
88228
|
+
"description": "Whether the newly added files should override the previously added ones.",
|
|
88229
|
+
"attribute": "multiple-mode"
|
|
88415
88230
|
},
|
|
88416
88231
|
{
|
|
88417
88232
|
"kind": "field",
|
|
@@ -88419,7 +88234,10 @@
|
|
|
88419
88234
|
"type": {
|
|
88420
88235
|
"text": "string"
|
|
88421
88236
|
},
|
|
88422
|
-
"privacy": "public"
|
|
88237
|
+
"privacy": "public",
|
|
88238
|
+
"default": "''",
|
|
88239
|
+
"description": "A comma-separated list of allowed unique file type specifiers.",
|
|
88240
|
+
"attribute": "accept"
|
|
88423
88241
|
},
|
|
88424
88242
|
{
|
|
88425
88243
|
"kind": "field",
|
|
@@ -88427,15 +88245,10 @@
|
|
|
88427
88245
|
"type": {
|
|
88428
88246
|
"text": "string"
|
|
88429
88247
|
},
|
|
88430
|
-
"privacy": "public"
|
|
88431
|
-
|
|
88432
|
-
|
|
88433
|
-
"
|
|
88434
|
-
"name": "files",
|
|
88435
|
-
"type": {
|
|
88436
|
-
"text": "Readonly<File>[]"
|
|
88437
|
-
},
|
|
88438
|
-
"privacy": "public"
|
|
88248
|
+
"privacy": "public",
|
|
88249
|
+
"default": "''",
|
|
88250
|
+
"description": "This will be forwarded as aria-label to the native input element.",
|
|
88251
|
+
"attribute": "accessibility-label"
|
|
88439
88252
|
},
|
|
88440
88253
|
{
|
|
88441
88254
|
"kind": "field",
|
|
@@ -88444,6 +88257,7 @@
|
|
|
88444
88257
|
"text": "string | null"
|
|
88445
88258
|
},
|
|
88446
88259
|
"privacy": "public",
|
|
88260
|
+
"description": "The path of the first selected file. Empty string ('') if no file is selected",
|
|
88447
88261
|
"inheritedFrom": {
|
|
88448
88262
|
"name": "SbbFormAssociatedMixin",
|
|
88449
88263
|
"module": "core/mixins/form-associated-mixin.js"
|
|
@@ -88451,65 +88265,106 @@
|
|
|
88451
88265
|
},
|
|
88452
88266
|
{
|
|
88453
88267
|
"kind": "field",
|
|
88454
|
-
"name": "
|
|
88268
|
+
"name": "files",
|
|
88269
|
+
"privacy": "public",
|
|
88270
|
+
"description": "The list of selected files.",
|
|
88455
88271
|
"type": {
|
|
88456
|
-
"text": "
|
|
88457
|
-
}
|
|
88458
|
-
"privacy": "protected"
|
|
88272
|
+
"text": "Readonly<File>[]"
|
|
88273
|
+
}
|
|
88459
88274
|
},
|
|
88460
88275
|
{
|
|
88461
88276
|
"kind": "field",
|
|
88462
|
-
"name": "
|
|
88277
|
+
"name": "_files",
|
|
88463
88278
|
"type": {
|
|
88464
|
-
"text": "
|
|
88279
|
+
"text": "Readonly<File>[]"
|
|
88465
88280
|
},
|
|
88466
|
-
"privacy": "
|
|
88281
|
+
"privacy": "private",
|
|
88282
|
+
"default": "[]"
|
|
88467
88283
|
},
|
|
88468
88284
|
{
|
|
88469
|
-
"kind": "
|
|
88470
|
-
"name": "
|
|
88471
|
-
"
|
|
88472
|
-
|
|
88473
|
-
"type": {
|
|
88474
|
-
"text": "TemplateResult"
|
|
88475
|
-
}
|
|
88285
|
+
"kind": "field",
|
|
88286
|
+
"name": "type",
|
|
88287
|
+
"type": {
|
|
88288
|
+
"text": "string"
|
|
88476
88289
|
},
|
|
88477
|
-
"
|
|
88478
|
-
|
|
88479
|
-
|
|
88480
|
-
|
|
88481
|
-
"text": "TemplateResult"
|
|
88482
|
-
}
|
|
88483
|
-
}
|
|
88484
|
-
]
|
|
88290
|
+
"privacy": "public",
|
|
88291
|
+
"description": "Form type of element.",
|
|
88292
|
+
"default": "'file'",
|
|
88293
|
+
"readonly": true
|
|
88485
88294
|
},
|
|
88486
88295
|
{
|
|
88487
|
-
"kind": "
|
|
88488
|
-
"name": "
|
|
88489
|
-
"
|
|
88490
|
-
|
|
88491
|
-
"type": {
|
|
88492
|
-
"text": "void"
|
|
88493
|
-
}
|
|
88296
|
+
"kind": "field",
|
|
88297
|
+
"name": "_hiddenInput",
|
|
88298
|
+
"type": {
|
|
88299
|
+
"text": "HTMLInputElement"
|
|
88494
88300
|
},
|
|
88495
|
-
"
|
|
88496
|
-
{
|
|
88497
|
-
"name": "files",
|
|
88498
|
-
"type": {
|
|
88499
|
-
"text": "FileList"
|
|
88500
|
-
}
|
|
88501
|
-
}
|
|
88502
|
-
]
|
|
88301
|
+
"privacy": "private"
|
|
88503
88302
|
},
|
|
88504
88303
|
{
|
|
88505
|
-
"kind": "
|
|
88506
|
-
"name": "
|
|
88507
|
-
"
|
|
88508
|
-
|
|
88304
|
+
"kind": "field",
|
|
88305
|
+
"name": "_suffixes",
|
|
88306
|
+
"type": {
|
|
88307
|
+
"text": "string[]"
|
|
88308
|
+
},
|
|
88309
|
+
"privacy": "private",
|
|
88310
|
+
"default": "['B', 'kB', 'MB', 'GB', 'TB']"
|
|
88311
|
+
},
|
|
88312
|
+
{
|
|
88313
|
+
"kind": "field",
|
|
88314
|
+
"name": "_liveRegion",
|
|
88315
|
+
"type": {
|
|
88316
|
+
"text": "HTMLParagraphElement"
|
|
88317
|
+
},
|
|
88318
|
+
"privacy": "private"
|
|
88319
|
+
},
|
|
88320
|
+
{
|
|
88321
|
+
"kind": "field",
|
|
88322
|
+
"name": "loadButton",
|
|
88323
|
+
"type": {
|
|
88324
|
+
"text": "SbbSecondaryButtonStaticElement"
|
|
88325
|
+
},
|
|
88326
|
+
"privacy": "protected"
|
|
88327
|
+
},
|
|
88328
|
+
{
|
|
88329
|
+
"kind": "field",
|
|
88330
|
+
"name": "language",
|
|
88331
|
+
"privacy": "protected",
|
|
88332
|
+
"default": "new SbbLanguageController(this)"
|
|
88333
|
+
},
|
|
88334
|
+
{
|
|
88335
|
+
"kind": "field",
|
|
88336
|
+
"name": "_counter",
|
|
88337
|
+
"type": {
|
|
88338
|
+
"text": "number"
|
|
88339
|
+
},
|
|
88340
|
+
"privacy": "private",
|
|
88341
|
+
"default": "0"
|
|
88342
|
+
},
|
|
88343
|
+
{
|
|
88344
|
+
"kind": "field",
|
|
88345
|
+
"name": "_dragTarget",
|
|
88346
|
+
"type": {
|
|
88347
|
+
"text": "HTMLElement | undefined"
|
|
88348
|
+
},
|
|
88349
|
+
"privacy": "private"
|
|
88350
|
+
},
|
|
88351
|
+
{
|
|
88352
|
+
"kind": "method",
|
|
88353
|
+
"name": "renderTemplate",
|
|
88354
|
+
"privacy": "protected",
|
|
88355
|
+
"return": {
|
|
88509
88356
|
"type": {
|
|
88510
|
-
"text": "
|
|
88357
|
+
"text": "TemplateResult"
|
|
88511
88358
|
}
|
|
88512
|
-
}
|
|
88359
|
+
},
|
|
88360
|
+
"parameters": [
|
|
88361
|
+
{
|
|
88362
|
+
"name": "input",
|
|
88363
|
+
"type": {
|
|
88364
|
+
"text": "TemplateResult"
|
|
88365
|
+
}
|
|
88366
|
+
}
|
|
88367
|
+
]
|
|
88513
88368
|
},
|
|
88514
88369
|
{
|
|
88515
88370
|
"kind": "method",
|
|
@@ -88538,13 +88393,284 @@
|
|
|
88538
88393
|
}
|
|
88539
88394
|
},
|
|
88540
88395
|
{
|
|
88541
|
-
"name": "
|
|
88396
|
+
"name": "_reason",
|
|
88397
|
+
"optional": true,
|
|
88542
88398
|
"type": {
|
|
88543
88399
|
"text": "FormRestoreReason"
|
|
88544
88400
|
}
|
|
88545
88401
|
}
|
|
88546
88402
|
]
|
|
88547
88403
|
},
|
|
88404
|
+
{
|
|
88405
|
+
"kind": "method",
|
|
88406
|
+
"name": "updateFormValue",
|
|
88407
|
+
"privacy": "protected",
|
|
88408
|
+
"return": {
|
|
88409
|
+
"type": {
|
|
88410
|
+
"text": "void"
|
|
88411
|
+
}
|
|
88412
|
+
},
|
|
88413
|
+
"description": "Should be called when form value is changed.\nAdapts and sets the formValue in the supported format (string | FormData | File | null)\nhttps://developer.mozilla.org/en-US/docs/Web/API/ElementInternals/setFormValue",
|
|
88414
|
+
"inheritedFrom": {
|
|
88415
|
+
"name": "SbbFormAssociatedMixin",
|
|
88416
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
88417
|
+
}
|
|
88418
|
+
},
|
|
88419
|
+
{
|
|
88420
|
+
"kind": "method",
|
|
88421
|
+
"name": "_checkFileEquality",
|
|
88422
|
+
"privacy": "private",
|
|
88423
|
+
"return": {
|
|
88424
|
+
"type": {
|
|
88425
|
+
"text": "boolean"
|
|
88426
|
+
}
|
|
88427
|
+
},
|
|
88428
|
+
"parameters": [
|
|
88429
|
+
{
|
|
88430
|
+
"name": "file1",
|
|
88431
|
+
"type": {
|
|
88432
|
+
"text": "Readonly<File>"
|
|
88433
|
+
}
|
|
88434
|
+
},
|
|
88435
|
+
{
|
|
88436
|
+
"name": "file2",
|
|
88437
|
+
"type": {
|
|
88438
|
+
"text": "Readonly<File>"
|
|
88439
|
+
}
|
|
88440
|
+
}
|
|
88441
|
+
]
|
|
88442
|
+
},
|
|
88443
|
+
{
|
|
88444
|
+
"kind": "method",
|
|
88445
|
+
"name": "_onFocus",
|
|
88446
|
+
"privacy": "private",
|
|
88447
|
+
"return": {
|
|
88448
|
+
"type": {
|
|
88449
|
+
"text": "void"
|
|
88450
|
+
}
|
|
88451
|
+
}
|
|
88452
|
+
},
|
|
88453
|
+
{
|
|
88454
|
+
"kind": "method",
|
|
88455
|
+
"name": "_onBlur",
|
|
88456
|
+
"privacy": "private",
|
|
88457
|
+
"return": {
|
|
88458
|
+
"type": {
|
|
88459
|
+
"text": "void"
|
|
88460
|
+
}
|
|
88461
|
+
}
|
|
88462
|
+
},
|
|
88463
|
+
{
|
|
88464
|
+
"kind": "method",
|
|
88465
|
+
"name": "_readFiles",
|
|
88466
|
+
"privacy": "private",
|
|
88467
|
+
"return": {
|
|
88468
|
+
"type": {
|
|
88469
|
+
"text": "void"
|
|
88470
|
+
}
|
|
88471
|
+
},
|
|
88472
|
+
"parameters": [
|
|
88473
|
+
{
|
|
88474
|
+
"name": "event",
|
|
88475
|
+
"type": {
|
|
88476
|
+
"text": "Event"
|
|
88477
|
+
}
|
|
88478
|
+
}
|
|
88479
|
+
]
|
|
88480
|
+
},
|
|
88481
|
+
{
|
|
88482
|
+
"kind": "method",
|
|
88483
|
+
"name": "createFileList",
|
|
88484
|
+
"privacy": "protected",
|
|
88485
|
+
"return": {
|
|
88486
|
+
"type": {
|
|
88487
|
+
"text": "void"
|
|
88488
|
+
}
|
|
88489
|
+
},
|
|
88490
|
+
"parameters": [
|
|
88491
|
+
{
|
|
88492
|
+
"name": "files",
|
|
88493
|
+
"type": {
|
|
88494
|
+
"text": "FileList"
|
|
88495
|
+
}
|
|
88496
|
+
}
|
|
88497
|
+
]
|
|
88498
|
+
},
|
|
88499
|
+
{
|
|
88500
|
+
"kind": "method",
|
|
88501
|
+
"name": "getButtonLabel",
|
|
88502
|
+
"privacy": "protected",
|
|
88503
|
+
"return": {
|
|
88504
|
+
"type": {
|
|
88505
|
+
"text": "string"
|
|
88506
|
+
}
|
|
88507
|
+
}
|
|
88508
|
+
},
|
|
88509
|
+
{
|
|
88510
|
+
"kind": "method",
|
|
88511
|
+
"name": "_removeFile",
|
|
88512
|
+
"privacy": "private",
|
|
88513
|
+
"return": {
|
|
88514
|
+
"type": {
|
|
88515
|
+
"text": "void"
|
|
88516
|
+
}
|
|
88517
|
+
},
|
|
88518
|
+
"parameters": [
|
|
88519
|
+
{
|
|
88520
|
+
"name": "file",
|
|
88521
|
+
"type": {
|
|
88522
|
+
"text": "Readonly<File>"
|
|
88523
|
+
}
|
|
88524
|
+
}
|
|
88525
|
+
]
|
|
88526
|
+
},
|
|
88527
|
+
{
|
|
88528
|
+
"kind": "method",
|
|
88529
|
+
"name": "_dispatchFileChangedEvent",
|
|
88530
|
+
"privacy": "private",
|
|
88531
|
+
"return": {
|
|
88532
|
+
"type": {
|
|
88533
|
+
"text": "void"
|
|
88534
|
+
}
|
|
88535
|
+
}
|
|
88536
|
+
},
|
|
88537
|
+
{
|
|
88538
|
+
"kind": "method",
|
|
88539
|
+
"name": "_formatFileSize",
|
|
88540
|
+
"privacy": "private",
|
|
88541
|
+
"return": {
|
|
88542
|
+
"type": {
|
|
88543
|
+
"text": "string"
|
|
88544
|
+
}
|
|
88545
|
+
},
|
|
88546
|
+
"parameters": [
|
|
88547
|
+
{
|
|
88548
|
+
"name": "size",
|
|
88549
|
+
"type": {
|
|
88550
|
+
"text": "number"
|
|
88551
|
+
}
|
|
88552
|
+
}
|
|
88553
|
+
],
|
|
88554
|
+
"description": "Calculates the correct unit for the file's size."
|
|
88555
|
+
},
|
|
88556
|
+
{
|
|
88557
|
+
"kind": "method",
|
|
88558
|
+
"name": "_updateA11yLiveRegion",
|
|
88559
|
+
"privacy": "private",
|
|
88560
|
+
"return": {
|
|
88561
|
+
"type": {
|
|
88562
|
+
"text": "void"
|
|
88563
|
+
}
|
|
88564
|
+
}
|
|
88565
|
+
},
|
|
88566
|
+
{
|
|
88567
|
+
"kind": "method",
|
|
88568
|
+
"name": "_renderFileList",
|
|
88569
|
+
"privacy": "private",
|
|
88570
|
+
"return": {
|
|
88571
|
+
"type": {
|
|
88572
|
+
"text": "TemplateResult"
|
|
88573
|
+
}
|
|
88574
|
+
}
|
|
88575
|
+
},
|
|
88576
|
+
{
|
|
88577
|
+
"kind": "method",
|
|
88578
|
+
"name": "_onDragEnter",
|
|
88579
|
+
"privacy": "private",
|
|
88580
|
+
"return": {
|
|
88581
|
+
"type": {
|
|
88582
|
+
"text": "void"
|
|
88583
|
+
}
|
|
88584
|
+
},
|
|
88585
|
+
"parameters": [
|
|
88586
|
+
{
|
|
88587
|
+
"name": "event",
|
|
88588
|
+
"type": {
|
|
88589
|
+
"text": "DragEvent"
|
|
88590
|
+
}
|
|
88591
|
+
}
|
|
88592
|
+
]
|
|
88593
|
+
},
|
|
88594
|
+
{
|
|
88595
|
+
"kind": "method",
|
|
88596
|
+
"name": "_onDragLeave",
|
|
88597
|
+
"privacy": "private",
|
|
88598
|
+
"return": {
|
|
88599
|
+
"type": {
|
|
88600
|
+
"text": "void"
|
|
88601
|
+
}
|
|
88602
|
+
},
|
|
88603
|
+
"parameters": [
|
|
88604
|
+
{
|
|
88605
|
+
"name": "event",
|
|
88606
|
+
"type": {
|
|
88607
|
+
"text": "DragEvent"
|
|
88608
|
+
}
|
|
88609
|
+
}
|
|
88610
|
+
]
|
|
88611
|
+
},
|
|
88612
|
+
{
|
|
88613
|
+
"kind": "method",
|
|
88614
|
+
"name": "_onFileDrop",
|
|
88615
|
+
"privacy": "private",
|
|
88616
|
+
"return": {
|
|
88617
|
+
"type": {
|
|
88618
|
+
"text": "void"
|
|
88619
|
+
}
|
|
88620
|
+
},
|
|
88621
|
+
"parameters": [
|
|
88622
|
+
{
|
|
88623
|
+
"name": "event",
|
|
88624
|
+
"type": {
|
|
88625
|
+
"text": "DragEvent"
|
|
88626
|
+
}
|
|
88627
|
+
}
|
|
88628
|
+
]
|
|
88629
|
+
},
|
|
88630
|
+
{
|
|
88631
|
+
"kind": "method",
|
|
88632
|
+
"name": "_blockEvent",
|
|
88633
|
+
"privacy": "private",
|
|
88634
|
+
"return": {
|
|
88635
|
+
"type": {
|
|
88636
|
+
"text": "void"
|
|
88637
|
+
}
|
|
88638
|
+
},
|
|
88639
|
+
"parameters": [
|
|
88640
|
+
{
|
|
88641
|
+
"name": "event",
|
|
88642
|
+
"type": {
|
|
88643
|
+
"text": "DragEvent"
|
|
88644
|
+
}
|
|
88645
|
+
}
|
|
88646
|
+
]
|
|
88647
|
+
},
|
|
88648
|
+
{
|
|
88649
|
+
"kind": "method",
|
|
88650
|
+
"name": "_setDragState",
|
|
88651
|
+
"privacy": "private",
|
|
88652
|
+
"return": {
|
|
88653
|
+
"type": {
|
|
88654
|
+
"text": "void"
|
|
88655
|
+
}
|
|
88656
|
+
},
|
|
88657
|
+
"parameters": [
|
|
88658
|
+
{
|
|
88659
|
+
"name": "dragTarget",
|
|
88660
|
+
"default": "undefined",
|
|
88661
|
+
"type": {
|
|
88662
|
+
"text": "HTMLElement | undefined"
|
|
88663
|
+
}
|
|
88664
|
+
},
|
|
88665
|
+
{
|
|
88666
|
+
"name": "isDragEnter",
|
|
88667
|
+
"default": "false",
|
|
88668
|
+
"type": {
|
|
88669
|
+
"text": "boolean"
|
|
88670
|
+
}
|
|
88671
|
+
}
|
|
88672
|
+
]
|
|
88673
|
+
},
|
|
88548
88674
|
{
|
|
88549
88675
|
"kind": "field",
|
|
88550
88676
|
"name": "disabled",
|
|
@@ -88764,21 +88890,6 @@
|
|
|
88764
88890
|
"module": "core/mixins/form-associated-mixin.js"
|
|
88765
88891
|
}
|
|
88766
88892
|
},
|
|
88767
|
-
{
|
|
88768
|
-
"kind": "method",
|
|
88769
|
-
"name": "updateFormValue",
|
|
88770
|
-
"privacy": "protected",
|
|
88771
|
-
"return": {
|
|
88772
|
-
"type": {
|
|
88773
|
-
"text": "void"
|
|
88774
|
-
}
|
|
88775
|
-
},
|
|
88776
|
-
"description": "Should be called when form value is changed.\nAdapts and sets the formValue in the supported format (string | FormData | File | null)\nhttps://developer.mozilla.org/en-US/docs/Web/API/ElementInternals/setFormValue",
|
|
88777
|
-
"inheritedFrom": {
|
|
88778
|
-
"name": "SbbFormAssociatedMixin",
|
|
88779
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
88780
|
-
}
|
|
88781
|
-
},
|
|
88782
88893
|
{
|
|
88783
88894
|
"kind": "method",
|
|
88784
88895
|
"name": "formState",
|
|
@@ -88903,142 +89014,77 @@
|
|
|
88903
89014
|
"name": "SbbFormAssociatedMixin",
|
|
88904
89015
|
"module": "core/mixins/form-associated-mixin.js"
|
|
88905
89016
|
}
|
|
88906
|
-
}
|
|
89017
|
+
}
|
|
89018
|
+
],
|
|
89019
|
+
"events": [
|
|
88907
89020
|
{
|
|
88908
|
-
"
|
|
88909
|
-
"name": "_hydrationRequired",
|
|
89021
|
+
"name": "input",
|
|
88910
89022
|
"type": {
|
|
88911
|
-
"text": "
|
|
89023
|
+
"text": "InputEvent"
|
|
88912
89024
|
},
|
|
88913
|
-
"
|
|
88914
|
-
"default": "!!this.shadowRoot",
|
|
88915
|
-
"inheritedFrom": {
|
|
88916
|
-
"name": "SbbElement",
|
|
88917
|
-
"module": "core/base-elements/element.js"
|
|
88918
|
-
}
|
|
88919
|
-
},
|
|
88920
|
-
{
|
|
88921
|
-
"kind": "field",
|
|
88922
|
-
"name": "_hydrationComplete",
|
|
88923
|
-
"privacy": "private",
|
|
88924
|
-
"default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
|
|
88925
|
-
"inheritedFrom": {
|
|
88926
|
-
"name": "SbbElement",
|
|
88927
|
-
"module": "core/base-elements/element.js"
|
|
88928
|
-
}
|
|
89025
|
+
"description": "The input event fires when the value has been changed as a direct result of a user action."
|
|
88929
89026
|
},
|
|
88930
89027
|
{
|
|
88931
|
-
"
|
|
88932
|
-
"name": "_resolveHydration",
|
|
89028
|
+
"name": "change",
|
|
88933
89029
|
"type": {
|
|
88934
|
-
"text": "
|
|
89030
|
+
"text": "Event"
|
|
88935
89031
|
},
|
|
88936
|
-
"
|
|
88937
|
-
"inheritedFrom": {
|
|
88938
|
-
"name": "SbbElement",
|
|
88939
|
-
"module": "core/base-elements/element.js"
|
|
88940
|
-
}
|
|
89032
|
+
"description": "The change event is fired when the user modifies the element's value.\nUnlike the input event, the change event is not necessarily fired\nfor each alteration to an element's value."
|
|
88941
89033
|
},
|
|
88942
89034
|
{
|
|
88943
|
-
"
|
|
88944
|
-
"name": "hydrationRequired",
|
|
89035
|
+
"name": "filechanged",
|
|
88945
89036
|
"type": {
|
|
88946
|
-
"text": "
|
|
89037
|
+
"text": "CustomEvent<Readonly<File>[]>"
|
|
88947
89038
|
},
|
|
88948
|
-
"
|
|
88949
|
-
|
|
88950
|
-
|
|
88951
|
-
|
|
88952
|
-
|
|
88953
|
-
|
|
89039
|
+
"description": "An event which is emitted each time the file list changes."
|
|
89040
|
+
}
|
|
89041
|
+
],
|
|
89042
|
+
"attributes": [
|
|
89043
|
+
{
|
|
89044
|
+
"name": "size",
|
|
89045
|
+
"type": {
|
|
89046
|
+
"text": "'s' | 'm'"
|
|
88954
89047
|
},
|
|
88955
|
-
"
|
|
89048
|
+
"description": "Size variant, either s or m.",
|
|
89049
|
+
"default": "'m' / 's' (lean)",
|
|
89050
|
+
"fieldName": "size"
|
|
88956
89051
|
},
|
|
88957
89052
|
{
|
|
88958
|
-
"
|
|
88959
|
-
"
|
|
88960
|
-
|
|
88961
|
-
"return": {
|
|
88962
|
-
"type": {
|
|
88963
|
-
"text": "void"
|
|
88964
|
-
}
|
|
89053
|
+
"name": "multiple",
|
|
89054
|
+
"type": {
|
|
89055
|
+
"text": "boolean"
|
|
88965
89056
|
},
|
|
88966
|
-
"
|
|
88967
|
-
|
|
88968
|
-
|
|
88969
|
-
"type": {
|
|
88970
|
-
"text": "string"
|
|
88971
|
-
}
|
|
88972
|
-
},
|
|
88973
|
-
{
|
|
88974
|
-
"name": "force",
|
|
88975
|
-
"optional": true,
|
|
88976
|
-
"type": {
|
|
88977
|
-
"text": "boolean"
|
|
88978
|
-
}
|
|
88979
|
-
}
|
|
88980
|
-
],
|
|
88981
|
-
"inheritedFrom": {
|
|
88982
|
-
"name": "SbbElement",
|
|
88983
|
-
"module": "core/base-elements/element.js"
|
|
88984
|
-
}
|
|
89057
|
+
"default": "false",
|
|
89058
|
+
"description": "Whether more than one file can be selected.",
|
|
89059
|
+
"fieldName": "multiple"
|
|
88985
89060
|
},
|
|
88986
89061
|
{
|
|
88987
|
-
"
|
|
88988
|
-
"name": "['_$sbbElement$']",
|
|
89062
|
+
"name": "multiple-mode",
|
|
88989
89063
|
"type": {
|
|
88990
|
-
"text": "
|
|
89064
|
+
"text": "'default' | 'persistent'"
|
|
88991
89065
|
},
|
|
88992
|
-
"
|
|
88993
|
-
"
|
|
88994
|
-
"
|
|
88995
|
-
"inheritedFrom": {
|
|
88996
|
-
"name": "SbbElement",
|
|
88997
|
-
"module": "core/base-elements/element.js"
|
|
88998
|
-
}
|
|
89066
|
+
"default": "'default'",
|
|
89067
|
+
"description": "Whether the newly added files should override the previously added ones.",
|
|
89068
|
+
"fieldName": "multipleMode"
|
|
88999
89069
|
},
|
|
89000
89070
|
{
|
|
89001
|
-
"
|
|
89002
|
-
"name": "elementName",
|
|
89071
|
+
"name": "accept",
|
|
89003
89072
|
"type": {
|
|
89004
89073
|
"text": "string"
|
|
89005
89074
|
},
|
|
89006
|
-
"
|
|
89007
|
-
"
|
|
89008
|
-
"
|
|
89009
|
-
"inheritedFrom": {
|
|
89010
|
-
"name": "SbbElement",
|
|
89011
|
-
"module": "core/base-elements/element.js"
|
|
89012
|
-
}
|
|
89075
|
+
"default": "''",
|
|
89076
|
+
"description": "A comma-separated list of allowed unique file type specifiers.",
|
|
89077
|
+
"fieldName": "accept"
|
|
89013
89078
|
},
|
|
89014
89079
|
{
|
|
89015
|
-
"
|
|
89016
|
-
"name": "_controllers",
|
|
89080
|
+
"name": "accessibility-label",
|
|
89017
89081
|
"type": {
|
|
89018
|
-
"text": "
|
|
89082
|
+
"text": "string"
|
|
89019
89083
|
},
|
|
89020
|
-
"
|
|
89021
|
-
"
|
|
89022
|
-
|
|
89023
|
-
"module": "core/base-elements/element.js"
|
|
89024
|
-
}
|
|
89025
|
-
}
|
|
89026
|
-
],
|
|
89027
|
-
"mixins": [
|
|
89028
|
-
{
|
|
89029
|
-
"name": "SbbDisabledMixin",
|
|
89030
|
-
"module": "core/mixins.js"
|
|
89084
|
+
"default": "''",
|
|
89085
|
+
"description": "This will be forwarded as aria-label to the native input element.",
|
|
89086
|
+
"fieldName": "accessibilityLabel"
|
|
89031
89087
|
},
|
|
89032
|
-
{
|
|
89033
|
-
"name": "SbbFormAssociatedMixin",
|
|
89034
|
-
"module": "core/mixins.js"
|
|
89035
|
-
}
|
|
89036
|
-
],
|
|
89037
|
-
"superclass": {
|
|
89038
|
-
"name": "SbbElement",
|
|
89039
|
-
"module": "core/base-elements.js"
|
|
89040
|
-
},
|
|
89041
|
-
"attributes": [
|
|
89042
89088
|
{
|
|
89043
89089
|
"name": "disabled",
|
|
89044
89090
|
"description": "Whether the component is disabled.",
|
|
@@ -89064,200 +89110,125 @@
|
|
|
89064
89110
|
"module": "core/mixins/form-associated-mixin.js"
|
|
89065
89111
|
}
|
|
89066
89112
|
}
|
|
89067
|
-
]
|
|
89068
|
-
|
|
89069
|
-
{
|
|
89070
|
-
"kind": "mixin",
|
|
89071
|
-
"description": "",
|
|
89072
|
-
"name": "SbbFileSelectorCommonElementMixin",
|
|
89073
|
-
"members": [
|
|
89113
|
+
],
|
|
89114
|
+
"mixins": [
|
|
89074
89115
|
{
|
|
89075
|
-
"
|
|
89076
|
-
"
|
|
89077
|
-
"privacy": "public",
|
|
89078
|
-
"static": true,
|
|
89079
|
-
"readonly": true,
|
|
89080
|
-
"default": "{ filechanged: 'filechanged', }",
|
|
89081
|
-
"type": {
|
|
89082
|
-
"text": "{\n filechanged: 'filechanged',\n }"
|
|
89083
|
-
}
|
|
89116
|
+
"name": "SbbDisabledMixin",
|
|
89117
|
+
"module": "core/mixins.js"
|
|
89084
89118
|
},
|
|
89085
89119
|
{
|
|
89086
|
-
"
|
|
89087
|
-
"
|
|
89088
|
-
|
|
89089
|
-
|
|
89090
|
-
|
|
89091
|
-
"privacy": "public",
|
|
89092
|
-
"description": "Size variant, either s or m.",
|
|
89093
|
-
"default": "'m' / 's' (lean)",
|
|
89094
|
-
"attribute": "size",
|
|
89095
|
-
"reflects": true
|
|
89096
|
-
},
|
|
89120
|
+
"name": "SbbFormAssociatedMixin",
|
|
89121
|
+
"module": "core/mixins.js"
|
|
89122
|
+
}
|
|
89123
|
+
],
|
|
89124
|
+
"parameters": [
|
|
89097
89125
|
{
|
|
89098
|
-
"
|
|
89099
|
-
"name": "multiple",
|
|
89126
|
+
"name": "superclass",
|
|
89100
89127
|
"type": {
|
|
89101
|
-
"text": "
|
|
89102
|
-
}
|
|
89103
|
-
|
|
89104
|
-
|
|
89105
|
-
|
|
89106
|
-
|
|
89107
|
-
|
|
89128
|
+
"text": "T"
|
|
89129
|
+
}
|
|
89130
|
+
}
|
|
89131
|
+
]
|
|
89132
|
+
}
|
|
89133
|
+
],
|
|
89134
|
+
"exports": [
|
|
89135
|
+
{
|
|
89136
|
+
"kind": "js",
|
|
89137
|
+
"name": "fileSelectorCommonStyle",
|
|
89138
|
+
"declaration": {
|
|
89139
|
+
"name": "default",
|
|
89140
|
+
"module": "./file-selector-common.scss?lit&inline"
|
|
89141
|
+
}
|
|
89142
|
+
},
|
|
89143
|
+
{
|
|
89144
|
+
"kind": "js",
|
|
89145
|
+
"name": "SbbFileSelectorCommonElementMixinType",
|
|
89146
|
+
"declaration": {
|
|
89147
|
+
"name": "SbbFileSelectorCommonElementMixinType",
|
|
89148
|
+
"module": "file-selector/common/file-selector-common.js"
|
|
89149
|
+
}
|
|
89150
|
+
},
|
|
89151
|
+
{
|
|
89152
|
+
"kind": "js",
|
|
89153
|
+
"name": "SbbFileSelectorCommonElementMixin",
|
|
89154
|
+
"declaration": {
|
|
89155
|
+
"name": "SbbFileSelectorCommonElementMixin",
|
|
89156
|
+
"module": "file-selector/common/file-selector-common.js"
|
|
89157
|
+
}
|
|
89158
|
+
}
|
|
89159
|
+
]
|
|
89160
|
+
},
|
|
89161
|
+
{
|
|
89162
|
+
"kind": "javascript-module",
|
|
89163
|
+
"path": "expansion-panel/expansion-panel-header/expansion-panel-header.component.js",
|
|
89164
|
+
"declarations": [
|
|
89165
|
+
{
|
|
89166
|
+
"kind": "class",
|
|
89167
|
+
"description": "It acts as a native `summary` tag for the `sbb-expansion-panel` component.",
|
|
89168
|
+
"name": "SbbExpansionPanelHeaderElement",
|
|
89169
|
+
"slots": [
|
|
89108
89170
|
{
|
|
89109
|
-
"
|
|
89110
|
-
"name": "
|
|
89111
|
-
"type": {
|
|
89112
|
-
"text": "'default' | 'persistent'"
|
|
89113
|
-
},
|
|
89114
|
-
"privacy": "public",
|
|
89115
|
-
"default": "'default'",
|
|
89116
|
-
"description": "Whether the newly added files should override the previously added ones.",
|
|
89117
|
-
"attribute": "multiple-mode"
|
|
89171
|
+
"description": "Use the unnamed slot to add content to the `sbb-expansion-panel-header`.",
|
|
89172
|
+
"name": ""
|
|
89118
89173
|
},
|
|
89119
89174
|
{
|
|
89120
|
-
"
|
|
89121
|
-
"name": "
|
|
89122
|
-
|
|
89123
|
-
|
|
89124
|
-
|
|
89125
|
-
"privacy": "public",
|
|
89126
|
-
"default": "''",
|
|
89127
|
-
"description": "A comma-separated list of allowed unique file type specifiers.",
|
|
89128
|
-
"attribute": "accept"
|
|
89129
|
-
},
|
|
89175
|
+
"description": "Slot used to render the `sbb-expansion-panel-header` icon.",
|
|
89176
|
+
"name": "icon"
|
|
89177
|
+
}
|
|
89178
|
+
],
|
|
89179
|
+
"members": [
|
|
89130
89180
|
{
|
|
89131
89181
|
"kind": "field",
|
|
89132
|
-
"name": "
|
|
89182
|
+
"name": "elementName",
|
|
89133
89183
|
"type": {
|
|
89134
89184
|
"text": "string"
|
|
89135
89185
|
},
|
|
89136
89186
|
"privacy": "public",
|
|
89137
|
-
"
|
|
89138
|
-
"
|
|
89139
|
-
"attribute": "accessibility-label"
|
|
89140
|
-
},
|
|
89141
|
-
{
|
|
89142
|
-
"kind": "field",
|
|
89143
|
-
"name": "value",
|
|
89144
|
-
"type": {
|
|
89145
|
-
"text": "string | null"
|
|
89146
|
-
},
|
|
89147
|
-
"privacy": "public",
|
|
89148
|
-
"description": "The path of the first selected file. Empty string ('') if no file is selected",
|
|
89187
|
+
"static": true,
|
|
89188
|
+
"readonly": true,
|
|
89149
89189
|
"inheritedFrom": {
|
|
89150
|
-
"name": "
|
|
89151
|
-
"module": "core/
|
|
89152
|
-
}
|
|
89153
|
-
},
|
|
89154
|
-
{
|
|
89155
|
-
"kind": "field",
|
|
89156
|
-
"name": "files",
|
|
89157
|
-
"privacy": "public",
|
|
89158
|
-
"description": "The list of selected files.",
|
|
89159
|
-
"type": {
|
|
89160
|
-
"text": "Readonly<File>[]"
|
|
89161
|
-
}
|
|
89162
|
-
},
|
|
89163
|
-
{
|
|
89164
|
-
"kind": "field",
|
|
89165
|
-
"name": "_files",
|
|
89166
|
-
"type": {
|
|
89167
|
-
"text": "Readonly<File>[]"
|
|
89190
|
+
"name": "SbbElement",
|
|
89191
|
+
"module": "core/base-elements/element.js"
|
|
89168
89192
|
},
|
|
89169
|
-
"
|
|
89170
|
-
"default": "[]"
|
|
89193
|
+
"default": "'sbb-expansion-panel-header'"
|
|
89171
89194
|
},
|
|
89172
89195
|
{
|
|
89173
89196
|
"kind": "field",
|
|
89174
|
-
"name": "
|
|
89175
|
-
"type": {
|
|
89176
|
-
"text": "string"
|
|
89177
|
-
},
|
|
89197
|
+
"name": "events",
|
|
89178
89198
|
"privacy": "public",
|
|
89179
|
-
"
|
|
89180
|
-
"
|
|
89181
|
-
"
|
|
89182
|
-
},
|
|
89183
|
-
{
|
|
89184
|
-
"kind": "field",
|
|
89185
|
-
"name": "_hiddenInput",
|
|
89199
|
+
"static": true,
|
|
89200
|
+
"readonly": true,
|
|
89201
|
+
"default": "{ toggleexpanded: 'toggleexpanded', }",
|
|
89186
89202
|
"type": {
|
|
89187
|
-
"text": "
|
|
89188
|
-
}
|
|
89189
|
-
"privacy": "private"
|
|
89203
|
+
"text": "{\n toggleexpanded: 'toggleexpanded',\n }"
|
|
89204
|
+
}
|
|
89190
89205
|
},
|
|
89191
89206
|
{
|
|
89192
89207
|
"kind": "field",
|
|
89193
|
-
"name": "
|
|
89194
|
-
"type": {
|
|
89195
|
-
"text": "string[]"
|
|
89196
|
-
},
|
|
89208
|
+
"name": "_mediaMatcher",
|
|
89197
89209
|
"privacy": "private",
|
|
89198
|
-
"default": "
|
|
89210
|
+
"default": "new SbbMediaMatcherController(this, { [SbbMediaQueryHover]: (m) => (this._isHover = m), })"
|
|
89199
89211
|
},
|
|
89200
89212
|
{
|
|
89201
89213
|
"kind": "field",
|
|
89202
|
-
"name": "
|
|
89214
|
+
"name": "_isHover",
|
|
89203
89215
|
"type": {
|
|
89204
|
-
"text": "
|
|
89216
|
+
"text": "boolean"
|
|
89205
89217
|
},
|
|
89206
89218
|
"privacy": "private"
|
|
89207
89219
|
},
|
|
89208
89220
|
{
|
|
89209
89221
|
"kind": "field",
|
|
89210
|
-
"name": "
|
|
89211
|
-
"type": {
|
|
89212
|
-
"text": "SbbSecondaryButtonStaticElement"
|
|
89213
|
-
},
|
|
89214
|
-
"privacy": "protected"
|
|
89215
|
-
},
|
|
89216
|
-
{
|
|
89217
|
-
"kind": "field",
|
|
89218
|
-
"name": "language",
|
|
89219
|
-
"privacy": "protected",
|
|
89220
|
-
"default": "new SbbLanguageController(this)"
|
|
89221
|
-
},
|
|
89222
|
-
{
|
|
89223
|
-
"kind": "field",
|
|
89224
|
-
"name": "_counter",
|
|
89225
|
-
"type": {
|
|
89226
|
-
"text": "number"
|
|
89227
|
-
},
|
|
89228
|
-
"privacy": "private",
|
|
89229
|
-
"default": "0"
|
|
89230
|
-
},
|
|
89231
|
-
{
|
|
89232
|
-
"kind": "field",
|
|
89233
|
-
"name": "_dragTarget",
|
|
89222
|
+
"name": "_previousSize",
|
|
89234
89223
|
"type": {
|
|
89235
|
-
"text": "
|
|
89224
|
+
"text": "string | undefined"
|
|
89236
89225
|
},
|
|
89237
89226
|
"privacy": "private"
|
|
89238
89227
|
},
|
|
89239
89228
|
{
|
|
89240
89229
|
"kind": "method",
|
|
89241
|
-
"name": "
|
|
89242
|
-
"privacy": "
|
|
89243
|
-
"return": {
|
|
89244
|
-
"type": {
|
|
89245
|
-
"text": "TemplateResult"
|
|
89246
|
-
}
|
|
89247
|
-
},
|
|
89248
|
-
"parameters": [
|
|
89249
|
-
{
|
|
89250
|
-
"name": "input",
|
|
89251
|
-
"type": {
|
|
89252
|
-
"text": "TemplateResult"
|
|
89253
|
-
}
|
|
89254
|
-
}
|
|
89255
|
-
]
|
|
89256
|
-
},
|
|
89257
|
-
{
|
|
89258
|
-
"kind": "method",
|
|
89259
|
-
"name": "formResetCallback",
|
|
89260
|
-
"privacy": "public",
|
|
89230
|
+
"name": "_emitExpandedEvent",
|
|
89231
|
+
"privacy": "private",
|
|
89261
89232
|
"return": {
|
|
89262
89233
|
"type": {
|
|
89263
89234
|
"text": "void"
|
|
@@ -89266,8 +89237,8 @@
|
|
|
89266
89237
|
},
|
|
89267
89238
|
{
|
|
89268
89239
|
"kind": "method",
|
|
89269
|
-
"name": "
|
|
89270
|
-
"privacy": "
|
|
89240
|
+
"name": "_onMouseMovement",
|
|
89241
|
+
"privacy": "private",
|
|
89271
89242
|
"return": {
|
|
89272
89243
|
"type": {
|
|
89273
89244
|
"text": "void"
|
|
@@ -89275,267 +89246,248 @@
|
|
|
89275
89246
|
},
|
|
89276
89247
|
"parameters": [
|
|
89277
89248
|
{
|
|
89278
|
-
"name": "
|
|
89279
|
-
"type": {
|
|
89280
|
-
"text": "FormRestoreState | null"
|
|
89281
|
-
}
|
|
89282
|
-
},
|
|
89283
|
-
{
|
|
89284
|
-
"name": "_reason",
|
|
89285
|
-
"optional": true,
|
|
89249
|
+
"name": "toggleDataAttribute",
|
|
89286
89250
|
"type": {
|
|
89287
|
-
"text": "
|
|
89251
|
+
"text": "boolean"
|
|
89288
89252
|
}
|
|
89289
89253
|
}
|
|
89290
89254
|
]
|
|
89291
89255
|
},
|
|
89292
89256
|
{
|
|
89293
89257
|
"kind": "method",
|
|
89294
|
-
"name": "
|
|
89295
|
-
"privacy": "
|
|
89258
|
+
"name": "_setIconState",
|
|
89259
|
+
"privacy": "private",
|
|
89296
89260
|
"return": {
|
|
89297
89261
|
"type": {
|
|
89298
89262
|
"text": "void"
|
|
89299
89263
|
}
|
|
89300
89264
|
},
|
|
89301
|
-
"description": "
|
|
89302
|
-
"inheritedFrom": {
|
|
89303
|
-
"name": "SbbFormAssociatedMixin",
|
|
89304
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
89305
|
-
}
|
|
89265
|
+
"description": "The :state(icon) is used by the 'sbb-expansion-panel'.\nIt needs to be set before the"
|
|
89306
89266
|
},
|
|
89307
89267
|
{
|
|
89308
89268
|
"kind": "method",
|
|
89309
|
-
"name": "
|
|
89310
|
-
"privacy": "
|
|
89269
|
+
"name": "renderTemplate",
|
|
89270
|
+
"privacy": "protected",
|
|
89311
89271
|
"return": {
|
|
89312
89272
|
"type": {
|
|
89313
|
-
"text": "
|
|
89273
|
+
"text": "TemplateResult"
|
|
89314
89274
|
}
|
|
89315
89275
|
},
|
|
89316
|
-
"
|
|
89317
|
-
|
|
89318
|
-
|
|
89319
|
-
|
|
89320
|
-
|
|
89321
|
-
}
|
|
89322
|
-
},
|
|
89323
|
-
{
|
|
89324
|
-
"name": "file2",
|
|
89325
|
-
"type": {
|
|
89326
|
-
"text": "Readonly<File>"
|
|
89327
|
-
}
|
|
89328
|
-
}
|
|
89329
|
-
]
|
|
89276
|
+
"description": "Override this method to render the component template.",
|
|
89277
|
+
"inheritedFrom": {
|
|
89278
|
+
"name": "SbbActionBaseElement",
|
|
89279
|
+
"module": "core/base-elements/action-base-element.js"
|
|
89280
|
+
}
|
|
89330
89281
|
},
|
|
89331
89282
|
{
|
|
89332
|
-
"kind": "
|
|
89333
|
-
"name": "
|
|
89334
|
-
"
|
|
89335
|
-
|
|
89336
|
-
|
|
89337
|
-
|
|
89338
|
-
|
|
89283
|
+
"kind": "field",
|
|
89284
|
+
"name": "disabledInteractive",
|
|
89285
|
+
"type": {
|
|
89286
|
+
"text": "boolean"
|
|
89287
|
+
},
|
|
89288
|
+
"privacy": "public",
|
|
89289
|
+
"default": "false",
|
|
89290
|
+
"description": "Whether the button should be aria-disabled but stay interactive.",
|
|
89291
|
+
"attribute": "disabled-interactive",
|
|
89292
|
+
"reflects": true,
|
|
89293
|
+
"inheritedFrom": {
|
|
89294
|
+
"name": "SbbDisabledInteractiveMixin",
|
|
89295
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
89339
89296
|
}
|
|
89340
89297
|
},
|
|
89341
89298
|
{
|
|
89342
|
-
"kind": "
|
|
89343
|
-
"name": "
|
|
89344
|
-
"privacy": "
|
|
89345
|
-
"
|
|
89346
|
-
|
|
89347
|
-
|
|
89348
|
-
|
|
89299
|
+
"kind": "field",
|
|
89300
|
+
"name": "disabled",
|
|
89301
|
+
"privacy": "public",
|
|
89302
|
+
"description": "Whether the component is disabled.",
|
|
89303
|
+
"default": "false",
|
|
89304
|
+
"type": {
|
|
89305
|
+
"text": "boolean"
|
|
89306
|
+
},
|
|
89307
|
+
"attribute": "disabled",
|
|
89308
|
+
"reflects": true,
|
|
89309
|
+
"inheritedFrom": {
|
|
89310
|
+
"name": "SbbDisabledMixin",
|
|
89311
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
89349
89312
|
}
|
|
89350
89313
|
},
|
|
89351
89314
|
{
|
|
89352
|
-
"kind": "
|
|
89353
|
-
"name": "
|
|
89315
|
+
"kind": "field",
|
|
89316
|
+
"name": "#disabled",
|
|
89354
89317
|
"privacy": "private",
|
|
89355
|
-
"
|
|
89356
|
-
"
|
|
89357
|
-
"text": "void"
|
|
89358
|
-
}
|
|
89318
|
+
"type": {
|
|
89319
|
+
"text": "boolean"
|
|
89359
89320
|
},
|
|
89360
|
-
"
|
|
89361
|
-
|
|
89362
|
-
|
|
89363
|
-
|
|
89364
|
-
|
|
89365
|
-
}
|
|
89366
|
-
}
|
|
89367
|
-
]
|
|
89321
|
+
"default": "false",
|
|
89322
|
+
"inheritedFrom": {
|
|
89323
|
+
"name": "SbbDisabledMixin",
|
|
89324
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
89325
|
+
}
|
|
89368
89326
|
},
|
|
89369
89327
|
{
|
|
89370
89328
|
"kind": "method",
|
|
89371
|
-
"name": "
|
|
89329
|
+
"name": "isDisabledExternally",
|
|
89372
89330
|
"privacy": "protected",
|
|
89373
89331
|
"return": {
|
|
89374
89332
|
"type": {
|
|
89375
|
-
"text": "
|
|
89333
|
+
"text": "boolean"
|
|
89376
89334
|
}
|
|
89377
89335
|
},
|
|
89378
|
-
"
|
|
89379
|
-
|
|
89380
|
-
|
|
89381
|
-
|
|
89382
|
-
|
|
89383
|
-
}
|
|
89384
|
-
}
|
|
89385
|
-
]
|
|
89336
|
+
"description": "Will be used as 'or' check to the current disabled state.\nCan e.g. be used to read disabled state of a group.",
|
|
89337
|
+
"inheritedFrom": {
|
|
89338
|
+
"name": "SbbDisabledMixin",
|
|
89339
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
89340
|
+
}
|
|
89386
89341
|
},
|
|
89387
89342
|
{
|
|
89388
|
-
"kind": "
|
|
89389
|
-
"name": "
|
|
89390
|
-
"
|
|
89391
|
-
|
|
89392
|
-
|
|
89393
|
-
|
|
89394
|
-
|
|
89343
|
+
"kind": "field",
|
|
89344
|
+
"name": "iconName",
|
|
89345
|
+
"type": {
|
|
89346
|
+
"text": "string"
|
|
89347
|
+
},
|
|
89348
|
+
"privacy": "public",
|
|
89349
|
+
"default": "''",
|
|
89350
|
+
"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.",
|
|
89351
|
+
"attribute": "icon-name",
|
|
89352
|
+
"inheritedFrom": {
|
|
89353
|
+
"name": "SbbIconNameMixin",
|
|
89354
|
+
"module": "icon/icon-name-mixin.js"
|
|
89395
89355
|
}
|
|
89396
89356
|
},
|
|
89397
89357
|
{
|
|
89398
89358
|
"kind": "method",
|
|
89399
|
-
"name": "
|
|
89400
|
-
"privacy": "
|
|
89359
|
+
"name": "renderIconSlot",
|
|
89360
|
+
"privacy": "protected",
|
|
89401
89361
|
"return": {
|
|
89402
89362
|
"type": {
|
|
89403
|
-
"text": "
|
|
89363
|
+
"text": "TemplateResult"
|
|
89404
89364
|
}
|
|
89405
89365
|
},
|
|
89406
89366
|
"parameters": [
|
|
89407
89367
|
{
|
|
89408
|
-
"name": "
|
|
89368
|
+
"name": "classname",
|
|
89369
|
+
"optional": true,
|
|
89409
89370
|
"type": {
|
|
89410
|
-
"text": "
|
|
89371
|
+
"text": "string"
|
|
89411
89372
|
}
|
|
89412
89373
|
}
|
|
89413
|
-
]
|
|
89374
|
+
],
|
|
89375
|
+
"inheritedFrom": {
|
|
89376
|
+
"name": "SbbIconNameMixin",
|
|
89377
|
+
"module": "icon/icon-name-mixin.js"
|
|
89378
|
+
}
|
|
89414
89379
|
},
|
|
89415
89380
|
{
|
|
89416
89381
|
"kind": "method",
|
|
89417
|
-
"name": "
|
|
89418
|
-
"privacy": "
|
|
89382
|
+
"name": "renderIconName",
|
|
89383
|
+
"privacy": "protected",
|
|
89419
89384
|
"return": {
|
|
89420
89385
|
"type": {
|
|
89421
|
-
"text": "
|
|
89386
|
+
"text": "string"
|
|
89422
89387
|
}
|
|
89388
|
+
},
|
|
89389
|
+
"inheritedFrom": {
|
|
89390
|
+
"name": "SbbIconNameMixin",
|
|
89391
|
+
"module": "icon/icon-name-mixin.js"
|
|
89423
89392
|
}
|
|
89424
89393
|
},
|
|
89425
89394
|
{
|
|
89426
89395
|
"kind": "method",
|
|
89427
|
-
"name": "
|
|
89396
|
+
"name": "_renderIconName",
|
|
89428
89397
|
"privacy": "private",
|
|
89429
89398
|
"return": {
|
|
89430
89399
|
"type": {
|
|
89431
89400
|
"text": "string"
|
|
89432
89401
|
}
|
|
89433
89402
|
},
|
|
89434
|
-
"
|
|
89435
|
-
|
|
89436
|
-
|
|
89437
|
-
|
|
89438
|
-
"text": "number"
|
|
89439
|
-
}
|
|
89440
|
-
}
|
|
89441
|
-
],
|
|
89442
|
-
"description": "Calculates the correct unit for the file's size."
|
|
89403
|
+
"inheritedFrom": {
|
|
89404
|
+
"name": "SbbIconNameMixin",
|
|
89405
|
+
"module": "icon/icon-name-mixin.js"
|
|
89406
|
+
}
|
|
89443
89407
|
},
|
|
89444
89408
|
{
|
|
89445
|
-
"kind": "
|
|
89446
|
-
"name": "
|
|
89409
|
+
"kind": "field",
|
|
89410
|
+
"name": "_elementsOnWhichEnterPressTriggersSubmit",
|
|
89411
|
+
"type": {
|
|
89412
|
+
"text": "array"
|
|
89413
|
+
},
|
|
89447
89414
|
"privacy": "private",
|
|
89448
|
-
"
|
|
89449
|
-
|
|
89450
|
-
|
|
89451
|
-
|
|
89415
|
+
"readonly": true,
|
|
89416
|
+
"default": "[ 'input', 'sbb-date-input', 'sbb-time-input', ]",
|
|
89417
|
+
"inheritedFrom": {
|
|
89418
|
+
"name": "SbbButtonBaseElement",
|
|
89419
|
+
"module": "core/base-elements/button-base-element.js"
|
|
89452
89420
|
}
|
|
89453
89421
|
},
|
|
89454
89422
|
{
|
|
89455
|
-
"kind": "
|
|
89456
|
-
"name": "
|
|
89457
|
-
"
|
|
89458
|
-
|
|
89459
|
-
|
|
89460
|
-
|
|
89461
|
-
|
|
89462
|
-
|
|
89423
|
+
"kind": "field",
|
|
89424
|
+
"name": "value",
|
|
89425
|
+
"type": {
|
|
89426
|
+
"text": "string"
|
|
89427
|
+
},
|
|
89428
|
+
"privacy": "public",
|
|
89429
|
+
"inheritedFrom": {
|
|
89430
|
+
"name": "SbbButtonBaseElement",
|
|
89431
|
+
"module": "core/base-elements/button-base-element.js"
|
|
89432
|
+
},
|
|
89433
|
+
"default": "''",
|
|
89434
|
+
"description": "Value of the form element.",
|
|
89435
|
+
"attribute": "value"
|
|
89463
89436
|
},
|
|
89464
89437
|
{
|
|
89465
|
-
"kind": "
|
|
89466
|
-
"name": "
|
|
89467
|
-
"privacy": "
|
|
89468
|
-
"
|
|
89469
|
-
|
|
89470
|
-
|
|
89471
|
-
|
|
89438
|
+
"kind": "field",
|
|
89439
|
+
"name": "type",
|
|
89440
|
+
"privacy": "public",
|
|
89441
|
+
"description": "The type attribute to use for the button.",
|
|
89442
|
+
"default": "'button'",
|
|
89443
|
+
"type": {
|
|
89444
|
+
"text": "SbbButtonType"
|
|
89472
89445
|
},
|
|
89473
|
-
"
|
|
89474
|
-
|
|
89475
|
-
|
|
89476
|
-
|
|
89477
|
-
|
|
89478
|
-
}
|
|
89479
|
-
}
|
|
89480
|
-
]
|
|
89446
|
+
"attribute": "type",
|
|
89447
|
+
"inheritedFrom": {
|
|
89448
|
+
"name": "SbbButtonBaseElement",
|
|
89449
|
+
"module": "core/base-elements/button-base-element.js"
|
|
89450
|
+
}
|
|
89481
89451
|
},
|
|
89482
89452
|
{
|
|
89483
|
-
"kind": "
|
|
89484
|
-
"name": "
|
|
89485
|
-
"
|
|
89486
|
-
|
|
89487
|
-
"type": {
|
|
89488
|
-
"text": "void"
|
|
89489
|
-
}
|
|
89453
|
+
"kind": "field",
|
|
89454
|
+
"name": "form",
|
|
89455
|
+
"type": {
|
|
89456
|
+
"text": "HTMLFormElement | null"
|
|
89490
89457
|
},
|
|
89491
|
-
"
|
|
89492
|
-
|
|
89493
|
-
|
|
89494
|
-
|
|
89495
|
-
|
|
89496
|
-
|
|
89497
|
-
|
|
89498
|
-
]
|
|
89458
|
+
"privacy": "public",
|
|
89459
|
+
"description": "The `<form>` element to associate the button with.",
|
|
89460
|
+
"inheritedFrom": {
|
|
89461
|
+
"name": "SbbButtonBaseElement",
|
|
89462
|
+
"module": "core/base-elements/button-base-element.js"
|
|
89463
|
+
},
|
|
89464
|
+
"attribute": "form"
|
|
89499
89465
|
},
|
|
89500
89466
|
{
|
|
89501
|
-
"kind": "
|
|
89502
|
-
"name": "
|
|
89503
|
-
"
|
|
89504
|
-
|
|
89505
|
-
"type": {
|
|
89506
|
-
"text": "void"
|
|
89507
|
-
}
|
|
89467
|
+
"kind": "field",
|
|
89468
|
+
"name": "_formId",
|
|
89469
|
+
"type": {
|
|
89470
|
+
"text": "string"
|
|
89508
89471
|
},
|
|
89509
|
-
"
|
|
89510
|
-
|
|
89511
|
-
|
|
89512
|
-
|
|
89513
|
-
|
|
89514
|
-
|
|
89515
|
-
}
|
|
89516
|
-
]
|
|
89472
|
+
"privacy": "private",
|
|
89473
|
+
"default": "''",
|
|
89474
|
+
"inheritedFrom": {
|
|
89475
|
+
"name": "SbbButtonBaseElement",
|
|
89476
|
+
"module": "core/base-elements/button-base-element.js"
|
|
89477
|
+
}
|
|
89517
89478
|
},
|
|
89518
89479
|
{
|
|
89519
|
-
"kind": "
|
|
89520
|
-
"name": "
|
|
89480
|
+
"kind": "field",
|
|
89481
|
+
"name": "_handleButtonClick",
|
|
89521
89482
|
"privacy": "private",
|
|
89522
|
-
"
|
|
89523
|
-
"
|
|
89524
|
-
|
|
89525
|
-
|
|
89526
|
-
},
|
|
89527
|
-
"parameters": [
|
|
89528
|
-
{
|
|
89529
|
-
"name": "event",
|
|
89530
|
-
"type": {
|
|
89531
|
-
"text": "DragEvent"
|
|
89532
|
-
}
|
|
89533
|
-
}
|
|
89534
|
-
]
|
|
89483
|
+
"inheritedFrom": {
|
|
89484
|
+
"name": "SbbButtonBaseElement",
|
|
89485
|
+
"module": "core/base-elements/button-base-element.js"
|
|
89486
|
+
}
|
|
89535
89487
|
},
|
|
89536
89488
|
{
|
|
89537
89489
|
"kind": "method",
|
|
89538
|
-
"name": "
|
|
89490
|
+
"name": "_requestSubmit",
|
|
89539
89491
|
"privacy": "private",
|
|
89540
89492
|
"return": {
|
|
89541
89493
|
"type": {
|
|
@@ -89544,63 +89496,24 @@
|
|
|
89544
89496
|
},
|
|
89545
89497
|
"parameters": [
|
|
89546
89498
|
{
|
|
89547
|
-
"name": "
|
|
89548
|
-
"default": "undefined",
|
|
89549
|
-
"type": {
|
|
89550
|
-
"text": "HTMLElement | undefined"
|
|
89551
|
-
}
|
|
89552
|
-
},
|
|
89553
|
-
{
|
|
89554
|
-
"name": "isDragEnter",
|
|
89555
|
-
"default": "false",
|
|
89499
|
+
"name": "form",
|
|
89556
89500
|
"type": {
|
|
89557
|
-
"text": "
|
|
89501
|
+
"text": "HTMLFormElement"
|
|
89558
89502
|
}
|
|
89559
89503
|
}
|
|
89560
|
-
]
|
|
89561
|
-
},
|
|
89562
|
-
{
|
|
89563
|
-
"kind": "field",
|
|
89564
|
-
"name": "disabled",
|
|
89565
|
-
"privacy": "public",
|
|
89566
|
-
"description": "Whether the component is disabled.",
|
|
89567
|
-
"default": "false",
|
|
89568
|
-
"type": {
|
|
89569
|
-
"text": "boolean"
|
|
89570
|
-
},
|
|
89571
|
-
"attribute": "disabled",
|
|
89572
|
-
"reflects": true,
|
|
89504
|
+
],
|
|
89573
89505
|
"inheritedFrom": {
|
|
89574
|
-
"name": "
|
|
89575
|
-
"module": "core/
|
|
89506
|
+
"name": "SbbButtonBaseElement",
|
|
89507
|
+
"module": "core/base-elements/button-base-element.js"
|
|
89576
89508
|
}
|
|
89577
89509
|
},
|
|
89578
89510
|
{
|
|
89579
89511
|
"kind": "field",
|
|
89580
|
-
"name": "
|
|
89512
|
+
"name": "_formKeyDown",
|
|
89581
89513
|
"privacy": "private",
|
|
89582
|
-
"type": {
|
|
89583
|
-
"text": "boolean"
|
|
89584
|
-
},
|
|
89585
|
-
"default": "false",
|
|
89586
89514
|
"inheritedFrom": {
|
|
89587
|
-
"name": "
|
|
89588
|
-
"module": "core/
|
|
89589
|
-
}
|
|
89590
|
-
},
|
|
89591
|
-
{
|
|
89592
|
-
"kind": "method",
|
|
89593
|
-
"name": "isDisabledExternally",
|
|
89594
|
-
"privacy": "protected",
|
|
89595
|
-
"return": {
|
|
89596
|
-
"type": {
|
|
89597
|
-
"text": "boolean"
|
|
89598
|
-
}
|
|
89599
|
-
},
|
|
89600
|
-
"description": "Will be used as 'or' check to the current disabled state.\nCan e.g. be used to read disabled state of a group.",
|
|
89601
|
-
"inheritedFrom": {
|
|
89602
|
-
"name": "SbbDisabledMixin",
|
|
89603
|
-
"module": "core/mixins/disabled-mixin.js"
|
|
89515
|
+
"name": "SbbButtonBaseElement",
|
|
89516
|
+
"module": "core/base-elements/button-base-element.js"
|
|
89604
89517
|
}
|
|
89605
89518
|
},
|
|
89606
89519
|
{
|
|
@@ -89617,20 +89530,6 @@
|
|
|
89617
89530
|
"module": "core/mixins/form-associated-mixin.js"
|
|
89618
89531
|
}
|
|
89619
89532
|
},
|
|
89620
|
-
{
|
|
89621
|
-
"kind": "field",
|
|
89622
|
-
"name": "form",
|
|
89623
|
-
"type": {
|
|
89624
|
-
"text": "HTMLFormElement | null"
|
|
89625
|
-
},
|
|
89626
|
-
"privacy": "public",
|
|
89627
|
-
"description": "Returns the form owner of this element.",
|
|
89628
|
-
"readonly": true,
|
|
89629
|
-
"inheritedFrom": {
|
|
89630
|
-
"name": "SbbFormAssociatedMixin",
|
|
89631
|
-
"module": "core/mixins/form-associated-mixin.js"
|
|
89632
|
-
}
|
|
89633
|
-
},
|
|
89634
89533
|
{
|
|
89635
89534
|
"kind": "field",
|
|
89636
89535
|
"name": "name",
|
|
@@ -89778,6 +89677,21 @@
|
|
|
89778
89677
|
"module": "core/mixins/form-associated-mixin.js"
|
|
89779
89678
|
}
|
|
89780
89679
|
},
|
|
89680
|
+
{
|
|
89681
|
+
"kind": "method",
|
|
89682
|
+
"name": "updateFormValue",
|
|
89683
|
+
"privacy": "protected",
|
|
89684
|
+
"return": {
|
|
89685
|
+
"type": {
|
|
89686
|
+
"text": "void"
|
|
89687
|
+
}
|
|
89688
|
+
},
|
|
89689
|
+
"description": "Should be called when form value is changed.\nAdapts and sets the formValue in the supported format (string | FormData | File | null)\nhttps://developer.mozilla.org/en-US/docs/Web/API/ElementInternals/setFormValue",
|
|
89690
|
+
"inheritedFrom": {
|
|
89691
|
+
"name": "SbbFormAssociatedMixin",
|
|
89692
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
89693
|
+
}
|
|
89694
|
+
},
|
|
89781
89695
|
{
|
|
89782
89696
|
"kind": "method",
|
|
89783
89697
|
"name": "formState",
|
|
@@ -89902,76 +89816,256 @@
|
|
|
89902
89816
|
"name": "SbbFormAssociatedMixin",
|
|
89903
89817
|
"module": "core/mixins/form-associated-mixin.js"
|
|
89904
89818
|
}
|
|
89905
|
-
}
|
|
89906
|
-
],
|
|
89907
|
-
"events": [
|
|
89819
|
+
},
|
|
89908
89820
|
{
|
|
89909
|
-
"
|
|
89821
|
+
"kind": "field",
|
|
89822
|
+
"name": "role",
|
|
89910
89823
|
"type": {
|
|
89911
|
-
"text": "
|
|
89824
|
+
"text": "ElementInternals['role']"
|
|
89912
89825
|
},
|
|
89913
|
-
"
|
|
89826
|
+
"privacy": "public",
|
|
89827
|
+
"static": true,
|
|
89828
|
+
"readonly": true,
|
|
89829
|
+
"default": "'button'",
|
|
89830
|
+
"inheritedFrom": {
|
|
89831
|
+
"name": "SbbButtonLikeBaseElement",
|
|
89832
|
+
"module": "core/base-elements/button-base-element.js"
|
|
89833
|
+
}
|
|
89914
89834
|
},
|
|
89915
89835
|
{
|
|
89916
|
-
"
|
|
89836
|
+
"kind": "field",
|
|
89837
|
+
"name": "_preventScrollOnSpaceKeydown",
|
|
89838
|
+
"privacy": "private",
|
|
89839
|
+
"description": "Prevents scrolling from pressing Space, when the event target is an action element.\nAlso sets active state.",
|
|
89840
|
+
"parameters": [
|
|
89841
|
+
{
|
|
89842
|
+
"description": "The origin event.",
|
|
89843
|
+
"name": "event"
|
|
89844
|
+
}
|
|
89845
|
+
],
|
|
89846
|
+
"inheritedFrom": {
|
|
89847
|
+
"name": "SbbButtonLikeBaseElement",
|
|
89848
|
+
"module": "core/base-elements/button-base-element.js"
|
|
89849
|
+
}
|
|
89850
|
+
},
|
|
89851
|
+
{
|
|
89852
|
+
"kind": "field",
|
|
89853
|
+
"name": "_removeActiveMarker",
|
|
89854
|
+
"privacy": "private",
|
|
89855
|
+
"inheritedFrom": {
|
|
89856
|
+
"name": "SbbButtonLikeBaseElement",
|
|
89857
|
+
"module": "core/base-elements/button-base-element.js"
|
|
89858
|
+
}
|
|
89859
|
+
},
|
|
89860
|
+
{
|
|
89861
|
+
"kind": "field",
|
|
89862
|
+
"name": "_dispatchClickEventOnSpaceKeyup",
|
|
89863
|
+
"privacy": "private",
|
|
89864
|
+
"description": "Dispatches a 'click' PointerEvent if the original keyboard event is a 'Space' press.\nAs verified with the native button, when 'Space' is pressed, a 'click' event is dispatched\nafter the 'keyup' event.",
|
|
89865
|
+
"parameters": [
|
|
89866
|
+
{
|
|
89867
|
+
"description": "The origin event.",
|
|
89868
|
+
"name": "event"
|
|
89869
|
+
}
|
|
89870
|
+
],
|
|
89871
|
+
"inheritedFrom": {
|
|
89872
|
+
"name": "SbbButtonLikeBaseElement",
|
|
89873
|
+
"module": "core/base-elements/button-base-element.js"
|
|
89874
|
+
}
|
|
89875
|
+
},
|
|
89876
|
+
{
|
|
89877
|
+
"kind": "field",
|
|
89878
|
+
"name": "_dispatchClickEvent",
|
|
89879
|
+
"privacy": "private",
|
|
89880
|
+
"inheritedFrom": {
|
|
89881
|
+
"name": "SbbButtonLikeBaseElement",
|
|
89882
|
+
"module": "core/base-elements/button-base-element.js"
|
|
89883
|
+
}
|
|
89884
|
+
},
|
|
89885
|
+
{
|
|
89886
|
+
"kind": "field",
|
|
89887
|
+
"name": "maybeDisabled",
|
|
89917
89888
|
"type": {
|
|
89918
|
-
"text": "
|
|
89889
|
+
"text": "boolean | undefined"
|
|
89919
89890
|
},
|
|
89920
|
-
"
|
|
89891
|
+
"privacy": "protected",
|
|
89892
|
+
"readonly": true,
|
|
89893
|
+
"inheritedFrom": {
|
|
89894
|
+
"name": "SbbActionBaseElement",
|
|
89895
|
+
"module": "core/base-elements/action-base-element.js"
|
|
89896
|
+
}
|
|
89921
89897
|
},
|
|
89922
89898
|
{
|
|
89923
|
-
"
|
|
89899
|
+
"kind": "field",
|
|
89900
|
+
"name": "maybeDisabledInteractive",
|
|
89924
89901
|
"type": {
|
|
89925
|
-
"text": "
|
|
89902
|
+
"text": "boolean | undefined"
|
|
89926
89903
|
},
|
|
89927
|
-
"
|
|
89928
|
-
|
|
89929
|
-
|
|
89930
|
-
|
|
89904
|
+
"privacy": "protected",
|
|
89905
|
+
"readonly": true,
|
|
89906
|
+
"inheritedFrom": {
|
|
89907
|
+
"name": "SbbActionBaseElement",
|
|
89908
|
+
"module": "core/base-elements/action-base-element.js"
|
|
89909
|
+
}
|
|
89910
|
+
},
|
|
89931
89911
|
{
|
|
89932
|
-
"
|
|
89912
|
+
"kind": "method",
|
|
89913
|
+
"name": "setupBaseEventHandlers",
|
|
89914
|
+
"privacy": "protected",
|
|
89915
|
+
"return": {
|
|
89916
|
+
"type": {
|
|
89917
|
+
"text": "void"
|
|
89918
|
+
}
|
|
89919
|
+
},
|
|
89920
|
+
"inheritedFrom": {
|
|
89921
|
+
"name": "SbbActionBaseElement",
|
|
89922
|
+
"module": "core/base-elements/action-base-element.js"
|
|
89923
|
+
}
|
|
89924
|
+
},
|
|
89925
|
+
{
|
|
89926
|
+
"kind": "field",
|
|
89927
|
+
"name": "_hydrationRequired",
|
|
89933
89928
|
"type": {
|
|
89934
|
-
"text": "
|
|
89929
|
+
"text": "boolean"
|
|
89935
89930
|
},
|
|
89936
|
-
"
|
|
89937
|
-
"default": "
|
|
89938
|
-
"
|
|
89931
|
+
"privacy": "private",
|
|
89932
|
+
"default": "!!this.shadowRoot",
|
|
89933
|
+
"inheritedFrom": {
|
|
89934
|
+
"name": "SbbElement",
|
|
89935
|
+
"module": "core/base-elements/element.js"
|
|
89936
|
+
}
|
|
89939
89937
|
},
|
|
89940
89938
|
{
|
|
89941
|
-
"
|
|
89939
|
+
"kind": "field",
|
|
89940
|
+
"name": "_hydrationComplete",
|
|
89941
|
+
"privacy": "private",
|
|
89942
|
+
"default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
|
|
89943
|
+
"inheritedFrom": {
|
|
89944
|
+
"name": "SbbElement",
|
|
89945
|
+
"module": "core/base-elements/element.js"
|
|
89946
|
+
}
|
|
89947
|
+
},
|
|
89948
|
+
{
|
|
89949
|
+
"kind": "field",
|
|
89950
|
+
"name": "_resolveHydration",
|
|
89951
|
+
"type": {
|
|
89952
|
+
"text": "(hydrationRequired: boolean) => void"
|
|
89953
|
+
},
|
|
89954
|
+
"privacy": "private",
|
|
89955
|
+
"inheritedFrom": {
|
|
89956
|
+
"name": "SbbElement",
|
|
89957
|
+
"module": "core/base-elements/element.js"
|
|
89958
|
+
}
|
|
89959
|
+
},
|
|
89960
|
+
{
|
|
89961
|
+
"kind": "field",
|
|
89962
|
+
"name": "hydrationRequired",
|
|
89942
89963
|
"type": {
|
|
89943
89964
|
"text": "boolean"
|
|
89944
89965
|
},
|
|
89945
|
-
"
|
|
89946
|
-
"description": "
|
|
89947
|
-
"
|
|
89966
|
+
"privacy": "protected",
|
|
89967
|
+
"description": "Returns whether hydration is required and not completed.",
|
|
89968
|
+
"readonly": true,
|
|
89969
|
+
"inheritedFrom": {
|
|
89970
|
+
"name": "SbbElement",
|
|
89971
|
+
"module": "core/base-elements/element.js"
|
|
89972
|
+
},
|
|
89973
|
+
"default": "!!this.shadowRoot"
|
|
89948
89974
|
},
|
|
89949
89975
|
{
|
|
89950
|
-
"
|
|
89976
|
+
"kind": "method",
|
|
89977
|
+
"name": "toggleState",
|
|
89978
|
+
"privacy": "protected",
|
|
89979
|
+
"return": {
|
|
89980
|
+
"type": {
|
|
89981
|
+
"text": "void"
|
|
89982
|
+
}
|
|
89983
|
+
},
|
|
89984
|
+
"parameters": [
|
|
89985
|
+
{
|
|
89986
|
+
"name": "value",
|
|
89987
|
+
"type": {
|
|
89988
|
+
"text": "string"
|
|
89989
|
+
}
|
|
89990
|
+
},
|
|
89991
|
+
{
|
|
89992
|
+
"name": "force",
|
|
89993
|
+
"optional": true,
|
|
89994
|
+
"type": {
|
|
89995
|
+
"text": "boolean"
|
|
89996
|
+
}
|
|
89997
|
+
}
|
|
89998
|
+
],
|
|
89999
|
+
"inheritedFrom": {
|
|
90000
|
+
"name": "SbbElement",
|
|
90001
|
+
"module": "core/base-elements/element.js"
|
|
90002
|
+
}
|
|
90003
|
+
},
|
|
90004
|
+
{
|
|
90005
|
+
"kind": "field",
|
|
90006
|
+
"name": "['_$sbbElement$']",
|
|
89951
90007
|
"type": {
|
|
89952
|
-
"text": "
|
|
90008
|
+
"text": "boolean"
|
|
89953
90009
|
},
|
|
89954
|
-
"
|
|
89955
|
-
"
|
|
89956
|
-
"
|
|
90010
|
+
"privacy": "public",
|
|
90011
|
+
"static": true,
|
|
90012
|
+
"default": "true",
|
|
90013
|
+
"inheritedFrom": {
|
|
90014
|
+
"name": "SbbElement",
|
|
90015
|
+
"module": "core/base-elements/element.js"
|
|
90016
|
+
}
|
|
89957
90017
|
},
|
|
89958
90018
|
{
|
|
89959
|
-
"
|
|
90019
|
+
"kind": "field",
|
|
90020
|
+
"name": "_controllers",
|
|
89960
90021
|
"type": {
|
|
89961
|
-
"text": "
|
|
90022
|
+
"text": "Set<SbbReactiveController> | undefined"
|
|
89962
90023
|
},
|
|
89963
|
-
"
|
|
89964
|
-
"
|
|
89965
|
-
|
|
90024
|
+
"privacy": "private",
|
|
90025
|
+
"inheritedFrom": {
|
|
90026
|
+
"name": "SbbElement",
|
|
90027
|
+
"module": "core/base-elements/element.js"
|
|
90028
|
+
}
|
|
90029
|
+
}
|
|
90030
|
+
],
|
|
90031
|
+
"events": [
|
|
90032
|
+
{
|
|
90033
|
+
"name": "toggleexpanded",
|
|
90034
|
+
"type": {
|
|
90035
|
+
"text": "Event"
|
|
90036
|
+
},
|
|
90037
|
+
"description": "Notifies that the `sbb-expansion-panel` is about to expand/shrink."
|
|
90038
|
+
}
|
|
90039
|
+
],
|
|
90040
|
+
"mixins": [
|
|
90041
|
+
{
|
|
90042
|
+
"name": "SbbDisabledTabIndexActionMixin",
|
|
90043
|
+
"module": "core/mixins.js"
|
|
89966
90044
|
},
|
|
89967
90045
|
{
|
|
89968
|
-
"name": "
|
|
90046
|
+
"name": "SbbIconNameMixin",
|
|
90047
|
+
"module": "icon.js"
|
|
90048
|
+
}
|
|
90049
|
+
],
|
|
90050
|
+
"superclass": {
|
|
90051
|
+
"name": "SbbButtonBaseElement",
|
|
90052
|
+
"module": "core/base-elements.js"
|
|
90053
|
+
},
|
|
90054
|
+
"tagName": "sbb-expansion-panel-header",
|
|
90055
|
+
"customElement": true,
|
|
90056
|
+
"attributes": [
|
|
90057
|
+
{
|
|
90058
|
+
"name": "disabled-interactive",
|
|
89969
90059
|
"type": {
|
|
89970
|
-
"text": "
|
|
90060
|
+
"text": "boolean"
|
|
89971
90061
|
},
|
|
89972
|
-
"default": "
|
|
89973
|
-
"description": "
|
|
89974
|
-
"fieldName": "
|
|
90062
|
+
"default": "false",
|
|
90063
|
+
"description": "Whether the button should be aria-disabled but stay interactive.",
|
|
90064
|
+
"fieldName": "disabledInteractive",
|
|
90065
|
+
"inheritedFrom": {
|
|
90066
|
+
"name": "SbbDisabledInteractiveMixin",
|
|
90067
|
+
"module": "core/mixins/disabled-mixin.js"
|
|
90068
|
+
}
|
|
89975
90069
|
},
|
|
89976
90070
|
{
|
|
89977
90071
|
"name": "disabled",
|
|
@@ -89987,33 +90081,66 @@
|
|
|
89987
90081
|
}
|
|
89988
90082
|
},
|
|
89989
90083
|
{
|
|
89990
|
-
"name": "name",
|
|
89991
|
-
"description": "Name of the form element. Will be read from name attribute.",
|
|
90084
|
+
"name": "icon-name",
|
|
89992
90085
|
"type": {
|
|
89993
90086
|
"text": "string"
|
|
89994
90087
|
},
|
|
89995
|
-
"
|
|
90088
|
+
"default": "''",
|
|
90089
|
+
"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.",
|
|
90090
|
+
"fieldName": "iconName",
|
|
89996
90091
|
"inheritedFrom": {
|
|
89997
|
-
"name": "
|
|
89998
|
-
"module": "
|
|
90092
|
+
"name": "SbbIconNameMixin",
|
|
90093
|
+
"module": "icon/icon-name-mixin.js"
|
|
89999
90094
|
}
|
|
90000
|
-
}
|
|
90001
|
-
],
|
|
90002
|
-
"mixins": [
|
|
90095
|
+
},
|
|
90003
90096
|
{
|
|
90004
|
-
"name": "
|
|
90005
|
-
"
|
|
90097
|
+
"name": "value",
|
|
90098
|
+
"type": {
|
|
90099
|
+
"text": "string"
|
|
90100
|
+
},
|
|
90101
|
+
"default": "''",
|
|
90102
|
+
"description": "Value of the form element.",
|
|
90103
|
+
"fieldName": "value",
|
|
90104
|
+
"inheritedFrom": {
|
|
90105
|
+
"name": "SbbButtonBaseElement",
|
|
90106
|
+
"module": "core/base-elements/button-base-element.js"
|
|
90107
|
+
}
|
|
90006
90108
|
},
|
|
90007
90109
|
{
|
|
90008
|
-
"name": "
|
|
90009
|
-
"
|
|
90010
|
-
|
|
90011
|
-
|
|
90012
|
-
|
|
90110
|
+
"name": "type",
|
|
90111
|
+
"description": "The type attribute to use for the button.",
|
|
90112
|
+
"default": "'button'",
|
|
90113
|
+
"type": {
|
|
90114
|
+
"text": "SbbButtonType"
|
|
90115
|
+
},
|
|
90116
|
+
"fieldName": "type",
|
|
90117
|
+
"inheritedFrom": {
|
|
90118
|
+
"name": "SbbButtonBaseElement",
|
|
90119
|
+
"module": "core/base-elements/button-base-element.js"
|
|
90120
|
+
}
|
|
90121
|
+
},
|
|
90013
90122
|
{
|
|
90014
|
-
"name": "
|
|
90123
|
+
"name": "form",
|
|
90124
|
+
"description": "The `<form>` element to associate the button with.",
|
|
90015
90125
|
"type": {
|
|
90016
|
-
"text": "
|
|
90126
|
+
"text": "HTMLFormElement | null"
|
|
90127
|
+
},
|
|
90128
|
+
"fieldName": "form",
|
|
90129
|
+
"inheritedFrom": {
|
|
90130
|
+
"name": "SbbButtonBaseElement",
|
|
90131
|
+
"module": "core/base-elements/button-base-element.js"
|
|
90132
|
+
}
|
|
90133
|
+
},
|
|
90134
|
+
{
|
|
90135
|
+
"name": "name",
|
|
90136
|
+
"description": "Name of the form element. Will be read from name attribute.",
|
|
90137
|
+
"type": {
|
|
90138
|
+
"text": "string"
|
|
90139
|
+
},
|
|
90140
|
+
"fieldName": "name",
|
|
90141
|
+
"inheritedFrom": {
|
|
90142
|
+
"name": "SbbFormAssociatedMixin",
|
|
90143
|
+
"module": "core/mixins/form-associated-mixin.js"
|
|
90017
90144
|
}
|
|
90018
90145
|
}
|
|
90019
90146
|
]
|
|
@@ -90022,26 +90149,10 @@
|
|
|
90022
90149
|
"exports": [
|
|
90023
90150
|
{
|
|
90024
90151
|
"kind": "js",
|
|
90025
|
-
"name": "
|
|
90026
|
-
"declaration": {
|
|
90027
|
-
"name": "default",
|
|
90028
|
-
"module": "./file-selector-common.scss?lit&inline"
|
|
90029
|
-
}
|
|
90030
|
-
},
|
|
90031
|
-
{
|
|
90032
|
-
"kind": "js",
|
|
90033
|
-
"name": "SbbFileSelectorCommonElementMixinType",
|
|
90034
|
-
"declaration": {
|
|
90035
|
-
"name": "SbbFileSelectorCommonElementMixinType",
|
|
90036
|
-
"module": "file-selector/common/file-selector-common.js"
|
|
90037
|
-
}
|
|
90038
|
-
},
|
|
90039
|
-
{
|
|
90040
|
-
"kind": "js",
|
|
90041
|
-
"name": "SbbFileSelectorCommonElementMixin",
|
|
90152
|
+
"name": "SbbExpansionPanelHeaderElement",
|
|
90042
90153
|
"declaration": {
|
|
90043
|
-
"name": "
|
|
90044
|
-
"module": "
|
|
90154
|
+
"name": "SbbExpansionPanelHeaderElement",
|
|
90155
|
+
"module": "expansion-panel/expansion-panel-header/expansion-panel-header.component.js"
|
|
90045
90156
|
}
|
|
90046
90157
|
}
|
|
90047
90158
|
]
|
|
@@ -119465,37 +119576,6 @@
|
|
|
119465
119576
|
}
|
|
119466
119577
|
]
|
|
119467
119578
|
},
|
|
119468
|
-
{
|
|
119469
|
-
"kind": "javascript-module",
|
|
119470
|
-
"path": "sidebar/common/styles.js",
|
|
119471
|
-
"declarations": [],
|
|
119472
|
-
"exports": [
|
|
119473
|
-
{
|
|
119474
|
-
"kind": "js",
|
|
119475
|
-
"name": "sidebarContainerCommonStyle",
|
|
119476
|
-
"declaration": {
|
|
119477
|
-
"name": "default",
|
|
119478
|
-
"module": "./sidebar-container-common.scss?lit&inline"
|
|
119479
|
-
}
|
|
119480
|
-
},
|
|
119481
|
-
{
|
|
119482
|
-
"kind": "js",
|
|
119483
|
-
"name": "sidebarContentCommonStyle",
|
|
119484
|
-
"declaration": {
|
|
119485
|
-
"name": "default",
|
|
119486
|
-
"module": "./sidebar-content-common.scss?lit&inline"
|
|
119487
|
-
}
|
|
119488
|
-
},
|
|
119489
|
-
{
|
|
119490
|
-
"kind": "js",
|
|
119491
|
-
"name": "iconSidebarButtonCommonStyle",
|
|
119492
|
-
"declaration": {
|
|
119493
|
-
"name": "default",
|
|
119494
|
-
"module": "./icon-sidebar-button-common.scss?lit&inline"
|
|
119495
|
-
}
|
|
119496
|
-
}
|
|
119497
|
-
]
|
|
119498
|
-
},
|
|
119499
119579
|
{
|
|
119500
119580
|
"kind": "javascript-module",
|
|
119501
119581
|
"path": "sidebar/sidebar/sidebar.component.js",
|
|
@@ -120227,6 +120307,37 @@
|
|
|
120227
120307
|
}
|
|
120228
120308
|
]
|
|
120229
120309
|
},
|
|
120310
|
+
{
|
|
120311
|
+
"kind": "javascript-module",
|
|
120312
|
+
"path": "sidebar/common/styles.js",
|
|
120313
|
+
"declarations": [],
|
|
120314
|
+
"exports": [
|
|
120315
|
+
{
|
|
120316
|
+
"kind": "js",
|
|
120317
|
+
"name": "sidebarContainerCommonStyle",
|
|
120318
|
+
"declaration": {
|
|
120319
|
+
"name": "default",
|
|
120320
|
+
"module": "./sidebar-container-common.scss?lit&inline"
|
|
120321
|
+
}
|
|
120322
|
+
},
|
|
120323
|
+
{
|
|
120324
|
+
"kind": "js",
|
|
120325
|
+
"name": "sidebarContentCommonStyle",
|
|
120326
|
+
"declaration": {
|
|
120327
|
+
"name": "default",
|
|
120328
|
+
"module": "./sidebar-content-common.scss?lit&inline"
|
|
120329
|
+
}
|
|
120330
|
+
},
|
|
120331
|
+
{
|
|
120332
|
+
"kind": "js",
|
|
120333
|
+
"name": "iconSidebarButtonCommonStyle",
|
|
120334
|
+
"declaration": {
|
|
120335
|
+
"name": "default",
|
|
120336
|
+
"module": "./icon-sidebar-button-common.scss?lit&inline"
|
|
120337
|
+
}
|
|
120338
|
+
}
|
|
120339
|
+
]
|
|
120340
|
+
},
|
|
120230
120341
|
{
|
|
120231
120342
|
"kind": "javascript-module",
|
|
120232
120343
|
"path": "sidebar/sidebar-close-button/sidebar-close-button.component.js",
|