@momentum-design/components 0.43.0 → 0.43.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/dist/browser/index.js +191 -153
  2. package/dist/browser/index.js.map +4 -4
  3. package/dist/components/alertchip/alertchip.styles.js +1 -0
  4. package/dist/components/chip/chip.styles.js +1 -0
  5. package/dist/components/input/input.component.d.ts +3 -2
  6. package/dist/components/input/input.component.js +35 -34
  7. package/dist/components/input/input.constants.d.ts +11 -1
  8. package/dist/components/input/input.constants.js +11 -1
  9. package/dist/components/input/input.styles.js +1 -0
  10. package/dist/components/input/input.types.d.ts +4 -2
  11. package/dist/components/inputchip/inputchip.component.d.ts +1 -4
  12. package/dist/components/inputchip/inputchip.component.js +3 -8
  13. package/dist/components/inputchip/inputchip.styles.js +1 -1
  14. package/dist/components/searchfield/index.d.ts +10 -0
  15. package/dist/components/searchfield/index.js +7 -0
  16. package/dist/components/searchfield/searchfield.component.d.ts +36 -0
  17. package/dist/components/searchfield/searchfield.component.js +98 -0
  18. package/dist/components/searchfield/searchfield.constants.d.ts +7 -0
  19. package/dist/components/searchfield/searchfield.constants.js +9 -0
  20. package/dist/components/searchfield/searchfield.styles.d.ts +2 -0
  21. package/dist/components/searchfield/searchfield.styles.js +30 -0
  22. package/dist/custom-elements.json +1475 -287
  23. package/dist/index.d.ts +2 -1
  24. package/dist/index.js +2 -1
  25. package/dist/react/index.d.ts +2 -1
  26. package/dist/react/index.js +2 -1
  27. package/dist/react/inputchip/index.d.ts +2 -9
  28. package/dist/react/inputchip/index.js +2 -9
  29. package/dist/react/searchfield/index.d.ts +21 -0
  30. package/dist/react/searchfield/index.js +30 -0
  31. package/package.json +1 -1
@@ -465,6 +465,250 @@
465
465
  }
466
466
  ]
467
467
  },
468
+ {
469
+ "kind": "javascript-module",
470
+ "path": "components/avatar/avatar.component.js",
471
+ "declarations": [
472
+ {
473
+ "kind": "class",
474
+ "description": "The `mdc-avatar` component is used to represent a person or a space.\nAn avatar can be an icon, initials, counter and photo.\n\nTo set the photo of an avatar,\nyou need to set \"src\" attribute.\n\nWhile the avatar image is loading, as a placeholder,\nwe will show the initials text.\nIf the initials are not specified then,\nwe will show `user-regular` icon as a placeholder.\n\nBy default, if there are no attributes specified,\nthen the default avatar will be an icon with `user-regular` name.\n\nThe avatar component is non clickable and non interactive/focusable component.\nIf the avatar is typing, then the loading indicator will be displayed.\nIf the counter type avatar is set to a negative number, then we will display 0.\nThe presence indicator will be hidden when the counter property is set.",
475
+ "name": "Avatar",
476
+ "cssProperties": [
477
+ {
478
+ "description": "Allows customization of the default background color.",
479
+ "name": "--mdc-avatar-default-background-color"
480
+ },
481
+ {
482
+ "description": "Allows customization of the default foreground color.",
483
+ "name": "--mdc-avatar-default-foreground-color"
484
+ },
485
+ {
486
+ "description": "Allows customization of the loading indicator background color.",
487
+ "name": "--mdc-avatar-loading-indicator-background-color"
488
+ },
489
+ {
490
+ "description": "Allows customization of the loading indicator foreground color.",
491
+ "name": "--mdc-avatar-loading-indicator-foreground-color"
492
+ },
493
+ {
494
+ "description": "Allows customization of the loading overlay background color.",
495
+ "name": "--mdc-avatar-loading-overlay-background-color"
496
+ }
497
+ ],
498
+ "members": [
499
+ {
500
+ "kind": "field",
501
+ "name": "src",
502
+ "type": {
503
+ "text": "string | undefined"
504
+ },
505
+ "description": "The src is the url which will be used to display the avatar.\nWhen the src is loading, we will display the initials as a placeholder.",
506
+ "attribute": "src",
507
+ "inheritedFrom": {
508
+ "name": "AvatarComponentMixin",
509
+ "module": "utils/mixins/AvatarComponentMixin.js"
510
+ }
511
+ },
512
+ {
513
+ "kind": "field",
514
+ "name": "initials",
515
+ "type": {
516
+ "text": "string | undefined"
517
+ },
518
+ "description": "The initials to be displayed for the avatar.",
519
+ "attribute": "initials",
520
+ "inheritedFrom": {
521
+ "name": "AvatarComponentMixin",
522
+ "module": "utils/mixins/AvatarComponentMixin.js"
523
+ }
524
+ },
525
+ {
526
+ "kind": "field",
527
+ "name": "presence",
528
+ "type": {
529
+ "text": "PresenceType | undefined"
530
+ },
531
+ "description": "The presence is the status which can be used to display the\nactivity state of a user or a space within an avatar component.\n\nAcceptable values include:\n- `active`\n- `away`\n- `away-calling`\n- `busy`\n- `dnd`\n- `meeting`\n- `on-call`\n- `on-device`\n- `on-mobile`\n- `pause`\n- `pto`\n- `presenting`\n- `quiet`\n- `scheduled`",
532
+ "attribute": "presence",
533
+ "inheritedFrom": {
534
+ "name": "AvatarComponentMixin",
535
+ "module": "utils/mixins/AvatarComponentMixin.js"
536
+ }
537
+ },
538
+ {
539
+ "kind": "field",
540
+ "name": "size",
541
+ "type": {
542
+ "text": "AvatarSize"
543
+ },
544
+ "description": "Acceptable values include (size in px unit):\n- 24\n- 32\n- 48\n- 64\n- 72\n- 88\n- 124",
545
+ "default": "32",
546
+ "attribute": "size",
547
+ "reflects": true,
548
+ "inheritedFrom": {
549
+ "name": "AvatarComponentMixin",
550
+ "module": "utils/mixins/AvatarComponentMixin.js"
551
+ }
552
+ },
553
+ {
554
+ "kind": "field",
555
+ "name": "counter",
556
+ "type": {
557
+ "text": "number | undefined"
558
+ },
559
+ "description": "The counter is the number which can be displayed on the avatar.\nThe maximum number is 99 and if the given number is greater than 99,\nthen the avatar will be displayed as `99+`.\nIf the given number is a negative number,\nthen the avatar will be displayed as `0`.",
560
+ "attribute": "counter",
561
+ "inheritedFrom": {
562
+ "name": "AvatarComponentMixin",
563
+ "module": "utils/mixins/AvatarComponentMixin.js"
564
+ }
565
+ },
566
+ {
567
+ "kind": "field",
568
+ "name": "isTyping",
569
+ "type": {
570
+ "text": "boolean"
571
+ },
572
+ "default": "false",
573
+ "description": "Represents the typing indicator when the user is typing.",
574
+ "attribute": "is-typing",
575
+ "inheritedFrom": {
576
+ "name": "AvatarComponentMixin",
577
+ "module": "utils/mixins/AvatarComponentMixin.js"
578
+ }
579
+ },
580
+ {
581
+ "kind": "field",
582
+ "name": "iconName",
583
+ "type": {
584
+ "text": "IconNames | undefined"
585
+ },
586
+ "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
587
+ "attribute": "icon-name",
588
+ "inheritedFrom": {
589
+ "name": "IconNameMixin",
590
+ "module": "utils/mixins/IconNameMixin.js"
591
+ }
592
+ }
593
+ ],
594
+ "mixins": [
595
+ {
596
+ "name": "AvatarComponentMixin",
597
+ "module": "/src/utils/mixins/AvatarComponentMixin"
598
+ },
599
+ {
600
+ "name": "IconNameMixin",
601
+ "module": "/src/utils/mixins/IconNameMixin"
602
+ }
603
+ ],
604
+ "superclass": {
605
+ "name": "Component",
606
+ "module": "/src/models"
607
+ },
608
+ "tagName": "mdc-avatar",
609
+ "jsDoc": "/**\n * The `mdc-avatar` component is used to represent a person or a space.\n * An avatar can be an icon, initials, counter and photo.\n *\n * To set the photo of an avatar,\n * you need to set \"src\" attribute.\n *\n * While the avatar image is loading, as a placeholder,\n * we will show the initials text.\n * If the initials are not specified then,\n * we will show `user-regular` icon as a placeholder.\n *\n * By default, if there are no attributes specified,\n * then the default avatar will be an icon with `user-regular` name.\n *\n * The avatar component is non clickable and non interactive/focusable component.\n * If the avatar is typing, then the loading indicator will be displayed.\n * If the counter type avatar is set to a negative number, then we will display 0.\n * The presence indicator will be hidden when the counter property is set.\n *\n * @dependency mdc-icon\n * @dependency mdc-presence\n * @dependency mdc-text\n *\n * @tagname mdc-avatar\n *\n * @cssproperty --mdc-avatar-default-background-color - Allows customization of the default background color.\n * @cssproperty --mdc-avatar-default-foreground-color - Allows customization of the default foreground color.\n * @cssproperty --mdc-avatar-loading-indicator-background-color -\n * Allows customization of the loading indicator background color.\n * @cssproperty --mdc-avatar-loading-indicator-foreground-color -\n * Allows customization of the loading indicator foreground color.\n * @cssproperty --mdc-avatar-loading-overlay-background-color -\n * Allows customization of the loading overlay background color.\n */",
610
+ "customElement": true,
611
+ "attributes": [
612
+ {
613
+ "name": "src",
614
+ "type": {
615
+ "text": "string | undefined"
616
+ },
617
+ "description": "The src is the url which will be used to display the avatar.\nWhen the src is loading, we will display the initials as a placeholder.",
618
+ "fieldName": "src",
619
+ "inheritedFrom": {
620
+ "name": "AvatarComponentMixin",
621
+ "module": "src/utils/mixins/AvatarComponentMixin.ts"
622
+ }
623
+ },
624
+ {
625
+ "name": "initials",
626
+ "type": {
627
+ "text": "string | undefined"
628
+ },
629
+ "description": "The initials to be displayed for the avatar.",
630
+ "fieldName": "initials",
631
+ "inheritedFrom": {
632
+ "name": "AvatarComponentMixin",
633
+ "module": "src/utils/mixins/AvatarComponentMixin.ts"
634
+ }
635
+ },
636
+ {
637
+ "name": "presence",
638
+ "type": {
639
+ "text": "PresenceType | undefined"
640
+ },
641
+ "description": "The presence is the status which can be used to display the\nactivity state of a user or a space within an avatar component.\n\nAcceptable values include:\n- `active`\n- `away`\n- `away-calling`\n- `busy`\n- `dnd`\n- `meeting`\n- `on-call`\n- `on-device`\n- `on-mobile`\n- `pause`\n- `pto`\n- `presenting`\n- `quiet`\n- `scheduled`",
642
+ "fieldName": "presence",
643
+ "inheritedFrom": {
644
+ "name": "AvatarComponentMixin",
645
+ "module": "src/utils/mixins/AvatarComponentMixin.ts"
646
+ }
647
+ },
648
+ {
649
+ "name": "size",
650
+ "type": {
651
+ "text": "AvatarSize"
652
+ },
653
+ "description": "Acceptable values include (size in px unit):\n- 24\n- 32\n- 48\n- 64\n- 72\n- 88\n- 124",
654
+ "default": "32",
655
+ "fieldName": "size",
656
+ "inheritedFrom": {
657
+ "name": "AvatarComponentMixin",
658
+ "module": "src/utils/mixins/AvatarComponentMixin.ts"
659
+ }
660
+ },
661
+ {
662
+ "name": "counter",
663
+ "type": {
664
+ "text": "number | undefined"
665
+ },
666
+ "description": "The counter is the number which can be displayed on the avatar.\nThe maximum number is 99 and if the given number is greater than 99,\nthen the avatar will be displayed as `99+`.\nIf the given number is a negative number,\nthen the avatar will be displayed as `0`.",
667
+ "fieldName": "counter",
668
+ "inheritedFrom": {
669
+ "name": "AvatarComponentMixin",
670
+ "module": "src/utils/mixins/AvatarComponentMixin.ts"
671
+ }
672
+ },
673
+ {
674
+ "name": "is-typing",
675
+ "type": {
676
+ "text": "boolean"
677
+ },
678
+ "default": "false",
679
+ "description": "Represents the typing indicator when the user is typing.",
680
+ "fieldName": "isTyping",
681
+ "inheritedFrom": {
682
+ "name": "AvatarComponentMixin",
683
+ "module": "src/utils/mixins/AvatarComponentMixin.ts"
684
+ }
685
+ },
686
+ {
687
+ "name": "icon-name",
688
+ "type": {
689
+ "text": "IconNames | undefined"
690
+ },
691
+ "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
692
+ "fieldName": "iconName",
693
+ "inheritedFrom": {
694
+ "name": "IconNameMixin",
695
+ "module": "src/utils/mixins/IconNameMixin.ts"
696
+ }
697
+ }
698
+ ]
699
+ }
700
+ ],
701
+ "exports": [
702
+ {
703
+ "kind": "js",
704
+ "name": "default",
705
+ "declaration": {
706
+ "name": "Avatar",
707
+ "module": "components/avatar/avatar.component.js"
708
+ }
709
+ }
710
+ ]
711
+ },
468
712
  {
469
713
  "kind": "javascript-module",
470
714
  "path": "components/avatarbutton/avatarbutton.component.js",
@@ -1068,260 +1312,16 @@
1068
1312
  },
