@sbb-esta/lyne-elements-dev 4.12.1-dev.1777962521 → 4.12.1-dev.1777997554

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 +580 -580
  2. package/package.json +2 -2
@@ -97681,6 +97681,192 @@
97681
97681
  }
97682
97682
  ]
97683
97683
  },
97684
+ {
97685
+ "kind": "javascript-module",
97686
+ "path": "header/header-environment/header-environment.component.js",
97687
+ "declarations": [
97688
+ {
97689
+ "kind": "class",
97690
+ "description": "It displays a ribbon inside the header to indicate the current environment.",
97691
+ "name": "SbbHeaderEnvironmentElement",
97692
+ "cssProperties": [
97693
+ {
97694
+ "description": "Can be used change the ribbon color.",
97695
+ "name": "--sbb-header-environment-background-color",
97696
+ "default": "var(sbb-color-granite)"
97697
+ },
97698
+ {
97699
+ "description": "Can be used change the text color.",
97700
+ "name": "--sbb-header-environment-color",
97701
+ "default": "var(sbb-color-white)"
97702
+ }
97703
+ ],
97704
+ "slots": [
97705
+ {
97706
+ "description": "Use the unnamed slot to add the environment.",
97707
+ "name": ""
97708
+ }
97709
+ ],
97710
+ "members": [
97711
+ {
97712
+ "kind": "field",
97713
+ "name": "elementName",
97714
+ "type": {
97715
+ "text": "string"
97716
+ },
97717
+ "privacy": "public",
97718
+ "static": true,
97719
+ "readonly": true,
97720
+ "default": "'sbb-header-environment'",
97721
+ "inheritedFrom": {
97722
+ "name": "SbbElement",
97723
+ "module": "core/base-elements/element.js"
97724
+ }
97725
+ },
97726
+ {
97727
+ "kind": "field",
97728
+ "name": "_env",
97729
+ "type": {
97730
+ "text": "string | null"
97731
+ },
97732
+ "privacy": "private",
97733
+ "default": "null"
97734
+ },
97735
+ {
97736
+ "kind": "method",
97737
+ "name": "_slottedTextChange",
97738
+ "privacy": "private",
97739
+ "return": {
97740
+ "type": {
97741
+ "text": "void"
97742
+ }
97743
+ }
97744
+ },
97745
+ {
97746
+ "kind": "field",
97747
+ "name": "_hydrationRequired",
97748
+ "type": {
97749
+ "text": "boolean"
97750
+ },
97751
+ "privacy": "private",
97752
+ "default": "!!this.shadowRoot",
97753
+ "inheritedFrom": {
97754
+ "name": "SbbElement",
97755
+ "module": "core/base-elements/element.js"
97756
+ }
97757
+ },
97758
+ {
97759
+ "kind": "field",
97760
+ "name": "_hydrationComplete",
97761
+ "privacy": "private",
97762
+ "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
97763
+ "inheritedFrom": {
97764
+ "name": "SbbElement",
97765
+ "module": "core/base-elements/element.js"
97766
+ }
97767
+ },
97768
+ {
97769
+ "kind": "field",
97770
+ "name": "_resolveHydration",
97771
+ "type": {
97772
+ "text": "(hydrationRequired: boolean) => void"
97773
+ },
97774
+ "privacy": "private",
97775
+ "inheritedFrom": {
97776
+ "name": "SbbElement",
97777
+ "module": "core/base-elements/element.js"
97778
+ }
97779
+ },
97780
+ {
97781
+ "kind": "field",
97782
+ "name": "hydrationRequired",
97783
+ "type": {
97784
+ "text": "boolean"
97785
+ },
97786
+ "privacy": "protected",
97787
+ "description": "Returns whether hydration is required and not completed.",
97788
+ "readonly": true,
97789
+ "inheritedFrom": {
97790
+ "name": "SbbElement",
97791
+ "module": "core/base-elements/element.js"
97792
+ },
97793
+ "default": "!!this.shadowRoot"
97794
+ },
97795
+ {
97796
+ "kind": "method",
97797
+ "name": "toggleState",
97798
+ "privacy": "protected",
97799
+ "return": {
97800
+ "type": {
97801
+ "text": "void"
97802
+ }
97803
+ },
97804
+ "parameters": [
97805
+ {
97806
+ "name": "value",
97807
+ "type": {
97808
+ "text": "string"
97809
+ }
97810
+ },
97811
+ {
97812
+ "name": "force",
97813
+ "optional": true,
97814
+ "type": {
97815
+ "text": "boolean"
97816
+ }
97817
+ }
97818
+ ],
97819
+ "inheritedFrom": {
97820
+ "name": "SbbElement",
97821
+ "module": "core/base-elements/element.js"
97822
+ }
97823
+ },
97824
+ {
97825
+ "kind": "field",
97826
+ "name": "['_$sbbElement$']",
97827
+ "type": {
97828
+ "text": "boolean"
97829
+ },
97830
+ "privacy": "public",
97831
+ "static": true,
97832
+ "default": "true",
97833
+ "inheritedFrom": {
97834
+ "name": "SbbElement",
97835
+ "module": "core/base-elements/element.js"
97836
+ }
97837
+ },
97838
+ {
97839
+ "kind": "field",
97840
+ "name": "_controllers",
97841
+ "type": {
97842
+ "text": "Set<SbbReactiveController> | undefined"
97843
+ },
97844
+ "privacy": "private",
97845
+ "inheritedFrom": {
97846
+ "name": "SbbElement",
97847
+ "module": "core/base-elements/element.js"
97848
+ }
97849
+ }
97850
+ ],
97851
+ "superclass": {
97852
+ "name": "SbbElement",
97853
+ "module": "core/base-elements.js"
97854
+ },
97855
+ "tagName": "sbb-header-environment",
97856
+ "customElement": true
97857
+ }
97858
+ ],
97859
+ "exports": [
97860
+ {
97861
+ "kind": "js",
97862
+ "name": "SbbHeaderEnvironmentElement",
97863
+ "declaration": {
97864
+ "name": "SbbHeaderEnvironmentElement",
97865
+ "module": "header/header-environment/header-environment.component.js"
97866
+ }
97867
+ }
97868
+ ]
97869
+ },
97684
97870
  {
97685
97871
  "kind": "javascript-module",
97686
97872
  "path": "header/header-link/header-link.component.js",
@@ -98252,192 +98438,6 @@
98252
98438
  }
