@sbb-esta/lyne-elements-dev 4.7.0-dev.1773398427 → 4.7.0-dev.1773406096

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 +232 -232
  2. package/package.json +2 -2
@@ -30743,6 +30743,238 @@
30743
30743
  }
30744
30744
  ]
30745
30745
  },
30746
+ {
30747
+ "kind": "javascript-module",
30748
+ "path": "timetable-occupancy/timetable-occupancy.component.js",
30749
+ "declarations": [
30750
+ {
30751
+ "kind": "class",
30752
+ "description": "Used in `sbb-timetable-row`, it displays information about wagon occupancy.",
30753
+ "name": "SbbTimetableOccupancyElement",
30754
+ "members": [
30755
+ {
30756
+ "kind": "field",
30757
+ "name": "elementName",
30758
+ "type": {
30759
+ "text": "string"
30760
+ },
30761
+ "privacy": "public",
30762
+ "static": true,
30763
+ "readonly": true,
30764
+ "default": "'sbb-timetable-occupancy'",
30765
+ "inheritedFrom": {
30766
+ "name": "SbbElement",
30767
+ "module": "core/base-elements/element.js"
30768
+ }
30769
+ },
30770
+ {
30771
+ "kind": "field",
30772
+ "name": "firstClassOccupancy",
30773
+ "type": {
30774
+ "text": "SbbOccupancy | null"
30775
+ },
30776
+ "privacy": "public",
30777
+ "default": "null",
30778
+ "description": "Occupancy for first class wagons.",
30779
+ "attribute": "first-class-occupancy"
30780
+ },
30781
+ {
30782
+ "kind": "field",
30783
+ "name": "secondClassOccupancy",
30784
+ "type": {
30785
+ "text": "SbbOccupancy | null"
30786
+ },
30787
+ "privacy": "public",
30788
+ "default": "null",
30789
+ "description": "Occupancy for second class wagons.",
30790
+ "attribute": "second-class-occupancy"
30791
+ },
30792
+ {
30793
+ "kind": "field",
30794
+ "name": "_language",
30795
+ "privacy": "private",
30796
+ "default": "new SbbLanguageController(this)"
30797
+ },
30798
+ {
30799
+ "kind": "field",
30800
+ "name": "negative",
30801
+ "type": {
30802
+ "text": "boolean"
30803
+ },
30804
+ "privacy": "public",
30805
+ "default": "false",
30806
+ "description": "Negative coloring variant flag.",
30807
+ "attribute": "negative",
30808
+ "reflects": true,
30809
+ "inheritedFrom": {
30810
+ "name": "SbbNegativeMixin",
30811
+ "module": "core/mixins/negative-mixin.js"
30812
+ }
30813
+ },
30814
+ {
30815
+ "kind": "field",
30816
+ "name": "_hydrationRequired",
30817
+ "type": {
30818
+ "text": "boolean"
30819
+ },
30820
+ "privacy": "private",
30821
+ "default": "!!this.shadowRoot",
30822
+ "inheritedFrom": {
30823
+ "name": "SbbHydrationMixin",
30824
+ "module": "core/mixins/hydration-mixin.js"
30825
+ }
30826
+ },
30827
+ {
30828
+ "kind": "field",
30829
+ "name": "_hydrationComplete",
30830
+ "privacy": "private",
30831
+ "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
30832
+ "inheritedFrom": {
30833
+ "name": "SbbHydrationMixin",
30834
+ "module": "core/mixins/hydration-mixin.js"
30835
+ }
30836
+ },
30837
+ {
30838
+ "kind": "field",
30839
+ "name": "_resolveHydration",
30840
+ "type": {
30841
+ "text": "(hydrationRequired: boolean) => void"
30842
+ },
30843
+ "privacy": "private",
30844
+ "inheritedFrom": {
30845
+ "name": "SbbHydrationMixin",
30846
+ "module": "core/mixins/hydration-mixin.js"
30847
+ }
30848
+ },
30849
+ {
30850
+ "kind": "field",
30851
+ "name": "hydrationRequired",
30852
+ "type": {
30853
+ "text": "boolean"
30854
+ },
30855
+ "privacy": "protected",
30856
+ "description": "Returns whether hydration is required and not completed.",
30857
+ "readonly": true,
30858
+ "inheritedFrom": {
30859
+ "name": "SbbHydrationMixin",
30860
+ "module": "core/mixins/hydration-mixin.js"
30861
+ },
30862
+ "default": "!!this.shadowRoot"
30863
+ },
30864
+ {
30865
+ "kind": "method",
30866
+ "name": "toggleState",
30867
+ "privacy": "protected",
30868
+ "return": {
30869
+ "type": {
30870
+ "text": "void"
30871
+ }
30872
+ },
30873
+ "parameters": [
30874
+ {
30875
+ "name": "value",
30876
+ "type": {
30877
+ "text": "string"
30878
+ }
30879
+ },
30880
+ {
30881
+ "name": "force",
30882
+ "optional": true,
30883
+ "type": {
30884
+ "text": "boolean"
30885
+ }
30886
+ }
30887
+ ],
30888
+ "inheritedFrom": {
30889
+ "name": "SbbElementInternalsMixin",
30890
+ "module": "core/mixins/element-internals-mixin.js"
30891
+ }
30892
+ },
30893
+ {
30894
+ "kind": "field",
30895
+ "name": "['_$sbbElement$']",
30896
+ "type": {
30897
+ "text": "boolean"
30898
+ },
30899
+ "privacy": "public",
30900
+ "static": true,
30901
+ "default": "true",
30902
+ "inheritedFrom": {
30903
+ "name": "SbbElement",
30904
+ "module": "core/base-elements/element.js"
30905
+ }
30906
+ },
30907
+ {
30908
+ "kind": "field",
30909
+ "name": "_controllers",
30910
+ "type": {
30911
+ "text": "Set<SbbReactiveController> | undefined"
30912
+ },
30913
+ "privacy": "private",
30914
+ "inheritedFrom": {
30915
+ "name": "SbbElement",
30916
+ "module": "core/base-elements/element.js"
30917
+ }
30918
+ }
30919
+ ],
30920
+ "attributes": [
30921
+ {
30922
+ "name": "first-class-occupancy",
30923
+ "type": {
30924
+ "text": "SbbOccupancy | null"
30925
+ },
30926
+ "default": "null",
30927
+ "description": "Occupancy for first class wagons.",
30928
+ "fieldName": "firstClassOccupancy"
30929
+ },
30930
+ {
30931
+ "name": "second-class-occupancy",
30932
+ "type": {
30933
+ "text": "SbbOccupancy | null"
30934
+ },
30935
+ "default": "null",
30936
+ "description": "Occupancy for second class wagons.",
30937
+ "fieldName": "secondClassOccupancy"
30938
+ },
30939
+ {
30940
+ "name": "negative",
30941
+ "type": {
30942
+ "text": "boolean"
30943
+ },
30944
+ "default": "false",
30945
+ "description": "Negative coloring variant flag.",
30946
+ "fieldName": "negative",
30947
+ "inheritedFrom": {
30948
+ "name": "SbbNegativeMixin",
30949
+ "module": "core/mixins/negative-mixin.js"
30950
+ }
30951
+ }
30952
+ ],
30953
+ "mixins": [
30954
+ {
30955
+ "name": "SbbNegativeMixin",
30956
+ "module": "core/mixins.js"
30957
+ }
30958
+ ],
30959
+ "superclass": {
30960
+ "name": "SbbElement",
30961
+ "module": "core/base-elements.js"
30962
+ },
30963
+ "tagName": "sbb-timetable-occupancy",
30964
+ "customElement": true
30965
+ }
30966
+ ],
30967
+ "exports": [
30968
+ {
30969
+ "kind": "js",
30970
+ "name": "SbbTimetableOccupancyElement",
30971
+ "declaration": {
30972
+ "name": "SbbTimetableOccupancyElement",
30973
+ "module": "timetable-occupancy/timetable-occupancy.component.js"
30974
+ }
30975
+ }
30976
+ ]
30977
+ },
30746
30978
  {
30747
30979
  "kind": "javascript-module",
30748
30980
  "path": "timetable-occupancy-icon/timetable-occupancy-icon.component.js",
@@ -32327,238 +32559,6 @@
32327
32559
  }
