@momentum-design/components 0.120.14 → 0.120.15

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 (40) hide show
  1. package/dist/browser/index.js +428 -282
  2. package/dist/browser/index.js.map +3 -3
  3. package/dist/components/checkbox/checkbox.component.d.ts +1 -1
  4. package/dist/components/checkbox/checkbox.component.js +8 -2
  5. package/dist/components/checkbox/checkbox.styles.js +62 -40
  6. package/dist/components/combobox/combobox.component.d.ts +0 -5
  7. package/dist/components/combobox/combobox.component.js +0 -9
  8. package/dist/components/formfieldwrapper/formfieldwrapper.component.d.ts +10 -0
  9. package/dist/components/formfieldwrapper/formfieldwrapper.component.js +21 -1
  10. package/dist/components/input/input.component.d.ts +0 -4
  11. package/dist/components/input/input.component.js +0 -8
  12. package/dist/components/menuitemcheckbox/menuitemcheckbox.component.js +2 -0
  13. package/dist/components/menuitemradio/menuitemradio.component.js +1 -0
  14. package/dist/components/radio/radio.component.d.ts +0 -6
  15. package/dist/components/radio/radio.component.js +5 -11
  16. package/dist/components/radio/radio.styles.js +70 -34
  17. package/dist/components/select/select.component.d.ts +0 -13
  18. package/dist/components/select/select.component.js +0 -13
  19. package/dist/components/staticcheckbox/staticcheckbox.component.d.ts +13 -1
  20. package/dist/components/staticcheckbox/staticcheckbox.component.js +21 -1
  21. package/dist/components/staticcheckbox/staticcheckbox.styles.js +30 -7
  22. package/dist/components/staticradio/staticradio.component.d.ts +7 -1
  23. package/dist/components/staticradio/staticradio.component.js +11 -1
  24. package/dist/components/staticradio/staticradio.styles.js +16 -9
  25. package/dist/components/statictoggle/statictoggle.component.d.ts +13 -1
  26. package/dist/components/statictoggle/statictoggle.component.js +21 -1
  27. package/dist/components/statictoggle/statictoggle.styles.js +24 -4
  28. package/dist/components/textarea/textarea.component.d.ts +0 -5
  29. package/dist/components/textarea/textarea.component.js +0 -9
  30. package/dist/components/toggle/toggle.component.d.ts +1 -1
  31. package/dist/components/toggle/toggle.component.js +9 -3
  32. package/dist/components/toggle/toggle.styles.js +47 -20
  33. package/dist/custom-elements.json +876 -178
  34. package/dist/react/staticcheckbox/index.d.ts +1 -1
  35. package/dist/react/staticcheckbox/index.js +1 -1
  36. package/dist/react/staticradio/index.d.ts +1 -1
  37. package/dist/react/staticradio/index.js +1 -1
  38. package/dist/react/statictoggle/index.d.ts +1 -1
  39. package/dist/react/statictoggle/index.js +1 -1
  40. package/package.json +1 -1
@@ -10233,7 +10233,7 @@
10233
10233
  "text": "void"
10234
10234
  }
10235
10235
  },
10236
- "description": "Toggles the state of the checkbox element.\nIf the element is not disabled, then\nthe checked property is toggled and the indeterminate property is set to false."
10236
+ "description": "Toggles the state of the checkbox element.\nIf the element is not disabled, soft-disabled, or readonly, then\nthe checked property is toggled and the indeterminate property is set to false."
10237
10237
  },
10238
10238
  {
10239
10239
  "kind": "method",
@@ -10537,6 +10537,36 @@
10537
10537
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
10538
10538
  }
10539
10539
  },
10540
+ {
10541
+ "kind": "field",
10542
+ "name": "readonly",
10543
+ "type": {
10544
+ "text": "boolean"
10545
+ },
10546
+ "default": "false",
10547
+ "description": "Determines whether the form field is read-only.",
10548
+ "attribute": "readonly",
10549
+ "reflects": true,
10550
+ "inheritedFrom": {
10551
+ "name": "FormfieldWrapper",
10552
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
10553
+ }
10554
+ },
10555
+ {
10556
+ "kind": "field",
10557
+ "name": "softDisabled",
10558
+ "type": {
10559
+ "text": "boolean"
10560
+ },
10561
+ "default": "false",
10562
+ "description": "Determines whether the form field is soft-disabled.",
10563
+ "attribute": "soft-disabled",
10564
+ "reflects": true,
10565
+ "inheritedFrom": {
10566
+ "name": "FormfieldWrapper",
10567
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
10568
+ }
10569
+ },
10540
10570
  {
10541
10571
  "kind": "method",
10542
10572
  "name": "renderLabelElement",
@@ -10831,6 +10861,32 @@
10831
10861
  "name": "FormfieldWrapper",
10832
10862
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
10833
10863
  }
10864
+ },
10865
+ {
10866
+ "name": "readonly",
10867
+ "type": {
10868
+ "text": "boolean"
10869
+ },
10870
+ "default": "false",
10871
+ "description": "Determines whether the form field is read-only.",
10872
+ "fieldName": "readonly",
10873
+ "inheritedFrom": {
10874
+ "name": "FormfieldWrapper",
10875
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
10876
+ }
10877
+ },
10878
+ {
10879
+ "name": "soft-disabled",
10880
+ "type": {
10881
+ "text": "boolean"
10882
+ },
10883
+ "default": "false",
10884
+ "description": "Determines whether the form field is soft-disabled.",
10885
+ "fieldName": "softDisabled",
10886
+ "inheritedFrom": {
10887
+ "name": "FormfieldWrapper",
10888
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
10889
+ }
10834
10890
  }
10835
10891
  ],
10836
10892
  "mixins": [
@@ -13686,16 +13742,6 @@
13686
13742
  "description": "The placeholder text which will be shown on the text if provided.",
13687
13743
  "attribute": "placeholder"
13688
13744
  },
13689
- {
13690
- "kind": "field",
13691
- "name": "readonly",
13692
- "type": {
13693
- "text": "boolean"
13694
- },
13695
- "default": "false",
13696
- "description": "readonly attribute of the combobox field. If true, the combobox is read-only.",
13697
- "attribute": "readonly"
13698
- },
13699
13745
  {
13700
13746
  "kind": "field",
13701
13747
  "name": "placement",
@@ -14402,6 +14448,36 @@
14402
14448
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
14403
14449
  }
14404
14450
  },
14451
+ {
14452
+ "kind": "field",
14453
+ "name": "readonly",
14454
+ "type": {
14455
+ "text": "boolean"
14456
+ },
14457
+ "default": "false",
14458
+ "description": "Determines whether the form field is read-only.",
14459
+ "attribute": "readonly",
14460
+ "reflects": true,
14461
+ "inheritedFrom": {
14462
+ "name": "FormfieldWrapper",
14463
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
14464
+ }
14465
+ },
14466
+ {
14467
+ "kind": "field",
14468
+ "name": "softDisabled",
14469
+ "type": {
14470
+ "text": "boolean"
14471
+ },
14472
+ "default": "false",
14473
+ "description": "Determines whether the form field is soft-disabled.",
14474
+ "attribute": "soft-disabled",
14475
+ "reflects": true,
14476
+ "inheritedFrom": {
14477
+ "name": "FormfieldWrapper",
14478
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
14479
+ }
14480
+ },
14405
14481
  {
14406
14482
  "kind": "method",
14407
14483
  "name": "renderLabelElement",
@@ -14514,15 +14590,6 @@
14514
14590
  "description": "The placeholder text which will be shown on the text if provided.",
14515
14591
  "fieldName": "placeholder"
14516
14592
  },