1069
1313
  {
1070
1314
  "kind": "javascript-module",
1071
- "path": "components/avatar/avatar.component.js",
1315
+ "path": "components/badge/badge.component.js",
1072
1316
  "declarations": [
1073
1317
  {
1074
1318
  "kind": "class",
1075
- "description": "The `mdc-avatar` component is used to represent a person or a space.\nAn avatar can be an icon, initials, counter and photo.\n\nTo set the photo of an avatar,\nyou need to set \"src\" attribute.\n\nWhile the avatar image is loading, as a placeholder,\nwe will show the initials text.\nIf the initials are not specified then,\nwe will show `user-regular` icon as a placeholder.\n\nBy default, if there are no attributes specified,\nthen the default avatar will be an icon with `user-regular` name.\n\nThe avatar component is non clickable and non interactive/focusable component.\nIf the avatar is typing, then the loading indicator will be displayed.\nIf the counter type avatar is set to a negative number, then we will display 0.\nThe presence indicator will be hidden when the counter property is set.",
1076
- "name": "Avatar",
1319
+ "description": "The `mdc-badge` component is a versatile UI element used to\ndisplay dot, icons, counters, success, warning and error type badge.\n\nSupported badge types:\n- `dot`: Displays a dot notification badge with a blue color.\n- `icon`: Displays a badge with a specified icon using the `icon-name` attribute.\n- `counter`: Displays a badge with a counter value. If the counter exceeds the `max-counter`,\nit shows `maxCounter+`. The maximum value of the counter is 999 and anything above that will be set to `999+`.\n- `success`: Displays a success badge with a check circle icon and green color.\n- `warning`: Displays a warning badge with a warning icon and yellow color.\n- `error`: Displays a error badge with a error legacy icon and red color.\n\nFor `icon`, `success`, `warning` and `error` types, the `mdc-icon` component is used to render the icon.\n\nFor the `counter` type, the `mdc-text` component is used to render the counter value.",
1320
+ "name": "Badge",
1077
1321
  "cssProperties": [
1078
1322
  {
1079
- "description": "Allows customization of the default background color.",
1080
- "name": "--mdc-avatar-default-background-color"
1081
- },
1082
- {
1083
- "description": "Allows customization of the default foreground color.",
1084
- "name": "--mdc-avatar-default-foreground-color"
1085
- },
1086
- {
1087
- "description": "Allows customization of the loading indicator background color.",
1088
- "name": "--mdc-avatar-loading-indicator-background-color"
1089
- },
1090
- {
1091
- "description": "Allows customization of the loading indicator foreground color.",
1092
- "name": "--mdc-avatar-loading-indicator-foreground-color"
1093
- },
1094
- {
1095
- "description": "Allows customization of the loading overlay background color.",
1096
- "name": "--mdc-avatar-loading-overlay-background-color"
1097
- }
1098
- ],
1099
- "members": [
1100
- {
1101
- "kind": "field",
1102
- "name": "src",
1103
- "type": {
1104
- "text": "string | undefined"
1105
- },
1106
- "description": "The src is the url which will be used to display the avatar.\nWhen the src is loading, we will display the initials as a placeholder.",
1107
- "attribute": "src",
1108
- "inheritedFrom": {
1109
- "name": "AvatarComponentMixin",
1110
- "module": "utils/mixins/AvatarComponentMixin.js"
1111
- }
1112
- },
1113
- {
1114
- "kind": "field",
1115
- "name": "initials",
1116
- "type": {
1117
- "text": "string | undefined"
1118
- },
1119
- "description": "The initials to be displayed for the avatar.",
1120
- "attribute": "initials",
1121
- "inheritedFrom": {
1122
- "name": "AvatarComponentMixin",
1123
- "module": "utils/mixins/AvatarComponentMixin.js"
1124
- }
1125
- },
1126
- {
1127
- "kind": "field",
1128
- "name": "presence",
1129
- "type": {
1130
- "text": "PresenceType | undefined"
1131
- },
1132
- "description": "The presence is the status which can be used to display the\nactivity state of a user or a space within an avatar component.\n\nAcceptable values include:\n- `active`\n- `away`\n- `away-calling`\n- `busy`\n- `dnd`\n- `meeting`\n- `on-call`\n- `on-device`\n- `on-mobile`\n- `pause`\n- `pto`\n- `presenting`\n- `quiet`\n- `scheduled`",
1133
- "attribute": "presence",
1134
- "inheritedFrom": {
1135
- "name": "AvatarComponentMixin",
1136
- "module": "utils/mixins/AvatarComponentMixin.js"
1137
- }
1138
- },
1139
- {
1140
- "kind": "field",
1141
- "name": "size",
1142
- "type": {
1143
- "text": "AvatarSize"
1144
- },
1145
- "description": "Acceptable values include (size in px unit):\n- 24\n- 32\n- 48\n- 64\n- 72\n- 88\n- 124",
1146
- "default": "32",
1147
- "attribute": "size",
1148
- "reflects": true,
1149
- "inheritedFrom": {
1150
- "name": "AvatarComponentMixin",
1151
- "module": "utils/mixins/AvatarComponentMixin.js"
1152
- }
1153
- },
1154
- {
1155
- "kind": "field",
1156
- "name": "counter",
1157
- "type": {
1158
- "text": "number | undefined"
1159
- },
1160
- "description": "The counter is the number which can be displayed on the avatar.\nThe maximum number is 99 and if the given number is greater than 99,\nthen the avatar will be displayed as `99+`.\nIf the given number is a negative number,\nthen the avatar will be displayed as `0`.",
1161
- "attribute": "counter",
1162
- "inheritedFrom": {
1163
- "name": "AvatarComponentMixin",
1164
- "module": "utils/mixins/AvatarComponentMixin.js"
1165
- }
1166
- },
1167
- {
1168
- "kind": "field",
1169
- "name": "isTyping",
1170
- "type": {
1171
- "text": "boolean"
1172
- },
1173
- "default": "false",
1174
- "description": "Represents the typing indicator when the user is typing.",
1175
- "attribute": "is-typing",
1176
- "inheritedFrom": {
1177
- "name": "AvatarComponentMixin",
1178
- "module": "utils/mixins/AvatarComponentMixin.js"
1179
- }
1180
- },
1181
- {
1182
- "kind": "field",
1183
- "name": "iconName",
1184
- "type": {
1185
- "text": "IconNames | undefined"
1186
- },
1187
- "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
1188
- "attribute": "icon-name",
1189
- "inheritedFrom": {
1190
- "name": "IconNameMixin",
1191
- "module": "utils/mixins/IconNameMixin.js"
1192
- }
1193
- }
1194
- ],
1195
- "mixins": [
1196
- {
1197
- "name": "AvatarComponentMixin",
1198
- "module": "/src/utils/mixins/AvatarComponentMixin"
1199
- },
1200
- {
1201
- "name": "IconNameMixin",
1202
- "module": "/src/utils/mixins/IconNameMixin"
1203
- }
1204
- ],
1205
- "superclass": {
1206
- "name": "Component",
1207
- "module": "/src/models"
1208
- },
1209
- "tagName": "mdc-avatar",
1210
- "jsDoc": "/**\n * The `mdc-avatar` component is used to represent a person or a space.\n * An avatar can be an icon, initials, counter and photo.\n *\n * To set the photo of an avatar,\n * you need to set \"src\" attribute.\n *\n * While the avatar image is loading, as a placeholder,\n * we will show the initials text.\n * If the initials are not specified then,\n * we will show `user-regular` icon as a placeholder.\n *\n * By default, if there are no attributes specified,\n * then the default avatar will be an icon with `user-regular` name.\n *\n * The avatar component is non clickable and non interactive/focusable component.\n * If the avatar is typing, then the loading indicator will be displayed.\n * If the counter type avatar is set to a negative number, then we will display 0.\n * The presence indicator will be hidden when the counter property is set.\n *\n * @dependency mdc-icon\n * @dependency mdc-presence\n * @dependency mdc-text\n *\n * @tagname mdc-avatar\n *\n * @cssproperty --mdc-avatar-default-background-color - Allows customization of the default background color.\n * @cssproperty --mdc-avatar-default-foreground-color - Allows customization of the default foreground color.\n * @cssproperty --mdc-avatar-loading-indicator-background-color -\n * Allows customization of the loading indicator background color.\n * @cssproperty --mdc-avatar-loading-indicator-foreground-color -\n * Allows customization of the loading indicator foreground color.\n * @cssproperty --mdc-avatar-loading-overlay-background-color -\n * Allows customization of the loading overlay background color.\n */",
1211
- "customElement": true,
1212
- "attributes": [
1213
- {
1214
- "name": "src",
1215
- "type": {
1216
- "text": "string | undefined"
1217
- },
1218
- "description": "The src is the url which will be used to display the avatar.\nWhen the src is loading, we will display the initials as a placeholder.",
1219
- "fieldName": "src",
1220
- "inheritedFrom": {
1221
- "name": "AvatarComponentMixin",
1222
- "module": "src/utils/mixins/AvatarComponentMixin.ts"
1223
- }
1224
- },
1225
- {
1226
- "name": "initials",
1227
- "type": {
1228
- "text": "string | undefined"
1229
- },
1230
- "description": "The initials to be displayed for the avatar.",
1231
- "fieldName": "initials",
1232
- "inheritedFrom": {
1233
- "name": "AvatarComponentMixin",
1234
- "module": "src/utils/mixins/AvatarComponentMixin.ts"
1235
- }
1236
- },
1237
- {
1238
- "name": "presence",
1239
- "type": {
1240
- "text": "PresenceType | undefined"
1241
- },
1242
- "description": "The presence is the status which can be used to display the\nactivity state of a user or a space within an avatar component.\n\nAcceptable values include:\n- `active`\n- `away`\n- `away-calling`\n- `busy`\n- `dnd`\n- `meeting`\n- `on-call`\n- `on-device`\n- `on-mobile`\n- `pause`\n- `pto`\n- `presenting`\n- `quiet`\n- `scheduled`",
1243
- "fieldName": "presence",
1244
- "inheritedFrom": {
1245
- "name": "AvatarComponentMixin",
1246
- "module": "src/utils/mixins/AvatarComponentMixin.ts"
1247
- }
1248
- },
1249
- {
1250
- "name": "size",
1251
- "type": {
1252
- "text": "AvatarSize"
1253
- },
1254
- "description": "Acceptable values include (size in px unit):\n- 24\n- 32\n- 48\n- 64\n- 72\n- 88\n- 124",
1255
- "default": "32",
1256
- "fieldName": "size",
1257
- "inheritedFrom": {
1258
- "name": "AvatarComponentMixin",
1259
- "module": "src/utils/mixins/AvatarComponentMixin.ts"
1260
- }
1261
- },
1262
- {
1263
- "name": "counter",
1264
- "type": {
1265
- "text": "number | undefined"
1266
- },
1267
- "description": "The counter is the number which can be displayed on the avatar.\nThe maximum number is 99 and if the given number is greater than 99,\nthen the avatar will be displayed as `99+`.\nIf the given number is a negative number,\nthen the avatar will be displayed as `0`.",
1268
- "fieldName": "counter",
1269
- "inheritedFrom": {
1270
- "name": "AvatarComponentMixin",
1271
- "module": "src/utils/mixins/AvatarComponentMixin.ts"
1272
- }
1273
- },
1274
- {
1275
- "name": "is-typing",
1276
- "type": {
1277
- "text": "boolean"
1278
- },
1279
- "default": "false",
1280
- "description": "Represents the typing indicator when the user is typing.",
1281
- "fieldName": "isTyping",
1282
- "inheritedFrom": {
1283
- "name": "AvatarComponentMixin",
1284
- "module": "src/utils/mixins/AvatarComponentMixin.ts"
1285
- }
1286
- },
1287
- {
1288
- "name": "icon-name",
1289
- "type": {
1290
- "text": "IconNames | undefined"
1291
- },
1292
- "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
1293
- "fieldName": "iconName",
1294
- "inheritedFrom": {
1295
- "name": "IconNameMixin",
1296
- "module": "src/utils/mixins/IconNameMixin.ts"
1297
- }
1298
- }
1299
- ]
1300
- }
1301
- ],
1302
- "exports": [
1303
- {
1304
- "kind": "js",
1305
- "name": "default",
1306
- "declaration": {
1307
- "name": "Avatar",
1308
- "module": "components/avatar/avatar.component.js"
1309
- }
1310
- }
1311
- ]
1312
- },
1313
- {
1314
- "kind": "javascript-module",
1315
- "path": "components/badge/badge.component.js",
1316
- "declarations": [
1317
- {
1318
- "kind": "class",
1319
- "description": "The `mdc-badge` component is a versatile UI element used to\ndisplay dot, icons, counters, success, warning and error type badge.\n\nSupported badge types:\n- `dot`: Displays a dot notification badge with a blue color.\n- `icon`: Displays a badge with a specified icon using the `icon-name` attribute.\n- `counter`: Displays a badge with a counter value. If the counter exceeds the `max-counter`,\nit shows `maxCounter+`. The maximum value of the counter is 999 and anything above that will be set to `999+`.\n- `success`: Displays a success badge with a check circle icon and green color.\n- `warning`: Displays a warning badge with a warning icon and yellow color.\n- `error`: Displays a error badge with a error legacy icon and red color.\n\nFor `icon`, `success`, `warning` and `error` types, the `mdc-icon` component is used to render the icon.\n\nFor the `counter` type, the `mdc-text` component is used to render the counter value.",
1320
- "name": "Badge",
1321
- "cssProperties": [
1322
- {
1323
- "description": "The foreground color of the primary badge.",
1324
- "name": "--mdc-badge-primary-foreground-color"
1323
+ "description": "The foreground color of the primary badge.",
1324
+ "name": "--mdc-badge-primary-foreground-color"
1325
1325
  },
1326
1326
  {
1327
1327
  "description": "The background color of the primary badge.",
@@ -7413,10 +7413,10 @@
7413
7413
  "kind": "field",
7414
7414
  "name": "autocomplete",
7415
7415
  "type": {
7416
- "text": "any"
7416
+ "text": "AutoCompleteType"
7417
7417
  },
7418
- "default": "'off'",
7419
7418
  "description": "The autocomplete attribute of the input field.",
7419
+ "default": "'off'",
7420
7420
  "attribute": "autocomplete"
7421
7421
  },
7422
7422
  {
@@ -7577,6 +7577,19 @@
7577
7577
  }
7578
7578
  }
7579
7579
  },
7580
+ {
7581
+ "kind": "method",
7582
+ "name": "renderInputElement",
7583
+ "privacy": "protected",
7584
+ "parameters": [
7585
+ {
7586
+ "name": "type",
7587
+ "type": {
7588
+ "text": "InputType"
7589
+ }
7590
+ }
7591
+ ]
7592
+ },
7580
7593
  {
7581
7594
  "kind": "field",
7582
7595
  "name": "name",
@@ -7965,10 +7978,10 @@
7965
7978
  {
7966
7979
  "name": "autocomplete",
7967
7980
  "type": {
7968
- "text": "any"
7981
+ "text": "AutoCompleteType"
7969
7982
  },
7970
- "default": "'off'",
7971
7983
  "description": "The autocomplete attribute of the input field.",
7984
+ "default": "'off'",
7972
7985
  "fieldName": "autocomplete"
7973
7986
  },
7974
7987
  {
@@ -8256,16 +8269,13 @@
8256
8269
  "kind": "method",
8257
8270
  "name": "handleClose",
8258
8271
  "privacy": "private",
8272
+ "description": "Handles the behavior of the close button on click event.",
8259
8273
  "parameters": [
8260
8274
  {
8261
- "name": "event",
8262
- "type": {
8263
- "text": "Event"
8264
- },
8265
- "description": "The event object."
8275
+ "description": "The event object.",
8276
+ "name": "event"
8266
8277
  }
8267
- ],
8268
- "description": "Handles the behavior of the close button on click event."
8278
+ ]
8269
8279
  },
8270
8280
  {
8271
8281
  "kind": "field",
@@ -8298,33 +8308,13 @@
8298
8308
  ],
8299
8309
  "events": [
8300
8310
  {
8311
+ "name": "remove",
8301
8312
  "type": {
8302
- "text": "EventConstructor"
8303
- }
8304
- },
8305
- {
8306
- "description": "(React: onClick) This event is dispatched when the close button is clicked.",
8307
- "name": "click",
8308
- "reactName": "onClick",
8309
- "eventName": "ClickEvent"
8310
- },
8311
- {
8312
- "description": "(React: onKeyDown) This event is dispatched when a key is pressed down on the close button.",
8313
- "name": "keydown",
8314
- "reactName": "onKeyDown",
8315
- "eventName": "KeydownEvent"
8316
- },
8317
- {
8318
- "description": "(React: onKeyUp) This event is dispatched when a key is released on the close button.",
8319
- "name": "keyup",
8320
- "reactName": "onKeyUp",
8321
- "eventName": "KeyupEvent"
8322
- },
8323
- {
8324
- "description": "(React: onFocus) This event is dispatched when the close button receives focus.",
8325
- "name": "focus",
8326
- "reactName": "onFocus",
8327
- "eventName": "FocusEvent"
8313
+ "text": "CustomEvent"
8314
+ },
8315
+ "description": "This event is dispatched when the close button is activated. It bubbles and is composed.",
8316
+ "reactName": "onRemove",
8317
+ "eventName": "RemoveEvent"
8328
8318
  }
8329
8319
  ],
8330
8320
  "attributes": [
@@ -8396,7 +8386,7 @@
8396
8386
  "module": "/src/models"
8397
8387
  },
8398
8388
  "tagName": "mdc-inputchip",
8399
- "jsDoc": "/**\n * mdc-inputchip component is an interactive chip that consumers can use to represent an input.\n *\n * - It supports a leading icon along with label.\n * - It supports an error state for validation.\n * - It supports a close button to remove the chip.\n *\n * @tagname mdc-inputchip\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @event click - (React: onClick) This event is dispatched when the close button is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the close button.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the close button.\n * @event focus - (React: onFocus) This event is dispatched when the close button receives focus.\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 */",
8389
+ "jsDoc": "/**\n * mdc-inputchip component is an interactive chip that consumers can use to represent an input.\n *\n * - It supports a leading icon along with label.\n * - It supports an error state for validation.\n * - It supports a close button to remove the chip.\n *\n * @tagname mdc-inputchip\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @event remove - This event is dispatched when the close button is activated. It bubbles and is composed.\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 */",
8400
8390
  "customElement": true
8401
8391
  }
