@sbb-esta/lyne-elements-dev 5.0.0-next.3-dev.1779895144 → 5.0.0-next.3-dev.1780060206

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.
@@ -33566,6 +33566,369 @@
33566
33566
  }
33567
33567
  ]
33568
33568
  },
33569
+ {
33570
+ "kind": "javascript-module",
33571
+ "path": "action-group/action-group.component.js",
33572
+ "declarations": [
33573
+ {
33574
+ "kind": "class",
33575
+ "description": "It can be used as a container for one or more action element, like `sbb-button` or `sbb-block-link`.",
33576
+ "name": "SbbActionGroupElement",
33577
+ "slots": [
33578
+ {
33579
+ "description": "Use the unnamed slot to add `sbb-block-link` or `sbb-button` elements to the `sbb-action-group`.",
33580
+ "name": ""
33581
+ }
33582
+ ],
33583
+ "members": [
33584
+ {
33585
+ "kind": "field",
33586
+ "name": "elementName",
33587
+ "type": {
33588
+ "text": "string"
33589
+ },
33590
+ "privacy": "public",
33591
+ "static": true,
33592
+ "readonly": true,
33593
+ "default": "'sbb-action-group'",
33594
+ "inheritedFrom": {
33595
+ "name": "SbbElement",
33596
+ "module": "core/base-elements/element.js"
33597
+ }
33598
+ },
33599
+ {
33600
+ "kind": "field",
33601
+ "name": "['_$sbbElement$']",
33602
+ "type": {
33603
+ "text": "boolean"
33604
+ },
33605
+ "privacy": "public",
33606
+ "static": true,
33607
+ "default": "true",
33608
+ "inheritedFrom": {
33609
+ "name": "SbbElement",
33610
+ "module": "core/base-elements/element.js"
33611
+ }
33612
+ },
33613
+ {
33614
+ "kind": "field",
33615
+ "name": "elementDependencies",
33616
+ "type": {
33617
+ "text": "SbbElementType[] | undefined"
33618
+ },
33619
+ "privacy": "public",
33620
+ "static": true,
33621
+ "inheritedFrom": {
33622
+ "name": "SbbElement",
33623
+ "module": "core/base-elements/element.js"
33624
+ }
33625
+ },
33626
+ {
33627
+ "kind": "field",
33628
+ "name": "role",
33629
+ "type": {
33630
+ "text": "ElementInternals['role'] | undefined"
33631
+ },
33632
+ "privacy": "public",
33633
+ "static": true,
33634
+ "inheritedFrom": {
33635
+ "name": "SbbElement",
33636
+ "module": "core/base-elements/element.js"
33637
+ }
33638
+ },
33639
+ {
33640
+ "kind": "field",
33641
+ "name": "_controllers",
33642
+ "type": {
33643
+ "text": "Set<SbbReactiveController> | undefined"
33644
+ },
33645
+ "privacy": "private",
33646
+ "inheritedFrom": {
33647
+ "name": "SbbElement",
33648
+ "module": "core/base-elements/element.js"
33649
+ }
33650
+ },
33651
+ {
33652
+ "kind": "field",
33653
+ "name": "_hydrationRequired",
33654
+ "type": {
33655
+ "text": "boolean"
33656
+ },
33657
+ "privacy": "private",
33658
+ "default": "!!this.shadowRoot",
33659
+ "inheritedFrom": {
33660
+ "name": "SbbElement",
33661
+ "module": "core/base-elements/element.js"
33662
+ }
33663
+ },
33664
+ {
33665
+ "kind": "field",
33666
+ "name": "_hydrationComplete",
33667
+ "privacy": "private",
33668
+ "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
33669
+ "inheritedFrom": {
33670
+ "name": "SbbElement",
33671
+ "module": "core/base-elements/element.js"
33672
+ }
33673
+ },
33674
+ {
33675
+ "kind": "field",
33676
+ "name": "_resolveHydration",
33677
+ "type": {
33678
+ "text": "(hydrationRequired: boolean) => void"
33679
+ },
33680
+ "privacy": "private",
33681
+ "inheritedFrom": {
33682
+ "name": "SbbElement",
33683
+ "module": "core/base-elements/element.js"
33684
+ }
33685
+ },
33686
+ {
33687
+ "kind": "field",
33688
+ "name": "_textObserver",
33689
+ "type": {
33690
+ "text": "MutationObserver | undefined"
33691
+ },
33692
+ "privacy": "private",
33693
+ "inheritedFrom": {
33694
+ "name": "SbbElement",
33695
+ "module": "core/base-elements/element.js"
33696
+ }
33697
+ },
33698
+ {
33699
+ "kind": "field",
33700
+ "name": "hydrationRequired",
33701
+ "type": {
33702
+ "text": "boolean"
33703
+ },
33704
+ "privacy": "protected",
33705
+ "description": "Returns whether hydration is required and not completed.",
33706
+ "readonly": true,
33707
+ "inheritedFrom": {
33708
+ "name": "SbbElement",
33709
+ "module": "core/base-elements/element.js"
33710
+ },
33711
+ "default": "!!this.shadowRoot"
33712
+ },
33713
+ {
33714
+ "kind": "method",
33715
+ "name": "finalizeStyles",
33716
+ "privacy": "protected",
33717
+ "static": true,
33718
+ "return": {
33719
+ "type": {
33720
+ "text": "CSSResultOrNative[]"
33721
+ }
33722
+ },
33723
+ "parameters": [
33724
+ {
33725
+ "name": "_styles",
33726
+ "type": {
33727
+ "text": "CSSResultGroup"
33728
+ }
33729
+ }
33730
+ ],
33731
+ "description": "Collects `styles` from every class in the prototype chain (using `Object.hasOwn`)\nand merges them in top-down order. This means each class/mixin only needs to declare\nits **own** styles — there is no need to reference `super.styles`.\n\nLit's default behaviour already walks the chain, but fails for mixins where\n`super.styles` resolves to the wrong class. This override fixes that.",
33732
+ "inheritedFrom": {
33733
+ "name": "SbbElement",
33734
+ "module": "core/base-elements/element.js"
33735
+ }
33736
+ },
33737
+ {
33738
+ "kind": "method",
33739
+ "name": "toggleState",
33740
+ "privacy": "protected",
33741
+ "return": {
33742
+ "type": {
33743
+ "text": "void"
33744
+ }
33745
+ },
33746
+ "parameters": [
33747
+ {
33748
+ "name": "value",
33749
+ "type": {
33750
+ "text": "string"
33751
+ }
33752
+ },
33753
+ {
33754
+ "name": "force",
33755
+ "optional": true,
33756
+ "type": {
33757
+ "text": "boolean"
33758
+ }
33759
+ }
33760
+ ],
33761
+ "inheritedFrom": {
33762
+ "name": "SbbElement",
33763
+ "module": "core/base-elements/element.js"
33764
+ }
33765
+ },
33766
+ {
33767
+ "kind": "method",
33768
+ "name": "_slotchangeHandler",
33769
+ "privacy": "private",
33770
+ "return": {
33771
+ "type": {
33772
+ "text": "void"
33773
+ }
33774
+ },
33775
+ "parameters": [
33776
+ {
33777
+ "name": "event",
33778
+ "type": {
33779
+ "text": "Event"
33780
+ }
33781
+ },
33782
+ {
33783
+ "name": "slot",
33784
+ "type": {
33785
+ "text": "HTMLSlotElement"
33786
+ }
33787
+ }
33788
+ ],
33789
+ "inheritedFrom": {
33790
+ "name": "SbbElement",
33791
+ "module": "core/base-elements/element.js"
33792
+ }
33793
+ },
33794
+ {
33795
+ "kind": "method",
33796
+ "name": "_handleSlotChangeForSlottedState",
33797
+ "privacy": "private",
33798
+ "return": {
33799
+ "type": {
33800
+ "text": "void"
33801
+ }
33802
+ },
33803
+ "parameters": [
33804
+ {
33805
+ "name": "slot",
33806
+ "type": {
33807
+ "text": "HTMLSlotElement"
33808
+ }
33809
+ }
33810
+ ],
33811
+ "inheritedFrom": {
33812
+ "name": "SbbElement",
33813
+ "module": "core/base-elements/element.js"
33814
+ }
33815
+ },
33816
+ {
33817
+ "kind": "method",
33818
+ "name": "_updateSlottedState",
33819
+ "privacy": "private",
33820
+ "return": {
33821
+ "type": {
33822
+ "text": "void"
33823
+ }
33824
+ },
33825
+ "parameters": [
33826
+ {
33827
+ "name": "slot",
33828
+ "type": {
33829
+ "text": "HTMLSlotElement"
33830
+ }
33831
+ }
33832
+ ],
33833
+ "inheritedFrom": {
33834
+ "name": "SbbElement",
33835
+ "module": "core/base-elements/element.js"
33836
+ }
33837
+ },
33838
+ {
33839
+ "kind": "method",
33840
+ "name": "_observeTextNodesInSlot",
33841
+ "privacy": "private",
33842
+ "return": {
33843
+ "type": {
33844
+ "text": "void"
33845
+ }
33846
+ },
33847
+ "parameters": [
33848
+ {
33849
+ "name": "slot",
33850
+ "type": {
33851
+ "text": "HTMLSlotElement"
33852
+ }
33853
+ }
33854
+ ],
33855
+ "inheritedFrom": {
33856
+ "name": "SbbElement",
33857
+ "module": "core/base-elements/element.js"
33858
+ }
33859
+ },
33860
+ {
33861
+ "kind": "method",
33862
+ "name": "_hasSlottedContent",
33863
+ "privacy": "private",
33864
+ "return": {
33865
+ "type": {
33866
+ "text": "boolean"
33867
+ }
33868
+ },
33869
+ "parameters": [
33870
+ {
33871
+ "name": "slot",
33872
+ "type": {
33873
+ "text": "HTMLSlotElement"
33874
+ }
33875
+ }
33876
+ ],
33877
+ "inheritedFrom": {
33878
+ "name": "SbbElement",
33879
+ "module": "core/base-elements/element.js"
33880
+ }
33881
+ }
33882
+ ],
33883
+ "superclass": {
33884
+ "name": "SbbElement",
33885
+ "module": "core.js"
33886
+ },
33887
+ "tagName": "sbb-action-group",
33888
+ "customElement": true
33889
+ }
33890
+ ],
33891
+ "exports": [
33892
+ {
33893
+ "kind": "js",
33894
+ "name": "SbbActionGroupElement",
33895
+ "declaration": {
33896
+ "name": "SbbActionGroupElement",
33897
+ "module": "action-group/action-group.component.js"
33898
+ }
33899
+ }
33900
+ ]
33901
+ },
33902
+ {
33903
+ "kind": "javascript-module",
33904
+ "path": "action-group.pure.js",
33905
+ "declarations": [],
33906
+ "exports": [
33907
+ {
33908
+ "kind": "js",
33909
+ "name": "*",
33910
+ "declaration": {
33911
+ "name": "*",
33912
+ "module": "action-group/action-group.component.js"
33913
+ }
33914
+ }
33915
+ ]
33916
+ },
33917
+ {
33918
+ "kind": "javascript-module",
33919
+ "path": "action-group.js",
33920
+ "declarations": [],
33921
+ "exports": [
33922
+ {
33923
+ "kind": "js",
33924
+ "name": "*",
33925
+ "declaration": {
33926
+ "name": "*",
33927
+ "module": "action-group.pure.js"
33928
+ }
33929
+ }
33930
+ ]
33931
+ },
33569
33932
  {
33570
33933
  "kind": "javascript-module",
33571
33934
  "path": "button/common/button-common.js",
@@ -48419,6 +48782,21 @@
48419
48782
  }
