@momentum-design/components 0.120.13 → 0.120.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.js +622 -445
- package/dist/browser/index.js.map +3 -3
- package/dist/components/button/button.component.d.ts +8 -0
- package/dist/components/button/button.component.js +8 -0
- package/dist/components/button/button.styles.js +152 -116
- package/dist/components/buttonlink/buttonlink.component.d.ts +7 -0
- package/dist/components/buttonlink/buttonlink.component.js +7 -0
- package/dist/components/buttonlink/buttonlink.styles.js +2 -2
- package/dist/components/buttonsimple/buttonsimple.component.d.ts +5 -0
- package/dist/components/buttonsimple/buttonsimple.component.js +5 -0
- package/dist/components/buttonsimple/buttonsimple.styles.js +20 -25
- package/dist/components/checkbox/checkbox.component.d.ts +1 -1
- package/dist/components/checkbox/checkbox.component.js +8 -2
- package/dist/components/checkbox/checkbox.styles.js +62 -40
- package/dist/components/chip/chip.component.d.ts +1 -0
- package/dist/components/chip/chip.component.js +1 -0
- package/dist/components/combobox/combobox.component.d.ts +0 -5
- package/dist/components/combobox/combobox.component.js +0 -9
- package/dist/components/formfieldwrapper/formfieldwrapper.component.d.ts +10 -0
- package/dist/components/formfieldwrapper/formfieldwrapper.component.js +21 -1
- package/dist/components/input/input.component.d.ts +0 -4
- package/dist/components/input/input.component.js +0 -8
- package/dist/components/linkbutton/linkbutton.component.d.ts +1 -0
- package/dist/components/linkbutton/linkbutton.component.js +1 -0
- package/dist/components/menuitemcheckbox/menuitemcheckbox.component.js +2 -0
- package/dist/components/menuitemradio/menuitemradio.component.js +1 -0
- package/dist/components/radio/radio.component.d.ts +0 -6
- package/dist/components/radio/radio.component.js +5 -11
- package/dist/components/radio/radio.styles.js +70 -34
- package/dist/components/select/select.component.d.ts +0 -13
- package/dist/components/select/select.component.js +0 -13
- package/dist/components/staticcheckbox/staticcheckbox.component.d.ts +13 -1
- package/dist/components/staticcheckbox/staticcheckbox.component.js +21 -1
- package/dist/components/staticcheckbox/staticcheckbox.styles.js +30 -7
- package/dist/components/staticradio/staticradio.component.d.ts +7 -1
- package/dist/components/staticradio/staticradio.component.js +11 -1
- package/dist/components/staticradio/staticradio.styles.js +16 -9
- package/dist/components/statictoggle/statictoggle.component.d.ts +13 -1
- package/dist/components/statictoggle/statictoggle.component.js +21 -1
- package/dist/components/statictoggle/statictoggle.styles.js +24 -4
- package/dist/components/tab/tab.component.d.ts +1 -0
- package/dist/components/tab/tab.component.js +1 -0
- package/dist/components/textarea/textarea.component.d.ts +0 -5
- package/dist/components/textarea/textarea.component.js +0 -9
- package/dist/components/toggle/toggle.component.d.ts +1 -1
- package/dist/components/toggle/toggle.component.js +9 -3
- package/dist/components/toggle/toggle.styles.js +47 -20
- package/dist/custom-elements.json +1275 -261
- package/dist/react/button/index.d.ts +8 -0
- package/dist/react/button/index.js +8 -0
- package/dist/react/buttonlink/index.d.ts +7 -0
- package/dist/react/buttonlink/index.js +7 -0
- package/dist/react/buttonsimple/index.d.ts +5 -0
- package/dist/react/buttonsimple/index.js +5 -0
- package/dist/react/chip/index.d.ts +1 -0
- package/dist/react/chip/index.js +1 -0
- package/dist/react/linkbutton/index.d.ts +1 -0
- package/dist/react/linkbutton/index.js +1 -0
- package/dist/react/staticcheckbox/index.d.ts +1 -1
- package/dist/react/staticcheckbox/index.js +1 -1
- package/dist/react/staticradio/index.d.ts +1 -1
- package/dist/react/staticradio/index.js +1 -1
- package/dist/react/statictoggle/index.d.ts +1 -1
- package/dist/react/statictoggle/index.js +1 -1
- package/dist/react/tab/index.d.ts +1 -0
- package/dist/react/tab/index.js +1 -0
- package/package.json +1 -1
@@ -992,6 +992,38 @@
|
|
992
992
|
{
|
993
993
|
"description": "The background color of the alertchip",
|
994
994
|
"name": "--mdc-chip-background-color"
|
995
|
+
},
|
996
|
+
{
|
997
|
+
"description": "Height for button size",
|
998
|
+
"name": "--mdc-button-height",
|
999
|
+
"inheritedFrom": {
|
1000
|
+
"name": "Buttonsimple",
|
1001
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
1002
|
+
}
|
1003
|
+
},
|
1004
|
+
{
|
1005
|
+
"description": "Background color of the button",
|
1006
|
+
"name": "--mdc-button-background",
|
1007
|
+
"inheritedFrom": {
|
1008
|
+
"name": "Buttonsimple",
|
1009
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
1010
|
+
}
|
1011
|
+
},
|
1012
|
+
{
|
1013
|
+
"description": "Borer color of the button",
|
1014
|
+
"name": "--mdc-button-border-color",
|
1015
|
+
"inheritedFrom": {
|
1016
|
+
"name": "Buttonsimple",
|
1017
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
1018
|
+
}
|
1019
|
+
},
|
1020
|
+
{
|
1021
|
+
"description": "Text color of the button",
|
1022
|
+
"name": "--mdc-button-text-color",
|
1023
|
+
"inheritedFrom": {
|
1024
|
+
"name": "Buttonsimple",
|
1025
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
1026
|
+
}
|
995
1027
|
}
|
996
1028
|
],
|
997
1029
|
"cssParts": [
|
@@ -3476,6 +3508,38 @@
|
|
3476
3508
|
{
|
3477
3509
|
"description": "Background color of the overlay in active state",
|
3478
3510
|
"name": "--mdc-avatarbutton-overlay-background-color-active"
|
3511
|
+
},
|
3512
|
+
{
|
3513
|
+
"description": "Height for button size",
|
3514
|
+
"name": "--mdc-button-height",
|
3515
|
+
"inheritedFrom": {
|
3516
|
+
"name": "Buttonsimple",
|
3517
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
3518
|
+
}
|
3519
|
+
},
|
3520
|
+
{
|
3521
|
+
"description": "Background color of the button",
|
3522
|
+
"name": "--mdc-button-background",
|
3523
|
+
"inheritedFrom": {
|
3524
|
+
"name": "Buttonsimple",
|
3525
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
3526
|
+
}
|
3527
|
+
},
|
3528
|
+
{
|
3529
|
+
"description": "Borer color of the button",
|
3530
|
+
"name": "--mdc-button-border-color",
|
3531
|
+
"inheritedFrom": {
|
3532
|
+
"name": "Buttonsimple",
|
3533
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
3534
|
+
}
|
3535
|
+
},
|
3536
|
+
{
|
3537
|
+
"description": "Text color of the button",
|
3538
|
+
"name": "--mdc-button-text-color",
|
3539
|
+
"inheritedFrom": {
|
3540
|
+
"name": "Buttonsimple",
|
3541
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
3542
|
+
}
|
3479
3543
|
}
|
3480
3544
|
],
|
3481
3545
|
"cssParts": [
|
@@ -4957,6 +5021,52 @@
|
|
4957
5021
|
"kind": "class",
|
4958
5022
|
"description": "`mdc-button` is a component that can be configured in various ways to suit different use cases.\n\nButton Variants:\n- **Primary**: Solid background color.\n- **Secondary**: Transparent background with a solid border.\n- **Tertiary**: No background or border, appears as plain text but retains all button functionalities.\n\nButton Colors:\n- **Positive**: Green color.\n- **Negative**: Red color.\n- **Accent**: Blue color.\n- **Promotional**: Purple color.\n- **Default**: White color.\n\nButton Sizes (in REM units):\n- **Pill button**: 40, 32, 28, 24.\n- **Icon button**: 64, 52, 40, 32, 28, 24.\n- **Tertiary icon button**: 20.\n\nButton Types:\n- **Pill button**: A button that contains text value. Commonly used for call to action, tags, or filters.\n- **Pill button with icons**: A button containing an icon either on the left or right side of the button.\n- **Icon button**: A button represented by just an icon without any text.\nThe type of button is inferred based on the presence of slot and/or prefix and postfix icons/slots.",
|
4959
5023
|
"name": "Button",
|
5024
|
+
"cssProperties": [
|
5025
|
+
{
|
5026
|
+
"description": "Height for button size",
|
5027
|
+
"name": "--mdc-button-height",
|
5028
|
+
"inheritedFrom": {
|
5029
|
+
"name": "Buttonsimple",
|
5030
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
5031
|
+
}
|
5032
|
+
},
|
5033
|
+
{
|
5034
|
+
"description": "Background of the button",
|
5035
|
+
"name": "--mdc-button-background",
|
5036
|
+
"inheritedFrom": {
|
5037
|
+
"name": "Buttonsimple",
|
5038
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
5039
|
+
}
|
5040
|
+
},
|
5041
|
+
{
|
5042
|
+
"description": "Borer color of the button",
|
5043
|
+
"name": "--mdc-button-border-color",
|
5044
|
+
"inheritedFrom": {
|
5045
|
+
"name": "Buttonsimple",
|
5046
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
5047
|
+
}
|
5048
|
+
},
|
5049
|
+
{
|
5050
|
+
"description": "Text color of the button",
|
5051
|
+
"name": "--mdc-button-text-color",
|
5052
|
+
"inheritedFrom": {
|
5053
|
+
"name": "Buttonsimple",
|
5054
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
5055
|
+
}
|
5056
|
+
},
|
5057
|
+
{
|
5058
|
+
"description": "Size of the prefix icon",
|
5059
|
+
"name": "--mdc-button-prefix-icon-size"
|
5060
|
+
},
|
5061
|
+
{
|
5062
|
+
"description": "Size of the postfix icon",
|
5063
|
+
"name": "--mdc-button-postfix-icon-size"
|
5064
|
+
},
|
5065
|
+
{
|
5066
|
+
"description": "Line height of the button text",
|
5067
|
+
"name": "--mdc-button-line-height"
|
5068
|
+
}
|
5069
|
+
],
|
4960
5070
|
"cssParts": [
|
4961
5071
|
{
|
4962
5072
|
"description": "Text label of the button, passed in default slot",
|
@@ -5665,7 +5775,7 @@
|
|
5665
5775
|
"module": "/src/components/buttonsimple/buttonsimple.component"
|
5666
5776
|
},
|
5667
5777
|
"tagName": "mdc-button",
|
5668
|
-
"jsDoc": "/**\n * `mdc-button` is a component that can be configured in various ways to suit different use cases.\n *\n * Button Variants:\n * - **Primary**: Solid background color.\n * - **Secondary**: Transparent background with a solid border.\n * - **Tertiary**: No background or border, appears as plain text but retains all button functionalities.\n *\n * Button Colors:\n * - **Positive**: Green color.\n * - **Negative**: Red color.\n * - **Accent**: Blue color.\n * - **Promotional**: Purple color.\n * - **Default**: White color.\n *\n * Button Sizes (in REM units):\n * - **Pill button**: 40, 32, 28, 24.\n * - **Icon button**: 64, 52, 40, 32, 28, 24.\n * - **Tertiary icon button**: 20.\n *\n * Button Types:\n * - **Pill button**: A button that contains text value. Commonly used for call to action, tags, or filters.\n * - **Pill button with icons**: A button containing an icon either on the left or right side of the button.\n * - **Icon button**: A button represented by just an icon without any text.\n * The type of button is inferred based on the presence of slot and/or prefix and postfix icons/slots.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-button\n *\n * @slot - Text label of the button.\n * @slot prefix - Content to be displayed before the text label.\n * @slot postfix - Content to be displayed after the text label.\n *\n * @csspart button-text - Text label of the button, passed in default slot\n * @csspart prefix - Content before the text label, passed in `prefix` slot\n * @csspart postfix - Content after the text label, passed in `postfix` slot\n */",
|
5778
|
+
"jsDoc": "/**\n * `mdc-button` is a component that can be configured in various ways to suit different use cases.\n *\n * Button Variants:\n * - **Primary**: Solid background color.\n * - **Secondary**: Transparent background with a solid border.\n * - **Tertiary**: No background or border, appears as plain text but retains all button functionalities.\n *\n * Button Colors:\n * - **Positive**: Green color.\n * - **Negative**: Red color.\n * - **Accent**: Blue color.\n * - **Promotional**: Purple color.\n * - **Default**: White color.\n *\n * Button Sizes (in REM units):\n * - **Pill button**: 40, 32, 28, 24.\n * - **Icon button**: 64, 52, 40, 32, 28, 24.\n * - **Tertiary icon button**: 20.\n *\n * Button Types:\n * - **Pill button**: A button that contains text value. Commonly used for call to action, tags, or filters.\n * - **Pill button with icons**: A button containing an icon either on the left or right side of the button.\n * - **Icon button**: A button represented by just an icon without any text.\n * The type of button is inferred based on the presence of slot and/or prefix and postfix icons/slots.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-button\n *\n * @slot - Text label of the button.\n * @slot prefix - Content to be displayed before the text label.\n * @slot postfix - Content to be displayed after the text label.\n *\n * @csspart button-text - Text label of the button, passed in default slot\n * @csspart prefix - Content before the text label, passed in `prefix` slot\n * @csspart postfix - Content after the text label, passed in `postfix` slot\n *\n * @cssproperty --mdc-button-height - Height for button size\n * @cssproperty --mdc-button-background - Background of the button\n * @cssproperty --mdc-button-border-color - Borer color of the button\n * @cssproperty --mdc-button-text-color - Text color of the button\n * @cssproperty --mdc-button-prefix-icon-size - Size of the prefix icon\n * @cssproperty --mdc-button-postfix-icon-size - Size of the postfix icon\n * @cssproperty --mdc-button-line-height - Line height of the button text\n */",
|
5669
5779
|
"customElement": true,
|
5670
5780
|
"events": [
|
5671
5781
|
{
|
@@ -5864,6 +5974,108 @@
|
|
5864
5974
|
"kind": "class",
|
5865
5975
|
"description": "`mdc-buttonlink` combines the functional behavior of `mdc-linksimple` with the visual and structural\nfeatures of `mdc-button`. This includes support for variants, sizing, and optional\nprefix and postfix icons via slots.\n\n### Features:\n- Behaves like an link while visually resembling a button.\n- Supports slots for `prefix-icon` and `postfix-icon`.\n- Customizable size, color, and variant through attributes.\n- Inherits accessibility and keyboard interaction support from `mdc-linksimple`.",
|
5866
5976
|
"name": "ButtonLink",
|
5977
|
+
"cssProperties": [
|
5978
|
+
{
|
5979
|
+
"description": "Height for button size",
|
5980
|
+
"name": "--mdc-button-height"
|
5981
|
+
},
|
5982
|
+
{
|
5983
|
+
"description": "Background color of the button",
|
5984
|
+
"name": "--mdc-button-background"
|
5985
|
+
},
|
5986
|
+
{
|
5987
|
+
"description": "Borer color of the button",
|
5988
|
+
"name": "--mdc-button-border-color"
|
5989
|
+
},
|
5990
|
+
{
|
5991
|
+
"description": "Text color of the button",
|
5992
|
+
"name": "--mdc-button-text-color"
|
5993
|
+
},
|
5994
|
+
{
|
5995
|
+
"description": "Line height of the button text",
|
5996
|
+
"name": "--mdc-button-line-height"
|
5997
|
+
},
|
5998
|
+
{
|
5999
|
+
"description": "Size of the prefix icon",
|
6000
|
+
"name": "--mdc-button-prefix-icon-size"
|
6001
|
+
},
|
6002
|
+
{
|
6003
|
+
"description": "Size of the postfix icon",
|
6004
|
+
"name": "--mdc-button-postfix-icon-size"
|
6005
|
+
},
|
6006
|
+
{
|
6007
|
+
"description": "Border radius of the link.",
|
6008
|
+
"name": "--mdc-link-border-radius",
|
6009
|
+
"inheritedFrom": {
|
6010
|
+
"name": "Linksimple",
|
6011
|
+
"module": "src/components/linksimple/linksimple.component.ts"
|
6012
|
+
}
|
6013
|
+
},
|
6014
|
+
{
|
6015
|
+
"description": "Color of the link’s child content in the active state.",
|
6016
|
+
"name": "--mdc-link-color-active",
|
6017
|
+
"inheritedFrom": {
|
6018
|
+
"name": "Linksimple",
|
6019
|
+
"module": "src/components/linksimple/linksimple.component.ts"
|
6020
|
+
}
|
6021
|
+
},
|
6022
|
+
{
|
6023
|
+
"description": "Color of the link’s child content in the disabled state.",
|
6024
|
+
"name": "--mdc-link-color-disabled",
|
6025
|
+
"inheritedFrom": {
|
6026
|
+
"name": "Linksimple",
|
6027
|
+
"module": "src/components/linksimple/linksimple.component.ts"
|
6028
|
+
}
|
6029
|
+
},
|
6030
|
+
{
|
6031
|
+
"description": "Color of the link’s child content in the hover state.",
|
6032
|
+
"name": "--mdc-link-color-hover",
|
6033
|
+
"inheritedFrom": {
|
6034
|
+
"name": "Linksimple",
|
6035
|
+
"module": "src/components/linksimple/linksimple.component.ts"
|
6036
|
+
}
|
6037
|
+
},
|
6038
|
+
{
|
6039
|
+
"description": "Color of the link’s child content in the normal state.",
|
6040
|
+
"name": "--mdc-link-color-normal",
|
6041
|
+
"inheritedFrom": {
|
6042
|
+
"name": "Linksimple",
|
6043
|
+
"module": "src/components/linksimple/linksimple.component.ts"
|
6044
|
+
}
|
6045
|
+
},
|
6046
|
+
{
|
6047
|
+
"description": "Color of the inverted link’s child content in the active state.",
|
6048
|
+
"name": "--mdc-link-inverted-color-active",
|
6049
|
+
"inheritedFrom": {
|
6050
|
+
"name": "Linksimple",
|
6051
|
+
"module": "src/components/linksimple/linksimple.component.ts"
|
6052
|
+
}
|
6053
|
+
},
|
6054
|
+
{
|
6055
|
+
"description": "Color of the inverted link’s child content in the disabled state.",
|
6056
|
+
"name": "--mdc-link-inverted-color-disabled",
|
6057
|
+
"inheritedFrom": {
|
6058
|
+
"name": "Linksimple",
|
6059
|
+
"module": "src/components/linksimple/linksimple.component.ts"
|
6060
|
+
}
|
6061
|
+
},
|
6062
|
+
{
|
6063
|
+
"description": "Color of the inverted link’s child content in the hover state.",
|
6064
|
+
"name": "--mdc-link-inverted-color-hover",
|
6065
|
+
"inheritedFrom": {
|
6066
|
+
"name": "Linksimple",
|
6067
|
+
"module": "src/components/linksimple/linksimple.component.ts"
|
6068
|
+
}
|
6069
|
+
},
|
6070
|
+
{
|
6071
|
+
"description": "Color of the inverted link’s child content in the normal state.",
|
6072
|
+
"name": "--mdc-link-inverted-color-normal",
|
6073
|
+
"inheritedFrom": {
|
6074
|
+
"name": "Linksimple",
|
6075
|
+
"module": "src/components/linksimple/linksimple.component.ts"
|
6076
|
+
}
|
6077
|
+
}
|
6078
|
+
],
|
5867
6079
|
"cssParts": [
|
5868
6080
|
{
|
5869
6081
|
"description": "The anchor element that wraps the buttonlink content.",
|
@@ -6549,82 +6761,8 @@
|
|
6549
6761
|
"module": "/src/components/linksimple/linksimple.component"
|
6550
6762
|
},
|
6551
6763
|
"tagName": "mdc-buttonlink",
|
6552
|
-
"jsDoc": "/**\n * `mdc-buttonlink` combines the functional behavior of `mdc-linksimple` with the visual and structural\n * features of `mdc-button`. This includes support for variants, sizing, and optional\n * prefix and postfix icons via slots.\n *\n * ### Features:\n * - Behaves like an link while visually resembling a button.\n * - Supports slots for `prefix-icon` and `postfix-icon`.\n * - Customizable size, color, and variant through attributes.\n * - Inherits accessibility and keyboard interaction support from `mdc-linksimple`.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-buttonlink\n *\n * @event click - (React: onClick) Fired when the user activates the buttonLink using a mouse or assistive technology.\n * @event keydown - (React: onKeyDown) Fired when the user presses a key while the buttonLink has focus.\n * @event focus - (React: onFocus) Fired when the buttonLink receives keyboard or mouse focus.\n * @event blur - (React: onBlur) Fired when the buttonLink loses keyboard or mouse focus.\n *\n * @csspart anchor - The anchor element that wraps the buttonlink content.\n * @csspart prefix-icon - The prefix icon element.\n * @csspart button-text - The slot containing the buttonlink text.\n * @csspart postfix-icon - The postfix icon element.\n *\n */",
|
6553
|
-
"customElement": true
|
6554
|
-
"cssProperties": [
|
6555
|
-
{
|
6556
|
-
"description": "Border radius of the link.",
|
6557
|
-
"name": "--mdc-link-border-radius",
|
6558
|
-
"inheritedFrom": {
|
6559
|
-
"name": "Linksimple",
|
6560
|
-
"module": "src/components/linksimple/linksimple.component.ts"
|
6561
|
-
}
|
6562
|
-
},
|
6563
|
-
{
|
6564
|
-
"description": "Color of the link’s child content in the active state.",
|
6565
|
-
"name": "--mdc-link-color-active",
|
6566
|
-
"inheritedFrom": {
|
6567
|
-
"name": "Linksimple",
|
6568
|
-
"module": "src/components/linksimple/linksimple.component.ts"
|
6569
|
-
}
|
6570
|
-
},
|
6571
|
-
{
|
6572
|
-
"description": "Color of the link’s child content in the disabled state.",
|
6573
|
-
"name": "--mdc-link-color-disabled",
|
6574
|
-
"inheritedFrom": {
|
6575
|
-
"name": "Linksimple",
|
6576
|
-
"module": "src/components/linksimple/linksimple.component.ts"
|
6577
|
-
}
|
6578
|
-
},
|
6579
|
-
{
|
6580
|
-
"description": "Color of the link’s child content in the hover state.",
|
6581
|
-
"name": "--mdc-link-color-hover",
|
6582
|
-
"inheritedFrom": {
|
6583
|
-
"name": "Linksimple",
|
6584
|
-
"module": "src/components/linksimple/linksimple.component.ts"
|
6585
|
-
}
|
6586
|
-
},
|
6587
|
-
{
|
6588
|
-
"description": "Color of the link’s child content in the normal state.",
|
6589
|
-
"name": "--mdc-link-color-normal",
|
6590
|
-
"inheritedFrom": {
|
6591
|
-
"name": "Linksimple",
|
6592
|
-
"module": "src/components/linksimple/linksimple.component.ts"
|
6593
|
-
}
|
6594
|
-
},
|
6595
|
-
{
|
6596
|
-
"description": "Color of the inverted link’s child content in the active state.",
|
6597
|
-
"name": "--mdc-link-inverted-color-active",
|
6598
|
-
"inheritedFrom": {
|
6599
|
-
"name": "Linksimple",
|
6600
|
-
"module": "src/components/linksimple/linksimple.component.ts"
|
6601
|
-
}
|
6602
|
-
},
|
6603
|
-
{
|
6604
|
-
"description": "Color of the inverted link’s child content in the disabled state.",
|
6605
|
-
"name": "--mdc-link-inverted-color-disabled",
|
6606
|
-
"inheritedFrom": {
|
6607
|
-
"name": "Linksimple",
|
6608
|
-
"module": "src/components/linksimple/linksimple.component.ts"
|
6609
|
-
}
|
6610
|
-
},
|
6611
|
-
{
|
6612
|
-
"description": "Color of the inverted link’s child content in the hover state.",
|
6613
|
-
"name": "--mdc-link-inverted-color-hover",
|
6614
|
-
"inheritedFrom": {
|
6615
|
-
"name": "Linksimple",
|
6616
|
-
"module": "src/components/linksimple/linksimple.component.ts"
|
6617
|
-
}
|
6618
|
-
},
|
6619
|
-
{
|
6620
|
-
"description": "Color of the inverted link’s child content in the normal state.",
|
6621
|
-
"name": "--mdc-link-inverted-color-normal",
|
6622
|
-
"inheritedFrom": {
|
6623
|
-
"name": "Linksimple",
|
6624
|
-
"module": "src/components/linksimple/linksimple.component.ts"
|
6625
|
-
}
|
6626
|
-
}
|
6627
|
-
]
|
6764
|
+
"jsDoc": "/**\n * `mdc-buttonlink` combines the functional behavior of `mdc-linksimple` with the visual and structural\n * features of `mdc-button`. This includes support for variants, sizing, and optional\n * prefix and postfix icons via slots.\n *\n * ### Features:\n * - Behaves like an link while visually resembling a button.\n * - Supports slots for `prefix-icon` and `postfix-icon`.\n * - Customizable size, color, and variant through attributes.\n * - Inherits accessibility and keyboard interaction support from `mdc-linksimple`.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-buttonlink\n *\n * @event click - (React: onClick) Fired when the user activates the buttonLink using a mouse or assistive technology.\n * @event keydown - (React: onKeyDown) Fired when the user presses a key while the buttonLink has focus.\n * @event focus - (React: onFocus) Fired when the buttonLink receives keyboard or mouse focus.\n * @event blur - (React: onBlur) Fired when the buttonLink loses keyboard or mouse focus.\n *\n * @csspart anchor - The anchor element that wraps the buttonlink content.\n * @csspart prefix-icon - The prefix icon element.\n * @csspart button-text - The slot containing the buttonlink text.\n * @csspart postfix-icon - The postfix icon element.\n *\n * @cssproperty --mdc-button-height - Height for button size\n * @cssproperty --mdc-button-background - Background color of the button\n * @cssproperty --mdc-button-border-color - Borer color of the button\n * @cssproperty --mdc-button-text-color - Text color of the button\n * @cssproperty --mdc-button-line-height - Line height of the button text\n * @cssproperty --mdc-button-prefix-icon-size - Size of the prefix icon\n * @cssproperty --mdc-button-postfix-icon-size - Size of the postfix icon\n */",
|
6765
|
+
"customElement": true
|
6628
6766
|
}
|
6629
6767
|
],
|
6630
6768
|
"exports": [
|
@@ -6646,6 +6784,24 @@
|
|
6646
6784
|
"kind": "class",
|
6647
6785
|
"description": "`mdc-buttonsimple` is a component that can be configured in various ways to suit different use cases.\nIt is used as an internal component and is not intended to be used directly by consumers.\nConsumers should use the `mdc-button` component instead.",
|
6648
6786
|
"name": "Buttonsimple",
|
6787
|
+
"cssProperties": [
|
6788
|
+
{
|
6789
|
+
"description": "Height for button size",
|
6790
|
+
"name": "--mdc-button-height"
|
6791
|
+
},
|
6792
|
+
{
|
6793
|
+
"description": "Background color of the button",
|
6794
|
+
"name": "--mdc-button-background"
|
6795
|
+
},
|
6796
|
+
{
|
6797
|
+
"description": "Borer color of the button",
|
6798
|
+
"name": "--mdc-button-border-color"
|
6799
|
+
},
|
6800
|
+
{
|
6801
|
+
"description": "Text color of the button",
|
6802
|
+
"name": "--mdc-button-text-color"
|
6803
|
+
}
|
6804
|
+
],
|
6649
6805
|
"members": [
|
6650
6806
|
{
|
6651
6807
|
"kind": "field",
|
@@ -7045,7 +7201,7 @@
|
|
7045
7201
|
"module": "/src/models"
|
7046
7202
|
},
|
7047
7203
|
"tagName": "mdc-buttonsimple",
|
7048
|
-
"jsDoc": "/**\n * `mdc-buttonsimple` is a component that can be configured in various ways to suit different use cases.\n * It is used as an internal component and is not intended to be used directly by consumers.\n * Consumers should use the `mdc-button` component instead.\n *\n * @event click - (React: onClick) This event is dispatched when the button is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the button.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the button.\n * @event focus - (React: onFocus) This event is dispatched when the button receives focus.\n *\n * @tagname mdc-buttonsimple\n */",
|
7204
|
+
"jsDoc": "/**\n * `mdc-buttonsimple` is a component that can be configured in various ways to suit different use cases.\n * It is used as an internal component and is not intended to be used directly by consumers.\n * Consumers should use the `mdc-button` component instead.\n *\n * @event click - (React: onClick) This event is dispatched when the button is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the button.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the button.\n * @event focus - (React: onFocus) This event is dispatched when the button receives focus.\n *\n * @tagname mdc-buttonsimple\n *\n * @cssproperty --mdc-button-height - Height for button size\n * @cssproperty --mdc-button-background - Background color of the button\n * @cssproperty --mdc-button-border-color - Borer color of the button\n * @cssproperty --mdc-button-text-color - Text color of the button\n */",
|
7049
7205
|
"customElement": true
|
7050
7206
|
}
|
7051
7207
|
],
|
@@ -7513,6 +7669,38 @@
|
|
7513
7669
|
{
|
7514
7670
|
"description": "The width of the card",
|
7515
7671
|
"name": "--mdc-card-width"
|
7672
|
+
},
|
7673
|
+
{
|
7674
|
+
"description": "Height for button size",
|
7675
|
+
"name": "--mdc-button-height",
|
7676
|
+
"inheritedFrom": {
|
7677
|
+
"name": "Buttonsimple",
|
7678
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
7679
|
+
}
|
7680
|
+
},
|
7681
|
+
{
|
7682
|
+
"description": "Background color of the button",
|
7683
|
+
"name": "--mdc-button-background",
|
7684
|
+
"inheritedFrom": {
|
7685
|
+
"name": "Buttonsimple",
|
7686
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
7687
|
+
}
|
7688
|
+
},
|
7689
|
+
{
|
7690
|
+
"description": "Borer color of the button",
|
7691
|
+
"name": "--mdc-button-border-color",
|
7692
|
+
"inheritedFrom": {
|
7693
|
+
"name": "Buttonsimple",
|
7694
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
7695
|
+
}
|
7696
|
+
},
|
7697
|
+
{
|
7698
|
+
"description": "Text color of the button",
|
7699
|
+
"name": "--mdc-button-text-color",
|
7700
|
+
"inheritedFrom": {
|
7701
|
+
"name": "Buttonsimple",
|
7702
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
7703
|
+
}
|
7516
7704
|
}
|
7517
7705
|
],
|
7518
7706
|
"cssParts": [
|
@@ -10045,7 +10233,7 @@
|
|
10045
10233
|
"text": "void"
|
10046
10234
|
}
|
10047
10235
|
},
|
10048
|
-
"description": "Toggles the state of the checkbox element.\nIf the element is not disabled, then\nthe checked property is toggled and the indeterminate property is set to false."
|
10236
|
+
"description": "Toggles the state of the checkbox element.\nIf the element is not disabled, soft-disabled, or readonly, then\nthe checked property is toggled and the indeterminate property is set to false."
|
10049
10237
|
},
|
10050
10238
|
{
|
10051
10239
|
"kind": "method",
|
@@ -10349,6 +10537,36 @@
|
|
10349
10537
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
10350
10538
|
}
|
10351
10539
|
},
|
10540
|
+
{
|
10541
|
+
"kind": "field",
|
10542
|
+
"name": "readonly",
|
10543
|
+
"type": {
|
10544
|
+
"text": "boolean"
|
10545
|
+
},
|
10546
|
+
"default": "false",
|
10547
|
+
"description": "Determines whether the form field is read-only.",
|
10548
|
+
"attribute": "readonly",
|
10549
|
+
"reflects": true,
|
10550
|
+
"inheritedFrom": {
|
10551
|
+
"name": "FormfieldWrapper",
|
10552
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
10553
|
+
}
|
10554
|
+
},
|
10555
|
+
{
|
10556
|
+
"kind": "field",
|
10557
|
+
"name": "softDisabled",
|
10558
|
+
"type": {
|
10559
|
+
"text": "boolean"
|
10560
|
+
},
|
10561
|
+
"default": "false",
|
10562
|
+
"description": "Determines whether the form field is soft-disabled.",
|
10563
|
+
"attribute": "soft-disabled",
|
10564
|
+
"reflects": true,
|
10565
|
+
"inheritedFrom": {
|
10566
|
+
"name": "FormfieldWrapper",
|
10567
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
10568
|
+
}
|
10569
|
+
},
|
10352
10570
|
{
|
10353
10571
|
"kind": "method",
|
10354
10572
|
"name": "renderLabelElement",
|
@@ -10643,6 +10861,32 @@
|
|
10643
10861
|
"name": "FormfieldWrapper",
|
10644
10862
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
10645
10863
|
}
|
10864
|
+
},
|
10865
|
+
{
|
10866
|
+
"name": "readonly",
|
10867
|
+
"type": {
|
10868
|
+
"text": "boolean"
|
10869
|
+
},
|
10870
|
+
"default": "false",
|
10871
|
+
"description": "Determines whether the form field is read-only.",
|
10872
|
+
"fieldName": "readonly",
|
10873
|
+
"inheritedFrom": {
|
10874
|
+
"name": "FormfieldWrapper",
|
10875
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
10876
|
+
}
|
10877
|
+
},
|
10878
|
+
{
|
10879
|
+
"name": "soft-disabled",
|
10880
|
+
"type": {
|
10881
|
+
"text": "boolean"
|
10882
|
+
},
|
10883
|
+
"default": "false",
|
10884
|
+
"description": "Determines whether the form field is soft-disabled.",
|
10885
|
+
"fieldName": "softDisabled",
|
10886
|
+
"inheritedFrom": {
|
10887
|
+
"name": "FormfieldWrapper",
|
10888
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
10889
|
+
}
|
10646
10890
|
}
|
10647
10891
|
],
|
10648
10892
|
"mixins": [
|
@@ -10699,6 +10943,38 @@
|
|
10699
10943
|
{
|
10700
10944
|
"description": "The background color of the chip.",
|
10701
10945
|
"name": "--mdc-chip-background-color"
|
10946
|
+
},
|
10947
|
+
{
|
10948
|
+
"description": "Height for button size",
|
10949
|
+
"name": "--mdc-button-height",
|
10950
|
+
"inheritedFrom": {
|
10951
|
+
"name": "Buttonsimple",
|
10952
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
10953
|
+
}
|
10954
|
+
},
|
10955
|
+
{
|
10956
|
+
"description": "Background color of the button",
|
10957
|
+
"name": "--mdc-button-background",
|
10958
|
+
"inheritedFrom": {
|
10959
|
+
"name": "Buttonsimple",
|
10960
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
10961
|
+
}
|
10962
|
+
},
|
10963
|
+
{
|
10964
|
+
"description": "Borer color of the button",
|
10965
|
+
"name": "--mdc-button-border-color",
|
10966
|
+
"inheritedFrom": {
|
10967
|
+
"name": "Buttonsimple",
|
10968
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
10969
|
+
}
|
10970
|
+
},
|
10971
|
+
{
|
10972
|
+
"description": "Text color of the button",
|
10973
|
+
"name": "--mdc-button-text-color",
|
10974
|
+
"inheritedFrom": {
|
10975
|
+
"name": "Buttonsimple",
|
10976
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
10977
|
+
}
|
10702
10978
|
}
|
10703
10979
|
],
|
10704
10980
|
"cssParts": [
|
@@ -11285,7 +11561,7 @@
|
|
11285
11561
|
"module": "/src/components/buttonsimple/buttonsimple.component"
|
11286
11562
|
},
|
11287
11563
|
"tagName": "mdc-chip",
|
11288
|
-
"jsDoc": "/**\n * mdc-chip is an interactive element that can be used to represent a chip. It supports a leading icon along with label.\n * Consumers can wrap this component around a tooltip to provide additional context.\n *\n * It is recommended to keep the label text for the chip component concise and compact.\n * For best results, we recommend limiting the <b>maximum length of the label text to 20 characters</b>,\n * including empty spaces to split words.\n *\n * This component is built by extending Buttonsimple.\n *\n * @tagname mdc-chip\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @cssproperty --mdc-chip-color - The color of the chip.\n * @cssproperty --mdc-chip-border-color - The border color of the chip.\n * @cssproperty --mdc-chip-background-color - The background color of the chip.\n *\n * @csspart label - The label part of the chip.\n *\n * @event click - (React: onClick) This event is dispatched when the chip is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the chip.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the chip.\n * @event focus - (React: onFocus) This event is dispatched when the chip receives focus.\n *\n */",
|
11564
|
+
"jsDoc": "/**\n * mdc-chip is an interactive element that can be used to represent a chip. It supports a leading icon along with label.\n * Consumers can wrap this component around a tooltip to provide additional context.\n *\n * It is recommended to keep the label text for the chip component concise and compact.\n * For best results, we recommend limiting the <b>maximum length of the label text to 20 characters</b>,\n * including empty spaces to split words.\n *\n * This component is built by extending Buttonsimple.\n *\n * @tagname mdc-chip\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @cssproperty --mdc-chip-color - The color of the chip.\n * @cssproperty --mdc-chip-border-color - The border color of the chip.\n * @cssproperty --mdc-chip-background-color - The background color of the chip.\n * @cssproperty --mdc-button-height - Height for button size\n *\n * @csspart label - The label part of the chip.\n *\n * @event click - (React: onClick) This event is dispatched when the chip is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the chip.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the chip.\n * @event focus - (React: onFocus) This event is dispatched when the chip receives focus.\n *\n */",
|
11289
11565
|
"customElement": true
|
11290
11566
|
}
|
11291
11567
|
],
|
@@ -13466,16 +13742,6 @@
|
|
13466
13742
|
"description": "The placeholder text which will be shown on the text if provided.",
|
13467
13743
|
"attribute": "placeholder"
|
13468
13744
|
},
|
13469
|
-
{
|
13470
|
-
"kind": "field",
|
13471
|
-
"name": "readonly",
|
13472
|
-
"type": {
|
13473
|
-
"text": "boolean"
|
13474
|
-
},
|
13475
|
-
"default": "false",
|
13476
|
-
"description": "readonly attribute of the combobox field. If true, the combobox is read-only.",
|
13477
|
-
"attribute": "readonly"
|
13478
|
-
},
|
13479
13745
|
{
|
13480
13746
|
"kind": "field",
|
13481
13747
|
"name": "placement",
|
@@ -14182,6 +14448,36 @@
|
|
14182
14448
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
14183
14449
|
}
|
14184
14450
|
},
|
14451
|
+
{
|
14452
|
+
"kind": "field",
|
14453
|
+
"name": "readonly",
|
14454
|
+
"type": {
|
14455
|
+
"text": "boolean"
|
14456
|
+
},
|
14457
|
+
"default": "false",
|
14458
|
+
"description": "Determines whether the form field is read-only.",
|
14459
|
+
"attribute": "readonly",
|
14460
|
+
"reflects": true,
|
14461
|
+
"inheritedFrom": {
|
14462
|
+
"name": "FormfieldWrapper",
|
14463
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
14464
|
+
}
|
14465
|
+
},
|
14466
|
+
{
|
14467
|
+
"kind": "field",
|
14468
|
+
"name": "softDisabled",
|
14469
|
+
"type": {
|
14470
|
+
"text": "boolean"
|
14471
|
+
},
|
14472
|
+
"default": "false",
|
14473
|
+
"description": "Determines whether the form field is soft-disabled.",
|
14474
|
+
"attribute": "soft-disabled",
|
14475
|
+
"reflects": true,
|
14476
|
+
"inheritedFrom": {
|
14477
|
+
"name": "FormfieldWrapper",
|
14478
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
14479
|
+
}
|
14480
|
+
},
|
14185
14481
|
{
|
14186
14482
|
"kind": "method",
|
14187
14483
|
"name": "renderLabelElement",
|
@@ -14294,15 +14590,6 @@
|
|
14294
14590
|
"description": "The placeholder text which will be shown on the text if provided.",
|
14295
14591
|
"fieldName": "placeholder"
|
14296
14592
|
},
|
14297
|
-
{
|
14298
|
-
"name": "readonly",
|
14299
|
-
"type": {
|
14300
|
-
"text": "boolean"
|
14301
|
-
},
|
14302
|
-
"default": "false",
|
14303
|
-
"description": "readonly attribute of the combobox field. If true, the combobox is read-only.",
|
14304
|
-
"fieldName": "readonly"
|
14305
|
-
},
|
14306
14593
|
{
|
14307
14594
|
"name": "placement",
|
14308
14595
|
"type": {
|
@@ -14538,6 +14825,32 @@
|
|
14538
14825
|
"name": "FormfieldWrapper",
|
14539
14826
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
14540
14827
|
}
|
14828
|
+
},
|
14829
|
+
{
|
14830
|
+
"name": "readonly",
|
14831
|
+
"type": {
|
14832
|
+
"text": "boolean"
|
14833
|
+
},
|
14834
|
+
"default": "false",
|
14835
|
+
"description": "Determines whether the form field is read-only.",
|
14836
|
+
"fieldName": "readonly",
|
14837
|
+
"inheritedFrom": {
|
14838
|
+
"name": "FormfieldWrapper",
|
14839
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
14840
|
+
}
|
14841
|
+
},
|
14842
|
+
{
|
14843
|
+
"name": "soft-disabled",
|
14844
|
+
"type": {
|
14845
|
+
"text": "boolean"
|
14846
|
+
},
|
14847
|
+
"default": "false",
|
14848
|
+
"description": "Determines whether the form field is soft-disabled.",
|
14849
|
+
"fieldName": "softDisabled",
|
14850
|
+
"inheritedFrom": {
|
14851
|
+
"name": "FormfieldWrapper",
|
14852
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
14853
|
+
}
|
14541
14854
|
}
|
14542
14855
|
],
|
14543
14856
|
"mixins": [
|
@@ -15945,6 +16258,38 @@
|
|
15945
16258
|
"name": "Chip",
|
15946
16259
|
"module": "src/components/chip/chip.component.ts"
|
15947
16260
|
}
|
16261
|
+
},
|
16262
|
+
{
|
16263
|
+
"description": "Height for button size",
|
16264
|
+
"name": "--mdc-button-height",
|
16265
|
+
"inheritedFrom": {
|
16266
|
+
"name": "Buttonsimple",
|
16267
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
16268
|
+
}
|
16269
|
+
},
|
16270
|
+
{
|
16271
|
+
"description": "Background color of the button",
|
16272
|
+
"name": "--mdc-button-background",
|
16273
|
+
"inheritedFrom": {
|
16274
|
+
"name": "Buttonsimple",
|
16275
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
16276
|
+
}
|
16277
|
+
},
|
16278
|
+
{
|
16279
|
+
"description": "Borer color of the button",
|
16280
|
+
"name": "--mdc-button-border-color",
|
16281
|
+
"inheritedFrom": {
|
16282
|
+
"name": "Buttonsimple",
|
16283
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
16284
|
+
}
|
16285
|
+
},
|
16286
|
+
{
|
16287
|
+
"description": "Text color of the button",
|
16288
|
+
"name": "--mdc-button-text-color",
|
16289
|
+
"inheritedFrom": {
|
16290
|
+
"name": "Buttonsimple",
|
16291
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
16292
|
+
}
|
15948
16293
|
}
|
15949
16294
|
],
|
15950
16295
|
"cssParts": [
|
@@ -16868,6 +17213,36 @@
|
|
16868
17213
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
16869
17214
|
}
|
16870
17215
|
},
|
17216
|
+
{
|
17217
|
+
"kind": "field",
|
17218
|
+
"name": "readonly",
|
17219
|
+
"type": {
|
17220
|
+
"text": "boolean"
|
17221
|
+
},
|
17222
|
+
"default": "false",
|
17223
|
+
"description": "Determines whether the form field is read-only.",
|
17224
|
+
"attribute": "readonly",
|
17225
|
+
"reflects": true,
|
17226
|
+
"inheritedFrom": {
|
17227
|
+
"name": "FormfieldWrapper",
|
17228
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
17229
|
+
}
|
17230
|
+
},
|
17231
|
+
{
|
17232
|
+
"kind": "field",
|
17233
|
+
"name": "softDisabled",
|
17234
|
+
"type": {
|
17235
|
+
"text": "boolean"
|
17236
|
+
},
|
17237
|
+
"default": "false",
|
17238
|
+
"description": "Determines whether the form field is soft-disabled.",
|
17239
|
+
"attribute": "soft-disabled",
|
17240
|
+
"reflects": true,
|
17241
|
+
"inheritedFrom": {
|
17242
|
+
"name": "FormfieldWrapper",
|
17243
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
17244
|
+
}
|
17245
|
+
},
|
16871
17246
|
{
|
16872
17247
|
"kind": "method",
|
16873
17248
|
"name": "renderLabelElement",
|
@@ -17080,6 +17455,32 @@
|
|
17080
17455
|
"name": "FormfieldWrapper",
|
17081
17456
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
17082
17457
|
}
|
17458
|
+
},
|
17459
|
+
{
|
17460
|
+
"name": "readonly",
|
17461
|
+
"type": {
|
17462
|
+
"text": "boolean"
|
17463
|
+
},
|
17464
|
+
"default": "false",
|
17465
|
+
"description": "Determines whether the form field is read-only.",
|
17466
|
+
"fieldName": "readonly",
|
17467
|
+
"inheritedFrom": {
|
17468
|
+
"name": "FormfieldWrapper",
|
17469
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
17470
|
+
}
|
17471
|
+
},
|
17472
|
+
{
|
17473
|
+
"name": "soft-disabled",
|
17474
|
+
"type": {
|
17475
|
+
"text": "boolean"
|
17476
|
+
},
|
17477
|
+
"default": "false",
|
17478
|
+
"description": "Determines whether the form field is soft-disabled.",
|
17479
|
+
"fieldName": "softDisabled",
|
17480
|
+
"inheritedFrom": {
|
17481
|
+
"name": "FormfieldWrapper",
|
17482
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
17483
|
+
}
|
17083
17484
|
}
|
17084
17485
|
]
|
17085
17486
|
}
|
@@ -17237,6 +17638,28 @@
|
|
17237
17638
|
"attribute": "info-icon-aria-label",
|
17238
17639
|
"reflects": true
|
17239
17640
|
},
|
17641
|
+
{
|
17642
|
+
"kind": "field",
|
17643
|
+
"name": "readonly",
|
17644
|
+
"type": {
|
17645
|
+
"text": "boolean"
|
17646
|
+
},
|
17647
|
+
"default": "false",
|
17648
|
+
"description": "Determines whether the form field is read-only.",
|
17649
|
+
"attribute": "readonly",
|
17650
|
+
"reflects": true
|
17651
|
+
},
|
17652
|
+
{
|
17653
|
+
"kind": "field",
|
17654
|
+
"name": "softDisabled",
|
17655
|
+
"type": {
|
17656
|
+
"text": "boolean"
|
17657
|
+
},
|
17658
|
+
"default": "false",
|
17659
|
+
"description": "Determines whether the form field is soft-disabled.",
|
17660
|
+
"attribute": "soft-disabled",
|
17661
|
+
"reflects": true
|
17662
|
+
},
|
17240
17663
|
{
|
17241
17664
|
"kind": "method",
|
17242
17665
|
"name": "renderLabelElement",
|
@@ -17374,6 +17797,24 @@
|
|
17374
17797
|
"description": "Aria label for the info icon that is displayed next to the label when `toggletipText` is set.\nThis is used for accessibility purposes to provide a description of the icon.",
|
17375
17798
|
"fieldName": "infoIconAriaLabel"
|
17376
17799
|
},
|
17800
|
+
{
|
17801
|
+
"name": "readonly",
|
17802
|
+
"type": {
|
17803
|
+
"text": "boolean"
|
17804
|
+
},
|
17805
|
+
"default": "false",
|
17806
|
+
"description": "Determines whether the form field is read-only.",
|
17807
|
+
"fieldName": "readonly"
|
17808
|
+
},
|
17809
|
+
{
|
17810
|
+
"name": "soft-disabled",
|
17811
|
+
"type": {
|
17812
|
+
"text": "boolean"
|
17813
|
+
},
|
17814
|
+
"default": "false",
|
17815
|
+
"description": "Determines whether the form field is soft-disabled.",
|
17816
|
+
"fieldName": "softDisabled"
|
17817
|
+
},
|
17377
17818
|
{
|
17378
17819
|
"name": "disabled",
|
17379
17820
|
"type": {
|
@@ -18417,16 +18858,6 @@
|
|
18417
18858
|
"description": "The placeholder text that is displayed when the input field is empty.",
|
18418
18859
|
"attribute": "placeholder"
|
18419
18860
|
},
|
18420
|
-
{
|
18421
|
-
"kind": "field",
|
18422
|
-
"name": "readonly",
|
18423
|
-
"type": {
|
18424
|
-
"text": "boolean"
|
18425
|
-
},
|
18426
|
-
"default": "false",
|
18427
|
-
"description": "readonly attribute of the input field. If true, the input field is read-only.",
|
18428
|
-
"attribute": "readonly"
|
18429
|
-
},
|
18430
18861
|
{
|
18431
18862
|
"kind": "field",
|
18432
18863
|
"name": "prefixText",
|
@@ -18912,6 +19343,36 @@
|
|
18912
19343
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
18913
19344
|
}
|
18914
19345
|
},
|
19346
|
+
{
|
19347
|
+
"kind": "field",
|
19348
|
+
"name": "readonly",
|
19349
|
+
"type": {
|
19350
|
+
"text": "boolean"
|
19351
|
+
},
|
19352
|
+
"default": "false",
|
19353
|
+
"description": "Determines whether the form field is read-only.",
|
19354
|
+
"attribute": "readonly",
|
19355
|
+
"reflects": true,
|
19356
|
+
"inheritedFrom": {
|
19357
|
+
"name": "FormfieldWrapper",
|
19358
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
19359
|
+
}
|
19360
|
+
},
|
19361
|
+
{
|
19362
|
+
"kind": "field",
|
19363
|
+
"name": "softDisabled",
|
19364
|
+
"type": {
|
19365
|
+
"text": "boolean"
|
19366
|
+
},
|
19367
|
+
"default": "false",
|
19368
|
+
"description": "Determines whether the form field is soft-disabled.",
|
19369
|
+
"attribute": "soft-disabled",
|
19370
|
+
"reflects": true,
|
19371
|
+
"inheritedFrom": {
|
19372
|
+
"name": "FormfieldWrapper",
|
19373
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
19374
|
+
}
|
19375
|
+
},
|
18915
19376
|
{
|
18916
19377
|
"kind": "method",
|
18917
19378
|
"name": "renderLabelElement",
|
@@ -19033,15 +19494,6 @@
|
|
19033
19494
|
"description": "The placeholder text that is displayed when the input field is empty.",
|
19034
19495
|
"fieldName": "placeholder"
|
19035
19496
|
},
|
19036
|
-
{
|
19037
|
-
"name": "readonly",
|
19038
|
-
"type": {
|
19039
|
-
"text": "boolean"
|
19040
|
-
},
|
19041
|
-
"default": "false",
|
19042
|
-
"description": "readonly attribute of the input field. If true, the input field is read-only.",
|
19043
|
-
"fieldName": "readonly"
|
19044
|
-
},
|
19045
19497
|
{
|
19046
19498
|
"name": "prefix-text",
|
19047
19499
|
"type": {
|
@@ -19316,6 +19768,32 @@
|
|
19316
19768
|
"name": "FormfieldWrapper",
|
19317
19769
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
19318
19770
|
}
|
19771
|
+
},
|
19772
|
+
{
|
19773
|
+
"name": "readonly",
|
19774
|
+
"type": {
|
19775
|
+
"text": "boolean"
|
19776
|
+
},
|
19777
|
+
"default": "false",
|
19778
|
+
"description": "Determines whether the form field is read-only.",
|
19779
|
+
"fieldName": "readonly",
|
19780
|
+
"inheritedFrom": {
|
19781
|
+
"name": "FormfieldWrapper",
|
19782
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
19783
|
+
}
|
19784
|
+
},
|
19785
|
+
{
|
19786
|
+
"name": "soft-disabled",
|
19787
|
+
"type": {
|
19788
|
+
"text": "boolean"
|
19789
|
+
},
|
19790
|
+
"default": "false",
|
19791
|
+
"description": "Determines whether the form field is soft-disabled.",
|
19792
|
+
"fieldName": "softDisabled",
|
19793
|
+
"inheritedFrom": {
|
19794
|
+
"name": "FormfieldWrapper",
|
19795
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
19796
|
+
}
|
19319
19797
|
}
|
19320
19798
|
],
|
19321
19799
|
"mixins": [
|
@@ -20197,6 +20675,38 @@
|
|
20197
20675
|
{
|
20198
20676
|
"description": "Color of the inverted linkbutton’s child content in the normal state.",
|
20199
20677
|
"name": "--mdc-link-inverted-color-normal"
|
20678
|
+
},
|
20679
|
+
{
|
20680
|
+
"description": "Height for button size",
|
20681
|
+
"name": "--mdc-button-height",
|
20682
|
+
"inheritedFrom": {
|
20683
|
+
"name": "Buttonsimple",
|
20684
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
20685
|
+
}
|
20686
|
+
},
|
20687
|
+
{
|
20688
|
+
"description": "Background color of the button",
|
20689
|
+
"name": "--mdc-button-background",
|
20690
|
+
"inheritedFrom": {
|
20691
|
+
"name": "Buttonsimple",
|
20692
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
20693
|
+
}
|
20694
|
+
},
|
20695
|
+
{
|
20696
|
+
"description": "Borer color of the button",
|
20697
|
+
"name": "--mdc-button-border-color",
|
20698
|
+
"inheritedFrom": {
|
20699
|
+
"name": "Buttonsimple",
|
20700
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
20701
|
+
}
|
20702
|
+
},
|
20703
|
+
{
|
20704
|
+
"description": "Text color of the button",
|
20705
|
+
"name": "--mdc-button-text-color",
|
20706
|
+
"inheritedFrom": {
|
20707
|
+
"name": "Buttonsimple",
|
20708
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
20709
|
+
}
|
20200
20710
|
}
|
20201
20711
|
],
|
20202
20712
|
"slots": [
|
@@ -20212,7 +20722,7 @@
|
|
20212
20722
|
"type": {
|
20213
20723
|
"text": "ButtonSize"
|
20214
20724
|
},
|
20215
|
-
"description": "Sets the size of the linkbutton.\nAcceptable values
|
20725
|
+
"description": "Sets the size of the linkbutton.\nAcceptable values:\n- 12\n- 14\n- 16",
|
20216
20726
|
"default": "16",
|
20217
20727
|
"attribute": "size",
|
20218
20728
|
"reflects": true,
|
@@ -20610,7 +21120,7 @@
|
|
20610
21120
|
"type": {
|
20611
21121
|
"text": "ButtonSize"
|
20612
21122
|
},
|
20613
|
-
"description": "Sets the size of the linkbutton.\nAcceptable values
|
21123
|
+
"description": "Sets the size of the linkbutton.\nAcceptable values:\n- 12\n- 14\n- 16",
|
20614
21124
|
"default": "16",
|
20615
21125
|
"fieldName": "size",
|
20616
21126
|
"inheritedFrom": {
|
@@ -20788,7 +21298,7 @@
|
|
20788
21298
|
"module": "/src/components/buttonsimple/buttonsimple.component"
|
20789
21299
|
},
|
20790
21300
|
"tagName": "mdc-linkbutton",
|
20791
|
-
"jsDoc": "/**\n * `mdc-linkbutton` visually mimics a hyperlink while functioning as a button. It blends the appearance of `mdc-link` with the accessibility and interaction capabilities of `mdc-button`.\n *\n * ### Features:\n * - Looks like a link, behaves like a button.\n * - Supports slots for a text label and an optional trailing icon.\n * - Inherits accessibility and keyboard interaction behavior from `mdc-buttonsimple`.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-linkbutton\n *\n * @slot - Text label of the linkbutton.\n *\n * @event click - (React: onClick) This event is dispatched when the linkbutton is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the linkbutton.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the linkbutton.\n * @event focus - (React: onFocus) This event is dispatched when the linkbutton receives focus.\n *\n * @cssproperty --mdc-link-border-radius - Border radius of the linkbutton.\n * @cssproperty --mdc-link-color-active - Color of the linkbutton’s child content in the active state.\n * @cssproperty --mdc-link-color-disabled - Color of the linkbutton’s child content in the disabled state.\n * @cssproperty --mdc-link-color-hover - Color of the linkbutton’s child content in the hover state.\n * @cssproperty --mdc-link-color-normal - Color of the linkbutton’s child content in the normal state.\n * @cssproperty --mdc-link-inverted-color-active - Color of the inverted linkbutton’s child content in the active state.\n * @cssproperty --mdc-link-inverted-color-disabled - Color of the inverted linkbutton’s child content in the disabled state.\n * @cssproperty --mdc-link-inverted-color-hover - Color of the inverted linkbutton’s child content in the hover state.\n * @cssproperty --mdc-link-inverted-color-normal - Color of the inverted linkbutton’s child content in the normal state.\n */",
|
21301
|
+
"jsDoc": "/**\n * `mdc-linkbutton` visually mimics a hyperlink while functioning as a button. It blends the appearance of `mdc-link` with the accessibility and interaction capabilities of `mdc-button`.\n *\n * ### Features:\n * - Looks like a link, behaves like a button.\n * - Supports slots for a text label and an optional trailing icon.\n * - Inherits accessibility and keyboard interaction behavior from `mdc-buttonsimple`.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-linkbutton\n *\n * @slot - Text label of the linkbutton.\n *\n * @event click - (React: onClick) This event is dispatched when the linkbutton is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the linkbutton.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the linkbutton.\n * @event focus - (React: onFocus) This event is dispatched when the linkbutton receives focus.\n *\n * @cssproperty --mdc-link-border-radius - Border radius of the linkbutton.\n * @cssproperty --mdc-link-color-active - Color of the linkbutton’s child content in the active state.\n * @cssproperty --mdc-link-color-disabled - Color of the linkbutton’s child content in the disabled state.\n * @cssproperty --mdc-link-color-hover - Color of the linkbutton’s child content in the hover state.\n * @cssproperty --mdc-link-color-normal - Color of the linkbutton’s child content in the normal state.\n * @cssproperty --mdc-link-inverted-color-active - Color of the inverted linkbutton’s child content in the active state.\n * @cssproperty --mdc-link-inverted-color-disabled - Color of the inverted linkbutton’s child content in the disabled state.\n * @cssproperty --mdc-link-inverted-color-hover - Color of the inverted linkbutton’s child content in the hover state.\n * @cssproperty --mdc-link-inverted-color-normal - Color of the inverted linkbutton’s child content in the normal state.\n * @cssproperty --mdc-button-height - Height for button size\n */",
|
20792
21302
|
"customElement": true
|
20793
21303
|
}
|
20794
21304
|
],
|
@@ -30795,20 +31305,6 @@
|
|
30795
31305
|
"module": "components/input/input.component.js"
|
30796
31306
|
}
|
30797
31307
|
},
|
30798
|
-
{
|
30799
|
-
"kind": "field",
|
30800
|
-
"name": "readonly",
|
30801
|
-
"type": {
|
30802
|
-
"text": "boolean"
|
30803
|
-
},
|
30804
|
-
"default": "false",
|
30805
|
-
"description": "readonly attribute of the input field. If true, the input field is read-only.",
|
30806
|
-
"attribute": "readonly",
|
30807
|
-
"inheritedFrom": {
|
30808
|
-
"name": "Input",
|
30809
|
-
"module": "components/input/input.component.js"
|
30810
|
-
}
|
30811
|
-
},
|
30812
31308
|
{
|
30813
31309
|
"kind": "field",
|
30814
31310
|
"name": "prefixText",
|
@@ -31196,6 +31692,36 @@
|
|
31196
31692
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
31197
31693
|
}
|
31198
31694
|
},
|
31695
|
+
{
|
31696
|
+
"kind": "field",
|
31697
|
+
"name": "readonly",
|
31698
|
+
"type": {
|
31699
|
+
"text": "boolean"
|
31700
|
+
},
|
31701
|
+
"default": "false",
|
31702
|
+
"description": "Determines whether the form field is read-only.",
|
31703
|
+
"attribute": "readonly",
|
31704
|
+
"reflects": true,
|
31705
|
+
"inheritedFrom": {
|
31706
|
+
"name": "FormfieldWrapper",
|
31707
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
31708
|
+
}
|
31709
|
+
},
|
31710
|
+
{
|
31711
|
+
"kind": "field",
|
31712
|
+
"name": "softDisabled",
|
31713
|
+
"type": {
|
31714
|
+
"text": "boolean"
|
31715
|
+
},
|
31716
|
+
"default": "false",
|
31717
|
+
"description": "Determines whether the form field is soft-disabled.",
|
31718
|
+
"attribute": "soft-disabled",
|
31719
|
+
"reflects": true,
|
31720
|
+
"inheritedFrom": {
|
31721
|
+
"name": "FormfieldWrapper",
|
31722
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
31723
|
+
}
|
31724
|
+
},
|
31199
31725
|
{
|
31200
31726
|
"kind": "method",
|
31201
31727
|
"name": "renderLabelElement",
|
@@ -31430,19 +31956,6 @@
|
|
31430
31956
|
"module": "src/components/input/input.component.ts"
|
31431
31957
|
}
|
31432
31958
|
},
|
31433
|
-
{
|
31434
|
-
"name": "readonly",
|
31435
|
-
"type": {
|
31436
|
-
"text": "boolean"
|
31437
|
-
},
|
31438
|
-
"default": "false",
|
31439
|
-
"description": "readonly attribute of the input field. If true, the input field is read-only.",
|
31440
|
-
"fieldName": "readonly",
|
31441
|
-
"inheritedFrom": {
|
31442
|
-
"name": "Input",
|
31443
|
-
"module": "src/components/input/input.component.ts"
|
31444
|
-
}
|
31445
|
-
},
|
31446
31959
|
{
|
31447
31960
|
"name": "prefix-text",
|
31448
31961
|
"type": {
|
@@ -31689,6 +32202,32 @@
|
|
31689
32202
|
"name": "FormfieldWrapper",
|
31690
32203
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
31691
32204
|
}
|
32205
|
+
},
|
32206
|
+
{
|
32207
|
+
"name": "readonly",
|
32208
|
+
"type": {
|
32209
|
+
"text": "boolean"
|
32210
|
+
},
|
32211
|
+
"default": "false",
|
32212
|
+
"description": "Determines whether the form field is read-only.",
|
32213
|
+
"fieldName": "readonly",
|
32214
|
+
"inheritedFrom": {
|
32215
|
+
"name": "FormfieldWrapper",
|
32216
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
32217
|
+
}
|
32218
|
+
},
|
32219
|
+
{
|
32220
|
+
"name": "soft-disabled",
|
32221
|
+
"type": {
|
32222
|
+
"text": "boolean"
|
32223
|
+
},
|
32224
|
+
"default": "false",
|
32225
|
+
"description": "Determines whether the form field is soft-disabled.",
|
32226
|
+
"fieldName": "softDisabled",
|
32227
|
+
"inheritedFrom": {
|
32228
|
+
"name": "FormfieldWrapper",
|
32229
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
32230
|
+
}
|
31692
32231
|
}
|
31693
32232
|
],
|
31694
32233
|
"superclass": {
|
@@ -33923,6 +34462,36 @@
|
|
33923
34462
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
33924
34463
|
}
|
33925
34464
|
},
|
34465
|
+
{
|
34466
|
+
"kind": "field",
|
34467
|
+
"name": "readonly",
|
34468
|
+
"type": {
|
34469
|
+
"text": "boolean"
|
34470
|
+
},
|
34471
|
+
"default": "false",
|
34472
|
+
"description": "Determines whether the form field is read-only.",
|
34473
|
+
"attribute": "readonly",
|
34474
|
+
"reflects": true,
|
34475
|
+
"inheritedFrom": {
|
34476
|
+
"name": "FormfieldWrapper",
|
34477
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
34478
|
+
}
|
34479
|
+
},
|
34480
|
+
{
|
34481
|
+
"kind": "field",
|
34482
|
+
"name": "softDisabled",
|
34483
|
+
"type": {
|
34484
|
+
"text": "boolean"
|
34485
|
+
},
|
34486
|
+
"default": "false",
|
34487
|
+
"description": "Determines whether the form field is soft-disabled.",
|
34488
|
+
"attribute": "soft-disabled",
|
34489
|
+
"reflects": true,
|
34490
|
+
"inheritedFrom": {
|
34491
|
+
"name": "FormfieldWrapper",
|
34492
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
34493
|
+
}
|
34494
|
+
},
|
33926
34495
|
{
|
33927
34496
|
"kind": "method",
|
33928
34497
|
"name": "renderLabelElement",
|
@@ -34149,6 +34718,32 @@
|
|
34149
34718
|
"name": "FormfieldWrapper",
|
34150
34719
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
34151
34720
|
}
|
34721
|
+
},
|
34722
|
+
{
|
34723
|
+
"name": "readonly",
|
34724
|
+
"type": {
|
34725
|
+
"text": "boolean"
|
34726
|
+
},
|
34727
|
+
"default": "false",
|
34728
|
+
"description": "Determines whether the form field is read-only.",
|
34729
|
+
"fieldName": "readonly",
|
34730
|
+
"inheritedFrom": {
|
34731
|
+
"name": "FormfieldWrapper",
|
34732
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
34733
|
+
}
|
34734
|
+
},
|
34735
|
+
{
|
34736
|
+
"name": "soft-disabled",
|
34737
|
+
"type": {
|
34738
|
+
"text": "boolean"
|
34739
|
+
},
|
34740
|
+
"default": "false",
|
34741
|
+
"description": "Determines whether the form field is soft-disabled.",
|
34742
|
+
"fieldName": "softDisabled",
|
34743
|
+
"inheritedFrom": {
|
34744
|
+
"name": "FormfieldWrapper",
|
34745
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
34746
|
+
}
|
34152
34747
|
}
|
34153
34748
|
],
|
34154
34749
|
"mixins": [
|
@@ -34705,6 +35300,36 @@
|
|
34705
35300
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
34706
35301
|
}
|
34707
35302
|
},
|
35303
|
+
{
|
35304
|
+
"kind": "field",
|
35305
|
+
"name": "readonly",
|
35306
|
+
"type": {
|
35307
|
+
"text": "boolean"
|
35308
|
+
},
|
35309
|
+
"default": "false",
|
35310
|
+
"description": "Determines whether the form field is read-only.",
|
35311
|
+
"attribute": "readonly",
|
35312
|
+
"reflects": true,
|
35313
|
+
"inheritedFrom": {
|
35314
|
+
"name": "FormfieldWrapper",
|
35315
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
35316
|
+
}
|
35317
|
+
},
|
35318
|
+
{
|
35319
|
+
"kind": "field",
|
35320
|
+
"name": "softDisabled",
|
35321
|
+
"type": {
|
35322
|
+
"text": "boolean"
|
35323
|
+
},
|
35324
|
+
"default": "false",
|
35325
|
+
"description": "Determines whether the form field is soft-disabled.",
|
35326
|
+
"attribute": "soft-disabled",
|
35327
|
+
"reflects": true,
|
35328
|
+
"inheritedFrom": {
|
35329
|
+
"name": "FormfieldWrapper",
|
35330
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
35331
|
+
}
|
35332
|
+
},
|
34708
35333
|
{
|
34709
35334
|
"kind": "method",
|
34710
35335
|
"name": "renderLabelElement",
|
@@ -34950,6 +35575,32 @@
|
|
34950
35575
|
"name": "FormfieldWrapper",
|
34951
35576
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
34952
35577
|
}
|
35578
|
+
},
|
35579
|
+
{
|
35580
|
+
"name": "readonly",
|
35581
|
+
"type": {
|
35582
|
+
"text": "boolean"
|
35583
|
+
},
|
35584
|
+
"default": "false",
|
35585
|
+
"description": "Determines whether the form field is read-only.",
|
35586
|
+
"fieldName": "readonly",
|
35587
|
+
"inheritedFrom": {
|
35588
|
+
"name": "FormfieldWrapper",
|
35589
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
35590
|
+
}
|
35591
|
+
},
|
35592
|
+
{
|
35593
|
+
"name": "soft-disabled",
|
35594
|
+
"type": {
|
35595
|
+
"text": "boolean"
|
35596
|
+
},
|
35597
|
+
"default": "false",
|
35598
|
+
"description": "Determines whether the form field is soft-disabled.",
|
35599
|
+
"fieldName": "softDisabled",
|
35600
|
+
"inheritedFrom": {
|
35601
|
+
"name": "FormfieldWrapper",
|
35602
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
35603
|
+
}
|
34953
35604
|
}
|
34954
35605
|
],
|
34955
35606
|
"slots": [
|
@@ -35127,17 +35778,6 @@
|
|
35127
35778
|
"attribute": "checked",
|
35128
35779
|
"reflects": true
|
35129
35780
|
},
|
35130
|
-
{
|
35131
|
-
"kind": "field",
|
35132
|
-
"name": "readonly",
|
35133
|
-
"type": {
|
35134
|
-
"text": "boolean"
|
35135
|
-
},
|
35136
|
-
"default": "false",
|
35137
|
-
"description": "Determines whether the radio is read-only.",
|
35138
|
-
"attribute": "readonly",
|
35139
|
-
"reflects": true
|
35140
|
-
},
|
35141
35781
|
{
|
35142
35782
|
"kind": "method",
|
35143
35783
|
"name": "getAllRadiosWithinSameGroup",
|
@@ -35503,6 +36143,36 @@
|
|
35503
36143
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
35504
36144
|
}
|
35505
36145
|
},
|
36146
|
+
{
|
36147
|
+
"kind": "field",
|
36148
|
+
"name": "readonly",
|
36149
|
+
"type": {
|
36150
|
+
"text": "boolean"
|
36151
|
+
},
|
36152
|
+
"default": "false",
|
36153
|
+
"description": "Determines whether the form field is read-only.",
|
36154
|
+
"attribute": "readonly",
|
36155
|
+
"reflects": true,
|
36156
|
+
"inheritedFrom": {
|
36157
|
+
"name": "FormfieldWrapper",
|
36158
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
36159
|
+
}
|
36160
|
+
},
|
36161
|
+
{
|
36162
|
+
"kind": "field",
|
36163
|
+
"name": "softDisabled",
|
36164
|
+
"type": {
|
36165
|
+
"text": "boolean"
|
36166
|
+
},
|
36167
|
+
"default": "false",
|
36168
|
+
"description": "Determines whether the form field is soft-disabled.",
|
36169
|
+
"attribute": "soft-disabled",
|
36170
|
+
"reflects": true,
|
36171
|
+
"inheritedFrom": {
|
36172
|
+
"name": "FormfieldWrapper",
|
36173
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
36174
|
+
}
|
36175
|
+
},
|
35506
36176
|
{
|
35507
36177
|
"kind": "method",
|
35508
36178
|
"name": "renderLabelElement",
|
@@ -35604,15 +36274,6 @@
|
|
35604
36274
|
"description": "Determines whether the radio is selected or unselected.",
|
35605
36275
|
"fieldName": "checked"
|
35606
36276
|
},
|
35607
|
-
{
|
35608
|
-
"name": "readonly",
|
35609
|
-
"type": {
|
35610
|
-
"text": "boolean"
|
35611
|
-
},
|
35612
|
-
"default": "false",
|
35613
|
-
"description": "Determines whether the radio is read-only.",
|
35614
|
-
"fieldName": "readonly"
|
35615
|
-
},
|
35616
36277
|
{
|
35617
36278
|
"name": "auto-focus-on-mount",
|
35618
36279
|
"type": {
|
@@ -35786,6 +36447,32 @@
|
|
35786
36447
|
"name": "FormfieldWrapper",
|
35787
36448
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
35788
36449
|
}
|
36450
|
+
},
|
36451
|
+
{
|
36452
|
+
"name": "readonly",
|
36453
|
+
"type": {
|
36454
|
+
"text": "boolean"
|
36455
|
+
},
|
36456
|
+
"default": "false",
|
36457
|
+
"description": "Determines whether the form field is read-only.",
|
36458
|
+
"fieldName": "readonly",
|
36459
|
+
"inheritedFrom": {
|
36460
|
+
"name": "FormfieldWrapper",
|
36461
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
36462
|
+
}
|
36463
|
+
},
|
36464
|
+
{
|
36465
|
+
"name": "soft-disabled",
|
36466
|
+
"type": {
|
36467
|
+
"text": "boolean"
|
36468
|
+
},
|
36469
|
+
"default": "false",
|
36470
|
+
"description": "Determines whether the form field is soft-disabled.",
|
36471
|
+
"fieldName": "softDisabled",
|
36472
|
+
"inheritedFrom": {
|
36473
|
+
"name": "FormfieldWrapper",
|
36474
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
36475
|
+
}
|
35789
36476
|
}
|
35790
36477
|
],
|
35791
36478
|
"mixins": [
|
@@ -36024,6 +36711,36 @@
|
|
36024
36711
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
36025
36712
|
}
|
36026
36713
|
},
|
36714
|
+
{
|
36715
|
+
"kind": "field",
|
36716
|
+
"name": "readonly",
|
36717
|
+
"type": {
|
36718
|
+
"text": "boolean"
|
36719
|
+
},
|
36720
|
+
"default": "false",
|
36721
|
+
"description": "Determines whether the form field is read-only.",
|
36722
|
+
"attribute": "readonly",
|
36723
|
+
"reflects": true,
|
36724
|
+
"inheritedFrom": {
|
36725
|
+
"name": "FormfieldWrapper",
|
36726
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
36727
|
+
}
|
36728
|
+
},
|
36729
|
+
{
|
36730
|
+
"kind": "field",
|
36731
|
+
"name": "softDisabled",
|
36732
|
+
"type": {
|
36733
|
+
"text": "boolean"
|
36734
|
+
},
|
36735
|
+
"default": "false",
|
36736
|
+
"description": "Determines whether the form field is soft-disabled.",
|
36737
|
+
"attribute": "soft-disabled",
|
36738
|
+
"reflects": true,
|
36739
|
+
"inheritedFrom": {
|
36740
|
+
"name": "FormfieldWrapper",
|
36741
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
36742
|
+
}
|
36743
|
+
},
|
36027
36744
|
{
|
36028
36745
|
"kind": "method",
|
36029
36746
|
"name": "renderLabelElement",
|
@@ -36232,6 +36949,32 @@
|
|
36232
36949
|
"name": "FormfieldWrapper",
|
36233
36950
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
36234
36951
|
}
|
36952
|
+
},
|
36953
|
+
{
|
36954
|
+
"name": "readonly",
|
36955
|
+
"type": {
|
36956
|
+
"text": "boolean"
|
36957
|
+
},
|
36958
|
+
"default": "false",
|
36959
|
+
"description": "Determines whether the form field is read-only.",
|
36960
|
+
"fieldName": "readonly",
|
36961
|
+
"inheritedFrom": {
|
36962
|
+
"name": "FormfieldWrapper",
|
36963
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
36964
|
+
}
|
36965
|
+
},
|
36966
|
+
{
|
36967
|
+
"name": "soft-disabled",
|
36968
|
+
"type": {
|
36969
|
+
"text": "boolean"
|
36970
|
+
},
|
36971
|
+
"default": "false",
|
36972
|
+
"description": "Determines whether the form field is soft-disabled.",
|
36973
|
+
"fieldName": "softDisabled",
|
36974
|
+
"inheritedFrom": {
|
36975
|
+
"name": "FormfieldWrapper",
|
36976
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
36977
|
+
}
|
36235
36978
|
}
|
36236
36979
|
],
|
36237
36980
|
"superclass": {
|
@@ -36936,20 +37679,6 @@
|
|
36936
37679
|
"module": "components/input/input.component.js"
|
36937
37680
|
}
|
36938
37681
|
},
|
36939
|
-
{
|
36940
|
-
"kind": "field",
|
36941
|
-
"name": "readonly",
|
36942
|
-
"type": {
|
36943
|
-
"text": "boolean"
|
36944
|
-
},
|
36945
|
-
"default": "false",
|
36946
|
-
"description": "readonly attribute of the input field. If true, the input field is read-only.",
|
36947
|
-
"attribute": "readonly",
|
36948
|
-
"inheritedFrom": {
|
36949
|
-
"name": "Input",
|
36950
|
-
"module": "components/input/input.component.js"
|
36951
|
-
}
|
36952
|
-
},
|
36953
37682
|
{
|
36954
37683
|
"kind": "field",
|
36955
37684
|
"name": "prefixText",
|
@@ -37364,6 +38093,36 @@
|
|
37364
38093
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
37365
38094
|
}
|
37366
38095
|
},
|
38096
|
+
{
|
38097
|
+
"kind": "field",
|
38098
|
+
"name": "readonly",
|
38099
|
+
"type": {
|
38100
|
+
"text": "boolean"
|
38101
|
+
},
|
38102
|
+
"default": "false",
|
38103
|
+
"description": "Determines whether the form field is read-only.",
|
38104
|
+
"attribute": "readonly",
|
38105
|
+
"reflects": true,
|
38106
|
+
"inheritedFrom": {
|
38107
|
+
"name": "FormfieldWrapper",
|
38108
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
38109
|
+
}
|
38110
|
+
},
|
38111
|
+
{
|
38112
|
+
"kind": "field",
|
38113
|
+
"name": "softDisabled",
|
38114
|
+
"type": {
|
38115
|
+
"text": "boolean"
|
38116
|
+
},
|
38117
|
+
"default": "false",
|
38118
|
+
"description": "Determines whether the form field is soft-disabled.",
|
38119
|
+
"attribute": "soft-disabled",
|
38120
|
+
"reflects": true,
|
38121
|
+
"inheritedFrom": {
|
38122
|
+
"name": "FormfieldWrapper",
|
38123
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
38124
|
+
}
|
38125
|
+
},
|
37367
38126
|
{
|
37368
38127
|
"kind": "method",
|
37369
38128
|
"name": "renderLabelElement",
|
@@ -37584,19 +38343,6 @@
|
|
37584
38343
|
"module": "src/components/input/input.component.ts"
|
37585
38344
|
}
|
37586
38345
|
},
|
37587
|
-
{
|
37588
|
-
"name": "readonly",
|
37589
|
-
"type": {
|
37590
|
-
"text": "boolean"
|
37591
|
-
},
|
37592
|
-
"default": "false",
|
37593
|
-
"description": "readonly attribute of the input field. If true, the input field is read-only.",
|
37594
|
-
"fieldName": "readonly",
|
37595
|
-
"inheritedFrom": {
|
37596
|
-
"name": "Input",
|
37597
|
-
"module": "src/components/input/input.component.ts"
|
37598
|
-
}
|
37599
|
-
},
|
37600
38346
|
{
|
37601
38347
|
"name": "prefix-text",
|
37602
38348
|
"type": {
|
@@ -37855,6 +38601,32 @@
|
|
37855
38601
|
"name": "FormfieldWrapper",
|
37856
38602
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
37857
38603
|
}
|
38604
|
+
},
|
38605
|
+
{
|
38606
|
+
"name": "readonly",
|
38607
|
+
"type": {
|
38608
|
+
"text": "boolean"
|
38609
|
+
},
|
38610
|
+
"default": "false",
|
38611
|
+
"description": "Determines whether the form field is read-only.",
|
38612
|
+
"fieldName": "readonly",
|
38613
|
+
"inheritedFrom": {
|
38614
|
+
"name": "FormfieldWrapper",
|
38615
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
38616
|
+
}
|
38617
|
+
},
|
38618
|
+
{
|
38619
|
+
"name": "soft-disabled",
|
38620
|
+
"type": {
|
38621
|
+
"text": "boolean"
|
38622
|
+
},
|
38623
|
+
"default": "false",
|
38624
|
+
"description": "Determines whether the form field is soft-disabled.",
|
38625
|
+
"fieldName": "softDisabled",
|
38626
|
+
"inheritedFrom": {
|
38627
|
+
"name": "FormfieldWrapper",
|
38628
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
38629
|
+
}
|
37858
38630
|
}
|
37859
38631
|
],
|
37860
38632
|
"cssProperties": [
|
@@ -38208,16 +38980,6 @@
|
|
38208
38980
|
"description": "The placeholder text which will be shown on the text if provided.",
|
38209
38981
|
"attribute": "placeholder"
|
38210
38982
|
},
|
38211
|
-
{
|
38212
|
-
"kind": "field",
|
38213
|
-
"name": "readonly",
|
38214
|
-
"type": {
|
38215
|
-
"text": "boolean"
|
38216
|
-
},
|
38217
|
-
"default": "false",
|
38218
|
-
"description": "readonly attribute of the select field. If true, the select is read-only.",
|
38219
|
-
"attribute": "readonly"
|
38220
|
-
},
|
38221
38983
|
{
|
38222
38984
|
"kind": "field",
|
38223
38985
|
"name": "placement",
|
@@ -38229,17 +38991,6 @@
|
|
38229
38991
|
"attribute": "placement",
|
38230
38992
|
"reflects": true
|
38231
38993
|
},
|
38232
|
-
{
|
38233
|
-
"kind": "field",
|
38234
|
-
"name": "softDisabled",
|
38235
|
-
"type": {
|
38236
|
-
"text": "boolean | undefined"
|
38237
|
-
},
|
38238
|
-
"description": "Indicates whether the select is soft disabled.\nWhen set to `true`, the select appears visually disabled but still allows\nfocus.",
|
38239
|
-
"default": "undefined",
|
38240
|
-
"attribute": "soft-disabled",
|
38241
|
-
"reflects": true
|
38242
|
-
},
|
38243
38994
|
{
|
38244
38995
|
"kind": "field",
|
38245
38996
|
"name": "boundary",
|
@@ -38808,6 +39559,36 @@
|
|
38808
39559
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
38809
39560
|
}
|
38810
39561
|
},
|
39562
|
+
{
|
39563
|
+
"kind": "field",
|
39564
|
+
"name": "readonly",
|
39565
|
+
"type": {
|
39566
|
+
"text": "boolean"
|
39567
|
+
},
|
39568
|
+
"default": "false",
|
39569
|
+
"description": "Determines whether the form field is read-only.",
|
39570
|
+
"attribute": "readonly",
|
39571
|
+
"reflects": true,
|
39572
|
+
"inheritedFrom": {
|
39573
|
+
"name": "FormfieldWrapper",
|
39574
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
39575
|
+
}
|
39576
|
+
},
|
39577
|
+
{
|
39578
|
+
"kind": "field",
|
39579
|
+
"name": "softDisabled",
|
39580
|
+
"type": {
|
39581
|
+
"text": "boolean"
|
39582
|
+
},
|
39583
|
+
"default": "false",
|
39584
|
+
"description": "Determines whether the form field is soft-disabled.",
|
39585
|
+
"attribute": "soft-disabled",
|
39586
|
+
"reflects": true,
|
39587
|
+
"inheritedFrom": {
|
39588
|
+
"name": "FormfieldWrapper",
|
39589
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
39590
|
+
}
|
39591
|
+
},
|
38811
39592
|
{
|
38812
39593
|
"kind": "method",
|
38813
39594
|
"name": "renderLabelElement",
|
@@ -38926,15 +39707,6 @@
|
|
38926
39707
|
"description": "The placeholder text which will be shown on the text if provided.",
|
38927
39708
|
"fieldName": "placeholder"
|
38928
39709
|
},
|
38929
|
-
{
|
38930
|
-
"name": "readonly",
|
38931
|
-
"type": {
|
38932
|
-
"text": "boolean"
|
38933
|
-
},
|
38934
|
-
"default": "false",
|
38935
|
-
"description": "readonly attribute of the select field. If true, the select is read-only.",
|
38936
|
-
"fieldName": "readonly"
|
38937
|
-
},
|
38938
39710
|
{
|
38939
39711
|
"name": "placement",
|
38940
39712
|
"type": {
|
@@ -38944,15 +39716,6 @@
|
|
38944
39716
|
"default": "'bottom-start'",
|
38945
39717
|
"fieldName": "placement"
|
38946
39718
|
},
|
38947
|
-
{
|
38948
|
-
"name": "soft-disabled",
|
38949
|
-
"type": {
|
38950
|
-
"text": "boolean | undefined"
|
38951
|
-
},
|
38952
|
-
"description": "Indicates whether the select is soft disabled.\nWhen set to `true`, the select appears visually disabled but still allows\nfocus.",
|
38953
|
-
"default": "undefined",
|
38954
|
-
"fieldName": "softDisabled"
|
38955
|
-
},
|
38956
39719
|
{
|
38957
39720
|
"name": "boundary",
|
38958
39721
|
"type": {
|
@@ -39161,6 +39924,32 @@
|
|
39161
39924
|
"name": "FormfieldWrapper",
|
39162
39925
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
39163
39926
|
}
|
39927
|
+
},
|
39928
|
+
{
|
39929
|
+
"name": "readonly",
|
39930
|
+
"type": {
|
39931
|
+
"text": "boolean"
|
39932
|
+
},
|
39933
|
+
"default": "false",
|
39934
|
+
"description": "Determines whether the form field is read-only.",
|
39935
|
+
"fieldName": "readonly",
|
39936
|
+
"inheritedFrom": {
|
39937
|
+
"name": "FormfieldWrapper",
|
39938
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
39939
|
+
}
|
39940
|
+
},
|
39941
|
+
{
|
39942
|
+
"name": "soft-disabled",
|
39943
|
+
"type": {
|
39944
|
+
"text": "boolean"
|
39945
|
+
},
|
39946
|
+
"default": "false",
|
39947
|
+
"description": "Determines whether the form field is soft-disabled.",
|
39948
|
+
"fieldName": "softDisabled",
|
39949
|
+
"inheritedFrom": {
|
39950
|
+
"name": "FormfieldWrapper",
|
39951
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
39952
|
+
}
|
39164
39953
|
}
|
39165
39954
|
],
|
39166
39955
|
"mixins": [
|
@@ -40471,7 +41260,7 @@
|
|
40471
41260
|
"declarations": [
|
40472
41261
|
{
|
40473
41262
|
"kind": "class",
|
40474
|
-
"description": "This is a decorative component that is styled to look as a checkbox.\n\nIt has
|
41263
|
+
"description": "This is a decorative component that is styled to look as a checkbox.\n\nIt has 5 properties - checked, indeterminate, disabled, readonly and soft-disabled.\n\nWe are using the same styling that has been created for the `mdc-checkbox` component.",
|
40475
41264
|
"name": "StaticCheckbox",
|
40476
41265
|
"cssProperties": [
|
40477
41266
|
{
|
@@ -40550,6 +41339,28 @@
|
|
40550
41339
|
"attribute": "indeterminate",
|
40551
41340
|
"reflects": true
|
40552
41341
|
},
|
41342
|
+
{
|
41343
|
+
"kind": "field",
|
41344
|
+
"name": "readonly",
|
41345
|
+
"type": {
|
41346
|
+
"text": "boolean"
|
41347
|
+
},
|
41348
|
+
"default": "false",
|
41349
|
+
"description": "Determines whether the checkbox is read-only.",
|
41350
|
+
"attribute": "readonly",
|
41351
|
+
"reflects": true
|
41352
|
+
},
|
41353
|
+
{
|
41354
|
+
"kind": "field",
|
41355
|
+
"name": "softDisabled",
|
41356
|
+
"type": {
|
41357
|
+
"text": "boolean"
|
41358
|
+
},
|
41359
|
+
"default": "false",
|
41360
|
+
"description": "Determines whether the checkbox is soft-disabled.",
|
41361
|
+
"attribute": "soft-disabled",
|
41362
|
+
"reflects": true
|
41363
|
+
},
|
40553
41364
|
{
|
40554
41365
|
"kind": "field",
|
40555
41366
|
"name": "disabled",
|
@@ -40585,6 +41396,24 @@
|
|
40585
41396
|
"description": "Determines whether the checkbox is in an indeterminate state.",
|
40586
41397
|
"fieldName": "indeterminate"
|
40587
41398
|
},
|
41399
|
+
{
|
41400
|
+
"name": "readonly",
|
41401
|
+
"type": {
|
41402
|
+
"text": "boolean"
|
41403
|
+
},
|
41404
|
+
"default": "false",
|
41405
|
+
"description": "Determines whether the checkbox is read-only.",
|
41406
|
+
"fieldName": "readonly"
|
41407
|
+
},
|
41408
|
+
{
|
41409
|
+
"name": "soft-disabled",
|
41410
|
+
"type": {
|
41411
|
+
"text": "boolean"
|
41412
|
+
},
|
41413
|
+
"default": "false",
|
41414
|
+
"description": "Determines whether the checkbox is soft-disabled.",
|
41415
|
+
"fieldName": "softDisabled"
|
41416
|
+
},
|
40588
41417
|
{
|
40589
41418
|
"name": "disabled",
|
40590
41419
|
"type": {
|
@@ -40610,7 +41439,7 @@
|
|
40610
41439
|
"module": "/src/models"
|
40611
41440
|
},
|
40612
41441
|
"tagName": "mdc-staticcheckbox",
|
40613
|
-
"jsDoc": "/**\n * This is a decorative component that is styled to look as a checkbox.\n *\n * It has
|
41442
|
+
"jsDoc": "/**\n * This is a decorative component that is styled to look as a checkbox.\n *\n * It has 5 properties - checked, indeterminate, disabled, readonly and soft-disabled.\n *\n * We are using the same styling that has been created for the `mdc-checkbox` component.\n *\n * @tagname mdc-staticcheckbox\n *\n * @dependency mdc-icon\n *\n * @cssproperty --mdc-staticcheckbox-border-color - Border color in high contrast.\n * @cssproperty --mdc-staticcheckbox-checked-background-color - Background color for a selected checkbox.\n * @cssproperty --mdc-staticcheckbox-disabled-background-color - Background color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-disabled-border-color - Border color for a disabled checkbox.\n * @cssproperty --mdc-checkbox-disabled-checked-icon-color - Background color for a disabled, selected checkbox.\n * @cssproperty --mdc-staticcheckbox-disabled-icon-color - Icon color for a disabled checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-background-color - Background color for an unselected checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-border-color - Default background color for an unselected checkbox.\n * @cssproperty --mdc-staticcheckbox-icon-color - Icon color for an unselected checkbox.\n *\n * @csspart icon-container - The container for the checkbox icon.\n * @csspart checkbox-icon - The checkbox icon.\n *\n * @slot - Default slot for adding label text.\n */",
|
40614
41443
|
"customElement": true
|
40615
41444
|
}
|
40616
41445
|
],
|
@@ -40764,7 +41593,7 @@
|
|
40764
41593
|
"declarations": [
|
40765
41594
|
{
|
40766
41595
|
"kind": "class",
|
40767
|
-
"description": "This is a decorative component that is styled to look as a radio.\nIt has
|
41596
|
+
"description": "This is a decorative component that is styled to look as a radio.\nIt has 4 properties - checked, disabled, readonly and soft-disabled.\n\nWe are using the same styling that has been created for the `mdc-radio` component.",
|
40768
41597
|
"name": "StaticRadio",
|
40769
41598
|
"cssProperties": [
|
40770
41599
|
{
|
@@ -40843,6 +41672,17 @@
|
|
40843
41672
|
"attribute": "readonly",
|
40844
41673
|
"reflects": true
|
40845
41674
|
},
|
41675
|
+
{
|
41676
|
+
"kind": "field",
|
41677
|
+
"name": "softDisabled",
|
41678
|
+
"type": {
|
41679
|
+
"text": "boolean"
|
41680
|
+
},
|
41681
|
+
"default": "false",
|
41682
|
+
"description": "Determines whether the radio is soft-disabled.",
|
41683
|
+
"attribute": "soft-disabled",
|
41684
|
+
"reflects": true
|
41685
|
+
},
|
40846
41686
|
{
|
40847
41687
|
"kind": "field",
|
40848
41688
|
"name": "disabled",
|
@@ -40878,6 +41718,15 @@
|
|
40878
41718
|
"description": "Determines whether the radio is read-only.",
|
40879
41719
|
"fieldName": "readonly"
|
40880
41720
|
},
|
41721
|
+
{
|
41722
|
+
"name": "soft-disabled",
|
41723
|
+
"type": {
|
41724
|
+
"text": "boolean"
|
41725
|
+
},
|
41726
|
+
"default": "false",
|
41727
|
+
"description": "Determines whether the radio is soft-disabled.",
|
41728
|
+
"fieldName": "softDisabled"
|
41729
|
+
},
|
40881
41730
|
{
|
40882
41731
|
"name": "disabled",
|
40883
41732
|
"type": {
|
@@ -40903,7 +41752,7 @@
|
|
40903
41752
|
"module": "/src/models"
|
40904
41753
|
},
|
40905
41754
|
"tagName": "mdc-staticradio",
|
40906
|
-
"jsDoc": "/**\n * This is a decorative component that is styled to look as a radio.\n * It has
|
41755
|
+
"jsDoc": "/**\n * This is a decorative component that is styled to look as a radio.\n * It has 4 properties - checked, disabled, readonly and soft-disabled.\n *\n * We are using the same styling that has been created for the `mdc-radio` component.\n *\n * @tagname mdc-staticradio\n *\n * @cssproperty --mdc-staticradio-inner-circle-size - size of the inner circle\n * @cssproperty --mdc-staticradio-text-disabled-color - color of the label when disabled\n * @cssproperty --mdc-staticradio-normal-border-color - color of the radio button border when normal\n * @cssproperty --mdc-staticradio-disabled-border-color - color of the radio button border when disabled\n * @cssproperty --mdc-staticradio-inner-circle-normal-background - background color of the inner circle when normal\n * @cssproperty --mdc-staticradio-inner-circle-disabled-background - background color of the inner circle when disabled\n * @cssproperty --mdc-staticradio-control-inactive-color - color of the radio button when inactive\n * @cssproperty --mdc-staticradio-control-inactive-disabled-background - background color of the radio button when\n * inactive and disabled\n * @cssproperty --mdc-staticradio-control-active-color - color of the radio button when active\n * @cssproperty --mdc-staticradio-control-active-disabled-background - background color of the radio button\n * when active and disabled\n *\n * @csspart radio-icon - The radio icon.\n *\n * @slot - Default slot for the label of the radio.\n */",
|
40907
41756
|
"customElement": true
|
40908
41757
|
}
|
40909
41758
|
],
|
@@ -40924,7 +41773,7 @@
|
|
40924
41773
|
"declarations": [
|
40925
41774
|
{
|
40926
41775
|
"kind": "class",
|
40927
|
-
"description": "This is a decorative component that is styled to look as a toggle. <br/>\nIt has
|
41776
|
+
"description": "This is a decorative component that is styled to look as a toggle. <br/>\nIt has 5 properties - checked, size, disabled, readonly and soft-disabled. <br/>\nWe are using the same styling that has been created for the `mdc-toggle` component.",
|
40928
41777
|
"name": "StaticToggle",
|
40929
41778
|
"cssProperties": [
|
40930
41779
|
{
|
@@ -41031,6 +41880,28 @@
|
|
41031
41880
|
"attribute": "size",
|
41032
41881
|
"reflects": true
|
41033
41882
|
},
|
41883
|
+
{
|
41884
|
+
"kind": "field",
|
41885
|
+
"name": "readonly",
|
41886
|
+
"type": {
|
41887
|
+
"text": "boolean"
|
41888
|
+
},
|
41889
|
+
"default": "false",
|
41890
|
+
"description": "Determines whether the toggle is read-only.",
|
41891
|
+
"attribute": "readonly",
|
41892
|
+
"reflects": true
|
41893
|
+
},
|
41894
|
+
{
|
41895
|
+
"kind": "field",
|
41896
|
+
"name": "softDisabled",
|
41897
|
+
"type": {
|
41898
|
+
"text": "boolean"
|
41899
|
+
},
|
41900
|
+
"default": "false",
|
41901
|
+
"description": "Determines whether the toggle is soft-disabled.",
|
41902
|
+
"attribute": "soft-disabled",
|
41903
|
+
"reflects": true
|
41904
|
+
},
|
41034
41905
|
{
|
41035
41906
|
"kind": "field",
|
41036
41907
|
"name": "disabled",
|
@@ -41066,6 +41937,24 @@
|
|
41066
41937
|
"default": "default",
|
41067
41938
|
"fieldName": "size"
|
41068
41939
|
},
|
41940
|
+
{
|
41941
|
+
"name": "readonly",
|
41942
|
+
"type": {
|
41943
|
+
"text": "boolean"
|
41944
|
+
},
|
41945
|
+
"default": "false",
|
41946
|
+
"description": "Determines whether the toggle is read-only.",
|
41947
|
+
"fieldName": "readonly"
|
41948
|
+
},
|
41949
|
+
{
|
41950
|
+
"name": "soft-disabled",
|
41951
|
+
"type": {
|
41952
|
+
"text": "boolean"
|
41953
|
+
},
|
41954
|
+
"default": "false",
|
41955
|
+
"description": "Determines whether the toggle is soft-disabled.",
|
41956
|
+
"fieldName": "softDisabled"
|
41957
|
+
},
|
41069
41958
|
{
|
41070
41959
|
"name": "disabled",
|
41071
41960
|
"type": {
|
@@ -41091,7 +41980,7 @@
|
|
41091
41980
|
"module": "/src/models"
|
41092
41981
|
},
|
41093
41982
|
"tagName": "mdc-statictoggle",
|
41094
|
-
"jsDoc": "/**\n * This is a decorative component that is styled to look as a toggle. <br/>\n * It has
|
41983
|
+
"jsDoc": "/**\n * This is a decorative component that is styled to look as a toggle. <br/>\n * It has 5 properties - checked, size, disabled, readonly and soft-disabled. <br/>\n * We are using the same styling that has been created for the `mdc-toggle` component.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-statictoggle\n *\n * @slot default - This is a default/unnamed slot\n *\n * @cssproperty --mdc-statictoggle-width - Width of the toggle\n * @cssproperty --mdc-statictoggle-height - Height of the toggle\n * @cssproperty --mdc-statictoggle-width-compact - Width of the toggle when it's size is compact\n * @cssproperty --mdc-statictoggle-height-compact - Height of the toggle when it's size is compact\n * @cssproperty --mdc-statictoggle-border-radius - Border radius of the toggle\n * @cssproperty --mdc-statictoggle-border-radius-compact - Border radius of the toggle when it's size is compact\n * @cssproperty --mdc-statictoggle-border - Border of the toggle\n * @cssproperty --mdc-statictoggle-inactive-rest-color - Background color of the inactive toggle in rest state\n * @cssproperty --mdc-statictoggle-inactive-disabled-color - Background color of the inactive toggle in disabled state\n * @cssproperty --mdc-statictoggle-active-rest-color - Background color of the active toggle in rest state\n * @cssproperty --mdc-statictoggle-active-disabled-color - Background color of the active toggle in disabled state\n * @cssproperty --mdc-statictoggle-icon-color-normal - Color of the icon in normal state\n * @cssproperty --mdc-statictoggle-icon-color-disabled - Color of the icon in disabled state\n * @cssproperty --mdc-statictoggle-icon-background-color-normal - Background color of the icon in normal state\n * @cssproperty --mdc-statictoggle-icon-background-color-disabled - Background color of the icon in disabled state\n *\n * @csspart slider - The slider part of the toggle\n * @csspart toggle-icon - The icon part of the toggle\n *\n * @slot - Default slot for adding label text.\n */",
|
41095
41984
|
"customElement": true
|
41096
41985
|
}
|
41097
41986
|
],
|
@@ -41597,6 +42486,14 @@
|
|
41597
42486
|
"description": "`mdc-tab` is Tab component to be used within the Tabgroup.\n\nPassing in the attribute `text` to the tab component is changing the text displayed in the tab.\n\nPass attribute `tabid` when using inside of `tablist` component.\n\nThe `slot=\"badge\"` can be used to add a badge to the tab.\n\nThe `slot=\"chip\"` can be used to add a chip to the tab.\n\nFor `icon`, the `mdc-icon` component is used to render the icon.\n\nNote: Icons can be used in conjunction with badges or chips.\nBadges and chips should not be used at the same time.",
|
41598
42487
|
"name": "Tab",
|
41599
42488
|
"cssProperties": [
|
42489
|
+
{
|
42490
|
+
"description": "Height for button size",
|
42491
|
+
"name": "--mdc-button-height",
|
42492
|
+
"inheritedFrom": {
|
42493
|
+
"name": "Buttonsimple",
|
42494
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
42495
|
+
}
|
42496
|
+
},
|
41600
42497
|
{
|
41601
42498
|
"description": "Gap between the badge(if provided), icon and text.",
|
41602
42499
|
"name": "--mdc-tab-content-gap"
|
@@ -41796,6 +42693,30 @@
|
|
41796
42693
|
{
|
41797
42694
|
"description": "Text and icon color for inactive pill tab in disabled state.",
|
41798
42695
|
"name": "--mdc-tab-pill-inactive-color-disabled"
|
42696
|
+
},
|
42697
|
+
{
|
42698
|
+
"description": "Background color of the button",
|
42699
|
+
"name": "--mdc-button-background",
|
42700
|
+
"inheritedFrom": {
|
42701
|
+
"name": "Buttonsimple",
|
42702
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
42703
|
+
}
|
42704
|
+
},
|
42705
|
+
{
|
42706
|
+
"description": "Borer color of the button",
|
42707
|
+
"name": "--mdc-button-border-color",
|
42708
|
+
"inheritedFrom": {
|
42709
|
+
"name": "Buttonsimple",
|
42710
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
42711
|
+
}
|
42712
|
+
},
|
42713
|
+
{
|
42714
|
+
"description": "Text color of the button",
|
42715
|
+
"name": "--mdc-button-text-color",
|
42716
|
+
"inheritedFrom": {
|
42717
|
+
"name": "Buttonsimple",
|
42718
|
+
"module": "src/components/buttonsimple/buttonsimple.component.ts"
|
42719
|
+
}
|
41799
42720
|
}
|
41800
42721
|
],
|
41801
42722
|
"cssParts": [
|
@@ -42458,7 +43379,7 @@
|
|
42458
43379
|
"module": "/src/components/buttonsimple/buttonsimple.component"
|
42459
43380
|
},
|
42460
43381
|
"tagName": "mdc-tab",
|
42461
|
-
"jsDoc": "/**\n * `mdc-tab` is Tab component to be used within the Tabgroup.\n *\n * Passing in the attribute `text` to the tab component is changing the text displayed in the tab.\n *\n * Pass attribute `tabid` when using inside of `tablist` component.\n *\n * The `slot=\"badge\"` can be used to add a badge to the tab.\n *\n * The `slot=\"chip\"` can be used to add a chip to the tab.\n *\n * For `icon`, the `mdc-icon` component is used to render the icon.\n *\n * Note: Icons can be used in conjunction with badges or chips.\n * Badges and chips should not be used at the same time.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @event click - (React: onClick) This event is dispatched when the tab is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the tab.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the tab.\n * @event focus - (React: onFocus) This event is dispatched when the tab receives focus.\n * @event activechange - (React: onActiveChange) This event is dispatched when the active state of the tab changes\n * <br />\n * Event Data: `detail: { tabId: this.tabId, active }`\n * <br />\n * Note: the activechange event is used by the tab list component to react to the change in state of the tab,\n * so this event won't be needed if the tab list is used.\n *\n * @tagname mdc-tab\n *\n * @cssproperty --mdc-tab-content-gap - Gap between the badge(if provided), icon and text.\n * @cssproperty --mdc-tab-height - Height of the tab.\n * @cssproperty --mdc-tab-glass-active-background-color-disabled - Background color for active glass tab\n * in disabled state.\n * @cssproperty --mdc-tab-glass-active-background-color-hover - Background color for active glass tab in hover state.\n * @cssproperty --mdc-tab-glass-active-background-color-normal - Background color for active glass tab in rest state.\n * @cssproperty --mdc-tab-glass-active-background-color-pressed - Background color for active glass tab\n * in pressed state.\n * @cssproperty --mdc-tab-glass-active-color - Text and icon color for active glass tab.\n * @cssproperty --mdc-tab-glass-active-color-disabled - Text and icon color for active glass tab in disabled state.\n * @cssproperty --mdc-tab-glass-border-radius - Border radius for glass tab.\n * @cssproperty --mdc-tab-glass-inactive-background-color-disabled - Background color for inactive glass tab\n * in disabled state.\n * @cssproperty --mdc-tab-glass-inactive-background-color-hover - Background color for inactive glass tab\n * in hover state.\n * @cssproperty --mdc-tab-glass-inactive-background-color-normal - Background color for inactive glass tab\n * in rest state.\n * @cssproperty --mdc-tab-glass-inactive-background-color-pressed - Background color for inactive glass tab\n * in pressed state.\n * @cssproperty --mdc-tab-glass-inactive-color - Text and icon color for inactive glass tab.\n * @cssproperty --mdc-tab-glass-inactive-color-disabled - Text and icon color for inactive glass tab in disabled state.\n * @cssproperty --mdc-tab-line-active-background-color-pressed - Background color for active line tab in pressed state.\n * @cssproperty --mdc-tab-line-active-background-color-disabled - Background color for active line tab\n * in disabled state.\n * @cssproperty --mdc-tab-line-active-background-color-hover - Background color for active line tab in hover state.\n * @cssproperty --mdc-tab-line-active-background-color-normal - Background color for active line tab in rest state.\n * @cssproperty --mdc-tab-line-active-color - Text and icon color for active line tab.\n * @cssproperty --mdc-tab-line-active-color-disabled - Text and icon color for active line tab in disabled state.\n * @cssproperty --mdc-tab-line-active-indicator-color - color for indicator in active line tab.\n * @cssproperty --mdc-tab-line-active-indicator-color-disabled - Color for indicator in active line tab\n * in disabled state.\n * @cssproperty --mdc-tab-line-active-indicator-height - Height for indicator in active line tab.\n * @cssproperty --mdc-tab-line-active-indicator-width - Width for indicator in active line tab.\n * @cssproperty --mdc-tab-line-border-bottom-left-radius - Bottom left border radius for line tab.\n * @cssproperty --mdc-tab-line-border-bottom-right-radius - Bottom right border radius for line tab.\n * @cssproperty --mdc-tab-line-border-top-left-radius - Top left border radius for line tab.\n * @cssproperty --mdc-tab-line-border-top-right-radius - Top right border radius for line tab.\n * @cssproperty --mdc-tab-line-inactive-background-color-pressed - Background color for inactive line tab\n * in pressed state.\n * @cssproperty --mdc-tab-line-inactive-background-color-disabled - Background color for inactive line tab\n * in disabled state\n * @cssproperty --mdc-tab-line-inactive-background-color-hover - Background color for inactive line tab in hover state.\n * @cssproperty --mdc-tab-line-inactive-background-color-normal - Background color for inactive line tab\n * in rest state.\n * @cssproperty --mdc-tab-line-inactive-color - Text and icon color for inactive line tab.\n * @cssproperty --mdc-tab-line-inactive-color-disabled - Text and icon color for inactive line tab in disabled state.\n * @cssproperty --mdc-tab-padding-left - Padding left for the tab.\n * @cssproperty --mdc-tab-padding-right - Padding right for the tab.\n * @cssproperty --mdc-tab-pill-active-background-color-pressed - Background color for active pill tab in pressed state.\n * @cssproperty --mdc-tab-pill-active-background-color-disabled - Background color for active pill tab\n * in disabled state.\n * @cssproperty --mdc-tab-pill-active-background-color-hover - Background color for active pill tab in hover state.\n * @cssproperty --mdc-tab-pill-active-background-color-normal - Background color for active pill tab in rest state.\n * @cssproperty --mdc-tab-pill-active-color - Text and icon color for active pill tab.\n * @cssproperty --mdc-tab-pill-active-color-disabled - Text and icon color for active pill tab in disabled state.\n * @cssproperty --mdc-tab-pill-border-radius - Border radius for pill tab.\n * @cssproperty --mdc-tab-pill-inactive-background-color-pressed - Background color for inactive pill tab\n * in pressed state.\n * @cssproperty --mdc-tab-pill-inactive-background-color-disabled - Background color for inactive pill tab\n * in disabled state.\n * @cssproperty --mdc-tab-pill-inactive-background-color-hover - Background color for inactive pill tab in hover state.\n * @cssproperty --mdc-tab-pill-inactive-background-color-normal - Background color for inactive pill tab in rest state.\n * @cssproperty --mdc-tab-pill-inactive-color - Text and icon color for inactive pill tab.\n * @cssproperty --mdc-tab-pill-inactive-color-disabled - Text and icon color for inactive pill tab in disabled state.\n *\n * @csspart container - The container of the tab.\n * @csspart icon - The icon of the tab.\n * @csspart indicator - The indicator of the tab.\n * @csspart text - The text of the tab.\n */",
|
43382
|
+
"jsDoc": "/**\n * `mdc-tab` is Tab component to be used within the Tabgroup.\n *\n * Passing in the attribute `text` to the tab component is changing the text displayed in the tab.\n *\n * Pass attribute `tabid` when using inside of `tablist` component.\n *\n * The `slot=\"badge\"` can be used to add a badge to the tab.\n *\n * The `slot=\"chip\"` can be used to add a chip to the tab.\n *\n * For `icon`, the `mdc-icon` component is used to render the icon.\n *\n * Note: Icons can be used in conjunction with badges or chips.\n * Badges and chips should not be used at the same time.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @event click - (React: onClick) This event is dispatched when the tab is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the tab.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the tab.\n * @event focus - (React: onFocus) This event is dispatched when the tab receives focus.\n * @event activechange - (React: onActiveChange) This event is dispatched when the active state of the tab changes\n * <br />\n * Event Data: `detail: { tabId: this.tabId, active }`\n * <br />\n * Note: the activechange event is used by the tab list component to react to the change in state of the tab,\n * so this event won't be needed if the tab list is used.\n *\n * @tagname mdc-tab\n *\n * @cssproperty --mdc-button-height - Height for button size\n * @cssproperty --mdc-tab-content-gap - Gap between the badge(if provided), icon and text.\n * @cssproperty --mdc-tab-height - Height of the tab.\n * @cssproperty --mdc-tab-glass-active-background-color-disabled - Background color for active glass tab\n * in disabled state.\n * @cssproperty --mdc-tab-glass-active-background-color-hover - Background color for active glass tab in hover state.\n * @cssproperty --mdc-tab-glass-active-background-color-normal - Background color for active glass tab in rest state.\n * @cssproperty --mdc-tab-glass-active-background-color-pressed - Background color for active glass tab\n * in pressed state.\n * @cssproperty --mdc-tab-glass-active-color - Text and icon color for active glass tab.\n * @cssproperty --mdc-tab-glass-active-color-disabled - Text and icon color for active glass tab in disabled state.\n * @cssproperty --mdc-tab-glass-border-radius - Border radius for glass tab.\n * @cssproperty --mdc-tab-glass-inactive-background-color-disabled - Background color for inactive glass tab\n * in disabled state.\n * @cssproperty --mdc-tab-glass-inactive-background-color-hover - Background color for inactive glass tab\n * in hover state.\n * @cssproperty --mdc-tab-glass-inactive-background-color-normal - Background color for inactive glass tab\n * in rest state.\n * @cssproperty --mdc-tab-glass-inactive-background-color-pressed - Background color for inactive glass tab\n * in pressed state.\n * @cssproperty --mdc-tab-glass-inactive-color - Text and icon color for inactive glass tab.\n * @cssproperty --mdc-tab-glass-inactive-color-disabled - Text and icon color for inactive glass tab in disabled state.\n * @cssproperty --mdc-tab-line-active-background-color-pressed - Background color for active line tab in pressed state.\n * @cssproperty --mdc-tab-line-active-background-color-disabled - Background color for active line tab\n * in disabled state.\n * @cssproperty --mdc-tab-line-active-background-color-hover - Background color for active line tab in hover state.\n * @cssproperty --mdc-tab-line-active-background-color-normal - Background color for active line tab in rest state.\n * @cssproperty --mdc-tab-line-active-color - Text and icon color for active line tab.\n * @cssproperty --mdc-tab-line-active-color-disabled - Text and icon color for active line tab in disabled state.\n * @cssproperty --mdc-tab-line-active-indicator-color - color for indicator in active line tab.\n * @cssproperty --mdc-tab-line-active-indicator-color-disabled - Color for indicator in active line tab\n * in disabled state.\n * @cssproperty --mdc-tab-line-active-indicator-height - Height for indicator in active line tab.\n * @cssproperty --mdc-tab-line-active-indicator-width - Width for indicator in active line tab.\n * @cssproperty --mdc-tab-line-border-bottom-left-radius - Bottom left border radius for line tab.\n * @cssproperty --mdc-tab-line-border-bottom-right-radius - Bottom right border radius for line tab.\n * @cssproperty --mdc-tab-line-border-top-left-radius - Top left border radius for line tab.\n * @cssproperty --mdc-tab-line-border-top-right-radius - Top right border radius for line tab.\n * @cssproperty --mdc-tab-line-inactive-background-color-pressed - Background color for inactive line tab\n * in pressed state.\n * @cssproperty --mdc-tab-line-inactive-background-color-disabled - Background color for inactive line tab\n * in disabled state\n * @cssproperty --mdc-tab-line-inactive-background-color-hover - Background color for inactive line tab in hover state.\n * @cssproperty --mdc-tab-line-inactive-background-color-normal - Background color for inactive line tab\n * in rest state.\n * @cssproperty --mdc-tab-line-inactive-color - Text and icon color for inactive line tab.\n * @cssproperty --mdc-tab-line-inactive-color-disabled - Text and icon color for inactive line tab in disabled state.\n * @cssproperty --mdc-tab-padding-left - Padding left for the tab.\n * @cssproperty --mdc-tab-padding-right - Padding right for the tab.\n * @cssproperty --mdc-tab-pill-active-background-color-pressed - Background color for active pill tab in pressed state.\n * @cssproperty --mdc-tab-pill-active-background-color-disabled - Background color for active pill tab\n * in disabled state.\n * @cssproperty --mdc-tab-pill-active-background-color-hover - Background color for active pill tab in hover state.\n * @cssproperty --mdc-tab-pill-active-background-color-normal - Background color for active pill tab in rest state.\n * @cssproperty --mdc-tab-pill-active-color - Text and icon color for active pill tab.\n * @cssproperty --mdc-tab-pill-active-color-disabled - Text and icon color for active pill tab in disabled state.\n * @cssproperty --mdc-tab-pill-border-radius - Border radius for pill tab.\n * @cssproperty --mdc-tab-pill-inactive-background-color-pressed - Background color for inactive pill tab\n * in pressed state.\n * @cssproperty --mdc-tab-pill-inactive-background-color-disabled - Background color for inactive pill tab\n * in disabled state.\n * @cssproperty --mdc-tab-pill-inactive-background-color-hover - Background color for inactive pill tab in hover state.\n * @cssproperty --mdc-tab-pill-inactive-background-color-normal - Background color for inactive pill tab in rest state.\n * @cssproperty --mdc-tab-pill-inactive-color - Text and icon color for inactive pill tab.\n * @cssproperty --mdc-tab-pill-inactive-color-disabled - Text and icon color for inactive pill tab in disabled state.\n *\n * @csspart container - The container of the tab.\n * @csspart icon - The icon of the tab.\n * @csspart indicator - The indicator of the tab.\n * @csspart text - The text of the tab.\n */",
|
42462
43383
|
"customElement": true
|
42463
43384
|
}
|
42464
43385
|
],
|
@@ -42815,16 +43736,6 @@
|
|
42815
43736
|
"description": "The placeholder text that is displayed when the textarea field is empty.",
|
42816
43737
|
"attribute": "placeholder"
|
42817
43738
|
},
|
42818
|
-
{
|
42819
|
-
"kind": "field",
|
42820
|
-
"name": "readonly",
|
42821
|
-
"type": {
|
42822
|
-
"text": "boolean"
|
42823
|
-
},
|
42824
|
-
"default": "false",
|
42825
|
-
"description": "readonly attribute of the textarea field. If true, the textarea field is read-only.",
|
42826
|
-
"attribute": "readonly"
|
42827
|
-
},
|
42828
43739
|
{
|
42829
43740
|
"kind": "field",
|
42830
43741
|
"name": "rows",
|
@@ -43260,6 +44171,36 @@
|
|
43260
44171
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
43261
44172
|
}
|
43262
44173
|
},
|
44174
|
+
{
|
44175
|
+
"kind": "field",
|
44176
|
+
"name": "readonly",
|
44177
|
+
"type": {
|
44178
|
+
"text": "boolean"
|
44179
|
+
},
|
44180
|
+
"default": "false",
|
44181
|
+
"description": "Determines whether the form field is read-only.",
|
44182
|
+
"attribute": "readonly",
|
44183
|
+
"reflects": true,
|
44184
|
+
"inheritedFrom": {
|
44185
|
+
"name": "FormfieldWrapper",
|
44186
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
44187
|
+
}
|
44188
|
+
},
|
44189
|
+
{
|
44190
|
+
"kind": "field",
|
44191
|
+
"name": "softDisabled",
|
44192
|
+
"type": {
|
44193
|
+
"text": "boolean"
|
44194
|
+
},
|
44195
|
+
"default": "false",
|
44196
|
+
"description": "Determines whether the form field is soft-disabled.",
|
44197
|
+
"attribute": "soft-disabled",
|
44198
|
+
"reflects": true,
|
44199
|
+
"inheritedFrom": {
|
44200
|
+
"name": "FormfieldWrapper",
|
44201
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
44202
|
+
}
|
44203
|
+
},
|
43263
44204
|
{
|
43264
44205
|
"kind": "method",
|
43265
44206
|
"name": "renderLabelElement",
|
@@ -43380,15 +44321,6 @@
|
|
43380
44321
|
"description": "The placeholder text that is displayed when the textarea field is empty.",
|
43381
44322
|
"fieldName": "placeholder"
|
43382
44323
|
},
|
43383
|
-
{
|
43384
|
-
"name": "readonly",
|
43385
|
-
"type": {
|
43386
|
-
"text": "boolean"
|
43387
|
-
},
|
43388
|
-
"default": "false",
|
43389
|
-
"description": "readonly attribute of the textarea field. If true, the textarea field is read-only.",
|
43390
|
-
"fieldName": "readonly"
|
43391
|
-
},
|
43392
44324
|
{
|
43393
44325
|
"name": "rows",
|
43394
44326
|
"type": {
|
@@ -43639,6 +44571,32 @@
|
|
43639
44571
|
"name": "FormfieldWrapper",
|
43640
44572
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
43641
44573
|
}
|
44574
|
+
},
|
44575
|
+
{
|
44576
|
+
"name": "readonly",
|
44577
|
+
"type": {
|
44578
|
+
"text": "boolean"
|
44579
|
+
},
|
44580
|
+
"default": "false",
|
44581
|
+
"description": "Determines whether the form field is read-only.",
|
44582
|
+
"fieldName": "readonly",
|
44583
|
+
"inheritedFrom": {
|
44584
|
+
"name": "FormfieldWrapper",
|
44585
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
44586
|
+
}
|
44587
|
+
},
|
44588
|
+
{
|
44589
|
+
"name": "soft-disabled",
|
44590
|
+
"type": {
|
44591
|
+
"text": "boolean"
|
44592
|
+
},
|
44593
|
+
"default": "false",
|
44594
|
+
"description": "Determines whether the form field is soft-disabled.",
|
44595
|
+
"fieldName": "softDisabled",
|
44596
|
+
"inheritedFrom": {
|
44597
|
+
"name": "FormfieldWrapper",
|
44598
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
44599
|
+
}
|
43642
44600
|
}
|
43643
44601
|
],
|
43644
44602
|
"mixins": [
|
@@ -44377,7 +45335,7 @@
|
|
44377
45335
|
"text": "void"
|
44378
45336
|
}
|
44379
45337
|
},
|
44380
|
-
"description": "Toggles the state of the toggle element.\nIf the element is not disabled, then the checked property is toggled."
|
45338
|
+
"description": "Toggles the state of the toggle element.\nIf the element is not disabled, soft-disabled, or readonly, then the checked property is toggled."
|
44381
45339
|
},
|
44382
45340
|
{
|
44383
45341
|
"kind": "method",
|
@@ -44686,6 +45644,36 @@
|
|
44686
45644
|
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
44687
45645
|
}
|
44688
45646
|
},
|
45647
|
+
{
|
45648
|
+
"kind": "field",
|
45649
|
+
"name": "readonly",
|
45650
|
+
"type": {
|
45651
|
+
"text": "boolean"
|
45652
|
+
},
|
45653
|
+
"default": "false",
|
45654
|
+
"description": "Determines whether the form field is read-only.",
|
45655
|
+
"attribute": "readonly",
|
45656
|
+
"reflects": true,
|
45657
|
+
"inheritedFrom": {
|
45658
|
+
"name": "FormfieldWrapper",
|
45659
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
45660
|
+
}
|
45661
|
+
},
|
45662
|
+
{
|
45663
|
+
"kind": "field",
|
45664
|
+
"name": "softDisabled",
|
45665
|
+
"type": {
|
45666
|
+
"text": "boolean"
|
45667
|
+
},
|
45668
|
+
"default": "false",
|
45669
|
+
"description": "Determines whether the form field is soft-disabled.",
|
45670
|
+
"attribute": "soft-disabled",
|
45671
|
+
"reflects": true,
|
45672
|
+
"inheritedFrom": {
|
45673
|
+
"name": "FormfieldWrapper",
|
45674
|
+
"module": "components/formfieldwrapper/formfieldwrapper.component.js"
|
45675
|
+
}
|
45676
|
+
},
|
44689
45677
|
{
|
44690
45678
|
"kind": "method",
|
44691
45679
|
"name": "renderLabelElement",
|
@@ -44971,6 +45959,32 @@
|
|
44971
45959
|
"name": "FormfieldWrapper",
|
44972
45960
|
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
44973
45961
|
}
|
45962
|
+
},
|
45963
|
+
{
|
45964
|
+
"name": "readonly",
|
45965
|
+
"type": {
|
45966
|
+
"text": "boolean"
|
45967
|
+
},
|
45968
|
+
"default": "false",
|
45969
|
+
"description": "Determines whether the form field is read-only.",
|
45970
|
+
"fieldName": "readonly",
|
45971
|
+
"inheritedFrom": {
|
45972
|
+
"name": "FormfieldWrapper",
|
45973
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
45974
|
+
}
|
45975
|
+
},
|
45976
|
+
{
|
45977
|
+
"name": "soft-disabled",
|
45978
|
+
"type": {
|
45979
|
+
"text": "boolean"
|
45980
|
+
},
|
45981
|
+
"default": "false",
|
45982
|
+
"description": "Determines whether the form field is soft-disabled.",
|
45983
|
+
"fieldName": "softDisabled",
|
45984
|
+
"inheritedFrom": {
|
45985
|
+
"name": "FormfieldWrapper",
|
45986
|
+
"module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
|
45987
|
+
}
|
44974
45988
|
}
|
44975
45989
|
],
|
44976
45990
|
"mixins": [
|