14517
- {
14518
- "name": "readonly",
14519
- "type": {
14520
- "text": "boolean"
14521
- },
14522
- "default": "false",
14523
- "description": "readonly attribute of the combobox field. If true, the combobox is read-only.",
14524
- "fieldName": "readonly"
14525
- },
14526
14593
  {
14527
14594
  "name": "placement",
14528
14595
  "type": {
@@ -14758,6 +14825,32 @@
14758
14825
  "name": "FormfieldWrapper",
14759
14826
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
14760
14827
  }
14828
+ },
14829
+ {
14830
+ "name": "readonly",
14831
+ "type": {
14832
+ "text": "boolean"
14833
+ },
14834
+ "default": "false",
14835
+ "description": "Determines whether the form field is read-only.",
14836
+ "fieldName": "readonly",
14837
+ "inheritedFrom": {
14838
+ "name": "FormfieldWrapper",
14839
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
14840
+ }
14841
+ },
14842
+ {
14843
+ "name": "soft-disabled",
14844
+ "type": {
14845
+ "text": "boolean"
14846
+ },
14847
+ "default": "false",
14848
+ "description": "Determines whether the form field is soft-disabled.",
14849
+ "fieldName": "softDisabled",
14850
+ "inheritedFrom": {
14851
+ "name": "FormfieldWrapper",
14852
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
14853
+ }
14761
14854
  }
14762
14855
  ],
14763
14856
  "mixins": [
@@ -17120,6 +17213,36 @@
17120
17213
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
17121
17214
  }
17122
17215
  },
17216
+ {
17217
+ "kind": "field",
17218
+ "name": "readonly",
17219
+ "type": {
17220
+ "text": "boolean"
17221
+ },
17222
+ "default": "false",
17223
+ "description": "Determines whether the form field is read-only.",
17224
+ "attribute": "readonly",
17225
+ "reflects": true,
17226
+ "inheritedFrom": {
17227
+ "name": "FormfieldWrapper",
17228
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
17229
+ }
17230
+ },
17231
+ {
17232
+ "kind": "field",
17233
+ "name": "softDisabled",
17234
+ "type": {
17235
+ "text": "boolean"
17236
+ },
17237
+ "default": "false",
17238
+ "description": "Determines whether the form field is soft-disabled.",
17239
+ "attribute": "soft-disabled",
17240
+ "reflects": true,
17241
+ "inheritedFrom": {
17242
+ "name": "FormfieldWrapper",
17243
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
17244
+ }
17245
+ },
17123
17246
  {
17124
17247
  "kind": "method",
17125
17248
  "name": "renderLabelElement",
@@ -17332,6 +17455,32 @@
17332
17455
  "name": "FormfieldWrapper",
17333
17456
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
17334
17457
  }
17458
+ },
17459
+ {
17460
+ "name": "readonly",
17461
+ "type": {
17462
+ "text": "boolean"
17463
+ },
17464
+ "default": "false",
17465
+ "description": "Determines whether the form field is read-only.",
17466
+ "fieldName": "readonly",
17467
+ "inheritedFrom": {
17468
+ "name": "FormfieldWrapper",
17469
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
17470
+ }
17471
+ },
17472
+ {
17473
+ "name": "soft-disabled",
17474
+ "type": {
17475
+ "text": "boolean"
17476
+ },
17477
+ "default": "false",
17478
+ "description": "Determines whether the form field is soft-disabled.",
17479
+ "fieldName": "softDisabled",
17480
+ "inheritedFrom": {
17481
+ "name": "FormfieldWrapper",
17482
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
17483
+ }
17335
17484
  }
17336
17485
  ]
17337
17486
  }
@@ -17489,6 +17638,28 @@
17489
17638
  "attribute": "info-icon-aria-label",
17490
17639
  "reflects": true
17491
17640
  },
17641
+ {
17642
+ "kind": "field",
17643
+ "name": "readonly",
17644
+ "type": {
17645
+ "text": "boolean"
17646
+ },
17647
+ "default": "false",
17648
+ "description": "Determines whether the form field is read-only.",
17649
+ "attribute": "readonly",
17650
+ "reflects": true
17651
+ },
17652
+ {
17653
+ "kind": "field",
17654
+ "name": "softDisabled",
17655
+ "type": {
17656
+ "text": "boolean"
17657
+ },
17658
+ "default": "false",
17659
+ "description": "Determines whether the form field is soft-disabled.",
17660
+ "attribute": "soft-disabled",
17661
+ "reflects": true
17662
+ },
17492
17663
  {
17493
17664
  "kind": "method",
17494
17665
  "name": "renderLabelElement",
@@ -17626,6 +17797,24 @@
17626
17797
  "description": "Aria label for the info icon that is displayed next to the label when `toggletipText` is set.\nThis is used for accessibility purposes to provide a description of the icon.",
17627
17798
  "fieldName": "infoIconAriaLabel"
17628
17799
  },
17800
+ {
17801
+ "name": "readonly",
17802
+ "type": {
17803
+ "text": "boolean"
17804
+ },
17805
+ "default": "false",
17806
+ "description": "Determines whether the form field is read-only.",
17807
+ "fieldName": "readonly"
17808
+ },
17809
+ {
17810
+ "name": "soft-disabled",
17811
+ "type": {
17812
+ "text": "boolean"
17813
+ },
17814
+ "default": "false",
17815
+ "description": "Determines whether the form field is soft-disabled.",
17816
+ "fieldName": "softDisabled"
17817
+ },
17629
17818
  {
17630
17819
  "name": "disabled",
17631
17820
  "type": {
@@ -18669,16 +18858,6 @@
18669
18858
  "description": "The placeholder text that is displayed when the input field is empty.",
18670
18859
  "attribute": "placeholder"
18671
18860
  },
18672
- {
18673
- "kind": "field",
18674
- "name": "readonly",
18675
- "type": {
18676
- "text": "boolean"
18677
- },
18678
- "default": "false",
18679
- "description": "readonly attribute of the input field. If true, the input field is read-only.",
18680
- "attribute": "readonly"
18681
- },
18682
18861
  {
18683
18862
  "kind": "field",
18684
18863
  "name": "prefixText",
@@ -19164,6 +19343,36 @@
19164
19343
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
19165
19344
  }
19166
19345
  },
19346
+ {
19347
+ "kind": "field",
19348
+ "name": "readonly",
19349
+ "type": {
19350
+ "text": "boolean"
19351
+ },
19352
+ "default": "false",
19353
+ "description": "Determines whether the form field is read-only.",
19354
+ "attribute": "readonly",
19355
+ "reflects": true,
19356
+ "inheritedFrom": {
19357
+ "name": "FormfieldWrapper",
19358
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
19359
+ }
19360
+ },
19361
+ {
19362
+ "kind": "field",
19363
+ "name": "softDisabled",
19364
+ "type": {
19365
+ "text": "boolean"
19366
+ },
19367
+ "default": "false",
19368
+ "description": "Determines whether the form field is soft-disabled.",
19369
+ "attribute": "soft-disabled",
19370
+ "reflects": true,
19371
+ "inheritedFrom": {
19372
+ "name": "FormfieldWrapper",
19373
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
19374
+ }
19375
+ },
19167
19376
  {
19168
19377
  "kind": "method",
19169
19378
  "name": "renderLabelElement",
@@ -19285,15 +19494,6 @@
19285
19494
  "description": "The placeholder text that is displayed when the input field is empty.",
19286
19495
  "fieldName": "placeholder"
19287
19496
  },