48420
48783
  ]
48421
48784
  },
48785
+ {
48786
+ "kind": "javascript-module",
48787
+ "path": "divider.pure.js",
48788
+ "declarations": [],
48789
+ "exports": [
48790
+ {
48791
+ "kind": "js",
48792
+ "name": "*",
48793
+ "declaration": {
48794
+ "name": "*",
48795
+ "module": "divider/divider.component.js"
48796
+ }
48797
+ }
48798
+ ]
48799
+ },
48422
48800
  {
48423
48801
  "kind": "javascript-module",
48424
48802
  "path": "link/common/link-common.js",
@@ -55020,615 +55398,66 @@
55020
55398
  }
55021
55399
  }
55022
55400
  ],
55023
- "mixins": [
55024
- {
55025
- "name": "SbbInlineLinkCommonElementMixin",
55026
- "module": "link/common/inline-link-common.js"
55027
- },
55028
- {
55029
- "name": "SbbDisabledMixin",
55030
- "module": "core.js"
55031
- }
55032
- ],
55033
- "superclass": {
55034
- "name": "SbbActionBaseElement",
55035
- "module": "core.js"
55036
- },
55037
- "tagName": "sbb-link-static",
55038
- "customElement": true,
55039
- "attributes": [
55040
- {
55041
- "name": "negative",
55042
- "type": {
55043
- "text": "boolean"
55044
- },
55045
- "default": "false",
55046
- "description": "Negative coloring variant flag.",
55047
- "fieldName": "negative",
55048
- "inheritedFrom": {
55049
- "name": "SbbNegativeMixin",
55050
- "module": "core/mixins/negative-mixin.js"
55051
- }
55052
- },
55053
- {
55054
- "name": "disabled",
55055
- "description": "Whether the component is disabled.",
55056
- "default": "false",
55057
- "type": {
55058
- "text": "boolean"
55059
- },
55060
- "fieldName": "disabled",
55061
- "inheritedFrom": {
55062
- "name": "SbbDisabledMixin",
55063
- "module": "core/mixins/disabled-mixin.js"
55064
- }
55065
- }
55066
- ]
55067
- }
55068
- ],
55069
- "exports": [
55070
- {
55071
- "kind": "js",
55072
- "name": "SbbLinkStaticElement",
55073
- "declaration": {
55074
- "name": "SbbLinkStaticElement",
55075
- "module": "link/link-static/link-static.component.js"
55076
- }
55077
- }
55078
- ]
55079
- },
55080
- {
55081
- "kind": "javascript-module",
55082
- "path": "link.pure.js",
55083
- "declarations": [],
55084
- "exports": [
55085
- {
55086
- "kind": "js",
55087
- "name": "*",
55088
- "declaration": {
55089
- "name": "*",
55090
- "module": "link/block-link/block-link.component.js"
55091
- }
55092
- },
55093
- {
55094
- "kind": "js",
55095
- "name": "*",
55096
- "declaration": {
55097
- "name": "*",
55098
- "module": "link/block-link-button/block-link-button.component.js"
55099
- }
55100
- },
55101
- {
55102
- "kind": "js",
55103
- "name": "*",
55104
- "declaration": {
55105
- "name": "*",
55106
- "module": "link/block-link-static/block-link-static.component.js"
55107
- }
55108
- },
55109
- {
55110
- "kind": "js",
55111
- "name": "*",
55112
- "declaration": {
55113
- "name": "*",
55114
- "module": "link/link/link.component.js"
55115
- }
55116
- },
55117
- {
55118
- "kind": "js",
55119
- "name": "*",
55120
- "declaration": {
55121
- "name": "*",
55122
- "module": "link/link-button/link-button.component.js"
55123
- }
55124
- },
55125
- {
55126
- "kind": "js",
55127
- "name": "*",
55128
- "declaration": {
55129
- "name": "*",
55130
- "module": "link/link-static/link-static.component.js"
55131
- }
55132
- },
55133
- {
55134
- "kind": "js",
55135
- "name": "*",
55136
- "declaration": {
55137
- "name": "*",
55138
- "module": "link/common/block-link-common.js"
55139
- }
55140
- },
55141
- {
55142
- "kind": "js",
55143
- "name": "*",
55144
- "declaration": {
55145
- "name": "*",
55146
- "module": "link/common/inline-link-common.js"
55147
- }
55148
- },
55149
- {
55150
- "kind": "js",
55151
- "name": "*",
55152
- "declaration": {
55153
- "name": "*",
55154
- "module": "link/common/link-common.js"
55155
- }
55156
- }
55157
- ]
55158
- },
55159
- {
55160
- "kind": "javascript-module",
55161
- "path": "action-group/action-group.component.js",
55162
- "declarations": [
55163
- {
55164
- "kind": "class",
55165
- "description": "It can be used as a container for one or more action element, like `sbb-button` or `sbb-block-link`.",
55166
- "name": "SbbActionGroupElement",
55167
- "slots": [
55168
- {
55169
- "description": "Use the unnamed slot to add `sbb-block-link` or `sbb-button` elements to the `sbb-action-group`.",
55170
- "name": ""
55171
- }
55172
- ],
55173
- "members": [
55174
- {
55175
- "kind": "field",
55176
- "name": "elementName",
55177
- "type": {
55178
- "text": "string"
55179
- },
55180
- "privacy": "public",
55181
- "static": true,
55182
- "readonly": true,
55183
- "default": "'sbb-action-group'",
55184
- "inheritedFrom": {
55185
- "name": "SbbElement",
55186
- "module": "core/base-elements/element.js"
55187
- }
55188
- },
55189
- {
55190
- "kind": "field",
55191
- "name": "alignGroup",
55192
- "type": {
55193
- "text": "'start' | 'center' | 'stretch' | 'end'"
55194
- },
55195
- "privacy": "public",
55196
- "default": "'start'",
55197
- "description": "Set the slotted `<sbb-action-group>` children's alignment.",
55198
- "attribute": "align-group",
55199
- "reflects": true
55200
- },
55201
- {
55202
- "kind": "field",
55203
- "name": "horizontalFrom",
55204
- "type": {
55205
- "text": "SbbHorizontalFrom",
55206
- "resolved": "'zero' | 'small' | 'large' | 'ultra'"
55207
- },
55208
- "privacy": "public",
55209
- "default": "'large'",
55210
- "description": "Overrides the behavior of `orientation` property.",
55211
- "attribute": "horizontal-from",
55212
- "reflects": true
55213
- },
55214
- {
55215
- "kind": "field",
55216
- "name": "orientation",
55217
- "type": {
55218
- "text": "'horizontal' | 'vertical'"
55219
- },
55220
- "privacy": "public",
55221
- "default": "'horizontal'",
55222
- "description": "Indicates the orientation of the components inside the `<sbb-action-group>`.",
55223
- "attribute": "orientation",
55224
- "reflects": true
55225
- },
55226
- {
55227
- "kind": "field",
55228
- "name": "buttonSize",
55229
- "type": {
55230
- "text": "SbbButtonElement['size']",
55231
- "resolved": "'s' | 'm' | 'l'"
55232
- },
55233
- "privacy": "public",
55234
- "default": "null",
55235
- "description": "Size of the nested sbb-button instances.\nThis will overwrite the size attribute of nested sbb-button instances.",
55236
- "deprecated": "Will be removed with next breaking change",
55237
- "attribute": "button-size",
55238
- "reflects": true
55239
- },
55240
- {
55241
- "kind": "field",
55242
- "name": "linkSize",
55243
- "type": {
55244
- "text": "SbbBlockLinkElement['size']",
55245
- "resolved": "'xs' | 's' | 'm'"
55246
- },
55247
- "privacy": "public",
55248
- "default": "null",
55249
- "description": "Size of the nested sbb-block-link instances.\nThis will overwrite the size attribute of nested sbb-block-link instances.",
55250
- "deprecated": "Will be removed with next breaking change",
55251
- "attribute": "link-size",
55252
- "reflects": true
55253
- },
55254
- {
55255
- "kind": "method",
55256
- "name": "_syncButtons",
55257
- "privacy": "private",
55258
- "return": {
55259
- "type": {
55260
- "text": "void"
55261
- }
55262
- }
55263
- },
55264
- {
55265
- "kind": "method",
55266
- "name": "_syncLinks",
55267
- "privacy": "private",
55268
- "return": {
55269
- "type": {
55270
- "text": "void"
55271
- }
55272
- }
55273
- },
55274
- {
55275
- "kind": "field",
55276
- "name": "['_$sbbElement$']",
55277
- "type": {
55278
- "text": "boolean"
55279
- },
55280
- "privacy": "public",
55281
- "static": true,
55282
- "default": "true",
55283
- "inheritedFrom": {
55284
- "name": "SbbElement",
55285
- "module": "core/base-elements/element.js"
55286
- }
55287
- },
55288
- {
55289
- "kind": "field",
55290
- "name": "elementDependencies",
55291
- "type": {
55292
- "text": "SbbElementType[] | undefined"
55293
- },
55294
- "privacy": "public",
55295
- "static": true,
55296
- "inheritedFrom": {
55297
- "name": "SbbElement",
55298
- "module": "core/base-elements/element.js"
55299
- }
55300
- },
55301
- {
55302
- "kind": "field",
55303
- "name": "role",
55304
- "type": {
55305
- "text": "ElementInternals['role'] | undefined"
55306
- },
55307
- "privacy": "public",
55308
- "static": true,
55309
- "inheritedFrom": {
55310
- "name": "SbbElement",
55311
- "module": "core/base-elements/element.js"
55312
- }
55313
- },
55314
- {
55315
- "kind": "field",
55316
- "name": "_controllers",
55317
- "type": {
55318
- "text": "Set<SbbReactiveController> | undefined"
55319
- },
55320
- "privacy": "private",
55321
- "inheritedFrom": {
55322
- "name": "SbbElement",
55323
- "module": "core/base-elements/element.js"
55324
- }
55325
- },
55326
- {
55327
- "kind": "field",
55328
- "name": "_hydrationRequired",
55329
- "type": {
55330
- "text": "boolean"
55331
- },
55332
- "privacy": "private",
55333
- "default": "!!this.shadowRoot",
55334
- "inheritedFrom": {
55335
- "name": "SbbElement",
55336
- "module": "core/base-elements/element.js"
55337
- }
55338
- },
55339
- {
55340
- "kind": "field",
55341
- "name": "_hydrationComplete",
55342
- "privacy": "private",
55343
- "default": "new Promise<boolean>( (resolve) => (this._resolveHydration = resolve), )",
55344
- "inheritedFrom": {
55345
- "name": "SbbElement",
55346
- "module": "core/base-elements/element.js"
55347
- }
55348
- },
55349
- {
55350
- "kind": "field",
55351
- "name": "_resolveHydration",
55352
- "type": {
55353
- "text": "(hydrationRequired: boolean) => void"
55354
- },
55355
- "privacy": "private",
55356
- "inheritedFrom": {
55357
- "name": "SbbElement",
55358
- "module": "core/base-elements/element.js"
55359
- }
55360
- },
55361
- {
55362
- "kind": "field",
55363
- "name": "_textObserver",
55364
- "type": {
55365
- "text": "MutationObserver | undefined"
55366
- },
55367
- "privacy": "private",
55368
- "inheritedFrom": {
55369
- "name": "SbbElement",
55370
- "module": "core/base-elements/element.js"
55371
- }
55372
- },
55373
- {
55374
- "kind": "field",
55375
- "name": "hydrationRequired",
55376
- "type": {
55377
- "text": "boolean"
55378
- },
55379
- "privacy": "protected",
55380
- "description": "Returns whether hydration is required and not completed.",
55381
- "readonly": true,
55382
- "inheritedFrom": {
55383
- "name": "SbbElement",
55384
- "module": "core/base-elements/element.js"
55385
- },
55386
- "default": "!!this.shadowRoot"
55387
- },
55388
- {
55389
- "kind": "method",
55390
- "name": "finalizeStyles",
55391
- "privacy": "protected",
55392
- "static": true,
55393
- "return": {
55394
- "type": {
55395
- "text": "CSSResultOrNative[]"
55396
- }
55397
- },
55398
- "parameters": [
55399
- {
55400
- "name": "_styles",
55401
- "type": {
55402
- "text": "CSSResultGroup"
55403
- }
55404
- }
55405
- ],
55406
- "description": "Collects `styles` from every class in the prototype chain (using `Object.hasOwn`)\nand merges them in top-down order. This means each class/mixin only needs to declare\nits **own** styles — there is no need to reference `super.styles`.\n\nLit's default behaviour already walks the chain, but fails for mixins where\n`super.styles` resolves to the wrong class. This override fixes that.",
55407
- "inheritedFrom": {
55408
- "name": "SbbElement",
55409
- "module": "core/base-elements/element.js"
55410
- }
55411
- },
55412
- {
55413
- "kind": "method",
55414
- "name": "toggleState",
55415
- "privacy": "protected",
55416
- "return": {
55417
- "type": {
55418
- "text": "void"
55419
- }
55420
- },
55421
- "parameters": [
55422
- {
55423
- "name": "value",
55424
- "type": {
55425
- "text": "string"
55426
- }
55427
- },
55428
- {
55429
- "name": "force",
55430
- "optional": true,
55431
- "type": {
55432
- "text": "boolean"
55433
- }
55434
- }
55435
- ],
55436
- "inheritedFrom": {
55437
- "name": "SbbElement",
55438
- "module": "core/base-elements/element.js"
55439
- }
55440
- },
55441
- {
55442
- "kind": "method",
55443
- "name": "_slotchangeHandler",
55444
- "privacy": "private",
55445
- "return": {
55446
- "type": {
55447
- "text": "void"
55448
- }
55449
- },
55450
- "parameters": [
55451
- {
55452
- "name": "event",
55453
- "type": {
55454
- "text": "Event"
55455
- }
55456
- },
55457
- {
55458
- "name": "slot",
55459
- "type": {
55460
- "text": "HTMLSlotElement"
55461
- }
55462
- }
55463
- ],
55464
- "inheritedFrom": {
55465
- "name": "SbbElement",
55466
- "module": "core/base-elements/element.js"
55467
- }
55468
- },
55469
- {
55470
- "kind": "method",
55471
- "name": "_handleSlotChangeForSlottedState",
55472
- "privacy": "private",
55473
- "return": {
55474
- "type": {
55475
- "text": "void"
55476
- }
55477
- },
55478
- "parameters": [
55479
- {
55480
- "name": "slot",
55481
- "type": {
55482
- "text": "HTMLSlotElement"
55483
- }
55484
- }
55485
- ],
55486
- "inheritedFrom": {
55487
- "name": "SbbElement",
55488
- "module": "core/base-elements/element.js"
55489
- }
55490
- },
55491
- {
55492
- "kind": "method",
55493
- "name": "_updateSlottedState",
55494
- "privacy": "private",
55495
- "return": {
55496
- "type": {
55497
- "text": "void"
55498
- }
55499
- },
55500
- "parameters": [
55501
- {
55502
- "name": "slot",
55503
- "type": {
55504
- "text": "HTMLSlotElement"
55505
- }
55506
- }
55507
- ],
55508
- "inheritedFrom": {
55509
- "name": "SbbElement",
55510
- "module": "core/base-elements/element.js"
55511
- }
55512
- },
55513
- {
55514
- "kind": "method",
55515
- "name": "_observeTextNodesInSlot",
55516
- "privacy": "private",
55517
- "return": {
55518
- "type": {
55519
- "text": "void"
55520
- }
55521
- },
55522
- "parameters": [
55523
- {
55524
- "name": "slot",
55525
- "type": {
55526
- "text": "HTMLSlotElement"
55527
- }
55528
- }
55529
- ],
55530
- "inheritedFrom": {
55531
- "name": "SbbElement",
55532
- "module": "core/base-elements/element.js"
55533
- }
55534
- },
55535
- {
55536
- "kind": "method",
55537
- "name": "_hasSlottedContent",
55538
- "privacy": "private",
55539
- "return": {
55540
- "type": {
55541
- "text": "boolean"
55542
- }
55543
- },
55544
- "parameters": [
55545
- {
55546
- "name": "slot",
55547
- "type": {
55548
- "text": "HTMLSlotElement"
55549
- }
55550
- }
55551
- ],
55552
- "inheritedFrom": {
55553
- "name": "SbbElement",
55554
- "module": "core/base-elements/element.js"
55555
- }
55556
- }
55557
- ],
55558
- "attributes": [
55559
- {
55560
- "name": "align-group",
55561
- "type": {
55562
- "text": "'start' | 'center' | 'stretch' | 'end'"
55563
- },
55564
- "default": "'start'",
55565
- "description": "Set the slotted `<sbb-action-group>` children's alignment.",
55566
- "fieldName": "alignGroup"
55567
- },
55401
+ "mixins": [
55568
55402
  {
55569
- "name": "horizontal-from",
55570
- "type": {
55571
- "text": "SbbHorizontalFrom",
55572
- "resolved": "'zero' | 'small' | 'large' | 'ultra'"
55573
- },
55574
- "default": "'large'",
55575
- "description": "Overrides the behavior of `orientation` property.",
55576
- "fieldName": "horizontalFrom"
55403
+ "name": "SbbInlineLinkCommonElementMixin",
55404
+ "module": "link/common/inline-link-common.js"
55577
55405
  },
55578
55406
  {
55579
- "name": "orientation",
55580
- "type": {
55581
- "text": "'horizontal' | 'vertical'"
55582
- },
55583
- "default": "'horizontal'",
55584
- "description": "Indicates the orientation of the components inside the `<sbb-action-group>`.",
55585
- "fieldName": "orientation"
55586
- },
55407
+ "name": "SbbDisabledMixin",
55408
+ "module": "core.js"
55409
+ }
55410
+ ],
55411
+ "superclass": {
55412
+ "name": "SbbActionBaseElement",
55413
+ "module": "core.js"
55414
+ },
55415
+ "tagName": "sbb-link-static",
55416
+ "customElement": true,
55417
+ "attributes": [
55587
55418
  {
55588
- "name": "button-size",
55419
+ "name": "negative",
55589
55420
  "type": {
55590
- "text": "SbbButtonElement['size']",
55591
- "resolved": "'s' | 'm' | 'l'"
55421
+ "text": "boolean"
55592
55422
  },
55593
- "default": "null",
55594
- "description": "Size of the nested sbb-button instances.\nThis will overwrite the size attribute of nested sbb-button instances.",
55595
- "deprecated": "Will be removed with next breaking change",
55596
- "fieldName": "buttonSize"
55423
+ "default": "false",
55424
+ "description": "Negative coloring variant flag.",
55425
+ "fieldName": "negative",
55426
+ "inheritedFrom": {
55427
+ "name": "SbbNegativeMixin",
55428
+ "module": "core/mixins/negative-mixin.js"
55429
+ }
55597
55430
  },
55598
55431
  {
55599
- "name": "link-size",
55432
+ "name": "disabled",
55433
+ "description": "Whether the component is disabled.",
55434
+ "default": "false",
55600
55435
  "type": {
55601
- "text": "SbbBlockLinkElement['size']",
55602
- "resolved": "'xs' | 's' | 'm'"
55436
+ "text": "boolean"
55603
55437
  },
55604
- "default": "null",
55605
- "description": "Size of the nested sbb-block-link instances.\nThis will overwrite the size attribute of nested sbb-block-link instances.",
55606
- "deprecated": "Will be removed with next breaking change",
55607
- "fieldName": "linkSize"
55438
+ "fieldName": "disabled",
55439
+ "inheritedFrom": {
55440
+ "name": "SbbDisabledMixin",
55441
+ "module": "core/mixins/disabled-mixin.js"
55442
+ }
55608
55443
  }
55609
- ],
55610
- "superclass": {
55611
- "name": "SbbElement",
55612
- "module": "core.js"
55613
- },
55614
- "tagName": "sbb-action-group",
55615
- "customElement": true
55444
+ ]
55616
55445
  }
55617
55446
  ],