98253
98439
  ]
98254
98440
  },
98255
- {
98256
- "kind": "javascript-module",
98257
- "path": "header/header-environment/header-environment.component.js",
98258
- "declarations": [
98259
- {
98260
- "kind": "class",
98261
- "description": "It displays a ribbon inside the header to indicate the current environment.",
98262
- "name": "SbbHeaderEnvironmentElement",
98263
- "cssProperties": [
98264
- {
98265
- "description": "Can be used change the ribbon color.",
98266
- "name": "--sbb-header-environment-background-color",
98267
- "default": "var(sbb-color-granite)"
98268
- },
98269
- {
98270
- "description": "Can be used change the text color.",
98271
- "name": "--sbb-header-environment-color",
98272
- "default": "var(sbb-color-white)"
98273
- }
98274
- ],
98275
- "slots": [
98276
- {
98277
- "description": "Use the unnamed slot to add the environment.",
98278
- "name": ""
98279
- }
98280
- ],
98281
- "members": [
98282
- {
98283
- "kind": "field",
98284
- "name": "elementName",
98285
- "type": {
98286
- "text": "string"
98287
- },
98288
- "privacy": "public",
98289
- "static": true,
98290
- "readonly": true,
98291
- "default": "'sbb-header-environment'",
98292
- "inheritedFrom": {
98293
- "name": "SbbElement",
98294
- "module": "core/base-elements/element.js"
98295
- }
98296
- },
98297
- {
98298
- "kind": "field",
98299
- "name": "_env",
98300
- "type": {
98301
- "text": "string | null"
98302
- },
98303
- "privacy": "private",
98304
- "default": "null"
98305
- },
98306
- {
98307
- "kind": "method",
98308
- "name": "_slottedTextChange",
98309
- "privacy": "private",
98310
- "return": {
98311
- "type": {
98312
- "text": "void"
98313
- }
98314
- }
98315
- },
98316
- {
98317
- "kind": "field",
98318
- "name": "_hydrationRequired",
98319
- "type": {
98320
- "text": "boolean"
98321
- },
98322
- "privacy": "private",
98323
- "default": "!!this.shadowRoot",
98324
- "inheritedFrom": {
98325
- "name": "SbbElement",
98326
- "module": "core/base-elements/element.js"
98327
- }
98328
- },
98329
- {
98330
- "kind": "field",
98331
- "name": "_hydrationComplete",
98332
- "privacy": "private",
98333
- "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
98334
- "inheritedFrom": {
98335
- "name": "SbbElement",
98336
- "module": "core/base-elements/element.js"
98337
- }
98338
- },
98339
- {
98340
- "kind": "field",
98341
- "name": "_resolveHydration",
98342
- "type": {
98343
- "text": "(hydrationRequired: boolean) => void"
98344
- },
98345
- "privacy": "private",
98346
- "inheritedFrom": {
98347
- "name": "SbbElement",
98348
- "module": "core/base-elements/element.js"
98349
- }
98350
- },
98351
- {
98352
- "kind": "field",
98353
- "name": "hydrationRequired",
98354
- "type": {
98355
- "text": "boolean"
98356
- },
98357
- "privacy": "protected",
98358
- "description": "Returns whether hydration is required and not completed.",
98359
- "readonly": true,
98360
- "inheritedFrom": {
98361
- "name": "SbbElement",
98362
- "module": "core/base-elements/element.js"
98363
- },
98364
- "default": "!!this.shadowRoot"
98365
- },
98366
- {
98367
- "kind": "method",
98368
- "name": "toggleState",
98369
- "privacy": "protected",
98370
- "return": {
98371
- "type": {
98372
- "text": "void"
98373
- }
98374
- },
98375
- "parameters": [
98376
- {
98377
- "name": "value",
98378
- "type": {
98379
- "text": "string"
98380
- }
98381
- },
98382
- {
98383
- "name": "force",
98384
- "optional": true,
98385
- "type": {
98386
- "text": "boolean"
98387
- }
98388
- }
98389
- ],
98390
- "inheritedFrom": {
98391
- "name": "SbbElement",
98392
- "module": "core/base-elements/element.js"
98393
- }
98394
- },
98395
- {
98396
- "kind": "field",
98397
- "name": "['_$sbbElement$']",
98398
- "type": {
98399
- "text": "boolean"
98400
- },
98401
- "privacy": "public",
98402
- "static": true,
98403
- "default": "true",
98404
- "inheritedFrom": {
98405
- "name": "SbbElement",
98406
- "module": "core/base-elements/element.js"
98407
- }
98408
- },
98409
- {
98410
- "kind": "field",
98411
- "name": "_controllers",
98412
- "type": {
98413
- "text": "Set<SbbReactiveController> | undefined"
98414
- },
98415
- "privacy": "private",
98416
- "inheritedFrom": {
98417
- "name": "SbbElement",
98418
- "module": "core/base-elements/element.js"
98419
- }
98420
- }
98421
- ],
98422
- "superclass": {
98423
- "name": "SbbElement",
98424
- "module": "core/base-elements.js"
98425
- },
98426
- "tagName": "sbb-header-environment",
98427
- "customElement": true
98428
- }
98429
- ],
98430
- "exports": [
98431
- {
98432
- "kind": "js",
98433
- "name": "SbbHeaderEnvironmentElement",
98434
- "declaration": {
98435
- "name": "SbbHeaderEnvironmentElement",
98436
- "module": "header/header-environment/header-environment.component.js"
98437
- }
98438
- }
98439
- ]
98440
- },
98441
98441
  {
98442
98442
  "kind": "javascript-module",
98443
98443
  "path": "icon-sidebar/icon-sidebar/icon-sidebar.component.js",
@@ -128142,12 +128142,12 @@
128142
128142
  },