32328
32560
  ]
32329
32561
  },
32330
- {
32331
- "kind": "javascript-module",
32332
- "path": "timetable-occupancy/timetable-occupancy.component.js",
32333
- "declarations": [
32334
- {
32335
- "kind": "class",
32336
- "description": "Used in `sbb-timetable-row`, it displays information about wagon occupancy.",
32337
- "name": "SbbTimetableOccupancyElement",
32338
- "members": [
32339
- {
32340
- "kind": "field",
32341
- "name": "elementName",
32342
- "type": {
32343
- "text": "string"
32344
- },
32345
- "privacy": "public",
32346
- "static": true,
32347
- "readonly": true,
32348
- "default": "'sbb-timetable-occupancy'",
32349
- "inheritedFrom": {
32350
- "name": "SbbElement",
32351
- "module": "core/base-elements/element.js"
32352
- }
32353
- },
32354
- {
32355
- "kind": "field",
32356
- "name": "firstClassOccupancy",
32357
- "type": {
32358
- "text": "SbbOccupancy | null"
32359
- },
32360
- "privacy": "public",
32361
- "default": "null",
32362
- "description": "Occupancy for first class wagons.",
32363
- "attribute": "first-class-occupancy"
32364
- },
32365
- {
32366
- "kind": "field",
32367
- "name": "secondClassOccupancy",
32368
- "type": {
32369
- "text": "SbbOccupancy | null"
32370
- },
32371
- "privacy": "public",
32372
- "default": "null",
32373
- "description": "Occupancy for second class wagons.",
32374
- "attribute": "second-class-occupancy"
32375
- },
32376
- {
32377
- "kind": "field",
32378
- "name": "_language",
32379
- "privacy": "private",
32380
- "default": "new SbbLanguageController(this)"
32381
- },
32382
- {
32383
- "kind": "field",
32384
- "name": "negative",
32385
- "type": {
32386
- "text": "boolean"
32387
- },
32388
- "privacy": "public",
32389
- "default": "false",
32390
- "description": "Negative coloring variant flag.",
32391
- "attribute": "negative",
32392
- "reflects": true,
32393
- "inheritedFrom": {
32394
- "name": "SbbNegativeMixin",
32395
- "module": "core/mixins/negative-mixin.js"
32396
- }
32397
- },
32398
- {
32399
- "kind": "field",
32400
- "name": "_hydrationRequired",
32401
- "type": {
32402
- "text": "boolean"
32403
- },
32404
- "privacy": "private",
32405
- "default": "!!this.shadowRoot",
32406
- "inheritedFrom": {
32407
- "name": "SbbHydrationMixin",
32408
- "module": "core/mixins/hydration-mixin.js"
32409
- }
32410
- },
32411
- {
32412
- "kind": "field",
32413
- "name": "_hydrationComplete",
32414
- "privacy": "private",
32415
- "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
32416
- "inheritedFrom": {
32417
- "name": "SbbHydrationMixin",
32418
- "module": "core/mixins/hydration-mixin.js"
32419
- }
32420
- },
32421
- {
32422
- "kind": "field",
32423
- "name": "_resolveHydration",
32424
- "type": {
32425
- "text": "(hydrationRequired: boolean) => void"
32426
- },
32427
- "privacy": "private",
32428
- "inheritedFrom": {
32429
- "name": "SbbHydrationMixin",
32430
- "module": "core/mixins/hydration-mixin.js"
32431
- }
32432
- },
32433
- {
32434
- "kind": "field",
32435
- "name": "hydrationRequired",
32436
- "type": {
32437
- "text": "boolean"
32438
- },
32439
- "privacy": "protected",
32440
- "description": "Returns whether hydration is required and not completed.",
32441
- "readonly": true,
32442
- "inheritedFrom": {
32443
- "name": "SbbHydrationMixin",
32444
- "module": "core/mixins/hydration-mixin.js"
32445
- },
32446
- "default": "!!this.shadowRoot"
32447
- },
32448
- {
32449
- "kind": "method",
32450
- "name": "toggleState",
32451
- "privacy": "protected",
32452
- "return": {
32453
- "type": {
32454
- "text": "void"
32455
- }
32456
- },
32457
- "parameters": [
32458
- {
32459
- "name": "value",
32460
- "type": {
32461
- "text": "string"
32462
- }
32463
- },
32464
- {
32465
- "name": "force",
32466
- "optional": true,
32467
- "type": {
32468
- "text": "boolean"
32469
- }
32470
- }
32471
- ],
32472
- "inheritedFrom": {
32473
- "name": "SbbElementInternalsMixin",
32474
- "module": "core/mixins/element-internals-mixin.js"
32475
- }
32476
- },
32477
- {
32478
- "kind": "field",
32479
- "name": "['_$sbbElement$']",
32480
- "type": {
32481
- "text": "boolean"
32482
- },
32483
- "privacy": "public",
32484
- "static": true,
32485
- "default": "true",
32486
- "inheritedFrom": {
32487
- "name": "SbbElement",
32488
- "module": "core/base-elements/element.js"
32489
- }
32490
- },
32491
- {
32492
- "kind": "field",
32493
- "name": "_controllers",
32494
- "type": {
32495
- "text": "Set<SbbReactiveController> | undefined"
32496
- },
32497
- "privacy": "private",
32498
- "inheritedFrom": {
32499
- "name": "SbbElement",
32500
- "module": "core/base-elements/element.js"
32501
- }
32502
- }
32503
- ],
32504
- "attributes": [
32505
- {
32506
- "name": "first-class-occupancy",
32507
- "type": {
32508
- "text": "SbbOccupancy | null"
32509
- },
32510
- "default": "null",
32511
- "description": "Occupancy for first class wagons.",
32512
- "fieldName": "firstClassOccupancy"
32513
- },
32514
- {
32515
- "name": "second-class-occupancy",
32516
- "type": {
32517
- "text": "SbbOccupancy | null"
32518
- },
32519
- "default": "null",
32520
- "description": "Occupancy for second class wagons.",
32521
- "fieldName": "secondClassOccupancy"
32522
- },
32523
- {
32524
- "name": "negative",
32525
- "type": {
32526
- "text": "boolean"
32527
- },
32528
- "default": "false",
32529
- "description": "Negative coloring variant flag.",
32530
- "fieldName": "negative",
32531
- "inheritedFrom": {
32532
- "name": "SbbNegativeMixin",
32533
- "module": "core/mixins/negative-mixin.js"
32534
- }
32535
- }
32536
- ],
32537
- "mixins": [
32538
- {
32539
- "name": "SbbNegativeMixin",
32540
- "module": "core/mixins.js"
32541
- }
32542
- ],
32543
- "superclass": {
32544
- "name": "SbbElement",
32545
- "module": "core/base-elements.js"
32546
- },
32547
- "tagName": "sbb-timetable-occupancy",
32548
- "customElement": true
32549
- }
32550
- ],
32551
- "exports": [
32552
- {
32553
- "kind": "js",
32554
- "name": "SbbTimetableOccupancyElement",
32555
- "declaration": {
32556
- "name": "SbbTimetableOccupancyElement",
32557
- "module": "timetable-occupancy/timetable-occupancy.component.js"
32558
- }
32559
- }
32560
- ]
32561
- },
32562
32562
  {
32563
32563
  "kind": "javascript-module",
32564
32564
  "path": "toggle/toggle-option.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.1773398427",
3
+ "version": "4.7.0-dev.1773406096",
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/7505f763b5526170d4fc2706c6fcbabf46083f61"
10
+ "https://github.com/sbb-design-systems/lyne-components/commit/ae418284739cd5c4ceeff02034985efaa3edb83d"
11
11
  ],
12
12
  "type": "module",
13
13
  "exports": {