55618
55447
  "exports": [
55619
55448
  {
55620
55449
  "kind": "js",
55621
- "name": "SbbActionGroupElement",
55450
+ "name": "SbbLinkStaticElement",
55622
55451
  "declaration": {
55623
- "name": "SbbActionGroupElement",
55624
- "module": "action-group/action-group.component.js"
55452
+ "name": "SbbLinkStaticElement",
55453
+ "module": "link/link-static/link-static.component.js"
55625
55454
  }
55626
55455
  }
55627
55456
  ]
55628
55457
  },
55629
55458
  {
55630
55459
  "kind": "javascript-module",
55631
- "path": "action-group.pure.js",
55460
+ "path": "link.pure.js",
55632
55461
  "declarations": [],
55633
55462
  "exports": [
55634
55463
  {
@@ -55636,37 +55465,71 @@
55636
55465
  "name": "*",
55637
55466
  "declaration": {
55638
55467
  "name": "*",
55639
- "module": "action-group/action-group.component.js"
55468
+ "module": "link/block-link/block-link.component.js"
55640
55469
  }
55641
- }
55642
- ]
55643
- },
55644
- {
55645
- "kind": "javascript-module",
55646
- "path": "action-group.js",
55647
- "declarations": [],
55648
- "exports": [
55470
+ },
55649
55471
  {
55650
55472
  "kind": "js",
55651
55473
  "name": "*",
55652
55474
  "declaration": {
55653
55475
  "name": "*",
55654
- "module": "action-group.pure.js"
55476
+ "module": "link/block-link-button/block-link-button.component.js"
55655
55477
  }
55656
- }
55657
- ]
55658
- },
55659
- {
55660
- "kind": "javascript-module",
55661
- "path": "divider.pure.js",
55662
- "declarations": [],
55663
- "exports": [
55478
+ },
55664
55479
  {
55665
55480
  "kind": "js",
55666
55481
  "name": "*",
55667
55482
  "declaration": {
55668
55483
  "name": "*",
55669
- "module": "divider/divider.component.js"
55484
+ "module": "link/block-link-static/block-link-static.component.js"
55485
+ }
55486
+ },
55487
+ {
55488
+ "kind": "js",
55489
+ "name": "*",
55490
+ "declaration": {
55491
+ "name": "*",
55492
+ "module": "link/link/link.component.js"
55493
+ }
55494
+ },
55495
+ {
55496
+ "kind": "js",
55497
+ "name": "*",
55498
+ "declaration": {
55499
+ "name": "*",
55500
+ "module": "link/link-button/link-button.component.js"
55501
+ }
55502
+ },
55503
+ {
55504
+ "kind": "js",
55505
+ "name": "*",
55506
+ "declaration": {
55507
+ "name": "*",
55508
+ "module": "link/link-static/link-static.component.js"
55509
+ }
55510
+ },
55511
+ {
55512
+ "kind": "js",
55513
+ "name": "*",
55514
+ "declaration": {
55515
+ "name": "*",
55516
+ "module": "link/common/block-link-common.js"
55517
+ }
55518
+ },
55519
+ {
55520
+ "kind": "js",
55521
+ "name": "*",
55522
+ "declaration": {
55523
+ "name": "*",
55524
+ "module": "link/common/inline-link-common.js"
55525
+ }
55526
+ },
55527
+ {
55528
+ "kind": "js",
55529
+ "name": "*",
55530
+ "declaration": {
55531
+ "name": "*",
55532
+ "module": "link/common/link-common.js"
55670
55533
  }
55671
55534
  }
55672
55535
  ]
