@sbb-esta/lyne-elements-dev 4.13.0-dev.1780474972 → 4.13.0-dev.1780484160
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 +234 -234
- package/package.json +2 -2
package/custom-elements.json
CHANGED
|
@@ -60763,6 +60763,240 @@
|
|
|
60763
60763
|
}
|
|
60764
60764
|
]
|
|
60765
60765
|
},
|
|
60766
|
+
{
|
|
60767
|
+
"kind": "javascript-module",
|
|
60768
|
+
"path": "container/container/container.component.js",
|
|
60769
|
+
"declarations": [
|
|
60770
|
+
{
|
|
60771
|
+
"kind": "class",
|
|
60772
|
+
"description": "It displays its content with the default page spacing.",
|
|
60773
|
+
"name": "SbbContainerElement",
|
|
60774
|
+
"cssProperties": [
|
|
60775
|
+
{
|
|
60776
|
+
"description": "Use this variable to override the default page spacing. Note that overriding this will disable the standard responsive spacing behavior of the container.",
|
|
60777
|
+
"name": "--sbb-page-spacing-padding"
|
|
60778
|
+
}
|
|
60779
|
+
],
|
|
60780
|
+
"slots": [
|
|
60781
|
+
{
|
|
60782
|
+
"description": "Use the unnamed slot to add anything to the container.",
|
|
60783
|
+
"name": ""
|
|
60784
|
+
},
|
|
60785
|
+
{
|
|
60786
|
+
"description": "The slot used by the sbb-sticky-bar component.",
|
|
60787
|
+
"name": "sticky-bar"
|
|
60788
|
+
},
|
|
60789
|
+
{
|
|
60790
|
+
"description": "The slot used to slot an `sbb-image` to use as background.",
|
|
60791
|
+
"name": "image"
|
|
60792
|
+
}
|
|
60793
|
+
],
|
|
60794
|
+
"members": [
|
|
60795
|
+
{
|
|
60796
|
+
"kind": "field",
|
|
60797
|
+
"name": "elementName",
|
|
60798
|
+
"type": {
|
|
60799
|
+
"text": "string"
|
|
60800
|
+
},
|
|
60801
|
+
"privacy": "public",
|
|
60802
|
+
"static": true,
|
|
60803
|
+
"readonly": true,
|
|
60804
|
+
"default": "'sbb-container'",
|
|
60805
|
+
"inheritedFrom": {
|
|
60806
|
+
"name": "SbbElement",
|
|
60807
|
+
"module": "core/base-elements/element.js"
|
|
60808
|
+
}
|
|
60809
|
+
},
|
|
60810
|
+
{
|
|
60811
|
+
"kind": "field",
|
|
60812
|
+
"name": "expanded",
|
|
60813
|
+
"type": {
|
|
60814
|
+
"text": "boolean"
|
|
60815
|
+
},
|
|
60816
|
+
"privacy": "public",
|
|
60817
|
+
"default": "false",
|
|
60818
|
+
"description": "Whether the container is expanded.",
|
|
60819
|
+
"attribute": "expanded",
|
|
60820
|
+
"reflects": true
|
|
60821
|
+
},
|
|
60822
|
+
{
|
|
60823
|
+
"kind": "field",
|
|
60824
|
+
"name": "backgroundExpanded",
|
|
60825
|
+
"type": {
|
|
60826
|
+
"text": "boolean"
|
|
60827
|
+
},
|
|
60828
|
+
"privacy": "public",
|
|
60829
|
+
"default": "false",
|
|
60830
|
+
"description": "Whether the background color is shown on full container width on large screens.",
|
|
60831
|
+
"attribute": "background-expanded",
|
|
60832
|
+
"reflects": true
|
|
60833
|
+
},
|
|
60834
|
+
{
|
|
60835
|
+
"kind": "field",
|
|
60836
|
+
"name": "color",
|
|
60837
|
+
"type": {
|
|
60838
|
+
"text": "| 'transparent'\n | 'white'\n | 'milk'\n | 'midnight'\n | 'charcoal'"
|
|
60839
|
+
},
|
|
60840
|
+
"privacy": "public",
|
|
60841
|
+
"default": "'white'",
|
|
60842
|
+
"description": "Color of the container, like transparent, white etc.",
|
|
60843
|
+
"attribute": "color",
|
|
60844
|
+
"reflects": true
|
|
60845
|
+
},
|
|
60846
|
+
{
|
|
60847
|
+
"kind": "field",
|
|
60848
|
+
"name": "_hydrationRequired",
|
|
60849
|
+
"type": {
|
|
60850
|
+
"text": "boolean"
|
|
60851
|
+
},
|
|
60852
|
+
"privacy": "private",
|
|
60853
|
+
"default": "!!this.shadowRoot",
|
|
60854
|
+
"inheritedFrom": {
|
|
60855
|
+
"name": "SbbHydrationMixin",
|
|
60856
|
+
"module": "core/mixins/hydration-mixin.js"
|
|
60857
|
+
}
|
|
60858
|
+
},
|
|
60859
|
+
{
|
|
60860
|
+
"kind": "field",
|
|
60861
|
+
"name": "_hydrationComplete",
|
|
60862
|
+
"privacy": "private",
|
|
60863
|
+
"default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
|
|
60864
|
+
"inheritedFrom": {
|
|
60865
|
+
"name": "SbbHydrationMixin",
|
|
60866
|
+
"module": "core/mixins/hydration-mixin.js"
|
|
60867
|
+
}
|
|
60868
|
+
},
|
|
60869
|
+
{
|
|
60870
|
+
"kind": "field",
|
|
60871
|
+
"name": "_resolveHydration",
|
|
60872
|
+
"type": {
|
|
60873
|
+
"text": "(hydrationRequired: boolean) => void"
|
|
60874
|
+
},
|
|
60875
|
+
"privacy": "private",
|
|
60876
|
+
"inheritedFrom": {
|
|
60877
|
+
"name": "SbbHydrationMixin",
|
|
60878
|
+
"module": "core/mixins/hydration-mixin.js"
|
|
60879
|
+
}
|
|
60880
|
+
},
|
|
60881
|
+
{
|
|
60882
|
+
"kind": "field",
|
|
60883
|
+
"name": "hydrationRequired",
|
|
60884
|
+
"type": {
|
|
60885
|
+
"text": "boolean"
|
|
60886
|
+
},
|
|
60887
|
+
"privacy": "protected",
|
|
60888
|
+
"description": "Returns whether hydration is required and not completed.",
|
|
60889
|
+
"readonly": true,
|
|
60890
|
+
"inheritedFrom": {
|
|
60891
|
+
"name": "SbbHydrationMixin",
|
|
60892
|
+
"module": "core/mixins/hydration-mixin.js"
|
|
60893
|
+
},
|
|
60894
|
+
"default": "!!this.shadowRoot"
|
|
60895
|
+
},
|
|
60896
|
+
{
|
|
60897
|
+
"kind": "method",
|
|
60898
|
+
"name": "toggleState",
|
|
60899
|
+
"privacy": "protected",
|
|
60900
|
+
"return": {
|
|
60901
|
+
"type": {
|
|
60902
|
+
"text": "void"
|
|
60903
|
+
}
|
|
60904
|
+
},
|
|
60905
|
+
"parameters": [
|
|
60906
|
+
{
|
|
60907
|
+
"name": "value",
|
|
60908
|
+
"type": {
|
|
60909
|
+
"text": "string"
|
|
60910
|
+
}
|
|
60911
|
+
},
|
|
60912
|
+
{
|
|
60913
|
+
"name": "force",
|
|
60914
|
+
"optional": true,
|
|
60915
|
+
"type": {
|
|
60916
|
+
"text": "boolean"
|
|
60917
|
+
}
|
|
60918
|
+
}
|
|
60919
|
+
],
|
|
60920
|
+
"inheritedFrom": {
|
|
60921
|
+
"name": "SbbElementInternalsMixin",
|
|
60922
|
+
"module": "core/mixins/element-internals-mixin.js"
|
|
60923
|
+
}
|
|
60924
|
+
},
|
|
60925
|
+
{
|
|
60926
|
+
"kind": "field",
|
|
60927
|
+
"name": "['_$sbbElement$']",
|
|
60928
|
+
"type": {
|
|
60929
|
+
"text": "boolean"
|
|
60930
|
+
},
|
|
60931
|
+
"privacy": "public",
|
|
60932
|
+
"static": true,
|
|
60933
|
+
"default": "true",
|
|
60934
|
+
"inheritedFrom": {
|
|
60935
|
+
"name": "SbbElement",
|
|
60936
|
+
"module": "core/base-elements/element.js"
|
|
60937
|
+
}
|
|
60938
|
+
},
|
|
60939
|
+
{
|
|
60940
|
+
"kind": "field",
|
|
60941
|
+
"name": "_controllers",
|
|
60942
|
+
"type": {
|
|
60943
|
+
"text": "Set<SbbReactiveController> | undefined"
|
|
60944
|
+
},
|
|
60945
|
+
"privacy": "private",
|
|
60946
|
+
"inheritedFrom": {
|
|
60947
|
+
"name": "SbbElement",
|
|
60948
|
+
"module": "core/base-elements/element.js"
|
|
60949
|
+
}
|
|
60950
|
+
}
|
|
60951
|
+
],
|
|
60952
|
+
"attributes": [
|
|
60953
|
+
{
|
|
60954
|
+
"name": "expanded",
|
|
60955
|
+
"type": {
|
|
60956
|
+
"text": "boolean"
|
|
60957
|
+
},
|
|
60958
|
+
"default": "false",
|
|
60959
|
+
"description": "Whether the container is expanded.",
|
|
60960
|
+
"fieldName": "expanded"
|
|
60961
|
+
},
|
|
60962
|
+
{
|
|
60963
|
+
"name": "background-expanded",
|
|
60964
|
+
"type": {
|
|
60965
|
+
"text": "boolean"
|
|
60966
|
+
},
|
|
60967
|
+
"default": "false",
|
|
60968
|
+
"description": "Whether the background color is shown on full container width on large screens.",
|
|
60969
|
+
"fieldName": "backgroundExpanded"
|
|
60970
|
+
},
|
|
60971
|
+
{
|
|
60972
|
+
"name": "color",
|
|
60973
|
+
"type": {
|
|
60974
|
+
"text": "| 'transparent'\n | 'white'\n | 'milk'\n | 'midnight'\n | 'charcoal'"
|
|
60975
|
+
},
|
|
60976
|
+
"default": "'white'",
|
|
60977
|
+
"description": "Color of the container, like transparent, white etc.",
|
|
60978
|
+
"fieldName": "color"
|
|
60979
|
+
}
|
|
60980
|
+
],
|
|
60981
|
+
"superclass": {
|
|
60982
|
+
"name": "SbbElement",
|
|
60983
|
+
"module": "core/base-elements.js"
|
|
60984
|
+
},
|
|
60985
|
+
"tagName": "sbb-container",
|
|
60986
|
+
"customElement": true
|
|
60987
|
+
}
|
|
60988
|
+
],
|
|
60989
|
+
"exports": [
|
|
60990
|
+
{
|
|
60991
|
+
"kind": "js",
|
|
60992
|
+
"name": "SbbContainerElement",
|
|
60993
|
+
"declaration": {
|
|
60994
|
+
"name": "SbbContainerElement",
|
|
60995
|
+
"module": "container/container/container.component.js"
|
|
60996
|
+
}
|
|
60997
|
+
}
|
|
60998
|
+
]
|
|
60999
|
+
},
|
|
60766
61000
|
{
|
|
60767
61001
|
"kind": "javascript-module",
|
|
60768
61002
|
"path": "container/sticky-bar/sticky-bar.component.js",
|
|
@@ -61225,240 +61459,6 @@
|
|
|
61225
61459
|
}
|
|
61226
61460
|
]
|
|
61227
61461
|
},
|
|
61228
|
-
{
|
|
61229
|
-
"kind": "javascript-module",
|
|
61230
|
-
"path": "container/container/container.component.js",
|
|
61231
|
-
"declarations": [
|
|
61232
|
-
{
|
|
61233
|
-
"kind": "class",
|
|
61234
|
-
"description": "It displays its content with the default page spacing.",
|
|
61235
|
-
"name": "SbbContainerElement",
|
|
61236
|
-
"cssProperties": [
|
|
61237
|
-
{
|
|
61238
|
-
"description": "Use this variable to override the default page spacing. Note that overriding this will disable the standard responsive spacing behavior of the container.",
|
|
61239
|
-
"name": "--sbb-page-spacing-padding"
|
|
61240
|
-
}
|
|
61241
|
-
],
|
|
61242
|
-
"slots": [
|
|
61243
|
-
{
|
|
61244
|
-
"description": "Use the unnamed slot to add anything to the container.",
|
|
61245
|
-
"name": ""
|
|
61246
|
-
},
|
|
61247
|
-
{
|
|
61248
|
-
"description": "The slot used by the sbb-sticky-bar component.",
|
|
61249
|
-
"name": "sticky-bar"
|
|
61250
|
-
},
|
|
61251
|
-
{
|
|
61252
|
-
"description": "The slot used to slot an `sbb-image` to use as background.",
|
|
61253
|
-
"name": "image"
|
|
61254
|
-
}
|
|
61255
|
-
],
|
|
61256
|
-
"members": [
|
|
61257
|
-
{
|
|
61258
|
-
"kind": "field",
|
|
61259
|
-
"name": "elementName",
|
|
61260
|
-
"type": {
|
|
61261
|
-
"text": "string"
|
|
61262
|
-
},
|
|
61263
|
-
"privacy": "public",
|
|
61264
|
-
"static": true,
|
|
61265
|
-
"readonly": true,
|
|
61266
|
-
"default": "'sbb-container'",
|
|
61267
|
-
"inheritedFrom": {
|
|
61268
|
-
"name": "SbbElement",
|
|
61269
|
-
"module": "core/base-elements/element.js"
|
|
61270
|
-
}
|
|
61271
|
-
},
|
|
61272
|
-
{
|
|
61273
|
-
"kind": "field",
|
|
61274
|
-
"name": "expanded",
|
|
61275
|
-
"type": {
|
|
61276
|
-
"text": "boolean"
|
|
61277
|
-
},
|
|
61278
|
-
"privacy": "public",
|
|
61279
|
-
"default": "false",
|
|
61280
|
-
"description": "Whether the container is expanded.",
|
|
61281
|
-
"attribute": "expanded",
|
|
61282
|
-
"reflects": true
|
|
61283
|
-
},
|
|
61284
|
-
{
|
|
61285
|
-
"kind": "field",
|
|
61286
|
-
"name": "backgroundExpanded",
|
|
61287
|
-
"type": {
|
|
61288
|
-
"text": "boolean"
|
|
61289
|
-
},
|
|
61290
|
-
"privacy": "public",
|
|
61291
|
-
"default": "false",
|
|
61292
|
-
"description": "Whether the background color is shown on full container width on large screens.",
|
|
61293
|
-
"attribute": "background-expanded",
|
|
61294
|
-
"reflects": true
|
|
61295
|
-
},
|
|
61296
|
-
{
|
|
61297
|
-
"kind": "field",
|
|
61298
|
-
"name": "color",
|
|
61299
|
-
"type": {
|
|
61300
|
-
"text": "| 'transparent'\n | 'white'\n | 'milk'\n | 'midnight'\n | 'charcoal'"
|
|
61301
|
-
},
|
|
61302
|
-
"privacy": "public",
|
|
61303
|
-
"default": "'white'",
|
|
61304
|
-
"description": "Color of the container, like transparent, white etc.",
|
|
61305
|
-
"attribute": "color",
|
|
61306
|
-
"reflects": true
|
|
61307
|
-
},
|
|
61308
|
-
{
|
|
61309
|
-
"kind": "field",
|
|
61310
|
-
"name": "_hydrationRequired",
|
|
61311
|
-
"type": {
|
|
61312
|
-
"text": "boolean"
|
|
61313
|
-
},
|
|
61314
|
-
"privacy": "private",
|
|
61315
|
-
"default": "!!this.shadowRoot",
|
|
61316
|
-
"inheritedFrom": {
|
|
61317
|
-
"name": "SbbHydrationMixin",
|
|
61318
|
-
"module": "core/mixins/hydration-mixin.js"
|
|
61319
|
-
}
|
|
61320
|
-
},
|
|
61321
|
-
{
|
|
61322
|
-
"kind": "field",
|
|
61323
|
-
"name": "_hydrationComplete",
|
|
61324
|
-
"privacy": "private",
|
|
61325
|
-
"default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
|
|
61326
|
-
"inheritedFrom": {
|
|
61327
|
-
"name": "SbbHydrationMixin",
|
|
61328
|
-
"module": "core/mixins/hydration-mixin.js"
|
|
61329
|
-
}
|
|
61330
|
-
},
|
|
61331
|
-
{
|
|
61332
|
-
"kind": "field",
|
|
61333
|
-
"name": "_resolveHydration",
|
|
61334
|
-
"type": {
|
|
61335
|
-
"text": "(hydrationRequired: boolean) => void"
|
|
61336
|
-
},
|
|
61337
|
-
"privacy": "private",
|
|
61338
|
-
"inheritedFrom": {
|
|
61339
|
-
"name": "SbbHydrationMixin",
|
|
61340
|
-
"module": "core/mixins/hydration-mixin.js"
|
|
61341
|
-
}
|
|
61342
|
-
},
|
|
61343
|
-
{
|
|
61344
|
-
"kind": "field",
|
|
61345
|
-
"name": "hydrationRequired",
|
|
61346
|
-
"type": {
|
|
61347
|
-
"text": "boolean"
|
|
61348
|
-
},
|
|
61349
|
-
"privacy": "protected",
|
|
61350
|
-
"description": "Returns whether hydration is required and not completed.",
|
|
61351
|
-
"readonly": true,
|
|
61352
|
-
"inheritedFrom": {
|
|
61353
|
-
"name": "SbbHydrationMixin",
|
|
61354
|
-
"module": "core/mixins/hydration-mixin.js"
|
|
61355
|
-
},
|
|
61356
|
-
"default": "!!this.shadowRoot"
|
|
61357
|
-
},
|
|
61358
|
-
{
|
|
61359
|
-
"kind": "method",
|
|
61360
|
-
"name": "toggleState",
|
|
61361
|
-
"privacy": "protected",
|
|
61362
|
-
"return": {
|
|
61363
|
-
"type": {
|
|
61364
|
-
"text": "void"
|
|
61365
|
-
}
|
|
61366
|
-
},
|
|
61367
|
-
"parameters": [
|
|
61368
|
-
{
|
|
61369
|
-
"name": "value",
|
|
61370
|
-
"type": {
|
|
61371
|
-
"text": "string"
|
|
61372
|
-
}
|
|
61373
|
-
},
|
|
61374
|
-
{
|
|
61375
|
-
"name": "force",
|
|
61376
|
-
"optional": true,
|
|
61377
|
-
"type": {
|
|
61378
|
-
"text": "boolean"
|
|
61379
|
-
}
|
|
61380
|
-
}
|
|
61381
|
-
],
|
|
61382
|
-
"inheritedFrom": {
|
|
61383
|
-
"name": "SbbElementInternalsMixin",
|
|
61384
|
-
"module": "core/mixins/element-internals-mixin.js"
|
|
61385
|
-
}
|
|
61386
|
-
},
|
|
61387
|
-
{
|
|
61388
|
-
"kind": "field",
|
|
61389
|
-
"name": "['_$sbbElement$']",
|
|
61390
|
-
"type": {
|
|
61391
|
-
"text": "boolean"
|
|
61392
|
-
},
|
|
61393
|
-
"privacy": "public",
|
|
61394
|
-
"static": true,
|
|
61395
|
-
"default": "true",
|
|
61396
|
-
"inheritedFrom": {
|
|
61397
|
-
"name": "SbbElement",
|
|
61398
|
-
"module": "core/base-elements/element.js"
|
|
61399
|
-
}
|
|
61400
|
-
},
|
|
61401
|
-
{
|
|
61402
|
-
"kind": "field",
|
|
61403
|
-
"name": "_controllers",
|
|
61404
|
-
"type": {
|
|
61405
|
-
"text": "Set<SbbReactiveController> | undefined"
|
|
61406
|
-
},
|
|
61407
|
-
"privacy": "private",
|
|
61408
|
-
"inheritedFrom": {
|
|
61409
|
-
"name": "SbbElement",
|
|
61410
|
-
"module": "core/base-elements/element.js"
|
|
61411
|
-
}
|
|
61412
|
-
}
|
|
61413
|
-
],
|
|
61414
|
-
"attributes": [
|
|
61415
|
-
{
|
|
61416
|
-
"name": "expanded",
|
|
61417
|
-
"type": {
|
|
61418
|
-
"text": "boolean"
|
|
61419
|
-
},
|
|
61420
|
-
"default": "false",
|
|
61421
|
-
"description": "Whether the container is expanded.",
|
|
61422
|
-
"fieldName": "expanded"
|
|
61423
|
-
},
|
|
61424
|
-
{
|
|
61425
|
-
"name": "background-expanded",
|
|
61426
|
-
"type": {
|
|
61427
|
-
"text": "boolean"
|
|
61428
|
-
},
|
|
61429
|
-
"default": "false",
|
|
61430
|
-
"description": "Whether the background color is shown on full container width on large screens.",
|
|
61431
|
-
"fieldName": "backgroundExpanded"
|
|
61432
|
-
},
|
|
61433
|
-
{
|
|
61434
|
-
"name": "color",
|
|
61435
|
-
"type": {
|
|
61436
|
-
"text": "| 'transparent'\n | 'white'\n | 'milk'\n | 'midnight'\n | 'charcoal'"
|
|
61437
|
-
},
|
|
61438
|
-
"default": "'white'",
|
|
61439
|
-
"description": "Color of the container, like transparent, white etc.",
|
|
61440
|
-
"fieldName": "color"
|
|
61441
|
-
}
|
|
61442
|
-
],
|
|
61443
|
-
"superclass": {
|
|
61444
|
-
"name": "SbbElement",
|
|
61445
|
-
"module": "core/base-elements.js"
|
|
61446
|
-
},
|
|
61447
|
-
"tagName": "sbb-container",
|
|
61448
|
-
"customElement": true
|
|
61449
|
-
}
|
|
61450
|
-
],
|
|
61451
|
-
"exports": [
|
|
61452
|
-
{
|
|
61453
|
-
"kind": "js",
|
|
61454
|
-
"name": "SbbContainerElement",
|
|
61455
|
-
"declaration": {
|
|
61456
|
-
"name": "SbbContainerElement",
|
|
61457
|
-
"module": "container/container/container.component.js"
|
|
61458
|
-
}
|
|
61459
|
-
}
|
|
61460
|
-
]
|
|
61461
|
-
},
|
|
61462
61462
|
{
|
|
61463
61463
|
"kind": "javascript-module",
|
|
61464
61464
|
"path": "core/a11y/arrow-navigation.js",
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sbb-esta/lyne-elements-dev",
|
|
3
|
-
"version": "4.13.0-dev.
|
|
3
|
+
"version": "4.13.0-dev.1780484160",
|
|
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/4bdd1918d4b96c075cd5f43a6740f6ff8f9d9902"
|
|
10
10
|
],
|
|
11
11
|
"type": "module",
|
|
12
12
|
"exports": {
|