@sbb-esta/lyne-elements-dev 4.13.1-dev.1781015161 → 4.13.1-dev.1781532977
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/custom-elements.json +455 -455
- package/package.json +2 -2
package/custom-elements.json
CHANGED
|
@@ -60779,6 +60779,240 @@
|
|
|
60779
60779
|
}
|
|
60780
60780
|
]
|
|
60781
60781
|
},
|
|
60782
|
+
{
|
|
60783
|
+
"kind": "javascript-module",
|
|
60784
|
+
"path": "container/container/container.component.js",
|
|
60785
|
+
"declarations": [
|
|
60786
|
+
{
|
|
60787
|
+
"kind": "class",
|
|
60788
|
+
"description": "It displays its content with the default page spacing.",
|
|
60789
|
+
"name": "SbbContainerElement",
|
|
60790
|
+
"cssProperties": [
|
|
60791
|
+
{
|
|
60792
|
+
"description": "Use this variable to override the default page spacing. Note that overriding this will disable the standard responsive spacing behavior of the container.",
|
|
60793
|
+
"name": "--sbb-page-spacing-padding"
|
|
60794
|
+
}
|
|
60795
|
+
],
|
|
60796
|
+
"slots": [
|
|
60797
|
+
{
|
|
60798
|
+
"description": "Use the unnamed slot to add anything to the container.",
|
|
60799
|
+
"name": ""
|
|
60800
|
+
},
|
|
60801
|
+
{
|
|
60802
|
+
"description": "The slot used by the sbb-sticky-bar component.",
|
|
60803
|
+
"name": "sticky-bar"
|
|
60804
|
+
},
|
|
60805
|
+
{
|
|
60806
|
+
"description": "The slot used to slot an `sbb-image` to use as background.",
|
|
60807
|
+
"name": "image"
|
|
60808
|
+
}
|
|
60809
|
+
],
|
|
60810
|
+
"members": [
|
|
60811
|
+
{
|
|
60812
|
+
"kind": "field",
|
|
60813
|
+
"name": "elementName",
|
|
60814
|
+
"type": {
|
|
60815
|
+
"text": "string"
|
|
60816
|
+
},
|
|
60817
|
+
"privacy": "public",
|
|
60818
|
+
"static": true,
|
|
60819
|
+
"readonly": true,
|
|
60820
|
+
"default": "'sbb-container'",
|
|
60821
|
+
"inheritedFrom": {
|
|
60822
|
+
"name": "SbbElement",
|
|
60823
|
+
"module": "core/base-elements/element.js"
|
|
60824
|
+
}
|
|
60825
|
+
},
|
|
60826
|
+
{
|
|
60827
|
+
"kind": "field",
|
|
60828
|
+
"name": "expanded",
|
|
60829
|
+
"type": {
|
|
60830
|
+
"text": "boolean"
|
|
60831
|
+
},
|
|
60832
|
+
"privacy": "public",
|
|
60833
|
+
"default": "false",
|
|
60834
|
+
"description": "Whether the container is expanded.",
|
|
60835
|
+
"attribute": "expanded",
|
|
60836
|
+
"reflects": true
|
|
60837
|
+
},
|
|
60838
|
+
{
|
|
60839
|
+
"kind": "field",
|
|
60840
|
+
"name": "backgroundExpanded",
|
|
60841
|
+
"type": {
|
|
60842
|
+
"text": "boolean"
|
|
60843
|
+
},
|
|
60844
|
+
"privacy": "public",
|
|
60845
|
+
"default": "false",
|
|
60846
|
+
"description": "Whether the background color is shown on full container width on large screens.",
|
|
60847
|
+
"attribute": "background-expanded",
|
|
60848
|
+
"reflects": true
|
|
60849
|
+
},
|
|
60850
|
+
{
|
|
60851
|
+
"kind": "field",
|
|
60852
|
+
"name": "color",
|
|
60853
|
+
"type": {
|
|
60854
|
+
"text": "| 'transparent'\n | 'white'\n | 'milk'\n | 'midnight'\n | 'charcoal'"
|
|
60855
|
+
},
|
|
60856
|
+
"privacy": "public",
|
|
60857
|
+
"default": "'white'",
|
|
60858
|
+
"description": "Color of the container, like transparent, white etc.",
|
|
60859
|
+
"attribute": "color",
|
|
60860
|
+
"reflects": true
|
|
60861
|
+
},
|
|
60862
|
+
{
|
|
60863
|
+
"kind": "field",
|
|
60864
|
+
"name": "_hydrationRequired",
|
|
60865
|
+
"type": {
|
|
60866
|
+
"text": "boolean"
|
|
60867
|
+
},
|
|
60868
|
+
"privacy": "private",
|
|
60869
|
+
"default": "!!this.shadowRoot",
|
|
60870
|
+
"inheritedFrom": {
|
|
60871
|
+
"name": "SbbHydrationMixin",
|
|
60872
|
+
"module": "core/mixins/hydration-mixin.js"
|
|
60873
|
+
}
|
|
60874
|
+
},
|
|
60875
|
+
{
|
|
60876
|
+
"kind": "field",
|
|
60877
|
+
"name": "_hydrationComplete",
|
|
60878
|
+
"privacy": "private",
|
|
60879
|
+
"default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
|
|
60880
|
+
"inheritedFrom": {
|
|
60881
|
+
"name": "SbbHydrationMixin",
|
|
60882
|
+
"module": "core/mixins/hydration-mixin.js"
|
|
60883
|
+
}
|
|
60884
|
+
},
|
|
60885
|
+
{
|
|
60886
|
+
"kind": "field",
|
|
60887
|
+
"name": "_resolveHydration",
|
|
60888
|
+
"type": {
|
|
60889
|
+
"text": "(hydrationRequired: boolean) => void"
|
|
60890
|
+
},
|
|
60891
|
+
"privacy": "private",
|
|
60892
|
+
"inheritedFrom": {
|
|
60893
|
+
"name": "SbbHydrationMixin",
|
|
60894
|
+
"module": "core/mixins/hydration-mixin.js"
|
|
60895
|
+
}
|
|
60896
|
+
},
|
|
60897
|
+
{
|
|
60898
|
+
"kind": "field",
|
|
60899
|
+
"name": "hydrationRequired",
|
|
60900
|
+
"type": {
|
|
60901
|
+
"text": "boolean"
|
|
60902
|
+
},
|
|
60903
|
+
"privacy": "protected",
|
|
60904
|
+
"description": "Returns whether hydration is required and not completed.",
|
|
60905
|
+
"readonly": true,
|
|
60906
|
+
"inheritedFrom": {
|
|
60907
|
+
"name": "SbbHydrationMixin",
|
|
60908
|
+
"module": "core/mixins/hydration-mixin.js"
|
|
60909
|
+
},
|
|
60910
|
+
"default": "!!this.shadowRoot"
|
|
60911
|
+
},
|
|
60912
|
+
{
|
|
60913
|
+
"kind": "method",
|
|
60914
|
+
"name": "toggleState",
|
|
60915
|
+
"privacy": "protected",
|
|
60916
|
+
"return": {
|
|
60917
|
+
"type": {
|
|
60918
|
+
"text": "void"
|
|
60919
|
+
}
|
|
60920
|
+
},
|
|
60921
|
+
"parameters": [
|
|
60922
|
+
{
|
|
60923
|
+
"name": "value",
|
|
60924
|
+
"type": {
|
|
60925
|
+
"text": "string"
|
|
60926
|
+
}
|
|
60927
|
+
},
|
|
60928
|
+
{
|
|
60929
|
+
"name": "force",
|
|
60930
|
+
"optional": true,
|
|
60931
|
+
"type": {
|
|
60932
|
+
"text": "boolean"
|
|
60933
|
+
}
|
|
60934
|
+
}
|
|
60935
|
+
],
|
|
60936
|
+
"inheritedFrom": {
|
|
60937
|
+
"name": "SbbElementInternalsMixin",
|
|
60938
|
+
"module": "core/mixins/element-internals-mixin.js"
|
|
60939
|
+
}
|
|
60940
|
+
},
|
|
60941
|
+
{
|
|
60942
|
+
"kind": "field",
|
|
60943
|
+
"name": "['_$sbbElement$']",
|
|
60944
|
+
"type": {
|
|
60945
|
+
"text": "boolean"
|
|
60946
|
+
},
|
|
60947
|
+
"privacy": "public",
|
|
60948
|
+
"static": true,
|
|
60949
|
+
"default": "true",
|
|
60950
|
+
"inheritedFrom": {
|
|
60951
|
+
"name": "SbbElement",
|
|
60952
|
+
"module": "core/base-elements/element.js"
|
|
60953
|
+
}
|
|
60954
|
+
},
|
|
60955
|
+
{
|
|
60956
|
+
"kind": "field",
|
|
60957
|
+
"name": "_controllers",
|
|
60958
|
+
"type": {
|
|
60959
|
+
"text": "Set<SbbReactiveController> | undefined"
|
|
60960
|
+
},
|
|
60961
|
+
"privacy": "private",
|
|
60962
|
+
"inheritedFrom": {
|
|
60963
|
+
"name": "SbbElement",
|
|
60964
|
+
"module": "core/base-elements/element.js"
|
|
60965
|
+
}
|
|
60966
|
+
}
|
|
60967
|
+
],
|
|
60968
|
+
"attributes": [
|
|
60969
|
+
{
|
|
60970
|
+
"name": "expanded",
|
|
60971
|
+
"type": {
|
|
60972
|
+
"text": "boolean"
|
|
60973
|
+
},
|
|
60974
|
+
"default": "false",
|
|
60975
|
+
"description": "Whether the container is expanded.",
|
|
60976
|
+
"fieldName": "expanded"
|
|
60977
|
+
},
|
|
60978
|
+
{
|
|
60979
|
+
"name": "background-expanded",
|
|
60980
|
+
"type": {
|
|
60981
|
+
"text": "boolean"
|
|
60982
|
+
},
|
|
60983
|
+
"default": "false",
|
|
60984
|
+
"description": "Whether the background color is shown on full container width on large screens.",
|
|
60985
|
+
"fieldName": "backgroundExpanded"
|
|
60986
|
+
},
|
|
60987
|
+
{
|
|
60988
|
+
"name": "color",
|
|
60989
|
+
"type": {
|
|
60990
|
+
"text": "| 'transparent'\n | 'white'\n | 'milk'\n | 'midnight'\n | 'charcoal'"
|
|
60991
|
+
},
|
|
60992
|
+
"default": "'white'",
|
|
60993
|
+
"description": "Color of the container, like transparent, white etc.",
|
|
60994
|
+
"fieldName": "color"
|
|
60995
|
+
}
|
|
60996
|
+
],
|
|
60997
|
+
"superclass": {
|
|
60998
|
+
"name": "SbbElement",
|
|
60999
|
+
"module": "core/base-elements.js"
|
|
61000
|
+
},
|
|
61001
|
+
"tagName": "sbb-container",
|
|
61002
|
+
"customElement": true
|
|
61003
|
+
}
|
|
61004
|
+
],
|
|
61005
|
+
"exports": [
|
|
61006
|
+
{
|
|
61007
|
+
"kind": "js",
|
|
61008
|
+
"name": "SbbContainerElement",
|
|
61009
|
+
"declaration": {
|
|
61010
|
+
"name": "SbbContainerElement",
|
|
61011
|
+
"module": "container/container/container.component.js"
|
|
61012
|
+
}
|
|
61013
|
+
}
|
|
61014
|
+
]
|
|
61015
|
+
},
|
|
60782
61016
|
{
|
|
60783
61017
|
"kind": "javascript-module",
|
|
60784
61018
|
"path": "container/sticky-bar/sticky-bar.component.js",
|
|
@@ -62135,285 +62369,51 @@
|
|
|
62135
62369
|
},
|
|
62136
62370
|
{
|
|
62137
62371
|
"kind": "javascript-module",
|
|
62138
|
-
"path": "
|
|
62372
|
+
"path": "core/base-elements/action-base-element.js",
|
|
62139
62373
|
"declarations": [
|
|
62140
62374
|
{
|
|
62141
62375
|
"kind": "class",
|
|
62142
|
-
"description": "
|
|
62143
|
-
"name": "
|
|
62144
|
-
"cssProperties": [
|
|
62145
|
-
{
|
|
62146
|
-
"description": "Use this variable to override the default page spacing. Note that overriding this will disable the standard responsive spacing behavior of the container.",
|
|
62147
|
-
"name": "--sbb-page-spacing-padding"
|
|
62148
|
-
}
|
|
62149
|
-
],
|
|
62150
|
-
"slots": [
|
|
62151
|
-
{
|
|
62152
|
-
"description": "Use the unnamed slot to add anything to the container.",
|
|
62153
|
-
"name": ""
|
|
62154
|
-
},
|
|
62155
|
-
{
|
|
62156
|
-
"description": "The slot used by the sbb-sticky-bar component.",
|
|
62157
|
-
"name": "sticky-bar"
|
|
62158
|
-
},
|
|
62159
|
-
{
|
|
62160
|
-
"description": "The slot used to slot an `sbb-image` to use as background.",
|
|
62161
|
-
"name": "image"
|
|
62162
|
-
}
|
|
62163
|
-
],
|
|
62376
|
+
"description": "",
|
|
62377
|
+
"name": "SbbActionBaseElement",
|
|
62164
62378
|
"members": [
|
|
62165
62379
|
{
|
|
62166
62380
|
"kind": "field",
|
|
62167
|
-
"name": "
|
|
62381
|
+
"name": "maybeDisabled",
|
|
62168
62382
|
"type": {
|
|
62169
|
-
"text": "
|
|
62383
|
+
"text": "boolean | undefined"
|
|
62170
62384
|
},
|
|
62171
|
-
"privacy": "
|
|
62172
|
-
"
|
|
62173
|
-
"readonly": true,
|
|
62174
|
-
"default": "'sbb-container'",
|
|
62175
|
-
"inheritedFrom": {
|
|
62176
|
-
"name": "SbbElement",
|
|
62177
|
-
"module": "core/base-elements/element.js"
|
|
62178
|
-
}
|
|
62385
|
+
"privacy": "protected",
|
|
62386
|
+
"readonly": true
|
|
62179
62387
|
},
|
|
62180
62388
|
{
|
|
62181
62389
|
"kind": "field",
|
|
62182
|
-
"name": "
|
|
62390
|
+
"name": "maybeDisabledInteractive",
|
|
62183
62391
|
"type": {
|
|
62184
|
-
"text": "boolean"
|
|
62392
|
+
"text": "boolean | undefined"
|
|
62185
62393
|
},
|
|
62186
|
-
"privacy": "
|
|
62187
|
-
"
|
|
62188
|
-
"description": "Whether the container is expanded.",
|
|
62189
|
-
"attribute": "expanded",
|
|
62190
|
-
"reflects": true
|
|
62394
|
+
"privacy": "protected",
|
|
62395
|
+
"readonly": true
|
|
62191
62396
|
},
|
|
62192
62397
|
{
|
|
62193
|
-
"kind": "
|
|
62194
|
-
"name": "
|
|
62195
|
-
"
|
|
62196
|
-
|
|
62197
|
-
|
|
62198
|
-
|
|
62199
|
-
|
|
62200
|
-
|
|
62201
|
-
"attribute": "background-expanded",
|
|
62202
|
-
"reflects": true
|
|
62398
|
+
"kind": "method",
|
|
62399
|
+
"name": "setupBaseEventHandlers",
|
|
62400
|
+
"privacy": "protected",
|
|
62401
|
+
"return": {
|
|
62402
|
+
"type": {
|
|
62403
|
+
"text": "void"
|
|
62404
|
+
}
|
|
62405
|
+
}
|
|
62203
62406
|
},
|
|
62204
62407
|
{
|
|
62205
|
-
"kind": "
|
|
62206
|
-
"name": "
|
|
62207
|
-
"
|
|
62208
|
-
|
|
62408
|
+
"kind": "method",
|
|
62409
|
+
"name": "renderTemplate",
|
|
62410
|
+
"privacy": "protected",
|
|
62411
|
+
"return": {
|
|
62412
|
+
"type": {
|
|
62413
|
+
"text": "TemplateResult"
|
|
62414
|
+
}
|
|
62209
62415
|
},
|
|
62210
|
-
"
|
|
62211
|
-
"default": "'white'",
|
|
62212
|
-
"description": "Color of the container, like transparent, white etc.",
|
|
62213
|
-
"attribute": "color",
|
|
62214
|
-
"reflects": true
|
|
62215
|
-
},
|
|
62216
|
-
{
|
|
62217
|
-
"kind": "field",
|
|
62218
|
-
"name": "_hydrationRequired",
|
|
62219
|
-
"type": {
|
|
62220
|
-
"text": "boolean"
|
|
62221
|
-
},
|
|
62222
|
-
"privacy": "private",
|
|
62223
|
-
"default": "!!this.shadowRoot",
|
|
62224
|
-
"inheritedFrom": {
|
|
62225
|
-
"name": "SbbHydrationMixin",
|
|
62226
|
-
"module": "core/mixins/hydration-mixin.js"
|
|
62227
|
-
}
|
|
62228
|
-
},
|
|
62229
|
-
{
|
|
62230
|
-
"kind": "field",
|
|
62231
|
-
"name": "_hydrationComplete",
|
|
62232
|
-
"privacy": "private",
|
|
62233
|
-
"default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
|
|
62234
|
-
"inheritedFrom": {
|
|
62235
|
-
"name": "SbbHydrationMixin",
|
|
62236
|
-
"module": "core/mixins/hydration-mixin.js"
|
|
62237
|
-
}
|
|
62238
|
-
},
|
|
62239
|
-
{
|
|
62240
|
-
"kind": "field",
|
|
62241
|
-
"name": "_resolveHydration",
|
|
62242
|
-
"type": {
|
|
62243
|
-
"text": "(hydrationRequired: boolean) => void"
|
|
62244
|
-
},
|
|
62245
|
-
"privacy": "private",
|
|
62246
|
-
"inheritedFrom": {
|
|
62247
|
-
"name": "SbbHydrationMixin",
|
|
62248
|
-
"module": "core/mixins/hydration-mixin.js"
|
|
62249
|
-
}
|
|
62250
|
-
},
|
|
62251
|
-
{
|
|
62252
|
-
"kind": "field",
|
|
62253
|
-
"name": "hydrationRequired",
|
|
62254
|
-
"type": {
|
|
62255
|
-
"text": "boolean"
|
|
62256
|
-
},
|
|
62257
|
-
"privacy": "protected",
|
|
62258
|
-
"description": "Returns whether hydration is required and not completed.",
|
|
62259
|
-
"readonly": true,
|
|
62260
|
-
"inheritedFrom": {
|
|
62261
|
-
"name": "SbbHydrationMixin",
|
|
62262
|
-
"module": "core/mixins/hydration-mixin.js"
|
|
62263
|
-
},
|
|
62264
|
-
"default": "!!this.shadowRoot"
|
|
62265
|
-
},
|
|
62266
|
-
{
|
|
62267
|
-
"kind": "method",
|
|
62268
|
-
"name": "toggleState",
|
|
62269
|
-
"privacy": "protected",
|
|
62270
|
-
"return": {
|
|
62271
|
-
"type": {
|
|
62272
|
-
"text": "void"
|
|
62273
|
-
}
|
|
62274
|
-
},
|
|
62275
|
-
"parameters": [
|
|
62276
|
-
{
|
|
62277
|
-
"name": "value",
|
|
62278
|
-
"type": {
|
|
62279
|
-
"text": "string"
|
|
62280
|
-
}
|
|
62281
|
-
},
|
|
62282
|
-
{
|
|
62283
|
-
"name": "force",
|
|
62284
|
-
"optional": true,
|
|
62285
|
-
"type": {
|
|
62286
|
-
"text": "boolean"
|
|
62287
|
-
}
|
|
62288
|
-
}
|
|
62289
|
-
],
|
|
62290
|
-
"inheritedFrom": {
|
|
62291
|
-
"name": "SbbElementInternalsMixin",
|
|
62292
|
-
"module": "core/mixins/element-internals-mixin.js"
|
|
62293
|
-
}
|
|
62294
|
-
},
|
|
62295
|
-
{
|
|
62296
|
-
"kind": "field",
|
|
62297
|
-
"name": "['_$sbbElement$']",
|
|
62298
|
-
"type": {
|
|
62299
|
-
"text": "boolean"
|
|
62300
|
-
},
|
|
62301
|
-
"privacy": "public",
|
|
62302
|
-
"static": true,
|
|
62303
|
-
"default": "true",
|
|
62304
|
-
"inheritedFrom": {
|
|
62305
|
-
"name": "SbbElement",
|
|
62306
|
-
"module": "core/base-elements/element.js"
|
|
62307
|
-
}
|
|
62308
|
-
},
|
|
62309
|
-
{
|
|
62310
|
-
"kind": "field",
|
|
62311
|
-
"name": "_controllers",
|
|
62312
|
-
"type": {
|
|
62313
|
-
"text": "Set<SbbReactiveController> | undefined"
|
|
62314
|
-
},
|
|
62315
|
-
"privacy": "private",
|
|
62316
|
-
"inheritedFrom": {
|
|
62317
|
-
"name": "SbbElement",
|
|
62318
|
-
"module": "core/base-elements/element.js"
|
|
62319
|
-
}
|
|
62320
|
-
}
|
|
62321
|
-
],
|
|
62322
|
-
"attributes": [
|
|
62323
|
-
{
|
|
62324
|
-
"name": "expanded",
|
|
62325
|
-
"type": {
|
|
62326
|
-
"text": "boolean"
|
|
62327
|
-
},
|
|
62328
|
-
"default": "false",
|
|
62329
|
-
"description": "Whether the container is expanded.",
|
|
62330
|
-
"fieldName": "expanded"
|
|
62331
|
-
},
|
|
62332
|
-
{
|
|
62333
|
-
"name": "background-expanded",
|
|
62334
|
-
"type": {
|
|
62335
|
-
"text": "boolean"
|
|
62336
|
-
},
|
|
62337
|
-
"default": "false",
|
|
62338
|
-
"description": "Whether the background color is shown on full container width on large screens.",
|
|
62339
|
-
"fieldName": "backgroundExpanded"
|
|
62340
|
-
},
|
|
62341
|
-
{
|
|
62342
|
-
"name": "color",
|
|
62343
|
-
"type": {
|
|
62344
|
-
"text": "| 'transparent'\n | 'white'\n | 'milk'\n | 'midnight'\n | 'charcoal'"
|
|
62345
|
-
},
|
|
62346
|
-
"default": "'white'",
|
|
62347
|
-
"description": "Color of the container, like transparent, white etc.",
|
|
62348
|
-
"fieldName": "color"
|
|
62349
|
-
}
|
|
62350
|
-
],
|
|
62351
|
-
"superclass": {
|
|
62352
|
-
"name": "SbbElement",
|
|
62353
|
-
"module": "core/base-elements.js"
|
|
62354
|
-
},
|
|
62355
|
-
"tagName": "sbb-container",
|
|
62356
|
-
"customElement": true
|
|
62357
|
-
}
|
|
62358
|
-
],
|
|
62359
|
-
"exports": [
|
|
62360
|
-
{
|
|
62361
|
-
"kind": "js",
|
|
62362
|
-
"name": "SbbContainerElement",
|
|
62363
|
-
"declaration": {
|
|
62364
|
-
"name": "SbbContainerElement",
|
|
62365
|
-
"module": "container/container/container.component.js"
|
|
62366
|
-
}
|
|
62367
|
-
}
|
|
62368
|
-
]
|
|
62369
|
-
},
|
|
62370
|
-
{
|
|
62371
|
-
"kind": "javascript-module",
|
|
62372
|
-
"path": "core/base-elements/action-base-element.js",
|
|
62373
|
-
"declarations": [
|
|
62374
|
-
{
|
|
62375
|
-
"kind": "class",
|
|
62376
|
-
"description": "",
|
|
62377
|
-
"name": "SbbActionBaseElement",
|
|
62378
|
-
"members": [
|
|
62379
|
-
{
|
|
62380
|
-
"kind": "field",
|
|
62381
|
-
"name": "maybeDisabled",
|
|
62382
|
-
"type": {
|
|
62383
|
-
"text": "boolean | undefined"
|
|
62384
|
-
},
|
|
62385
|
-
"privacy": "protected",
|
|
62386
|
-
"readonly": true
|
|
62387
|
-
},
|
|
62388
|
-
{
|
|
62389
|
-
"kind": "field",
|
|
62390
|
-
"name": "maybeDisabledInteractive",
|
|
62391
|
-
"type": {
|
|
62392
|
-
"text": "boolean | undefined"
|
|
62393
|
-
},
|
|
62394
|
-
"privacy": "protected",
|
|
62395
|
-
"readonly": true
|
|
62396
|
-
},
|
|
62397
|
-
{
|
|
62398
|
-
"kind": "method",
|
|
62399
|
-
"name": "setupBaseEventHandlers",
|
|
62400
|
-
"privacy": "protected",
|
|
62401
|
-
"return": {
|
|
62402
|
-
"type": {
|
|
62403
|
-
"text": "void"
|
|
62404
|
-
}
|
|
62405
|
-
}
|
|
62406
|
-
},
|
|
62407
|
-
{
|
|
62408
|
-
"kind": "method",
|
|
62409
|
-
"name": "renderTemplate",
|
|
62410
|
-
"privacy": "protected",
|
|
62411
|
-
"return": {
|
|
62412
|
-
"type": {
|
|
62413
|
-
"text": "TemplateResult"
|
|
62414
|
-
}
|
|
62415
|
-
},
|
|
62416
|
-
"description": "Override this method to render the component template."
|
|
62416
|
+
"description": "Override this method to render the component template."
|
|
62417
62417
|
},
|
|
62418
62418
|
{
|
|
62419
62419
|
"kind": "field",
|
|
@@ -81344,12 +81344,12 @@
|
|
|
81344
81344
|
},
|
|
81345
81345
|
{
|
|
81346
81346
|
"kind": "javascript-module",
|
|
81347
|
-
"path": "datepicker/datepicker-
|
|
81347
|
+
"path": "datepicker/datepicker-next-day/datepicker-next-day.component.js",
|
|
81348
81348
|
"declarations": [
|
|
81349
81349
|
{
|
|
81350
81350
|
"kind": "class",
|
|
81351
|
-
"description": "Combined with a `sbb-datepicker`, it can be used to move the date
|
|
81352
|
-
"name": "
|
|
81351
|
+
"description": "Combined with a `sbb-datepicker`, it can be used to move the date ahead.",
|
|
81352
|
+
"name": "SbbDatepickerNextDayElement",
|
|
81353
81353
|
"members": [
|
|
81354
81354
|
{
|
|
81355
81355
|
"kind": "field",
|
|
@@ -81364,7 +81364,7 @@
|
|
|
81364
81364
|
"name": "SbbElement",
|
|
81365
81365
|
"module": "core/base-elements/element.js"
|
|
81366
81366
|
},
|
|
81367
|
-
"default": "'sbb-datepicker-
|
|
81367
|
+
"default": "'sbb-datepicker-next-day'"
|
|
81368
81368
|
},
|
|
81369
81369
|
{
|
|
81370
81370
|
"kind": "field",
|
|
@@ -81377,7 +81377,7 @@
|
|
|
81377
81377
|
"name": "SbbDatepickerButtonBase",
|
|
81378
81378
|
"module": "datepicker/common/datepicker-button.js"
|
|
81379
81379
|
},
|
|
81380
|
-
"default": "'chevron-small-
|
|
81380
|
+
"default": "'chevron-small-right-small'"
|
|
81381
81381
|
},
|
|
81382
81382
|
{
|
|
81383
81383
|
"kind": "field",
|
|
@@ -81386,7 +81386,7 @@
|
|
|
81386
81386
|
"text": "Record<string, string>"
|
|
81387
81387
|
},
|
|
81388
81388
|
"privacy": "protected",
|
|
81389
|
-
"default": "
|
|
81389
|
+
"default": "i18nNextDay",
|
|
81390
81390
|
"inheritedFrom": {
|
|
81391
81391
|
"name": "SbbDatepickerButton",
|
|
81392
81392
|
"module": "datepicker/common/datepicker-button.js"
|
|
@@ -81399,7 +81399,7 @@
|
|
|
81399
81399
|
"text": "(_currentDate: string) => Record<string, string>"
|
|
81400
81400
|
},
|
|
81401
81401
|
"privacy": "protected",
|
|
81402
|
-
"default": "
|
|
81402
|
+
"default": "i18nSelectNextDay",
|
|
81403
81403
|
"inheritedFrom": {
|
|
81404
81404
|
"name": "SbbDatepickerButton",
|
|
81405
81405
|
"module": "datepicker/common/datepicker-button.js"
|
|
@@ -81429,7 +81429,7 @@
|
|
|
81429
81429
|
},
|
|
81430
81430
|
{
|
|
81431
81431
|
"kind": "method",
|
|
81432
|
-
"name": "
|
|
81432
|
+
"name": "_isAfterMaxDate",
|
|
81433
81433
|
"privacy": "private",
|
|
81434
81434
|
"return": {
|
|
81435
81435
|
"type": {
|
|
@@ -82289,7 +82289,7 @@
|
|
|
82289
82289
|
"name": "SbbDatepickerButton",
|
|
82290
82290
|
"module": "datepicker/common/datepicker-button.js"
|
|
82291
82291
|
},
|
|
82292
|
-
"tagName": "sbb-datepicker-
|
|
82292
|
+
"tagName": "sbb-datepicker-next-day",
|
|
82293
82293
|
"customElement": true,
|
|
82294
82294
|
"classGenerics": "T = Date",
|
|
82295
82295
|
"attributes": [
|
|
@@ -82399,22 +82399,22 @@
|
|
|
82399
82399
|
"exports": [
|
|
82400
82400
|
{
|
|
82401
82401
|
"kind": "js",
|
|
82402
|
-
"name": "
|
|
82402
|
+
"name": "SbbDatepickerNextDayElement",
|
|
82403
82403
|
"declaration": {
|
|
82404
|
-
"name": "
|
|
82405
|
-
"module": "datepicker/datepicker-
|
|
82404
|
+
"name": "SbbDatepickerNextDayElement",
|
|
82405
|
+
"module": "datepicker/datepicker-next-day/datepicker-next-day.component.js"
|
|
82406
82406
|
}
|
|
82407
82407
|
}
|
|
82408
82408
|
]
|
|
82409
82409
|
},
|
|
82410
82410
|
{
|
|
82411
82411
|
"kind": "javascript-module",
|
|
82412
|
-
"path": "datepicker/datepicker-
|
|
82412
|
+
"path": "datepicker/datepicker-previous-day/datepicker-previous-day.component.js",
|
|
82413
82413
|
"declarations": [
|
|
82414
82414
|
{
|
|
82415
82415
|
"kind": "class",
|
|
82416
|
-
"description": "Combined with a `sbb-datepicker`, it can be used to move the date
|
|
82417
|
-
"name": "
|
|
82416
|
+
"description": "Combined with a `sbb-datepicker`, it can be used to move the date back.",
|
|
82417
|
+
"name": "SbbDatepickerPreviousDayElement",
|
|
82418
82418
|
"members": [
|
|
82419
82419
|
{
|
|
82420
82420
|
"kind": "field",
|
|
@@ -82429,7 +82429,7 @@
|
|
|
82429
82429
|
"name": "SbbElement",
|
|
82430
82430
|
"module": "core/base-elements/element.js"
|
|
82431
82431
|
},
|
|
82432
|
-
"default": "'sbb-datepicker-
|
|
82432
|
+
"default": "'sbb-datepicker-previous-day'"
|
|
82433
82433
|
},
|
|
82434
82434
|
{
|
|
82435
82435
|
"kind": "field",
|
|
@@ -82442,7 +82442,7 @@
|
|
|
82442
82442
|
"name": "SbbDatepickerButtonBase",
|
|
82443
82443
|
"module": "datepicker/common/datepicker-button.js"
|
|
82444
82444
|
},
|
|
82445
|
-
"default": "'chevron-small-
|
|
82445
|
+
"default": "'chevron-small-left-small'"
|
|
82446
82446
|
},
|
|
82447
82447
|
{
|
|
82448
82448
|
"kind": "field",
|
|
@@ -82451,7 +82451,7 @@
|
|
|
82451
82451
|
"text": "Record<string, string>"
|
|
82452
82452
|
},
|
|
82453
82453
|
"privacy": "protected",
|
|
82454
|
-
"default": "
|
|
82454
|
+
"default": "i18nPreviousDay",
|
|
82455
82455
|
"inheritedFrom": {
|
|
82456
82456
|
"name": "SbbDatepickerButton",
|
|
82457
82457
|
"module": "datepicker/common/datepicker-button.js"
|
|
@@ -82464,7 +82464,7 @@
|
|
|
82464
82464
|
"text": "(_currentDate: string) => Record<string, string>"
|
|
82465
82465
|
},
|
|
82466
82466
|
"privacy": "protected",
|
|
82467
|
-
"default": "
|
|
82467
|
+
"default": "i18nSelectPreviousDay",
|
|
82468
82468
|
"inheritedFrom": {
|
|
82469
82469
|
"name": "SbbDatepickerButton",
|
|
82470
82470
|
"module": "datepicker/common/datepicker-button.js"
|
|
@@ -82494,7 +82494,7 @@
|
|
|
82494
82494
|
},
|
|
82495
82495
|
{
|
|
82496
82496
|
"kind": "method",
|
|
82497
|
-
"name": "
|
|
82497
|
+
"name": "_isBeforeMinDate",
|
|
82498
82498
|
"privacy": "private",
|
|
82499
82499
|
"return": {
|
|
82500
82500
|
"type": {
|
|
@@ -83354,7 +83354,7 @@
|
|
|
83354
83354
|
"name": "SbbDatepickerButton",
|
|
83355
83355
|
"module": "datepicker/common/datepicker-button.js"
|
|
83356
83356
|
},
|
|
83357
|
-
"tagName": "sbb-datepicker-
|
|
83357
|
+
"tagName": "sbb-datepicker-previous-day",
|
|
83358
83358
|
"customElement": true,
|
|
83359
83359
|
"classGenerics": "T = Date",
|
|
83360
83360
|
"attributes": [
|
|
@@ -83464,10 +83464,10 @@
|
|
|
83464
83464
|
"exports": [
|
|
83465
83465
|
{
|
|
83466
83466
|
"kind": "js",
|
|
83467
|
-
"name": "
|
|
83467
|
+
"name": "SbbDatepickerPreviousDayElement",
|
|
83468
83468
|
"declaration": {
|
|
83469
|
-
"name": "
|
|
83470
|
-
"module": "datepicker/datepicker-
|
|
83469
|
+
"name": "SbbDatepickerPreviousDayElement",
|
|
83470
|
+
"module": "datepicker/datepicker-previous-day/datepicker-previous-day.component.js"
|
|
83471
83471
|
}
|
|
83472
83472
|
}
|
|
83473
83473
|
]
|
|
@@ -110097,176 +110097,6 @@
|
|
|
110097
110097
|
}
|
|
110098
110098
|
]
|
|
110099
110099
|
},
|
|
110100
|
-
{
|
|
110101
|
-
"kind": "javascript-module",
|
|
110102
|
-
"path": "navigation/common/navigation-action-common.js",
|
|
110103
|
-
"declarations": [
|
|
110104
|
-
{
|
|
110105
|
-
"kind": "class",
|
|
110106
|
-
"description": "",
|
|
110107
|
-
"name": "SbbNavigationActionCommonElementMixinType",
|
|
110108
|
-
"members": [
|
|
110109
|
-
{
|
|
110110
|
-
"kind": "field",
|
|
110111
|
-
"name": "size",
|
|
110112
|
-
"type": {
|
|
110113
|
-
"text": "SbbNavigationActionSize"
|
|
110114
|
-
},
|
|
110115
|
-
"privacy": "public"
|
|
110116
|
-
},
|
|
110117
|
-
{
|
|
110118
|
-
"kind": "field",
|
|
110119
|
-
"name": "marker",
|
|
110120
|
-
"type": {
|
|
110121
|
-
"text": "SbbNavigationMarkerElement | null"
|
|
110122
|
-
},
|
|
110123
|
-
"privacy": "public",
|
|
110124
|
-
"readonly": true
|
|
110125
|
-
},
|
|
110126
|
-
{
|
|
110127
|
-
"kind": "field",
|
|
110128
|
-
"name": "section",
|
|
110129
|
-
"type": {
|
|
110130
|
-
"text": "SbbNavigationSectionElement | null"
|
|
110131
|
-
},
|
|
110132
|
-
"privacy": "public",
|
|
110133
|
-
"readonly": true
|
|
110134
|
-
},
|
|
110135
|
-
{
|
|
110136
|
-
"kind": "field",
|
|
110137
|
-
"name": "connectedSection",
|
|
110138
|
-
"type": {
|
|
110139
|
-
"text": "SbbNavigationSectionElement | undefined"
|
|
110140
|
-
},
|
|
110141
|
-
"privacy": "public"
|
|
110142
|
-
}
|
|
110143
|
-
]
|
|
110144
|
-
},
|
|
110145
|
-
{
|
|
110146
|
-
"kind": "mixin",
|
|
110147
|
-
"description": "",
|
|
110148
|
-
"name": "SbbNavigationActionCommonElementMixin",
|
|
110149
|
-
"members": [
|
|
110150
|
-
{
|
|
110151
|
-
"kind": "field",
|
|
110152
|
-
"name": "styles",
|
|
110153
|
-
"type": {
|
|
110154
|
-
"text": "CSSResultGroup"
|
|
110155
|
-
},
|
|
110156
|
-
"privacy": "public",
|
|
110157
|
-
"static": true,
|
|
110158
|
-
"default": "[boxSizingStyles, unsafeCSS(style)]"
|
|
110159
|
-
},
|
|
110160
|
-
{
|
|
110161
|
-
"kind": "field",
|
|
110162
|
-
"name": "size",
|
|
110163
|
-
"type": {
|
|
110164
|
-
"text": "SbbNavigationActionSize"
|
|
110165
|
-
},
|
|
110166
|
-
"privacy": "public",
|
|
110167
|
-
"description": "Action size variant, either s, m or l.",
|
|
110168
|
-
"default": "'l' / 's' (lean)",
|
|
110169
|
-
"attribute": "size",
|
|
110170
|
-
"reflects": true
|
|
110171
|
-
},
|
|
110172
|
-
{
|
|
110173
|
-
"kind": "field",
|
|
110174
|
-
"name": "connectedSection",
|
|
110175
|
-
"type": {
|
|
110176
|
-
"text": "SbbNavigationSectionElement | undefined"
|
|
110177
|
-
},
|
|
110178
|
-
"privacy": "public",
|
|
110179
|
-
"description": "The section that is being controlled by the action, if any."
|
|
110180
|
-
},
|
|
110181
|
-
{
|
|
110182
|
-
"kind": "field",
|
|
110183
|
-
"name": "marker",
|
|
110184
|
-
"type": {
|
|
110185
|
-
"text": "SbbNavigationMarkerElement | null"
|
|
110186
|
-
},
|
|
110187
|
-
"privacy": "public",
|
|
110188
|
-
"description": "The navigation marker in which the action is nested.",
|
|
110189
|
-
"readonly": true
|
|
110190
|
-
},
|
|
110191
|
-
{
|
|
110192
|
-
"kind": "field",
|
|
110193
|
-
"name": "section",
|
|
110194
|
-
"type": {
|
|
110195
|
-
"text": "SbbNavigationSectionElement | null"
|
|
110196
|
-
},
|
|
110197
|
-
"privacy": "public",
|
|
110198
|
-
"description": "The section in which the action is nested.",
|
|
110199
|
-
"readonly": true
|
|
110200
|
-
},
|
|
110201
|
-
{
|
|
110202
|
-
"kind": "field",
|
|
110203
|
-
"name": "_navigationMarker",
|
|
110204
|
-
"type": {
|
|
110205
|
-
"text": "SbbNavigationMarkerElement | null"
|
|
110206
|
-
},
|
|
110207
|
-
"privacy": "private",
|
|
110208
|
-
"default": "null"
|
|
110209
|
-
},
|
|
110210
|
-
{
|
|
110211
|
-
"kind": "field",
|
|
110212
|
-
"name": "_navigationSection",
|
|
110213
|
-
"type": {
|
|
110214
|
-
"text": "SbbNavigationSectionElement | null"
|
|
110215
|
-
},
|
|
110216
|
-
"privacy": "private",
|
|
110217
|
-
"default": "null"
|
|
110218
|
-
},
|
|
110219
|
-
{
|
|
110220
|
-
"kind": "method",
|
|
110221
|
-
"name": "renderTemplate",
|
|
110222
|
-
"privacy": "protected",
|
|
110223
|
-
"return": {
|
|
110224
|
-
"type": {
|
|
110225
|
-
"text": "TemplateResult"
|
|
110226
|
-
}
|
|
110227
|
-
}
|
|
110228
|
-
}
|
|
110229
|
-
],
|
|
110230
|
-
"attributes": [
|
|
110231
|
-
{
|
|
110232
|
-
"name": "size",
|
|
110233
|
-
"type": {
|
|
110234
|
-
"text": "SbbNavigationActionSize"
|
|
110235
|
-
},
|
|
110236
|
-
"description": "Action size variant, either s, m or l.",
|
|
110237
|
-
"default": "'l' / 's' (lean)",
|
|
110238
|
-
"fieldName": "size"
|
|
110239
|
-
}
|
|
110240
|
-
],
|
|
110241
|
-
"parameters": [
|
|
110242
|
-
{
|
|
110243
|
-
"name": "superClass",
|
|
110244
|
-
"type": {
|
|
110245
|
-
"text": "T"
|
|
110246
|
-
}
|
|
110247
|
-
}
|
|
110248
|
-
]
|
|
110249
|
-
}
|
|
110250
|
-
],
|
|
110251
|
-
"exports": [
|
|
110252
|
-
{
|
|
110253
|
-
"kind": "js",
|
|
110254
|
-
"name": "SbbNavigationActionCommonElementMixinType",
|
|
110255
|
-
"declaration": {
|
|
110256
|
-
"name": "SbbNavigationActionCommonElementMixinType",
|
|
110257
|
-
"module": "navigation/common/navigation-action-common.js"
|
|
110258
|
-
}
|
|
110259
|
-
},
|
|
110260
|
-
{
|
|
110261
|
-
"kind": "js",
|
|
110262
|
-
"name": "SbbNavigationActionCommonElementMixin",
|
|
110263
|
-
"declaration": {
|
|
110264
|
-
"name": "SbbNavigationActionCommonElementMixin",
|
|
110265
|
-
"module": "navigation/common/navigation-action-common.js"
|
|
110266
|
-
}
|
|
110267
|
-
}
|
|
110268
|
-
]
|
|
110269
|
-
},
|
|
110270
110100
|
{
|
|
110271
110101
|
"kind": "javascript-module",
|
|
110272
110102
|
"path": "mini-calendar/mini-calendar-month/mini-calendar-month.component.js",
|
|
@@ -110485,6 +110315,176 @@
|
|
|
110485
110315
|
}
|
|
110486
110316
|
]
|
|
110487
110317
|
},
|
|
110318
|
+
{
|
|
110319
|
+
"kind": "javascript-module",
|
|
110320
|
+
"path": "navigation/common/navigation-action-common.js",
|
|
110321
|
+
"declarations": [
|
|
110322
|
+
{
|
|
110323
|
+
"kind": "class",
|
|
110324
|
+
"description": "",
|
|
110325
|
+
"name": "SbbNavigationActionCommonElementMixinType",
|
|
110326
|
+
"members": [
|
|
110327
|
+
{
|
|
110328
|
+
"kind": "field",
|
|
110329
|
+
"name": "size",
|
|
110330
|
+
"type": {
|
|
110331
|
+
"text": "SbbNavigationActionSize"
|
|
110332
|
+
},
|
|
110333
|
+
"privacy": "public"
|
|
110334
|
+
},
|
|
110335
|
+
{
|
|
110336
|
+
"kind": "field",
|
|
110337
|
+
"name": "marker",
|
|
110338
|
+
"type": {
|
|
110339
|
+
"text": "SbbNavigationMarkerElement | null"
|
|
110340
|
+
},
|
|
110341
|
+
"privacy": "public",
|
|
110342
|
+
"readonly": true
|
|
110343
|
+
},
|
|
110344
|
+
{
|
|
110345
|
+
"kind": "field",
|
|
110346
|
+
"name": "section",
|
|
110347
|
+
"type": {
|
|
110348
|
+
"text": "SbbNavigationSectionElement | null"
|
|
110349
|
+
},
|
|
110350
|
+
"privacy": "public",
|
|
110351
|
+
"readonly": true
|
|
110352
|
+
},
|
|
110353
|
+
{
|
|
110354
|
+
"kind": "field",
|
|
110355
|
+
"name": "connectedSection",
|
|
110356
|
+
"type": {
|
|
110357
|
+
"text": "SbbNavigationSectionElement | undefined"
|
|
110358
|
+
},
|
|
110359
|
+
"privacy": "public"
|
|
110360
|
+
}
|
|
110361
|
+
]
|
|
110362
|
+
},
|
|
110363
|
+
{
|
|
110364
|
+
"kind": "mixin",
|
|
110365
|
+
"description": "",
|
|
110366
|
+
"name": "SbbNavigationActionCommonElementMixin",
|
|
110367
|
+
"members": [
|
|
110368
|
+
{
|
|
110369
|
+
"kind": "field",
|
|
110370
|
+
"name": "styles",
|
|
110371
|
+
"type": {
|
|
110372
|
+
"text": "CSSResultGroup"
|
|
110373
|
+
},
|
|
110374
|
+
"privacy": "public",
|
|
110375
|
+
"static": true,
|
|
110376
|
+
"default": "[boxSizingStyles, unsafeCSS(style)]"
|
|
110377
|
+
},
|
|
110378
|
+
{
|
|
110379
|
+
"kind": "field",
|
|
110380
|
+
"name": "size",
|
|
110381
|
+
"type": {
|
|
110382
|
+
"text": "SbbNavigationActionSize"
|
|
110383
|
+
},
|
|
110384
|
+
"privacy": "public",
|
|
110385
|
+
"description": "Action size variant, either s, m or l.",
|
|
110386
|
+
"default": "'l' / 's' (lean)",
|
|
110387
|
+
"attribute": "size",
|
|
110388
|
+
"reflects": true
|
|
110389
|
+
},
|
|
110390
|
+
{
|
|
110391
|
+
"kind": "field",
|
|
110392
|
+
"name": "connectedSection",
|
|
110393
|
+
"type": {
|
|
110394
|
+
"text": "SbbNavigationSectionElement | undefined"
|
|
110395
|
+
},
|
|
110396
|
+
"privacy": "public",
|
|
110397
|
+
"description": "The section that is being controlled by the action, if any."
|
|
110398
|
+
},
|
|
110399
|
+
{
|
|
110400
|
+
"kind": "field",
|
|
110401
|
+
"name": "marker",
|
|
110402
|
+
"type": {
|
|
110403
|
+
"text": "SbbNavigationMarkerElement | null"
|
|
110404
|
+
},
|
|
110405
|
+
"privacy": "public",
|
|
110406
|
+
"description": "The navigation marker in which the action is nested.",
|
|
110407
|
+
"readonly": true
|
|
110408
|
+
},
|
|
110409
|
+
{
|
|
110410
|
+
"kind": "field",
|
|
110411
|
+
"name": "section",
|
|
110412
|
+
"type": {
|
|
110413
|
+
"text": "SbbNavigationSectionElement | null"
|
|
110414
|
+
},
|
|
110415
|
+
"privacy": "public",
|
|
110416
|
+
"description": "The section in which the action is nested.",
|
|
110417
|
+
"readonly": true
|
|
110418
|
+
},
|
|
110419
|
+
{
|
|
110420
|
+
"kind": "field",
|
|
110421
|
+
"name": "_navigationMarker",
|
|
110422
|
+
"type": {
|
|
110423
|
+
"text": "SbbNavigationMarkerElement | null"
|
|
110424
|
+
},
|
|
110425
|
+
"privacy": "private",
|
|
110426
|
+
"default": "null"
|
|
110427
|
+
},
|
|
110428
|
+
{
|
|
110429
|
+
"kind": "field",
|
|
110430
|
+
"name": "_navigationSection",
|
|
110431
|
+
"type": {
|
|
110432
|
+
"text": "SbbNavigationSectionElement | null"
|
|
110433
|
+
},
|
|
110434
|
+
"privacy": "private",
|
|
110435
|
+
"default": "null"
|
|
110436
|
+
},
|
|
110437
|
+
{
|
|
110438
|
+
"kind": "method",
|
|
110439
|
+
"name": "renderTemplate",
|
|
110440
|
+
"privacy": "protected",
|
|
110441
|
+
"return": {
|
|
110442
|
+
"type": {
|
|
110443
|
+
"text": "TemplateResult"
|
|
110444
|
+
}
|
|
110445
|
+
}
|
|
110446
|
+
}
|
|
110447
|
+
],
|
|
110448
|
+
"attributes": [
|
|
110449
|
+
{
|
|
110450
|
+
"name": "size",
|
|
110451
|
+
"type": {
|
|
110452
|
+
"text": "SbbNavigationActionSize"
|
|
110453
|
+
},
|
|
110454
|
+
"description": "Action size variant, either s, m or l.",
|
|
110455
|
+
"default": "'l' / 's' (lean)",
|
|
110456
|
+
"fieldName": "size"
|
|
110457
|
+
}
|
|
110458
|
+
],
|
|
110459
|
+
"parameters": [
|
|
110460
|
+
{
|
|
110461
|
+
"name": "superClass",
|
|
110462
|
+
"type": {
|
|
110463
|
+
"text": "T"
|
|
110464
|
+
}
|
|
110465
|
+
}
|
|
110466
|
+
]
|
|
110467
|
+
}
|
|
110468
|
+
],
|
|
110469
|
+
"exports": [
|
|
110470
|
+
{
|
|
110471
|
+
"kind": "js",
|
|
110472
|
+
"name": "SbbNavigationActionCommonElementMixinType",
|
|
110473
|
+
"declaration": {
|
|
110474
|
+
"name": "SbbNavigationActionCommonElementMixinType",
|
|
110475
|
+
"module": "navigation/common/navigation-action-common.js"
|
|
110476
|
+
}
|
|
110477
|
+
},
|
|
110478
|
+
{
|
|
110479
|
+
"kind": "js",
|
|
110480
|
+
"name": "SbbNavigationActionCommonElementMixin",
|
|
110481
|
+
"declaration": {
|
|
110482
|
+
"name": "SbbNavigationActionCommonElementMixin",
|
|
110483
|
+
"module": "navigation/common/navigation-action-common.js"
|
|
110484
|
+
}
|
|
110485
|
+
}
|
|
110486
|
+
]
|
|
110487
|
+
},
|
|
110488
110488
|
{
|
|
110489
110489
|
"kind": "javascript-module",
|
|
110490
110490
|
"path": "navigation/navigation/navigation.component.js",
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sbb-esta/lyne-elements-dev",
|
|
3
|
-
"version": "4.13.1-dev.
|
|
3
|
+
"version": "4.13.1-dev.1781532977",
|
|
4
4
|
"description": "Lyne Design System",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"design system",
|
|
7
7
|
"web components",
|
|
8
8
|
"lit",
|
|
9
|
-
"https://github.com/sbb-design-systems/lyne-components/commit/
|
|
9
|
+
"https://github.com/sbb-design-systems/lyne-components/commit/81ca88c8dbe6fd41c84923531f9f1c6db563e17b"
|
|
10
10
|
],
|
|
11
11
|
"type": "module",
|
|
12
12
|
"exports": {
|