@sbb-esta/lyne-elements-dev 4.12.1-dev.1778235388 → 4.12.1-dev.1778252059
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
|
@@ -60693,6 +60693,240 @@
|
|
|
60693
60693
|
}
|
|
60694
60694
|
]
|
|
60695
60695
|
},
|
|
60696
|
+
{
|
|
60697
|
+
"kind": "javascript-module",
|
|
60698
|
+
"path": "container/container/container.component.js",
|
|
60699
|
+
"declarations": [
|
|
60700
|
+
{
|
|
60701
|
+
"kind": "class",
|
|
60702
|
+
"description": "It displays its content with the default page spacing.",
|
|
60703
|
+
"name": "SbbContainerElement",
|
|
60704
|
+
"cssProperties": [
|
|
60705
|
+
{
|
|
60706
|
+
"description": "Use this variable to override the default page spacing. Note that overriding this will disable the standard responsive spacing behavior of the container.",
|
|
60707
|
+
"name": "--sbb-page-spacing-padding"
|
|
60708
|
+
}
|
|
60709
|
+
],
|
|
60710
|
+
"slots": [
|
|
60711
|
+
{
|
|
60712
|
+
"description": "Use the unnamed slot to add anything to the container.",
|
|
60713
|
+
"name": ""
|
|
60714
|
+
},
|
|
60715
|
+
{
|
|
60716
|
+
"description": "The slot used by the sbb-sticky-bar component.",
|
|
60717
|
+
"name": "sticky-bar"
|
|
60718
|
+
},
|
|
60719
|
+
{
|
|
60720
|
+
"description": "The slot used to slot an `sbb-image` to use as background.",
|
|
60721
|
+
"name": "image"
|
|
60722
|
+
}
|
|
60723
|
+
],
|
|
60724
|
+
"members": [
|
|
60725
|
+
{
|
|
60726
|
+
"kind": "field",
|
|
60727
|
+
"name": "elementName",
|
|
60728
|
+
"type": {
|
|
60729
|
+
"text": "string"
|
|
60730
|
+
},
|
|
60731
|
+
"privacy": "public",
|
|
60732
|
+
"static": true,
|
|
60733
|
+
"readonly": true,
|
|
60734
|
+
"default": "'sbb-container'",
|
|
60735
|
+
"inheritedFrom": {
|
|
60736
|
+
"name": "SbbElement",
|
|
60737
|
+
"module": "core/base-elements/element.js"
|
|
60738
|
+
}
|
|
60739
|
+
},
|
|
60740
|
+
{
|
|
60741
|
+
"kind": "field",
|
|
60742
|
+
"name": "expanded",
|
|
60743
|
+
"type": {
|
|
60744
|
+
"text": "boolean"
|
|
60745
|
+
},
|
|
60746
|
+
"privacy": "public",
|
|
60747
|
+
"default": "false",
|
|
60748
|
+
"description": "Whether the container is expanded.",
|
|
60749
|
+
"attribute": "expanded",
|
|
60750
|
+
"reflects": true
|
|
60751
|
+
},
|
|
60752
|
+
{
|
|
60753
|
+
"kind": "field",
|
|
60754
|
+
"name": "backgroundExpanded",
|
|
60755
|
+
"type": {
|
|
60756
|
+
"text": "boolean"
|
|
60757
|
+
},
|
|
60758
|
+
"privacy": "public",
|
|
60759
|
+
"default": "false",
|
|
60760
|
+
"description": "Whether the background color is shown on full container width on large screens.",
|
|
60761
|
+
"attribute": "background-expanded",
|
|
60762
|
+
"reflects": true
|
|
60763
|
+
},
|
|
60764
|
+
{
|
|
60765
|
+
"kind": "field",
|
|
60766
|
+
"name": "color",
|
|
60767
|
+
"type": {
|
|
60768
|
+
"text": "| 'transparent'\n | 'white'\n | 'milk'\n | 'midnight'\n | 'charcoal'"
|
|
60769
|
+
},
|
|
60770
|
+
"privacy": "public",
|
|
60771
|
+
"default": "'white'",
|
|
60772
|
+
"description": "Color of the container, like transparent, white etc.",
|
|
60773
|
+
"attribute": "color",
|
|
60774
|
+
"reflects": true
|
|
60775
|
+
},
|
|
60776
|
+
{
|
|
60777
|
+
"kind": "field",
|
|
60778
|
+
"name": "_hydrationRequired",
|
|
60779
|
+
"type": {
|
|
60780
|
+
"text": "boolean"
|
|
60781
|
+
},
|
|
60782
|
+
"privacy": "private",
|
|
60783
|
+
"default": "!!this.shadowRoot",
|
|
60784
|
+
"inheritedFrom": {
|
|
60785
|
+
"name": "SbbHydrationMixin",
|
|
60786
|
+
"module": "core/mixins/hydration-mixin.js"
|
|
60787
|
+
}
|
|
60788
|
+
},
|
|
60789
|
+
{
|
|
60790
|
+
"kind": "field",
|
|
60791
|
+
"name": "_hydrationComplete",
|
|
60792
|
+
"privacy": "private",
|
|
60793
|
+
"default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
|
|
60794
|
+
"inheritedFrom": {
|
|
60795
|
+
"name": "SbbHydrationMixin",
|
|
60796
|
+
"module": "core/mixins/hydration-mixin.js"
|
|
60797
|
+
}
|
|
60798
|
+
},
|
|
60799
|
+
{
|
|
60800
|
+
"kind": "field",
|
|
60801
|
+
"name": "_resolveHydration",
|
|
60802
|
+
"type": {
|
|
60803
|
+
"text": "(hydrationRequired: boolean) => void"
|
|
60804
|
+
},
|
|
60805
|
+
"privacy": "private",
|
|
60806
|
+
"inheritedFrom": {
|
|
60807
|
+
"name": "SbbHydrationMixin",
|
|
60808
|
+
"module": "core/mixins/hydration-mixin.js"
|
|
60809
|
+
}
|
|
60810
|
+
},
|
|
60811
|
+
{
|
|
60812
|
+
"kind": "field",
|
|
60813
|
+
"name": "hydrationRequired",
|
|
60814
|
+
"type": {
|
|
60815
|
+
"text": "boolean"
|
|
60816
|
+
},
|
|
60817
|
+
"privacy": "protected",
|
|
60818
|
+
"description": "Returns whether hydration is required and not completed.",
|
|
60819
|
+
"readonly": true,
|
|
60820
|
+
"inheritedFrom": {
|
|
60821
|
+
"name": "SbbHydrationMixin",
|
|
60822
|
+
"module": "core/mixins/hydration-mixin.js"
|
|
60823
|
+
},
|
|
60824
|
+
"default": "!!this.shadowRoot"
|
|
60825
|
+
},
|
|
60826
|
+
{
|
|
60827
|
+
"kind": "method",
|
|
60828
|
+
"name": "toggleState",
|
|
60829
|
+
"privacy": "protected",
|
|
60830
|
+
"return": {
|
|
60831
|
+
"type": {
|
|
60832
|
+
"text": "void"
|
|
60833
|
+
}
|
|
60834
|
+
},
|
|
60835
|
+
"parameters": [
|
|
60836
|
+
{
|
|
60837
|
+
"name": "value",
|
|
60838
|
+
"type": {
|
|
60839
|
+
"text": "string"
|
|
60840
|
+
}
|
|
60841
|
+
},
|
|
60842
|
+
{
|
|
60843
|
+
"name": "force",
|
|
60844
|
+
"optional": true,
|
|
60845
|
+
"type": {
|
|
60846
|
+
"text": "boolean"
|
|
60847
|
+
}
|
|
60848
|
+
}
|
|
60849
|
+
],
|
|
60850
|
+
"inheritedFrom": {
|
|
60851
|
+
"name": "SbbElementInternalsMixin",
|
|
60852
|
+
"module": "core/mixins/element-internals-mixin.js"
|
|
60853
|
+
}
|
|
60854
|
+
},
|
|
60855
|
+
{
|
|
60856
|
+
"kind": "field",
|
|
60857
|
+
"name": "['_$sbbElement$']",
|
|
60858
|
+
"type": {
|
|
60859
|
+
"text": "boolean"
|
|
60860
|
+
},
|
|
60861
|
+
"privacy": "public",
|
|
60862
|
+
"static": true,
|
|
60863
|
+
"default": "true",
|
|
60864
|
+
"inheritedFrom": {
|
|
60865
|
+
"name": "SbbElement",
|
|
60866
|
+
"module": "core/base-elements/element.js"
|
|
60867
|
+
}
|
|
60868
|
+
},
|
|
60869
|
+
{
|
|
60870
|
+
"kind": "field",
|
|
60871
|
+
"name": "_controllers",
|
|
60872
|
+
"type": {
|
|
60873
|
+
"text": "Set<SbbReactiveController> | undefined"
|
|
60874
|
+
},
|
|
60875
|
+
"privacy": "private",
|
|
60876
|
+
"inheritedFrom": {
|
|
60877
|
+
"name": "SbbElement",
|
|
60878
|
+
"module": "core/base-elements/element.js"
|
|
60879
|
+
}
|
|
60880
|
+
}
|
|
60881
|
+
],
|
|
60882
|
+
"attributes": [
|
|
60883
|
+
{
|
|
60884
|
+
"name": "expanded",
|
|
60885
|
+
"type": {
|
|
60886
|
+
"text": "boolean"
|
|
60887
|
+
},
|
|
60888
|
+
"default": "false",
|
|
60889
|
+
"description": "Whether the container is expanded.",
|
|
60890
|
+
"fieldName": "expanded"
|
|
60891
|
+
},
|
|
60892
|
+
{
|
|
60893
|
+
"name": "background-expanded",
|
|
60894
|
+
"type": {
|
|
60895
|
+
"text": "boolean"
|
|
60896
|
+
},
|
|
60897
|
+
"default": "false",
|
|
60898
|
+
"description": "Whether the background color is shown on full container width on large screens.",
|
|
60899
|
+
"fieldName": "backgroundExpanded"
|
|
60900
|
+
},
|
|
60901
|
+
{
|
|
60902
|
+
"name": "color",
|
|
60903
|
+
"type": {
|
|
60904
|
+
"text": "| 'transparent'\n | 'white'\n | 'milk'\n | 'midnight'\n | 'charcoal'"
|
|
60905
|
+
},
|
|
60906
|
+
"default": "'white'",
|
|
60907
|
+
"description": "Color of the container, like transparent, white etc.",
|
|
60908
|
+
"fieldName": "color"
|
|
60909
|
+
}
|
|
60910
|
+
],
|
|
60911
|
+
"superclass": {
|
|
60912
|
+
"name": "SbbElement",
|
|
60913
|
+
"module": "core/base-elements.js"
|
|
60914
|
+
},
|
|
60915
|
+
"tagName": "sbb-container",
|
|
60916
|
+
"customElement": true
|
|
60917
|
+
}
|
|
60918
|
+
],
|
|
60919
|
+
"exports": [
|
|
60920
|
+
{
|
|
60921
|
+
"kind": "js",
|
|
60922
|
+
"name": "SbbContainerElement",
|
|
60923
|
+
"declaration": {
|
|
60924
|
+
"name": "SbbContainerElement",
|
|
60925
|
+
"module": "container/container/container.component.js"
|
|
60926
|
+
}
|
|
60927
|
+
}
|
|
60928
|
+
]
|
|
60929
|
+
},
|
|
60696
60930
|
{
|
|
60697
60931
|
"kind": "javascript-module",
|
|
60698
60932
|
"path": "container/sticky-bar/sticky-bar.component.js",
|
|
@@ -61155,240 +61389,6 @@
|
|
|
61155
61389
|
}
|
|
61156
61390
|
]
|
|
61157
61391
|
},
|
|
61158
|
-
{
|
|
61159
|
-
"kind": "javascript-module",
|
|
61160
|
-
"path": "container/container/container.component.js",
|
|
61161
|
-
"declarations": [
|
|
61162
|
-
{
|
|
61163
|
-
"kind": "class",
|
|
61164
|
-
"description": "It displays its content with the default page spacing.",
|
|
61165
|
-
"name": "SbbContainerElement",
|
|
61166
|
-
"cssProperties": [
|
|
61167
|
-
{
|
|
61168
|
-
"description": "Use this variable to override the default page spacing. Note that overriding this will disable the standard responsive spacing behavior of the container.",
|
|
61169
|
-
"name": "--sbb-page-spacing-padding"
|
|
61170
|
-
}
|
|
61171
|
-
],
|
|
61172
|
-
"slots": [
|
|
61173
|
-
{
|
|
61174
|
-
"description": "Use the unnamed slot to add anything to the container.",
|
|
61175
|
-
"name": ""
|
|
61176
|
-
},
|
|
61177
|
-
{
|
|
61178
|
-
"description": "The slot used by the sbb-sticky-bar component.",
|
|
61179
|
-
"name": "sticky-bar"
|
|
61180
|
-
},
|
|
61181
|
-
{
|
|
61182
|
-
"description": "The slot used to slot an `sbb-image` to use as background.",
|
|
61183
|
-
"name": "image"
|
|
61184
|
-
}
|
|
61185
|
-
],
|
|
61186
|
-
"members": [
|
|
61187
|
-
{
|
|
61188
|
-
"kind": "field",
|
|
61189
|
-
"name": "elementName",
|
|
61190
|
-
"type": {
|
|
61191
|
-
"text": "string"
|
|
61192
|
-
},
|
|
61193
|
-
"privacy": "public",
|
|
61194
|
-
"static": true,
|
|
61195
|
-
"readonly": true,
|
|
61196
|
-
"default": "'sbb-container'",
|
|
61197
|
-
"inheritedFrom": {
|
|
61198
|
-
"name": "SbbElement",
|
|
61199
|
-
"module": "core/base-elements/element.js"
|
|
61200
|
-
}
|
|
61201
|
-
},
|
|
61202
|
-
{
|
|
61203
|
-
"kind": "field",
|
|
61204
|
-
"name": "expanded",
|
|
61205
|
-
"type": {
|
|
61206
|
-
"text": "boolean"
|
|
61207
|
-
},
|
|
61208
|
-
"privacy": "public",
|
|
61209
|
-
"default": "false",
|
|
61210
|
-
"description": "Whether the container is expanded.",
|
|
61211
|
-
"attribute": "expanded",
|
|
61212
|
-
"reflects": true
|
|
61213
|
-
},
|
|
61214
|
-
{
|
|
61215
|
-
"kind": "field",
|
|
61216
|
-
"name": "backgroundExpanded",
|
|
61217
|
-
"type": {
|
|
61218
|
-
"text": "boolean"
|
|
61219
|
-
},
|
|
61220
|
-
"privacy": "public",
|
|
61221
|
-
"default": "false",
|
|
61222
|
-
"description": "Whether the background color is shown on full container width on large screens.",
|
|
61223
|
-
"attribute": "background-expanded",
|
|
61224
|
-
"reflects": true
|
|
61225
|
-
},
|
|
61226
|
-
{
|
|
61227
|
-
"kind": "field",
|
|
61228
|
-
"name": "color",
|
|
61229
|
-
"type": {
|
|
61230
|
-
"text": "| 'transparent'\n | 'white'\n | 'milk'\n | 'midnight'\n | 'charcoal'"
|
|
61231
|
-
},
|
|
61232
|
-
"privacy": "public",
|
|
61233
|
-
"default": "'white'",
|
|
61234
|
-
"description": "Color of the container, like transparent, white etc.",
|
|
61235
|
-
"attribute": "color",
|
|
61236
|
-
"reflects": true
|
|
61237
|
-
},
|
|
61238
|
-
{
|
|
61239
|
-
"kind": "field",
|
|
61240
|
-
"name": "_hydrationRequired",
|
|
61241
|
-
"type": {
|
|
61242
|
-
"text": "boolean"
|
|
61243
|
-
},
|
|
61244
|
-
"privacy": "private",
|
|
61245
|
-
"default": "!!this.shadowRoot",
|
|
61246
|
-
"inheritedFrom": {
|
|
61247
|
-
"name": "SbbHydrationMixin",
|
|
61248
|
-
"module": "core/mixins/hydration-mixin.js"
|
|
61249
|
-
}
|
|
61250
|
-
},
|
|
61251
|
-
{
|
|
61252
|
-
"kind": "field",
|
|
61253
|
-
"name": "_hydrationComplete",
|
|
61254
|
-
"privacy": "private",
|
|
61255
|
-
"default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
|
|
61256
|
-
"inheritedFrom": {
|
|
61257
|
-
"name": "SbbHydrationMixin",
|
|
61258
|
-
"module": "core/mixins/hydration-mixin.js"
|
|
61259
|
-
}
|
|
61260
|
-
},
|
|
61261
|
-
{
|
|
61262
|
-
"kind": "field",
|
|
61263
|
-
"name": "_resolveHydration",
|
|
61264
|
-
"type": {
|
|
61265
|
-
"text": "(hydrationRequired: boolean) => void"
|
|
61266
|
-
},
|
|
61267
|
-
"privacy": "private",
|
|
61268
|
-
"inheritedFrom": {
|
|
61269
|
-
"name": "SbbHydrationMixin",
|
|
61270
|
-
"module": "core/mixins/hydration-mixin.js"
|
|
61271
|
-
}
|
|
61272
|
-
},
|
|
61273
|
-
{
|
|
61274
|
-
"kind": "field",
|
|
61275
|
-
"name": "hydrationRequired",
|
|
61276
|
-
"type": {
|
|
61277
|
-
"text": "boolean"
|
|
61278
|
-
},
|
|
61279
|
-
"privacy": "protected",
|
|
61280
|
-
"description": "Returns whether hydration is required and not completed.",
|
|
61281
|
-
"readonly": true,
|
|
61282
|
-
"inheritedFrom": {
|
|
61283
|
-
"name": "SbbHydrationMixin",
|
|
61284
|
-
"module": "core/mixins/hydration-mixin.js"
|
|
61285
|
-
},
|
|
61286
|
-
"default": "!!this.shadowRoot"
|
|
61287
|
-
},
|
|
61288
|
-
{
|
|
61289
|
-
"kind": "method",
|
|
61290
|
-
"name": "toggleState",
|
|
61291
|
-
"privacy": "protected",
|
|
61292
|
-
"return": {
|
|
61293
|
-
"type": {
|
|
61294
|
-
"text": "void"
|
|
61295
|
-
}
|
|
61296
|
-
},
|
|
61297
|
-
"parameters": [
|
|
61298
|
-
{
|
|
61299
|
-
"name": "value",
|
|
61300
|
-
"type": {
|
|
61301
|
-
"text": "string"
|
|
61302
|
-
}
|
|
61303
|
-
},
|
|
61304
|
-
{
|
|
61305
|
-
"name": "force",
|
|
61306
|
-
"optional": true,
|
|
61307
|
-
"type": {
|
|
61308
|
-
"text": "boolean"
|
|
61309
|
-
}
|
|
61310
|
-
}
|
|
61311
|
-
],
|
|
61312
|
-
"inheritedFrom": {
|
|
61313
|
-
"name": "SbbElementInternalsMixin",
|
|
61314
|
-
"module": "core/mixins/element-internals-mixin.js"
|
|
61315
|
-
}
|
|
61316
|
-
},
|
|
61317
|
-
{
|
|
61318
|
-
"kind": "field",
|
|
61319
|
-
"name": "['_$sbbElement$']",
|
|
61320
|
-
"type": {
|
|
61321
|
-
"text": "boolean"
|
|
61322
|
-
},
|
|
61323
|
-
"privacy": "public",
|
|
61324
|
-
"static": true,
|
|
61325
|
-
"default": "true",
|
|
61326
|
-
"inheritedFrom": {
|
|
61327
|
-
"name": "SbbElement",
|
|
61328
|
-
"module": "core/base-elements/element.js"
|
|
61329
|
-
}
|
|
61330
|
-
},
|
|
61331
|
-
{
|
|
61332
|
-
"kind": "field",
|
|
61333
|
-
"name": "_controllers",
|
|
61334
|
-
"type": {
|
|
61335
|
-
"text": "Set<SbbReactiveController> | undefined"
|
|
61336
|
-
},
|
|
61337
|
-
"privacy": "private",
|
|
61338
|
-
"inheritedFrom": {
|
|
61339
|
-
"name": "SbbElement",
|
|
61340
|
-
"module": "core/base-elements/element.js"
|
|
61341
|
-
}
|
|
61342
|
-
}
|
|
61343
|
-
],
|
|
61344
|
-
"attributes": [
|
|
61345
|
-
{
|
|
61346
|
-
"name": "expanded",
|
|
61347
|
-
"type": {
|
|
61348
|
-
"text": "boolean"
|
|
61349
|
-
},
|
|
61350
|
-
"default": "false",
|
|
61351
|
-
"description": "Whether the container is expanded.",
|
|
61352
|
-
"fieldName": "expanded"
|
|
61353
|
-
},
|
|
61354
|
-
{
|
|
61355
|
-
"name": "background-expanded",
|
|
61356
|
-
"type": {
|
|
61357
|
-
"text": "boolean"
|
|
61358
|
-
},
|
|
61359
|
-
"default": "false",
|
|
61360
|
-
"description": "Whether the background color is shown on full container width on large screens.",
|
|
61361
|
-
"fieldName": "backgroundExpanded"
|
|
61362
|
-
},
|
|
61363
|
-
{
|
|
61364
|
-
"name": "color",
|
|
61365
|
-
"type": {
|
|
61366
|
-
"text": "| 'transparent'\n | 'white'\n | 'milk'\n | 'midnight'\n | 'charcoal'"
|
|
61367
|
-
},
|
|
61368
|
-
"default": "'white'",
|
|
61369
|
-
"description": "Color of the container, like transparent, white etc.",
|
|
61370
|
-
"fieldName": "color"
|
|
61371
|
-
}
|
|
61372
|
-
],
|
|
61373
|
-
"superclass": {
|
|
61374
|
-
"name": "SbbElement",
|
|
61375
|
-
"module": "core/base-elements.js"
|
|
61376
|
-
},
|
|
61377
|
-
"tagName": "sbb-container",
|
|
61378
|
-
"customElement": true
|
|
61379
|
-
}
|
|
61380
|
-
],
|
|
61381
|
-
"exports": [
|
|
61382
|
-
{
|
|
61383
|
-
"kind": "js",
|
|
61384
|
-
"name": "SbbContainerElement",
|
|
61385
|
-
"declaration": {
|
|
61386
|
-
"name": "SbbContainerElement",
|
|
61387
|
-
"module": "container/container/container.component.js"
|
|
61388
|
-
}
|
|
61389
|
-
}
|
|
61390
|
-
]
|
|
61391
|
-
},
|
|
61392
61392
|
{
|
|
61393
61393
|
"kind": "javascript-module",
|
|
61394
61394
|
"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.12.1-dev.
|
|
3
|
+
"version": "4.12.1-dev.1778252059",
|
|
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/a7c3a812e71e9f163ed16a87116797420f54b4d4"
|
|
10
10
|
],
|
|
11
11
|
"type": "module",
|
|
12
12
|
"exports": {
|