19288
- {
19289
- "name": "readonly",
19290
- "type": {
19291
- "text": "boolean"
19292
- },
19293
- "default": "false",
19294
- "description": "readonly attribute of the input field. If true, the input field is read-only.",
19295
- "fieldName": "readonly"
19296
- },
19297
19497
  {
19298
19498
  "name": "prefix-text",
19299
19499
  "type": {
@@ -19568,6 +19768,32 @@
19568
19768
  "name": "FormfieldWrapper",
19569
19769
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
19570
19770
  }
19771
+ },
19772
+ {
19773
+ "name": "readonly",
19774
+ "type": {
19775
+ "text": "boolean"
19776
+ },
19777
+ "default": "false",
19778
+ "description": "Determines whether the form field is read-only.",
19779
+ "fieldName": "readonly",
19780
+ "inheritedFrom": {
19781
+ "name": "FormfieldWrapper",
19782
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
19783
+ }
19784
+ },
19785
+ {
19786
+ "name": "soft-disabled",
19787
+ "type": {
19788
+ "text": "boolean"
19789
+ },
19790
+ "default": "false",
19791
+ "description": "Determines whether the form field is soft-disabled.",
19792
+ "fieldName": "softDisabled",
19793
+ "inheritedFrom": {
19794
+ "name": "FormfieldWrapper",
19795
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
19796
+ }
19571
19797
  }
19572
19798
  ],
19573
19799
  "mixins": [
@@ -31079,20 +31305,6 @@
31079
31305
  "module": "components/input/input.component.js"
31080
31306
  }
31081
31307
  },
31082
- {
31083
- "kind": "field",
31084
- "name": "readonly",
31085
- "type": {
31086
- "text": "boolean"
31087
- },
31088
- "default": "false",
31089
- "description": "readonly attribute of the input field. If true, the input field is read-only.",
31090
- "attribute": "readonly",
31091
- "inheritedFrom": {
31092
- "name": "Input",
31093
- "module": "components/input/input.component.js"
31094
- }
31095
- },
31096
31308
  {
31097
31309
  "kind": "field",
31098
31310
  "name": "prefixText",
@@ -31480,6 +31692,36 @@
31480
31692
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
31481
31693
  }
31482
31694
  },
31695
+ {
31696
+ "kind": "field",
31697
+ "name": "readonly",
31698
+ "type": {
31699
+ "text": "boolean"
31700
+ },
31701
+ "default": "false",
31702
+ "description": "Determines whether the form field is read-only.",
31703
+ "attribute": "readonly",
31704
+ "reflects": true,
31705
+ "inheritedFrom": {
31706
+ "name": "FormfieldWrapper",
31707
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
31708
+ }
31709
+ },
31710
+ {
31711
+ "kind": "field",
31712
+ "name": "softDisabled",
31713
+ "type": {
31714
+ "text": "boolean"
31715
+ },
31716
+ "default": "false",
31717
+ "description": "Determines whether the form field is soft-disabled.",
31718
+ "attribute": "soft-disabled",
31719
+ "reflects": true,
31720
+ "inheritedFrom": {
31721
+ "name": "FormfieldWrapper",
31722
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
31723
+ }
31724
+ },
31483
31725
  {
31484
31726
  "kind": "method",
31485
31727
  "name": "renderLabelElement",
@@ -31714,19 +31956,6 @@
31714
31956
  "module": "src/components/input/input.component.ts"
31715
31957
  }
31716
31958
  },
31717
- {
31718
- "name": "readonly",
31719
- "type": {
31720
- "text": "boolean"
31721
- },
31722
- "default": "false",
31723
- "description": "readonly attribute of the input field. If true, the input field is read-only.",
31724
- "fieldName": "readonly",
31725
- "inheritedFrom": {
31726
- "name": "Input",
31727
- "module": "src/components/input/input.component.ts"
31728
- }
31729
- },
31730
31959
  {
31731
31960
  "name": "prefix-text",
31732
31961
  "type": {
@@ -31973,6 +32202,32 @@
31973
32202
  "name": "FormfieldWrapper",
31974
32203
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
31975
32204
  }
32205
+ },
32206
+ {
32207
+ "name": "readonly",
32208
+ "type": {
32209
+ "text": "boolean"
32210
+ },
32211
+ "default": "false",
32212
+ "description": "Determines whether the form field is read-only.",
32213
+ "fieldName": "readonly",
32214
+ "inheritedFrom": {
32215
+ "name": "FormfieldWrapper",
32216
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
32217
+ }
32218
+ },
32219
+ {
32220
+ "name": "soft-disabled",
32221
+ "type": {
32222
+ "text": "boolean"
32223
+ },
32224
+ "default": "false",
32225
+ "description": "Determines whether the form field is soft-disabled.",
32226
+ "fieldName": "softDisabled",
32227
+ "inheritedFrom": {
32228
+ "name": "FormfieldWrapper",
32229
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
32230
+ }
31976
32231
  }
31977
32232
  ],
31978
32233
  "superclass": {
@@ -34207,6 +34462,36 @@
34207
34462
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
34208
34463
  }
34209
34464
  },
34465
+ {
34466
+ "kind": "field",
34467
+ "name": "readonly",
34468
+ "type": {
34469
+ "text": "boolean"
34470
+ },
34471
+ "default": "false",
34472
+ "description": "Determines whether the form field is read-only.",
34473
+ "attribute": "readonly",
34474
+ "reflects": true,
34475
+ "inheritedFrom": {
34476
+ "name": "FormfieldWrapper",
34477
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
34478
+ }
34479
+ },
34480
+ {
34481
+ "kind": "field",
34482
+ "name": "softDisabled",
34483
+ "type": {
34484
+ "text": "boolean"
34485
+ },
34486
+ "default": "false",
34487
+ "description": "Determines whether the form field is soft-disabled.",
34488
+ "attribute": "soft-disabled",
34489
+ "reflects": true,
34490
+ "inheritedFrom": {
34491
+ "name": "FormfieldWrapper",
34492
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
34493
+ }
34494
+ },
34210
34495
  {
34211
34496
  "kind": "method",
34212
34497
  "name": "renderLabelElement",
@@ -34433,6 +34718,32 @@
34433
34718
  "name": "FormfieldWrapper",
34434
34719
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34435
34720
  }
34721
+ },
34722
+ {
34723
+ "name": "readonly",
34724
+ "type": {
34725
+ "text": "boolean"
34726
+ },
34727
+ "default": "false",
34728
+ "description": "Determines whether the form field is read-only.",
34729
+ "fieldName": "readonly",
34730
+ "inheritedFrom": {
34731
+ "name": "FormfieldWrapper",
34732
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34733
+ }
34734
+ },
34735
+ {
34736
+ "name": "soft-disabled",
34737
+ "type": {
34738
+ "text": "boolean"
34739
+ },
34740
+ "default": "false",
34741
+ "description": "Determines whether the form field is soft-disabled.",
34742
+ "fieldName": "softDisabled",
34743
+ "inheritedFrom": {
34744
+ "name": "FormfieldWrapper",
34745
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
34746
+ }
34436
34747
  }
34437
34748
  ],
34438
34749
  "mixins": [
@@ -34989,6 +35300,36 @@
34989
35300
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
34990
35301
  }
34991
35302
  },