@@ -101335,119 +101198,6 @@
101335
101198
  "module": "core/base-elements/element.js"
101336
101199
  }
101337
101200
  },
101338
- {
101339
- "kind": "field",
101340
- "name": "alignGroup",
101341
- "type": {
101342
- "text": "'start' | 'center' | 'stretch' | 'end'"
101343
- },
101344
- "privacy": "public",
101345
- "default": "'start'",
101346
- "description": "Set the slotted `<sbb-action-group>` children's alignment.",
101347
- "attribute": "align-group",
101348
- "reflects": true,
101349
- "inheritedFrom": {
101350
- "name": "SbbActionGroupElement",
101351
- "module": "action-group/action-group.component.js"
101352
- }
101353
- },
101354
- {
101355
- "kind": "field",
101356
- "name": "horizontalFrom",
101357
- "type": {
101358
- "text": "SbbHorizontalFrom",
101359
- "resolved": "'zero' | 'small' | 'large' | 'ultra'"
101360
- },
101361
- "privacy": "public",
101362
- "default": "'large'",
101363
- "description": "Overrides the behavior of `orientation` property.",
101364
- "attribute": "horizontal-from",
101365
- "reflects": true,
101366
- "inheritedFrom": {
101367
- "name": "SbbActionGroupElement",
101368
- "module": "action-group/action-group.component.js"
101369
- }
101370
- },
101371
- {
101372
- "kind": "field",
101373
- "name": "orientation",
101374
- "type": {
101375
- "text": "'horizontal' | 'vertical'"
101376
- },
101377
- "privacy": "public",
101378
- "default": "'horizontal'",
101379
- "description": "Indicates the orientation of the components inside the `<sbb-action-group>`.",
101380
- "attribute": "orientation",
101381
- "reflects": true,
101382
- "inheritedFrom": {
101383
- "name": "SbbActionGroupElement",
101384
- "module": "action-group/action-group.component.js"
101385
- }
101386
- },
101387
- {
101388
- "kind": "field",
101389
- "name": "buttonSize",
101390
- "type": {
101391
- "text": "SbbButtonElement['size']",
101392
- "resolved": "'s' | 'm' | 'l'"
101393
- },
101394
- "privacy": "public",
101395
- "default": "null",
101396
- "description": "Size of the nested sbb-button instances.\nThis will overwrite the size attribute of nested sbb-button instances.",
101397
- "deprecated": "Will be removed with next breaking change",
101398
- "attribute": "button-size",
101399
- "reflects": true,
101400
- "inheritedFrom": {
101401
- "name": "SbbActionGroupElement",
101402
- "module": "action-group/action-group.component.js"
101403
- }
101404
- },
101405
- {
101406
- "kind": "field",
101407
- "name": "linkSize",
101408
- "type": {
101409
- "text": "SbbBlockLinkElement['size']",
101410
- "resolved": "'xs' | 's' | 'm'"
101411
- },
101412
- "privacy": "public",
101413
- "default": "null",
101414
- "description": "Size of the nested sbb-block-link instances.\nThis will overwrite the size attribute of nested sbb-block-link instances.",
101415
- "deprecated": "Will be removed with next breaking change",
101416
- "attribute": "link-size",
101417
- "reflects": true,
101418
- "inheritedFrom": {
101419
- "name": "SbbActionGroupElement",
101420
- "module": "action-group/action-group.component.js"
101421
- }
101422
- },
101423
- {
101424
- "kind": "method",
101425
- "name": "_syncButtons",
101426
- "privacy": "private",
101427
- "return": {
101428
- "type": {
101429
- "text": "void"
101430
- }
101431
- },
101432
- "inheritedFrom": {
101433
- "name": "SbbActionGroupElement",
101434
- "module": "action-group/action-group.component.js"
101435
- }
101436
- },
101437
- {
101438
- "kind": "method",
101439
- "name": "_syncLinks",
101440
- "privacy": "private",
101441
- "return": {
101442
- "type": {
101443
- "text": "void"
101444
- }
101445
- },
101446
- "inheritedFrom": {
101447
- "name": "SbbActionGroupElement",
101448
- "module": "action-group/action-group.component.js"
101449
- }
101450
- },
101451
101201
  {
101452
101202
  "kind": "field",
101453
101203
  "name": "['_$sbbElement$']",
@@ -101737,79 +101487,7 @@
101737
101487
  "module": "action-group.pure.js"
101738
101488
  },
