@sbb-esta/lyne-elements-dev 4.7.0-dev.1773120296 → 4.7.0-dev.1773128235

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 +176 -176
  2. package/package.json +2 -2
@@ -104756,6 +104756,182 @@
104756
104756
  }
104757
104757
  ]
104758
104758
  },
104759
+ {
104760
+ "kind": "javascript-module",
104761
+ "path": "table/table-wrapper/table-wrapper.component.js",
104762
+ "declarations": [
104763
+ {
104764
+ "kind": "class",
104765
+ "description": "Wraps a table to enhance its functionality.",
104766
+ "name": "SbbTableWrapperElement",
104767
+ "slots": [
104768
+ {
104769
+ "description": "Use the unnamed slot to add the table.",
104770
+ "name": ""
104771
+ }
104772
+ ],
104773
+ "members": [
104774
+ {
104775
+ "kind": "field",
104776
+ "name": "role",
104777
+ "type": {
104778
+ "text": "string"
104779
+ },
104780
+ "privacy": "public",
104781
+ "static": true,
104782
+ "readonly": true,
104783
+ "default": "'section'"
104784
+ },
104785
+ {
104786
+ "kind": "field",
104787
+ "name": "focusable",
104788
+ "type": {
104789
+ "text": "boolean"
104790
+ },
104791
+ "privacy": "public",
104792
+ "default": "false",
104793
+ "description": "Whether the table wrapper is focusable.",
104794
+ "attribute": "focusable",
104795
+ "reflects": true
104796
+ },
104797
+ {
104798
+ "kind": "method",
104799
+ "name": "_updateScrollbarClass",
104800
+ "privacy": "private",
104801
+ "return": {
104802
+ "type": {
104803
+ "text": "void"
104804
+ }
104805
+ }
104806
+ },
104807
+ {
104808
+ "kind": "method",
104809
+ "name": "_checkHorizontalScrollbarOffset",
104810
+ "privacy": "private",
104811
+ "return": {
104812
+ "type": {
104813
+ "text": "void"
104814
+ }
104815
+ },
104816
+ "description": "Calculates whether the table is horizontally scrolled and adds the\ncorresponding class `sbb-table-wrapper-offset-${none | left | right | both}`"
104817
+ },
104818
+ {
104819
+ "kind": "method",
104820
+ "name": "_calculateScrollOffset",
104821
+ "privacy": "private",
104822
+ "return": {
104823
+ "type": {
104824
+ "text": "'none' | 'left' | 'right' | 'both'"
104825
+ }
104826
+ }
104827
+ },
104828
+ {
104829
+ "kind": "field",
104830
+ "name": "negative",
104831
+ "type": {
104832
+ "text": "boolean"
104833
+ },
104834
+ "privacy": "public",
104835
+ "default": "false",
104836
+ "description": "Negative coloring variant flag.",
104837
+ "attribute": "negative",
104838
+ "reflects": true,
104839
+ "inheritedFrom": {
104840
+ "name": "SbbNegativeMixin",
104841
+ "module": "core/mixins/negative-mixin.js"
104842
+ }
104843
+ },
104844
+ {
104845
+ "kind": "method",
104846
+ "name": "toggleState",
104847
+ "privacy": "protected",
104848
+ "return": {
104849
+ "type": {
104850
+ "text": "void"
104851
+ }
104852
+ },
104853
+ "parameters": [
104854
+ {
104855
+ "name": "value",
104856
+ "type": {
104857
+ "text": "string"
104858
+ }
104859
+ },
104860
+ {
104861
+ "name": "force",
104862
+ "optional": true,
104863
+ "type": {
104864
+ "text": "boolean"
104865
+ }
104866
+ }
104867
+ ],
104868
+ "inheritedFrom": {
104869
+ "name": "SbbElementInternalsMixin",
104870
+ "module": "core/mixins/element-internals-mixin.js"
104871
+ }
104872
+ }
104873
+ ],
104874
+ "attributes": [
104875
+ {
104876
+ "name": "focusable",
104877
+ "type": {
104878
+ "text": "boolean"
104879
+ },
104880
+ "default": "false",
104881
+ "description": "Whether the table wrapper is focusable.",
104882
+ "fieldName": "focusable"
104883
+ },
104884
+ {
104885
+ "name": "negative",
104886
+ "type": {
104887
+ "text": "boolean"
104888
+ },
104889
+ "default": "false",
104890
+ "description": "Negative coloring variant flag.",
104891
+ "fieldName": "negative",
104892
+ "inheritedFrom": {
104893
+ "name": "SbbNegativeMixin",
104894
+ "module": "core/mixins/negative-mixin.js"
104895
+ }
104896
+ }
104897
+ ],
104898
+ "mixins": [
104899
+ {
104900
+ "name": "SbbNegativeMixin",
104901
+ "module": "core/mixins.js"
104902
+ },
104903
+ {
104904
+ "name": "SbbElementInternalsMixin",
104905
+ "module": "core/mixins.js"
104906
+ }
104907
+ ],
104908
+ "superclass": {
104909
+ "name": "LitElement",
104910
+ "package": "lit"
104911
+ },
104912
+ "tagName": "sbb-table-wrapper",
104913
+ "customElement": true
104914
+ }
104915
+ ],
104916
+ "exports": [
104917
+ {
104918
+ "kind": "js",
104919
+ "name": "SbbTableWrapperElement",
104920
+ "declaration": {
104921
+ "name": "SbbTableWrapperElement",
104922
+ "module": "table/table-wrapper/table-wrapper.component.js"
104923
+ }
104924
+ },
104925
+ {
104926
+ "kind": "custom-element-definition",
104927
+ "name": "sbb-table-wrapper",
104928
+ "declaration": {
104929
+ "name": "SbbTableWrapperElement",
104930
+ "module": "table/table-wrapper/table-wrapper.component.js"
104931
+ }
104932
+ }
104933
+ ]
104934
+ },
104759
104935
  {
104760
104936
  "kind": "javascript-module",
104761
104937
  "path": "stepper/stepper/stepper.component.js",
@@ -105364,182 +105540,6 @@
105364
105540
  }