35303
+ {
35304
+ "kind": "field",
35305
+ "name": "readonly",
35306
+ "type": {
35307
+ "text": "boolean"
35308
+ },
35309
+ "default": "false",
35310
+ "description": "Determines whether the form field is read-only.",
35311
+ "attribute": "readonly",
35312
+ "reflects": true,
35313
+ "inheritedFrom": {
35314
+ "name": "FormfieldWrapper",
35315
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
35316
+ }
35317
+ },
35318
+ {
35319
+ "kind": "field",
35320
+ "name": "softDisabled",
35321
+ "type": {
35322
+ "text": "boolean"
35323
+ },
35324
+ "default": "false",
35325
+ "description": "Determines whether the form field is soft-disabled.",
35326
+ "attribute": "soft-disabled",
35327
+ "reflects": true,
35328
+ "inheritedFrom": {
35329
+ "name": "FormfieldWrapper",
35330
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
35331
+ }
35332
+ },
34992
35333
  {
34993
35334
  "kind": "method",
34994
35335
  "name": "renderLabelElement",
@@ -35234,6 +35575,32 @@
35234
35575
  "name": "FormfieldWrapper",
35235
35576
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
35236
35577
  }
35578
+ },
35579
+ {
35580
+ "name": "readonly",
35581
+ "type": {
35582
+ "text": "boolean"
35583
+ },
35584
+ "default": "false",
35585
+ "description": "Determines whether the form field is read-only.",
35586
+ "fieldName": "readonly",
35587
+ "inheritedFrom": {
35588
+ "name": "FormfieldWrapper",
35589
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
35590
+ }
35591
+ },
35592
+ {
35593
+ "name": "soft-disabled",
35594
+ "type": {
35595
+ "text": "boolean"
35596
+ },
35597
+ "default": "false",
35598
+ "description": "Determines whether the form field is soft-disabled.",
35599
+ "fieldName": "softDisabled",
35600
+ "inheritedFrom": {
35601
+ "name": "FormfieldWrapper",
35602
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
35603
+ }
35237
35604
  }
35238
35605
  ],
35239
35606
  "slots": [
@@ -35411,17 +35778,6 @@
35411
35778
  "attribute": "checked",
35412
35779
  "reflects": true
35413
35780
  },
35414
- {
35415
- "kind": "field",
35416
- "name": "readonly",
35417
- "type": {
35418
- "text": "boolean"
35419
- },
35420
- "default": "false",
35421
- "description": "Determines whether the radio is read-only.",
35422
- "attribute": "readonly",
35423
- "reflects": true
35424
- },
35425
35781
  {
35426
35782
  "kind": "method",
35427
35783
  "name": "getAllRadiosWithinSameGroup",
@@ -35787,6 +36143,36 @@
35787
36143
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
35788
36144
  }
35789
36145
  },
36146
+ {
36147
+ "kind": "field",
36148
+ "name": "readonly",
36149
+ "type": {
36150
+ "text": "boolean"
36151
+ },
36152
+ "default": "false",
36153
+ "description": "Determines whether the form field is read-only.",
36154
+ "attribute": "readonly",
36155
+ "reflects": true,
36156
+ "inheritedFrom": {
36157
+ "name": "FormfieldWrapper",
36158
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
36159
+ }
36160
+ },
36161
+ {
36162
+ "kind": "field",
36163
+ "name": "softDisabled",
36164
+ "type": {
36165
+ "text": "boolean"
36166
+ },
36167
+ "default": "false",
36168
+ "description": "Determines whether the form field is soft-disabled.",
36169
+ "attribute": "soft-disabled",
36170
+ "reflects": true,
36171
+ "inheritedFrom": {
36172
+ "name": "FormfieldWrapper",
36173
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
36174
+ }
36175
+ },
35790
36176
  {
35791
36177
  "kind": "method",
35792
36178
  "name": "renderLabelElement",
@@ -35888,15 +36274,6 @@
35888
36274
  "description": "Determines whether the radio is selected or unselected.",
35889
36275
  "fieldName": "checked"
35890
36276
  },
35891
- {
35892
- "name": "readonly",
35893
- "type": {
35894
- "text": "boolean"
35895
- },
35896
- "default": "false",
35897
- "description": "Determines whether the radio is read-only.",
35898
- "fieldName": "readonly"
35899
- },
35900
36277
  {
35901
36278
  "name": "auto-focus-on-mount",
35902
36279
  "type": {
@@ -36070,6 +36447,32 @@
36070
36447
  "name": "FormfieldWrapper",
36071
36448
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36072
36449
  }
36450
+ },
36451
+ {
36452
+ "name": "readonly",
36453
+ "type": {
36454
+ "text": "boolean"
36455
+ },
36456
+ "default": "false",
36457
+ "description": "Determines whether the form field is read-only.",
36458
+ "fieldName": "readonly",
36459
+ "inheritedFrom": {
36460
+ "name": "FormfieldWrapper",
36461
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36462
+ }
36463
+ },
36464
+ {
36465
+ "name": "soft-disabled",
36466
+ "type": {
36467
+ "text": "boolean"
36468
+ },
36469
+ "default": "false",
36470
+ "description": "Determines whether the form field is soft-disabled.",
36471
+ "fieldName": "softDisabled",
36472
+ "inheritedFrom": {
36473
+ "name": "FormfieldWrapper",
36474
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36475
+ }
36073
36476
  }
36074
36477
  ],
36075
36478
  "mixins": [
@@ -36308,6 +36711,36 @@
36308
36711
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
36309
36712
  }
36310
36713
  },
36714
+ {
36715
+ "kind": "field",
36716
+ "name": "readonly",
36717
+ "type": {
36718
+ "text": "boolean"
36719
+ },
36720
+ "default": "false",
36721
+ "description": "Determines whether the form field is read-only.",
36722
+ "attribute": "readonly",
36723
+ "reflects": true,
36724
+ "inheritedFrom": {
36725
+ "name": "FormfieldWrapper",
36726
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
36727
+ }
36728
+ },
36729
+ {
36730
+ "kind": "field",
36731
+ "name": "softDisabled",
36732
+ "type": {
36733
+ "text": "boolean"
36734
+ },
36735
+ "default": "false",
36736
+ "description": "Determines whether the form field is soft-disabled.",
36737
+ "attribute": "soft-disabled",
36738
+ "reflects": true,
36739
+ "inheritedFrom": {
36740
+ "name": "FormfieldWrapper",
36741
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
36742
+ }
36743
+ },
36311
36744
  {
36312
36745
  "kind": "method",
36313
36746
  "name": "renderLabelElement",
@@ -36516,6 +36949,32 @@
36516
36949
  "name": "FormfieldWrapper",
36517
36950
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36518
36951
  }
36952
+ },
36953
+ {
36954
+ "name": "readonly",
36955
+ "type": {
36956
+ "text": "boolean"
36957
+ },
36958
+ "default": "false",
36959
+ "description": "Determines whether the form field is read-only.",
36960
+ "fieldName": "readonly",
36961
+ "inheritedFrom": {
36962
+ "name": "FormfieldWrapper",
36963
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36964
+ }
36965
+ },
36966
+ {
36967
+ "name": "soft-disabled",
36968
+ "type": {
36969
+ "text": "boolean"
36970
+ },
36971
+ "default": "false",
36972
+ "description": "Determines whether the form field is soft-disabled.",
36973
+ "fieldName": "softDisabled",
36974
+ "inheritedFrom": {
36975
+ "name": "FormfieldWrapper",
36976
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
36977
+ }
36519
36978
  }
36520
36979
  ],
36521
36980
  "superclass": {
@@ -37220,20 +37679,6 @@
37220
37679
  "module": "components/input/input.component.js"
37221
37680
  }
37222
37681
  },