128143
128143
  {
128144
128144
  "kind": "javascript-module",
128145
- "path": "teaser-product/teaser-product-static/teaser-product-static.component.js",
128145
+ "path": "teaser-product/teaser-product/teaser-product.component.js",
128146
128146
  "declarations": [
128147
128147
  {
128148
128148
  "kind": "class",
128149
- "description": "Displays a text and a footnote, combined with an image, to tease a product.",
128150
- "name": "SbbTeaserProductStaticElement",
128149
+ "description": "Displays a text and a footnote, combined with an image, to tease a product",
128150
+ "name": "SbbTeaserProductElement",
128151
128151
  "cssProperties": [
128152
128152
  {
128153
128153
  "description": "At which percentage the background should start getting transparent.",
@@ -128188,7 +128188,7 @@
128188
128188
  "name": "SbbElement",
128189
128189
  "module": "core/base-elements/element.js"
128190
128190
  },
128191
- "default": "'sbb-teaser-product-static'"
128191
+ "default": "'sbb-teaser-product'"
128192
128192
  },
128193
128193
  {
128194
128194
  "kind": "field",
@@ -128237,6 +128237,155 @@
128237
128237
  "module": "core/mixins/negative-mixin.js"
128238
128238
  }
128239
128239
  },
128240
+ {
128241
+ "kind": "field",
128242
+ "name": "href",
128243
+ "type": {
128244
+ "text": "string"
128245
+ },
128246
+ "privacy": "public",
128247
+ "default": "''",
128248
+ "description": "The href value you want to link to.",
128249
+ "attribute": "href",
128250
+ "reflects": true,
128251
+ "inheritedFrom": {
128252
+ "name": "SbbLinkBaseElement",
128253
+ "module": "core/base-elements/link-base-element.js"
128254
+ }
128255
+ },
128256
+ {
128257
+ "kind": "field",
128258
+ "name": "target",
128259
+ "type": {
128260
+ "text": "LinkTargetType | string"
128261
+ },
128262
+ "privacy": "public",
128263
+ "default": "''",
128264
+ "description": "Where to display the linked URL.",
128265
+ "attribute": "target",
128266
+ "reflects": true,
128267
+ "inheritedFrom": {
128268
+ "name": "SbbLinkBaseElement",
128269
+ "module": "core/base-elements/link-base-element.js"
128270
+ }
128271
+ },
128272
+ {
128273
+ "kind": "field",
128274
+ "name": "rel",
128275
+ "type": {
128276
+ "text": "string"
128277
+ },
128278
+ "privacy": "public",
128279
+ "default": "''",
128280
+ "description": "The relationship of the linked URL as space-separated link types.",
128281
+ "attribute": "rel",
128282
+ "reflects": true,
128283
+ "inheritedFrom": {
128284
+ "name": "SbbLinkBaseElement",
128285
+ "module": "core/base-elements/link-base-element.js"
128286
+ }
128287
+ },
128288
+ {
128289
+ "kind": "field",
128290
+ "name": "download",
128291
+ "type": {
128292
+ "text": "boolean"
128293
+ },
128294
+ "privacy": "public",
128295
+ "default": "false",
128296
+ "description": "Whether the browser will show the download dialog on click.",
128297
+ "attribute": "download",
128298
+ "reflects": true,
128299
+ "inheritedFrom": {
128300
+ "name": "SbbLinkBaseElement",
128301
+ "module": "core/base-elements/link-base-element.js"
128302
+ }
128303
+ },
128304
+ {
128305
+ "kind": "field",
128306
+ "name": "accessibilityLabel",
128307
+ "type": {
128308
+ "text": "string"
128309
+ },
128310
+ "privacy": "public",
128311
+ "default": "''",
128312
+ "description": "This will be forwarded as aria-label to the inner anchor element.",
128313
+ "attribute": "accessibility-label",
128314
+ "inheritedFrom": {
128315
+ "name": "SbbLinkBaseElement",
128316
+ "module": "core/base-elements/link-base-element.js"
128317
+ }
128318
+ },
128319
+ {
128320
+ "kind": "field",
128321
+ "name": "accessibilityCurrent",
128322
+ "type": {
128323
+ "text": "string"
128324
+ },
128325
+ "privacy": "public",
128326
+ "default": "''",
128327
+ "description": "This will be forwarded as aria-current to the inner anchor element.",
128328
+ "attribute": "accessibility-current",
128329
+ "inheritedFrom": {
128330
+ "name": "SbbLinkBaseElement",
128331
+ "module": "core/base-elements/link-base-element.js"
128332
+ }
128333
+ },
128334
+ {
128335
+ "kind": "field",
128336
+ "name": "language",
128337
+ "privacy": "protected",
128338
+ "default": "new SbbLanguageController(this)",
128339
+ "inheritedFrom": {
128340
+ "name": "SbbLinkBaseElement",
128341
+ "module": "core/base-elements/link-base-element.js"
128342
+ }
128343
+ },
128344
+ {
128345
+ "kind": "field",
128346
+ "name": "anchorRole",
128347
+ "type": {
128348
+ "text": "string | null"
128349
+ },
128350
+ "privacy": "protected",
128351
+ "readonly": true,
128352
+ "default": "null",
128353
+ "inheritedFrom": {
128354
+ "name": "SbbLinkBaseElement",
128355
+ "module": "core/base-elements/link-base-element.js"
128356
+ }
128357
+ },
128358
+ {
128359
+ "kind": "field",
128360
+ "name": "_evaluateRelAttribute",
128361
+ "privacy": "private",
128362
+ "inheritedFrom": {
128363
+ "name": "SbbLinkBaseElement",
128364
+ "module": "core/base-elements/link-base-element.js"
128365
+ }
128366
+ },
128367
+ {
128368
+ "kind": "method",
128369
+ "name": "renderLink",
128370
+ "privacy": "protected",
128371
+ "return": {
128372
+ "type": {
128373
+ "text": "TemplateResult"
128374
+ }
128375
+ },
128376
+ "parameters": [
128377
+ {
128378
+ "name": "renderContent",
128379
+ "type": {
128380
+ "text": "TemplateResult"
128381
+ }
128382
+ }
128383
+ ],
128384
+ "inheritedFrom": {
128385
+ "name": "SbbLinkBaseElement",
128386
+ "module": "core/base-elements/link-base-element.js"
128387
+ }
128388
+ },
128240
128389
  {
128241
128390
  "kind": "field",
128242
128391
  "name": "maybeDisabled",
@@ -128390,10 +128539,10 @@
128390
128539
  }
128391
128540
  ],
128392
128541
  "superclass": {
128393
- "name": "SbbActionBaseElement",
128542
+ "name": "SbbLinkBaseElement",
128394
128543
  "module": "core/base-elements.js"
128395
128544
  },
128396
- "tagName": "sbb-teaser-product-static",
128545
+ "tagName": "sbb-teaser-product",
128397
128546
  "customElement": true,
128398
128547
  "attributes": [
128399
128548
  {
@@ -128421,6 +128570,84 @@
128421
128570
  "name": "SbbNegativeMixin",
128422
128571
  "module": "core/mixins/negative-mixin.js"
128423
128572
  }
128573
+ },
128574
+ {
128575
+ "name": "href",
128576
+ "type": {
128577
+ "text": "string"
128578
+ },
128579
+ "default": "''",
128580
+ "description": "The href value you want to link to.",
128581
+ "fieldName": "href",
128582
+ "inheritedFrom": {
128583
+ "name": "SbbLinkBaseElement",
128584
+ "module": "core/base-elements/link-base-element.js"
128585
+ }
128586
+ },
128587
+ {
128588
+ "name": "target",
128589
+ "type": {
128590
+ "text": "LinkTargetType | string"
128591
+ },
128592
+ "default": "''",
128593
+ "description": "Where to display the linked URL.",
128594
+ "fieldName": "target",
128595
+ "inheritedFrom": {
128596
+ "name": "SbbLinkBaseElement",
128597
+ "module": "core/base-elements/link-base-element.js"
128598
+ }
128599
+ },
128600
+ {
128601
+ "name": "rel",
128602
+ "type": {
128603
+ "text": "string"
128604
+ },
128605
+ "default": "''",
128606
+ "description": "The relationship of the linked URL as space-separated link types.",
128607
+ "fieldName": "rel",
128608
+ "inheritedFrom": {
128609
+ "name": "SbbLinkBaseElement",
128610
+ "module": "core/base-elements/link-base-element.js"
128611
+ }
128612
+ },
128613
+ {
128614
+ "name": "download",
128615
+ "type": {
128616
+ "text": "boolean"
128617
+ },
128618
+ "default": "false",
128619
+ "description": "Whether the browser will show the download dialog on click.",
128620
+ "fieldName": "download",
128621
+ "inheritedFrom": {
128622
+ "name": "SbbLinkBaseElement",
128623
+ "module": "core/base-elements/link-base-element.js"
128624
+ }
128625
+ },
128626
+ {
128627
+ "name": "accessibility-label",
128628
+ "type": {
128629
+ "text": "string"
128630
+ },
128631
+ "default": "''",
128632
+ "description": "This will be forwarded as aria-label to the inner anchor element.",
128633
+ "fieldName": "accessibilityLabel",
128634
+ "inheritedFrom": {
128635
+ "name": "SbbLinkBaseElement",
128636
+ "module": "core/base-elements/link-base-element.js"
128637
+ }
128638
+ },
128639
+ {
128640
+ "name": "accessibility-current",
128641
+ "type": {
128642
+ "text": "string"
128643
+ },
128644
+ "default": "''",
128645
+ "description": "This will be forwarded as aria-current to the inner anchor element.",
128646
+ "fieldName": "accessibilityCurrent",
128647
+ "inheritedFrom": {
128648
+ "name": "SbbLinkBaseElement",
128649
+ "module": "core/base-elements/link-base-element.js"
128650
+ }
128424
128651
  }
128425
128652
  ]