105365
105541
  ]
105366
105542
  },
105367
- {
105368
- "kind": "javascript-module",
105369
- "path": "table/table-wrapper/table-wrapper.component.js",
105370
- "declarations": [
105371
- {
105372
- "kind": "class",
105373
- "description": "Wraps a table to enhance its functionality.",
105374
- "name": "SbbTableWrapperElement",
105375
- "slots": [
105376
- {
105377
- "description": "Use the unnamed slot to add the table.",
105378
- "name": ""
105379
- }
105380
- ],
105381
- "members": [
105382
- {
105383
- "kind": "field",
105384
- "name": "role",
105385
- "type": {
105386
- "text": "string"
105387
- },
105388
- "privacy": "public",
105389
- "static": true,
105390
- "readonly": true,
105391
- "default": "'section'"
105392
- },
105393
- {
105394
- "kind": "field",
105395
- "name": "focusable",
105396
- "type": {
105397
- "text": "boolean"
105398
- },
105399
- "privacy": "public",
105400
- "default": "false",
105401
- "description": "Whether the table wrapper is focusable.",
105402
- "attribute": "focusable",
105403
- "reflects": true
105404
- },
105405
- {
105406
- "kind": "method",
105407
- "name": "_updateScrollbarClass",
105408
- "privacy": "private",
105409
- "return": {
105410
- "type": {
105411
- "text": "void"
105412
- }
105413
- }
105414
- },
105415
- {
105416
- "kind": "method",
105417
- "name": "_checkHorizontalScrollbarOffset",
105418
- "privacy": "private",
105419
- "return": {
105420
- "type": {
105421
- "text": "void"
105422
- }
105423
- },
105424
- "description": "Calculates whether the table is horizontally scrolled and adds the\ncorresponding class `sbb-table-wrapper-offset-${none | left | right | both}`"
105425
- },
105426
- {
105427
- "kind": "method",
105428
- "name": "_calculateScrollOffset",
105429
- "privacy": "private",
105430
- "return": {
105431
- "type": {
105432
- "text": "'none' | 'left' | 'right' | 'both'"
105433
- }
105434
- }
105435
- },
105436
- {
105437
- "kind": "field",
105438
- "name": "negative",
105439
- "type": {
105440
- "text": "boolean"
105441
- },
105442
- "privacy": "public",
105443
- "default": "false",
105444
- "description": "Negative coloring variant flag.",
105445
- "attribute": "negative",
105446
- "reflects": true,
105447
- "inheritedFrom": {
105448
- "name": "SbbNegativeMixin",
105449
- "module": "core/mixins/negative-mixin.js"
105450
- }
105451
- },
105452
- {
105453
- "kind": "method",
105454
- "name": "toggleState",
105455
- "privacy": "protected",
105456
- "return": {
105457
- "type": {
105458
- "text": "void"
105459
- }
105460
- },
105461
- "parameters": [
105462
- {
105463
- "name": "value",
105464
- "type": {
105465
- "text": "string"
105466
- }
105467
- },
105468
- {
105469
- "name": "force",
105470
- "optional": true,
105471
- "type": {
105472
- "text": "boolean"
105473
- }
105474
- }
105475
- ],
105476
- "inheritedFrom": {
105477
- "name": "SbbElementInternalsMixin",
105478
- "module": "core/mixins/element-internals-mixin.js"
105479
- }
105480
- }
105481
- ],
105482
- "attributes": [
105483
- {
105484
- "name": "focusable",
105485
- "type": {
105486
- "text": "boolean"
105487
- },
105488
- "default": "false",
105489
- "description": "Whether the table wrapper is focusable.",
105490
- "fieldName": "focusable"
105491
- },
105492
- {
105493
- "name": "negative",
105494
- "type": {
105495
- "text": "boolean"
105496
- },
105497
- "default": "false",
105498
- "description": "Negative coloring variant flag.",
105499
- "fieldName": "negative",
105500
- "inheritedFrom": {
105501
- "name": "SbbNegativeMixin",
105502
- "module": "core/mixins/negative-mixin.js"
105503
- }
105504
- }
105505
- ],
105506
- "mixins": [
105507
- {
105508
- "name": "SbbNegativeMixin",
105509
- "module": "core/mixins.js"
105510
- },
105511
- {
105512
- "name": "SbbElementInternalsMixin",
105513
- "module": "core/mixins.js"
105514
- }
105515
- ],
105516
- "superclass": {
105517
- "name": "LitElement",
105518
- "package": "lit"
105519
- },
105520
- "tagName": "sbb-table-wrapper",
105521
- "customElement": true
105522
- }
105523
- ],
105524
- "exports": [
105525
- {
105526
- "kind": "js",
105527
- "name": "SbbTableWrapperElement",
105528
- "declaration": {
105529
- "name": "SbbTableWrapperElement",
105530
- "module": "table/table-wrapper/table-wrapper.component.js"
105531
- }
105532
- },
105533
- {
105534
- "kind": "custom-element-definition",
105535
- "name": "sbb-table-wrapper",
105536
- "declaration": {
105537
- "name": "SbbTableWrapperElement",
105538
- "module": "table/table-wrapper/table-wrapper.component.js"
105539
- }
105540
- }
105541
- ]
105542
- },
105543
105543
  {
105544
105544
  "kind": "javascript-module",
105545
105545
  "path": "tabs/tab/tab.component.js",
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@sbb-esta/lyne-elements-dev",
3
- "version": "4.7.0-dev.1773120296",
3
+ "version": "4.7.0-dev.1773128235",
4
4
  "description": "Lyne Design System",
5
5
  "keywords": [
6
6
  "design system",
7
7
  "web components",
8
8
  "lit",
9
9
  "storybook",
10
- "https://github.com/sbb-design-systems/lyne-components/commit/07d9e73652b7c2db2170a86de1283f25b483a615"
10
+ "https://github.com/sbb-design-systems/lyne-components/commit/5a2ee6f19f7a50846fc2d671c0e80f9d4d9406b4"
11
11
  ],
12
12
  "type": "module",
13
13
  "exports": {