37223
- {
37224
- "kind": "field",
37225
- "name": "readonly",
37226
- "type": {
37227
- "text": "boolean"
37228
- },
37229
- "default": "false",
37230
- "description": "readonly attribute of the input field. If true, the input field is read-only.",
37231
- "attribute": "readonly",
37232
- "inheritedFrom": {
37233
- "name": "Input",
37234
- "module": "components/input/input.component.js"
37235
- }
37236
- },
37237
37682
  {
37238
37683
  "kind": "field",
37239
37684
  "name": "prefixText",
@@ -37648,6 +38093,36 @@
37648
38093
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
37649
38094
  }
37650
38095
  },
38096
+ {
38097
+ "kind": "field",
38098
+ "name": "readonly",
38099
+ "type": {
38100
+ "text": "boolean"
38101
+ },
38102
+ "default": "false",
38103
+ "description": "Determines whether the form field is read-only.",
38104
+ "attribute": "readonly",
38105
+ "reflects": true,
38106
+ "inheritedFrom": {
38107
+ "name": "FormfieldWrapper",
38108
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
38109
+ }
38110
+ },
38111
+ {
38112
+ "kind": "field",
38113
+ "name": "softDisabled",
38114
+ "type": {
38115
+ "text": "boolean"
38116
+ },
38117
+ "default": "false",
38118
+ "description": "Determines whether the form field is soft-disabled.",
38119
+ "attribute": "soft-disabled",
38120
+ "reflects": true,
38121
+ "inheritedFrom": {
38122
+ "name": "FormfieldWrapper",
38123
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
38124
+ }
38125
+ },
37651
38126
  {
37652
38127
  "kind": "method",
37653
38128
  "name": "renderLabelElement",
@@ -37868,19 +38343,6 @@
37868
38343
  "module": "src/components/input/input.component.ts"
37869
38344
  }
37870
38345
  },
37871
- {
37872
- "name": "readonly",
37873
- "type": {
37874
- "text": "boolean"
37875
- },
37876
- "default": "false",
37877
- "description": "readonly attribute of the input field. If true, the input field is read-only.",
37878
- "fieldName": "readonly",
37879
- "inheritedFrom": {
37880
- "name": "Input",
37881
- "module": "src/components/input/input.component.ts"
37882
- }
37883
- },
37884
38346
  {
37885
38347
  "name": "prefix-text",
37886
38348
  "type": {
@@ -38139,6 +38601,32 @@
38139
38601
  "name": "FormfieldWrapper",
38140
38602
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
38141
38603
  }
38604
+ },
38605
+ {
38606
+ "name": "readonly",
38607
+ "type": {
38608
+ "text": "boolean"
38609
+ },
38610
+ "default": "false",
38611
+ "description": "Determines whether the form field is read-only.",
38612
+ "fieldName": "readonly",
38613
+ "inheritedFrom": {
38614
+ "name": "FormfieldWrapper",
38615
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
38616
+ }
38617
+ },
38618
+ {
38619
+ "name": "soft-disabled",
38620
+ "type": {
38621
+ "text": "boolean"
38622
+ },
38623
+ "default": "false",
38624
+ "description": "Determines whether the form field is soft-disabled.",
38625
+ "fieldName": "softDisabled",
38626
+ "inheritedFrom": {
38627
+ "name": "FormfieldWrapper",
38628
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
38629
+ }
38142
38630
  }
38143
38631
  ],
38144
38632
  "cssProperties": [
@@ -38492,16 +38980,6 @@
38492
38980
  "description": "The placeholder text which will be shown on the text if provided.",
38493
38981
  "attribute": "placeholder"
38494
38982
  },
38495
- {
38496
- "kind": "field",
38497
- "name": "readonly",
38498
- "type": {
38499
- "text": "boolean"
38500
- },
38501
- "default": "false",
38502
- "description": "readonly attribute of the select field. If true, the select is read-only.",
38503
- "attribute": "readonly"
38504
- },
38505
38983
  {
38506
38984
  "kind": "field",
38507
38985
  "name": "placement",
@@ -38513,17 +38991,6 @@
38513
38991
  "attribute": "placement",
38514
38992
  "reflects": true
38515
38993
  },
38516
- {
38517
- "kind": "field",
38518
- "name": "softDisabled",
38519
- "type": {
38520
- "text": "boolean | undefined"
38521
- },
38522
- "description": "Indicates whether the select is soft disabled.\nWhen set to `true`, the select appears visually disabled but still allows\nfocus.",
38523
- "default": "undefined",
38524
- "attribute": "soft-disabled",
38525
- "reflects": true
38526
- },
38527
38994
  {
38528
38995
  "kind": "field",
38529
38996
  "name": "boundary",
@@ -39092,6 +39559,36 @@
39092
39559
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
39093
39560
  }
39094
39561
  },
39562
+ {
39563
+ "kind": "field",
39564
+ "name": "readonly",
39565
+ "type": {
39566
+ "text": "boolean"
39567
+ },
39568
+ "default": "false",
39569
+ "description": "Determines whether the form field is read-only.",
39570
+ "attribute": "readonly",
39571
+ "reflects": true,
39572
+ "inheritedFrom": {
39573
+ "name": "FormfieldWrapper",
39574
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
39575
+ }
39576
+ },
39577
+ {
39578
+ "kind": "field",
39579
+ "name": "softDisabled",
39580
+ "type": {
39581
+ "text": "boolean"
39582
+ },
39583
+ "default": "false",
39584
+ "description": "Determines whether the form field is soft-disabled.",
39585
+ "attribute": "soft-disabled",
39586
+ "reflects": true,
39587
+ "inheritedFrom": {
39588
+ "name": "FormfieldWrapper",
39589
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
39590
+ }
39591
+ },
39095
39592
  {
39096
39593
  "kind": "method",
39097
39594
  "name": "renderLabelElement",
@@ -39210,15 +39707,6 @@
39210
39707
  "description": "The placeholder text which will be shown on the text if provided.",
39211
39708
  "fieldName": "placeholder"
39212
39709
  },
39213
- {
39214
- "name": "readonly",
39215
- "type": {
39216
- "text": "boolean"
39217
- },
39218
- "default": "false",
39219
- "description": "readonly attribute of the select field. If true, the select is read-only.",
39220
- "fieldName": "readonly"
39221
- },
39222
39710
  {
39223
39711
  "name": "placement",
39224
39712
  "type": {
@@ -39228,15 +39716,6 @@
39228
39716
  "default": "'bottom-start'",
39229
39717
  "fieldName": "placement"
39230
39718
  },
39231
- {
39232
- "name": "soft-disabled",
39233
- "type": {
39234
- "text": "boolean | undefined"
39235
- },
39236
- "description": "Indicates whether the select is soft disabled.\nWhen set to `true`, the select appears visually disabled but still allows\nfocus.",
39237
- "default": "undefined",
39238
- "fieldName": "softDisabled"
39239
- },
39240
39719
  {
39241
39720
  "name": "boundary",
39242
39721
  "type": {
@@ -39445,6 +39924,32 @@
39445
39924
  "name": "FormfieldWrapper",
39446
39925
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
39447
39926
  }
39927
+ },
39928
+ {
39929
+ "name": "readonly",
39930
+ "type": {
39931
+ "text": "boolean"
39932
+ },
39933
+ "default": "false",
39934
+ "description": "Determines whether the form field is read-only.",
39935
+ "fieldName": "readonly",
39936
+ "inheritedFrom": {
39937
+ "name": "FormfieldWrapper",
39938
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
39939
+ }
39940
+ },
39941
+ {
39942
+ "name": "soft-disabled",
39943
+ "type": {
39944
+ "text": "boolean"
39945
+ },
39946
+ "default": "false",
39947
+ "description": "Determines whether the form field is soft-disabled.",
39948
+ "fieldName": "softDisabled",
39949
+ "inheritedFrom": {
39950
+ "name": "FormfieldWrapper",
39951
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
39952
+ }
39448
39953
  }
39449
39954
  ],