128426
128653
  }
@@ -128428,22 +128655,22 @@
128428
128655
  "exports": [
128429
128656
  {
128430
128657
  "kind": "js",
128431
- "name": "SbbTeaserProductStaticElement",
128658
+ "name": "SbbTeaserProductElement",
128432
128659
  "declaration": {
128433
- "name": "SbbTeaserProductStaticElement",
128434
- "module": "teaser-product/teaser-product-static/teaser-product-static.component.js"
128660
+ "name": "SbbTeaserProductElement",
128661
+ "module": "teaser-product/teaser-product/teaser-product.component.js"
128435
128662
  }
128436
128663
  }
128437
128664
  ]
128438
128665
  },
128439
128666
  {
128440
128667
  "kind": "javascript-module",
128441
- "path": "teaser-product/teaser-product/teaser-product.component.js",
128668
+ "path": "teaser-product/teaser-product-static/teaser-product-static.component.js",
128442
128669
  "declarations": [
128443
128670
  {
128444
128671
  "kind": "class",
128445
- "description": "Displays a text and a footnote, combined with an image, to tease a product",
128446
- "name": "SbbTeaserProductElement",
128672
+ "description": "Displays a text and a footnote, combined with an image, to tease a product.",
128673
+ "name": "SbbTeaserProductStaticElement",
128447
128674
  "cssProperties": [
128448
128675
  {
128449
128676
  "description": "At which percentage the background should start getting transparent.",
@@ -128484,7 +128711,7 @@
128484
128711
  "name": "SbbElement",
128485
128712
  "module": "core/base-elements/element.js"
128486
128713
  },
128487
- "default": "'sbb-teaser-product'"
128714
+ "default": "'sbb-teaser-product-static'"
128488
128715
  },
128489
128716
  {
128490
128717
  "kind": "field",
@@ -128533,155 +128760,6 @@
128533
128760
  "module": "core/mixins/negative-mixin.js"
128534
128761
  }
128535
128762
  },
128536
- {
128537
- "kind": "field",
128538
- "name": "href",
128539
- "type": {
128540
- "text": "string"
128541
- },
128542
- "privacy": "public",
128543
- "default": "''",
128544
- "description": "The href value you want to link to.",
128545
- "attribute": "href",
128546
- "reflects": true,
128547
- "inheritedFrom": {
128548
- "name": "SbbLinkBaseElement",
128549
- "module": "core/base-elements/link-base-element.js"
128550
- }
128551
- },
128552
- {
128553
- "kind": "field",
128554
- "name": "target",
128555
- "type": {
128556
- "text": "LinkTargetType | string"
128557
- },
128558
- "privacy": "public",
128559
- "default": "''",
128560
- "description": "Where to display the linked URL.",
128561
- "attribute": "target",
128562
- "reflects": true,
128563
- "inheritedFrom": {
128564
- "name": "SbbLinkBaseElement",
128565
- "module": "core/base-elements/link-base-element.js"
128566
- }
128567
- },
128568
- {
128569
- "kind": "field",
128570
- "name": "rel",
128571
- "type": {
128572
- "text": "string"
128573
- },
128574
- "privacy": "public",
128575
- "default": "''",
128576
- "description": "The relationship of the linked URL as space-separated link types.",
128577
- "attribute": "rel",
128578
- "reflects": true,
128579
- "inheritedFrom": {
128580
- "name": "SbbLinkBaseElement",
128581
- "module": "core/base-elements/link-base-element.js"
128582
- }
128583
- },
128584
- {
128585
- "kind": "field",
128586
- "name": "download",
128587
- "type": {
128588
- "text": "boolean"
128589
- },
128590
- "privacy": "public",
128591
- "default": "false",
128592
- "description": "Whether the browser will show the download dialog on click.",
128593
- "attribute": "download",
128594
- "reflects": true,
128595
- "inheritedFrom": {
128596
- "name": "SbbLinkBaseElement",
128597
- "module": "core/base-elements/link-base-element.js"
128598
- }
128599
- },
128600
- {
128601
- "kind": "field",
128602
- "name": "accessibilityLabel",
128603
- "type": {
128604
- "text": "string"
128605
- },
128606
- "privacy": "public",
128607
- "default": "''",
128608
- "description": "This will be forwarded as aria-label to the inner anchor element.",
128609
- "attribute": "accessibility-label",
128610
- "inheritedFrom": {
128611
- "name": "SbbLinkBaseElement",
128612
- "module": "core/base-elements/link-base-element.js"
128613
- }
128614
- },
128615
- {
128616
- "kind": "field",
128617
- "name": "accessibilityCurrent",
128618
- "type": {
128619
- "text": "string"
128620
- },
128621
- "privacy": "public",
128622
- "default": "''",
128623
- "description": "This will be forwarded as aria-current to the inner anchor element.",
128624
- "attribute": "accessibility-current",
128625
- "inheritedFrom": {
128626
- "name": "SbbLinkBaseElement",
128627
- "module": "core/base-elements/link-base-element.js"
128628
- }
128629
- },
128630
- {
128631
- "kind": "field",
128632
- "name": "language",
128633
- "privacy": "protected",
128634
- "default": "new SbbLanguageController(this)",
128635
- "inheritedFrom": {
128636
- "name": "SbbLinkBaseElement",
128637
- "module": "core/base-elements/link-base-element.js"
128638
- }
128639
- },
128640
- {
128641
- "kind": "field",
128642
- "name": "anchorRole",
128643
- "type": {
128644
- "text": "string | null"
128645
- },
128646
- "privacy": "protected",
128647
- "readonly": true,
128648
- "default": "null",
128649
- "inheritedFrom": {
128650
- "name": "SbbLinkBaseElement",
128651
- "module": "core/base-elements/link-base-element.js"
128652
- }
128653
- },
128654
- {
128655
- "kind": "field",
128656
- "name": "_evaluateRelAttribute",
128657
- "privacy": "private",
128658
- "inheritedFrom": {
128659
- "name": "SbbLinkBaseElement",
128660
- "module": "core/base-elements/link-base-element.js"
128661
- }
128662
- },
128663
- {
128664
- "kind": "method",
128665
- "name": "renderLink",
128666
- "privacy": "protected",
128667
- "return": {
128668
- "type": {
128669
- "text": "TemplateResult"
128670
- }
128671
- },
128672
- "parameters": [
128673
- {
128674
- "name": "renderContent",
128675
- "type": {
128676
- "text": "TemplateResult"
128677
- }
128678
- }
128679
- ],
128680
- "inheritedFrom": {
128681
- "name": "SbbLinkBaseElement",
128682
- "module": "core/base-elements/link-base-element.js"
128683
- }
128684
- },
128685
128763
  {
128686
128764
  "kind": "field",
128687
128765
  "name": "maybeDisabled",
@@ -128835,10 +128913,10 @@
128835
128913
  }
128836
128914
  ],
128837
128915
  "superclass": {
128838
- "name": "SbbLinkBaseElement",
128916
+ "name": "SbbActionBaseElement",
128839
128917
  "module": "core/base-elements.js"
128840
128918
  },
128841
- "tagName": "sbb-teaser-product",
128919
+ "tagName": "sbb-teaser-product-static",
128842
128920
  "customElement": true,
128843
128921
  "attributes": [
128844
128922
  {
@@ -128866,84 +128944,6 @@
128866
128944
  "name": "SbbNegativeMixin",
128867
128945
  "module": "core/mixins/negative-mixin.js"
128868
128946
  }
128869
- },
128870
- {
128871
- "name": "href",
128872
- "type": {
128873
- "text": "string"
128874
- },
128875
- "default": "''",
128876
- "description": "The href value you want to link to.",
128877
- "fieldName": "href",
128878
- "inheritedFrom": {
128879
- "name": "SbbLinkBaseElement",
128880
- "module": "core/base-elements/link-base-element.js"
128881
- }
128882
- },
128883
- {
128884
- "name": "target",
128885
- "type": {
128886
- "text": "LinkTargetType | string"
128887
- },
128888
- "default": "''",
128889
- "description": "Where to display the linked URL.",
128890
- "fieldName": "target",
128891
- "inheritedFrom": {
128892
- "name": "SbbLinkBaseElement",
128893
- "module": "core/base-elements/link-base-element.js"
128894
- }
128895
- },
128896
- {
128897
- "name": "rel",
128898
- "type": {
128899
- "text": "string"
128900
- },
128901
- "default": "''",
128902
- "description": "The relationship of the linked URL as space-separated link types.",
128903
- "fieldName": "rel",
128904
- "inheritedFrom": {
128905
- "name": "SbbLinkBaseElement",
128906
- "module": "core/base-elements/link-base-element.js"
128907
- }
128908
- },
128909
- {
128910
- "name": "download",
128911
- "type": {
128912
- "text": "boolean"
128913
- },
128914
- "default": "false",
128915
- "description": "Whether the browser will show the download dialog on click.",
128916
- "fieldName": "download",
128917
- "inheritedFrom": {
128918
- "name": "SbbLinkBaseElement",
128919
- "module": "core/base-elements/link-base-element.js"
128920
- }
128921
- },
128922
- {
128923
- "name": "accessibility-label",
128924
- "type": {
128925
- "text": "string"
128926
- },
128927
- "default": "''",
128928
- "description": "This will be forwarded as aria-label to the inner anchor element.",
128929
- "fieldName": "accessibilityLabel",
128930
- "inheritedFrom": {
128931
- "name": "SbbLinkBaseElement",
128932
- "module": "core/base-elements/link-base-element.js"
128933
- }
128934
- },
128935
- {
128936
- "name": "accessibility-current",
128937
- "type": {
128938
- "text": "string"
128939
- },
128940
- "default": "''",
128941
- "description": "This will be forwarded as aria-current to the inner anchor element.",
128942
- "fieldName": "accessibilityCurrent",
128943
- "inheritedFrom": {
128944
- "name": "SbbLinkBaseElement",
128945
- "module": "core/base-elements/link-base-element.js"
128946
- }
128947
128947
  }
128948
128948
  ]