101739
101489
  "tagName": "sbb-dialog-actions",
101740
- "customElement": true,
101741
- "attributes": [
101742
- {
101743
- "name": "align-group",
101744
- "type": {
101745
- "text": "'start' | 'center' | 'stretch' | 'end'"
101746
- },
101747
- "default": "'start'",
101748
- "description": "Set the slotted `<sbb-action-group>` children's alignment.",
101749
- "fieldName": "alignGroup",
101750
- "inheritedFrom": {
101751
- "name": "SbbActionGroupElement",
101752
- "module": "action-group/action-group.component.js"
101753
- }
101754
- },
101755
- {
101756
- "name": "horizontal-from",
101757
- "type": {
101758
- "text": "SbbHorizontalFrom",
101759
- "resolved": "'zero' | 'small' | 'large' | 'ultra'"
101760
- },
101761
- "default": "'large'",
101762
- "description": "Overrides the behavior of `orientation` property.",
101763
- "fieldName": "horizontalFrom",
101764
- "inheritedFrom": {
101765
- "name": "SbbActionGroupElement",
101766
- "module": "action-group/action-group.component.js"
101767
- }
101768
- },
101769
- {
101770
- "name": "orientation",
101771
- "type": {
101772
- "text": "'horizontal' | 'vertical'"
101773
- },
101774
- "default": "'horizontal'",
101775
- "description": "Indicates the orientation of the components inside the `<sbb-action-group>`.",
101776
- "fieldName": "orientation",
101777
- "inheritedFrom": {
101778
- "name": "SbbActionGroupElement",
101779
- "module": "action-group/action-group.component.js"
101780
- }
101781
- },
101782
- {
101783
- "name": "button-size",
101784
- "type": {
101785
- "text": "SbbButtonElement['size']",
101786
- "resolved": "'s' | 'm' | 'l'"
101787
- },
101788
- "default": "null",
101789
- "description": "Size of the nested sbb-button instances.\nThis will overwrite the size attribute of nested sbb-button instances.",
101790
- "deprecated": "Will be removed with next breaking change",
101791
- "fieldName": "buttonSize",
101792
- "inheritedFrom": {
101793
- "name": "SbbActionGroupElement",
101794
- "module": "action-group/action-group.component.js"
101795
- }
101796
- },
101797
- {
101798
- "name": "link-size",
101799
- "type": {
101800
- "text": "SbbBlockLinkElement['size']",
101801
- "resolved": "'xs' | 's' | 'm'"
101802
- },
101803
- "default": "null",
101804
- "description": "Size of the nested sbb-block-link instances.\nThis will overwrite the size attribute of nested sbb-block-link instances.",
101805
- "deprecated": "Will be removed with next breaking change",
101806
- "fieldName": "linkSize",
101807
- "inheritedFrom": {
101808
- "name": "SbbActionGroupElement",
101809
- "module": "action-group/action-group.component.js"
101810
- }
101811
- }
101812
- ]
101490
+ "customElement": true
101813
101491
  }
101814
101492
  ],
101815
101493
  "exports": [