@sbb-esta/lyne-elements-dev 4.13.0-dev.1779441043 → 4.13.0-dev.1779514027

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.
Files changed (2) hide show
  1. package/custom-elements.json +255 -255
  2. package/package.json +2 -2
@@ -124081,6 +124081,261 @@
124081
124081
  }
124082
124082
  ]
124083
124083
  },
124084
+ {
124085
+ "kind": "javascript-module",
124086
+ "path": "table/table-wrapper/table-wrapper.component.js",
124087
+ "declarations": [
124088
+ {
124089
+ "kind": "class",
124090
+ "description": "Wraps a table to enhance its functionality.",
124091
+ "name": "SbbTableWrapperElement",
124092
+ "slots": [
124093
+ {
124094
+ "description": "Use the unnamed slot to add the table.",
124095
+ "name": ""
124096
+ }
124097
+ ],
124098
+ "members": [
124099
+ {
124100
+ "kind": "field",
124101
+ "name": "elementName",
124102
+ "type": {
124103
+ "text": "string"
124104
+ },
124105
+ "privacy": "public",
124106
+ "static": true,
124107
+ "readonly": true,
124108
+ "default": "'sbb-table-wrapper'",
124109
+ "inheritedFrom": {
124110
+ "name": "SbbElement",
124111
+ "module": "core/base-elements/element.js"
124112
+ }
124113
+ },
124114
+ {
124115
+ "kind": "field",
124116
+ "name": "role",
124117
+ "type": {
124118
+ "text": "string"
124119
+ },
124120
+ "privacy": "public",
124121
+ "static": true,
124122
+ "readonly": true,
124123
+ "default": "'section'"
124124
+ },
124125
+ {
124126
+ "kind": "field",
124127
+ "name": "focusable",
124128
+ "type": {
124129
+ "text": "boolean"
124130
+ },
124131
+ "privacy": "public",
124132
+ "default": "false",
124133
+ "description": "Whether the table wrapper is focusable.",
124134
+ "attribute": "focusable",
124135
+ "reflects": true
124136
+ },
124137
+ {
124138
+ "kind": "method",
124139
+ "name": "_updateScrollbarClass",
124140
+ "privacy": "private",
124141
+ "return": {
124142
+ "type": {
124143
+ "text": "void"
124144
+ }
124145
+ }
124146
+ },
124147
+ {
124148
+ "kind": "method",
124149
+ "name": "_checkHorizontalScrollbarOffset",
124150
+ "privacy": "private",
124151
+ "return": {
124152
+ "type": {
124153
+ "text": "void"
124154
+ }
124155
+ },
124156
+ "description": "Calculates whether the table is horizontally scrolled and adds the\ncorresponding class `sbb-table-wrapper-offset-${none | left | right | both}`"
124157
+ },
124158
+ {
124159
+ "kind": "method",
124160
+ "name": "_calculateScrollOffset",
124161
+ "privacy": "private",
124162
+ "return": {
124163
+ "type": {
124164
+ "text": "'none' | 'left' | 'right' | 'both'"
124165
+ }
124166
+ }
124167
+ },
124168
+ {
124169
+ "kind": "field",
124170
+ "name": "negative",
124171
+ "type": {
124172
+ "text": "boolean"
124173
+ },
124174
+ "privacy": "public",
124175
+ "default": "false",
124176
+ "description": "Negative coloring variant flag.",
124177
+ "attribute": "negative",
124178
+ "reflects": true,
124179
+ "inheritedFrom": {
124180
+ "name": "SbbNegativeMixin",
124181
+ "module": "core/mixins/negative-mixin.js"
124182
+ }
124183
+ },
124184
+ {
124185
+ "kind": "field",
124186
+ "name": "_hydrationRequired",
124187
+ "type": {
124188
+ "text": "boolean"
124189
+ },
124190
+ "privacy": "private",
124191
+ "default": "!!this.shadowRoot",
124192
+ "inheritedFrom": {
124193
+ "name": "SbbElement",
124194
+ "module": "core/base-elements/element.js"
124195
+ }
124196
+ },
124197
+ {
124198
+ "kind": "field",
124199
+ "name": "_hydrationComplete",
124200
+ "privacy": "private",
124201
+ "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
124202
+ "inheritedFrom": {
124203
+ "name": "SbbElement",
124204
+ "module": "core/base-elements/element.js"
124205
+ }
124206
+ },
124207
+ {
124208
+ "kind": "field",
124209
+ "name": "_resolveHydration",
124210
+ "type": {
124211
+ "text": "(hydrationRequired: boolean) => void"
124212
+ },
124213
+ "privacy": "private",
124214
+ "inheritedFrom": {
124215
+ "name": "SbbElement",
124216
+ "module": "core/base-elements/element.js"
124217
+ }
124218
+ },
124219
+ {
124220
+ "kind": "field",
124221
+ "name": "hydrationRequired",
124222
+ "type": {
124223
+ "text": "boolean"
124224
+ },
124225
+ "privacy": "protected",
124226
+ "description": "Returns whether hydration is required and not completed.",
124227
+ "readonly": true,
124228
+ "inheritedFrom": {
124229
+ "name": "SbbElement",
124230
+ "module": "core/base-elements/element.js"
124231
+ },
124232
+ "default": "!!this.shadowRoot"
124233
+ },
124234
+ {
124235
+ "kind": "method",
124236
+ "name": "toggleState",
124237
+ "privacy": "protected",
124238
+ "return": {
124239
+ "type": {
124240
+ "text": "void"
124241
+ }
124242
+ },
124243
+ "parameters": [
124244
+ {
124245
+ "name": "value",
124246
+ "type": {
124247
+ "text": "string"
124248
+ }
124249
+ },
124250
+ {
124251
+ "name": "force",
124252
+ "optional": true,
124253
+ "type": {
124254
+ "text": "boolean"
124255
+ }
124256
+ }
124257
+ ],
124258
+ "inheritedFrom": {
124259
+ "name": "SbbElement",
124260
+ "module": "core/base-elements/element.js"
124261
+ }
124262
+ },
124263
+ {
124264
+ "kind": "field",
124265
+ "name": "['_$sbbElement$']",
124266
+ "type": {
124267
+ "text": "boolean"
124268
+ },
124269
+ "privacy": "public",
124270
+ "static": true,
124271
+ "default": "true",
124272
+ "inheritedFrom": {
124273
+ "name": "SbbElement",
124274
+ "module": "core/base-elements/element.js"
124275
+ }
124276
+ },
124277
+ {
124278
+ "kind": "field",
124279
+ "name": "_controllers",
124280
+ "type": {
124281
+ "text": "Set<SbbReactiveController> | undefined"
124282
+ },
124283
+ "privacy": "private",
124284
+ "inheritedFrom": {
124285
+ "name": "SbbElement",
124286
+ "module": "core/base-elements/element.js"
124287
+ }
124288
+ }
124289
+ ],
124290
+ "attributes": [
124291
+ {
124292
+ "name": "focusable",
124293
+ "type": {
124294
+ "text": "boolean"
124295
+ },
124296
+ "default": "false",
124297
+ "description": "Whether the table wrapper is focusable.",
124298
+ "fieldName": "focusable"
124299
+ },
124300
+ {
124301
+ "name": "negative",
124302
+ "type": {
124303
+ "text": "boolean"
124304
+ },
124305
+ "default": "false",
124306
+ "description": "Negative coloring variant flag.",
124307
+ "fieldName": "negative",
124308
+ "inheritedFrom": {
124309
+ "name": "SbbNegativeMixin",
124310
+ "module": "core/mixins/negative-mixin.js"
124311
+ }
124312
+ }
124313
+ ],
124314
+ "mixins": [
124315
+ {
124316
+ "name": "SbbNegativeMixin",
124317
+ "module": "core/mixins.js"
124318
+ }
124319
+ ],
124320
+ "superclass": {
124321
+ "name": "SbbElement",
124322
+ "module": "core/base-elements.js"
124323
+ },
124324
+ "tagName": "sbb-table-wrapper",
124325
+ "customElement": true
124326
+ }
124327
+ ],
124328
+ "exports": [
124329
+ {
124330
+ "kind": "js",
124331
+ "name": "SbbTableWrapperElement",
124332
+ "declaration": {
124333
+ "name": "SbbTableWrapperElement",
124334
+ "module": "table/table-wrapper/table-wrapper.component.js"
124335
+ }
124336
+ }
124337
+ ]
124338
+ },
124084
124339
  {
124085
124340
  "kind": "javascript-module",
124086
124341
  "path": "stepper/stepper/stepper.component.js",
@@ -124712,261 +124967,6 @@
124712
124967
  }