128949
128949
  }
@@ -128951,10 +128951,10 @@
128951
128951
  "exports": [
128952
128952
  {
128953
128953
  "kind": "js",
128954
- "name": "SbbTeaserProductElement",
128954
+ "name": "SbbTeaserProductStaticElement",
128955
128955
  "declaration": {
128956
- "name": "SbbTeaserProductElement",
128957
- "module": "teaser-product/teaser-product/teaser-product.component.js"
128956
+ "name": "SbbTeaserProductStaticElement",
128957
+ "module": "teaser-product/teaser-product-static/teaser-product-static.component.js"
128958
128958
  }
128959
128959
  }
128960
128960
  ]
@@ -132898,155 +132898,6 @@
132898
132898
  }
132899
132899
  ]
132900
132900
  },
132901
- {
132902
- "kind": "javascript-module",
132903
- "path": "train/train-blocked-passage/train-blocked-passage.component.js",
132904
- "declarations": [
132905
- {
132906
- "kind": "class",
132907
- "description": "It visually displays a blocked passage between train wagons.",
132908
- "name": "SbbTrainBlockedPassageElement",
132909
- "members": [
132910
- {
132911
- "kind": "field",
132912
- "name": "elementName",
132913
- "type": {
132914
- "text": "string"
132915
- },
132916
- "privacy": "public",
132917
- "static": true,
132918
- "readonly": true,
132919
- "default": "'sbb-train-blocked-passage'",
132920
- "inheritedFrom": {
132921
- "name": "SbbElement",
132922
- "module": "core/base-elements/element.js"
132923
- }
132924
- },
132925
- {
132926
- "kind": "field",
132927
- "name": "_hydrationRequired",
132928
- "type": {
132929
- "text": "boolean"
132930
- },
132931
- "privacy": "private",
132932
- "default": "!!this.shadowRoot",
132933
- "inheritedFrom": {
132934
- "name": "SbbElement",
132935
- "module": "core/base-elements/element.js"
132936
- }
132937
- },
132938
- {
132939
- "kind": "field",
132940
- "name": "_hydrationComplete",
132941
- "privacy": "private",
132942
- "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
132943
- "inheritedFrom": {
132944
- "name": "SbbElement",
132945
- "module": "core/base-elements/element.js"
132946
- }
132947
- },
132948
- {
132949
- "kind": "field",
132950
- "name": "_resolveHydration",
132951
- "type": {
132952
- "text": "(hydrationRequired: boolean) => void"
132953
- },
132954
- "privacy": "private",
132955
- "inheritedFrom": {
132956
- "name": "SbbElement",
132957
- "module": "core/base-elements/element.js"
132958
- }
132959
- },
132960
- {
132961
- "kind": "field",
132962
- "name": "hydrationRequired",
132963
- "type": {
132964
- "text": "boolean"
132965
- },
132966
- "privacy": "protected",
132967
- "description": "Returns whether hydration is required and not completed.",
132968
- "readonly": true,
132969
- "inheritedFrom": {
132970
- "name": "SbbElement",
132971
- "module": "core/base-elements/element.js"
132972
- },
132973
- "default": "!!this.shadowRoot"
132974
- },
132975
- {
132976
- "kind": "method",
132977
- "name": "toggleState",
132978
- "privacy": "protected",
132979
- "return": {
132980
- "type": {
132981
- "text": "void"
132982
- }
132983
- },
132984
- "parameters": [
132985
- {
132986
- "name": "value",
132987
- "type": {
132988
- "text": "string"
132989
- }
132990
- },
132991
- {
132992
- "name": "force",
132993
- "optional": true,
132994
- "type": {
132995
- "text": "boolean"
132996
- }
132997
- }
132998
- ],
132999
- "inheritedFrom": {
133000
- "name": "SbbElement",
133001
- "module": "core/base-elements/element.js"
133002
- }
133003
- },
133004
- {
133005
- "kind": "field",
133006
- "name": "['_$sbbElement$']",
133007
- "type": {
133008
- "text": "boolean"
133009
- },
133010
- "privacy": "public",
133011
- "static": true,
133012
- "default": "true",
133013
- "inheritedFrom": {
133014
- "name": "SbbElement",
133015
- "module": "core/base-elements/element.js"
133016
- }
133017
- },
133018
- {
133019
- "kind": "field",
133020
- "name": "_controllers",
133021
- "type": {
133022
- "text": "Set<SbbReactiveController> | undefined"
133023
- },
133024
- "privacy": "private",
133025
- "inheritedFrom": {
133026
- "name": "SbbElement",
133027
- "module": "core/base-elements/element.js"
133028
- }
133029
- }
133030
- ],
133031
- "superclass": {
133032
- "name": "SbbElement",
133033
- "module": "core/base-elements.js"
133034
- },
133035
- "tagName": "sbb-train-blocked-passage",
133036
- "customElement": true
133037
- }
133038
- ],
133039
- "exports": [
133040
- {
133041
- "kind": "js",
133042
- "name": "SbbTrainBlockedPassageElement",
133043
- "declaration": {
133044
- "name": "SbbTrainBlockedPassageElement",
133045
- "module": "train/train-blocked-passage/train-blocked-passage.component.js"
133046
- }
133047
- }
133048
- ]
133049
- },
133050
132901
  {
133051
132902
  "kind": "javascript-module",
133052
132903
  "path": "train/train-formation/train-formation.component.js",
@@ -133379,6 +133230,155 @@
133379
133230
  }