39450
39955
  "mixins": [
@@ -40755,7 +41260,7 @@
40755
41260
  "declarations": [
40756
41261
  {
40757
41262
  "kind": "class",
40758
- "description": "This is a decorative component that is styled to look as a checkbox.\n\nIt has 3 properties - checked, indeterminate and disabled.\n\nWe are using the same styling that has been created for the `mdc-checkbox` component.",
41263
+ "description": "This is a decorative component that is styled to look as a checkbox.\n\nIt has 5 properties - checked, indeterminate, disabled, readonly and soft-disabled.\n\nWe are using the same styling that has been created for the `mdc-checkbox` component.",
40759
41264
  "name": "StaticCheckbox",
40760
41265
  "cssProperties": [
40761
41266
  {
@@ -40834,6 +41339,28 @@
40834
41339
  "attribute": "indeterminate",
40835
41340
  "reflects": true
40836
41341
  },
41342
+ {
41343
+ "kind": "field",
41344
+ "name": "readonly",
41345
+ "type": {
41346
+ "text": "boolean"
41347
+ },
41348
+ "default": "false",
41349
+ "description": "Determines whether the checkbox is read-only.",
41350
+ "attribute": "readonly",
41351
+ "reflects": true
41352
+ },
41353
+ {
41354
+ "kind": "field",
41355
+ "name": "softDisabled",
41356
+ "type": {
41357
+ "text": "boolean"
41358
+ },
41359
+ "default": "false",
41360
+ "description": "Determines whether the checkbox is soft-disabled.",
41361
+ "attribute": "soft-disabled",
41362
+ "reflects": true
41363
+ },
40837
41364
  {
40838
41365
  "kind": "field",
40839
41366
  "name": "disabled",
@@ -40869,6 +41396,24 @@
40869
41396
  "description": "Determines whether the checkbox is in an indeterminate state.",
40870
41397
  "fieldName": "indeterminate"
40871
41398
  },
41399
+ {
41400
+ "name": "readonly",
41401
+ "type": {
41402
+ "text": "boolean"
41403
+ },
41404
+ "default": "false",
41405
+ "description": "Determines whether the checkbox is read-only.",
41406
+ "fieldName": "readonly"
41407
+ },
41408
+ {
41409
+ "name": "soft-disabled",
41410
+ "type": {
41411
+ "text": "boolean"
41412
+ },
41413
+ "default": "false",
41414
+ "description": "Determines whether the checkbox is soft-disabled.",
41415
+ "fieldName": "softDisabled"
41416
+ },
40872
41417
  {
40873
41418
  "name": "disabled",
40874
41419
  "type": {
@@ -40894,7 +41439,7 @@
40894
41439
  "module": "/src/models"
40895
41440
  },
40896
41441
  "tagName": "mdc-staticcheckbox",
40897
- "jsDoc": "/**\n * This is a decorative component that is styled to look as a checkbox.\n *\n * It has 3 properties - checked, indeterminate and disabled.\n *\n * We are using the same styling that has been created for the `mdc-checkbox` component.\n *\n * @tagname mdc-staticcheckbox\n *\n * @dependency mdc-icon\n *\n * @cssproperty --mdc-staticcheckbox-border-color - Border color in high contrast.\n * @cssproperty --mdc-staticcheckbox-checked-background-color - Background color for a selected checkbox.\n * @cssproperty --mdc-staticcheckbox-disabled-background-color - Background color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-disabled-border-color - Border color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-disabled-checked-icon-color - Background color for a disabled, selected checkbox.\n * @cssproperty --mdc-staticcheckbox-disabled-icon-color - Icon color for a disabled checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-background-color - Background color for an unselected checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-border-color - Default background color for an unselected checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-color - Icon color for an unselected checkbox.\n *\n * @csspart icon-container - The container for the checkbox icon.\n * @csspart checkbox-icon - The checkbox icon.\n *\n * @slot - Default slot for adding label text.\n */",
41442
+ "jsDoc": "/**\n * This is a decorative component that is styled to look as a checkbox.\n *\n * It has 5 properties - checked, indeterminate, disabled, readonly and soft-disabled.\n *\n * We are using the same styling that has been created for the `mdc-checkbox` component.\n *\n * @tagname mdc-staticcheckbox\n *\n * @dependency mdc-icon\n *\n * @cssproperty --mdc-staticcheckbox-border-color - Border color in high contrast.\n * @cssproperty --mdc-staticcheckbox-checked-background-color - Background color for a selected checkbox.\n * @cssproperty --mdc-staticcheckbox-disabled-background-color - Background color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-disabled-border-color - Border color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-disabled-checked-icon-color - Background color for a disabled, selected checkbox.\n * @cssproperty --mdc-staticcheckbox-disabled-icon-color - Icon color for a disabled checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-background-color - Background color for an unselected checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-border-color - Default background color for an unselected checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-color - Icon color for an unselected checkbox.\n *\n * @csspart icon-container - The container for the checkbox icon.\n * @csspart checkbox-icon - The checkbox icon.\n *\n * @slot - Default slot for adding label text.\n */",
40898
41443
  "customElement": true
40899
41444
  }
40900
41445
  ],
@@ -41048,7 +41593,7 @@
41048
41593
  "declarations": [
41049
41594
  {
41050
41595
  "kind": "class",
41051
- "description": "This is a decorative component that is styled to look as a radio.\nIt has 2 properties - checked and disabled.\n\nWe are using the same styling that has been created for the `mdc-radio` component.",
41596
+ "description": "This is a decorative component that is styled to look as a radio.\nIt has 4 properties - checked, disabled, readonly and soft-disabled.\n\nWe are using the same styling that has been created for the `mdc-radio` component.",
41052
41597
  "name": "StaticRadio",
41053
41598
  "cssProperties": [
41054
41599
  {
@@ -41127,6 +41672,17 @@
41127
41672
  "attribute": "readonly",
41128
41673
  "reflects": true
41129
41674
  },
41675
+ {
41676
+ "kind": "field",
41677
+ "name": "softDisabled",
41678
+ "type": {
41679
+ "text": "boolean"
41680
+ },
41681
+ "default": "false",
41682
+ "description": "Determines whether the radio is soft-disabled.",
41683
+ "attribute": "soft-disabled",
41684
+ "reflects": true
41685
+ },
41130
41686
  {
41131
41687
  "kind": "field",
41132
41688
  "name": "disabled",
@@ -41162,6 +41718,15 @@
41162
41718
  "description": "Determines whether the radio is read-only.",
41163
41719
  "fieldName": "readonly"
41164
41720
  },
41721
+ {
41722
+ "name": "soft-disabled",
41723
+ "type": {
41724
+ "text": "boolean"
41725
+ },
41726
+ "default": "false",
41727
+ "description": "Determines whether the radio is soft-disabled.",
41728
+ "fieldName": "softDisabled"
41729
+ },
41165
41730
  {
41166
41731
  "name": "disabled",
41167
41732
  "type": {
@@ -41187,7 +41752,7 @@
41187
41752
  "module": "/src/models"
41188
41753
  },
41189
41754
  "tagName": "mdc-staticradio",
41190
- "jsDoc": "/**\n * This is a decorative component that is styled to look as a radio.\n * It has 2 properties - checked and disabled.\n *\n * We are using the same styling that has been created for the `mdc-radio` component.\n *\n * @tagname mdc-staticradio\n *\n * @cssproperty --mdc-staticradio-inner-circle-size - size of the inner circle\n * @cssproperty --mdc-staticradio-text-disabled-color - color of the label when disabled\n * @cssproperty --mdc-staticradio-normal-border-color - color of the radio button border when normal\n * @cssproperty --mdc-staticradio-disabled-border-color - color of the radio button border when disabled\n * @cssproperty --mdc-staticradio-inner-circle-normal-background - background color of the inner circle when normal\n * @cssproperty --mdc-staticradio-inner-circle-disabled-background - background color of the inner circle when disabled\n * @cssproperty --mdc-staticradio-control-inactive-color - color of the radio button when inactive\n * @cssproperty --mdc-staticradio-control-inactive-disabled-background - background color of the radio button when\n * inactive and disabled\n * @cssproperty --mdc-staticradio-control-active-color - color of the radio button when active\n * @cssproperty --mdc-staticradio-control-active-disabled-background - background color of the radio button\n * when active and disabled\n *\n * @csspart radio-icon - The radio icon.\n *\n * @slot - Default slot for the label of the radio.\n */",
41755
+ "jsDoc": "/**\n * This is a decorative component that is styled to look as a radio.\n * It has 4 properties - checked, disabled, readonly and soft-disabled.\n *\n * We are using the same styling that has been created for the `mdc-radio` component.\n *\n * @tagname mdc-staticradio\n *\n * @cssproperty --mdc-staticradio-inner-circle-size - size of the inner circle\n * @cssproperty --mdc-staticradio-text-disabled-color - color of the label when disabled\n * @cssproperty --mdc-staticradio-normal-border-color - color of the radio button border when normal\n * @cssproperty --mdc-staticradio-disabled-border-color - color of the radio button border when disabled\n * @cssproperty --mdc-staticradio-inner-circle-normal-background - background color of the inner circle when normal\n * @cssproperty --mdc-staticradio-inner-circle-disabled-background - background color of the inner circle when disabled\n * @cssproperty --mdc-staticradio-control-inactive-color - color of the radio button when inactive\n * @cssproperty --mdc-staticradio-control-inactive-disabled-background - background color of the radio button when\n * inactive and disabled\n * @cssproperty --mdc-staticradio-control-active-color - color of the radio button when active\n * @cssproperty --mdc-staticradio-control-active-disabled-background - background color of the radio button\n * when active and disabled\n *\n * @csspart radio-icon - The radio icon.\n *\n * @slot - Default slot for the label of the radio.\n */",
41191
41756
  "customElement": true
41192
41757
  }
41193
41758
  ],
@@ -41208,7 +41773,7 @@
41208
41773
  "declarations": [
41209
41774
  {
41210
41775
  "kind": "class",
41211
- "description": "This is a decorative component that is styled to look as a toggle. <br/>\nIt has 3 properties - checked, size and disabled. <br/>\nWe are using the same styling that has been created for the `mdc-toggle` component.",
41776
+ "description": "This is a decorative component that is styled to look as a toggle. <br/>\nIt has 5 properties - checked, size, disabled, readonly and soft-disabled. <br/>\nWe are using the same styling that has been created for the `mdc-toggle` component.",
41212
41777
  "name": "StaticToggle",
41213
41778
  "cssProperties": [
41214
41779
  {
@@ -41315,6 +41880,28 @@
41315
41880
  "attribute": "size",
41316
41881
  "reflects": true
41317
41882
  },
41883
+ {
41884
+ "kind": "field",
41885
+ "name": "readonly",
41886
+ "type": {
41887
+ "text": "boolean"
41888
+ },
41889
+ "default": "false",
41890
+ "description": "Determines whether the toggle is read-only.",
41891
+ "attribute": "readonly",
41892
+ "reflects": true
41893
+ },
41894
+ {
41895
+ "kind": "field",
41896
+ "name": "softDisabled",
41897
+ "type": {
41898
+ "text": "boolean"
41899
+ },
41900
+ "default": "false",
41901
+ "description": "Determines whether the toggle is soft-disabled.",
41902
+ "attribute": "soft-disabled",
41903
+ "reflects": true
41904
+ },
41318
41905
  {
41319
41906
  "kind": "field",
41320
41907
  "name": "disabled",
@@ -41350,6 +41937,24 @@
41350
41937
  "default": "default",
41351
41938
  "fieldName": "size"
41352
41939
  },
41940
+ {
41941
+ "name": "readonly",
41942
+ "type": {
41943
+ "text": "boolean"
41944
+ },
41945
+ "default": "false",
41946
+ "description": "Determines whether the toggle is read-only.",
41947
+ "fieldName": "readonly"
41948
+ },
41949
+ {
41950
+ "name": "soft-disabled",
41951
+ "type": {
41952
+ "text": "boolean"
41953
+ },
41954
+ "default": "false",
41955
+ "description": "Determines whether the toggle is soft-disabled.",
41956
+ "fieldName": "softDisabled"
41957
+ },
41353
41958
  {
41354
41959
  "name": "disabled",
41355
41960
  "type": {
@@ -41375,7 +41980,7 @@
41375
41980
  "module": "/src/models"
41376
41981
  },
41377
41982
  "tagName": "mdc-statictoggle",
41378
- "jsDoc": "/**\n * This is a decorative component that is styled to look as a toggle. <br/>\n * It has 3 properties - checked, size and disabled. <br/>\n * We are using the same styling that has been created for the `mdc-toggle` component.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-statictoggle\n *\n * @slot default - This is a default/unnamed slot\n *\n * @cssproperty --mdc-statictoggle-width - Width of the toggle\n * @cssproperty --mdc-statictoggle-height - Height of the toggle\n * @cssproperty --mdc-statictoggle-width-compact - Width of the toggle when it's size is compact\n * @cssproperty --mdc-statictoggle-height-compact - Height of the toggle when it's size is compact\n * @cssproperty --mdc-statictoggle-border-radius - Border radius of the toggle\n * @cssproperty --mdc-statictoggle-border-radius-compact - Border radius of the toggle when it's size is compact\n * @cssproperty --mdc-statictoggle-border - Border of the toggle\n * @cssproperty --mdc-statictoggle-inactive-rest-color - Background color of the inactive toggle in rest state\n * @cssproperty --mdc-statictoggle-inactive-disabled-color - Background color of the inactive toggle in disabled state\n * @cssproperty --mdc-statictoggle-active-rest-color - Background color of the active toggle in rest state\n * @cssproperty --mdc-statictoggle-active-disabled-color - Background color of the active toggle in disabled state\n * @cssproperty --mdc-statictoggle-icon-color-normal - Color of the icon in normal state\n * @cssproperty --mdc-statictoggle-icon-color-disabled - Color of the icon in disabled state\n * @cssproperty --mdc-statictoggle-icon-background-color-normal - Background color of the icon in normal state\n * @cssproperty --mdc-statictoggle-icon-background-color-disabled - Background color of the icon in disabled state\n *\n * @csspart slider - The slider part of the toggle\n * @csspart toggle-icon - The icon part of the toggle\n *\n * @slot - Default slot for adding label text.\n */",
41983
+ "jsDoc": "/**\n * This is a decorative component that is styled to look as a toggle. <br/>\n * It has 5 properties - checked, size, disabled, readonly and soft-disabled. <br/>\n * We are using the same styling that has been created for the `mdc-toggle` component.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-statictoggle\n *\n * @slot default - This is a default/unnamed slot\n *\n * @cssproperty --mdc-statictoggle-width - Width of the toggle\n * @cssproperty --mdc-statictoggle-height - Height of the toggle\n * @cssproperty --mdc-statictoggle-width-compact - Width of the toggle when it's size is compact\n * @cssproperty --mdc-statictoggle-height-compact - Height of the toggle when it's size is compact\n * @cssproperty --mdc-statictoggle-border-radius - Border radius of the toggle\n * @cssproperty --mdc-statictoggle-border-radius-compact - Border radius of the toggle when it's size is compact\n * @cssproperty --mdc-statictoggle-border - Border of the toggle\n * @cssproperty --mdc-statictoggle-inactive-rest-color - Background color of the inactive toggle in rest state\n * @cssproperty --mdc-statictoggle-inactive-disabled-color - Background color of the inactive toggle in disabled state\n * @cssproperty --mdc-statictoggle-active-rest-color - Background color of the active toggle in rest state\n * @cssproperty --mdc-statictoggle-active-disabled-color - Background color of the active toggle in disabled state\n * @cssproperty --mdc-statictoggle-icon-color-normal - Color of the icon in normal state\n * @cssproperty --mdc-statictoggle-icon-color-disabled - Color of the icon in disabled state\n * @cssproperty --mdc-statictoggle-icon-background-color-normal - Background color of the icon in normal state\n * @cssproperty --mdc-statictoggle-icon-background-color-disabled - Background color of the icon in disabled state\n *\n * @csspart slider - The slider part of the toggle\n * @csspart toggle-icon - The icon part of the toggle\n *\n * @slot - Default slot for adding label text.\n */",
41379
41984
  "customElement": true
41380
41985
  }
41381
41986
  ],
@@ -43131,16 +43736,6 @@
43131
43736
  "description": "The placeholder text that is displayed when the textarea field is empty.",
43132
43737
  "attribute": "placeholder"
43133
43738
  },
43134
- {
43135
- "kind": "field",
43136
- "name": "readonly",
43137
- "type": {
43138
- "text": "boolean"
43139
- },
43140
- "default": "false",
43141
- "description": "readonly attribute of the textarea field. If true, the textarea field is read-only.",
43142
- "attribute": "readonly"
43143
- },
43144
43739
  {
43145
43740
  "kind": "field",
43146
43741
  "name": "rows",
@@ -43576,6 +44171,36 @@
43576
44171
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
43577
44172
  }
43578
44173
  },
44174
+ {
44175
+ "kind": "field",
44176
+ "name": "readonly",
44177
+ "type": {
44178
+ "text": "boolean"
44179
+ },
44180
+ "default": "false",
44181
+ "description": "Determines whether the form field is read-only.",
44182
+ "attribute": "readonly",
44183
+ "reflects": true,
44184
+ "inheritedFrom": {
44185
+ "name": "FormfieldWrapper",
44186
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
44187
+ }
44188
+ },
44189
+ {
44190
+ "kind": "field",
44191
+ "name": "softDisabled",
44192
+ "type": {
44193
+ "text": "boolean"
44194
+ },
44195
+ "default": "false",
44196
+ "description": "Determines whether the form field is soft-disabled.",
44197
+ "attribute": "soft-disabled",
44198
+ "reflects": true,
44199
+ "inheritedFrom": {
44200
+ "name": "FormfieldWrapper",
44201
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
44202
+ }
44203
+ },
43579
44204
  {
43580
44205
  "kind": "method",
43581
44206
  "name": "renderLabelElement",
@@ -43696,15 +44321,6 @@
43696
44321
  "description": "The placeholder text that is displayed when the textarea field is empty.",
43697
44322
  "fieldName": "placeholder"
43698
44323
  },
43699
- {
43700
- "name": "readonly",
43701
- "type": {
43702
- "text": "boolean"
43703
- },
43704
- "default": "false",
43705
- "description": "readonly attribute of the textarea field. If true, the textarea field is read-only.",
43706
- "fieldName": "readonly"
43707
- },
43708
44324
  {
43709
44325
  "name": "rows",
43710
44326
  "type": {
@@ -43955,6 +44571,32 @@
43955
44571
  "name": "FormfieldWrapper",
43956
44572
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
43957
44573
  }
44574
+ },
44575
+ {
44576
+ "name": "readonly",
44577
+ "type": {
44578
+ "text": "boolean"
44579
+ },
44580
+ "default": "false",
44581
+ "description": "Determines whether the form field is read-only.",
44582
+ "fieldName": "readonly",
44583
+ "inheritedFrom": {
44584
+ "name": "FormfieldWrapper",
44585
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
44586
+ }
44587
+ },
44588
+ {
44589
+ "name": "soft-disabled",
44590
+ "type": {
44591
+ "text": "boolean"
44592
+ },
44593
+ "default": "false",
44594
+ "description": "Determines whether the form field is soft-disabled.",
44595
+ "fieldName": "softDisabled",
44596
+ "inheritedFrom": {
44597
+ "name": "FormfieldWrapper",
44598
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
44599
+ }
43958
44600
  }
43959
44601
  ],
43960
44602
  "mixins": [
@@ -44693,7 +45335,7 @@
44693
45335
  "text": "void"
44694
45336
  }
44695
45337
  },
44696
- "description": "Toggles the state of the toggle element.\nIf the element is not disabled, then the checked property is toggled."
45338
+ "description": "Toggles the state of the toggle element.\nIf the element is not disabled, soft-disabled, or readonly, then the checked property is toggled."
44697
45339
  },
44698
45340
  {
44699
45341
  "kind": "method",
@@ -45002,6 +45644,36 @@
45002
45644
  "module": "components/formfieldwrapper/formfieldwrapper.component.js"
45003
45645
  }
45004
45646
  },
45647
+ {
45648
+ "kind": "field",
45649
+ "name": "readonly",
45650
+ "type": {
45651
+ "text": "boolean"
45652
+ },
45653
+ "default": "false",
45654
+ "description": "Determines whether the form field is read-only.",
45655
+ "attribute": "readonly",
45656
+ "reflects": true,
45657
+ "inheritedFrom": {
45658
+ "name": "FormfieldWrapper",
45659
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
45660
+ }
45661
+ },
45662
+ {
45663
+ "kind": "field",
45664
+ "name": "softDisabled",
45665
+ "type": {
45666
+ "text": "boolean"
45667
+ },
45668
+ "default": "false",
45669
+ "description": "Determines whether the form field is soft-disabled.",
45670
+ "attribute": "soft-disabled",
45671
+ "reflects": true,
45672
+ "inheritedFrom": {
45673
+ "name": "FormfieldWrapper",
45674
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
45675
+ }
45676
+ },
45005
45677
  {
45006
45678
  "kind": "method",
45007
45679
  "name": "renderLabelElement",
@@ -45287,6 +45959,32 @@
45287
45959
  "name": "FormfieldWrapper",
45288
45960
  "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
45289
45961
  }
45962
+ },
45963
+ {
45964
+ "name": "readonly",
45965
+ "type": {
45966
+ "text": "boolean"
45967
+ },
45968
+ "default": "false",
45969
+ "description": "Determines whether the form field is read-only.",
45970
+ "fieldName": "readonly",
45971
+ "inheritedFrom": {
45972
+ "name": "FormfieldWrapper",
45973
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
45974
+ }
45975
+ },
45976
+ {
45977
+ "name": "soft-disabled",
45978
+ "type": {
45979
+ "text": "boolean"
45980
+ },
45981
+ "default": "false",
45982
+ "description": "Determines whether the form field is soft-disabled.",
45983
+ "fieldName": "softDisabled",
45984
+ "inheritedFrom": {
45985
+ "name": "FormfieldWrapper",
45986
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
45987
+ }
45290
45988
  }
45291
45989
  ],
45292
45990
  "mixins": [