124713
124968
  ]
124714
124969
  },
124715
- {
124716
- "kind": "javascript-module",
124717
- "path": "table/table-wrapper/table-wrapper.component.js",
124718
- "declarations": [
124719
- {
124720
- "kind": "class",
124721
- "description": "Wraps a table to enhance its functionality.",
124722
- "name": "SbbTableWrapperElement",
124723
- "slots": [
124724
- {
124725
- "description": "Use the unnamed slot to add the table.",
124726
- "name": ""
124727
- }
124728
- ],
124729
- "members": [
124730
- {
124731
- "kind": "field",
124732
- "name": "elementName",
124733
- "type": {
124734
- "text": "string"
124735
- },
124736
- "privacy": "public",
124737
- "static": true,
124738
- "readonly": true,
124739
- "default": "'sbb-table-wrapper'",
124740
- "inheritedFrom": {
124741
- "name": "SbbElement",
124742
- "module": "core/base-elements/element.js"
124743
- }
124744
- },
124745
- {
124746
- "kind": "field",
124747
- "name": "role",
124748
- "type": {
124749
- "text": "string"
124750
- },
124751
- "privacy": "public",
124752
- "static": true,
124753
- "readonly": true,
124754
- "default": "'section'"
124755
- },
124756
- {
124757
- "kind": "field",
124758
- "name": "focusable",
124759
- "type": {
124760
- "text": "boolean"
124761
- },
124762
- "privacy": "public",
124763
- "default": "false",
124764
- "description": "Whether the table wrapper is focusable.",
124765
- "attribute": "focusable",
124766
- "reflects": true
124767
- },
124768
- {
124769
- "kind": "method",
124770
- "name": "_updateScrollbarClass",
124771
- "privacy": "private",
124772
- "return": {
124773
- "type": {
124774
- "text": "void"
124775
- }
124776
- }
124777
- },
124778
- {
124779
- "kind": "method",
124780
- "name": "_checkHorizontalScrollbarOffset",
124781
- "privacy": "private",
124782
- "return": {
124783
- "type": {
124784
- "text": "void"
124785
- }
124786
- },
124787
- "description": "Calculates whether the table is horizontally scrolled and adds the\ncorresponding class `sbb-table-wrapper-offset-${none | left | right | both}`"
124788
- },
124789
- {
124790
- "kind": "method",
124791
- "name": "_calculateScrollOffset",
124792
- "privacy": "private",
124793
- "return": {
124794
- "type": {
124795
- "text": "'none' | 'left' | 'right' | 'both'"
124796
- }
124797
- }
124798
- },
124799
- {
124800
- "kind": "field",
124801
- "name": "negative",
124802
- "type": {
124803
- "text": "boolean"
124804
- },
124805
- "privacy": "public",
124806
- "default": "false",
124807
- "description": "Negative coloring variant flag.",
124808
- "attribute": "negative",
124809
- "reflects": true,
124810
- "inheritedFrom": {
124811
- "name": "SbbNegativeMixin",
124812
- "module": "core/mixins/negative-mixin.js"
124813
- }
124814
- },
124815
- {
124816
- "kind": "field",
124817
- "name": "_hydrationRequired",
124818
- "type": {
124819
- "text": "boolean"
124820
- },
124821
- "privacy": "private",
124822
- "default": "!!this.shadowRoot",
124823
- "inheritedFrom": {
124824
- "name": "SbbElement",
124825
- "module": "core/base-elements/element.js"
124826
- }
124827
- },
124828
- {
124829
- "kind": "field",
124830
- "name": "_hydrationComplete",
124831
- "privacy": "private",
124832
- "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
124833
- "inheritedFrom": {
124834
- "name": "SbbElement",
124835
- "module": "core/base-elements/element.js"
124836
- }
124837
- },
124838
- {
124839
- "kind": "field",
124840
- "name": "_resolveHydration",
124841
- "type": {
124842
- "text": "(hydrationRequired: boolean) => void"
124843
- },
124844
- "privacy": "private",
124845
- "inheritedFrom": {
124846
- "name": "SbbElement",
124847
- "module": "core/base-elements/element.js"
124848
- }
124849
- },
124850
- {
124851
- "kind": "field",
124852
- "name": "hydrationRequired",
124853
- "type": {
124854
- "text": "boolean"
124855
- },
124856
- "privacy": "protected",
124857
- "description": "Returns whether hydration is required and not completed.",
124858
- "readonly": true,
124859
- "inheritedFrom": {
124860
- "name": "SbbElement",
124861
- "module": "core/base-elements/element.js"
124862
- },
124863
- "default": "!!this.shadowRoot"
124864
- },
124865
- {
124866
- "kind": "method",
124867
- "name": "toggleState",
124868
- "privacy": "protected",
124869
- "return": {
124870
- "type": {
124871
- "text": "void"
124872
- }
124873
- },
124874
- "parameters": [
124875
- {
124876
- "name": "value",
124877
- "type": {
124878
- "text": "string"
124879
- }
124880
- },
124881
- {
124882
- "name": "force",
124883
- "optional": true,
124884
- "type": {
124885
- "text": "boolean"
124886
- }
124887
- }
124888
- ],
124889
- "inheritedFrom": {
124890
- "name": "SbbElement",
124891
- "module": "core/base-elements/element.js"
124892
- }
124893
- },
124894
- {
124895
- "kind": "field",
124896
- "name": "['_$sbbElement$']",
124897
- "type": {
124898
- "text": "boolean"
124899
- },
124900
- "privacy": "public",
124901
- "static": true,
124902
- "default": "true",
124903
- "inheritedFrom": {
124904
- "name": "SbbElement",
124905
- "module": "core/base-elements/element.js"
124906
- }
124907
- },
124908
- {
124909
- "kind": "field",
124910
- "name": "_controllers",
124911
- "type": {
124912
- "text": "Set<SbbReactiveController> | undefined"
124913
- },
124914
- "privacy": "private",
124915
- "inheritedFrom": {
124916
- "name": "SbbElement",
124917
- "module": "core/base-elements/element.js"
124918
- }
124919
- }
124920
- ],
124921
- "attributes": [
124922
- {
124923
- "name": "focusable",
124924
- "type": {
124925
- "text": "boolean"
124926
- },
124927
- "default": "false",
124928
- "description": "Whether the table wrapper is focusable.",
124929
- "fieldName": "focusable"
124930
- },
124931
- {
124932
- "name": "negative",
124933
- "type": {
124934
- "text": "boolean"
124935
- },
124936
- "default": "false",
124937
- "description": "Negative coloring variant flag.",
124938
- "fieldName": "negative",
124939
- "inheritedFrom": {
124940
- "name": "SbbNegativeMixin",
124941
- "module": "core/mixins/negative-mixin.js"
124942
- }
124943
- }
124944
- ],
124945
- "mixins": [
124946
- {
124947
- "name": "SbbNegativeMixin",
124948
- "module": "core/mixins.js"
124949
- }
124950
- ],
124951
- "superclass": {
124952
- "name": "SbbElement",
124953
- "module": "core/base-elements.js"
124954
- },
124955
- "tagName": "sbb-table-wrapper",
124956
- "customElement": true
124957
- }
124958
- ],
124959
- "exports": [
124960
- {
124961
- "kind": "js",
124962
- "name": "SbbTableWrapperElement",
124963
- "declaration": {
124964
- "name": "SbbTableWrapperElement",
124965
- "module": "table/table-wrapper/table-wrapper.component.js"
124966
- }
124967
- }
124968
- ]
124969
- },
124970
124970
  {
124971
124971
  "kind": "javascript-module",
124972
124972
  "path": "tabs/common/styles.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.1779441043",
3
+ "version": "4.13.0-dev.1779514027",
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/c7c565e6586b84a832d3d3bbb4a005d532e827ad"
9
+ "https://github.com/sbb-design-systems/lyne-components/commit/123e8454b3453dca4849e5c02c60c268d9d3c4f6"
10
10
  ],
11
11
  "type": "module",
12
12
  "exports": {