133380
133231
  ]
133381
133232
  },
133233
+ {
133234
+ "kind": "javascript-module",
133235
+ "path": "train/train-blocked-passage/train-blocked-passage.component.js",
133236
+ "declarations": [
133237
+ {
133238
+ "kind": "class",
133239
+ "description": "It visually displays a blocked passage between train wagons.",
133240
+ "name": "SbbTrainBlockedPassageElement",
133241
+ "members": [
133242
+ {
133243
+ "kind": "field",
133244
+ "name": "elementName",
133245
+ "type": {
133246
+ "text": "string"
133247
+ },
133248
+ "privacy": "public",
133249
+ "static": true,
133250
+ "readonly": true,
133251
+ "default": "'sbb-train-blocked-passage'",
133252
+ "inheritedFrom": {
133253
+ "name": "SbbElement",
133254
+ "module": "core/base-elements/element.js"
133255
+ }
133256
+ },
133257
+ {
133258
+ "kind": "field",
133259
+ "name": "_hydrationRequired",
133260
+ "type": {
133261
+ "text": "boolean"
133262
+ },
133263
+ "privacy": "private",
133264
+ "default": "!!this.shadowRoot",
133265
+ "inheritedFrom": {
133266
+ "name": "SbbElement",
133267
+ "module": "core/base-elements/element.js"
133268
+ }
133269
+ },
133270
+ {
133271
+ "kind": "field",
133272
+ "name": "_hydrationComplete",
133273
+ "privacy": "private",
133274
+ "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
133275
+ "inheritedFrom": {
133276
+ "name": "SbbElement",
133277
+ "module": "core/base-elements/element.js"
133278
+ }
133279
+ },
133280
+ {
133281
+ "kind": "field",
133282
+ "name": "_resolveHydration",
133283
+ "type": {
133284
+ "text": "(hydrationRequired: boolean) => void"
133285
+ },
133286
+ "privacy": "private",
133287
+ "inheritedFrom": {
133288
+ "name": "SbbElement",
133289
+ "module": "core/base-elements/element.js"
133290
+ }
133291
+ },
133292
+ {
133293
+ "kind": "field",
133294
+ "name": "hydrationRequired",
133295
+ "type": {
133296
+ "text": "boolean"
133297
+ },
133298
+ "privacy": "protected",
133299
+ "description": "Returns whether hydration is required and not completed.",
133300
+ "readonly": true,
133301
+ "inheritedFrom": {
133302
+ "name": "SbbElement",
133303
+ "module": "core/base-elements/element.js"
133304
+ },
133305
+ "default": "!!this.shadowRoot"
133306
+ },
133307
+ {
133308
+ "kind": "method",
133309
+ "name": "toggleState",
133310
+ "privacy": "protected",
133311
+ "return": {
133312
+ "type": {
133313
+ "text": "void"
133314
+ }
133315
+ },
133316
+ "parameters": [
133317
+ {
133318
+ "name": "value",
133319
+ "type": {
133320
+ "text": "string"
133321
+ }
133322
+ },
133323
+ {
133324
+ "name": "force",
133325
+ "optional": true,
133326
+ "type": {
133327
+ "text": "boolean"
133328
+ }
133329
+ }
133330
+ ],
133331
+ "inheritedFrom": {
133332
+ "name": "SbbElement",
133333
+ "module": "core/base-elements/element.js"
133334
+ }
133335
+ },
133336
+ {
133337
+ "kind": "field",
133338
+ "name": "['_$sbbElement$']",
133339
+ "type": {
133340
+ "text": "boolean"
133341
+ },
133342
+ "privacy": "public",
133343
+ "static": true,
133344
+ "default": "true",
133345
+ "inheritedFrom": {
133346
+ "name": "SbbElement",
133347
+ "module": "core/base-elements/element.js"
133348
+ }
133349
+ },
133350
+ {
133351
+ "kind": "field",
133352
+ "name": "_controllers",
133353
+ "type": {
133354
+ "text": "Set<SbbReactiveController> | undefined"
133355
+ },
133356
+ "privacy": "private",
133357
+ "inheritedFrom": {
133358
+ "name": "SbbElement",
133359
+ "module": "core/base-elements/element.js"
133360
+ }
133361
+ }
133362
+ ],
133363
+ "superclass": {
133364
+ "name": "SbbElement",
133365
+ "module": "core/base-elements.js"
133366
+ },
133367
+ "tagName": "sbb-train-blocked-passage",
133368
+ "customElement": true
133369
+ }
133370
+ ],
133371
+ "exports": [
133372
+ {
133373
+ "kind": "js",
133374
+ "name": "SbbTrainBlockedPassageElement",
133375
+ "declaration": {
133376
+ "name": "SbbTrainBlockedPassageElement",
133377
+ "module": "train/train-blocked-passage/train-blocked-passage.component.js"
133378
+ }
133379
+ }
133380
+ ]
133381
+ },
133382
133382
  {
133383
133383
  "kind": "javascript-module",
133384
133384
  "path": "train/train-wagon/train-wagon.component.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.1777962521",
3
+ "version": "4.12.1-dev.1777997554",
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/f404e4a11071cebe23613098988643887df7658d"
9
+ "https://github.com/sbb-design-systems/lyne-components/commit/387b3c442a50e89cb7954a4c8d80a1081c672723"
10
10
  ],
11
11
  "type": "module",
12
12
  "exports": {