8402
8392
  ],
@@ -13128,6 +13118,1204 @@
13128
13118
  }
13129
13119
  ]
13130
13120
  },
13121
+ {
13122
+ "kind": "javascript-module",
13123
+ "path": "components/searchfield/searchfield.component.js",
13124
+ "declarations": [
13125
+ {
13126
+ "kind": "class",
13127
+ "description": "searchfield component is used as an input field for search functionality.\n\nIt supports `mdc-inputchip` as filters.\n\nThis component is built by extending the `mdc-input` component.",
13128
+ "name": "Searchfield",
13129
+ "slots": [
13130
+ {
13131
+ "description": "Slot for input chips",
13132
+ "name": "filters"
13133
+ },
13134
+ {
13135
+ "description": "slot to add the label info icon",
13136
+ "name": "label-info",
13137
+ "inheritedFrom": {
13138
+ "name": "FormfieldWrapper",
13139
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13140
+ }
13141
+ }
13142
+ ],
13143
+ "members": [
13144
+ {
13145
+ "kind": "field",
13146
+ "name": "inputChips",
13147
+ "type": {
13148
+ "text": "Array<HTMLElement> | undefined"
13149
+ }
13150
+ },
13151
+ {
13152
+ "kind": "method",
13153
+ "name": "renderInputChips",
13154
+ "privacy": "private",
13155
+ "description": "This method is used to render the input chips inside filters slot.\nIt will remove any elements that are not input chips."
13156
+ },
13157
+ {
13158
+ "kind": "field",
13159
+ "name": "name",
13160
+ "type": {
13161
+ "text": "string"
13162
+ },
13163
+ "default": "''",
13164
+ "description": "Indicates the name of the component group.\nThey are used to group elements in a form together.",
13165
+ "attribute": "name",
13166
+ "reflects": true,
13167
+ "inheritedFrom": {
13168
+ "name": "FormInternalsMixin",
13169
+ "module": "utils/mixins/FormInternalsMixin.js"
13170
+ }
13171
+ },
13172
+ {
13173
+ "kind": "field",
13174
+ "name": "value",
13175
+ "type": {
13176
+ "text": "string"
13177
+ },
13178
+ "default": "''",
13179
+ "description": "Indicates the value of the component group (ex: input, checkbox, radio, select etc...)",
13180
+ "attribute": "value",
13181
+ "reflects": true,
13182
+ "inheritedFrom": {
13183
+ "name": "FormInternalsMixin",
13184
+ "module": "utils/mixins/FormInternalsMixin.js"
13185
+ }
13186
+ },
13187
+ {
13188
+ "kind": "field",
13189
+ "name": "validationMessage",
13190
+ "type": {
13191
+ "text": "string | undefined"
13192
+ },
13193
+ "description": "Custom validation message that will override the default message and displayed when the input is invalid.",
13194
+ "attribute": "validation-message",
13195
+ "reflects": true,
13196
+ "inheritedFrom": {
13197
+ "name": "FormInternalsMixin",
13198
+ "module": "utils/mixins/FormInternalsMixin.js"
13199
+ }
13200
+ },
13201
+ {
13202
+ "kind": "field",
13203
+ "name": "validity",
13204
+ "type": {
13205
+ "text": "ValidityState"
13206
+ },
13207
+ "readonly": true,
13208
+ "inheritedFrom": {
13209
+ "name": "FormInternalsMixin",
13210
+ "module": "utils/mixins/FormInternalsMixin.js"
13211
+ }
13212
+ },
13213
+ {
13214
+ "kind": "field",
13215
+ "name": "willValidate",
13216
+ "readonly": true,
13217
+ "inheritedFrom": {
13218
+ "name": "FormInternalsMixin",
13219
+ "module": "utils/mixins/FormInternalsMixin.js"
13220
+ }
13221
+ },
13222
+ {
13223
+ "kind": "method",
13224
+ "name": "setValidity",
13225
+ "description": "Sets the validity of the input field based on the input field's validity.",
13226
+ "return": {
13227
+ "type": {
13228
+ "text": ""
13229
+ }
13230
+ },
13231
+ "inheritedFrom": {
13232
+ "name": "FormInternalsMixin",
13233
+ "module": "utils/mixins/FormInternalsMixin.js"
13234
+ }
13235
+ },
13236
+ {
13237
+ "kind": "method",
13238
+ "name": "checkValidity",
13239
+ "return": {
13240
+ "type": {
13241
+ "text": "boolean"
13242
+ }
13243
+ },
13244
+ "inheritedFrom": {
13245
+ "name": "FormInternalsMixin",
13246
+ "module": "utils/mixins/FormInternalsMixin.js"
13247
+ }
13248
+ },
13249
+ {
13250
+ "kind": "method",
13251
+ "name": "reportValidity",
13252
+ "inheritedFrom": {
13253
+ "name": "FormInternalsMixin",
13254
+ "module": "utils/mixins/FormInternalsMixin.js"
13255
+ }
13256
+ },
13257
+ {
13258
+ "kind": "field",
13259
+ "name": "id",
13260
+ "type": {
13261
+ "text": "string"
13262
+ },
13263
+ "default": "`mdc-input-${uuidv4()}`",
13264
+ "description": "The unique id of the input field. It is used to link the input field with the label.",
13265
+ "attribute": "id",
13266
+ "inheritedFrom": {
13267
+ "name": "FormfieldWrapper",
13268
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13269
+ }
13270
+ },
13271
+ {
13272
+ "kind": "field",
13273
+ "name": "dataAriaLabel",
13274
+ "type": {
13275
+ "text": "string | null"
13276
+ },
13277
+ "default": "null",
13278
+ "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
13279
+ "attribute": "data-aria-label",
13280
+ "reflects": true,
13281
+ "inheritedFrom": {
13282
+ "name": "DataAriaLabelMixin",
13283
+ "module": "utils/mixins/DataAriaLabelMixin.js"
13284
+ }
13285
+ },
13286
+ {
13287
+ "kind": "field",
13288
+ "name": "placeholder",
13289
+ "type": {
13290
+ "text": "string"
13291
+ },
13292
+ "default": "''",
13293
+ "description": "The placeholder text that is displayed when the input field is empty.",
13294
+ "attribute": "placeholder",
13295
+ "inheritedFrom": {
13296
+ "name": "Input",
13297
+ "module": "components/input/input.component.js"
13298
+ }
13299
+ },
13300
+ {
13301
+ "kind": "field",
13302
+ "name": "readonly",
13303
+ "type": {
13304
+ "text": "boolean"
13305
+ },
13306
+ "default": "false",
13307
+ "description": "readonly attribute of the input field. If true, the input field is read-only.",
13308
+ "attribute": "readonly",
13309
+ "inheritedFrom": {
13310
+ "name": "Input",
13311
+ "module": "components/input/input.component.js"
13312
+ }
13313
+ },
13314
+ {
13315
+ "kind": "field",
13316
+ "name": "prefixText",
13317
+ "type": {
13318
+ "text": "string | undefined"
13319
+ },
13320
+ "description": "The prefix text that is displayed before the input field. It has a max length of 10 characters.\nWhen the prefix text is set, make sure to set the 'data-aria-label'\nattribute with the appropriate value for accessibility.",
13321
+ "attribute": "prefix-text",
13322
+ "inheritedFrom": {
13323
+ "name": "Input",
13324
+ "module": "components/input/input.component.js"
13325
+ }
13326
+ },
13327
+ {
13328
+ "kind": "field",
13329
+ "name": "leadingIcon",
13330
+ "type": {
13331
+ "text": "IconNames | undefined"
13332
+ },
13333
+ "description": "The leading icon that is displayed before the input field.",
13334
+ "attribute": "leading-icon",
13335
+ "inheritedFrom": {
13336
+ "name": "Input",
13337
+ "module": "components/input/input.component.js"
13338
+ }
13339
+ },
13340
+ {
13341
+ "kind": "field",
13342
+ "name": "trailingButton",
13343
+ "type": {
13344
+ "text": "boolean"
13345
+ },
13346
+ "default": "false",
13347
+ "description": "The trailing button when set to true, shows a clear button that clears the input field.",
13348
+ "attribute": "trailing-button",
13349
+ "inheritedFrom": {
13350
+ "name": "Input",
13351
+ "module": "components/input/input.component.js"
13352
+ }
13353
+ },
13354
+ {
13355
+ "kind": "field",
13356
+ "name": "maxlength",
13357
+ "type": {
13358
+ "text": "number | undefined"
13359
+ },
13360
+ "description": "The maximum number of characters that the input field can accept.",
13361
+ "attribute": "maxlength",
13362
+ "inheritedFrom": {
13363
+ "name": "Input",
13364
+ "module": "components/input/input.component.js"
13365
+ }
13366
+ },
13367
+ {
13368
+ "kind": "field",
13369
+ "name": "minlength",
13370
+ "type": {
13371
+ "text": "number | undefined"
13372
+ },
13373
+ "description": "The minimum number of characters that the input field can accept.",
13374
+ "attribute": "minlength",
13375
+ "inheritedFrom": {
13376
+ "name": "Input",
13377
+ "module": "components/input/input.component.js"
13378
+ }
13379
+ },
13380
+ {
13381
+ "kind": "field",
13382
+ "name": "autocapitalize",
13383
+ "type": {
13384
+ "text": "AutoCapitalizeType"
13385
+ },
13386
+ "description": "The autocapitalize attribute of the input field.",
13387
+ "default": "'off'",
13388
+ "attribute": "autocapitalize",
13389
+ "inheritedFrom": {
13390
+ "name": "Input",
13391
+ "module": "components/input/input.component.js"
13392
+ }
13393
+ },
13394
+ {
13395
+ "kind": "field",
13396
+ "name": "autocomplete",
13397
+ "type": {
13398
+ "text": "AutoCompleteType"
13399
+ },
13400
+ "description": "The autocomplete attribute of the input field.",
13401
+ "default": "'off'",
13402
+ "attribute": "autocomplete",
13403
+ "inheritedFrom": {
13404
+ "name": "Input",
13405
+ "module": "components/input/input.component.js"
13406
+ }
13407
+ },
13408
+ {
13409
+ "kind": "field",
13410
+ "name": "autofocus",
13411
+ "type": {
13412
+ "text": "boolean"
13413
+ },
13414
+ "default": "false",
13415
+ "description": "If true, the input field is focused when the component is rendered.",
13416
+ "attribute": "autofocus",
13417
+ "inheritedFrom": {
13418
+ "name": "Input",
13419
+ "module": "components/input/input.component.js"
13420
+ }
13421
+ },
13422
+ {
13423
+ "kind": "field",
13424
+ "name": "dirname",
13425
+ "type": {
13426
+ "text": "string | undefined"
13427
+ },
13428
+ "description": "Specifies the name of the directionality of text for submission purposes (e.g., \"rtl\" for right-to-left).",
13429
+ "attribute": "dirname",
13430
+ "inheritedFrom": {
13431
+ "name": "Input",
13432
+ "module": "components/input/input.component.js"
13433
+ }
13434
+ },
13435
+ {
13436
+ "kind": "field",
13437
+ "name": "pattern",
13438
+ "type": {
13439
+ "text": "string | undefined"
13440
+ },
13441
+ "description": "The pattern attribute of the input field.\nSpecifies a regular expression that the input value must match for validation purposes.",
13442
+ "attribute": "pattern",
13443
+ "inheritedFrom": {
13444
+ "name": "Input",
13445
+ "module": "components/input/input.component.js"
13446
+ }
13447
+ },
13448
+ {
13449
+ "kind": "field",
13450
+ "name": "list",
13451
+ "type": {
13452
+ "text": "string | undefined"
13453
+ },
13454
+ "description": "The list attribute of the input field.\nIdentifies a list of pre-defined options to suggest to the user.",
13455
+ "attribute": "list",
13456
+ "inheritedFrom": {
13457
+ "name": "Input",
13458
+ "module": "components/input/input.component.js"
13459
+ }
13460
+ },
13461
+ {
13462
+ "kind": "field",
13463
+ "name": "size",
13464
+ "type": {
13465
+ "text": "number | undefined | undefined"
13466
+ },
13467
+ "description": "The size attribute of the input field.\nSpecifies the width of the input field.",
13468
+ "default": "undefined",
13469
+ "attribute": "size",
13470
+ "inheritedFrom": {
13471
+ "name": "Input",
13472
+ "module": "components/input/input.component.js"
13473
+ }
13474
+ },
13475
+ {
13476
+ "kind": "field",
13477
+ "name": "clearAriaLabel",
13478
+ "type": {
13479
+ "text": "string"
13480
+ },
13481
+ "default": "''",
13482
+ "description": "Aria label for the trailing button. If trailing button is set to true, this label is used for the clear button.",
13483
+ "attribute": "clear-aria-label",
13484
+ "inheritedFrom": {
13485
+ "name": "Input",
13486
+ "module": "components/input/input.component.js"
13487
+ }
13488
+ },
13489
+ {
13490
+ "kind": "method",
13491
+ "name": "handleValueChange",
13492
+ "description": "Handles the value change of the input field.\nSets the form value and updates the validity of the input field.",
13493
+ "return": {
13494
+ "type": {
13495
+ "text": ""
13496
+ }
13497
+ },
13498
+ "inheritedFrom": {
13499
+ "name": "Input",
13500
+ "module": "components/input/input.component.js"
13501
+ }
13502
+ },
13503
+ {
13504
+ "kind": "method",
13505
+ "name": "setInputValidity",
13506
+ "privacy": "private",
13507
+ "inheritedFrom": {
13508
+ "name": "Input",
13509
+ "module": "components/input/input.component.js"
13510
+ }
13511
+ },
13512
+ {
13513
+ "kind": "method",
13514
+ "name": "updateValue",
13515
+ "privacy": "private",
13516
+ "description": "Updates the value of the input field.\nSets the form value.",
13517
+ "return": {
13518
+ "type": {
13519
+ "text": ""
13520
+ }
13521
+ },
13522
+ "inheritedFrom": {
13523
+ "name": "Input",
13524
+ "module": "components/input/input.component.js"
13525
+ }
13526
+ },
13527
+ {
13528
+ "kind": "method",
13529
+ "name": "onInput",
13530
+ "privacy": "private",
13531
+ "description": "Handles the input event of the input field.\nUpdates the value and sets the validity of the input field.",
13532
+ "inheritedFrom": {
13533
+ "name": "Input",
13534
+ "module": "components/input/input.component.js"
13535
+ }
13536
+ },
13537
+ {
13538
+ "kind": "method",
13539
+ "name": "onChange",
13540
+ "privacy": "private",
13541
+ "parameters": [
13542
+ {
13543
+ "name": "event",
13544
+ "type": {
13545
+ "text": "Event"
13546
+ },
13547
+ "description": "Event which contains information about the value change."
13548
+ }
13549
+ ],
13550
+ "description": "Handles the change event of the input field.\nUpdates the value and sets the validity of the input field.\n\nThe 'change' event does not bubble up through the shadow DOM as it was not composed.\nTherefore, we need to re-dispatch the same event to ensure it is propagated correctly.\nRead more: https://developer.mozilla.org/en-US/docs/Web/API/Event/composed",
13551
+ "inheritedFrom": {
13552
+ "name": "Input",
13553
+ "module": "components/input/input.component.js"
13554
+ }
13555
+ },
13556
+ {
13557
+ "kind": "method",
13558
+ "name": "handleKeyDown",
13559
+ "privacy": "private",
13560
+ "parameters": [
13561
+ {
13562
+ "name": "event",
13563
+ "type": {
13564
+ "text": "KeyboardEvent"
13565
+ },
13566
+ "description": "Keyboard event"
13567
+ }
13568
+ ],
13569
+ "description": "Handles the keydown event of the input field.\nIf the key pressed is 'Enter', it submits the form.",
13570
+ "inheritedFrom": {
13571
+ "name": "Input",
13572
+ "module": "components/input/input.component.js"
13573
+ }
13574
+ },
13575
+ {
13576
+ "kind": "method",
13577
+ "name": "renderLeadingIcon",
13578
+ "privacy": "protected",
13579
+ "description": "Renders the leading icon before the input field.\nIf the leading icon is not set, it will not be displayed.",
13580
+ "return": {
13581
+ "type": {
13582
+ "text": ""
13583
+ }
13584
+ },
13585
+ "inheritedFrom": {
13586
+ "name": "Input",
13587
+ "module": "components/input/input.component.js"
13588
+ }
13589
+ },
13590
+ {
13591
+ "kind": "method",
13592
+ "name": "renderPrefixText",
13593
+ "privacy": "protected",
13594
+ "description": "Renders the prefix text before the input field.\nIf the prefix text is more than 10 characters,\n- it will not be displayed.\n- the validation messsage will be displayed.\n\n Note: We are setting aria-hidden so that the screen reader does not read the prefix text.\n The consumers should set the appropriate aria-label for the input field using 'data-aria-label' attribute.",
13595
+ "return": {
13596
+ "type": {
13597
+ "text": ""
13598
+ }
13599
+ },
13600
+ "inheritedFrom": {
13601
+ "name": "Input",
13602
+ "module": "components/input/input.component.js"
13603
+ }
13604
+ },
13605
+ {
13606
+ "kind": "method",
13607
+ "name": "clearInputText",
13608
+ "privacy": "private",
13609
+ "description": "Clears the input field.",
13610
+ "inheritedFrom": {
13611
+ "name": "Input",
13612
+ "module": "components/input/input.component.js"
13613
+ }
13614
+ },
13615
+ {
13616
+ "kind": "method",
13617
+ "name": "renderTrailingButton",
13618
+ "privacy": "protected",
13619
+ "description": "Renders the trailing button to clear the input field if the trailingButton is set to true.",
13620
+ "return": {
13621
+ "type": {
13622
+ "text": ""
13623
+ }
13624
+ },
13625
+ "inheritedFrom": {
13626
+ "name": "Input",
13627
+ "module": "components/input/input.component.js"
13628
+ }
13629
+ },
13630
+ {
13631
+ "kind": "method",
13632
+ "name": "renderInputElement",
13633
+ "privacy": "protected",
13634
+ "parameters": [
13635
+ {
13636
+ "name": "type",
13637
+ "type": {
13638
+ "text": "InputType"
13639
+ }
13640
+ }
13641
+ ],
13642
+ "inheritedFrom": {
13643
+ "name": "Input",
13644
+ "module": "components/input/input.component.js"
13645
+ }
13646
+ },
13647
+ {
13648
+ "kind": "field",
13649
+ "name": "disabled",
13650
+ "type": {
13651
+ "text": "boolean | undefined"
13652
+ },
13653
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
13654
+ "default": "undefined",
13655
+ "attribute": "disabled",
13656
+ "reflects": true,
13657
+ "inheritedFrom": {
13658
+ "name": "FormfieldWrapper",
13659
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13660
+ }
13661
+ },
13662
+ {
13663
+ "kind": "field",
13664
+ "name": "label",
13665
+ "type": {
13666
+ "text": "string | undefined"
13667
+ },
13668
+ "description": "The label of the input field. It is linked to the input field using the `for` attribute.",
13669
+ "attribute": "label",
13670
+ "reflects": true,
13671
+ "inheritedFrom": {
13672
+ "name": "FormfieldWrapper",
13673
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13674
+ }
13675
+ },
13676
+ {
13677
+ "kind": "field",
13678
+ "name": "requiredLabel",
13679
+ "type": {
13680
+ "text": "string | undefined"
13681
+ },
13682
+ "description": "The required label of the input field.\nWhen an appropriate string value is set,\nthe input field is marked as required and the label is appended with this text.",
13683
+ "attribute": "required-label",
13684
+ "reflects": true,
13685
+ "inheritedFrom": {
13686
+ "name": "FormfieldWrapper",
13687
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13688
+ }
13689
+ },
13690
+ {
13691
+ "kind": "field",
13692
+ "name": "helpTextType",
13693
+ "type": {
13694
+ "text": "ValidationType"
13695
+ },
13696
+ "description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
13697
+ "attribute": "help-text-type",
13698
+ "reflects": true,
13699
+ "inheritedFrom": {
13700
+ "name": "FormfieldWrapper",
13701
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13702
+ }
13703
+ },
13704
+ {
13705
+ "kind": "field",
13706
+ "name": "helpText",
13707
+ "type": {
13708
+ "text": "string | undefined"
13709
+ },
13710
+ "description": "The help text that is displayed below the input field.",
13711
+ "attribute": "help-text",
13712
+ "reflects": true,
13713
+ "inheritedFrom": {
13714
+ "name": "FormfieldWrapper",
13715
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13716
+ }
13717
+ },
13718
+ {
13719
+ "kind": "method",
13720
+ "name": "renderLabelElement",
13721
+ "privacy": "protected",
13722
+ "description": "creates the label element when the label property is set.\nid is used to link the label with the input field.",
13723
+ "return": {
13724
+ "type": {
13725
+ "text": ""
13726
+ }
13727
+ },
13728
+ "inheritedFrom": {
13729
+ "name": "FormfieldWrapper",
13730
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13731
+ }
13732
+ },
13733
+ {
13734
+ "kind": "method",
13735
+ "name": "renderRequiredLabel",
13736
+ "privacy": "protected",
13737
+ "inheritedFrom": {
13738
+ "name": "FormfieldWrapper",
13739
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13740
+ }
13741
+ },
13742
+ {
13743
+ "kind": "method",
13744
+ "name": "renderHelpTextIcon",
13745
+ "privacy": "protected",
13746
+ "description": "creates the helpertext icon based on the helpTextType for validation.\nIf the helpTextType is not set, it defaults to 'default' and it doesn't display any icon.",
13747
+ "return": {
13748
+ "type": {
13749
+ "text": ""
13750
+ }
13751
+ },
13752
+ "inheritedFrom": {
13753
+ "name": "FormfieldWrapper",
13754
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13755
+ }
13756
+ },
13757
+ {
13758
+ "kind": "method",
13759
+ "name": "renderHelpText",
13760
+ "privacy": "protected",
13761
+ "description": "creates the helper text component when the helpertext value is set.\nIt is also used to display the validation message based on the helpTextType.",
13762
+ "return": {
13763
+ "type": {
13764
+ "text": ""
13765
+ }
13766
+ },
13767
+ "inheritedFrom": {
13768
+ "name": "FormfieldWrapper",
13769
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13770
+ }
13771
+ },
13772
+ {
13773
+ "kind": "method",
13774
+ "name": "renderLabel",
13775
+ "privacy": "protected",
13776
+ "description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
13777
+ "return": {
13778
+ "type": {
13779
+ "text": ""
13780
+ }
13781
+ },
13782
+ "inheritedFrom": {
13783
+ "name": "FormfieldWrapper",
13784
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13785
+ }
13786
+ },
13787
+ {
13788
+ "kind": "method",
13789
+ "name": "renderHelperText",
13790
+ "privacy": "protected",
13791
+ "description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
13792
+ "return": {
13793
+ "type": {
13794
+ "text": ""
13795
+ }
13796
+ },
13797
+ "inheritedFrom": {
13798
+ "name": "FormfieldWrapper",
13799
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13800
+ }
13801
+ }
13802
+ ],
13803
+ "superclass": {
13804
+ "name": "Input",
13805
+ "module": "/src/components/input/input.component"
13806
+ },
13807
+ "tagName": "mdc-searchfield",
13808
+ "jsDoc": "/**\n * searchfield component is used as an input field for search functionality.\n *\n * It supports `mdc-inputchip` as filters.\n *\n * This component is built by extending the `mdc-input` component.\n *\n * @tagname mdc-searchfield\n *\n * @slot filters - Slot for input chips\n *\n */",
13809
+ "customElement": true,
13810
+ "attributes": [
13811
+ {
13812
+ "name": "name",
13813
+ "type": {
13814
+ "text": "string"
13815
+ },
13816
+ "default": "''",
13817
+ "description": "Indicates the name of the component group.\nThey are used to group elements in a form together.",
13818
+ "fieldName": "name",
13819
+ "inheritedFrom": {
13820
+ "name": "FormInternalsMixin",
13821
+ "module": "src/utils/mixins/FormInternalsMixin.ts"
13822
+ }
13823
+ },
13824
+ {
13825
+ "name": "value",
13826
+ "type": {
13827
+ "text": "string"
13828
+ },
13829
+ "default": "''",
13830
+ "description": "Indicates the value of the component group (ex: input, checkbox, radio, select etc...)",
13831
+ "fieldName": "value",
13832
+ "inheritedFrom": {
13833
+ "name": "FormInternalsMixin",
13834
+ "module": "src/utils/mixins/FormInternalsMixin.ts"
13835
+ }
13836
+ },
13837
+ {
13838
+ "name": "validation-message",
13839
+ "type": {
13840
+ "text": "string | undefined"
13841
+ },
13842
+ "description": "Custom validation message that will override the default message and displayed when the input is invalid.",
13843
+ "fieldName": "validationMessage",
13844
+ "inheritedFrom": {
13845
+ "name": "FormInternalsMixin",
13846
+ "module": "src/utils/mixins/FormInternalsMixin.ts"
13847
+ }
13848
+ },
13849
+ {
13850
+ "name": "data-aria-label",
13851
+ "type": {
13852
+ "text": "string | null"
13853
+ },
13854
+ "default": "null",
13855
+ "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
13856
+ "fieldName": "dataAriaLabel",
13857
+ "inheritedFrom": {
13858
+ "name": "DataAriaLabelMixin",
13859
+ "module": "src/utils/mixins/DataAriaLabelMixin.ts"
13860
+ }
13861
+ },
13862
+ {
13863
+ "name": "placeholder",
13864
+ "type": {
13865
+ "text": "string"
13866
+ },
13867
+ "default": "''",
13868
+ "description": "The placeholder text that is displayed when the input field is empty.",
13869
+ "fieldName": "placeholder",
13870
+ "inheritedFrom": {
13871
+ "name": "Input",
13872
+ "module": "src/components/input/input.component.ts"
13873
+ }
13874
+ },
13875
+ {
13876
+ "name": "readonly",
13877
+ "type": {
13878
+ "text": "boolean"
13879
+ },
13880
+ "default": "false",
13881
+ "description": "readonly attribute of the input field. If true, the input field is read-only.",
13882
+ "fieldName": "readonly",
13883
+ "inheritedFrom": {
13884
+ "name": "Input",
13885
+ "module": "src/components/input/input.component.ts"
13886
+ }
13887
+ },
13888
+ {
13889
+ "name": "prefix-text",
13890
+ "type": {
13891
+ "text": "string | undefined"
13892
+ },
13893
+ "description": "The prefix text that is displayed before the input field. It has a max length of 10 characters.\nWhen the prefix text is set, make sure to set the 'data-aria-label'\nattribute with the appropriate value for accessibility.",
13894
+ "fieldName": "prefixText",
13895
+ "inheritedFrom": {
13896
+ "name": "Input",
13897
+ "module": "src/components/input/input.component.ts"
13898
+ }
13899
+ },
13900
+ {
13901
+ "name": "leading-icon",
13902
+ "type": {
13903
+ "text": "IconNames | undefined"
13904
+ },
13905
+ "description": "The leading icon that is displayed before the input field.",
13906
+ "fieldName": "leadingIcon",
13907
+ "inheritedFrom": {
13908
+ "name": "Input",
13909
+ "module": "src/components/input/input.component.ts"
13910
+ }
13911
+ },
13912
+ {
13913
+ "name": "trailing-button",
13914
+ "type": {
13915
+ "text": "boolean"
13916
+ },
13917
+ "default": "false",
13918
+ "description": "The trailing button when set to true, shows a clear button that clears the input field.",
13919
+ "fieldName": "trailingButton",
13920
+ "inheritedFrom": {
13921
+ "name": "Input",
13922
+ "module": "src/components/input/input.component.ts"
13923
+ }
13924
+ },
13925
+ {
13926
+ "name": "maxlength",
13927
+ "type": {
13928
+ "text": "number | undefined"
13929
+ },
13930
+ "description": "The maximum number of characters that the input field can accept.",
13931
+ "fieldName": "maxlength",
13932
+ "inheritedFrom": {
13933
+ "name": "Input",
13934
+ "module": "src/components/input/input.component.ts"
13935
+ }
13936
+ },
13937
+ {
13938
+ "name": "minlength",
13939
+ "type": {
13940
+ "text": "number | undefined"
13941
+ },
13942
+ "description": "The minimum number of characters that the input field can accept.",
13943
+ "fieldName": "minlength",
13944
+ "inheritedFrom": {
13945
+ "name": "Input",
13946
+ "module": "src/components/input/input.component.ts"
13947
+ }
13948
+ },
13949
+ {
13950
+ "name": "autocapitalize",
13951
+ "type": {
13952
+ "text": "AutoCapitalizeType"
13953
+ },
13954
+ "description": "The autocapitalize attribute of the input field.",
13955
+ "default": "'off'",
13956
+ "fieldName": "autocapitalize",
13957
+ "inheritedFrom": {
13958
+ "name": "Input",
13959
+ "module": "src/components/input/input.component.ts"
13960
+ }
13961
+ },
13962
+ {
13963
+ "name": "autocomplete",
13964
+ "type": {
13965
+ "text": "AutoCompleteType"
13966
+ },
13967
+ "description": "The autocomplete attribute of the input field.",
13968
+ "default": "'off'",
13969
+ "fieldName": "autocomplete",
13970
+ "inheritedFrom": {
13971
+ "name": "Input",
13972
+ "module": "src/components/input/input.component.ts"
13973
+ }
13974
+ },
13975
+ {
13976
+ "name": "autofocus",
13977
+ "type": {
13978
+ "text": "boolean"
13979
+ },
13980
+ "default": "false",
13981
+ "description": "If true, the input field is focused when the component is rendered.",
13982
+ "fieldName": "autofocus",
13983
+ "inheritedFrom": {
13984
+ "name": "Input",
13985
+ "module": "src/components/input/input.component.ts"
13986
+ }
13987
+ },
13988
+ {
13989
+ "name": "dirname",
13990
+ "type": {
13991
+ "text": "string | undefined"
13992
+ },
13993
+ "description": "Specifies the name of the directionality of text for submission purposes (e.g., \"rtl\" for right-to-left).",
13994
+ "fieldName": "dirname",
13995
+ "inheritedFrom": {
13996
+ "name": "Input",
13997
+ "module": "src/components/input/input.component.ts"
13998
+ }
13999
+ },
14000
+ {
14001
+ "name": "pattern",
14002
+ "type": {
14003
+ "text": "string | undefined"
14004
+ },
14005
+ "description": "The pattern attribute of the input field.\nSpecifies a regular expression that the input value must match for validation purposes.",
14006
+ "fieldName": "pattern",
14007
+ "inheritedFrom": {
14008
+ "name": "Input",
14009
+ "module": "src/components/input/input.component.ts"
14010
+ }
14011
+ },
14012
+ {
14013
+ "name": "list",
14014
+ "type": {
14015
+ "text": "string | undefined"
14016
+ },
14017
+ "description": "The list attribute of the input field.\nIdentifies a list of pre-defined options to suggest to the user.",
14018
+ "fieldName": "list",
14019
+ "inheritedFrom": {
14020
+ "name": "Input",
14021
+ "module": "src/components/input/input.component.ts"
14022
+ }
14023
+ },
14024
+ {
14025
+ "name": "size",
14026
+ "type": {
14027
+ "text": "number | undefined | undefined"
14028
+ },
14029
+ "description": "The size attribute of the input field.\nSpecifies the width of the input field.",
14030
+ "default": "undefined",
14031
+ "fieldName": "size",
14032
+ "inheritedFrom": {
14033
+ "name": "Input",
14034
+ "module": "src/components/input/input.component.ts"
14035
+ }
14036
+ },
14037
+ {
14038
+ "name": "clear-aria-label",
14039
+ "type": {
14040
+ "text": "string"
14041
+ },
14042
+ "default": "''",
14043
+ "description": "Aria label for the trailing button. If trailing button is set to true, this label is used for the clear button.",
14044
+ "fieldName": "clearAriaLabel",
14045
+ "inheritedFrom": {
14046
+ "name": "Input",
14047
+ "module": "src/components/input/input.component.ts"
14048
+ }
14049
+ },
14050
+ {
14051
+ "name": "disabled",
14052
+ "type": {
14053
+ "text": "boolean | undefined"
14054
+ },
14055
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
14056
+ "default": "undefined",
14057
+ "fieldName": "disabled",
14058
+ "inheritedFrom": {
14059
+ "name": "FormfieldWrapper",
14060
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
14061
+ }
14062
+ },
14063
+ {
14064
+ "name": "label",
14065
+ "type": {
14066
+ "text": "string | undefined"
14067
+ },
14068
+ "description": "The label of the input field. It is linked to the input field using the `for` attribute.",
14069
+ "fieldName": "label",
14070
+ "inheritedFrom": {
14071
+ "name": "FormfieldWrapper",
14072
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
14073
+ }
14074
+ },
14075
+ {
14076
+ "name": "required-label",
14077
+ "type": {
14078
+ "text": "string | undefined"
14079
+ },
14080
+ "description": "The required label of the input field.\nWhen an appropriate string value is set,\nthe input field is marked as required and the label is appended with this text.",
14081
+ "fieldName": "requiredLabel",
14082
+ "inheritedFrom": {
14083
+ "name": "FormfieldWrapper",
14084
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
14085
+ }
14086
+ },
14087
+ {
14088
+ "name": "id",
14089
+ "type": {
14090
+ "text": "string"
14091
+ },
14092
+ "default": "''",
14093
+ "description": "The unique id of the input field. It is used to link the input field with the label.",
14094
+ "fieldName": "id",
14095
+ "inheritedFrom": {
14096
+ "name": "FormfieldWrapper",
14097
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
14098
+ }
14099
+ },
14100
+ {
14101
+ "name": "help-text-type",
14102
+ "type": {
14103
+ "text": "ValidationType"
14104
+ },
14105
+ "description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
14106
+ "fieldName": "helpTextType",
14107
+ "inheritedFrom": {
14108
+ "name": "FormfieldWrapper",
14109
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
14110
+ }
14111
+ },
14112
+ {
14113
+ "name": "help-text",
14114
+ "type": {
14115
+ "text": "string | undefined"
14116
+ },
14117
+ "description": "The help text that is displayed below the input field.",
14118
+ "fieldName": "helpText",
14119
+ "inheritedFrom": {
14120
+ "name": "FormfieldWrapper",
14121
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
14122
+ }
14123
+ }
14124
+ ],
14125
+ "cssProperties": [
14126
+ {
14127
+ "description": "Border color for the input container when disabled",
14128
+ "name": "--mdc-input-disabled-border-color",
14129
+ "inheritedFrom": {
14130
+ "name": "Input",
14131
+ "module": "src/components/input/input.component.ts"
14132
+ }
14133
+ },
14134
+ {
14135
+ "description": "Text color for the input field when disabled",
14136
+ "name": "--mdc-input-disabled-text-color",
14137
+ "inheritedFrom": {
14138
+ "name": "Input",
14139
+ "module": "src/components/input/input.component.ts"
14140
+ }
14141
+ },
14142
+ {
14143
+ "description": "Background color for the input field when disabled",
14144
+ "name": "--mdc-input-disabled-background-color",
14145
+ "inheritedFrom": {
14146
+ "name": "Input",
14147
+ "module": "src/components/input/input.component.ts"
14148
+ }
14149
+ },
14150
+ {
14151
+ "description": "Border color for the input container",
14152
+ "name": "--mdc-input-border-color",
14153
+ "inheritedFrom": {
14154
+ "name": "Input",
14155
+ "module": "src/components/input/input.component.ts"
14156
+ }
14157
+ },
14158
+ {
14159
+ "description": "Text color for the input field",
14160
+ "name": "--mdc-input-text-color",
14161
+ "inheritedFrom": {
14162
+ "name": "Input",
14163
+ "module": "src/components/input/input.component.ts"
14164
+ }
14165
+ },
14166
+ {
14167
+ "description": "Background color for the input field",
14168
+ "name": "--mdc-input-background-color",
14169
+ "inheritedFrom": {
14170
+ "name": "Input",
14171
+ "module": "src/components/input/input.component.ts"
14172
+ }
14173
+ },
14174
+ {
14175
+ "description": "Background color for the selected text",
14176
+ "name": "--mdc-input-selection-background-color",
14177
+ "inheritedFrom": {
14178
+ "name": "Input",
14179
+ "module": "src/components/input/input.component.ts"
14180
+ }
14181
+ },
14182
+ {
14183
+ "description": "Text color for the selected text",
14184
+ "name": "--mdc-input-selection-text-color",
14185
+ "inheritedFrom": {
14186
+ "name": "Input",
14187
+ "module": "src/components/input/input.component.ts"
14188
+ }
14189
+ },
14190
+ {
14191
+ "description": "Text color for the help text",
14192
+ "name": "--mdc-input-support-text-color",
14193
+ "inheritedFrom": {
14194
+ "name": "Input",
14195
+ "module": "src/components/input/input.component.ts"
14196
+ }
14197
+ },
14198
+ {
14199
+ "description": "Background color for the input field when hovered",
14200
+ "name": "--mdc-input-hover-background-color",
14201
+ "inheritedFrom": {
14202
+ "name": "Input",
14203
+ "module": "src/components/input/input.component.ts"
14204
+ }
14205
+ },
14206
+ {
14207
+ "description": "Background color for the input field when focused",
14208
+ "name": "--mdc-input-focused-background-color",
14209
+ "inheritedFrom": {
14210
+ "name": "Input",
14211
+ "module": "src/components/input/input.component.ts"
14212
+ }
14213
+ },
14214
+ {
14215
+ "description": "Border color for the input container when focused",
14216
+ "name": "--mdc-input-focused-border-color",
14217
+ "inheritedFrom": {
14218
+ "name": "Input",
14219
+ "module": "src/components/input/input.component.ts"
14220
+ }
14221
+ },
14222
+ {
14223
+ "description": "Border color for the input container when error",
14224
+ "name": "--mdc-input-error-border-color",
14225
+ "inheritedFrom": {
14226
+ "name": "Input",
14227
+ "module": "src/components/input/input.component.ts"
14228
+ }
14229
+ },
14230
+ {
14231
+ "description": "Border color for the input container when warning",
14232
+ "name": "--mdc-input-warning-border-color",
14233
+ "inheritedFrom": {
14234
+ "name": "Input",
14235
+ "module": "src/components/input/input.component.ts"
14236
+ }
14237
+ },
14238
+ {
14239
+ "description": "Border color for the input container when success",
14240
+ "name": "--mdc-input-success-border-color",
14241
+ "inheritedFrom": {
14242
+ "name": "Input",
14243
+ "module": "src/components/input/input.component.ts"
14244
+ }
14245
+ },
14246
+ {
14247
+ "description": "Border color for the input container when primary",
14248
+ "name": "--mdc-input-primary-border-color",
14249
+ "inheritedFrom": {
14250
+ "name": "Input",
14251
+ "module": "src/components/input/input.component.ts"
14252
+ }
14253
+ }
14254
+ ],
14255
+ "events": [
14256
+ {
14257
+ "type": {
14258
+ "text": "EventConstructor"
14259
+ },
14260
+ "inheritedFrom": {
14261
+ "name": "Input",
14262
+ "module": "src/components/input/input.component.ts"
14263
+ }
14264
+ },
14265
+ {
14266
+ "description": "(React: onInput) This event is dispatched when the value of the input field changes (every press).",
14267
+ "name": "input",
14268
+ "reactName": "onInput",
14269
+ "eventName": "InputEvent",
14270
+ "inheritedFrom": {
14271
+ "name": "Input",
14272
+ "module": "src/components/input/input.component.ts"
14273
+ }
14274
+ },
14275
+ {
14276
+ "description": "(React: onChange) This event is dispatched when the value of the input field changes (on blur).",
14277
+ "name": "change",
14278
+ "reactName": "onChange",
14279
+ "eventName": "ChangeEvent",
14280
+ "inheritedFrom": {
14281
+ "name": "Input",
14282
+ "module": "src/components/input/input.component.ts"
14283
+ }
14284
+ },
14285
+ {
14286
+ "description": "(React: onFocus) This event is dispatched when the input receives focus.",
14287
+ "name": "focus",
14288
+ "reactName": "onFocus",
14289
+ "eventName": "FocusEvent",
14290
+ "inheritedFrom": {
14291
+ "name": "Input",
14292
+ "module": "src/components/input/input.component.ts"
14293
+ }
14294
+ },
14295
+ {
14296
+ "description": "(React: onBlur) This event is dispatched when the input loses focus.",
14297
+ "name": "blur",
14298
+ "reactName": "onBlur",
14299
+ "eventName": "BlurEvent",
14300
+ "inheritedFrom": {
14301
+ "name": "Input",
14302
+ "module": "src/components/input/input.component.ts"
14303
+ }
14304
+ }
14305
+ ]
14306
+ }
14307
+ ],
14308
+ "exports": [
14309
+ {
14310
+ "kind": "js",
14311
+ "name": "default",
14312
+ "declaration": {
14313
+ "name": "Searchfield",
14314
+ "module": "components/searchfield/searchfield.component.js"
14315
+ }
14316
+ }
14317
+ ]
14318
+ },
13131
14319
  {
13132
14320
  "kind": "javascript-module",
13133
14321
  "path": "components/spinner/spinner.component.js",