@momentum-design/components 0.60.0 → 0.61.1
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.
- package/dist/browser/index.js +55 -46
- package/dist/browser/index.js.map +2 -2
- package/dist/components/button/button.component.d.ts +8 -0
- package/dist/components/button/button.component.js +12 -0
- package/dist/components/button/button.constants.d.ts +1 -0
- package/dist/components/button/button.constants.js +1 -0
- package/dist/components/button/button.styles.js +9 -0
- package/dist/components/buttonsimple/buttonsimple.component.js +6 -4
- package/dist/custom-elements.json +1018 -991
- package/dist/react/index.d.ts +4 -4
- package/dist/react/index.js +4 -4
- package/package.json +1 -1
@@ -103,6 +103,7 @@
|
|
103
103
|
"description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
|
104
104
|
"default": "undefined",
|
105
105
|
"attribute": "soft-disabled",
|
106
|
+
"reflects": true,
|
106
107
|
"inheritedFrom": {
|
107
108
|
"name": "Buttonsimple",
|
108
109
|
"module": "components/buttonsimple/buttonsimple.component.js"
|
@@ -491,6 +492,67 @@
|
|
491
492
|
}
|
492
493
|
]
|
493
494
|
},
|
495
|
+
{
|
496
|
+
"kind": "javascript-module",
|
497
|
+
"path": "components/appheader/appheader.component.js",
|
498
|
+
"declarations": [
|
499
|
+
{
|
500
|
+
"kind": "class",
|
501
|
+
"description": "The `mdc-appheader` component provides a structured and accessible app header layout.\nIt consists of three primary sections: leading, center, and trailing.\n\n- The **leading section** typically holds a **brand logo**, **brand name** or **menu icon**.\n- The **center section** can contain a **search bar**, **icons** or action controls.\n- The **trailing section** generally includes a **profile avatar**, **additional icons** or **action controls**.",
|
502
|
+
"name": "Appheader",
|
503
|
+
"cssParts": [
|
504
|
+
{
|
505
|
+
"description": "The main container for styling the header.",
|
506
|
+
"name": "container"
|
507
|
+
},
|
508
|
+
{
|
509
|
+
"description": "The leading section of the header.",
|
510
|
+
"name": "leading-section"
|
511
|
+
},
|
512
|
+
{
|
513
|
+
"description": "The center section of the header.",
|
514
|
+
"name": "center-section"
|
515
|
+
},
|
516
|
+
{
|
517
|
+
"description": "The trailing section of the header.",
|
518
|
+
"name": "trailing-section"
|
519
|
+
}
|
520
|
+
],
|
521
|
+
"slots": [
|
522
|
+
{
|
523
|
+
"description": "Slot for the leading section (e.g., brand logo, brand name).",
|
524
|
+
"name": "leading"
|
525
|
+
},
|
526
|
+
{
|
527
|
+
"description": "Slot for the center section (e.g., search bar, icons).",
|
528
|
+
"name": "center"
|
529
|
+
},
|
530
|
+
{
|
531
|
+
"description": "Slot for the trailing section (e.g., profile avatar, icons).",
|
532
|
+
"name": "trailing"
|
533
|
+
}
|
534
|
+
],
|
535
|
+
"members": [],
|
536
|
+
"superclass": {
|
537
|
+
"name": "Component",
|
538
|
+
"module": "/src/models"
|
539
|
+
},
|
540
|
+
"tagName": "mdc-appheader",
|
541
|
+
"jsDoc": "/**\n * The `mdc-appheader` component provides a structured and accessible app header layout.\n * It consists of three primary sections: leading, center, and trailing.\n *\n * - The **leading section** typically holds a **brand logo**, **brand name** or **menu icon**.\n * - The **center section** can contain a **search bar**, **icons** or action controls.\n * - The **trailing section** generally includes a **profile avatar**, **additional icons** or **action controls**.\n *\n * @tagname mdc-appheader\n *\n * @slot leading - Slot for the leading section (e.g., brand logo, brand name).\n * @slot center - Slot for the center section (e.g., search bar, icons).\n * @slot trailing - Slot for the trailing section (e.g., profile avatar, icons).\n *\n * @csspart container - The main container for styling the header.\n * @csspart leading-section - The leading section of the header.\n * @csspart center-section - The center section of the header.\n * @csspart trailing-section - The trailing section of the header.\n */",
|
542
|
+
"customElement": true
|
543
|
+
}
|
544
|
+
],
|
545
|
+
"exports": [
|
546
|
+
{
|
547
|
+
"kind": "js",
|
548
|
+
"name": "default",
|
549
|
+
"declaration": {
|
550
|
+
"name": "Appheader",
|
551
|
+
"module": "components/appheader/appheader.component.js"
|
552
|
+
}
|
553
|
+
}
|
554
|
+
]
|
555
|
+
},
|
494
556
|
{
|
495
557
|
"kind": "javascript-module",
|
496
558
|
"path": "components/avatar/avatar.component.js",
|
@@ -735,67 +797,6 @@
|
|
735
797
|
}
|
736
798
|
]
|
737
799
|
},
|
738
|
-
{
|
739
|
-
"kind": "javascript-module",
|
740
|
-
"path": "components/appheader/appheader.component.js",
|
741
|
-
"declarations": [
|
742
|
-
{
|
743
|
-
"kind": "class",
|
744
|
-
"description": "The `mdc-appheader` component provides a structured and accessible app header layout.\nIt consists of three primary sections: leading, center, and trailing.\n\n- The **leading section** typically holds a **brand logo**, **brand name** or **menu icon**.\n- The **center section** can contain a **search bar**, **icons** or action controls.\n- The **trailing section** generally includes a **profile avatar**, **additional icons** or **action controls**.",
|
745
|
-
"name": "Appheader",
|
746
|
-
"cssParts": [
|
747
|
-
{
|
748
|
-
"description": "The main container for styling the header.",
|
749
|
-
"name": "container"
|
750
|
-
},
|
751
|
-
{
|
752
|
-
"description": "The leading section of the header.",
|
753
|
-
"name": "leading-section"
|
754
|
-
},
|
755
|
-
{
|
756
|
-
"description": "The center section of the header.",
|
757
|
-
"name": "center-section"
|
758
|
-
},
|
759
|
-
{
|
760
|
-
"description": "The trailing section of the header.",
|
761
|
-
"name": "trailing-section"
|
762
|
-
}
|
763
|
-
],
|
764
|
-
"slots": [
|
765
|
-
{
|
766
|
-
"description": "Slot for the leading section (e.g., brand logo, brand name).",
|
767
|
-
"name": "leading"
|
768
|
-
},
|
769
|
-
{
|
770
|
-
"description": "Slot for the center section (e.g., search bar, icons).",
|
771
|
-
"name": "center"
|
772
|
-
},
|
773
|
-
{
|
774
|
-
"description": "Slot for the trailing section (e.g., profile avatar, icons).",
|
775
|
-
"name": "trailing"
|
776
|
-
}
|
777
|
-
],
|
778
|
-
"members": [],
|
779
|
-
"superclass": {
|
780
|
-
"name": "Component",
|
781
|
-
"module": "/src/models"
|
782
|
-
},
|
783
|
-
"tagName": "mdc-appheader",
|
784
|
-
"jsDoc": "/**\n * The `mdc-appheader` component provides a structured and accessible app header layout.\n * It consists of three primary sections: leading, center, and trailing.\n *\n * - The **leading section** typically holds a **brand logo**, **brand name** or **menu icon**.\n * - The **center section** can contain a **search bar**, **icons** or action controls.\n * - The **trailing section** generally includes a **profile avatar**, **additional icons** or **action controls**.\n *\n * @tagname mdc-appheader\n *\n * @slot leading - Slot for the leading section (e.g., brand logo, brand name).\n * @slot center - Slot for the center section (e.g., search bar, icons).\n * @slot trailing - Slot for the trailing section (e.g., profile avatar, icons).\n *\n * @csspart container - The main container for styling the header.\n * @csspart leading-section - The leading section of the header.\n * @csspart center-section - The center section of the header.\n * @csspart trailing-section - The trailing section of the header.\n */",
|
785
|
-
"customElement": true
|
786
|
-
}
|
787
|
-
],
|
788
|
-
"exports": [
|
789
|
-
{
|
790
|
-
"kind": "js",
|
791
|
-
"name": "default",
|
792
|
-
"declaration": {
|
793
|
-
"name": "Appheader",
|
794
|
-
"module": "components/appheader/appheader.component.js"
|
795
|
-
}
|
796
|
-
}
|
797
|
-
]
|
798
|
-
},
|
799
800
|
{
|
800
801
|
"kind": "javascript-module",
|
801
802
|
"path": "components/avatarbutton/avatarbutton.component.js",
|
@@ -990,6 +991,7 @@
|
|
990
991
|
"description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
|
991
992
|
"default": "undefined",
|
992
993
|
"attribute": "soft-disabled",
|
994
|
+
"reflects": true,
|
993
995
|
"inheritedFrom": {
|
994
996
|
"name": "Buttonsimple",
|
995
997
|
"module": "components/buttonsimple/buttonsimple.component.js"
|
@@ -1963,6 +1965,17 @@
|
|
1963
1965
|
"module": "components/buttonsimple/buttonsimple.component.js"
|
1964
1966
|
}
|
1965
1967
|
},
|
1968
|
+
{
|
1969
|
+
"kind": "field",
|
1970
|
+
"name": "inverted",
|
1971
|
+
"type": {
|
1972
|
+
"text": "boolean"
|
1973
|
+
},
|
1974
|
+
"description": "The button color can be inverted by setting the inverted attribute to true.\n\nOnly applies when variant is set to `primary`, color is set to `default`\nand button is not `active`.",
|
1975
|
+
"default": "false",
|
1976
|
+
"attribute": "inverted",
|
1977
|
+
"reflects": true
|
1978
|
+
},
|
1966
1979
|
{
|
1967
1980
|
"kind": "field",
|
1968
1981
|
"name": "role",
|
@@ -2173,6 +2186,7 @@
|
|
2173
2186
|
"description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
|
2174
2187
|
"default": "undefined",
|
2175
2188
|
"attribute": "soft-disabled",
|
2189
|
+
"reflects": true,
|
2176
2190
|
"inheritedFrom": {
|
2177
2191
|
"name": "Buttonsimple",
|
2178
2192
|
"module": "components/buttonsimple/buttonsimple.component.js"
|
@@ -2369,6 +2383,15 @@
|
|
2369
2383
|
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
2370
2384
|
}
|
2371
2385
|
},
|
2386
|
+
{
|
2387
|
+
"name": "inverted",
|
2388
|
+
"type": {
|
2389
|
+
"text": "boolean"
|
2390
|
+
},
|
2391
|
+
"description": "The button color can be inverted by setting the inverted attribute to true.\n\nOnly applies when variant is set to `primary`, color is set to `default`\nand button is not `active`.",
|
2392
|
+
"default": "false",
|
2393
|
+
"fieldName": "inverted"
|
2394
|
+
},
|
2372
2395
|
{
|
2373
2396
|
"name": "role",
|
2374
2397
|
"description": "This property defines the ARIA role for the element. By default, it is set to 'button'.\nConsumers should override this role when:\n- The element is being used in a context where a different role is more appropriate.\n- Custom behaviors are implemented that require a specific ARIA role for accessibility purposes.",
|
@@ -3213,7 +3236,8 @@
|
|
3213
3236
|
},
|
3214
3237
|
"description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
|
3215
3238
|
"default": "undefined",
|
3216
|
-
"attribute": "soft-disabled"
|
3239
|
+
"attribute": "soft-disabled",
|
3240
|
+
"reflects": true
|
3217
3241
|
},
|
3218
3242
|
{
|
3219
3243
|
"kind": "field",
|
@@ -4281,6 +4305,7 @@
|
|
4281
4305
|
"description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
|
4282
4306
|
"default": "undefined",
|
4283
4307
|
"attribute": "soft-disabled",
|
4308
|
+
"reflects": true,
|
4284
4309
|
"inheritedFrom": {
|
4285
4310
|
"name": "Buttonsimple",
|
4286
4311
|
"module": "components/buttonsimple/buttonsimple.component.js"
|
@@ -6701,6 +6726,7 @@
|
|
6701
6726
|
"description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
|
6702
6727
|
"default": "undefined",
|
6703
6728
|
"attribute": "soft-disabled",
|
6729
|
+
"reflects": true,
|
6704
6730
|
"inheritedFrom": {
|
6705
6731
|
"name": "Buttonsimple",
|
6706
6732
|
"module": "components/buttonsimple/buttonsimple.component.js"
|
@@ -12808,99 +12834,269 @@
|
|
12808
12834
|
},
|
12809
12835
|
{
|
12810
12836
|
"kind": "javascript-module",
|
12811
|
-
"path": "components/
|
12837
|
+
"path": "components/presence/presence.component.js",
|
12812
12838
|
"declarations": [
|
12813
12839
|
{
|
12814
12840
|
"kind": "class",
|
12815
|
-
"description": "mdc-
|
12816
|
-
"name": "
|
12841
|
+
"description": "The `mdc-presence` component is a versatile UI element used to\ndisplay the presence status of a user or entity within an avatar component.\n\nThis component is ideal for use within avatar UIs where the presence status\nneeds to be visually represented.",
|
12842
|
+
"name": "Presence",
|
12817
12843
|
"cssProperties": [
|
12818
12844
|
{
|
12819
|
-
"description": "
|
12820
|
-
"name": "--mdc-
|
12845
|
+
"description": "The background color of the presence type active.",
|
12846
|
+
"name": "--mdc-presence-active-background-color"
|
12821
12847
|
},
|
12822
12848
|
{
|
12823
|
-
"description": "
|
12824
|
-
"name": "--mdc-
|
12849
|
+
"description": "The background color of the presence type away.",
|
12850
|
+
"name": "--mdc-presence-away-background-color"
|
12825
12851
|
},
|
12826
12852
|
{
|
12827
|
-
"description": "
|
12828
|
-
"name": "--mdc-
|
12853
|
+
"description": "The background color of the presence type away-calling.",
|
12854
|
+
"name": "--mdc-presence-away-calling-background-color"
|
12829
12855
|
},
|
12830
12856
|
{
|
12831
|
-
"description": "
|
12832
|
-
"name": "--mdc-
|
12857
|
+
"description": "The background color of the presence type busy.",
|
12858
|
+
"name": "--mdc-presence-busy-background-color"
|
12833
12859
|
},
|
12834
12860
|
{
|
12835
|
-
"description": "The
|
12836
|
-
"name": "--mdc-
|
12861
|
+
"description": "The background color of the presence type dnd.",
|
12862
|
+
"name": "--mdc-presence-dnd-background-color"
|
12837
12863
|
},
|
12838
12864
|
{
|
12839
|
-
"description": "The
|
12840
|
-
"name": "--mdc-
|
12865
|
+
"description": "The background color of the presence type meeting.",
|
12866
|
+
"name": "--mdc-presence-meeting-background-color"
|
12841
12867
|
},
|
12842
12868
|
{
|
12843
|
-
"description": "
|
12844
|
-
"name": "--mdc-
|
12869
|
+
"description": "The background color of the presence type on-call.",
|
12870
|
+
"name": "--mdc-presence-on-call-background-color"
|
12845
12871
|
},
|
12846
12872
|
{
|
12847
|
-
"description": "
|
12848
|
-
"name": "--mdc-
|
12873
|
+
"description": "The background color of the presence type on-device.",
|
12874
|
+
"name": "--mdc-presence-on-device-background-color"
|
12849
12875
|
},
|
12850
12876
|
{
|
12851
|
-
"description": "
|
12852
|
-
"name": "--mdc-
|
12877
|
+
"description": "The background color of the presence type on-mobile.",
|
12878
|
+
"name": "--mdc-presence-on-mobile-background-color"
|
12853
12879
|
},
|
12854
12880
|
{
|
12855
|
-
"description": "
|
12856
|
-
"name": "--mdc-
|
12881
|
+
"description": "The background color of the presence type pause.",
|
12882
|
+
"name": "--mdc-presence-pause-background-color"
|
12857
12883
|
},
|
12858
12884
|
{
|
12859
|
-
"description": "
|
12860
|
-
"name": "--mdc-
|
12885
|
+
"description": "The background color of the presence type pto.",
|
12886
|
+
"name": "--mdc-presence-pto-background-color"
|
12887
|
+
},
|
12888
|
+
{
|
12889
|
+
"description": "The background color of the presence type presenting.",
|
12890
|
+
"name": "--mdc-presence-presenting-background-color"
|
12891
|
+
},
|
12892
|
+
{
|
12893
|
+
"description": "The background color of the presence type quiet.",
|
12894
|
+
"name": "--mdc-presence-quiet-background-color"
|
12895
|
+
},
|
12896
|
+
{
|
12897
|
+
"description": "The background color of the presence type scheduled.",
|
12898
|
+
"name": "--mdc-presence-scheduled-background-color"
|
12899
|
+
},
|
12900
|
+
{
|
12901
|
+
"description": "The background color of the presence type overlay.",
|
12902
|
+
"name": "--mdc-presence-overlay-background-color"
|
12861
12903
|
}
|
12862
12904
|
],
|
12863
12905
|
"members": [
|
12864
12906
|
{
|
12865
12907
|
"kind": "field",
|
12866
|
-
"name": "
|
12908
|
+
"name": "type",
|
12867
12909
|
"type": {
|
12868
|
-
"text": "
|
12910
|
+
"text": "PresenceType"
|
12869
12911
|
},
|
12870
|
-
"description": "
|
12871
|
-
"default": "
|
12872
|
-
"attribute": "
|
12912
|
+
"description": "Supported presence types:\n- `active`\n- `away`\n- `away-calling`\n- `busy`\n- `dnd`\n- `meeting`\n- `on-call`\n- `on-device`\n- `on-mobile`\n- `pause`\n- `pto`\n- `presenting`\n- `quiet`\n- `scheduled`",
|
12913
|
+
"default": "active",
|
12914
|
+
"attribute": "type",
|
12873
12915
|
"reflects": true
|
12874
12916
|
},
|
12875
12917
|
{
|
12876
12918
|
"kind": "field",
|
12877
|
-
"name": "
|
12919
|
+
"name": "size",
|
12878
12920
|
"type": {
|
12879
|
-
"text": "
|
12921
|
+
"text": "PresenceSize"
|
12880
12922
|
},
|
12881
|
-
"
|
12882
|
-
"
|
12883
|
-
"attribute": "
|
12923
|
+
"description": "Acceptable values include:\n- XX_SMALL\n- X_SMALL\n- SMALL\n- MIDSIZE\n- LARGE\n- X_LARGE\n- XX_LARGE\n\nPresence icons are minimum 14px in size, meaning XX_Small, X_Small and Small presence\nicons will be no smaller than 14px.",
|
12924
|
+
"default": "small",
|
12925
|
+
"attribute": "size",
|
12884
12926
|
"reflects": true
|
12885
12927
|
},
|
12886
12928
|
{
|
12887
12929
|
"kind": "field",
|
12888
|
-
"name": "
|
12889
|
-
"
|
12890
|
-
|
12891
|
-
|
12892
|
-
|
12893
|
-
|
12894
|
-
"
|
12930
|
+
"name": "iconSize",
|
12931
|
+
"privacy": "private",
|
12932
|
+
"description": "Get the size of the presence icon based on the given size type",
|
12933
|
+
"readonly": true
|
12934
|
+
},
|
12935
|
+
{
|
12936
|
+
"kind": "field",
|
12937
|
+
"name": "icon",
|
12938
|
+
"privacy": "private",
|
12939
|
+
"description": "Get the icon name based on the presence type",
|
12940
|
+
"readonly": true
|
12895
12941
|
},
|
12896
12942
|
{
|
12897
12943
|
"kind": "method",
|
12898
|
-
"name": "
|
12944
|
+
"name": "handleOnLoad",
|
12899
12945
|
"privacy": "private",
|
12900
|
-
"description": "Determines the validation state (success, error, or default) based on progress value and error state.",
|
12901
12946
|
"return": {
|
12902
12947
|
"type": {
|
12903
|
-
"text": ""
|
12948
|
+
"text": "void"
|
12949
|
+
}
|
12950
|
+
},
|
12951
|
+
"description": "Handles the successful load of an icon.\nSets the `currentIconType` property to match the `type` property."
|
12952
|
+
},
|
12953
|
+
{
|
12954
|
+
"kind": "method",
|
12955
|
+
"name": "handleOnError",
|
12956
|
+
"privacy": "private",
|
12957
|
+
"return": {
|
12958
|
+
"type": {
|
12959
|
+
"text": "void"
|
12960
|
+
}
|
12961
|
+
},
|
12962
|
+
"description": "Handles an error that occurs when loading an icon."
|
12963
|
+
}
|
12964
|
+
],
|
12965
|
+
"attributes": [
|
12966
|
+
{
|
12967
|
+
"name": "type",
|
12968
|
+
"type": {
|
12969
|
+
"text": "PresenceType"
|
12970
|
+
},
|
12971
|
+
"description": "Supported presence types:\n- `active`\n- `away`\n- `away-calling`\n- `busy`\n- `dnd`\n- `meeting`\n- `on-call`\n- `on-device`\n- `on-mobile`\n- `pause`\n- `pto`\n- `presenting`\n- `quiet`\n- `scheduled`",
|
12972
|
+
"default": "active",
|
12973
|
+
"fieldName": "type"
|
12974
|
+
},
|
12975
|
+
{
|
12976
|
+
"name": "size",
|
12977
|
+
"type": {
|
12978
|
+
"text": "PresenceSize"
|
12979
|
+
},
|
12980
|
+
"description": "Acceptable values include:\n- XX_SMALL\n- X_SMALL\n- SMALL\n- MIDSIZE\n- LARGE\n- X_LARGE\n- XX_LARGE\n\nPresence icons are minimum 14px in size, meaning XX_Small, X_Small and Small presence\nicons will be no smaller than 14px.",
|
12981
|
+
"default": "small",
|
12982
|
+
"fieldName": "size"
|
12983
|
+
}
|
12984
|
+
],
|
12985
|
+
"superclass": {
|
12986
|
+
"name": "Component",
|
12987
|
+
"module": "/src/models"
|
12988
|
+
},
|
12989
|
+
"tagName": "mdc-presence",
|
12990
|
+
"jsDoc": "/**\n * The `mdc-presence` component is a versatile UI element used to\n * display the presence status of a user or entity within an avatar component.\n *\n * This component is ideal for use within avatar UIs where the presence status\n * needs to be visually represented.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-presence\n *\n * @cssproperty --mdc-presence-active-background-color - The background color of the presence type active.\n * @cssproperty --mdc-presence-away-background-color - The background color of the presence type away.\n * @cssproperty --mdc-presence-away-calling-background-color - The background color of the presence type away-calling.\n * @cssproperty --mdc-presence-busy-background-color - The background color of the presence type busy.\n * @cssproperty --mdc-presence-dnd-background-color - The background color of the presence type dnd.\n * @cssproperty --mdc-presence-meeting-background-color - The background color of the presence type meeting.\n * @cssproperty --mdc-presence-on-call-background-color - The background color of the presence type on-call.\n * @cssproperty --mdc-presence-on-device-background-color - The background color of the presence type on-device.\n * @cssproperty --mdc-presence-on-mobile-background-color - The background color of the presence type on-mobile.\n * @cssproperty --mdc-presence-pause-background-color - The background color of the presence type pause.\n * @cssproperty --mdc-presence-pto-background-color - The background color of the presence type pto.\n * @cssproperty --mdc-presence-presenting-background-color - The background color of the presence type presenting.\n * @cssproperty --mdc-presence-quiet-background-color - The background color of the presence type quiet.\n * @cssproperty --mdc-presence-scheduled-background-color - The background color of the presence type scheduled.\n * @cssproperty --mdc-presence-overlay-background-color - The background color of the presence type overlay.\n */",
|
12991
|
+
"customElement": true
|
12992
|
+
}
|
12993
|
+
],
|
12994
|
+
"exports": [
|
12995
|
+
{
|
12996
|
+
"kind": "js",
|
12997
|
+
"name": "default",
|
12998
|
+
"declaration": {
|
12999
|
+
"name": "Presence",
|
13000
|
+
"module": "components/presence/presence.component.js"
|
13001
|
+
}
|
13002
|
+
}
|
13003
|
+
]
|
13004
|
+
},
|
13005
|
+
{
|
13006
|
+
"kind": "javascript-module",
|
13007
|
+
"path": "components/progressbar/progressbar.component.js",
|
13008
|
+
"declarations": [
|
13009
|
+
{
|
13010
|
+
"kind": "class",
|
13011
|
+
"description": "mdc-progressbar component visually represents a progress indicator, typically used to show\nthe completion state of an ongoing process (e.g., loading, file upload, etc.).\nIt contains an optional label and an optional helper text.\n\n- It supports mainly two types: Default and Inline\n- It supports three validation variants: Default, Success and Error.\n\nThis component is created by extending FormfieldWrapper.",
|
13012
|
+
"name": "Progressbar",
|
13013
|
+
"cssProperties": [
|
13014
|
+
{
|
13015
|
+
"description": "Background color of the progressbar when inactive.",
|
13016
|
+
"name": "--mdc-progressbar-default-background-color"
|
13017
|
+
},
|
13018
|
+
{
|
13019
|
+
"description": "Background color of the progressbar when active.",
|
13020
|
+
"name": "--mdc-progressbar-default-active-background-color"
|
13021
|
+
},
|
13022
|
+
{
|
13023
|
+
"description": "Background color of the progressbar when in success state.",
|
13024
|
+
"name": "--mdc-progressbar-success-background-color"
|
13025
|
+
},
|
13026
|
+
{
|
13027
|
+
"description": "Background color of the progressbar when in error state.",
|
13028
|
+
"name": "--mdc-progressbar-error-background-color"
|
13029
|
+
},
|
13030
|
+
{
|
13031
|
+
"description": "The height of the progressbar.",
|
13032
|
+
"name": "--mdc-progressbar-height"
|
13033
|
+
},
|
13034
|
+
{
|
13035
|
+
"description": "The border radius of the progressbar.",
|
13036
|
+
"name": "--mdc-progressbar-border-radius"
|
13037
|
+
},
|
13038
|
+
{
|
13039
|
+
"description": "Color of the progressbar label text.",
|
13040
|
+
"name": "--mdc-progressbar-label-color"
|
13041
|
+
},
|
13042
|
+
{
|
13043
|
+
"description": "Line height of the label text.",
|
13044
|
+
"name": "--mdc-progressbar-label-lineheight"
|
13045
|
+
},
|
13046
|
+
{
|
13047
|
+
"description": "Font size of the label text.",
|
13048
|
+
"name": "--mdc-progressbar-label-fontsize"
|
13049
|
+
},
|
13050
|
+
{
|
13051
|
+
"description": "Font weight of the label text.",
|
13052
|
+
"name": "--mdc-progressbar-label-fontweight"
|
13053
|
+
},
|
13054
|
+
{
|
13055
|
+
"description": "Color of the help text.",
|
13056
|
+
"name": "--mdc-progressbar-help-text-color"
|
13057
|
+
}
|
13058
|
+
],
|
13059
|
+
"members": [
|
13060
|
+
{
|
13061
|
+
"kind": "field",
|
13062
|
+
"name": "variant",
|
13063
|
+
"type": {
|
13064
|
+
"text": "Variant"
|
13065
|
+
},
|
13066
|
+
"description": "Types of the progressbar\n- **Default**\n- **Inline**",
|
13067
|
+
"default": "default",
|
13068
|
+
"attribute": "variant",
|
13069
|
+
"reflects": true
|
13070
|
+
},
|
13071
|
+
{
|
13072
|
+
"kind": "field",
|
13073
|
+
"name": "value",
|
13074
|
+
"type": {
|
13075
|
+
"text": "string"
|
13076
|
+
},
|
13077
|
+
"default": "'0'",
|
13078
|
+
"description": "The current progress as a percentage, 0 to 100.\nThe value will be clamped between 0 and 100.",
|
13079
|
+
"attribute": "value",
|
13080
|
+
"reflects": true
|
13081
|
+
},
|
13082
|
+
{
|
13083
|
+
"kind": "field",
|
13084
|
+
"name": "error",
|
13085
|
+
"type": {
|
13086
|
+
"text": "boolean"
|
13087
|
+
},
|
13088
|
+
"default": "false",
|
13089
|
+
"description": "Define error state of the progressbar\n- **true**\n- **false**",
|
13090
|
+
"attribute": "error"
|
13091
|
+
},
|
13092
|
+
{
|
13093
|
+
"kind": "method",
|
13094
|
+
"name": "getValidationVariant",
|
13095
|
+
"privacy": "private",
|
13096
|
+
"description": "Determines the validation state (success, error, or default) based on progress value and error state.",
|
13097
|
+
"return": {
|
13098
|
+
"type": {
|
13099
|
+
"text": ""
|
12904
13100
|
}
|
12905
13101
|
}
|
12906
13102
|
},
|
@@ -13791,189 +13987,221 @@
|
|
13791
13987
|
},
|
13792
13988
|
{
|
13793
13989
|
"kind": "javascript-module",
|
13794
|
-
"path": "components/
|
13990
|
+
"path": "components/radio/radio.component.js",
|
13795
13991
|
"declarations": [
|
13796
13992
|
{
|
13797
13993
|
"kind": "class",
|
13798
|
-
"description": "
|
13799
|
-
"name": "
|
13994
|
+
"description": "Radio allow users to select single options from a list or turn an item/feature on or off.\nThese are often used in forms, settings, and selection in lists.\n\nA radio component contains an optional label, optional info icon and an optional helper text.",
|
13995
|
+
"name": "Radio",
|
13800
13996
|
"cssProperties": [
|
13801
13997
|
{
|
13802
|
-
"description": "
|
13803
|
-
"name": "--mdc-
|
13804
|
-
},
|
13805
|
-
{
|
13806
|
-
"description": "The background color of the presence type away.",
|
13807
|
-
"name": "--mdc-presence-away-background-color"
|
13808
|
-
},
|
13809
|
-
{
|
13810
|
-
"description": "The background color of the presence type away-calling.",
|
13811
|
-
"name": "--mdc-presence-away-calling-background-color"
|
13812
|
-
},
|
13813
|
-
{
|
13814
|
-
"description": "The background color of the presence type busy.",
|
13815
|
-
"name": "--mdc-presence-busy-background-color"
|
13816
|
-
},
|
13817
|
-
{
|
13818
|
-
"description": "The background color of the presence type dnd.",
|
13819
|
-
"name": "--mdc-presence-dnd-background-color"
|
13820
|
-
},
|
13821
|
-
{
|
13822
|
-
"description": "The background color of the presence type meeting.",
|
13823
|
-
"name": "--mdc-presence-meeting-background-color"
|
13824
|
-
},
|
13825
|
-
{
|
13826
|
-
"description": "The background color of the presence type on-call.",
|
13827
|
-
"name": "--mdc-presence-on-call-background-color"
|
13828
|
-
},
|
13829
|
-
{
|
13830
|
-
"description": "The background color of the presence type on-device.",
|
13831
|
-
"name": "--mdc-presence-on-device-background-color"
|
13998
|
+
"description": "color of the label when disabled",
|
13999
|
+
"name": "--mdc-radio-text-disabled-color"
|
13832
14000
|
},
|
13833
14001
|
{
|
13834
|
-
"description": "
|
13835
|
-
"name": "--mdc-
|
14002
|
+
"description": "color of the radio button when inactive and hovered",
|
14003
|
+
"name": "--mdc-radio-control-inactive-hover"
|
13836
14004
|
},
|
13837
14005
|
{
|
13838
|
-
"description": "
|
13839
|
-
"name": "--mdc-
|
14006
|
+
"description": "color of the radio button when inactive and pressed",
|
14007
|
+
"name": "--mdc-radio-control-inactive-pressed-color"
|
13840
14008
|
},
|
13841
14009
|
{
|
13842
|
-
"description": "
|
13843
|
-
"name": "--mdc-
|
14010
|
+
"description": "color of the radio button when active and hovered",
|
14011
|
+
"name": "--mdc-radio-control-active-hover-color"
|
13844
14012
|
},
|
13845
14013
|
{
|
13846
|
-
"description": "
|
13847
|
-
"name": "--mdc-
|
14014
|
+
"description": "color of the radio button when active and pressed",
|
14015
|
+
"name": "--mdc-radio-control-active-pressed-color"
|
13848
14016
|
},
|
13849
14017
|
{
|
13850
|
-
"description": "
|
13851
|
-
"name": "--mdc-
|
14018
|
+
"description": "color of the radio button when disabled",
|
14019
|
+
"name": "--mdc-radio-disabled-border-color"
|
13852
14020
|
},
|
13853
14021
|
{
|
13854
|
-
"description": "
|
13855
|
-
"name": "--mdc-
|
14022
|
+
"description": "color of the radio button when active and disabled",
|
14023
|
+
"name": "--mdc-radio-control-active-disabled-background"
|
13856
14024
|
},
|
13857
14025
|
{
|
13858
|
-
"description": "
|
13859
|
-
"name": "--mdc-
|
14026
|
+
"description": "color of the radio button when inactive and disabled",
|
14027
|
+
"name": "--mdc-radio-control-inactive-disabled-background"
|
13860
14028
|
}
|
13861
14029
|
],
|
13862
14030
|
"members": [
|
13863
14031
|
{
|
13864
14032
|
"kind": "field",
|
13865
|
-
"name": "
|
14033
|
+
"name": "checked",
|
13866
14034
|
"type": {
|
13867
|
-
"text": "
|
14035
|
+
"text": "boolean"
|
13868
14036
|
},
|
13869
|
-
"
|
13870
|
-
"
|
13871
|
-
"attribute": "
|
14037
|
+
"default": "false",
|
14038
|
+
"description": "Determines whether the radio is selected or unselected.",
|
14039
|
+
"attribute": "checked",
|
13872
14040
|
"reflects": true
|
13873
14041
|
},
|
13874
14042
|
{
|
13875
14043
|
"kind": "field",
|
13876
|
-
"name": "
|
14044
|
+
"name": "readonly",
|
13877
14045
|
"type": {
|
13878
|
-
"text": "
|
14046
|
+
"text": "boolean"
|
13879
14047
|
},
|
13880
|
-
"
|
13881
|
-
"
|
13882
|
-
"attribute": "
|
14048
|
+
"default": "false",
|
14049
|
+
"description": "Determines whether the radio is read-only.",
|
14050
|
+
"attribute": "readonly",
|
13883
14051
|
"reflects": true
|
13884
14052
|
},
|
13885
14053
|
{
|
13886
14054
|
"kind": "field",
|
13887
|
-
"name": "
|
13888
|
-
"
|
13889
|
-
|
13890
|
-
|
13891
|
-
|
13892
|
-
|
13893
|
-
"
|
13894
|
-
"
|
13895
|
-
"privacy": "private",
|
13896
|
-
"description": "Get the icon name based on the presence type",
|
13897
|
-
"readonly": true
|
14055
|
+
"name": "autofocus",
|
14056
|
+
"type": {
|
14057
|
+
"text": "boolean"
|
14058
|
+
},
|
14059
|
+
"default": "false",
|
14060
|
+
"description": "Automatically focus on the element when the page loads.\n[MDN Reference](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autofocus)",
|
14061
|
+
"attribute": "autofocus",
|
14062
|
+
"reflects": true
|
13898
14063
|
},
|
13899
14064
|
{
|
13900
14065
|
"kind": "method",
|
13901
|
-
"name": "
|
14066
|
+
"name": "getAllRadiosWithinSameGroup",
|
14067
|
+
"privacy": "private",
|
14068
|
+
"return": {
|
14069
|
+
"type": {
|
14070
|
+
"text": "Radio[]"
|
14071
|
+
}
|
14072
|
+
},
|
14073
|
+
"description": "Returns all radios within the same group (name)."
|
14074
|
+
},
|
14075
|
+
{
|
14076
|
+
"kind": "method",
|
14077
|
+
"name": "dispatchChangeEvent",
|
13902
14078
|
"privacy": "private",
|
13903
14079
|
"return": {
|
13904
14080
|
"type": {
|
13905
14081
|
"text": "void"
|
13906
14082
|
}
|
13907
14083
|
},
|
13908
|
-
"
|
14084
|
+
"parameters": [
|
14085
|
+
{
|
14086
|
+
"name": "event",
|
14087
|
+
"type": {
|
14088
|
+
"text": "Event"
|
14089
|
+
}
|
14090
|
+
}
|
14091
|
+
],
|
14092
|
+
"description": "The 'change' event does not bubble up through the shadow DOM as it was not composed.\nTherefore, we need to re-dispatch the same event to ensure it is propagated correctly.\nRead more: https://developer.mozilla.org/en-US/docs/Web/API/Event/composed"
|
13909
14093
|
},
|
13910
14094
|
{
|
13911
14095
|
"kind": "method",
|
13912
|
-
"name": "
|
14096
|
+
"name": "setGroupValidity",
|
14097
|
+
"privacy": "private",
|
14098
|
+
"parameters": [
|
14099
|
+
{
|
14100
|
+
"name": "radios",
|
14101
|
+
"type": {
|
14102
|
+
"text": "Radio[]"
|
14103
|
+
},
|
14104
|
+
"description": "Array of radios of the same group"
|
14105
|
+
},
|
14106
|
+
{
|
14107
|
+
"name": "isValid",
|
14108
|
+
"type": {
|
14109
|
+
"text": "boolean"
|
14110
|
+
},
|
14111
|
+
"description": "Boolean value to set the validity of the group"
|
14112
|
+
}
|
14113
|
+
],
|
14114
|
+
"description": "Sets the validity of the group of radios."
|
14115
|
+
},
|
14116
|
+
{
|
14117
|
+
"kind": "method",
|
14118
|
+
"name": "setActualFormValue",
|
14119
|
+
"privacy": "private",
|
14120
|
+
"description": "Updates the form value to reflect the current state of the radio.\nIf checked, the value is set to the user-provided value.\nIf unchecked, the value is set to null."
|
14121
|
+
},
|
14122
|
+
{
|
14123
|
+
"kind": "method",
|
14124
|
+
"name": "handleChange",
|
13913
14125
|
"privacy": "private",
|
13914
14126
|
"return": {
|
13915
14127
|
"type": {
|
13916
14128
|
"text": "void"
|
13917
14129
|
}
|
13918
14130
|
},
|
13919
|
-
"
|
13920
|
-
|
13921
|
-
|
13922
|
-
|
14131
|
+
"parameters": [
|
14132
|
+
{
|
14133
|
+
"name": "event",
|
14134
|
+
"type": {
|
14135
|
+
"text": "Event"
|
14136
|
+
}
|
14137
|
+
}
|
14138
|
+
],
|
14139
|
+
"description": "Handles the change event on the radio element.\nThis will toggle the state of the radio element.\nDispatches the change event."
|
14140
|
+
},
|
13923
14141
|
{
|
13924
|
-
"
|
13925
|
-
"
|
13926
|
-
|
14142
|
+
"kind": "method",
|
14143
|
+
"name": "updateRadio",
|
14144
|
+
"privacy": "private",
|
14145
|
+
"parameters": [
|
14146
|
+
{
|
14147
|
+
"name": "enabledRadios",
|
14148
|
+
"type": {
|
14149
|
+
"text": "Radio[]"
|
14150
|
+
},
|
14151
|
+
"description": "An array of enabled radio buttons within the same group."
|
14152
|
+
},
|
14153
|
+
{
|
14154
|
+
"name": "index",
|
14155
|
+
"type": {
|
14156
|
+
"text": "number"
|
14157
|
+
},
|
14158
|
+
"description": "The index of the radio button to be updated within the enabled radios array."
|
14159
|
+
},
|
14160
|
+
{
|
14161
|
+
"name": "event",
|
14162
|
+
"type": {
|
14163
|
+
"text": "Event"
|
14164
|
+
},
|
14165
|
+
"description": "The event that triggered the update."
|
14166
|
+
}
|
14167
|
+
],
|
14168
|
+
"description": "Updates the state of the radio button at the specified index within the enabled radios.\nFocuses the radio button and triggers the change event if the radio button is not read-only."
|
14169
|
+
},
|
14170
|
+
{
|
14171
|
+
"kind": "method",
|
14172
|
+
"name": "handleKeyDown",
|
14173
|
+
"privacy": "private",
|
14174
|
+
"return": {
|
14175
|
+
"type": {
|
14176
|
+
"text": "void"
|
14177
|
+
}
|
13927
14178
|
},
|
13928
|
-
"
|
13929
|
-
|
13930
|
-
|
14179
|
+
"parameters": [
|
14180
|
+
{
|
14181
|
+
"name": "event",
|
14182
|
+
"type": {
|
14183
|
+
"text": "KeyboardEvent"
|
14184
|
+
}
|
14185
|
+
}
|
14186
|
+
],
|
14187
|
+
"description": "Handles the keydown event (Arrow Up/Down/Left/Right) on the radio element."
|
13931
14188
|
},
|
13932
14189
|
{
|
13933
|
-
"
|
13934
|
-
"
|
13935
|
-
|
14190
|
+
"kind": "method",
|
14191
|
+
"name": "updateTabIndex",
|
14192
|
+
"privacy": "private",
|
14193
|
+
"return": {
|
14194
|
+
"type": {
|
14195
|
+
"text": "void"
|
14196
|
+
}
|
13936
14197
|
},
|
13937
|
-
"description": "
|
13938
|
-
|
13939
|
-
"fieldName": "size"
|
13940
|
-
}
|
13941
|
-
],
|
13942
|
-
"superclass": {
|
13943
|
-
"name": "Component",
|
13944
|
-
"module": "/src/models"
|
13945
|
-
},
|
13946
|
-
"tagName": "mdc-presence",
|
13947
|
-
"jsDoc": "/**\n * The `mdc-presence` component is a versatile UI element used to\n * display the presence status of a user or entity within an avatar component.\n *\n * This component is ideal for use within avatar UIs where the presence status\n * needs to be visually represented.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-presence\n *\n * @cssproperty --mdc-presence-active-background-color - The background color of the presence type active.\n * @cssproperty --mdc-presence-away-background-color - The background color of the presence type away.\n * @cssproperty --mdc-presence-away-calling-background-color - The background color of the presence type away-calling.\n * @cssproperty --mdc-presence-busy-background-color - The background color of the presence type busy.\n * @cssproperty --mdc-presence-dnd-background-color - The background color of the presence type dnd.\n * @cssproperty --mdc-presence-meeting-background-color - The background color of the presence type meeting.\n * @cssproperty --mdc-presence-on-call-background-color - The background color of the presence type on-call.\n * @cssproperty --mdc-presence-on-device-background-color - The background color of the presence type on-device.\n * @cssproperty --mdc-presence-on-mobile-background-color - The background color of the presence type on-mobile.\n * @cssproperty --mdc-presence-pause-background-color - The background color of the presence type pause.\n * @cssproperty --mdc-presence-pto-background-color - The background color of the presence type pto.\n * @cssproperty --mdc-presence-presenting-background-color - The background color of the presence type presenting.\n * @cssproperty --mdc-presence-quiet-background-color - The background color of the presence type quiet.\n * @cssproperty --mdc-presence-scheduled-background-color - The background color of the presence type scheduled.\n * @cssproperty --mdc-presence-overlay-background-color - The background color of the presence type overlay.\n */",
|
13948
|
-
"customElement": true
|
13949
|
-
}
|
13950
|
-
],
|
13951
|
-
"exports": [
|
13952
|
-
{
|
13953
|
-
"kind": "js",
|
13954
|
-
"name": "default",
|
13955
|
-
"declaration": {
|
13956
|
-
"name": "Presence",
|
13957
|
-
"module": "components/presence/presence.component.js"
|
13958
|
-
}
|
13959
|
-
}
|
13960
|
-
]
|
13961
|
-
},
|
13962
|
-
{
|
13963
|
-
"kind": "javascript-module",
|
13964
|
-
"path": "components/radiogroup/radiogroup.component.js",
|
13965
|
-
"declarations": [
|
13966
|
-
{
|
13967
|
-
"kind": "class",
|
13968
|
-
"description": "`mdc-radiogroup` - This is the wrapper component for radio buttons which are grouped together.\nIt can have a header text and a description. It enables users to select a single option from a set of options.\nIt is often used in forms, settings, and selection in lists. It automatically group the radio buttons inside it.",
|
13969
|
-
"name": "RadioGroup",
|
13970
|
-
"cssProperties": [
|
14198
|
+
"description": "Update tab index for all radios in the same group (name)\nIf any radio group is checked, it will have a tab index of 0\nIf no radio group is checked, the first enabled radio will have a tab index of 0"
|
14199
|
+
},
|
13971
14200
|
{
|
13972
|
-
"
|
13973
|
-
"name": "
|
13974
|
-
|
13975
|
-
|
13976
|
-
"members": [
|
14201
|
+
"kind": "field",
|
14202
|
+
"name": "renderLabelAndHelperText",
|
14203
|
+
"privacy": "private"
|
14204
|
+
},
|
13977
14205
|
{
|
13978
14206
|
"kind": "field",
|
13979
14207
|
"name": "name",
|
@@ -13981,93 +14209,183 @@
|
|
13981
14209
|
"text": "string"
|
13982
14210
|
},
|
13983
14211
|
"default": "''",
|
13984
|
-
"description": "
|
13985
|
-
"attribute": "name"
|
13986
|
-
},
|
13987
|
-
{
|
13988
|
-
"kind": "field",
|
13989
|
-
"name": "dataAriaLabel",
|
13990
|
-
"type": {
|
13991
|
-
"text": "string | null"
|
13992
|
-
},
|
13993
|
-
"default": "null",
|
13994
|
-
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
13995
|
-
"attribute": "data-aria-label",
|
14212
|
+
"description": "Indicates the name of the component group.\nThey are used to group elements in a form together.",
|
14213
|
+
"attribute": "name",
|
13996
14214
|
"reflects": true,
|
13997
14215
|
"inheritedFrom": {
|
13998
|
-
"name": "
|
13999
|
-
"module": "utils/mixins/
|
14216
|
+
"name": "FormInternalsMixin",
|
14217
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
14000
14218
|
}
|
14001
14219
|
},
|
14002
14220
|
{
|
14003
14221
|
"kind": "field",
|
14004
|
-
"name": "
|
14222
|
+
"name": "value",
|
14005
14223
|
"type": {
|
14006
|
-
"text": "
|
14224
|
+
"text": "string"
|
14007
14225
|
},
|
14008
|
-
"
|
14009
|
-
"
|
14010
|
-
"attribute": "
|
14226
|
+
"default": "''",
|
14227
|
+
"description": "Indicates the value of the component group (ex: input, checkbox, radio, select etc...)",
|
14228
|
+
"attribute": "value",
|
14011
14229
|
"reflects": true,
|
14012
14230
|
"inheritedFrom": {
|
14013
|
-
"name": "
|
14014
|
-
"module": "
|
14231
|
+
"name": "FormInternalsMixin",
|
14232
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
14015
14233
|
}
|
14016
14234
|
},
|
14017
14235
|
{
|
14018
14236
|
"kind": "field",
|
14019
|
-
"name": "
|
14237
|
+
"name": "validationMessage",
|
14020
14238
|
"type": {
|
14021
14239
|
"text": "string | undefined"
|
14022
14240
|
},
|
14023
|
-
"description": "
|
14024
|
-
"attribute": "
|
14241
|
+
"description": "Custom validation message that will override the default message and displayed when the input is invalid.",
|
14242
|
+
"attribute": "validation-message",
|
14025
14243
|
"reflects": true,
|
14026
14244
|
"inheritedFrom": {
|
14027
|
-
"name": "
|
14028
|
-
"module": "
|
14245
|
+
"name": "FormInternalsMixin",
|
14246
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
14029
14247
|
}
|
14030
14248
|
},
|
14031
14249
|
{
|
14032
14250
|
"kind": "field",
|
14033
|
-
"name": "
|
14251
|
+
"name": "validity",
|
14034
14252
|
"type": {
|
14035
|
-
"text": "
|
14253
|
+
"text": "ValidityState"
|
14036
14254
|
},
|
14037
|
-
"
|
14038
|
-
"attribute": "required-label",
|
14039
|
-
"reflects": true,
|
14255
|
+
"readonly": true,
|
14040
14256
|
"inheritedFrom": {
|
14041
|
-
"name": "
|
14042
|
-
"module": "
|
14257
|
+
"name": "FormInternalsMixin",
|
14258
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
14043
14259
|
}
|
14044
14260
|
},
|
14045
14261
|
{
|
14046
14262
|
"kind": "field",
|
14047
|
-
"name": "
|
14048
|
-
"
|
14049
|
-
"text": "string"
|
14050
|
-
},
|
14051
|
-
"default": "''",
|
14052
|
-
"description": "The unique id of the input field. It is used to link the input field with the label.",
|
14053
|
-
"attribute": "id",
|
14263
|
+
"name": "willValidate",
|
14264
|
+
"readonly": true,
|
14054
14265
|
"inheritedFrom": {
|
14055
|
-
"name": "
|
14056
|
-
"module": "
|
14266
|
+
"name": "FormInternalsMixin",
|
14267
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
14057
14268
|
}
|
14058
14269
|
},
|
14059
14270
|
{
|
14060
|
-
"kind": "
|
14061
|
-
"name": "
|
14062
|
-
"
|
14063
|
-
|
14271
|
+
"kind": "method",
|
14272
|
+
"name": "setValidity",
|
14273
|
+
"description": "Sets the validity of the input field based on the input field's validity.",
|
14274
|
+
"return": {
|
14275
|
+
"type": {
|
14276
|
+
"text": ""
|
14277
|
+
}
|
14064
14278
|
},
|
14065
|
-
"description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
|
14066
|
-
"attribute": "help-text-type",
|
14067
|
-
"reflects": true,
|
14068
14279
|
"inheritedFrom": {
|
14069
|
-
"name": "
|
14070
|
-
"module": "
|
14280
|
+
"name": "FormInternalsMixin",
|
14281
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
14282
|
+
}
|
14283
|
+
},
|
14284
|
+
{
|
14285
|
+
"kind": "method",
|
14286
|
+
"name": "checkValidity",
|
14287
|
+
"return": {
|
14288
|
+
"type": {
|
14289
|
+
"text": "boolean"
|
14290
|
+
}
|
14291
|
+
},
|
14292
|
+
"inheritedFrom": {
|
14293
|
+
"name": "FormInternalsMixin",
|
14294
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
14295
|
+
}
|
14296
|
+
},
|
14297
|
+
{
|
14298
|
+
"kind": "method",
|
14299
|
+
"name": "reportValidity",
|
14300
|
+
"inheritedFrom": {
|
14301
|
+
"name": "FormInternalsMixin",
|
14302
|
+
"module": "utils/mixins/FormInternalsMixin.js"
|
14303
|
+
}
|
14304
|
+
},
|
14305
|
+
{
|
14306
|
+
"kind": "field",
|
14307
|
+
"name": "dataAriaLabel",
|
14308
|
+
"type": {
|
14309
|
+
"text": "string | null"
|
14310
|
+
},
|
14311
|
+
"default": "null",
|
14312
|
+
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
14313
|
+
"attribute": "data-aria-label",
|
14314
|
+
"reflects": true,
|
14315
|
+
"inheritedFrom": {
|
14316
|
+
"name": "DataAriaLabelMixin",
|
14317
|
+
"module": "utils/mixins/DataAriaLabelMixin.js"
|
14318
|
+
}
|
14319
|
+
},
|
14320
|
+
{
|
14321
|
+
"kind": "field",
|
14322
|
+
"name": "disabled",
|
14323
|
+
"type": {
|
14324
|
+
"text": "boolean | undefined"
|
14325
|
+
},
|
14326
|
+
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
14327
|
+
"default": "undefined",
|
14328
|
+
"attribute": "disabled",
|
14329
|
+
"reflects": true,
|
14330
|
+
"inheritedFrom": {
|
14331
|
+
"name": "FormfieldWrapper",
|
14332
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
14333
|
+
}
|
14334
|
+
},
|
14335
|
+
{
|
14336
|
+
"kind": "field",
|
14337
|
+
"name": "label",
|
14338
|
+
"type": {
|
14339
|
+
"text": "string | undefined"
|
14340
|
+
},
|
14341
|
+
"description": "The label of the input field. It is linked to the input field using the `for` attribute.",
|
14342
|
+
"attribute": "label",
|
14343
|
+
"reflects": true,
|
14344
|
+
"inheritedFrom": {
|
14345
|
+
"name": "FormfieldWrapper",
|
14346
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
14347
|
+
}
|
14348
|
+
},
|
14349
|
+
{
|
14350
|
+
"kind": "field",
|
14351
|
+
"name": "requiredLabel",
|
14352
|
+
"type": {
|
14353
|
+
"text": "string | undefined"
|
14354
|
+
},
|
14355
|
+
"description": "The required label of the input field.\nWhen an appropriate string value is set,\nthe input field is marked as required and the label is appended with this text.",
|
14356
|
+
"attribute": "required-label",
|
14357
|
+
"reflects": true,
|
14358
|
+
"inheritedFrom": {
|
14359
|
+
"name": "FormfieldWrapper",
|
14360
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
14361
|
+
}
|
14362
|
+
},
|
14363
|
+
{
|
14364
|
+
"kind": "field",
|
14365
|
+
"name": "id",
|
14366
|
+
"type": {
|
14367
|
+
"text": "string"
|
14368
|
+
},
|
14369
|
+
"default": "''",
|
14370
|
+
"description": "The unique id of the input field. It is used to link the input field with the label.",
|
14371
|
+
"attribute": "id",
|
14372
|
+
"inheritedFrom": {
|
14373
|
+
"name": "FormfieldWrapper",
|
14374
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
14375
|
+
}
|
14376
|
+
},
|
14377
|
+
{
|
14378
|
+
"kind": "field",
|
14379
|
+
"name": "helpTextType",
|
14380
|
+
"type": {
|
14381
|
+
"text": "ValidationType"
|
14382
|
+
},
|
14383
|
+
"description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
|
14384
|
+
"attribute": "help-text-type",
|
14385
|
+
"reflects": true,
|
14386
|
+
"inheritedFrom": {
|
14387
|
+
"name": "FormfieldWrapper",
|
14388
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
14071
14389
|
}
|
14072
14390
|
},
|
14073
14391
|
{
|
@@ -14169,458 +14487,241 @@
|
|
14169
14487
|
}
|
14170
14488
|
}
|
14171
14489
|
],
|
14172
|
-
"
|
14173
|
-
{
|
14174
|
-
"name": "name",
|
14175
|
-
"type": {
|
14176
|
-
"text": "string"
|
14177
|
-
},
|
14178
|
-
"default": "''",
|
14179
|
-
"description": "Name of the radio group.\nThey are used to group elements in a form together.",
|
14180
|
-
"fieldName": "name"
|
14181
|
-
},
|
14182
|
-
{
|
14183
|
-
"name": "data-aria-label",
|
14184
|
-
"type": {
|
14185
|
-
"text": "string | null"
|
14186
|
-
},
|
14187
|
-
"default": "null",
|
14188
|
-
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
14189
|
-
"fieldName": "dataAriaLabel",
|
14190
|
-
"inheritedFrom": {
|
14191
|
-
"name": "DataAriaLabelMixin",
|
14192
|
-
"module": "src/utils/mixins/DataAriaLabelMixin.ts"
|
14193
|
-
}
|
14194
|
-
},
|
14195
|
-
{
|
14196
|
-
"name": "disabled",
|
14197
|
-
"type": {
|
14198
|
-
"text": "boolean | undefined"
|
14199
|
-
},
|
14200
|
-
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
14201
|
-
"default": "undefined",
|
14202
|
-
"fieldName": "disabled",
|
14203
|
-
"inheritedFrom": {
|
14204
|
-
"name": "FormfieldWrapper",
|
14205
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
14206
|
-
}
|
14207
|
-
},
|
14208
|
-
{
|
14209
|
-
"name": "label",
|
14210
|
-
"type": {
|
14211
|
-
"text": "string | undefined"
|
14212
|
-
},
|
14213
|
-
"description": "The label of the input field. It is linked to the input field using the `for` attribute.",
|
14214
|
-
"fieldName": "label",
|
14215
|
-
"inheritedFrom": {
|
14216
|
-
"name": "FormfieldWrapper",
|
14217
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
14218
|
-
}
|
14219
|
-
},
|
14220
|
-
{
|
14221
|
-
"name": "required-label",
|
14222
|
-
"type": {
|
14223
|
-
"text": "string | undefined"
|
14224
|
-
},
|
14225
|
-
"description": "The required label of the input field.\nWhen an appropriate string value is set,\nthe input field is marked as required and the label is appended with this text.",
|
14226
|
-
"fieldName": "requiredLabel",
|
14227
|
-
"inheritedFrom": {
|
14228
|
-
"name": "FormfieldWrapper",
|
14229
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
14230
|
-
}
|
14231
|
-
},
|
14232
|
-
{
|
14233
|
-
"name": "id",
|
14234
|
-
"type": {
|
14235
|
-
"text": "string"
|
14236
|
-
},
|
14237
|
-
"default": "''",
|
14238
|
-
"description": "The unique id of the input field. It is used to link the input field with the label.",
|
14239
|
-
"fieldName": "id",
|
14240
|
-
"inheritedFrom": {
|
14241
|
-
"name": "FormfieldWrapper",
|
14242
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
14243
|
-
}
|
14244
|
-
},
|
14245
|
-
{
|
14246
|
-
"name": "help-text-type",
|
14247
|
-
"type": {
|
14248
|
-
"text": "ValidationType"
|
14249
|
-
},
|
14250
|
-
"description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
|
14251
|
-
"fieldName": "helpTextType",
|
14252
|
-
"inheritedFrom": {
|
14253
|
-
"name": "FormfieldWrapper",
|
14254
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
14255
|
-
}
|
14256
|
-
},
|
14490
|
+
"events": [
|
14257
14491
|
{
|
14258
|
-
"name": "help-text",
|
14259
14492
|
"type": {
|
14260
|
-
"text": "
|
14261
|
-
},
|
14262
|
-
"description": "The help text that is displayed below the input field.",
|
14263
|
-
"fieldName": "helpText",
|
14264
|
-
"inheritedFrom": {
|
14265
|
-
"name": "FormfieldWrapper",
|
14266
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
14267
|
-
}
|
14268
|
-
}
|
14269
|
-
],
|
14270
|
-
"superclass": {
|
14271
|
-
"name": "FormfieldGroup",
|
14272
|
-
"module": "/src/components/formfieldgroup"
|
14273
|
-
},
|
14274
|
-
"tagName": "mdc-radiogroup",
|
14275
|
-
"jsDoc": "/**\n * `mdc-radiogroup` - This is the wrapper component for radio buttons which are grouped together.\n * It can have a header text and a description. It enables users to select a single option from a set of options.\n * It is often used in forms, settings, and selection in lists. It automatically group the radio buttons inside it.\n *\n * @tagname mdc-radiogroup\n *\n * @cssproperty --mdc-radiogroup-description-text-normal - color of the description text\n *\n */",
|
14276
|
-
"customElement": true,
|
14277
|
-
"slots": [
|
14278
|
-
{
|
14279
|
-
"description": "This is a default slot for checkbox or toggle components.",
|
14280
|
-
"name": "default",
|
14281
|
-
"inheritedFrom": {
|
14282
|
-
"name": "FormfieldGroup",
|
14283
|
-
"module": "src/components/formfieldgroup/formfieldgroup.component.ts"
|
14284
|
-
}
|
14285
|
-
},
|
14286
|
-
{
|
14287
|
-
"description": "slot to add the label info icon",
|
14288
|
-
"name": "label-info",
|
14289
|
-
"inheritedFrom": {
|
14290
|
-
"name": "FormfieldWrapper",
|
14291
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
14493
|
+
"text": "EventConstructor"
|
14292
14494
|
}
|
14293
|
-
}
|
14294
|
-
]
|
14295
|
-
}
|
14296
|
-
],
|
14297
|
-
"exports": [
|
14298
|
-
{
|
14299
|
-
"kind": "js",
|
14300
|
-
"name": "default",
|
14301
|
-
"declaration": {
|
14302
|
-
"name": "RadioGroup",
|
14303
|
-
"module": "components/radiogroup/radiogroup.component.js"
|
14304
|
-
}
|
14305
|
-
}
|
14306
|
-
]
|
14307
|
-
},
|
14308
|
-
{
|
14309
|
-
"kind": "javascript-module",
|
14310
|
-
"path": "components/radio/radio.component.js",
|
14311
|
-
"declarations": [
|
14312
|
-
{
|
14313
|
-
"kind": "class",
|
14314
|
-
"description": "Radio allow users to select single options from a list or turn an item/feature on or off.\nThese are often used in forms, settings, and selection in lists.\n\nA radio component contains an optional label, optional info icon and an optional helper text.",
|
14315
|
-
"name": "Radio",
|
14316
|
-
"cssProperties": [
|
14317
|
-
{
|
14318
|
-
"description": "color of the label when disabled",
|
14319
|
-
"name": "--mdc-radio-text-disabled-color"
|
14320
14495
|
},
|
14321
14496
|
{
|
14322
|
-
"description": "
|
14323
|
-
"name": "
|
14324
|
-
|
14325
|
-
{
|
14326
|
-
"description": "color of the radio button when inactive and pressed",
|
14327
|
-
"name": "--mdc-radio-control-inactive-pressed-color"
|
14328
|
-
},
|
14329
|
-
{
|
14330
|
-
"description": "color of the radio button when active and hovered",
|
14331
|
-
"name": "--mdc-radio-control-active-hover-color"
|
14332
|
-
},
|
14333
|
-
{
|
14334
|
-
"description": "color of the radio button when active and pressed",
|
14335
|
-
"name": "--mdc-radio-control-active-pressed-color"
|
14336
|
-
},
|
14337
|
-
{
|
14338
|
-
"description": "color of the radio button when disabled",
|
14339
|
-
"name": "--mdc-radio-disabled-border-color"
|
14340
|
-
},
|
14341
|
-
{
|
14342
|
-
"description": "color of the radio button when active and disabled",
|
14343
|
-
"name": "--mdc-radio-control-active-disabled-background"
|
14497
|
+
"description": "(React: onChange) Event that gets dispatched when the radio state changes.",
|
14498
|
+
"name": "change",
|
14499
|
+
"reactName": "onChange"
|
14344
14500
|
},
|
14345
14501
|
{
|
14346
|
-
"description": "
|
14347
|
-
"name": "
|
14502
|
+
"description": "(React: onFocus) Event that gets dispatched when the radio receives focus.",
|
14503
|
+
"name": "focus",
|
14504
|
+
"reactName": "onFocus"
|
14348
14505
|
}
|
14349
14506
|
],
|
14350
|
-
"
|
14507
|
+
"attributes": [
|
14351
14508
|
{
|
14352
|
-
"kind": "field",
|
14353
14509
|
"name": "checked",
|
14354
14510
|
"type": {
|
14355
14511
|
"text": "boolean"
|
14356
14512
|
},
|
14357
14513
|
"default": "false",
|
14358
14514
|
"description": "Determines whether the radio is selected or unselected.",
|
14359
|
-
"
|
14360
|
-
"reflects": true
|
14515
|
+
"fieldName": "checked"
|
14361
14516
|
},
|
14362
14517
|
{
|
14363
|
-
"kind": "field",
|
14364
14518
|
"name": "readonly",
|
14365
14519
|
"type": {
|
14366
14520
|
"text": "boolean"
|
14367
14521
|
},
|
14368
14522
|
"default": "false",
|
14369
14523
|
"description": "Determines whether the radio is read-only.",
|
14370
|
-
"
|
14371
|
-
"reflects": true
|
14524
|
+
"fieldName": "readonly"
|
14372
14525
|
},
|
14373
14526
|
{
|
14374
|
-
"kind": "field",
|
14375
14527
|
"name": "autofocus",
|
14376
14528
|
"type": {
|
14377
14529
|
"text": "boolean"
|
14378
14530
|
},
|
14379
14531
|
"default": "false",
|
14380
14532
|
"description": "Automatically focus on the element when the page loads.\n[MDN Reference](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autofocus)",
|
14381
|
-
"
|
14382
|
-
"reflects": true
|
14383
|
-
},
|
14384
|
-
{
|
14385
|
-
"kind": "method",
|
14386
|
-
"name": "getAllRadiosWithinSameGroup",
|
14387
|
-
"privacy": "private",
|
14388
|
-
"return": {
|
14389
|
-
"type": {
|
14390
|
-
"text": "Radio[]"
|
14391
|
-
}
|
14392
|
-
},
|
14393
|
-
"description": "Returns all radios within the same group (name)."
|
14394
|
-
},
|
14395
|
-
{
|
14396
|
-
"kind": "method",
|
14397
|
-
"name": "dispatchChangeEvent",
|
14398
|
-
"privacy": "private",
|
14399
|
-
"return": {
|
14400
|
-
"type": {
|
14401
|
-
"text": "void"
|
14402
|
-
}
|
14403
|
-
},
|
14404
|
-
"parameters": [
|
14405
|
-
{
|
14406
|
-
"name": "event",
|
14407
|
-
"type": {
|
14408
|
-
"text": "Event"
|
14409
|
-
}
|
14410
|
-
}
|
14411
|
-
],
|
14412
|
-
"description": "The 'change' event does not bubble up through the shadow DOM as it was not composed.\nTherefore, we need to re-dispatch the same event to ensure it is propagated correctly.\nRead more: https://developer.mozilla.org/en-US/docs/Web/API/Event/composed"
|
14413
|
-
},
|
14414
|
-
{
|
14415
|
-
"kind": "method",
|
14416
|
-
"name": "setGroupValidity",
|
14417
|
-
"privacy": "private",
|
14418
|
-
"parameters": [
|
14419
|
-
{
|
14420
|
-
"name": "radios",
|
14421
|
-
"type": {
|
14422
|
-
"text": "Radio[]"
|
14423
|
-
},
|
14424
|
-
"description": "Array of radios of the same group"
|
14425
|
-
},
|
14426
|
-
{
|
14427
|
-
"name": "isValid",
|
14428
|
-
"type": {
|
14429
|
-
"text": "boolean"
|
14430
|
-
},
|
14431
|
-
"description": "Boolean value to set the validity of the group"
|
14432
|
-
}
|
14433
|
-
],
|
14434
|
-
"description": "Sets the validity of the group of radios."
|
14435
|
-
},
|
14436
|
-
{
|
14437
|
-
"kind": "method",
|
14438
|
-
"name": "setActualFormValue",
|
14439
|
-
"privacy": "private",
|
14440
|
-
"description": "Updates the form value to reflect the current state of the radio.\nIf checked, the value is set to the user-provided value.\nIf unchecked, the value is set to null."
|
14533
|
+
"fieldName": "autofocus"
|
14441
14534
|
},
|
14442
14535
|
{
|
14443
|
-
"
|
14444
|
-
"
|
14445
|
-
|
14446
|
-
"return": {
|
14447
|
-
"type": {
|
14448
|
-
"text": "void"
|
14449
|
-
}
|
14536
|
+
"name": "name",
|
14537
|
+
"type": {
|
14538
|
+
"text": "string"
|
14450
14539
|
},
|
14451
|
-
"
|
14452
|
-
|
14453
|
-
|
14454
|
-
|
14455
|
-
|
14456
|
-
|
14457
|
-
|
14458
|
-
],
|
14459
|
-
"description": "Handles the change event on the radio element.\nThis will toggle the state of the radio element.\nDispatches the change event."
|
14460
|
-
},
|
14461
|
-
{
|
14462
|
-
"kind": "method",
|
14463
|
-
"name": "updateRadio",
|
14464
|
-
"privacy": "private",
|
14465
|
-
"parameters": [
|
14466
|
-
{
|
14467
|
-
"name": "enabledRadios",
|
14468
|
-
"type": {
|
14469
|
-
"text": "Radio[]"
|
14470
|
-
},
|
14471
|
-
"description": "An array of enabled radio buttons within the same group."
|
14472
|
-
},
|
14473
|
-
{
|
14474
|
-
"name": "index",
|
14475
|
-
"type": {
|
14476
|
-
"text": "number"
|
14477
|
-
},
|
14478
|
-
"description": "The index of the radio button to be updated within the enabled radios array."
|
14479
|
-
},
|
14480
|
-
{
|
14481
|
-
"name": "event",
|
14482
|
-
"type": {
|
14483
|
-
"text": "Event"
|
14484
|
-
},
|
14485
|
-
"description": "The event that triggered the update."
|
14486
|
-
}
|
14487
|
-
],
|
14488
|
-
"description": "Updates the state of the radio button at the specified index within the enabled radios.\nFocuses the radio button and triggers the change event if the radio button is not read-only."
|
14540
|
+
"default": "''",
|
14541
|
+
"description": "Indicates the name of the component group.\nThey are used to group elements in a form together.",
|
14542
|
+
"fieldName": "name",
|
14543
|
+
"inheritedFrom": {
|
14544
|
+
"name": "FormInternalsMixin",
|
14545
|
+
"module": "src/utils/mixins/FormInternalsMixin.ts"
|
14546
|
+
}
|
14489
14547
|
},
|
14490
14548
|
{
|
14491
|
-
"
|
14492
|
-
"
|
14493
|
-
|
14494
|
-
"return": {
|
14495
|
-
"type": {
|
14496
|
-
"text": "void"
|
14497
|
-
}
|
14549
|
+
"name": "value",
|
14550
|
+
"type": {
|
14551
|
+
"text": "string"
|
14498
14552
|
},
|
14499
|
-
"
|
14500
|
-
|
14501
|
-
|
14502
|
-
|
14503
|
-
|
14504
|
-
|
14505
|
-
|
14506
|
-
],
|
14507
|
-
"description": "Handles the keydown event (Arrow Up/Down/Left/Right) on the radio element."
|
14553
|
+
"default": "''",
|
14554
|
+
"description": "Indicates the value of the component group (ex: input, checkbox, radio, select etc...)",
|
14555
|
+
"fieldName": "value",
|
14556
|
+
"inheritedFrom": {
|
14557
|
+
"name": "FormInternalsMixin",
|
14558
|
+
"module": "src/utils/mixins/FormInternalsMixin.ts"
|
14559
|
+
}
|
14508
14560
|
},
|
14509
14561
|
{
|
14510
|
-
"
|
14511
|
-
"
|
14512
|
-
|
14513
|
-
"return": {
|
14514
|
-
"type": {
|
14515
|
-
"text": "void"
|
14516
|
-
}
|
14562
|
+
"name": "validation-message",
|
14563
|
+
"type": {
|
14564
|
+
"text": "string | undefined"
|
14517
14565
|
},
|
14518
|
-
"description": "
|
14519
|
-
|
14520
|
-
|
14521
|
-
|
14522
|
-
|
14523
|
-
|
14566
|
+
"description": "Custom validation message that will override the default message and displayed when the input is invalid.",
|
14567
|
+
"fieldName": "validationMessage",
|
14568
|
+
"inheritedFrom": {
|
14569
|
+
"name": "FormInternalsMixin",
|
14570
|
+
"module": "src/utils/mixins/FormInternalsMixin.ts"
|
14571
|
+
}
|
14524
14572
|
},
|
14525
14573
|
{
|
14526
|
-
"
|
14527
|
-
"name": "name",
|
14574
|
+
"name": "data-aria-label",
|
14528
14575
|
"type": {
|
14529
|
-
"text": "string"
|
14530
|
-
},
|
14531
|
-
"default": "
|
14532
|
-
"description": "
|
14533
|
-
"
|
14534
|
-
"reflects": true,
|
14576
|
+
"text": "string | null"
|
14577
|
+
},
|
14578
|
+
"default": "null",
|
14579
|
+
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
14580
|
+
"fieldName": "dataAriaLabel",
|
14535
14581
|
"inheritedFrom": {
|
14536
|
-
"name": "
|
14537
|
-
"module": "utils/mixins/
|
14582
|
+
"name": "DataAriaLabelMixin",
|
14583
|
+
"module": "src/utils/mixins/DataAriaLabelMixin.ts"
|
14538
14584
|
}
|
14539
14585
|
},
|
14540
14586
|
{
|
14541
|
-
"
|
14542
|
-
"name": "value",
|
14587
|
+
"name": "disabled",
|
14543
14588
|
"type": {
|
14544
|
-
"text": "
|
14589
|
+
"text": "boolean | undefined"
|
14545
14590
|
},
|
14546
|
-
"
|
14547
|
-
"
|
14548
|
-
"
|
14549
|
-
"reflects": true,
|
14591
|
+
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
14592
|
+
"default": "undefined",
|
14593
|
+
"fieldName": "disabled",
|
14550
14594
|
"inheritedFrom": {
|
14551
|
-
"name": "
|
14552
|
-
"module": "
|
14595
|
+
"name": "FormfieldWrapper",
|
14596
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
14553
14597
|
}
|
14554
14598
|
},
|
14555
14599
|
{
|
14556
|
-
"
|
14557
|
-
"name": "validationMessage",
|
14600
|
+
"name": "label",
|
14558
14601
|
"type": {
|
14559
14602
|
"text": "string | undefined"
|
14560
14603
|
},
|
14561
|
-
"description": "
|
14562
|
-
"
|
14563
|
-
"reflects": true,
|
14604
|
+
"description": "The label of the input field. It is linked to the input field using the `for` attribute.",
|
14605
|
+
"fieldName": "label",
|
14564
14606
|
"inheritedFrom": {
|
14565
|
-
"name": "
|
14566
|
-
"module": "
|
14607
|
+
"name": "FormfieldWrapper",
|
14608
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
14567
14609
|
}
|
14568
14610
|
},
|
14569
14611
|
{
|
14570
|
-
"
|
14571
|
-
"name": "validity",
|
14612
|
+
"name": "required-label",
|
14572
14613
|
"type": {
|
14573
|
-
"text": "
|
14614
|
+
"text": "string | undefined"
|
14574
14615
|
},
|
14575
|
-
"
|
14616
|
+
"description": "The required label of the input field.\nWhen an appropriate string value is set,\nthe input field is marked as required and the label is appended with this text.",
|
14617
|
+
"fieldName": "requiredLabel",
|
14576
14618
|
"inheritedFrom": {
|
14577
|
-
"name": "
|
14578
|
-
"module": "
|
14619
|
+
"name": "FormfieldWrapper",
|
14620
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
14579
14621
|
}
|
14580
14622
|
},
|
14581
14623
|
{
|
14582
|
-
"
|
14583
|
-
"
|
14584
|
-
|
14624
|
+
"name": "id",
|
14625
|
+
"type": {
|
14626
|
+
"text": "string"
|
14627
|
+
},
|
14628
|
+
"default": "''",
|
14629
|
+
"description": "The unique id of the input field. It is used to link the input field with the label.",
|
14630
|
+
"fieldName": "id",
|
14585
14631
|
"inheritedFrom": {
|
14586
|
-
"name": "
|
14587
|
-
"module": "
|
14632
|
+
"name": "FormfieldWrapper",
|
14633
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
14588
14634
|
}
|
14589
14635
|
},
|
14590
14636
|
{
|
14591
|
-
"
|
14592
|
-
"
|
14593
|
-
|
14594
|
-
"return": {
|
14595
|
-
"type": {
|
14596
|
-
"text": ""
|
14597
|
-
}
|
14637
|
+
"name": "help-text-type",
|
14638
|
+
"type": {
|
14639
|
+
"text": "ValidationType"
|
14598
14640
|
},
|
14641
|
+
"description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
|
14642
|
+
"fieldName": "helpTextType",
|
14599
14643
|
"inheritedFrom": {
|
14600
|
-
"name": "
|
14601
|
-
"module": "
|
14644
|
+
"name": "FormfieldWrapper",
|
14645
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
14602
14646
|
}
|
14603
14647
|
},
|
14604
14648
|
{
|
14605
|
-
"
|
14606
|
-
"
|
14607
|
-
|
14608
|
-
"type": {
|
14609
|
-
"text": "boolean"
|
14610
|
-
}
|
14649
|
+
"name": "help-text",
|
14650
|
+
"type": {
|
14651
|
+
"text": "string | undefined"
|
14611
14652
|
},
|
14653
|
+
"description": "The help text that is displayed below the input field.",
|
14654
|
+
"fieldName": "helpText",
|
14612
14655
|
"inheritedFrom": {
|
14613
|
-
"name": "
|
14614
|
-
"module": "
|
14656
|
+
"name": "FormfieldWrapper",
|
14657
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
14615
14658
|
}
|
14659
|
+
}
|
14660
|
+
],
|
14661
|
+
"mixins": [
|
14662
|
+
{
|
14663
|
+
"name": "FormInternalsMixin",
|
14664
|
+
"module": "/src/utils/mixins/FormInternalsMixin"
|
14616
14665
|
},
|
14617
14666
|
{
|
14618
|
-
"
|
14619
|
-
"
|
14667
|
+
"name": "DataAriaLabelMixin",
|
14668
|
+
"module": "/src/utils/mixins/DataAriaLabelMixin"
|
14669
|
+
}
|
14670
|
+
],
|
14671
|
+
"superclass": {
|
14672
|
+
"name": "FormfieldWrapper",
|
14673
|
+
"module": "/src/components/formfieldwrapper/formfieldwrapper.component"
|
14674
|
+
},
|
14675
|
+
"tagName": "mdc-radio",
|
14676
|
+
"jsDoc": "/**\n * Radio allow users to select single options from a list or turn an item/feature on or off.\n * These are often used in forms, settings, and selection in lists.\n *\n * A radio component contains an optional label, optional info icon and an optional helper text.\n * @dependency mdc-formfieldwrapper\n *\n * @tagname mdc-radio\n *\n * @event change - (React: onChange) Event that gets dispatched when the radio state changes.\n * @event focus - (React: onFocus) Event that gets dispatched when the radio receives focus.\n *\n * @cssproperty --mdc-radio-text-disabled-color - color of the label when disabled\n * @cssproperty --mdc-radio-control-inactive-hover - color of the radio button when inactive and hovered\n * @cssproperty --mdc-radio-control-inactive-pressed-color - color of the radio button when inactive and pressed\n * @cssproperty --mdc-radio-control-active-hover-color - color of the radio button when active and hovered\n * @cssproperty --mdc-radio-control-active-pressed-color - color of the radio button when active and pressed\n * @cssproperty --mdc-radio-disabled-border-color - color of the radio button when disabled\n * @cssproperty --mdc-radio-control-active-disabled-background - color of the radio button when active and disabled\n * @cssproperty --mdc-radio-control-inactive-disabled-background - color of the radio button when inactive and disabled\n *\n */",
|
14677
|
+
"customElement": true,
|
14678
|
+
"slots": [
|
14679
|
+
{
|
14680
|
+
"description": "slot to add the label info icon",
|
14681
|
+
"name": "label-info",
|
14620
14682
|
"inheritedFrom": {
|
14621
|
-
"name": "
|
14622
|
-
"module": "
|
14683
|
+
"name": "FormfieldWrapper",
|
14684
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
14623
14685
|
}
|
14686
|
+
}
|
14687
|
+
]
|
14688
|
+
}
|
14689
|
+
],
|
14690
|
+
"exports": [
|
14691
|
+
{
|
14692
|
+
"kind": "js",
|
14693
|
+
"name": "default",
|
14694
|
+
"declaration": {
|
14695
|
+
"name": "Radio",
|
14696
|
+
"module": "components/radio/radio.component.js"
|
14697
|
+
}
|
14698
|
+
}
|
14699
|
+
]
|
14700
|
+
},
|
14701
|
+
{
|
14702
|
+
"kind": "javascript-module",
|
14703
|
+
"path": "components/radiogroup/radiogroup.component.js",
|
14704
|
+
"declarations": [
|
14705
|
+
{
|
14706
|
+
"kind": "class",
|
14707
|
+
"description": "`mdc-radiogroup` - This is the wrapper component for radio buttons which are grouped together.\nIt can have a header text and a description. It enables users to select a single option from a set of options.\nIt is often used in forms, settings, and selection in lists. It automatically group the radio buttons inside it.",
|
14708
|
+
"name": "RadioGroup",
|
14709
|
+
"cssProperties": [
|
14710
|
+
{
|
14711
|
+
"description": "color of the description text",
|
14712
|
+
"name": "--mdc-radiogroup-description-text-normal"
|
14713
|
+
}
|
14714
|
+
],
|
14715
|
+
"members": [
|
14716
|
+
{
|
14717
|
+
"kind": "field",
|
14718
|
+
"name": "name",
|
14719
|
+
"type": {
|
14720
|
+
"text": "string"
|
14721
|
+
},
|
14722
|
+
"default": "''",
|
14723
|
+
"description": "Name of the radio group.\nThey are used to group elements in a form together.",
|
14724
|
+
"attribute": "name"
|
14624
14725
|
},
|
14625
14726
|
{
|
14626
14727
|
"kind": "field",
|
@@ -14755,140 +14856,67 @@
|
|
14755
14856
|
"type": {
|
14756
14857
|
"text": ""
|
14757
14858
|
}
|
14758
|
-
},
|
14759
|
-
"inheritedFrom": {
|
14760
|
-
"name": "FormfieldWrapper",
|
14761
|
-
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
14762
|
-
}
|
14763
|
-
},
|
14764
|
-
{
|
14765
|
-
"kind": "method",
|
14766
|
-
"name": "renderHelpText",
|
14767
|
-
"privacy": "protected",
|
14768
|
-
"description": "creates the helper text component when the helpertext value is set.\nIt is also used to display the validation message based on the helpTextType.",
|
14769
|
-
"return": {
|
14770
|
-
"type": {
|
14771
|
-
"text": ""
|
14772
|
-
}
|
14773
|
-
},
|
14774
|
-
"inheritedFrom": {
|
14775
|
-
"name": "FormfieldWrapper",
|
14776
|
-
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
14777
|
-
}
|
14778
|
-
},
|
14779
|
-
{
|
14780
|
-
"kind": "method",
|
14781
|
-
"name": "renderLabel",
|
14782
|
-
"privacy": "protected",
|
14783
|
-
"description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
|
14784
|
-
"return": {
|
14785
|
-
"type": {
|
14786
|
-
"text": ""
|
14787
|
-
}
|
14788
|
-
},
|
14789
|
-
"inheritedFrom": {
|
14790
|
-
"name": "FormfieldWrapper",
|
14791
|
-
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
14792
|
-
}
|
14793
|
-
},
|
14794
|
-
{
|
14795
|
-
"kind": "method",
|
14796
|
-
"name": "renderHelperText",
|
14797
|
-
"privacy": "protected",
|
14798
|
-
"description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
|
14799
|
-
"return": {
|
14800
|
-
"type": {
|
14801
|
-
"text": ""
|
14802
|
-
}
|
14803
|
-
},
|
14804
|
-
"inheritedFrom": {
|
14805
|
-
"name": "FormfieldWrapper",
|
14806
|
-
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
14807
|
-
}
|
14808
|
-
}
|
14809
|
-
],
|
14810
|
-
"events": [
|
14811
|
-
{
|
14812
|
-
"type": {
|
14813
|
-
"text": "EventConstructor"
|
14814
|
-
}
|
14815
|
-
},
|
14816
|
-
{
|
14817
|
-
"description": "(React: onChange) Event that gets dispatched when the radio state changes.",
|
14818
|
-
"name": "change",
|
14819
|
-
"reactName": "onChange"
|
14820
|
-
},
|
14821
|
-
{
|
14822
|
-
"description": "(React: onFocus) Event that gets dispatched when the radio receives focus.",
|
14823
|
-
"name": "focus",
|
14824
|
-
"reactName": "onFocus"
|
14825
|
-
}
|
14826
|
-
],
|
14827
|
-
"attributes": [
|
14828
|
-
{
|
14829
|
-
"name": "checked",
|
14830
|
-
"type": {
|
14831
|
-
"text": "boolean"
|
14832
|
-
},
|
14833
|
-
"default": "false",
|
14834
|
-
"description": "Determines whether the radio is selected or unselected.",
|
14835
|
-
"fieldName": "checked"
|
14836
|
-
},
|
14837
|
-
{
|
14838
|
-
"name": "readonly",
|
14839
|
-
"type": {
|
14840
|
-
"text": "boolean"
|
14841
|
-
},
|
14842
|
-
"default": "false",
|
14843
|
-
"description": "Determines whether the radio is read-only.",
|
14844
|
-
"fieldName": "readonly"
|
14845
|
-
},
|
14846
|
-
{
|
14847
|
-
"name": "autofocus",
|
14848
|
-
"type": {
|
14849
|
-
"text": "boolean"
|
14850
|
-
},
|
14851
|
-
"default": "false",
|
14852
|
-
"description": "Automatically focus on the element when the page loads.\n[MDN Reference](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autofocus)",
|
14853
|
-
"fieldName": "autofocus"
|
14859
|
+
},
|
14860
|
+
"inheritedFrom": {
|
14861
|
+
"name": "FormfieldWrapper",
|
14862
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
14863
|
+
}
|
14854
14864
|
},
|
14855
14865
|
{
|
14856
|
-
"
|
14857
|
-
"
|
14858
|
-
|
14866
|
+
"kind": "method",
|
14867
|
+
"name": "renderHelpText",
|
14868
|
+
"privacy": "protected",
|
14869
|
+
"description": "creates the helper text component when the helpertext value is set.\nIt is also used to display the validation message based on the helpTextType.",
|
14870
|
+
"return": {
|
14871
|
+
"type": {
|
14872
|
+
"text": ""
|
14873
|
+
}
|
14859
14874
|
},
|
14860
|
-
"default": "''",
|
14861
|
-
"description": "Indicates the name of the component group.\nThey are used to group elements in a form together.",
|
14862
|
-
"fieldName": "name",
|
14863
14875
|
"inheritedFrom": {
|
14864
|
-
"name": "
|
14865
|
-
"module": "
|
14876
|
+
"name": "FormfieldWrapper",
|
14877
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
14866
14878
|
}
|
14867
14879
|
},
|
14868
14880
|
{
|
14869
|
-
"
|
14870
|
-
"
|
14871
|
-
|
14881
|
+
"kind": "method",
|
14882
|
+
"name": "renderLabel",
|
14883
|
+
"privacy": "protected",
|
14884
|
+
"description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
|
14885
|
+
"return": {
|
14886
|
+
"type": {
|
14887
|
+
"text": ""
|
14888
|
+
}
|
14872
14889
|
},
|
14873
|
-
"default": "''",
|
14874
|
-
"description": "Indicates the value of the component group (ex: input, checkbox, radio, select etc...)",
|
14875
|
-
"fieldName": "value",
|
14876
14890
|
"inheritedFrom": {
|
14877
|
-
"name": "
|
14878
|
-
"module": "
|
14891
|
+
"name": "FormfieldWrapper",
|
14892
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
14879
14893
|
}
|
14880
14894
|
},
|
14881
14895
|
{
|
14882
|
-
"
|
14883
|
-
"
|
14884
|
-
|
14896
|
+
"kind": "method",
|
14897
|
+
"name": "renderHelperText",
|
14898
|
+
"privacy": "protected",
|
14899
|
+
"description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
|
14900
|
+
"return": {
|
14901
|
+
"type": {
|
14902
|
+
"text": ""
|
14903
|
+
}
|
14885
14904
|
},
|
14886
|
-
"description": "Custom validation message that will override the default message and displayed when the input is invalid.",
|
14887
|
-
"fieldName": "validationMessage",
|
14888
14905
|
"inheritedFrom": {
|
14889
|
-
"name": "
|
14890
|
-
"module": "
|
14906
|
+
"name": "FormfieldWrapper",
|
14907
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
14891
14908
|
}
|
14909
|
+
}
|
14910
|
+
],
|
14911
|
+
"attributes": [
|
14912
|
+
{
|
14913
|
+
"name": "name",
|
14914
|
+
"type": {
|
14915
|
+
"text": "string"
|
14916
|
+
},
|
14917
|
+
"default": "''",
|
14918
|
+
"description": "Name of the radio group.\nThey are used to group elements in a form together.",
|
14919
|
+
"fieldName": "name"
|
14892
14920
|
},
|
14893
14921
|
{
|
14894
14922
|
"name": "data-aria-label",
|
@@ -14978,24 +15006,22 @@
|
|
14978
15006
|
}
|
14979
15007
|
}
|
14980
15008
|
],
|
14981
|
-
"mixins": [
|
14982
|
-
{
|
14983
|
-
"name": "FormInternalsMixin",
|
14984
|
-
"module": "/src/utils/mixins/FormInternalsMixin"
|
14985
|
-
},
|
14986
|
-
{
|
14987
|
-
"name": "DataAriaLabelMixin",
|
14988
|
-
"module": "/src/utils/mixins/DataAriaLabelMixin"
|
14989
|
-
}
|
14990
|
-
],
|
14991
15009
|
"superclass": {
|
14992
|
-
"name": "
|
14993
|
-
"module": "/src/components/
|
15010
|
+
"name": "FormfieldGroup",
|
15011
|
+
"module": "/src/components/formfieldgroup"
|
14994
15012
|
},
|
14995
|
-
"tagName": "mdc-
|
14996
|
-
"jsDoc": "/**\n *
|
15013
|
+
"tagName": "mdc-radiogroup",
|
15014
|
+
"jsDoc": "/**\n * `mdc-radiogroup` - This is the wrapper component for radio buttons which are grouped together.\n * It can have a header text and a description. It enables users to select a single option from a set of options.\n * It is often used in forms, settings, and selection in lists. It automatically group the radio buttons inside it.\n *\n * @tagname mdc-radiogroup\n *\n * @cssproperty --mdc-radiogroup-description-text-normal - color of the description text\n *\n */",
|
14997
15015
|
"customElement": true,
|
14998
15016
|
"slots": [
|
15017
|
+
{
|
15018
|
+
"description": "This is a default slot for checkbox or toggle components.",
|
15019
|
+
"name": "default",
|
15020
|
+
"inheritedFrom": {
|
15021
|
+
"name": "FormfieldGroup",
|
15022
|
+
"module": "src/components/formfieldgroup/formfieldgroup.component.ts"
|
15023
|
+
}
|
15024
|
+
},
|
14999
15025
|
{
|
15000
15026
|
"description": "slot to add the label info icon",
|
15001
15027
|
"name": "label-info",
|
@@ -15012,8 +15038,8 @@
|
|
15012
15038
|
"kind": "js",
|
15013
15039
|
"name": "default",
|
15014
15040
|
"declaration": {
|
15015
|
-
"name": "
|
15016
|
-
"module": "components/
|
15041
|
+
"name": "RadioGroup",
|
15042
|
+
"module": "components/radiogroup/radiogroup.component.js"
|
15017
15043
|
}
|
15018
15044
|
}
|
15019
15045
|
]
|
@@ -17157,238 +17183,105 @@
|
|
17157
17183
|
"type": {
|
17158
17184
|
"text": "string | null"
|
17159
17185
|
},
|
17160
|
-
"default": "null",
|
17161
|
-
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
17162
|
-
"fieldName": "dataAriaLabel",
|
17163
|
-
"inheritedFrom": {
|
17164
|
-
"name": "DataAriaLabelMixin",
|
17165
|
-
"module": "src/utils/mixins/DataAriaLabelMixin.ts"
|
17166
|
-
}
|
17167
|
-
},
|
17168
|
-
{
|
17169
|
-
"name": "disabled",
|
17170
|
-
"type": {
|
17171
|
-
"text": "boolean | undefined"
|
17172
|
-
},
|
17173
|
-
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
17174
|
-
"default": "undefined",
|
17175
|
-
"fieldName": "disabled",
|
17176
|
-
"inheritedFrom": {
|
17177
|
-
"name": "FormfieldWrapper",
|
17178
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
17179
|
-
}
|
17180
|
-
},
|
17181
|
-
{
|
17182
|
-
"name": "label",
|
17183
|
-
"type": {
|
17184
|
-
"text": "string | undefined"
|
17185
|
-
},
|
17186
|
-
"description": "The label of the input field. It is linked to the input field using the `for` attribute.",
|
17187
|
-
"fieldName": "label",
|
17188
|
-
"inheritedFrom": {
|
17189
|
-
"name": "FormfieldWrapper",
|
17190
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
17191
|
-
}
|
17192
|
-
},
|
17193
|
-
{
|
17194
|
-
"name": "required-label",
|
17195
|
-
"type": {
|
17196
|
-
"text": "string | undefined"
|
17197
|
-
},
|
17198
|
-
"description": "The required label of the input field.\nWhen an appropriate string value is set,\nthe input field is marked as required and the label is appended with this text.",
|
17199
|
-
"fieldName": "requiredLabel",
|
17200
|
-
"inheritedFrom": {
|
17201
|
-
"name": "FormfieldWrapper",
|
17202
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
17203
|
-
}
|
17204
|
-
},
|
17205
|
-
{
|
17206
|
-
"name": "id",
|
17207
|
-
"type": {
|
17208
|
-
"text": "string"
|
17209
|
-
},
|
17210
|
-
"default": "''",
|
17211
|
-
"description": "The unique id of the input field. It is used to link the input field with the label.",
|
17212
|
-
"fieldName": "id",
|
17213
|
-
"inheritedFrom": {
|
17214
|
-
"name": "FormfieldWrapper",
|
17215
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
17216
|
-
}
|
17217
|
-
},
|
17218
|
-
{
|
17219
|
-
"name": "help-text-type",
|
17220
|
-
"type": {
|
17221
|
-
"text": "ValidationType"
|
17222
|
-
},
|
17223
|
-
"description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
|
17224
|
-
"fieldName": "helpTextType",
|
17225
|
-
"inheritedFrom": {
|
17226
|
-
"name": "FormfieldWrapper",
|
17227
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
17228
|
-
}
|
17229
|
-
},
|
17230
|
-
{
|
17231
|
-
"name": "help-text",
|
17232
|
-
"type": {
|
17233
|
-
"text": "string | undefined"
|
17234
|
-
},
|
17235
|
-
"description": "The help text that is displayed below the input field.",
|
17236
|
-
"fieldName": "helpText",
|
17237
|
-
"inheritedFrom": {
|
17238
|
-
"name": "FormfieldWrapper",
|
17239
|
-
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
17240
|
-
}
|
17241
|
-
}
|
17242
|
-
],
|
17243
|
-
"mixins": [
|
17244
|
-
{
|
17245
|
-
"name": "FormInternalsMixin",
|
17246
|
-
"module": "/src/utils/mixins/FormInternalsMixin"
|
17247
|
-
},
|
17248
|
-
{
|
17249
|
-
"name": "DataAriaLabelMixin",
|
17250
|
-
"module": "/src/utils/mixins/DataAriaLabelMixin"
|
17251
|
-
}
|
17252
|
-
],
|
17253
|
-
"superclass": {
|
17254
|
-
"name": "FormfieldWrapper",
|
17255
|
-
"module": "/src/components/formfieldwrapper/formfieldwrapper.component"
|
17256
|
-
},
|
17257
|
-
"tagName": "mdc-select",
|
17258
|
-
"jsDoc": "/**\n * The mdc-select component is a dropdown selection control that allows users to pick an option from a predefined list.\n * It is designed to work with `mdc-option` for individual options and `mdc-optgroup` for grouping related options.\n * The component ensures accessibility and usability while handling various use cases,\n * including long text truncation with tooltip support.\n *\n * @dependency mdc-icon\n * @dependency mdc-popover\n * @dependency mdc-text\n *\n * @tagname mdc-select\n *\n * @slot default - This is a default/unnamed slot for options and/or option group.\n *\n * @event click - (React: onClick) This event is dispatched when the select is clicked.\n * @event change - (React: onChange) This event is dispatched when the select is changed.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the select.\n * @event focus - (React: onFocus) This event is dispatched when the select receives focus.\n */",
|
17259
|
-
"customElement": true
|
17260
|
-
}
|
17261
|
-
],
|
17262
|
-
"exports": [
|
17263
|
-
{
|
17264
|
-
"kind": "js",
|
17265
|
-
"name": "default",
|
17266
|
-
"declaration": {
|
17267
|
-
"name": "Select",
|
17268
|
-
"module": "components/select/select.component.js"
|
17269
|
-
}
|
17270
|
-
}
|
17271
|
-
]
|
17272
|
-
},
|
17273
|
-
{
|
17274
|
-
"kind": "javascript-module",
|
17275
|
-
"path": "components/spinner/spinner.component.js",
|
17276
|
-
"declarations": [
|
17277
|
-
{
|
17278
|
-
"kind": "class",
|
17279
|
-
"description": "`mdc-spinner` is loading spinner which is an indeterminate progress indicator, meaning\nit's best for cases where the progress or duration of a process is variable or unknown.\n\nSpinner Variants:\n- **Standalone (Default)**: Track has a blue color.\n- **Button**: To be used when placed in a button to show that the button’s action is currently in progress.\nTo ensure a minimum 3:1 contrast ratio, the color is changed internally to be the same color as the button’s\nicon or label text.\n\nSpinner Sizes:\n- **Large (96px)**: Use when replacing entire regions or pages that are still loading\n- **MidSize (48px) (Default)**: Use for most use cases.\n- **Small (24px)**: Use for inline with loading text.\n\nCustomisation of the spinner size is allowed by setting the size to undefined and using the --mdc-spinner-size\nCSS property.\n\nSpinner Colors:\n- **Default**: Use for most use cases.\n- **Inverted**: Only to be used within inverted components, such as coachmarks.\n\nRegarding accessibility, if an aria-label is provided, the role will be set to 'img'; if it is absent, the role\nwill be unset\nand aria-hidden will be set to 'true' so the spinner will be ignored by screen readers.",
|
17280
|
-
"name": "Spinner",
|
17281
|
-
"cssProperties": [
|
17282
|
-
{
|
17283
|
-
"description": "Allows customization of the default spinner color.",
|
17284
|
-
"name": "--mdc-spinner-default-color"
|
17285
|
-
},
|
17286
|
-
{
|
17287
|
-
"description": "Allows customization of the inverted spinner color.",
|
17288
|
-
"name": "--mdc-spinner-inverted-color"
|
17289
|
-
},
|
17290
|
-
{
|
17291
|
-
"description": "Allows customization of the spinner Button variant color.",
|
17292
|
-
"name": "--mdc-spinner-button-variant-color"
|
17293
|
-
},
|
17294
|
-
{
|
17295
|
-
"description": "Allows customization of the spinner size.",
|
17296
|
-
"name": "--mdc-spinner-size"
|
17297
|
-
}
|
17298
|
-
],
|
17299
|
-
"cssParts": [
|
17300
|
-
{
|
17301
|
-
"description": "The svg which contains the circle spinner.",
|
17302
|
-
"name": "container"
|
17303
|
-
},
|
17304
|
-
{
|
17305
|
-
"description": "The circle of the spinner.",
|
17306
|
-
"name": "circle"
|
17307
|
-
}
|
17308
|
-
],
|
17309
|
-
"members": [
|
17310
|
-
{
|
17311
|
-
"kind": "field",
|
17312
|
-
"name": "inverted",
|
17313
|
-
"description": "The spinner color can be inverted by setting the inverted attribute to true.",
|
17314
|
-
"default": "false",
|
17315
|
-
"attribute": "inverted",
|
17316
|
-
"reflects": true
|
17186
|
+
"default": "null",
|
17187
|
+
"description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
|
17188
|
+
"fieldName": "dataAriaLabel",
|
17189
|
+
"inheritedFrom": {
|
17190
|
+
"name": "DataAriaLabelMixin",
|
17191
|
+
"module": "src/utils/mixins/DataAriaLabelMixin.ts"
|
17192
|
+
}
|
17317
17193
|
},
|
17318
17194
|
{
|
17319
|
-
"
|
17320
|
-
"name": "size",
|
17195
|
+
"name": "disabled",
|
17321
17196
|
"type": {
|
17322
|
-
"text": "
|
17197
|
+
"text": "boolean | undefined"
|
17323
17198
|
},
|
17324
|
-
"description": "
|
17325
|
-
"default": "
|
17326
|
-
"
|
17327
|
-
"
|
17199
|
+
"description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
|
17200
|
+
"default": "undefined",
|
17201
|
+
"fieldName": "disabled",
|
17202
|
+
"inheritedFrom": {
|
17203
|
+
"name": "FormfieldWrapper",
|
17204
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
17205
|
+
}
|
17328
17206
|
},
|
17329
17207
|
{
|
17330
|
-
"
|
17331
|
-
"name": "ariaLabel",
|
17208
|
+
"name": "label",
|
17332
17209
|
"type": {
|
17333
|
-
"text": "string |
|
17210
|
+
"text": "string | undefined"
|
17334
17211
|
},
|
17335
|
-
"
|
17336
|
-
"
|
17337
|
-
"
|
17212
|
+
"description": "The label of the input field. It is linked to the input field using the `for` attribute.",
|
17213
|
+
"fieldName": "label",
|
17214
|
+
"inheritedFrom": {
|
17215
|
+
"name": "FormfieldWrapper",
|
17216
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
17217
|
+
}
|
17338
17218
|
},
|
17339
17219
|
{
|
17340
|
-
"
|
17341
|
-
"name": "variant",
|
17220
|
+
"name": "required-label",
|
17342
17221
|
"type": {
|
17343
|
-
"text": "
|
17222
|
+
"text": "string | undefined"
|
17344
17223
|
},
|
17345
|
-
"description": "
|
17346
|
-
"
|
17347
|
-
"
|
17348
|
-
|
17349
|
-
|
17350
|
-
|
17351
|
-
"attributes": [
|
17352
|
-
{
|
17353
|
-
"name": "inverted",
|
17354
|
-
"description": "The spinner color can be inverted by setting the inverted attribute to true.",
|
17355
|
-
"default": "false",
|
17356
|
-
"fieldName": "inverted"
|
17224
|
+
"description": "The required label of the input field.\nWhen an appropriate string value is set,\nthe input field is marked as required and the label is appended with this text.",
|
17225
|
+
"fieldName": "requiredLabel",
|
17226
|
+
"inheritedFrom": {
|
17227
|
+
"name": "FormfieldWrapper",
|
17228
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
17229
|
+
}
|
17357
17230
|
},
|
17358
17231
|
{
|
17359
|
-
"name": "
|
17232
|
+
"name": "id",
|
17360
17233
|
"type": {
|
17361
|
-
"text": "
|
17234
|
+
"text": "string"
|
17362
17235
|
},
|
17363
|
-
"
|
17364
|
-
"
|
17365
|
-
"fieldName": "
|
17236
|
+
"default": "''",
|
17237
|
+
"description": "The unique id of the input field. It is used to link the input field with the label.",
|
17238
|
+
"fieldName": "id",
|
17239
|
+
"inheritedFrom": {
|
17240
|
+
"name": "FormfieldWrapper",
|
17241
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
17242
|
+
}
|
17366
17243
|
},
|
17367
17244
|
{
|
17368
|
-
"name": "
|
17245
|
+
"name": "help-text-type",
|
17369
17246
|
"type": {
|
17370
|
-
"text": "
|
17247
|
+
"text": "ValidationType"
|
17371
17248
|
},
|
17372
|
-
"
|
17373
|
-
"
|
17374
|
-
"
|
17249
|
+
"description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
|
17250
|
+
"fieldName": "helpTextType",
|
17251
|
+
"inheritedFrom": {
|
17252
|
+
"name": "FormfieldWrapper",
|
17253
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
17254
|
+
}
|
17375
17255
|
},
|
17376
17256
|
{
|
17377
|
-
"name": "
|
17257
|
+
"name": "help-text",
|
17378
17258
|
"type": {
|
17379
|
-
"text": "
|
17259
|
+
"text": "string | undefined"
|
17380
17260
|
},
|
17381
|
-
"description": "
|
17382
|
-
"
|
17383
|
-
"
|
17261
|
+
"description": "The help text that is displayed below the input field.",
|
17262
|
+
"fieldName": "helpText",
|
17263
|
+
"inheritedFrom": {
|
17264
|
+
"name": "FormfieldWrapper",
|
17265
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
17266
|
+
}
|
17267
|
+
}
|
17268
|
+
],
|
17269
|
+
"mixins": [
|
17270
|
+
{
|
17271
|
+
"name": "FormInternalsMixin",
|
17272
|
+
"module": "/src/utils/mixins/FormInternalsMixin"
|
17273
|
+
},
|
17274
|
+
{
|
17275
|
+
"name": "DataAriaLabelMixin",
|
17276
|
+
"module": "/src/utils/mixins/DataAriaLabelMixin"
|
17384
17277
|
}
|
17385
17278
|
],
|
17386
17279
|
"superclass": {
|
17387
|
-
"name": "
|
17388
|
-
"module": "/src/
|
17280
|
+
"name": "FormfieldWrapper",
|
17281
|
+
"module": "/src/components/formfieldwrapper/formfieldwrapper.component"
|
17389
17282
|
},
|
17390
|
-
"tagName": "mdc-
|
17391
|
-
"jsDoc": "/**\n *
|
17283
|
+
"tagName": "mdc-select",
|
17284
|
+
"jsDoc": "/**\n * The mdc-select component is a dropdown selection control that allows users to pick an option from a predefined list.\n * It is designed to work with `mdc-option` for individual options and `mdc-optgroup` for grouping related options.\n * The component ensures accessibility and usability while handling various use cases,\n * including long text truncation with tooltip support.\n *\n * @dependency mdc-icon\n * @dependency mdc-popover\n * @dependency mdc-text\n *\n * @tagname mdc-select\n *\n * @slot default - This is a default/unnamed slot for options and/or option group.\n *\n * @event click - (React: onClick) This event is dispatched when the select is clicked.\n * @event change - (React: onChange) This event is dispatched when the select is changed.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the select.\n * @event focus - (React: onFocus) This event is dispatched when the select receives focus.\n */",
|
17392
17285
|
"customElement": true
|
17393
17286
|
}
|
17394
17287
|
],
|
@@ -17397,8 +17290,8 @@
|
|
17397
17290
|
"kind": "js",
|
17398
17291
|
"name": "default",
|
17399
17292
|
"declaration": {
|
17400
|
-
"name": "
|
17401
|
-
"module": "components/
|
17293
|
+
"name": "Select",
|
17294
|
+
"module": "components/select/select.component.js"
|
17402
17295
|
}
|
17403
17296
|
}
|
17404
17297
|
]
|
@@ -17547,6 +17440,139 @@
|
|
17547
17440
|
}
|
17548
17441
|
]
|
17549
17442
|
},
|
17443
|
+
{
|
17444
|
+
"kind": "javascript-module",
|
17445
|
+
"path": "components/spinner/spinner.component.js",
|
17446
|
+
"declarations": [
|
17447
|
+
{
|
17448
|
+
"kind": "class",
|
17449
|
+
"description": "`mdc-spinner` is loading spinner which is an indeterminate progress indicator, meaning\nit's best for cases where the progress or duration of a process is variable or unknown.\n\nSpinner Variants:\n- **Standalone (Default)**: Track has a blue color.\n- **Button**: To be used when placed in a button to show that the button’s action is currently in progress.\nTo ensure a minimum 3:1 contrast ratio, the color is changed internally to be the same color as the button’s\nicon or label text.\n\nSpinner Sizes:\n- **Large (96px)**: Use when replacing entire regions or pages that are still loading\n- **MidSize (48px) (Default)**: Use for most use cases.\n- **Small (24px)**: Use for inline with loading text.\n\nCustomisation of the spinner size is allowed by setting the size to undefined and using the --mdc-spinner-size\nCSS property.\n\nSpinner Colors:\n- **Default**: Use for most use cases.\n- **Inverted**: Only to be used within inverted components, such as coachmarks.\n\nRegarding accessibility, if an aria-label is provided, the role will be set to 'img'; if it is absent, the role\nwill be unset\nand aria-hidden will be set to 'true' so the spinner will be ignored by screen readers.",
|
17450
|
+
"name": "Spinner",
|
17451
|
+
"cssProperties": [
|
17452
|
+
{
|
17453
|
+
"description": "Allows customization of the default spinner color.",
|
17454
|
+
"name": "--mdc-spinner-default-color"
|
17455
|
+
},
|
17456
|
+
{
|
17457
|
+
"description": "Allows customization of the inverted spinner color.",
|
17458
|
+
"name": "--mdc-spinner-inverted-color"
|
17459
|
+
},
|
17460
|
+
{
|
17461
|
+
"description": "Allows customization of the spinner Button variant color.",
|
17462
|
+
"name": "--mdc-spinner-button-variant-color"
|
17463
|
+
},
|
17464
|
+
{
|
17465
|
+
"description": "Allows customization of the spinner size.",
|
17466
|
+
"name": "--mdc-spinner-size"
|
17467
|
+
}
|
17468
|
+
],
|
17469
|
+
"cssParts": [
|
17470
|
+
{
|
17471
|
+
"description": "The svg which contains the circle spinner.",
|
17472
|
+
"name": "container"
|
17473
|
+
},
|
17474
|
+
{
|
17475
|
+
"description": "The circle of the spinner.",
|
17476
|
+
"name": "circle"
|
17477
|
+
}
|
17478
|
+
],
|
17479
|
+
"members": [
|
17480
|
+
{
|
17481
|
+
"kind": "field",
|
17482
|
+
"name": "inverted",
|
17483
|
+
"description": "The spinner color can be inverted by setting the inverted attribute to true.",
|
17484
|
+
"default": "false",
|
17485
|
+
"attribute": "inverted",
|
17486
|
+
"reflects": true
|
17487
|
+
},
|
17488
|
+
{
|
17489
|
+
"kind": "field",
|
17490
|
+
"name": "size",
|
17491
|
+
"type": {
|
17492
|
+
"text": "SpinnerSize | undefined"
|
17493
|
+
},
|
17494
|
+
"description": "Size of the spinner.\nAcceptable values include:\n\n- 'small'\n- 'midsize'\n- 'large'\n- 'undefined'",
|
17495
|
+
"default": "midsize",
|
17496
|
+
"attribute": "size",
|
17497
|
+
"reflects": true
|
17498
|
+
},
|
17499
|
+
{
|
17500
|
+
"kind": "field",
|
17501
|
+
"name": "ariaLabel",
|
17502
|
+
"type": {
|
17503
|
+
"text": "string | null"
|
17504
|
+
},
|
17505
|
+
"default": "null",
|
17506
|
+
"description": "Aria-label attribute to be set for accessibility",
|
17507
|
+
"attribute": "aria-label"
|
17508
|
+
},
|
17509
|
+
{
|
17510
|
+
"kind": "field",
|
17511
|
+
"name": "variant",
|
17512
|
+
"type": {
|
17513
|
+
"text": "SpinnerVariant"
|
17514
|
+
},
|
17515
|
+
"description": "There are 2 variants of spinner: default and button. Their coloring is different.\n- **Standalone (Default)**: Track has a blue color.\n- **Button**: To be used when placed in a button to show that the button’s action is currently in progress.\nTo ensure a minimum 3:1 contrast ratio, change the active indicator color to be the same color as the button’s\nicon or label text.",
|
17516
|
+
"default": "standalone",
|
17517
|
+
"attribute": "variant",
|
17518
|
+
"reflects": true
|
17519
|
+
}
|
17520
|
+
],
|
17521
|
+
"attributes": [
|
17522
|
+
{
|
17523
|
+
"name": "inverted",
|
17524
|
+
"description": "The spinner color can be inverted by setting the inverted attribute to true.",
|
17525
|
+
"default": "false",
|
17526
|
+
"fieldName": "inverted"
|
17527
|
+
},
|
17528
|
+
{
|
17529
|
+
"name": "size",
|
17530
|
+
"type": {
|
17531
|
+
"text": "SpinnerSize | undefined"
|
17532
|
+
},
|
17533
|
+
"description": "Size of the spinner.\nAcceptable values include:\n\n- 'small'\n- 'midsize'\n- 'large'\n- 'undefined'",
|
17534
|
+
"default": "midsize",
|
17535
|
+
"fieldName": "size"
|
17536
|
+
},
|
17537
|
+
{
|
17538
|
+
"name": "aria-label",
|
17539
|
+
"type": {
|
17540
|
+
"text": "string | null"
|
17541
|
+
},
|
17542
|
+
"default": "null",
|
17543
|
+
"description": "Aria-label attribute to be set for accessibility",
|
17544
|
+
"fieldName": "ariaLabel"
|
17545
|
+
},
|
17546
|
+
{
|
17547
|
+
"name": "variant",
|
17548
|
+
"type": {
|
17549
|
+
"text": "SpinnerVariant"
|
17550
|
+
},
|
17551
|
+
"description": "There are 2 variants of spinner: default and button. Their coloring is different.\n- **Standalone (Default)**: Track has a blue color.\n- **Button**: To be used when placed in a button to show that the button’s action is currently in progress.\nTo ensure a minimum 3:1 contrast ratio, change the active indicator color to be the same color as the button’s\nicon or label text.",
|
17552
|
+
"default": "standalone",
|
17553
|
+
"fieldName": "variant"
|
17554
|
+
}
|
17555
|
+
],
|
17556
|
+
"superclass": {
|
17557
|
+
"name": "Component",
|
17558
|
+
"module": "/src/models"
|
17559
|
+
},
|
17560
|
+
"tagName": "mdc-spinner",
|
17561
|
+
"jsDoc": "/**\n * `mdc-spinner` is loading spinner which is an indeterminate progress indicator, meaning\n * it's best for cases where the progress or duration of a process is variable or unknown.\n *\n * Spinner Variants:\n * - **Standalone (Default)**: Track has a blue color.\n * - **Button**: To be used when placed in a button to show that the button’s action is currently in progress.\n * To ensure a minimum 3:1 contrast ratio, the color is changed internally to be the same color as the button’s\n * icon or label text.\n *\n * Spinner Sizes:\n * - **Large (96px)**: Use when replacing entire regions or pages that are still loading\n * - **MidSize (48px) (Default)**: Use for most use cases.\n * - **Small (24px)**: Use for inline with loading text.\n *\n * Customisation of the spinner size is allowed by setting the size to undefined and using the --mdc-spinner-size\n * CSS property.\n *\n * Spinner Colors:\n * - **Default**: Use for most use cases.\n * - **Inverted**: Only to be used within inverted components, such as coachmarks.\n *\n * Regarding accessibility, if an aria-label is provided, the role will be set to 'img'; if it is absent, the role\n * will be unset\n * and aria-hidden will be set to 'true' so the spinner will be ignored by screen readers.\n *\n * @tagname mdc-spinner\n *\n * @cssproperty --mdc-spinner-default-color - Allows customization of the default spinner color.\n * @cssproperty --mdc-spinner-inverted-color - Allows customization of the inverted spinner color.\n * @cssproperty --mdc-spinner-button-variant-color - Allows customization of the spinner Button variant color.\n * @cssproperty --mdc-spinner-size - Allows customization of the spinner size.\n *\n * @csspart container - The svg which contains the circle spinner.\n * @csspart circle - The circle of the spinner.\n */",
|
17562
|
+
"customElement": true
|
17563
|
+
}
|
17564
|
+
],
|
17565
|
+
"exports": [
|
17566
|
+
{
|
17567
|
+
"kind": "js",
|
17568
|
+
"name": "default",
|
17569
|
+
"declaration": {
|
17570
|
+
"name": "Spinner",
|
17571
|
+
"module": "components/spinner/spinner.component.js"
|
17572
|
+
}
|
17573
|
+
}
|
17574
|
+
]
|
17575
|
+
},
|
17550
17576
|
{
|
17551
17577
|
"kind": "javascript-module",
|
17552
17578
|
"path": "components/staticradio/staticradio.component.js",
|
@@ -18266,6 +18292,7 @@
|
|
18266
18292
|
"description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
|
18267
18293
|
"default": "undefined",
|
18268
18294
|
"attribute": "soft-disabled",
|
18295
|
+
"reflects": true,
|
18269
18296
|
"inheritedFrom": {
|
18270
18297
|
"name": "Buttonsimple",
|
18271
18298
|
"module": "components/buttonsimple/buttonsimple.component.js"
|