@momentum-design/components 0.112.0 → 0.112.2

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.
@@ -2093,6 +2093,503 @@
2093
2093
  }
2094
2094
  ]
2095
2095
  },
2096
+ {
2097
+ "kind": "javascript-module",
2098
+ "path": "components/badge/badge.component.js",
2099
+ "declarations": [
2100
+ {
2101
+ "kind": "class",
2102
+ "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.",
2103
+ "name": "Badge",
2104
+ "cssProperties": [
2105
+ {
2106
+ "description": "The foreground color of the primary badge.",
2107
+ "name": "--mdc-badge-primary-foreground-color"
2108
+ },
2109
+ {
2110
+ "description": "The background color of the primary badge.",
2111
+ "name": "--mdc-badge-primary-background-color"
2112
+ },
2113
+ {
2114
+ "description": "The foreground color of the secondary badge.",
2115
+ "name": "--mdc-badge-secondary-foreground-color"
2116
+ },
2117
+ {
2118
+ "description": "The background color of the secondary badge.",
2119
+ "name": "--mdc-badge-secondary-background-color"
2120
+ },
2121
+ {
2122
+ "description": "The foreground color of the success badge.",
2123
+ "name": "--mdc-badge-success-foreground-color"
2124
+ },
2125
+ {
2126
+ "description": "The background color of the success badge.",
2127
+ "name": "--mdc-badge-success-background-color"
2128
+ },
2129
+ {
2130
+ "description": "The foreground color of the warning badge.",
2131
+ "name": "--mdc-badge-warning-foreground-color"
2132
+ },
2133
+ {
2134
+ "description": "The background color of the warning badge.",
2135
+ "name": "--mdc-badge-warning-background-color"
2136
+ },
2137
+ {
2138
+ "description": "The foreground color of the error badge.",
2139
+ "name": "--mdc-badge-error-foreground-color"
2140
+ },
2141
+ {
2142
+ "description": "The background color of the error badge.",
2143
+ "name": "--mdc-badge-error-background-color"
2144
+ },
2145
+ {
2146
+ "description": "The background color of the badge overlay.",
2147
+ "name": "--mdc-badge-overlay-background-color"
2148
+ }
2149
+ ],
2150
+ "members": [
2151
+ {
2152
+ "kind": "field",
2153
+ "name": "type",
2154
+ "type": {
2155
+ "text": "BadgeType | undefined"
2156
+ },
2157
+ "description": "Type of the badge\nCan be `dot` (notification) , `icon`, `counter`, `success`, `warning` or `error`.",
2158
+ "attribute": "type",
2159
+ "reflects": true
2160
+ },
2161
+ {
2162
+ "kind": "field",
2163
+ "name": "variant",
2164
+ "type": {
2165
+ "text": "IconVariant"
2166
+ },
2167
+ "description": "Type of the variant can be `primary` or `secondary`.\nIt defines the background and foreground color of the icon.",
2168
+ "default": "primary",
2169
+ "attribute": "variant",
2170
+ "reflects": true
2171
+ },
2172
+ {
2173
+ "kind": "field",
2174
+ "name": "counter",
2175
+ "type": {
2176
+ "text": "number | undefined"
2177
+ },
2178
+ "description": "Counter is the number which can be provided in the badge.",
2179
+ "attribute": "counter"
2180
+ },
2181
+ {
2182
+ "kind": "field",
2183
+ "name": "maxCounter",
2184
+ "type": {
2185
+ "text": "number"
2186
+ },
2187
+ "description": "The maximum number can be set up to 999, anything above that will be rendered as _999+_.\nThe max counter can be `9`, `99` or `999`.",
2188
+ "default": "99",
2189
+ "attribute": "max-counter",
2190
+ "reflects": true
2191
+ },
2192
+ {
2193
+ "kind": "field",
2194
+ "name": "overlay",
2195
+ "type": {
2196
+ "text": "boolean"
2197
+ },
2198
+ "default": "false",
2199
+ "description": "Overlay is to add a thin outline to the badge.\nThis will help distinguish between the badge and the button,\nwhere the badge will be layered on top of a button.",
2200
+ "attribute": "overlay"
2201
+ },
2202
+ {
2203
+ "kind": "field",
2204
+ "name": "ariaLabel",
2205
+ "type": {
2206
+ "text": "string | null"
2207
+ },
2208
+ "default": "null",
2209
+ "description": "Aria-label attribute to be set for accessibility",
2210
+ "attribute": "aria-label"
2211
+ },
2212
+ {
2213
+ "kind": "method",
2214
+ "name": "getCounterText",
2215
+ "privacy": "private",
2216
+ "return": {
2217
+ "type": {
2218
+ "text": ""
2219
+ }
2220
+ },
2221
+ "parameters": [
2222
+ {
2223
+ "name": "maxCounter",
2224
+ "type": {
2225
+ "text": "number"
2226
+ },
2227
+ "description": "the maximum limit which can be displayed on the badge"
2228
+ },
2229
+ {
2230
+ "name": "counter",
2231
+ "optional": true,
2232
+ "type": {
2233
+ "text": "number"
2234
+ },
2235
+ "description": "the number to be displayed on the badge"
2236
+ }
2237
+ ],
2238
+ "description": "If `type` is set to `counter` and if `counter` is greater than `maxCounter`,\nthen it will return a string the maxCounter value as string.\nOtherwise, it will return a string representation of `counter`.\nIf `counter` is not a number, it will return an empty string."
2239
+ },
2240
+ {
2241
+ "kind": "method",
2242
+ "name": "getBadgeIcon",
2243
+ "privacy": "private",
2244
+ "return": {
2245
+ "type": {
2246
+ "text": ""
2247
+ }
2248
+ },
2249
+ "parameters": [
2250
+ {
2251
+ "name": "iconName",
2252
+ "type": {
2253
+ "text": "string"
2254
+ },
2255
+ "description": "the name of the icon from the icon set"
2256
+ },
2257
+ {
2258
+ "name": "backgroundClassPostfix",
2259
+ "type": {
2260
+ "text": "string"
2261
+ },
2262
+ "description": "postfix for the class to style the badge icon."
2263
+ }
2264
+ ],
2265
+ "description": "Method to generate the badge icon."
2266
+ },
2267
+ {
2268
+ "kind": "method",
2269
+ "name": "getBadgeDot",
2270
+ "privacy": "private",
2271
+ "return": {
2272
+ "type": {
2273
+ "text": ""
2274
+ }
2275
+ },
2276
+ "description": "Method to generate the badge dot template."
2277
+ },
2278
+ {
2279
+ "kind": "method",
2280
+ "name": "getBadgeCounterText",
2281
+ "privacy": "private",
2282
+ "return": {
2283
+ "type": {
2284
+ "text": ""
2285
+ }
2286
+ },
2287
+ "description": "Method to generate the badge text and counter template."
2288
+ },
2289
+ {
2290
+ "kind": "method",
2291
+ "name": "setRoleByAriaLabel",
2292
+ "privacy": "private",
2293
+ "return": {
2294
+ "type": {
2295
+ "text": "void"
2296
+ }
2297
+ },
2298
+ "description": "Method to set the role based on the aria-label provided.\nIf the aria-label is provided, the role of the element will be 'img'.\nOtherwise, the role will be null."
2299
+ },
2300
+ {
2301
+ "kind": "method",
2302
+ "name": "getBadgeContentBasedOnType",
2303
+ "privacy": "private",
2304
+ "return": {
2305
+ "type": {
2306
+ "text": ""
2307
+ }
2308
+ },
2309
+ "description": "Generates the badge content based on the badge type.\nUtilizes various helper methods to create the appropriate badge template based on the\ncurrent badge type. Supports 'dot', 'icon', 'counter', 'success', 'warning', and 'error'\ntypes, returning the corresponding template result for each type."
2310
+ },
2311
+ {
2312
+ "kind": "field",
2313
+ "name": "iconName",
2314
+ "type": {
2315
+ "text": "IconNames | undefined"
2316
+ },
2317
+ "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
2318
+ "attribute": "icon-name",
2319
+ "inheritedFrom": {
2320
+ "name": "IconNameMixin",
2321
+ "module": "utils/mixins/IconNameMixin.js"
2322
+ }
2323
+ }
2324
+ ],
2325
+ "attributes": [
2326
+ {
2327
+ "name": "type",
2328
+ "type": {
2329
+ "text": "BadgeType | undefined"
2330
+ },
2331
+ "description": "Type of the badge\nCan be `dot` (notification) , `icon`, `counter`, `success`, `warning` or `error`.",
2332
+ "fieldName": "type"
2333
+ },
2334
+ {
2335
+ "name": "variant",
2336
+ "type": {
2337
+ "text": "IconVariant"
2338
+ },
2339
+ "description": "Type of the variant can be `primary` or `secondary`.\nIt defines the background and foreground color of the icon.",
2340
+ "default": "primary",
2341
+ "fieldName": "variant"
2342
+ },
2343
+ {
2344
+ "name": "counter",
2345
+ "type": {
2346
+ "text": "number | undefined"
2347
+ },
2348
+ "description": "Counter is the number which can be provided in the badge.",
2349
+ "fieldName": "counter"
2350
+ },
2351
+ {
2352
+ "name": "max-counter",
2353
+ "type": {
2354
+ "text": "number"
2355
+ },
2356
+ "description": "The maximum number can be set up to 999, anything above that will be rendered as _999+_.\nThe max counter can be `9`, `99` or `999`.",
2357
+ "default": "99",
2358
+ "fieldName": "maxCounter"
2359
+ },
2360
+ {
2361
+ "name": "overlay",
2362
+ "type": {
2363
+ "text": "boolean"
2364
+ },
2365
+ "default": "false",
2366
+ "description": "Overlay is to add a thin outline to the badge.\nThis will help distinguish between the badge and the button,\nwhere the badge will be layered on top of a button.",
2367
+ "fieldName": "overlay"
2368
+ },
2369
+ {
2370
+ "name": "aria-label",
2371
+ "type": {
2372
+ "text": "string | null"
2373
+ },
2374
+ "default": "null",
2375
+ "description": "Aria-label attribute to be set for accessibility",
2376
+ "fieldName": "ariaLabel"
2377
+ },
2378
+ {
2379
+ "name": "icon-name",
2380
+ "type": {
2381
+ "text": "IconNames | undefined"
2382
+ },
2383
+ "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
2384
+ "fieldName": "iconName",
2385
+ "inheritedFrom": {
2386
+ "name": "IconNameMixin",
2387
+ "module": "src/utils/mixins/IconNameMixin.ts"
2388
+ }
2389
+ }
2390
+ ],
2391
+ "mixins": [
2392
+ {
2393
+ "name": "IconNameMixin",
2394
+ "module": "/src/utils/mixins/IconNameMixin"
2395
+ }
2396
+ ],
2397
+ "superclass": {
2398
+ "name": "Component",
2399
+ "module": "/src/models"
2400
+ },
2401
+ "tagName": "mdc-badge",
2402
+ "jsDoc": "/**\n * The `mdc-badge` component is a versatile UI element used to\n * display dot, icons, counters, success, warning and error type badge.\n *\n * Supported 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`,\n * it 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 *\n * For `icon`, `success`, `warning` and `error` types, the `mdc-icon` component is used to render the icon.\n *\n * For the `counter` type, the `mdc-text` component is used to render the counter value.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @tagname mdc-badge\n *\n * @cssproperty --mdc-badge-primary-foreground-color - The foreground color of the primary badge.\n * @cssproperty --mdc-badge-primary-background-color - The background color of the primary badge.\n * @cssproperty --mdc-badge-secondary-foreground-color - The foreground color of the secondary badge.\n * @cssproperty --mdc-badge-secondary-background-color - The background color of the secondary badge.\n * @cssproperty --mdc-badge-success-foreground-color - The foreground color of the success badge.\n * @cssproperty --mdc-badge-success-background-color - The background color of the success badge.\n * @cssproperty --mdc-badge-warning-foreground-color - The foreground color of the warning badge.\n * @cssproperty --mdc-badge-warning-background-color - The background color of the warning badge.\n * @cssproperty --mdc-badge-error-foreground-color - The foreground color of the error badge.\n * @cssproperty --mdc-badge-error-background-color - The background color of the error badge.\n * @cssproperty --mdc-badge-overlay-background-color - The background color of the badge overlay.\n */",
2403
+ "customElement": true
2404
+ }
2405
+ ],
2406
+ "exports": [
2407
+ {
2408
+ "kind": "js",
2409
+ "name": "default",
2410
+ "declaration": {
2411
+ "name": "Badge",
2412
+ "module": "components/badge/badge.component.js"
2413
+ }
2414
+ }
2415
+ ]
2416
+ },
2417
+ {
2418
+ "kind": "javascript-module",
2419
+ "path": "components/brandvisual/brandvisual.component.js",
2420
+ "declarations": [
2421
+ {
2422
+ "kind": "class",
2423
+ "description": "The `mdc-brandvisual` component is responsible for rendering logos dynamically & ensures they are\ndisplayed correctly within applications.\n\nFeatures:\n- Dynamically loads brandvisuals based on the `name` attribute.\n- Emits a `load` event when the brandvisual is successfully fetched.\n- Emits an `error` event when the brandvisual import fails.\n- Supports accessibility best practices.\n- Used for brand representation within the design system.",
2424
+ "name": "Brandvisual",
2425
+ "members": [
2426
+ {
2427
+ "kind": "field",
2428
+ "name": "brandVisualData",
2429
+ "type": {
2430
+ "text": "Element | TemplateResult | undefined"
2431
+ },
2432
+ "privacy": "private"
2433
+ },
2434
+ {
2435
+ "kind": "field",
2436
+ "name": "name",
2437
+ "type": {
2438
+ "text": "BrandVisualNames | undefined"
2439
+ },
2440
+ "description": "Name of the brandVisual (= filename)",
2441
+ "attribute": "name",
2442
+ "reflects": true
2443
+ },
2444
+ {
2445
+ "kind": "field",
2446
+ "name": "altText",
2447
+ "type": {
2448
+ "text": "string | undefined"
2449
+ },
2450
+ "description": "Alt text for the brandvisual image for accessibility.\nThis will only be set if the brandvisual is an image (png).",
2451
+ "attribute": "altText",
2452
+ "reflects": true
2453
+ },
2454
+ {
2455
+ "kind": "method",
2456
+ "name": "getBrandVisualData",
2457
+ "privacy": "private"
2458
+ },
2459
+ {
2460
+ "kind": "method",
2461
+ "name": "injectTemplateAttributes",
2462
+ "privacy": "private",
2463
+ "return": {
2464
+ "type": {
2465
+ "text": "Element | TemplateResult"
2466
+ }
2467
+ },
2468
+ "parameters": [
2469
+ {
2470
+ "name": "litTemplate",
2471
+ "type": {
2472
+ "text": "TemplateResult"
2473
+ }
2474
+ },
2475
+ {
2476
+ "name": "tag",
2477
+ "type": {
2478
+ "text": "string"
2479
+ }
2480
+ },
2481
+ {
2482
+ "name": "props",
2483
+ "type": {
2484
+ "text": "any"
2485
+ }
2486
+ }
2487
+ ]
2488
+ },
2489
+ {
2490
+ "kind": "method",
2491
+ "name": "injectHtmlAttributes",
2492
+ "privacy": "private",
2493
+ "return": {
2494
+ "type": {
2495
+ "text": "Element"
2496
+ }
2497
+ },
2498
+ "parameters": [
2499
+ {
2500
+ "name": "html",
2501
+ "type": {
2502
+ "text": "Element"
2503
+ }
2504
+ },
2505
+ {
2506
+ "name": "props",
2507
+ "type": {
2508
+ "text": "imageProps"
2509
+ }
2510
+ }
2511
+ ]
2512
+ },
2513
+ {
2514
+ "kind": "method",
2515
+ "name": "handleBrandVisualLoadedSuccess",
2516
+ "privacy": "private",
2517
+ "parameters": [
2518
+ {
2519
+ "name": "brandVisualHtml",
2520
+ "type": {
2521
+ "text": "TemplateResult"
2522
+ },
2523
+ "description": "The brandvisual html element which has been fetched from the brandvisual provider."
2524
+ }
2525
+ ],
2526
+ "description": "Sets the brandVisualData state to the fetched brandvisual.\nDispatches a 'load' event on the component once the brandvisual has been successfully loaded."
2527
+ },
2528
+ {
2529
+ "kind": "method",
2530
+ "name": "handleBrandVisualLoadedFailure",
2531
+ "privacy": "private",
2532
+ "parameters": [
2533
+ {
2534
+ "name": "error",
2535
+ "type": {
2536
+ "text": "unknown"
2537
+ }
2538
+ }
2539
+ ],
2540
+ "description": "Dispatches an 'error' event on the component when the brandvisual import has failed.\nThis event bubbles and is cancelable.\nThe error detail is set to the error object."
2541
+ }
2542
+ ],
2543
+ "events": [
2544
+ {
2545
+ "description": "(React: onLoad) This event is dispatched when the brandvisual has been successfully loaded.",
2546
+ "name": "load",
2547
+ "reactName": "onLoad"
2548
+ },
2549
+ {
2550
+ "description": "(React: onError) This event is dispatched when the brandvisual fetching has failed.",
2551
+ "name": "error",
2552
+ "reactName": "onError"
2553
+ }
2554
+ ],
2555
+ "attributes": [
2556
+ {
2557
+ "name": "name",
2558
+ "type": {
2559
+ "text": "BrandVisualNames | undefined"
2560
+ },
2561
+ "description": "Name of the brandVisual (= filename)",
2562
+ "fieldName": "name"
2563
+ },
2564
+ {
2565
+ "name": "altText",
2566
+ "type": {
2567
+ "text": "string | undefined"
2568
+ },
2569
+ "description": "Alt text for the brandvisual image for accessibility.\nThis will only be set if the brandvisual is an image (png).",
2570
+ "fieldName": "altText"
2571
+ }
2572
+ ],
2573
+ "superclass": {
2574
+ "name": "Component",
2575
+ "module": "/src/models"
2576
+ },
2577
+ "tagName": "mdc-brandvisual",
2578
+ "jsDoc": "/**\n * The `mdc-brandvisual` component is responsible for rendering logos dynamically & ensures they are\n * displayed correctly within applications.\n *\n * Features:\n * - Dynamically loads brandvisuals based on the `name` attribute.\n * - Emits a `load` event when the brandvisual is successfully fetched.\n * - Emits an `error` event when the brandvisual import fails.\n * - Supports accessibility best practices.\n * - Used for brand representation within the design system.\n *\n * @tagname mdc-brandvisual\n *\n * @event load - (React: onLoad) This event is dispatched when the brandvisual has been successfully loaded.\n * @event error - (React: onError) This event is dispatched when the brandvisual fetching has failed.\n *\n */",
2579
+ "customElement": true
2580
+ }
2581
+ ],
2582
+ "exports": [
2583
+ {
2584
+ "kind": "js",
2585
+ "name": "default",
2586
+ "declaration": {
2587
+ "name": "Brandvisual",
2588
+ "module": "components/brandvisual/brandvisual.component.js"
2589
+ }
2590
+ }
2591
+ ]
2592
+ },
2096
2593
  {
2097
2594
  "kind": "javascript-module",
2098
2595
  "path": "components/avatarbutton/avatarbutton.component.js",
@@ -2613,521 +3110,68 @@
2613
3110
  "name": "AvatarComponentMixin",
2614
3111
  "module": "src/utils/mixins/AvatarComponentMixin.ts"
2615
3112
  }
2616
- },
2617
- {
2618
- "name": "initials",
2619
- "type": {
2620
- "text": "string | undefined"
2621
- },
2622
- "description": "The initials to be displayed for the avatar.",
2623
- "fieldName": "initials",
2624
- "inheritedFrom": {
2625
- "name": "AvatarComponentMixin",
2626
- "module": "src/utils/mixins/AvatarComponentMixin.ts"
2627
- }
2628
- },
2629
- {
2630
- "name": "presence",
2631
- "type": {
2632
- "text": "PresenceType | undefined"
2633
- },
2634
- "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`",
2635
- "fieldName": "presence",
2636
- "inheritedFrom": {
2637
- "name": "AvatarComponentMixin",
2638
- "module": "src/utils/mixins/AvatarComponentMixin.ts"
2639
- }
2640
- },
2641
- {
2642
- "name": "size",
2643
- "type": {
2644
- "text": "ButtonSize"
2645
- },
2646
- "description": "Acceptable values include (size in px unit):\n- 24\n- 32\n- 48\n- 64\n- 72\n- 88\n- 124",
2647
- "default": "32",
2648
- "fieldName": "size",
2649
- "inheritedFrom": {
2650
- "name": "Buttonsimple",
2651
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
2652
- }
2653
- },
2654
- {
2655
- "name": "counter",
2656
- "type": {
2657
- "text": "number | undefined"
2658
- },
2659
- "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`.",
2660
- "fieldName": "counter",
2661
- "inheritedFrom": {
2662
- "name": "AvatarComponentMixin",
2663
- "module": "src/utils/mixins/AvatarComponentMixin.ts"
2664
- }
2665
- },
2666
- {
2667
- "name": "is-typing",
2668
- "type": {
2669
- "text": "boolean"
2670
- },
2671
- "default": "false",
2672
- "description": "Represents the typing indicator when the user is typing.",
2673
- "fieldName": "isTyping",
2674
- "inheritedFrom": {
2675
- "name": "AvatarComponentMixin",
2676
- "module": "src/utils/mixins/AvatarComponentMixin.ts"
2677
- }
2678
- },
2679
- {
2680
- "name": "icon-name",
2681
- "type": {
2682
- "text": "IconNames | undefined"
2683
- },
2684
- "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
2685
- "fieldName": "iconName",
2686
- "inheritedFrom": {
2687
- "name": "IconNameMixin",
2688
- "module": "src/utils/mixins/IconNameMixin.ts"
2689
- }
2690
- },
2691
- {
2692
- "name": "auto-focus-on-mount",
2693
- "type": {
2694
- "text": "boolean"
2695
- },
2696
- "default": "false",
2697
- "description": "This property indicates whether the element should receive focus automatically when it is mounted.\n\nIt will not focus if the element is re-attached to the DOM after being removed.",
2698
- "fieldName": "autoFocusOnMount",
2699
- "inheritedFrom": {
2700
- "name": "AutoFocusOnMountMixin",
2701
- "module": "src/utils/mixins/AutoFocusOnMountMixin.ts"
2702
- }
2703
- },
2704
- {
2705
- "name": "tabIndex",
2706
- "type": {
2707
- "text": "number"
2708
- },
2709
- "default": "0",
2710
- "description": "This property specifies the tab order of the element.",
2711
- "fieldName": "tabIndex",
2712
- "inheritedFrom": {
2713
- "name": "TabIndexMixin",
2714
- "module": "src/utils/mixins/TabIndexMixin.ts"
2715
- }
2716
- },
2717
- {
2718
- "name": "disabled",
2719
- "type": {
2720
- "text": "boolean | undefined"
2721
- },
2722
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
2723
- "default": "undefined",
2724
- "fieldName": "disabled",
2725
- "inheritedFrom": {
2726
- "name": "DisabledMixin",
2727
- "module": "src/utils/mixins/DisabledMixin.ts"
2728
- }
2729
- },
2730
- {
2731
- "name": "active",
2732
- "type": {
2733
- "text": "boolean | undefined"
2734
- },
2735
- "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.\n\nThis attribute is used to set the provided `ariaStateKey` to true or false.",
2736
- "default": "undefined",
2737
- "fieldName": "active",
2738
- "inheritedFrom": {
2739
- "name": "Buttonsimple",
2740
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
2741
- }
2742
- },
2743
- {
2744
- "name": "soft-disabled",
2745
- "type": {
2746
- "text": "boolean | undefined"
2747
- },
2748
- "description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
2749
- "default": "undefined",
2750
- "fieldName": "softDisabled",
2751
- "inheritedFrom": {
2752
- "name": "Buttonsimple",
2753
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
2754
- }
2755
- },
2756
- {
2757
- "name": "role",
2758
- "type": {
2759
- "text": "RoleType"
2760
- },
2761
- "description": "This property defines the ARIA role for the element. By default, it is set to 'button'.\nConsumers should override this role when:\n- The element is being used in a context where a different role is more appropriate.\n- Custom behaviors are implemented that require a specific ARIA role for accessibility purposes.",
2762
- "default": "button",
2763
- "fieldName": "role",
2764
- "inheritedFrom": {
2765
- "name": "Buttonsimple",
2766
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
2767
- }
2768
- },
2769
- {
2770
- "name": "ariaStateKey",
2771
- "type": {
2772
- "text": "string | undefined"
2773
- },
2774
- "description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
2775
- "default": "'aria-pressed' (when)",
2776
- "fieldName": "ariaStateKey",
2777
- "inheritedFrom": {
2778
- "name": "Buttonsimple",
2779
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
2780
- }
2781
- },
2782
- {
2783
- "name": "type",
2784
- "type": {
2785
- "text": "ButtonType"
2786
- },
2787
- "description": "This property defines the type attribute for the button element.\nThe type attribute specifies the behavior of the button when it is clicked.\n- **submit**: The button submits the form data to the server.\n- **reset**: The button resets the form data to its initial state.\n- **button**: The button does nothing when clicked.",
2788
- "default": "button",
2789
- "fieldName": "type",
2790
- "inheritedFrom": {
2791
- "name": "Buttonsimple",
2792
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
2793
- }
2794
- },
2795
- {
2796
- "name": "name",
2797
- "type": {
2798
- "text": "string | undefined"
2799
- },
2800
- "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
2801
- "fieldName": "name",
2802
- "inheritedFrom": {
2803
- "name": "Buttonsimple",
2804
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
2805
- }
2806
- },
2807
- {
2808
- "name": "value",
2809
- "type": {
2810
- "text": "string | undefined"
2811
- },
2812
- "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
2813
- "fieldName": "value",
2814
- "inheritedFrom": {
2815
- "name": "Buttonsimple",
2816
- "module": "src/components/buttonsimple/buttonsimple.component.ts"
2817
- }
2818
- }
2819
- ],
2820
- "mixins": [
2821
- {
2822
- "name": "AvatarComponentMixin",
2823
- "module": "/src/utils/mixins/AvatarComponentMixin"
2824
- },
2825
- {
2826
- "name": "IconNameMixin",
2827
- "module": "/src/utils/mixins/IconNameMixin"
2828
- }
2829
- ],
2830
- "superclass": {
2831
- "name": "Buttonsimple",
2832
- "module": "/src/components/buttonsimple/buttonsimple.component"
2833
- },
2834
- "tagName": "mdc-avatarbutton",
2835
- "jsDoc": "/**\n * The `mdc-avatarbutton` component is an interactable version of the `mdc-avatar` component.\n *\n * This component is made by extending `buttonsimple` class.\n * The button component acts as a wrapper for the avatar component.\n *\n * To override styles of the avatar inside, use the specified css parts.\n *\n * @dependency mdc-avatar\n *\n * @event click - (React: onClick) This event is dispatched when the avatarbutton is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the avatarbutton.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the avatarbutton.\n * @event focus - (React: onFocus) This event is dispatched when the avatarbutton receives focus.\n *\n * @tagname mdc-avatarbutton\n *\n * @cssproperty --mdc-avatarbutton-overlay-background-color-rest - Background color of the overlay in rest state\n * @cssproperty --mdc-avatarbutton-overlay-background-color-hover - Background color of the overlay in hover state\n * @cssproperty --mdc-avatarbutton-overlay-background-color-active - Background color of the overlay in active state\n *\n * @csspart overlay - The overlay part of the avatar button.\n * @csspart content - The main content of the avatar.\n * @csspart photo - The photo part of the avatar.\n * @csspart presence - The presence indicator part of the avatar.\n * @csspart loading-wrapper - The wrapper for the loading indicator of the avatar.\n * @csspart loader - The loading indicator part of the avatar.\n */",
2836
- "customElement": true
2837
- }
2838
- ],
2839
- "exports": [
2840
- {
2841
- "kind": "js",
2842
- "name": "default",
2843
- "declaration": {
2844
- "name": "AvatarButton",
2845
- "module": "components/avatarbutton/avatarbutton.component.js"
2846
- }
2847
- }
2848
- ]
2849
- },
2850
- {
2851
- "kind": "javascript-module",
2852
- "path": "components/badge/badge.component.js",
2853
- "declarations": [
2854
- {
2855
- "kind": "class",
2856
- "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.",
2857
- "name": "Badge",
2858
- "cssProperties": [
2859
- {
2860
- "description": "The foreground color of the primary badge.",
2861
- "name": "--mdc-badge-primary-foreground-color"
2862
- },
2863
- {
2864
- "description": "The background color of the primary badge.",
2865
- "name": "--mdc-badge-primary-background-color"
2866
- },
2867
- {
2868
- "description": "The foreground color of the secondary badge.",
2869
- "name": "--mdc-badge-secondary-foreground-color"
2870
- },
2871
- {
2872
- "description": "The background color of the secondary badge.",
2873
- "name": "--mdc-badge-secondary-background-color"
2874
- },
2875
- {
2876
- "description": "The foreground color of the success badge.",
2877
- "name": "--mdc-badge-success-foreground-color"
2878
- },
2879
- {
2880
- "description": "The background color of the success badge.",
2881
- "name": "--mdc-badge-success-background-color"
2882
- },
2883
- {
2884
- "description": "The foreground color of the warning badge.",
2885
- "name": "--mdc-badge-warning-foreground-color"
2886
- },
2887
- {
2888
- "description": "The background color of the warning badge.",
2889
- "name": "--mdc-badge-warning-background-color"
2890
- },
2891
- {
2892
- "description": "The foreground color of the error badge.",
2893
- "name": "--mdc-badge-error-foreground-color"
2894
- },
2895
- {
2896
- "description": "The background color of the error badge.",
2897
- "name": "--mdc-badge-error-background-color"
2898
- },
2899
- {
2900
- "description": "The background color of the badge overlay.",
2901
- "name": "--mdc-badge-overlay-background-color"
2902
- }
2903
- ],
2904
- "members": [
2905
- {
2906
- "kind": "field",
2907
- "name": "type",
2908
- "type": {
2909
- "text": "BadgeType | undefined"
2910
- },
2911
- "description": "Type of the badge\nCan be `dot` (notification) , `icon`, `counter`, `success`, `warning` or `error`.",
2912
- "attribute": "type",
2913
- "reflects": true
2914
- },
2915
- {
2916
- "kind": "field",
2917
- "name": "variant",
2918
- "type": {
2919
- "text": "IconVariant"
2920
- },
2921
- "description": "Type of the variant can be `primary` or `secondary`.\nIt defines the background and foreground color of the icon.",
2922
- "default": "primary",
2923
- "attribute": "variant",
2924
- "reflects": true
2925
- },
2926
- {
2927
- "kind": "field",
2928
- "name": "counter",
2929
- "type": {
2930
- "text": "number | undefined"
2931
- },
2932
- "description": "Counter is the number which can be provided in the badge.",
2933
- "attribute": "counter"
2934
- },
2935
- {
2936
- "kind": "field",
2937
- "name": "maxCounter",
2938
- "type": {
2939
- "text": "number"
2940
- },
2941
- "description": "The maximum number can be set up to 999, anything above that will be rendered as _999+_.\nThe max counter can be `9`, `99` or `999`.",
2942
- "default": "99",
2943
- "attribute": "max-counter",
2944
- "reflects": true
2945
- },
2946
- {
2947
- "kind": "field",
2948
- "name": "overlay",
2949
- "type": {
2950
- "text": "boolean"
2951
- },
2952
- "default": "false",
2953
- "description": "Overlay is to add a thin outline to the badge.\nThis will help distinguish between the badge and the button,\nwhere the badge will be layered on top of a button.",
2954
- "attribute": "overlay"
2955
- },
2956
- {
2957
- "kind": "field",
2958
- "name": "ariaLabel",
2959
- "type": {
2960
- "text": "string | null"
2961
- },
2962
- "default": "null",
2963
- "description": "Aria-label attribute to be set for accessibility",
2964
- "attribute": "aria-label"
2965
- },
2966
- {
2967
- "kind": "method",
2968
- "name": "getCounterText",
2969
- "privacy": "private",
2970
- "return": {
2971
- "type": {
2972
- "text": ""
2973
- }
2974
- },
2975
- "parameters": [
2976
- {
2977
- "name": "maxCounter",
2978
- "type": {
2979
- "text": "number"
2980
- },
2981
- "description": "the maximum limit which can be displayed on the badge"
2982
- },
2983
- {
2984
- "name": "counter",
2985
- "optional": true,
2986
- "type": {
2987
- "text": "number"
2988
- },
2989
- "description": "the number to be displayed on the badge"
2990
- }
2991
- ],
2992
- "description": "If `type` is set to `counter` and if `counter` is greater than `maxCounter`,\nthen it will return a string the maxCounter value as string.\nOtherwise, it will return a string representation of `counter`.\nIf `counter` is not a number, it will return an empty string."
2993
- },
2994
- {
2995
- "kind": "method",
2996
- "name": "getBadgeIcon",
2997
- "privacy": "private",
2998
- "return": {
2999
- "type": {
3000
- "text": ""
3001
- }
3002
- },
3003
- "parameters": [
3004
- {
3005
- "name": "iconName",
3006
- "type": {
3007
- "text": "string"
3008
- },
3009
- "description": "the name of the icon from the icon set"
3010
- },
3011
- {
3012
- "name": "backgroundClassPostfix",
3013
- "type": {
3014
- "text": "string"
3015
- },
3016
- "description": "postfix for the class to style the badge icon."
3017
- }
3018
- ],
3019
- "description": "Method to generate the badge icon."
3020
- },
3021
- {
3022
- "kind": "method",
3023
- "name": "getBadgeDot",
3024
- "privacy": "private",
3025
- "return": {
3026
- "type": {
3027
- "text": ""
3028
- }
3029
- },
3030
- "description": "Method to generate the badge dot template."
3031
- },
3032
- {
3033
- "kind": "method",
3034
- "name": "getBadgeCounterText",
3035
- "privacy": "private",
3036
- "return": {
3037
- "type": {
3038
- "text": ""
3039
- }
3040
- },
3041
- "description": "Method to generate the badge text and counter template."
3042
- },
3043
- {
3044
- "kind": "method",
3045
- "name": "setRoleByAriaLabel",
3046
- "privacy": "private",
3047
- "return": {
3048
- "type": {
3049
- "text": "void"
3050
- }
3051
- },
3052
- "description": "Method to set the role based on the aria-label provided.\nIf the aria-label is provided, the role of the element will be 'img'.\nOtherwise, the role will be null."
3053
- },
3054
- {
3055
- "kind": "method",
3056
- "name": "getBadgeContentBasedOnType",
3057
- "privacy": "private",
3058
- "return": {
3059
- "type": {
3060
- "text": ""
3061
- }
3062
- },
3063
- "description": "Generates the badge content based on the badge type.\nUtilizes various helper methods to create the appropriate badge template based on the\ncurrent badge type. Supports 'dot', 'icon', 'counter', 'success', 'warning', and 'error'\ntypes, returning the corresponding template result for each type."
3064
- },
3065
- {
3066
- "kind": "field",
3067
- "name": "iconName",
3068
- "type": {
3069
- "text": "IconNames | undefined"
3070
- },
3071
- "description": "Name of the icon (= filename).\n\nIf no `icon-name` is provided, no icon will be rendered.",
3072
- "attribute": "icon-name",
3073
- "inheritedFrom": {
3074
- "name": "IconNameMixin",
3075
- "module": "utils/mixins/IconNameMixin.js"
3076
- }
3077
- }
3078
- ],
3079
- "attributes": [
3113
+ },
3080
3114
  {
3081
- "name": "type",
3115
+ "name": "initials",
3082
3116
  "type": {
3083
- "text": "BadgeType | undefined"
3117
+ "text": "string | undefined"
3084
3118
  },
3085
- "description": "Type of the badge\nCan be `dot` (notification) , `icon`, `counter`, `success`, `warning` or `error`.",
3086
- "fieldName": "type"
3119
+ "description": "The initials to be displayed for the avatar.",
3120
+ "fieldName": "initials",
3121
+ "inheritedFrom": {
3122
+ "name": "AvatarComponentMixin",
3123
+ "module": "src/utils/mixins/AvatarComponentMixin.ts"
3124
+ }
3087
3125
  },
3088
3126
  {
3089
- "name": "variant",
3127
+ "name": "presence",
3090
3128
  "type": {
3091
- "text": "IconVariant"
3129
+ "text": "PresenceType | undefined"
3092
3130
  },
3093
- "description": "Type of the variant can be `primary` or `secondary`.\nIt defines the background and foreground color of the icon.",
3094
- "default": "primary",
3095
- "fieldName": "variant"
3131
+ "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`",
3132
+ "fieldName": "presence",
3133
+ "inheritedFrom": {
3134
+ "name": "AvatarComponentMixin",
3135
+ "module": "src/utils/mixins/AvatarComponentMixin.ts"
3136
+ }
3096
3137
  },
3097
3138
  {
3098
- "name": "counter",
3139
+ "name": "size",
3099
3140
  "type": {
3100
- "text": "number | undefined"
3141
+ "text": "ButtonSize"
3101
3142
  },
3102
- "description": "Counter is the number which can be provided in the badge.",
3103
- "fieldName": "counter"
3143
+ "description": "Acceptable values include (size in px unit):\n- 24\n- 32\n- 48\n- 64\n- 72\n- 88\n- 124",
3144
+ "default": "32",
3145
+ "fieldName": "size",
3146
+ "inheritedFrom": {
3147
+ "name": "Buttonsimple",
3148
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
3149
+ }
3104
3150
  },
3105
3151
  {
3106
- "name": "max-counter",
3152
+ "name": "counter",
3107
3153
  "type": {
3108
- "text": "number"
3154
+ "text": "number | undefined"
3109
3155
  },
3110
- "description": "The maximum number can be set up to 999, anything above that will be rendered as _999+_.\nThe max counter can be `9`, `99` or `999`.",
3111
- "default": "99",
3112
- "fieldName": "maxCounter"
3156
+ "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`.",
3157
+ "fieldName": "counter",
3158
+ "inheritedFrom": {
3159
+ "name": "AvatarComponentMixin",
3160
+ "module": "src/utils/mixins/AvatarComponentMixin.ts"
3161
+ }
3113
3162
  },
3114
3163
  {
3115
- "name": "overlay",
3164
+ "name": "is-typing",
3116
3165
  "type": {
3117
3166
  "text": "boolean"
3118
3167
  },
3119
3168
  "default": "false",
3120
- "description": "Overlay is to add a thin outline to the badge.\nThis will help distinguish between the badge and the button,\nwhere the badge will be layered on top of a button.",
3121
- "fieldName": "overlay"
3122
- },
3123
- {
3124
- "name": "aria-label",
3125
- "type": {
3126
- "text": "string | null"
3127
- },
3128
- "default": "null",
3129
- "description": "Aria-label attribute to be set for accessibility",
3130
- "fieldName": "ariaLabel"
3169
+ "description": "Represents the typing indicator when the user is typing.",
3170
+ "fieldName": "isTyping",
3171
+ "inheritedFrom": {
3172
+ "name": "AvatarComponentMixin",
3173
+ "module": "src/utils/mixins/AvatarComponentMixin.ts"
3174
+ }
3131
3175
  },
3132
3176
  {
3133
3177
  "name": "icon-name",
@@ -3140,196 +3184,152 @@
3140
3184
  "name": "IconNameMixin",
3141
3185
  "module": "src/utils/mixins/IconNameMixin.ts"
3142
3186
  }
3143
- }
3144
- ],
3145
- "mixins": [
3146
- {
3147
- "name": "IconNameMixin",
3148
- "module": "/src/utils/mixins/IconNameMixin"
3149
- }
3150
- ],
3151
- "superclass": {
3152
- "name": "Component",
3153
- "module": "/src/models"
3154
- },
3155
- "tagName": "mdc-badge",
3156
- "jsDoc": "/**\n * The `mdc-badge` component is a versatile UI element used to\n * display dot, icons, counters, success, warning and error type badge.\n *\n * Supported 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`,\n * it 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 *\n * For `icon`, `success`, `warning` and `error` types, the `mdc-icon` component is used to render the icon.\n *\n * For the `counter` type, the `mdc-text` component is used to render the counter value.\n *\n * @dependency mdc-icon\n * @dependency mdc-text\n *\n * @tagname mdc-badge\n *\n * @cssproperty --mdc-badge-primary-foreground-color - The foreground color of the primary badge.\n * @cssproperty --mdc-badge-primary-background-color - The background color of the primary badge.\n * @cssproperty --mdc-badge-secondary-foreground-color - The foreground color of the secondary badge.\n * @cssproperty --mdc-badge-secondary-background-color - The background color of the secondary badge.\n * @cssproperty --mdc-badge-success-foreground-color - The foreground color of the success badge.\n * @cssproperty --mdc-badge-success-background-color - The background color of the success badge.\n * @cssproperty --mdc-badge-warning-foreground-color - The foreground color of the warning badge.\n * @cssproperty --mdc-badge-warning-background-color - The background color of the warning badge.\n * @cssproperty --mdc-badge-error-foreground-color - The foreground color of the error badge.\n * @cssproperty --mdc-badge-error-background-color - The background color of the error badge.\n * @cssproperty --mdc-badge-overlay-background-color - The background color of the badge overlay.\n */",
3157
- "customElement": true
3158
- }
3159
- ],
3160
- "exports": [
3161
- {
3162
- "kind": "js",
3163
- "name": "default",
3164
- "declaration": {
3165
- "name": "Badge",
3166
- "module": "components/badge/badge.component.js"
3167
- }
3168
- }
3169
- ]
3170
- },
3171
- {
3172
- "kind": "javascript-module",
3173
- "path": "components/brandvisual/brandvisual.component.js",
3174
- "declarations": [
3175
- {
3176
- "kind": "class",
3177
- "description": "The `mdc-brandvisual` component is responsible for rendering logos dynamically & ensures they are\ndisplayed correctly within applications.\n\nFeatures:\n- Dynamically loads brandvisuals based on the `name` attribute.\n- Emits a `load` event when the brandvisual is successfully fetched.\n- Emits an `error` event when the brandvisual import fails.\n- Supports accessibility best practices.\n- Used for brand representation within the design system.",
3178
- "name": "Brandvisual",
3179
- "members": [
3187
+ },
3180
3188
  {
3181
- "kind": "field",
3182
- "name": "brandVisualData",
3189
+ "name": "auto-focus-on-mount",
3183
3190
  "type": {
3184
- "text": "Element | TemplateResult | undefined"
3191
+ "text": "boolean"
3185
3192
  },
3186
- "privacy": "private"
3193
+ "default": "false",
3194
+ "description": "This property indicates whether the element should receive focus automatically when it is mounted.\n\nIt will not focus if the element is re-attached to the DOM after being removed.",
3195
+ "fieldName": "autoFocusOnMount",
3196
+ "inheritedFrom": {
3197
+ "name": "AutoFocusOnMountMixin",
3198
+ "module": "src/utils/mixins/AutoFocusOnMountMixin.ts"
3199
+ }
3187
3200
  },
3188
3201
  {
3189
- "kind": "field",
3190
- "name": "name",
3202
+ "name": "tabIndex",
3191
3203
  "type": {
3192
- "text": "BrandVisualNames | undefined"
3204
+ "text": "number"
3193
3205
  },
3194
- "description": "Name of the brandVisual (= filename)",
3195
- "attribute": "name",
3196
- "reflects": true
3206
+ "default": "0",
3207
+ "description": "This property specifies the tab order of the element.",
3208
+ "fieldName": "tabIndex",
3209
+ "inheritedFrom": {
3210
+ "name": "TabIndexMixin",
3211
+ "module": "src/utils/mixins/TabIndexMixin.ts"
3212
+ }
3197
3213
  },
3198
3214
  {
3199
- "kind": "field",
3200
- "name": "altText",
3215
+ "name": "disabled",
3201
3216
  "type": {
3202
- "text": "string | undefined"
3217
+ "text": "boolean | undefined"
3203
3218
  },
3204
- "description": "Alt text for the brandvisual image for accessibility.\nThis will only be set if the brandvisual is an image (png).",
3205
- "attribute": "altText",
3206
- "reflects": true
3219
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
3220
+ "default": "undefined",
3221
+ "fieldName": "disabled",
3222
+ "inheritedFrom": {
3223
+ "name": "DisabledMixin",
3224
+ "module": "src/utils/mixins/DisabledMixin.ts"
3225
+ }
3207
3226
  },
3208
3227
  {
3209
- "kind": "method",
3210
- "name": "getBrandVisualData",
3211
- "privacy": "private"
3228
+ "name": "active",
3229
+ "type": {
3230
+ "text": "boolean | undefined"
3231
+ },
3232
+ "description": "The button's active state indicates whether it is currently toggled on (active) or off (inactive).\nWhen the active state is true, the button is considered to be in an active state, meaning it is toggled on.\nConversely, when the active state is false, the button is in an inactive state, indicating it is toggled off.\n\nThis attribute is used to set the provided `ariaStateKey` to true or false.",
3233
+ "default": "undefined",
3234
+ "fieldName": "active",
3235
+ "inheritedFrom": {
3236
+ "name": "Buttonsimple",
3237
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
3238
+ }
3212
3239
  },
3213
3240
  {
3214
- "kind": "method",
3215
- "name": "injectTemplateAttributes",
3216
- "privacy": "private",
3217
- "return": {
3218
- "type": {
3219
- "text": "Element | TemplateResult"
3220
- }
3241
+ "name": "soft-disabled",
3242
+ "type": {
3243
+ "text": "boolean | undefined"
3221
3244
  },
3222
- "parameters": [
3223
- {
3224
- "name": "litTemplate",
3225
- "type": {
3226
- "text": "TemplateResult"
3227
- }
3228
- },
3229
- {
3230
- "name": "tag",
3231
- "type": {
3232
- "text": "string"
3233
- }
3234
- },
3235
- {
3236
- "name": "props",
3237
- "type": {
3238
- "text": "any"
3239
- }
3240
- }
3241
- ]
3245
+ "description": "Indicates whether the button is soft disabled.\nWhen set to `true`, the button appears visually disabled but still allows\nfocus, click, and keyboard actions to be passed through.\n\n**Important:** When using soft disabled, consumers must ensure that\nthe button behaves like a disabled button, allowing only focus and\npreventing any interactions (clicks or keyboard actions) from triggering unintended actions.",
3246
+ "default": "undefined",
3247
+ "fieldName": "softDisabled",
3248
+ "inheritedFrom": {
3249
+ "name": "Buttonsimple",
3250
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
3251
+ }
3242
3252
  },
3243
3253
  {
3244
- "kind": "method",
3245
- "name": "injectHtmlAttributes",
3246
- "privacy": "private",
3247
- "return": {
3248
- "type": {
3249
- "text": "Element"
3250
- }
3254
+ "name": "role",
3255
+ "type": {
3256
+ "text": "RoleType"
3251
3257
  },
3252
- "parameters": [
3253
- {
3254
- "name": "html",
3255
- "type": {
3256
- "text": "Element"
3257
- }
3258
- },
3259
- {
3260
- "name": "props",
3261
- "type": {
3262
- "text": "imageProps"
3263
- }
3264
- }
3265
- ]
3258
+ "description": "This property defines the ARIA role for the element. By default, it is set to 'button'.\nConsumers should override this role when:\n- The element is being used in a context where a different role is more appropriate.\n- Custom behaviors are implemented that require a specific ARIA role for accessibility purposes.",
3259
+ "default": "button",
3260
+ "fieldName": "role",
3261
+ "inheritedFrom": {
3262
+ "name": "Buttonsimple",
3263
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
3264
+ }
3266
3265
  },
3267
3266
  {
3268
- "kind": "method",
3269
- "name": "handleBrandVisualLoadedSuccess",
3270
- "privacy": "private",
3271
- "parameters": [
3272
- {
3273
- "name": "brandVisualHtml",
3274
- "type": {
3275
- "text": "TemplateResult"
3276
- },
3277
- "description": "The brandvisual html element which has been fetched from the brandvisual provider."
3278
- }
3279
- ],
3280
- "description": "Sets the brandVisualData state to the fetched brandvisual.\nDispatches a 'load' event on the component once the brandvisual has been successfully loaded."
3267
+ "name": "ariaStateKey",
3268
+ "type": {
3269
+ "text": "string | undefined"
3270
+ },
3271
+ "description": "This property defines the ARIA state key, which will be toggled when the\nButton is set to `active`.\nThe default value is 'aria-pressed', which is commonly used for toggle buttons.\n\nConsumers can override this property to use a different ARIA state key if needed.\nIn case multiple aria attributes should be toggled, they can be passed in as\na comma separated string.\nFor example: `aria-pressed,aria-expanded`",
3272
+ "default": "'aria-pressed' (when)",
3273
+ "fieldName": "ariaStateKey",
3274
+ "inheritedFrom": {
3275
+ "name": "Buttonsimple",
3276
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
3277
+ }
3281
3278
  },
3282
3279
  {
3283
- "kind": "method",
3284
- "name": "handleBrandVisualLoadedFailure",
3285
- "privacy": "private",
3286
- "parameters": [
3287
- {
3288
- "name": "error",
3289
- "type": {
3290
- "text": "unknown"
3291
- }
3292
- }
3293
- ],
3294
- "description": "Dispatches an 'error' event on the component when the brandvisual import has failed.\nThis event bubbles and is cancelable.\nThe error detail is set to the error object."
3295
- }
3296
- ],
3297
- "events": [
3298
- {
3299
- "description": "(React: onLoad) This event is dispatched when the brandvisual has been successfully loaded.",
3300
- "name": "load",
3301
- "reactName": "onLoad"
3280
+ "name": "type",
3281
+ "type": {
3282
+ "text": "ButtonType"
3283
+ },
3284
+ "description": "This property defines the type attribute for the button element.\nThe type attribute specifies the behavior of the button when it is clicked.\n- **submit**: The button submits the form data to the server.\n- **reset**: The button resets the form data to its initial state.\n- **button**: The button does nothing when clicked.",
3285
+ "default": "button",
3286
+ "fieldName": "type",
3287
+ "inheritedFrom": {
3288
+ "name": "Buttonsimple",
3289
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
3290
+ }
3302
3291
  },
3303
- {
3304
- "description": "(React: onError) This event is dispatched when the brandvisual fetching has failed.",
3305
- "name": "error",
3306
- "reactName": "onError"
3307
- }
3308
- ],
3309
- "attributes": [
3310
3292
  {
3311
3293
  "name": "name",
3312
3294
  "type": {
3313
- "text": "BrandVisualNames | undefined"
3295
+ "text": "string | undefined"
3314
3296
  },
3315
- "description": "Name of the brandVisual (= filename)",
3316
- "fieldName": "name"
3297
+ "description": "The name of the button, submitted as a pair with the button's value as part of the form data,\nwhen that button is used to submit the form.",
3298
+ "fieldName": "name",
3299
+ "inheritedFrom": {
3300
+ "name": "Buttonsimple",
3301
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
3302
+ }
3317
3303
  },
3318
3304
  {
3319
- "name": "altText",
3305
+ "name": "value",
3320
3306
  "type": {
3321
3307
  "text": "string | undefined"
3322
3308
  },
3323
- "description": "Alt text for the brandvisual image for accessibility.\nThis will only be set if the brandvisual is an image (png).",
3324
- "fieldName": "altText"
3309
+ "description": "Defines the value associated with the button's name when it's submitted with the form data.\nThis value is passed to the server in params when the form is submitted using this button.",
3310
+ "fieldName": "value",
3311
+ "inheritedFrom": {
3312
+ "name": "Buttonsimple",
3313
+ "module": "src/components/buttonsimple/buttonsimple.component.ts"
3314
+ }
3315
+ }
3316
+ ],
3317
+ "mixins": [
3318
+ {
3319
+ "name": "AvatarComponentMixin",
3320
+ "module": "/src/utils/mixins/AvatarComponentMixin"
3321
+ },
3322
+ {
3323
+ "name": "IconNameMixin",
3324
+ "module": "/src/utils/mixins/IconNameMixin"
3325
3325
  }
3326
3326
  ],
3327
3327
  "superclass": {
3328
- "name": "Component",
3329
- "module": "/src/models"
3328
+ "name": "Buttonsimple",
3329
+ "module": "/src/components/buttonsimple/buttonsimple.component"
3330
3330
  },
3331
- "tagName": "mdc-brandvisual",
3332
- "jsDoc": "/**\n * The `mdc-brandvisual` component is responsible for rendering logos dynamically & ensures they are\n * displayed correctly within applications.\n *\n * Features:\n * - Dynamically loads brandvisuals based on the `name` attribute.\n * - Emits a `load` event when the brandvisual is successfully fetched.\n * - Emits an `error` event when the brandvisual import fails.\n * - Supports accessibility best practices.\n * - Used for brand representation within the design system.\n *\n * @tagname mdc-brandvisual\n *\n * @event load - (React: onLoad) This event is dispatched when the brandvisual has been successfully loaded.\n * @event error - (React: onError) This event is dispatched when the brandvisual fetching has failed.\n *\n */",
3331
+ "tagName": "mdc-avatarbutton",
3332
+ "jsDoc": "/**\n * The `mdc-avatarbutton` component is an interactable version of the `mdc-avatar` component.\n *\n * This component is made by extending `buttonsimple` class.\n * The button component acts as a wrapper for the avatar component.\n *\n * To override styles of the avatar inside, use the specified css parts.\n *\n * @dependency mdc-avatar\n *\n * @event click - (React: onClick) This event is dispatched when the avatarbutton is clicked.\n * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the avatarbutton.\n * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the avatarbutton.\n * @event focus - (React: onFocus) This event is dispatched when the avatarbutton receives focus.\n *\n * @tagname mdc-avatarbutton\n *\n * @cssproperty --mdc-avatarbutton-overlay-background-color-rest - Background color of the overlay in rest state\n * @cssproperty --mdc-avatarbutton-overlay-background-color-hover - Background color of the overlay in hover state\n * @cssproperty --mdc-avatarbutton-overlay-background-color-active - Background color of the overlay in active state\n *\n * @csspart overlay - The overlay part of the avatar button.\n * @csspart content - The main content of the avatar.\n * @csspart photo - The photo part of the avatar.\n * @csspart presence - The presence indicator part of the avatar.\n * @csspart loading-wrapper - The wrapper for the loading indicator of the avatar.\n * @csspart loader - The loading indicator part of the avatar.\n */",
3333
3333
  "customElement": true
3334
3334
  }
3335
3335
  ],
@@ -3338,8 +3338,8 @@
3338
3338
  "kind": "js",
3339
3339
  "name": "default",
3340
3340
  "declaration": {
3341
- "name": "Brandvisual",
3342
- "module": "components/brandvisual/brandvisual.component.js"
3341
+ "name": "AvatarButton",
3342
+ "module": "components/avatarbutton/avatarbutton.component.js"
3343
3343
  }
3344
3344
  }
3345
3345
  ]
@@ -4324,6 +4324,28 @@
4324
4324
  "kind": "class",
4325
4325
  "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`.",
4326
4326
  "name": "ButtonLink",
4327
+ "cssParts": [
4328
+ {
4329
+ "description": "The anchor element that wraps the buttonlink content.",
4330
+ "name": "anchor",
4331
+ "inheritedFrom": {
4332
+ "name": "Linksimple",
4333
+ "module": "src/components/linksimple/linksimple.component.ts"
4334
+ }
4335
+ },
4336
+ {
4337
+ "description": "The prefix icon element.",
4338
+ "name": "prefix-icon"
4339
+ },
4340
+ {
4341
+ "description": "The slot containing the buttonlink text.",
4342
+ "name": "button-text"
4343
+ },
4344
+ {
4345
+ "description": "The postfix icon element.",
4346
+ "name": "postfix-icon"
4347
+ }
4348
+ ],
4327
4349
  "members": [
4328
4350
  {
4329
4351
  "kind": "field",
@@ -4501,32 +4523,32 @@
4501
4523
  },
4502
4524
  {
4503
4525
  "kind": "field",
4504
- "name": "disabled",
4526
+ "name": "dataAriaLabel",
4505
4527
  "type": {
4506
- "text": "boolean | undefined"
4528
+ "text": "string | null"
4507
4529
  },
4508
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
4509
- "default": "undefined",
4510
- "attribute": "disabled",
4530
+ "default": "null",
4531
+ "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
4532
+ "attribute": "data-aria-label",
4511
4533
  "reflects": true,
4512
4534
  "inheritedFrom": {
4513
- "name": "DisabledMixin",
4514
- "module": "utils/mixins/DisabledMixin.js"
4535
+ "name": "DataAriaLabelMixin",
4536
+ "module": "utils/mixins/DataAriaLabelMixin.js"
4515
4537
  }
4516
4538
  },
4517
4539
  {
4518
4540
  "kind": "field",
4519
- "name": "tabIndex",
4541
+ "name": "disabled",
4520
4542
  "type": {
4521
- "text": "number"
4543
+ "text": "boolean | undefined"
4522
4544
  },
4523
- "default": "0",
4524
- "description": "This property specifies the tab order of the element.",
4525
- "attribute": "tabIndex",
4545
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
4546
+ "default": "undefined",
4547
+ "attribute": "disabled",
4526
4548
  "reflects": true,
4527
4549
  "inheritedFrom": {
4528
- "name": "TabIndexMixin",
4529
- "module": "utils/mixins/TabIndexMixin.js"
4550
+ "name": "DisabledMixin",
4551
+ "module": "utils/mixins/DisabledMixin.js"
4530
4552
  }
4531
4553
  },
4532
4554
  {
@@ -4603,10 +4625,80 @@
4603
4625
  "module": "components/linksimple/linksimple.component.js"
4604
4626
  }
4605
4627
  },
4628
+ {
4629
+ "kind": "field",
4630
+ "name": "download",
4631
+ "type": {
4632
+ "text": "string | undefined"
4633
+ },
4634
+ "description": "Optional download attribute to instruct browsers to download the linked resource.",
4635
+ "attribute": "download",
4636
+ "reflects": true,
4637
+ "inheritedFrom": {
4638
+ "name": "Linksimple",
4639
+ "module": "components/linksimple/linksimple.component.js"
4640
+ }
4641
+ },
4642
+ {
4643
+ "kind": "field",
4644
+ "name": "ping",
4645
+ "type": {
4646
+ "text": "string | undefined"
4647
+ },
4648
+ "description": "Optional ping attribute that defines a space-separated list of URLs to be notified if the link is followed.",
4649
+ "attribute": "ping",
4650
+ "reflects": true,
4651
+ "inheritedFrom": {
4652
+ "name": "Linksimple",
4653
+ "module": "components/linksimple/linksimple.component.js"
4654
+ }
4655
+ },
4656
+ {
4657
+ "kind": "field",
4658
+ "name": "hreflang",
4659
+ "type": {
4660
+ "text": "string | undefined"
4661
+ },
4662
+ "description": "Optional hreflang attribute specifying the language of the linked resource.",
4663
+ "attribute": "hreflang",
4664
+ "reflects": true,
4665
+ "inheritedFrom": {
4666
+ "name": "Linksimple",
4667
+ "module": "components/linksimple/linksimple.component.js"
4668
+ }
4669
+ },
4670
+ {
4671
+ "kind": "field",
4672
+ "name": "type",
4673
+ "type": {
4674
+ "text": "string | undefined"
4675
+ },
4676
+ "description": "Optional type attribute indicating the MIME type of the linked resource.",
4677
+ "attribute": "type",
4678
+ "reflects": true,
4679
+ "inheritedFrom": {
4680
+ "name": "Linksimple",
4681
+ "module": "components/linksimple/linksimple.component.js"
4682
+ }
4683
+ },
4684
+ {
4685
+ "kind": "field",
4686
+ "name": "referrerpolicy",
4687
+ "type": {
4688
+ "text": "string | undefined"
4689
+ },
4690
+ "description": "Optional referrerpolicy attribute specifying how much referrer information to send.",
4691
+ "attribute": "referrerpolicy",
4692
+ "reflects": true,
4693
+ "inheritedFrom": {
4694
+ "name": "Linksimple",
4695
+ "module": "components/linksimple/linksimple.component.js"
4696
+ }
4697
+ },
4606
4698
  {
4607
4699
  "kind": "method",
4608
4700
  "name": "handleNavigation",
4609
- "privacy": "private",
4701
+ "privacy": "protected",
4610
4702
  "return": {
4611
4703
  "type": {
4612
4704
  "text": "void"
@@ -4752,6 +4844,19 @@
4752
4844
  "module": "src/utils/mixins/ButtonComponentMixin.ts"
4753
4845
  }
4754
4846
  },
4847
+ {
4848
+ "name": "data-aria-label",
4849
+ "type": {
4850
+ "text": "string | null"
4851
+ },
4852
+ "default": "null",
4853
+ "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
4854
+ "fieldName": "dataAriaLabel",
4855
+ "inheritedFrom": {
4856
+ "name": "DataAriaLabelMixin",
4857
+ "module": "src/utils/mixins/DataAriaLabelMixin.ts"
4858
+ }
4859
+ },
4755
4860
  {
4756
4861
  "name": "disabled",
4757
4862
  "type": {
@@ -4765,19 +4870,6 @@
4765
4870
  "module": "src/utils/mixins/DisabledMixin.ts"
4766
4871
  }
4767
4872
  },
4768
- {
4769
- "name": "tabIndex",
4770
- "type": {
4771
- "text": "number"
4772
- },
4773
- "default": "0",
4774
- "description": "This property specifies the tab order of the element.",
4775
- "fieldName": "tabIndex",
4776
- "inheritedFrom": {
4777
- "name": "TabIndexMixin",
4778
- "module": "src/utils/mixins/TabIndexMixin.ts"
4779
- }
4780
- },
4781
4873
  {
4782
4874
  "name": "inline",
4783
4875
  "type": {
@@ -4841,6 +4933,66 @@
4841
4933
  "name": "Linksimple",
4842
4934
  "module": "src/components/linksimple/linksimple.component.ts"
4843
4935
  }
4936
+ },
4937
+ {
4938
+ "name": "download",
4939
+ "type": {
4940
+ "text": "string | undefined"
4941
+ },
4942
+ "description": "Optional download attribute to instruct browsers to download the linked resource.",
4943
+ "fieldName": "download",
4944
+ "inheritedFrom": {
4945
+ "name": "Linksimple",
4946
+ "module": "src/components/linksimple/linksimple.component.ts"
4947
+ }
4948
+ },
4949
+ {
4950
+ "name": "ping",
4951
+ "type": {
4952
+ "text": "string | undefined"
4953
+ },
4954
+ "description": "Optional ping attribute that defines a space-separated list of URLs to be notified if the link is followed.",
4955
+ "fieldName": "ping",
4956
+ "inheritedFrom": {
4957
+ "name": "Linksimple",
4958
+ "module": "src/components/linksimple/linksimple.component.ts"
4959
+ }
4960
+ },
4961
+ {
4962
+ "name": "hreflang",
4963
+ "type": {
4964
+ "text": "string | undefined"
4965
+ },
4966
+ "description": "Optional hreflang attribute specifying the language of the linked resource.",
4967
+ "fieldName": "hreflang",
4968
+ "inheritedFrom": {
4969
+ "name": "Linksimple",
4970
+ "module": "src/components/linksimple/linksimple.component.ts"
4971
+ }
4972
+ },
4973
+ {
4974
+ "name": "type",
4975
+ "type": {
4976
+ "text": "string | undefined"
4977
+ },
4978
+ "description": "Optional type attribute indicating the MIME type of the linked resource.",
4979
+ "fieldName": "type",
4980
+ "inheritedFrom": {
4981
+ "name": "Linksimple",
4982
+ "module": "src/components/linksimple/linksimple.component.ts"
4983
+ }
4984
+ },
4985
+ {
4986
+ "name": "referrerpolicy",
4987
+ "type": {
4988
+ "text": "string | undefined"
4989
+ },
4990
+ "description": "Optional referrerpolicy attribute specifying how much referrer information to send.",
4991
+ "fieldName": "referrerpolicy",
4992
+ "inheritedFrom": {
4993
+ "name": "Linksimple",
4994
+ "module": "src/components/linksimple/linksimple.component.ts"
4995
+ }
4844
4996
  }
4845
4997
  ],
4846
4998
  "mixins": [
@@ -4854,7 +5006,7 @@
4854
5006
  "module": "/src/components/linksimple/linksimple.component"
4855
5007
  },
4856
5008
  "tagName": "mdc-buttonlink",
4857
- "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 */",
5009
+ "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 */",
4858
5010
  "customElement": true,
4859
5011
  "cssProperties": [
4860
5012
  {
@@ -12791,6 +12943,367 @@
12791
12943
  }
12792
12944
  ]
12793
12945
  },
12946
+ {
12947
+ "kind": "javascript-module",
12948
+ "path": "components/formfieldgroup/formfieldgroup.component.js",
12949
+ "declarations": [
12950
+ {
12951
+ "kind": "class",
12952
+ "description": "`mdc-formfieldgroup` component, groups the form field components together.\nAll passed in children will have a gap of 12px (0.75rem) each applied.\n\nThis component is specifically for creating a `checkbox` group and a `toggle` group component.\nFor the radiogroup use the RadioGroup component instead.\n\nThe header text and description text are displayed above the items with accessible labels.<br/>\nThe consumer has to provide atleast the header-text or the aria-label,\nlike one of them <b>has</b> to be passed in always, otherwise its not accessible.\n\nThe role will be set to `group`.\nThe aria-label will be set with the data-aria-label property.\nThe aria-labelledby will be set with the header id which contains the header text information.\nThe aria-describedby will be set with the description id which contains the description text information.",
12953
+ "name": "FormfieldGroup",
12954
+ "slots": [
12955
+ {
12956
+ "description": "This is a default slot for checkbox or toggle components.",
12957
+ "name": "default"
12958
+ }
12959
+ ],
12960
+ "members": [
12961
+ {
12962
+ "kind": "field",
12963
+ "name": "dataAriaLabel",
12964
+ "type": {
12965
+ "text": "string | null"
12966
+ },
12967
+ "default": "null",
12968
+ "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
12969
+ "attribute": "data-aria-label",
12970
+ "reflects": true,
12971
+ "inheritedFrom": {
12972
+ "name": "DataAriaLabelMixin",
12973
+ "module": "utils/mixins/DataAriaLabelMixin.js"
12974
+ }
12975
+ },
12976
+ {
12977
+ "kind": "field",
12978
+ "name": "disabled",
12979
+ "type": {
12980
+ "text": "boolean | undefined"
12981
+ },
12982
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
12983
+ "default": "undefined",
12984
+ "attribute": "disabled",
12985
+ "reflects": true,
12986
+ "inheritedFrom": {
12987
+ "name": "DisabledMixin",
12988
+ "module": "utils/mixins/DisabledMixin.js"
12989
+ }
12990
+ },
12991
+ {
12992
+ "kind": "field",
12993
+ "name": "label",
12994
+ "type": {
12995
+ "text": "string | undefined"
12996
+ },
12997
+ "description": "The label of the input field. It is linked to the input field using the `for` attribute.",
12998
+ "attribute": "label",
12999
+ "reflects": true,
13000
+ "inheritedFrom": {
13001
+ "name": "FormfieldWrapper",
13002
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13003
+ }
13004
+ },
13005
+ {
13006
+ "kind": "field",
13007
+ "name": "required",
13008
+ "type": {
13009
+ "text": "boolean"
13010
+ },
13011
+ "default": "false",
13012
+ "description": "The required attribute to indicate that the input field is required.\nIt is used to append a required indicator (*) to the label.",
13013
+ "attribute": "required",
13014
+ "reflects": true,
13015
+ "inheritedFrom": {
13016
+ "name": "FormfieldWrapper",
13017
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13018
+ }
13019
+ },
13020
+ {
13021
+ "kind": "field",
13022
+ "name": "helpTextType",
13023
+ "type": {
13024
+ "text": "ValidationType"
13025
+ },
13026
+ "description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
13027
+ "attribute": "help-text-type",
13028
+ "reflects": true,
13029
+ "inheritedFrom": {
13030
+ "name": "FormfieldWrapper",
13031
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13032
+ }
13033
+ },
13034
+ {
13035
+ "kind": "field",
13036
+ "name": "helpText",
13037
+ "type": {
13038
+ "text": "string | undefined"
13039
+ },
13040
+ "description": "The help text that is displayed below the input field.",
13041
+ "attribute": "help-text",
13042
+ "reflects": true,
13043
+ "inheritedFrom": {
13044
+ "name": "FormfieldWrapper",
13045
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13046
+ }
13047
+ },
13048
+ {
13049
+ "kind": "field",
13050
+ "name": "toggletipText",
13051
+ "type": {
13052
+ "text": "string | undefined"
13053
+ },
13054
+ "description": "The toggletip text that is displayed when the label is hovered.\nIt is used to provide additional information about the label.",
13055
+ "attribute": "toggletip-text",
13056
+ "reflects": true,
13057
+ "inheritedFrom": {
13058
+ "name": "FormfieldWrapper",
13059
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13060
+ }
13061
+ },
13062
+ {
13063
+ "kind": "field",
13064
+ "name": "toggletipPlacement",
13065
+ "type": {
13066
+ "text": "PopoverPlacement"
13067
+ },
13068
+ "description": "The placement of the toggletip that is displayed when the info icon is hovered.",
13069
+ "default": "'top'",
13070
+ "attribute": "toggletip-placement",
13071
+ "reflects": true,
13072
+ "inheritedFrom": {
13073
+ "name": "FormfieldWrapper",
13074
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13075
+ }
13076
+ },
13077
+ {
13078
+ "kind": "field",
13079
+ "name": "infoIconAriaLabel",
13080
+ "type": {
13081
+ "text": "string | undefined"
13082
+ },
13083
+ "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.",
13084
+ "attribute": "info-icon-aria-label",
13085
+ "reflects": true,
13086
+ "inheritedFrom": {
13087
+ "name": "FormfieldWrapper",
13088
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13089
+ }
13090
+ },
13091
+ {
13092
+ "kind": "method",
13093
+ "name": "renderLabelElement",
13094
+ "privacy": "protected",
13095
+ "description": "creates the label element when the label property is set.\nid is used to link the label with the input field.",
13096
+ "return": {
13097
+ "type": {
13098
+ "text": ""
13099
+ }
13100
+ },
13101
+ "inheritedFrom": {
13102
+ "name": "FormfieldWrapper",
13103
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13104
+ }
13105
+ },
13106
+ {
13107
+ "kind": "method",
13108
+ "name": "renderHelpTextIcon",
13109
+ "privacy": "protected",
13110
+ "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.",
13111
+ "return": {
13112
+ "type": {
13113
+ "text": ""
13114
+ }
13115
+ },
13116
+ "inheritedFrom": {
13117
+ "name": "FormfieldWrapper",
13118
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13119
+ }
13120
+ },
13121
+ {
13122
+ "kind": "method",
13123
+ "name": "renderHelpText",
13124
+ "privacy": "protected",
13125
+ "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.",
13126
+ "return": {
13127
+ "type": {
13128
+ "text": ""
13129
+ }
13130
+ },
13131
+ "inheritedFrom": {
13132
+ "name": "FormfieldWrapper",
13133
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13134
+ }
13135
+ },
13136
+ {
13137
+ "kind": "method",
13138
+ "name": "renderLabel",
13139
+ "privacy": "protected",
13140
+ "description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
13141
+ "return": {
13142
+ "type": {
13143
+ "text": ""
13144
+ }
13145
+ },
13146
+ "inheritedFrom": {
13147
+ "name": "FormfieldWrapper",
13148
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13149
+ }
13150
+ },
13151
+ {
13152
+ "kind": "method",
13153
+ "name": "renderHelperText",
13154
+ "privacy": "protected",
13155
+ "description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
13156
+ "return": {
13157
+ "type": {
13158
+ "text": ""
13159
+ }
13160
+ },
13161
+ "inheritedFrom": {
13162
+ "name": "FormfieldWrapper",
13163
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13164
+ }
13165
+ }
13166
+ ],
13167
+ "mixins": [
13168
+ {
13169
+ "name": "DataAriaLabelMixin",
13170
+ "module": "/src/utils/mixins/DataAriaLabelMixin"
13171
+ }
13172
+ ],
13173
+ "superclass": {
13174
+ "name": "FormfieldWrapper",
13175
+ "module": "/src/components/formfieldwrapper/formfieldwrapper.component"
13176
+ },
13177
+ "tagName": "mdc-formfieldgroup",
13178
+ "jsDoc": "/**\n * `mdc-formfieldgroup` component, groups the form field components together.\n * All passed in children will have a gap of 12px (0.75rem) each applied.\n *\n * This component is specifically for creating a `checkbox` group and a `toggle` group component.\n * For the radiogroup use the RadioGroup component instead.\n *\n * The header text and description text are displayed above the items with accessible labels.<br/>\n * The consumer has to provide atleast the header-text or the aria-label,\n * like one of them <b>has</b> to be passed in always, otherwise its not accessible.\n *\n * The role will be set to `group`.\n * The aria-label will be set with the data-aria-label property.\n * The aria-labelledby will be set with the header id which contains the header text information.\n * The aria-describedby will be set with the description id which contains the description text information.\n *\n * @tagname mdc-formfieldgroup\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @slot default - This is a default slot for checkbox or toggle components.\n */",
13179
+ "customElement": true,
13180
+ "attributes": [
13181
+ {
13182
+ "name": "data-aria-label",
13183
+ "type": {
13184
+ "text": "string | null"
13185
+ },
13186
+ "default": "null",
13187
+ "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
13188
+ "fieldName": "dataAriaLabel",
13189
+ "inheritedFrom": {
13190
+ "name": "DataAriaLabelMixin",
13191
+ "module": "src/utils/mixins/DataAriaLabelMixin.ts"
13192
+ }
13193
+ },
13194
+ {
13195
+ "name": "disabled",
13196
+ "type": {
13197
+ "text": "boolean | undefined"
13198
+ },
13199
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
13200
+ "default": "undefined",
13201
+ "fieldName": "disabled",
13202
+ "inheritedFrom": {
13203
+ "name": "DisabledMixin",
13204
+ "module": "src/utils/mixins/DisabledMixin.ts"
13205
+ }
13206
+ },
13207
+ {
13208
+ "name": "label",
13209
+ "type": {
13210
+ "text": "string | undefined"
13211
+ },
13212
+ "description": "The label of the input field. It is linked to the input field using the `for` attribute.",
13213
+ "fieldName": "label",
13214
+ "inheritedFrom": {
13215
+ "name": "FormfieldWrapper",
13216
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13217
+ }
13218
+ },
13219
+ {
13220
+ "name": "required",
13221
+ "type": {
13222
+ "text": "boolean"
13223
+ },
13224
+ "default": "false",
13225
+ "description": "The required attribute to indicate that the input field is required.\nIt is used to append a required indicator (*) to the label.",
13226
+ "fieldName": "required",
13227
+ "inheritedFrom": {
13228
+ "name": "FormfieldWrapper",
13229
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13230
+ }
13231
+ },
13232
+ {
13233
+ "name": "help-text-type",
13234
+ "type": {
13235
+ "text": "ValidationType"
13236
+ },
13237
+ "description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
13238
+ "fieldName": "helpTextType",
13239
+ "inheritedFrom": {
13240
+ "name": "FormfieldWrapper",
13241
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13242
+ }
13243
+ },
13244
+ {
13245
+ "name": "help-text",
13246
+ "type": {
13247
+ "text": "string | undefined"
13248
+ },
13249
+ "description": "The help text that is displayed below the input field.",
13250
+ "fieldName": "helpText",
13251
+ "inheritedFrom": {
13252
+ "name": "FormfieldWrapper",
13253
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13254
+ }
13255
+ },
13256
+ {
13257
+ "name": "toggletip-text",
13258
+ "type": {
13259
+ "text": "string | undefined"
13260
+ },
13261
+ "description": "The toggletip text that is displayed when the label is hovered.\nIt is used to provide additional information about the label.",
13262
+ "fieldName": "toggletipText",
13263
+ "inheritedFrom": {
13264
+ "name": "FormfieldWrapper",
13265
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13266
+ }
13267
+ },
13268
+ {
13269
+ "name": "toggletip-placement",
13270
+ "type": {
13271
+ "text": "PopoverPlacement"
13272
+ },
13273
+ "description": "The placement of the toggletip that is displayed when the info icon is hovered.",
13274
+ "default": "'top'",
13275
+ "fieldName": "toggletipPlacement",
13276
+ "inheritedFrom": {
13277
+ "name": "FormfieldWrapper",
13278
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13279
+ }
13280
+ },
13281
+ {
13282
+ "name": "info-icon-aria-label",
13283
+ "type": {
13284
+ "text": "string | undefined"
13285
+ },
13286
+ "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.",
13287
+ "fieldName": "infoIconAriaLabel",
13288
+ "inheritedFrom": {
13289
+ "name": "FormfieldWrapper",
13290
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13291
+ }
13292
+ }
13293
+ ]
13294
+ }
13295
+ ],
13296
+ "exports": [
13297
+ {
13298
+ "kind": "js",
13299
+ "name": "default",
13300
+ "declaration": {
13301
+ "name": "FormfieldGroup",
13302
+ "module": "components/formfieldgroup/formfieldgroup.component.js"
13303
+ }
13304
+ }
13305
+ ]
13306
+ },
12794
13307
  {
12795
13308
  "kind": "javascript-module",
12796
13309
  "path": "components/filterchip/filterchip.component.js",
@@ -13482,367 +13995,6 @@
13482
13995
  }
13483
13996
  ]
13484
13997
  },
13485
- {
13486
- "kind": "javascript-module",
13487
- "path": "components/formfieldgroup/formfieldgroup.component.js",
13488
- "declarations": [
13489
- {
13490
- "kind": "class",
13491
- "description": "`mdc-formfieldgroup` component, groups the form field components together.\nAll passed in children will have a gap of 12px (0.75rem) each applied.\n\nThis component is specifically for creating a `checkbox` group and a `toggle` group component.\nFor the radiogroup use the RadioGroup component instead.\n\nThe header text and description text are displayed above the items with accessible labels.<br/>\nThe consumer has to provide atleast the header-text or the aria-label,\nlike one of them <b>has</b> to be passed in always, otherwise its not accessible.\n\nThe role will be set to `group`.\nThe aria-label will be set with the data-aria-label property.\nThe aria-labelledby will be set with the header id which contains the header text information.\nThe aria-describedby will be set with the description id which contains the description text information.",
13492
- "name": "FormfieldGroup",
13493
- "slots": [
13494
- {
13495
- "description": "This is a default slot for checkbox or toggle components.",
13496
- "name": "default"
13497
- }
13498
- ],
13499
- "members": [
13500
- {
13501
- "kind": "field",
13502
- "name": "dataAriaLabel",
13503
- "type": {
13504
- "text": "string | null"
13505
- },
13506
- "default": "null",
13507
- "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
13508
- "attribute": "data-aria-label",
13509
- "reflects": true,
13510
- "inheritedFrom": {
13511
- "name": "DataAriaLabelMixin",
13512
- "module": "utils/mixins/DataAriaLabelMixin.js"
13513
- }
13514
- },
13515
- {
13516
- "kind": "field",
13517
- "name": "disabled",
13518
- "type": {
13519
- "text": "boolean | undefined"
13520
- },
13521
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
13522
- "default": "undefined",
13523
- "attribute": "disabled",
13524
- "reflects": true,
13525
- "inheritedFrom": {
13526
- "name": "DisabledMixin",
13527
- "module": "utils/mixins/DisabledMixin.js"
13528
- }
13529
- },
13530
- {
13531
- "kind": "field",
13532
- "name": "label",
13533
- "type": {
13534
- "text": "string | undefined"
13535
- },
13536
- "description": "The label of the input field. It is linked to the input field using the `for` attribute.",
13537
- "attribute": "label",
13538
- "reflects": true,
13539
- "inheritedFrom": {
13540
- "name": "FormfieldWrapper",
13541
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13542
- }
13543
- },
13544
- {
13545
- "kind": "field",
13546
- "name": "required",
13547
- "type": {
13548
- "text": "boolean"
13549
- },
13550
- "default": "false",
13551
- "description": "The required attribute to indicate that the input field is required.\nIt is used to append a required indicator (*) to the label.",
13552
- "attribute": "required",
13553
- "reflects": true,
13554
- "inheritedFrom": {
13555
- "name": "FormfieldWrapper",
13556
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13557
- }
13558
- },
13559
- {
13560
- "kind": "field",
13561
- "name": "helpTextType",
13562
- "type": {
13563
- "text": "ValidationType"
13564
- },
13565
- "description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
13566
- "attribute": "help-text-type",
13567
- "reflects": true,
13568
- "inheritedFrom": {
13569
- "name": "FormfieldWrapper",
13570
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13571
- }
13572
- },
13573
- {
13574
- "kind": "field",
13575
- "name": "helpText",
13576
- "type": {
13577
- "text": "string | undefined"
13578
- },
13579
- "description": "The help text that is displayed below the input field.",
13580
- "attribute": "help-text",
13581
- "reflects": true,
13582
- "inheritedFrom": {
13583
- "name": "FormfieldWrapper",
13584
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13585
- }
13586
- },
13587
- {
13588
- "kind": "field",
13589
- "name": "toggletipText",
13590
- "type": {
13591
- "text": "string | undefined"
13592
- },
13593
- "description": "The toggletip text that is displayed when the label is hovered.\nIt is used to provide additional information about the label.",
13594
- "attribute": "toggletip-text",
13595
- "reflects": true,
13596
- "inheritedFrom": {
13597
- "name": "FormfieldWrapper",
13598
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13599
- }
13600
- },
13601
- {
13602
- "kind": "field",
13603
- "name": "toggletipPlacement",
13604
- "type": {
13605
- "text": "PopoverPlacement"
13606
- },
13607
- "description": "The placement of the toggletip that is displayed when the info icon is hovered.",
13608
- "default": "'top'",
13609
- "attribute": "toggletip-placement",
13610
- "reflects": true,
13611
- "inheritedFrom": {
13612
- "name": "FormfieldWrapper",
13613
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13614
- }
13615
- },
13616
- {
13617
- "kind": "field",
13618
- "name": "infoIconAriaLabel",
13619
- "type": {
13620
- "text": "string | undefined"
13621
- },
13622
- "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.",
13623
- "attribute": "info-icon-aria-label",
13624
- "reflects": true,
13625
- "inheritedFrom": {
13626
- "name": "FormfieldWrapper",
13627
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13628
- }
13629
- },
13630
- {
13631
- "kind": "method",
13632
- "name": "renderLabelElement",
13633
- "privacy": "protected",
13634
- "description": "creates the label element when the label property is set.\nid is used to link the label with the input field.",
13635
- "return": {
13636
- "type": {
13637
- "text": ""
13638
- }
13639
- },
13640
- "inheritedFrom": {
13641
- "name": "FormfieldWrapper",
13642
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13643
- }
13644
- },
13645
- {
13646
- "kind": "method",
13647
- "name": "renderHelpTextIcon",
13648
- "privacy": "protected",
13649
- "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.",
13650
- "return": {
13651
- "type": {
13652
- "text": ""
13653
- }
13654
- },
13655
- "inheritedFrom": {
13656
- "name": "FormfieldWrapper",
13657
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13658
- }
13659
- },
13660
- {
13661
- "kind": "method",
13662
- "name": "renderHelpText",
13663
- "privacy": "protected",
13664
- "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.",
13665
- "return": {
13666
- "type": {
13667
- "text": ""
13668
- }
13669
- },
13670
- "inheritedFrom": {
13671
- "name": "FormfieldWrapper",
13672
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13673
- }
13674
- },
13675
- {
13676
- "kind": "method",
13677
- "name": "renderLabel",
13678
- "privacy": "protected",
13679
- "description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
13680
- "return": {
13681
- "type": {
13682
- "text": ""
13683
- }
13684
- },
13685
- "inheritedFrom": {
13686
- "name": "FormfieldWrapper",
13687
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13688
- }
13689
- },
13690
- {
13691
- "kind": "method",
13692
- "name": "renderHelperText",
13693
- "privacy": "protected",
13694
- "description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
13695
- "return": {
13696
- "type": {
13697
- "text": ""
13698
- }
13699
- },
13700
- "inheritedFrom": {
13701
- "name": "FormfieldWrapper",
13702
- "module": "components/formfieldwrapper/formfieldwrapper.component.js"
13703
- }
13704
- }
13705
- ],
13706
- "mixins": [
13707
- {
13708
- "name": "DataAriaLabelMixin",
13709
- "module": "/src/utils/mixins/DataAriaLabelMixin"
13710
- }
13711
- ],
13712
- "superclass": {
13713
- "name": "FormfieldWrapper",
13714
- "module": "/src/components/formfieldwrapper/formfieldwrapper.component"
13715
- },
13716
- "tagName": "mdc-formfieldgroup",
13717
- "jsDoc": "/**\n * `mdc-formfieldgroup` component, groups the form field components together.\n * All passed in children will have a gap of 12px (0.75rem) each applied.\n *\n * This component is specifically for creating a `checkbox` group and a `toggle` group component.\n * For the radiogroup use the RadioGroup component instead.\n *\n * The header text and description text are displayed above the items with accessible labels.<br/>\n * The consumer has to provide atleast the header-text or the aria-label,\n * like one of them <b>has</b> to be passed in always, otherwise its not accessible.\n *\n * The role will be set to `group`.\n * The aria-label will be set with the data-aria-label property.\n * The aria-labelledby will be set with the header id which contains the header text information.\n * The aria-describedby will be set with the description id which contains the description text information.\n *\n * @tagname mdc-formfieldgroup\n *\n * @dependency mdc-button\n * @dependency mdc-icon\n * @dependency mdc-text\n * @dependency mdc-toggletip\n *\n * @slot default - This is a default slot for checkbox or toggle components.\n */",
13718
- "customElement": true,
13719
- "attributes": [
13720
- {
13721
- "name": "data-aria-label",
13722
- "type": {
13723
- "text": "string | null"
13724
- },
13725
- "default": "null",
13726
- "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
13727
- "fieldName": "dataAriaLabel",
13728
- "inheritedFrom": {
13729
- "name": "DataAriaLabelMixin",
13730
- "module": "src/utils/mixins/DataAriaLabelMixin.ts"
13731
- }
13732
- },
13733
- {
13734
- "name": "disabled",
13735
- "type": {
13736
- "text": "boolean | undefined"
13737
- },
13738
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
13739
- "default": "undefined",
13740
- "fieldName": "disabled",
13741
- "inheritedFrom": {
13742
- "name": "DisabledMixin",
13743
- "module": "src/utils/mixins/DisabledMixin.ts"
13744
- }
13745
- },
13746
- {
13747
- "name": "label",
13748
- "type": {
13749
- "text": "string | undefined"
13750
- },
13751
- "description": "The label of the input field. It is linked to the input field using the `for` attribute.",
13752
- "fieldName": "label",
13753
- "inheritedFrom": {
13754
- "name": "FormfieldWrapper",
13755
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13756
- }
13757
- },
13758
- {
13759
- "name": "required",
13760
- "type": {
13761
- "text": "boolean"
13762
- },
13763
- "default": "false",
13764
- "description": "The required attribute to indicate that the input field is required.\nIt is used to append a required indicator (*) to the label.",
13765
- "fieldName": "required",
13766
- "inheritedFrom": {
13767
- "name": "FormfieldWrapper",
13768
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13769
- }
13770
- },
13771
- {
13772
- "name": "help-text-type",
13773
- "type": {
13774
- "text": "ValidationType"
13775
- },
13776
- "description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
13777
- "fieldName": "helpTextType",
13778
- "inheritedFrom": {
13779
- "name": "FormfieldWrapper",
13780
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13781
- }
13782
- },
13783
- {
13784
- "name": "help-text",
13785
- "type": {
13786
- "text": "string | undefined"
13787
- },
13788
- "description": "The help text that is displayed below the input field.",
13789
- "fieldName": "helpText",
13790
- "inheritedFrom": {
13791
- "name": "FormfieldWrapper",
13792
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13793
- }
13794
- },
13795
- {
13796
- "name": "toggletip-text",
13797
- "type": {
13798
- "text": "string | undefined"
13799
- },
13800
- "description": "The toggletip text that is displayed when the label is hovered.\nIt is used to provide additional information about the label.",
13801
- "fieldName": "toggletipText",
13802
- "inheritedFrom": {
13803
- "name": "FormfieldWrapper",
13804
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13805
- }
13806
- },
13807
- {
13808
- "name": "toggletip-placement",
13809
- "type": {
13810
- "text": "PopoverPlacement"
13811
- },
13812
- "description": "The placement of the toggletip that is displayed when the info icon is hovered.",
13813
- "default": "'top'",
13814
- "fieldName": "toggletipPlacement",
13815
- "inheritedFrom": {
13816
- "name": "FormfieldWrapper",
13817
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13818
- }
13819
- },
13820
- {
13821
- "name": "info-icon-aria-label",
13822
- "type": {
13823
- "text": "string | undefined"
13824
- },
13825
- "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.",
13826
- "fieldName": "infoIconAriaLabel",
13827
- "inheritedFrom": {
13828
- "name": "FormfieldWrapper",
13829
- "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
13830
- }
13831
- }
13832
- ]
13833
- }
13834
- ],
13835
- "exports": [
13836
- {
13837
- "kind": "js",
13838
- "name": "default",
13839
- "declaration": {
13840
- "name": "FormfieldGroup",
13841
- "module": "components/formfieldgroup/formfieldgroup.component.js"
13842
- }
13843
- }
13844
- ]
13845
- },
13846
13998
  {
13847
13999
  "kind": "javascript-module",
13848
14000
  "path": "components/formfieldwrapper/formfieldwrapper.component.js",
@@ -15755,6 +15907,20 @@
15755
15907
  "kind": "class",
15756
15908
  "description": "`mdc-link` component can be used to navigate to a different page\nwithin the application or to an external site. It can be used to link to\nemails or phone numbers.\n\nThe `children` of the link component is expected to be the text content.\n\nFor `icon`, the `mdc-icon` component is used to render the icon.",
15757
15909
  "name": "Link",
15910
+ "cssParts": [
15911
+ {
15912
+ "description": "The anchor element that wraps the link content.",
15913
+ "name": "anchor",
15914
+ "inheritedFrom": {
15915
+ "name": "Linksimple",
15916
+ "module": "src/components/linksimple/linksimple.component.ts"
15917
+ }
15918
+ },
15919
+ {
15920
+ "description": "The icon element.",
15921
+ "name": "icon"
15922
+ }
15923
+ ],
15758
15924
  "members": [
15759
15925
  {
15760
15926
  "kind": "field",
@@ -15793,32 +15959,32 @@
15793
15959
  },
15794
15960
  {
15795
15961
  "kind": "field",
15796
- "name": "disabled",
15962
+ "name": "dataAriaLabel",
15797
15963
  "type": {
15798
- "text": "boolean | undefined"
15964
+ "text": "string | null"
15799
15965
  },
15800
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
15801
- "default": "undefined",
15802
- "attribute": "disabled",
15966
+ "default": "null",
15967
+ "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
15968
+ "attribute": "data-aria-label",
15803
15969
  "reflects": true,
15804
15970
  "inheritedFrom": {
15805
- "name": "DisabledMixin",
15806
- "module": "utils/mixins/DisabledMixin.js"
15971
+ "name": "DataAriaLabelMixin",
15972
+ "module": "utils/mixins/DataAriaLabelMixin.js"
15807
15973
  }
15808
15974
  },
15809
15975
  {
15810
15976
  "kind": "field",
15811
- "name": "tabIndex",
15977
+ "name": "disabled",
15812
15978
  "type": {
15813
- "text": "number"
15979
+ "text": "boolean | undefined"
15814
15980
  },
15815
- "default": "0",
15816
- "description": "This property specifies the tab order of the element.",
15817
- "attribute": "tabIndex",
15981
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
15982
+ "default": "undefined",
15983
+ "attribute": "disabled",
15818
15984
  "reflects": true,
15819
15985
  "inheritedFrom": {
15820
- "name": "TabIndexMixin",
15821
- "module": "utils/mixins/TabIndexMixin.js"
15986
+ "name": "DisabledMixin",
15987
+ "module": "utils/mixins/DisabledMixin.js"
15822
15988
  }
15823
15989
  },
15824
15990
  {
@@ -15895,10 +16061,80 @@
15895
16061
  "module": "components/linksimple/linksimple.component.js"
15896
16062
  }
15897
16063
  },
16064
+ {
16065
+ "kind": "field",
16066
+ "name": "download",
16067
+ "type": {
16068
+ "text": "string | undefined"
16069
+ },
16070
+ "description": "Optional download attribute to instruct browsers to download the linked resource.",
16071
+ "attribute": "download",
16072
+ "reflects": true,
16073
+ "inheritedFrom": {
16074
+ "name": "Linksimple",
16075
+ "module": "components/linksimple/linksimple.component.js"
16076
+ }
16077
+ },
16078
+ {
16079
+ "kind": "field",
16080
+ "name": "ping",
16081
+ "type": {
16082
+ "text": "string | undefined"
16083
+ },
16084
+ "description": "Optional ping attribute that defines a space-separated list of URLs to be notified if the link is followed.",
16085
+ "attribute": "ping",
16086
+ "reflects": true,
16087
+ "inheritedFrom": {
16088
+ "name": "Linksimple",
16089
+ "module": "components/linksimple/linksimple.component.js"
16090
+ }
16091
+ },
16092
+ {
16093
+ "kind": "field",
16094
+ "name": "hreflang",
16095
+ "type": {
16096
+ "text": "string | undefined"
16097
+ },
16098
+ "description": "Optional hreflang attribute specifying the language of the linked resource.",
16099
+ "attribute": "hreflang",
16100
+ "reflects": true,
16101
+ "inheritedFrom": {
16102
+ "name": "Linksimple",
16103
+ "module": "components/linksimple/linksimple.component.js"
16104
+ }
16105
+ },
16106
+ {
16107
+ "kind": "field",
16108
+ "name": "type",
16109
+ "type": {
16110
+ "text": "string | undefined"
16111
+ },
16112
+ "description": "Optional type attribute indicating the MIME type of the linked resource.",
16113
+ "attribute": "type",
16114
+ "reflects": true,
16115
+ "inheritedFrom": {
16116
+ "name": "Linksimple",
16117
+ "module": "components/linksimple/linksimple.component.js"
16118
+ }
16119
+ },
16120
+ {
16121
+ "kind": "field",
16122
+ "name": "referrerpolicy",
16123
+ "type": {
16124
+ "text": "string | undefined"
16125
+ },
16126
+ "description": "Optional referrerpolicy attribute specifying how much referrer information to send.",
16127
+ "attribute": "referrerpolicy",
16128
+ "reflects": true,
16129
+ "inheritedFrom": {
16130
+ "name": "Linksimple",
16131
+ "module": "components/linksimple/linksimple.component.js"
16132
+ }
16133
+ },
15898
16134
  {
15899
16135
  "kind": "method",
15900
16136
  "name": "handleNavigation",
15901
- "privacy": "private",
16137
+ "privacy": "protected",
15902
16138
  "return": {
15903
16139
  "type": {
15904
16140
  "text": "void"
@@ -15997,6 +16233,19 @@
15997
16233
  "module": "src/utils/mixins/IconNameMixin.ts"
15998
16234
  }
15999
16235
  },
16236
+ {
16237
+ "name": "data-aria-label",
16238
+ "type": {
16239
+ "text": "string | null"
16240
+ },
16241
+ "default": "null",
16242
+ "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
16243
+ "fieldName": "dataAriaLabel",
16244
+ "inheritedFrom": {
16245
+ "name": "DataAriaLabelMixin",
16246
+ "module": "src/utils/mixins/DataAriaLabelMixin.ts"
16247
+ }
16248
+ },
16000
16249
  {
16001
16250
  "name": "disabled",
16002
16251
  "type": {
@@ -16010,19 +16259,6 @@
16010
16259
  "module": "src/utils/mixins/DisabledMixin.ts"
16011
16260
  }
16012
16261
  },
16013
- {
16014
- "name": "tabIndex",
16015
- "type": {
16016
- "text": "number"
16017
- },
16018
- "default": "0",
16019
- "description": "This property specifies the tab order of the element.",
16020
- "fieldName": "tabIndex",
16021
- "inheritedFrom": {
16022
- "name": "TabIndexMixin",
16023
- "module": "src/utils/mixins/TabIndexMixin.ts"
16024
- }
16025
- },
16026
16262
  {
16027
16263
  "name": "inline",
16028
16264
  "type": {
@@ -16086,6 +16322,66 @@
16086
16322
  "name": "Linksimple",
16087
16323
  "module": "src/components/linksimple/linksimple.component.ts"
16088
16324
  }
16325
+ },
16326
+ {
16327
+ "name": "download",
16328
+ "type": {
16329
+ "text": "string | undefined"
16330
+ },
16331
+ "description": "Optional download attribute to instruct browsers to download the linked resource.",
16332
+ "fieldName": "download",
16333
+ "inheritedFrom": {
16334
+ "name": "Linksimple",
16335
+ "module": "src/components/linksimple/linksimple.component.ts"
16336
+ }
16337
+ },
16338
+ {
16339
+ "name": "ping",
16340
+ "type": {
16341
+ "text": "string | undefined"
16342
+ },
16343
+ "description": "Optional ping attribute that defines a space-separated list of URLs to be notified if the link is followed.",
16344
+ "fieldName": "ping",
16345
+ "inheritedFrom": {
16346
+ "name": "Linksimple",
16347
+ "module": "src/components/linksimple/linksimple.component.ts"
16348
+ }
16349
+ },
16350
+ {
16351
+ "name": "hreflang",
16352
+ "type": {
16353
+ "text": "string | undefined"
16354
+ },
16355
+ "description": "Optional hreflang attribute specifying the language of the linked resource.",
16356
+ "fieldName": "hreflang",
16357
+ "inheritedFrom": {
16358
+ "name": "Linksimple",
16359
+ "module": "src/components/linksimple/linksimple.component.ts"
16360
+ }
16361
+ },
16362
+ {
16363
+ "name": "type",
16364
+ "type": {
16365
+ "text": "string | undefined"
16366
+ },
16367
+ "description": "Optional type attribute indicating the MIME type of the linked resource.",
16368
+ "fieldName": "type",
16369
+ "inheritedFrom": {
16370
+ "name": "Linksimple",
16371
+ "module": "src/components/linksimple/linksimple.component.ts"
16372
+ }
16373
+ },
16374
+ {
16375
+ "name": "referrerpolicy",
16376
+ "type": {
16377
+ "text": "string | undefined"
16378
+ },
16379
+ "description": "Optional referrerpolicy attribute specifying how much referrer information to send.",
16380
+ "fieldName": "referrerpolicy",
16381
+ "inheritedFrom": {
16382
+ "name": "Linksimple",
16383
+ "module": "src/components/linksimple/linksimple.component.ts"
16384
+ }
16089
16385
  }
16090
16386
  ],
16091
16387
  "mixins": [
@@ -16099,7 +16395,7 @@
16099
16395
  "module": "/src/components/linksimple/linksimple.component"
16100
16396
  },
16101
16397
  "tagName": "mdc-link",
16102
- "jsDoc": "/**\n * `mdc-link` component can be used to navigate to a different page\n * within the application or to an external site. It can be used to link to\n * emails or phone numbers.\n *\n * The `children` of the link component is expected to be the text content.\n *\n * For `icon`, the `mdc-icon` component is used to render the icon.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-link\n *\n * @event click - (React: onClick) Fired when the user activates the Link using a mouse or assistive technology.\n * @event keydown - (React: onKeyDown) Fired when the user presses a key while the Link has focus.\n * @event focus - (React: onFocus) Fired when the Link receives keyboard or mouse focus.\n * @event blur - (React: onBlur) Fired when the Link loses keyboard or mouse focus.\n */",
16398
+ "jsDoc": "/**\n * `mdc-link` component can be used to navigate to a different page\n * within the application or to an external site. It can be used to link to\n * emails or phone numbers.\n *\n * The `children` of the link component is expected to be the text content.\n *\n * For `icon`, the `mdc-icon` component is used to render the icon.\n *\n * @dependency mdc-icon\n *\n * @tagname mdc-link\n *\n * @event click - (React: onClick) Fired when the user activates the Link using a mouse or assistive technology.\n * @event keydown - (React: onKeyDown) Fired when the user presses a key while the Link has focus.\n * @event focus - (React: onFocus) Fired when the Link receives keyboard or mouse focus.\n * @event blur - (React: onBlur) Fired when the Link loses keyboard or mouse focus.\n * \n * @csspart anchor - The anchor element that wraps the link content.\n * @csspart icon - The icon element.\n */",
16103
16399
  "customElement": true,
16104
16400
  "cssProperties": [
16105
16401
  {
@@ -16884,6 +17180,12 @@
16884
17180
  "name": "--mdc-link-inverted-color-normal"
16885
17181
  }
16886
17182
  ],
17183
+ "cssParts": [
17184
+ {
17185
+ "description": "The anchor element that wraps the linksimple content.",
17186
+ "name": "anchor"
17187
+ }
17188
+ ],
16887
17189
  "members": [
16888
17190
  {
16889
17191
  "kind": "field",
@@ -16939,10 +17241,60 @@
16939
17241
  "attribute": "rel",
16940
17242
  "reflects": true
16941
17243
  },
17244
+ {
17245
+ "kind": "field",
17246
+ "name": "download",
17247
+ "type": {
17248
+ "text": "string | undefined"
17249
+ },
17250
+ "description": "Optional download attribute to instruct browsers to download the linked resource.",
17251
+ "attribute": "download",
17252
+ "reflects": true
17253
+ },
17254
+ {
17255
+ "kind": "field",
17256
+ "name": "ping",
17257
+ "type": {
17258
+ "text": "string | undefined"
17259
+ },
17260
+ "description": "Optional ping attribute that defines a space-separated list of URLs to be notified if the link is followed.",
17261
+ "attribute": "ping",
17262
+ "reflects": true
17263
+ },
17264
+ {
17265
+ "kind": "field",
17266
+ "name": "hreflang",
17267
+ "type": {
17268
+ "text": "string | undefined"
17269
+ },
17270
+ "description": "Optional hreflang attribute specifying the language of the linked resource.",
17271
+ "attribute": "hreflang",
17272
+ "reflects": true
17273
+ },
17274
+ {
17275
+ "kind": "field",
17276
+ "name": "type",
17277
+ "type": {
17278
+ "text": "string | undefined"
17279
+ },
17280
+ "description": "Optional type attribute indicating the MIME type of the linked resource.",
17281
+ "attribute": "type",
17282
+ "reflects": true
17283
+ },
17284
+ {
17285
+ "kind": "field",
17286
+ "name": "referrerpolicy",
17287
+ "type": {
17288
+ "text": "string | undefined"
17289
+ },
17290
+ "description": "Optional referrerpolicy attribute specifying how much referrer information to send.",
17291
+ "attribute": "referrerpolicy",
17292
+ "reflects": true
17293
+ },
16942
17294
  {
16943
17295
  "kind": "method",
16944
17296
  "name": "handleNavigation",
16945
- "privacy": "private",
17297
+ "privacy": "protected",
16946
17298
  "return": {
16947
17299
  "type": {
16948
17300
  "text": "void"
@@ -16974,32 +17326,32 @@
16974
17326
  },
16975
17327
  {
16976
17328
  "kind": "field",
16977
- "name": "disabled",
17329
+ "name": "dataAriaLabel",
16978
17330
  "type": {
16979
- "text": "boolean | undefined"
17331
+ "text": "string | null"
16980
17332
  },
16981
- "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
16982
- "default": "undefined",
16983
- "attribute": "disabled",
17333
+ "default": "null",
17334
+ "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
17335
+ "attribute": "data-aria-label",
16984
17336
  "reflects": true,
16985
17337
  "inheritedFrom": {
16986
- "name": "DisabledMixin",
16987
- "module": "utils/mixins/DisabledMixin.js"
17338
+ "name": "DataAriaLabelMixin",
17339
+ "module": "utils/mixins/DataAriaLabelMixin.js"
16988
17340
  }
16989
17341
  },
16990
17342
  {
16991
17343
  "kind": "field",
16992
- "name": "tabIndex",
17344
+ "name": "disabled",
16993
17345
  "type": {
16994
- "text": "number"
17346
+ "text": "boolean | undefined"
16995
17347
  },
16996
- "default": "0",
16997
- "description": "This property specifies the tab order of the element.",
16998
- "attribute": "tabIndex",
17348
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
17349
+ "default": "undefined",
17350
+ "attribute": "disabled",
16999
17351
  "reflects": true,
17000
17352
  "inheritedFrom": {
17001
- "name": "TabIndexMixin",
17002
- "module": "utils/mixins/TabIndexMixin.js"
17353
+ "name": "DisabledMixin",
17354
+ "module": "utils/mixins/DisabledMixin.js"
17003
17355
  }
17004
17356
  }
17005
17357
  ],
@@ -17070,6 +17422,59 @@
17070
17422
  "description": "Optional rel attribute that defines the relationship of the linked URL as space-separated link types.",
17071
17423
  "fieldName": "rel"
17072
17424
  },
17425
+ {
17426
+ "name": "download",
17427
+ "type": {
17428
+ "text": "string | undefined"
17429
+ },
17430
+ "description": "Optional download attribute to instruct browsers to download the linked resource.",
17431
+ "fieldName": "download"
17432
+ },
17433
+ {
17434
+ "name": "ping",
17435
+ "type": {
17436
+ "text": "string | undefined"
17437
+ },
17438
+ "description": "Optional ping attribute that defines a space-separated list of URLs to be notified if the link is followed.",
17439
+ "fieldName": "ping"
17440
+ },
17441
+ {
17442
+ "name": "hreflang",
17443
+ "type": {
17444
+ "text": "string | undefined"
17445
+ },
17446
+ "description": "Optional hreflang attribute specifying the language of the linked resource.",
17447
+ "fieldName": "hreflang"
17448
+ },
17449
+ {
17450
+ "name": "type",
17451
+ "type": {
17452
+ "text": "string | undefined"
17453
+ },
17454
+ "description": "Optional type attribute indicating the MIME type of the linked resource.",
17455
+ "fieldName": "type"
17456
+ },
17457
+ {
17458
+ "name": "referrerpolicy",
17459
+ "type": {
17460
+ "text": "string | undefined"
17461
+ },
17462
+ "description": "Optional referrerpolicy attribute specifying how much referrer information to send.",
17463
+ "fieldName": "referrerpolicy"
17464
+ },
17465
+ {
17466
+ "name": "data-aria-label",
17467
+ "type": {
17468
+ "text": "string | null"
17469
+ },
17470
+ "default": "null",
17471
+ "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
17472
+ "fieldName": "dataAriaLabel",
17473
+ "inheritedFrom": {
17474
+ "name": "DataAriaLabelMixin",
17475
+ "module": "src/utils/mixins/DataAriaLabelMixin.ts"
17476
+ }
17477
+ },
17073
17478
  {
17074
17479
  "name": "disabled",
17075
17480
  "type": {
@@ -17082,29 +17487,16 @@
17082
17487
  "name": "DisabledMixin",
17083
17488
  "module": "src/utils/mixins/DisabledMixin.ts"
17084
17489
  }
17085
- },
17086
- {
17087
- "name": "tabIndex",
17088
- "type": {
17089
- "text": "number"
17090
- },
17091
- "default": "0",
17092
- "description": "This property specifies the tab order of the element.",
17093
- "fieldName": "tabIndex",
17094
- "inheritedFrom": {
17095
- "name": "TabIndexMixin",
17096
- "module": "src/utils/mixins/TabIndexMixin.ts"
17097
- }
17098
17490
  }
17099
17491
  ],
17100
17492
  "mixins": [
17101
17493
  {
17102
- "name": "DisabledMixin",
17103
- "module": "/src/utils/mixins/DisabledMixin"
17494
+ "name": "DataAriaLabelMixin",
17495
+ "module": "/src/utils/mixins/DataAriaLabelMixin"
17104
17496
  },
17105
17497
  {
17106
- "name": "TabIndexMixin",
17107
- "module": "/src/utils/mixins/TabIndexMixin"
17498
+ "name": "DisabledMixin",
17499
+ "module": "/src/utils/mixins/DisabledMixin"
17108
17500
  }
17109
17501
  ],
17110
17502
  "superclass": {
@@ -17112,7 +17504,7 @@
17112
17504
  "module": "/src/models"
17113
17505
  },
17114
17506
  "tagName": "mdc-linksimple",
17115
- "jsDoc": "/**\n * `mdc-linksimple` is a lightweight link component that can be used to navigate\n * within the application or to an external URL. It does not have any predefined default size.\n *\n * The `children` of the `mdc-linksimple` component can be customized to suit\n * different use cases, including text, icons, or other inline content. For the child to be an icon,\n * the `mdc-icon` component should be used to render.\n *\n * @tagname mdc-linksimple\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 * @cssproperty --mdc-link-border-radius - Border radius of the link.\n * @cssproperty --mdc-link-color-active - Color of the link’s child content in the active state.\n * @cssproperty --mdc-link-color-disabled - Color of the link’s child content in the disabled state.\n * @cssproperty --mdc-link-color-hover - Color of the link’s child content in the hover state.\n * @cssproperty --mdc-link-color-normal - Color of the link’s child content in the normal state.\n * @cssproperty --mdc-link-inverted-color-active - Color of the inverted link’s child content in the active state.\n * @cssproperty --mdc-link-inverted-color-disabled - Color of the inverted link’s child content in the disabled state.\n * @cssproperty --mdc-link-inverted-color-hover - Color of the inverted link’s child content in the hover state.\n * @cssproperty --mdc-link-inverted-color-normal - Color of the inverted link’s child content in the normal state.\n */",
17507
+ "jsDoc": "/**\n * `mdc-linksimple` is a lightweight link component that can be used to navigate\n * within the application or to an external URL. It does not have any predefined default size.\n *\n * The `children` of the `mdc-linksimple` component can be customized to suit\n * different use cases, including text, icons, or other inline content. For the child to be an icon,\n * the `mdc-icon` component should be used to render.\n *\n * @tagname mdc-linksimple\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 * @cssproperty --mdc-link-border-radius - Border radius of the link.\n * @cssproperty --mdc-link-color-active - Color of the link’s child content in the active state.\n * @cssproperty --mdc-link-color-disabled - Color of the link’s child content in the disabled state.\n * @cssproperty --mdc-link-color-hover - Color of the link’s child content in the hover state.\n * @cssproperty --mdc-link-color-normal - Color of the link’s child content in the normal state.\n * @cssproperty --mdc-link-inverted-color-active - Color of the inverted link’s child content in the active state.\n * @cssproperty --mdc-link-inverted-color-disabled - Color of the inverted link’s child content in the disabled state.\n * @cssproperty --mdc-link-inverted-color-hover - Color of the inverted link’s child content in the hover state.\n * @cssproperty --mdc-link-inverted-color-normal - Color of the inverted link’s child content in the normal state.\n * \n * @csspart anchor - The anchor element that wraps the linksimple content.\n */",
17116
17508
  "customElement": true
17117
17509
  }
17118
17510
  ],
@@ -40960,342 +41352,6 @@
40960
41352
  }
40961
41353
  ]
40962
41354
  },
40963
- {
40964
- "kind": "javascript-module",
40965
- "path": "components/typewriter/typewriter.component.js",
40966
- "declarations": [
40967
- {
40968
- "kind": "class",
40969
- "description": "Typewriter component that creates a typewriter effect on text content.\nIt uses the Text component internally, adding a progressive typing effect.\n\nThe `type` attribute allows changing the text style (passed to the internal Text component).\nThe `tagname` attribute allows changing the tag name of the text element (passed to the internal Text component).\nThe default tag name is `p`.\n\nThe `speed` attribute controls typing speed in milliseconds per character:\n- 'very-slow' = 240ms per character\n- 'slow' = 120ms per character\n- 'normal' = 60ms per character (default)\n- 'fast' = 20ms per character\n- 'very-fast' = 1ms per character\n- Or any numeric string representing milliseconds\n\nAdvanced features:\n- Dynamic speed adjustment during typing\n- Chunked text addition via addTextChunk() method\n- Instant text addition via addInstantTextChunk() method or instant parameter\n- Mixed instant and animated chunks in queue\n- Continues typing in background tabs\n- Performance optimized for large text\n- maxQueueSize to limit memory usage from excessive queuing\n- event handling for typing completion and content changes\n\nThe component includes accessibility features:\n- Screen readers announce the complete text, not character by character\n- Uses aria-live=\"polite\" for dynamic content updates\n- Sets aria-busy during typing animation",
40970
- "name": "Typewriter",
40971
- "cssParts": [
40972
- {
40973
- "description": "Container for the text element",
40974
- "name": "container"
40975
- },
40976
- {
40977
- "description": "The text element (forwarded to mdc-text)",
40978
- "name": "text"
40979
- }
40980
- ],
40981
- "slots": [
40982
- {
40983
- "description": "Default slot for text content",
40984
- "name": ""
40985
- }
40986
- ],
40987
- "members": [
40988
- {
40989
- "kind": "field",
40990
- "name": "type",
40991
- "type": {
40992
- "text": "TextType"
40993
- },
40994
- "privacy": "public",
40995
- "description": "Specifies the text style to be applied to the internal text component.\nUses the same types as the Text component.",
40996
- "default": "body-large-regular",
40997
- "attribute": "type",
40998
- "reflects": true
40999
- },
41000
- {
41001
- "kind": "field",
41002
- "name": "tagname",
41003
- "type": {
41004
- "text": "TagName | undefined"
41005
- },
41006
- "privacy": "public",
41007
- "description": "Specifies the HTML tag name for the text element. The default tag name is `p`.\nThis attribute is optional. When set, it changes the tag name of the internal text element.\n\nAcceptable values include all valid tag names from the Text component.",
41008
- "attribute": "tagname",
41009
- "reflects": true
41010
- },
41011
- {
41012
- "kind": "field",
41013
- "name": "speed",
41014
- "type": {
41015
- "text": "TypewriterSpeed"
41016
- },
41017
- "privacy": "public",
41018
- "description": "Speed of the typewriter effect in milliseconds per character.\nCan be a string preset or a numeric string in milliseconds.\n- 'very-slow' = 240ms per character\n- 'slow' = 120ms per character\n- 'normal' = 60ms per character (default)\n- 'fast' = 20ms per character\n- 'very-fast' = 1ms per character\n- Or any numeric string representing milliseconds (e.g., '100')",
41019
- "default": "'normal' (60ms per character)",
41020
- "attribute": "speed",
41021
- "reflects": true
41022
- },
41023
- {
41024
- "kind": "field",
41025
- "name": "maxQueueSize",
41026
- "type": {
41027
- "text": "number"
41028
- },
41029
- "privacy": "public",
41030
- "description": "Maximum number of text chunks that can be queued before oldest chunks are dropped.\nSet to prevent memory accumulation from excessive queuing.",
41031
- "default": "Number.MAX_SAFE_INTEGER (effectively unlimited)",
41032
- "attribute": "max-queue-size",
41033
- "reflects": true
41034
- },
41035
- {
41036
- "kind": "method",
41037
- "name": "createTimeout",
41038
- "privacy": "private",
41039
- "return": {
41040
- "type": {
41041
- "text": "number"
41042
- }
41043
- },
41044
- "parameters": [
41045
- {
41046
- "name": "callback",
41047
- "type": {
41048
- "text": "() => void"
41049
- }
41050
- },
41051
- {
41052
- "name": "delay",
41053
- "type": {
41054
- "text": "number"
41055
- }
41056
- }
41057
- ],
41058
- "description": "Helper to create tracked setTimeout that will be cleaned up on disconnect"
41059
- },
41060
- {
41061
- "kind": "method",
41062
- "name": "clearAllTimeouts",
41063
- "privacy": "private",
41064
- "return": {
41065
- "type": {
41066
- "text": "void"
41067
- }
41068
- },
41069
- "description": "Clear all pending timeouts"
41070
- },
41071
- {
41072
- "kind": "method",
41073
- "name": "clearQueue",
41074
- "privacy": "public",
41075
- "return": {
41076
- "type": {
41077
- "text": "void"
41078
- }
41079
- },
41080
- "description": "Clears the text chunk queue and stops processing\nUseful for resetting the component state"
41081
- },
41082
- {
41083
- "kind": "method",
41084
- "name": "addTextChunk",
41085
- "privacy": "public",
41086
- "return": {
41087
- "type": {
41088
- "text": "void"
41089
- }
41090
- },
41091
- "parameters": [
41092
- {
41093
- "name": "text",
41094
- "type": {
41095
- "text": "string"
41096
- },
41097
- "description": "The text to add"
41098
- },
41099
- {
41100
- "name": "speed",
41101
- "optional": true,
41102
- "type": {
41103
- "text": "TypewriterSpeed"
41104
- },
41105
- "description": "Optional speed override for this chunk"
41106
- },
41107
- {
41108
- "name": "instant",
41109
- "optional": true,
41110
- "type": {
41111
- "text": "boolean"
41112
- },
41113
- "description": "If true, text appears instantly without animation"
41114
- }
41115
- ],
41116
- "description": "Adds a chunk of text to be typed out, optionally with a different speed"
41117
- },
41118
- {
41119
- "kind": "method",
41120
- "name": "addInstantTextChunk",
41121
- "privacy": "public",
41122
- "return": {
41123
- "type": {
41124
- "text": "void"
41125
- }
41126
- },
41127
- "parameters": [
41128
- {
41129
- "name": "text",
41130
- "type": {
41131
- "text": "string"
41132
- },
41133
- "description": "The text to add instantly"
41134
- }
41135
- ],
41136
- "description": "Adds a chunk of text instantly without typing animation"
41137
- },
41138
- {
41139
- "kind": "method",
41140
- "name": "processChunkQueue",
41141
- "privacy": "private",
41142
- "return": {
41143
- "type": {
41144
- "text": "void"
41145
- }
41146
- },
41147
- "description": "Processes all chunks in the queue"
41148
- },
41149
- {
41150
- "kind": "method",
41151
- "name": "processNextChunk",
41152
- "privacy": "private",
41153
- "return": {
41154
- "type": {
41155
- "text": "void"
41156
- }
41157
- },
41158
- "description": "Processes the next chunk in the queue"
41159
- },
41160
- {
41161
- "kind": "method",
41162
- "name": "getTypingDelayMs",
41163
- "privacy": "private",
41164
- "return": {
41165
- "type": {
41166
- "text": "number"
41167
- }
41168
- },
41169
- "description": "Gets the typing delay in milliseconds per character"
41170
- },
41171
- {
41172
- "kind": "method",
41173
- "name": "captureAndProcessContent",
41174
- "privacy": "private",
41175
- "return": {
41176
- "type": {
41177
- "text": "void"
41178
- }
41179
- },
41180
- "description": "Captures slot content and starts typewriter animation"
41181
- },
41182
- {
41183
- "kind": "method",
41184
- "name": "startTypingAnimation",
41185
- "privacy": "private",
41186
- "return": {
41187
- "type": {
41188
- "text": "void"
41189
- }
41190
- },
41191
- "parameters": [
41192
- {
41193
- "name": "onComplete",
41194
- "optional": true,
41195
- "type": {
41196
- "text": "() => void"
41197
- }
41198
- }
41199
- ],
41200
- "description": "Starts the typewriter animation"
41201
- },
41202
- {
41203
- "kind": "method",
41204
- "name": "clearTypingAnimation",
41205
- "privacy": "private",
41206
- "return": {
41207
- "type": {
41208
- "text": "void"
41209
- }
41210
- },
41211
- "description": "Clears the typing animation timeout"
41212
- },
41213
- {
41214
- "kind": "method",
41215
- "name": "handleSlotChange",
41216
- "privacy": "private",
41217
- "return": {
41218
- "type": {
41219
- "text": "void"
41220
- }
41221
- },
41222
- "description": "Handler for slotchange event"
41223
- }
41224
- ],
41225
- "events": [
41226
- {
41227
- "type": {
41228
- "text": "CustomEvent"
41229
- }
41230
- },
41231
- {
41232
- "description": "(React: onTypingComplete) Fired when the typewriter finishes typing all content. Detail: \\{ finalContent: string \\}",
41233
- "name": "typing-complete",
41234
- "reactName": "onTypingComplete"
41235
- },
41236
- {
41237
- "description": "(React: onChange) Fired when the content of the typewriter changes. Detail: \\{ content: string, isTyping: boolean \\}",
41238
- "name": "change",
41239
- "reactName": "onChange"
41240
- }
41241
- ],
41242
- "attributes": [
41243
- {
41244
- "name": "type",
41245
- "type": {
41246
- "text": "TextType"
41247
- },
41248
- "description": "Specifies the text style to be applied to the internal text component.\nUses the same types as the Text component.",
41249
- "default": "body-large-regular",
41250
- "fieldName": "type"
41251
- },
41252
- {
41253
- "name": "tagname",
41254
- "type": {
41255
- "text": "TagName | undefined"
41256
- },
41257
- "description": "Specifies the HTML tag name for the text element. The default tag name is `p`.\nThis attribute is optional. When set, it changes the tag name of the internal text element.\n\nAcceptable values include all valid tag names from the Text component.",
41258
- "fieldName": "tagname"
41259
- },
41260
- {
41261
- "name": "speed",
41262
- "type": {
41263
- "text": "TypewriterSpeed"
41264
- },
41265
- "description": "Speed of the typewriter effect in milliseconds per character.\nCan be a string preset or a numeric string in milliseconds.\n- 'very-slow' = 240ms per character\n- 'slow' = 120ms per character\n- 'normal' = 60ms per character (default)\n- 'fast' = 20ms per character\n- 'very-fast' = 1ms per character\n- Or any numeric string representing milliseconds (e.g., '100')",
41266
- "default": "'normal' (60ms per character)",
41267
- "fieldName": "speed"
41268
- },
41269
- {
41270
- "name": "max-queue-size",
41271
- "type": {
41272
- "text": "number"
41273
- },
41274
- "description": "Maximum number of text chunks that can be queued before oldest chunks are dropped.\nSet to prevent memory accumulation from excessive queuing.",
41275
- "default": "Number.MAX_SAFE_INTEGER (effectively unlimited)",
41276
- "fieldName": "maxQueueSize"
41277
- }
41278
- ],
41279
- "superclass": {
41280
- "name": "Component",
41281
- "module": "/src/models"
41282
- },
41283
- "tagName": "mdc-typewriter",
41284
- "jsDoc": "/**\n * Typewriter component that creates a typewriter effect on text content.\n * It uses the Text component internally, adding a progressive typing effect.\n *\n * The `type` attribute allows changing the text style (passed to the internal Text component).\n * The `tagname` attribute allows changing the tag name of the text element (passed to the internal Text component).\n * The default tag name is `p`.\n *\n * The `speed` attribute controls typing speed in milliseconds per character:\n * - 'very-slow' = 240ms per character\n * - 'slow' = 120ms per character\n * - 'normal' = 60ms per character (default)\n * - 'fast' = 20ms per character\n * - 'very-fast' = 1ms per character\n * - Or any numeric string representing milliseconds\n *\n * Advanced features:\n * - Dynamic speed adjustment during typing\n * - Chunked text addition via addTextChunk() method\n * - Instant text addition via addInstantTextChunk() method or instant parameter\n * - Mixed instant and animated chunks in queue\n * - Continues typing in background tabs\n * - Performance optimized for large text\n * - maxQueueSize to limit memory usage from excessive queuing\n * - event handling for typing completion and content changes\n *\n * The component includes accessibility features:\n * - Screen readers announce the complete text, not character by character\n * - Uses aria-live=\"polite\" for dynamic content updates\n * - Sets aria-busy during typing animation\n *\n * @dependency mdc-text\n *\n * @tagname mdc-typewriter\n * @slot - Default slot for text content\n *\n * @csspart container - Container for the text element\n * @csspart text - The text element (forwarded to mdc-text)\n *\n * @event typing-complete - (React: onTypingComplete) Fired when the typewriter finishes typing all content.\n * Detail: \\{ finalContent: string \\}\n * @event change - (React: onChange) Fired when the content of the typewriter changes.\n * Detail: \\{ content: string, isTyping: boolean \\}\n */",
41285
- "customElement": true
41286
- }
41287
- ],
41288
- "exports": [
41289
- {
41290
- "kind": "js",
41291
- "name": "default",
41292
- "declaration": {
41293
- "name": "Typewriter",
41294
- "module": "components/typewriter/typewriter.component.js"
41295
- }
41296
- }
41297
- ]
41298
- },
41299
41355
  {
41300
41356
  "kind": "javascript-module",
41301
41357
  "path": "components/tooltip/tooltip.component.js",
@@ -43371,6 +43427,342 @@
43371
43427
  }
43372
43428
  ]
43373
43429
  },
43430
+ {
43431
+ "kind": "javascript-module",
43432
+ "path": "components/typewriter/typewriter.component.js",
43433
+ "declarations": [
43434
+ {
43435
+ "kind": "class",
43436
+ "description": "Typewriter component that creates a typewriter effect on text content.\nIt uses the Text component internally, adding a progressive typing effect.\n\nThe `type` attribute allows changing the text style (passed to the internal Text component).\nThe `tagname` attribute allows changing the tag name of the text element (passed to the internal Text component).\nThe default tag name is `p`.\n\nThe `speed` attribute controls typing speed in milliseconds per character:\n- 'very-slow' = 240ms per character\n- 'slow' = 120ms per character\n- 'normal' = 60ms per character (default)\n- 'fast' = 20ms per character\n- 'very-fast' = 1ms per character\n- Or any numeric string representing milliseconds\n\nAdvanced features:\n- Dynamic speed adjustment during typing\n- Chunked text addition via addTextChunk() method\n- Instant text addition via addInstantTextChunk() method or instant parameter\n- Mixed instant and animated chunks in queue\n- Continues typing in background tabs\n- Performance optimized for large text\n- maxQueueSize to limit memory usage from excessive queuing\n- event handling for typing completion and content changes\n\nThe component includes accessibility features:\n- Screen readers announce the complete text, not character by character\n- Uses aria-live=\"polite\" for dynamic content updates\n- Sets aria-busy during typing animation",
43437
+ "name": "Typewriter",
43438
+ "cssParts": [
43439
+ {
43440
+ "description": "Container for the text element",
43441
+ "name": "container"
43442
+ },
43443
+ {
43444
+ "description": "The text element (forwarded to mdc-text)",
43445
+ "name": "text"
43446
+ }
43447
+ ],
43448
+ "slots": [
43449
+ {
43450
+ "description": "Default slot for text content",
43451
+ "name": ""
43452
+ }
43453
+ ],
43454
+ "members": [
43455
+ {
43456
+ "kind": "field",
43457
+ "name": "type",
43458
+ "type": {
43459
+ "text": "TextType"
43460
+ },
43461
+ "privacy": "public",
43462
+ "description": "Specifies the text style to be applied to the internal text component.\nUses the same types as the Text component.",
43463
+ "default": "body-large-regular",
43464
+ "attribute": "type",
43465
+ "reflects": true
43466
+ },
43467
+ {
43468
+ "kind": "field",
43469
+ "name": "tagname",
43470
+ "type": {
43471
+ "text": "TagName | undefined"
43472
+ },
43473
+ "privacy": "public",
43474
+ "description": "Specifies the HTML tag name for the text element. The default tag name is `p`.\nThis attribute is optional. When set, it changes the tag name of the internal text element.\n\nAcceptable values include all valid tag names from the Text component.",
43475
+ "attribute": "tagname",
43476
+ "reflects": true
43477
+ },
43478
+ {
43479
+ "kind": "field",
43480
+ "name": "speed",
43481
+ "type": {
43482
+ "text": "TypewriterSpeed"
43483
+ },
43484
+ "privacy": "public",
43485
+ "description": "Speed of the typewriter effect in milliseconds per character.\nCan be a string preset or a numeric string in milliseconds.\n- 'very-slow' = 240ms per character\n- 'slow' = 120ms per character\n- 'normal' = 60ms per character (default)\n- 'fast' = 20ms per character\n- 'very-fast' = 1ms per character\n- Or any numeric string representing milliseconds (e.g., '100')",
43486
+ "default": "'normal' (60ms per character)",
43487
+ "attribute": "speed",
43488
+ "reflects": true
43489
+ },
43490
+ {
43491
+ "kind": "field",
43492
+ "name": "maxQueueSize",
43493
+ "type": {
43494
+ "text": "number"
43495
+ },
43496
+ "privacy": "public",
43497
+ "description": "Maximum number of text chunks that can be queued before oldest chunks are dropped.\nSet to prevent memory accumulation from excessive queuing.",
43498
+ "default": "Number.MAX_SAFE_INTEGER (effectively unlimited)",
43499
+ "attribute": "max-queue-size",
43500
+ "reflects": true
43501
+ },
43502
+ {
43503
+ "kind": "method",
43504
+ "name": "createTimeout",
43505
+ "privacy": "private",
43506
+ "return": {
43507
+ "type": {
43508
+ "text": "number"
43509
+ }
43510
+ },
43511
+ "parameters": [
43512
+ {
43513
+ "name": "callback",
43514
+ "type": {
43515
+ "text": "() => void"
43516
+ }
43517
+ },
43518
+ {
43519
+ "name": "delay",
43520
+ "type": {
43521
+ "text": "number"
43522
+ }
43523
+ }
43524
+ ],
43525
+ "description": "Helper to create tracked setTimeout that will be cleaned up on disconnect"
43526
+ },
43527
+ {
43528
+ "kind": "method",
43529
+ "name": "clearAllTimeouts",
43530
+ "privacy": "private",
43531
+ "return": {
43532
+ "type": {
43533
+ "text": "void"
43534
+ }
43535
+ },
43536
+ "description": "Clear all pending timeouts"
43537
+ },
43538
+ {
43539
+ "kind": "method",
43540
+ "name": "clearQueue",
43541
+ "privacy": "public",
43542
+ "return": {
43543
+ "type": {
43544
+ "text": "void"
43545
+ }
43546
+ },
43547
+ "description": "Clears the text chunk queue and stops processing\nUseful for resetting the component state"
43548
+ },
43549
+ {
43550
+ "kind": "method",
43551
+ "name": "addTextChunk",
43552
+ "privacy": "public",
43553
+ "return": {
43554
+ "type": {
43555
+ "text": "void"
43556
+ }
43557
+ },
43558
+ "parameters": [
43559
+ {
43560
+ "name": "text",
43561
+ "type": {
43562
+ "text": "string"
43563
+ },
43564
+ "description": "The text to add"
43565
+ },
43566
+ {
43567
+ "name": "speed",
43568
+ "optional": true,
43569
+ "type": {
43570
+ "text": "TypewriterSpeed"
43571
+ },
43572
+ "description": "Optional speed override for this chunk"
43573
+ },
43574
+ {
43575
+ "name": "instant",
43576
+ "optional": true,
43577
+ "type": {
43578
+ "text": "boolean"
43579
+ },
43580
+ "description": "If true, text appears instantly without animation"
43581
+ }
43582
+ ],
43583
+ "description": "Adds a chunk of text to be typed out, optionally with a different speed"
43584
+ },
43585
+ {
43586
+ "kind": "method",
43587
+ "name": "addInstantTextChunk",
43588
+ "privacy": "public",
43589
+ "return": {
43590
+ "type": {
43591
+ "text": "void"
43592
+ }
43593
+ },
43594
+ "parameters": [
43595
+ {
43596
+ "name": "text",
43597
+ "type": {
43598
+ "text": "string"
43599
+ },
43600
+ "description": "The text to add instantly"
43601
+ }
43602
+ ],
43603
+ "description": "Adds a chunk of text instantly without typing animation"
43604
+ },
43605
+ {
43606
+ "kind": "method",
43607
+ "name": "processChunkQueue",
43608
+ "privacy": "private",
43609
+ "return": {
43610
+ "type": {
43611
+ "text": "void"
43612
+ }
43613
+ },
43614
+ "description": "Processes all chunks in the queue"
43615
+ },
43616
+ {
43617
+ "kind": "method",
43618
+ "name": "processNextChunk",
43619
+ "privacy": "private",
43620
+ "return": {
43621
+ "type": {
43622
+ "text": "void"
43623
+ }
43624
+ },
43625
+ "description": "Processes the next chunk in the queue"
43626
+ },
43627
+ {
43628
+ "kind": "method",
43629
+ "name": "getTypingDelayMs",
43630
+ "privacy": "private",
43631
+ "return": {
43632
+ "type": {
43633
+ "text": "number"
43634
+ }
43635
+ },
43636
+ "description": "Gets the typing delay in milliseconds per character"
43637
+ },
43638
+ {
43639
+ "kind": "method",
43640
+ "name": "captureAndProcessContent",
43641
+ "privacy": "private",
43642
+ "return": {
43643
+ "type": {
43644
+ "text": "void"
43645
+ }
43646
+ },
43647
+ "description": "Captures slot content and starts typewriter animation"
43648
+ },
43649
+ {
43650
+ "kind": "method",
43651
+ "name": "startTypingAnimation",
43652
+ "privacy": "private",
43653
+ "return": {
43654
+ "type": {
43655
+ "text": "void"
43656
+ }
43657
+ },
43658
+ "parameters": [
43659
+ {
43660
+ "name": "onComplete",
43661
+ "optional": true,
43662
+ "type": {
43663
+ "text": "() => void"
43664
+ }
43665
+ }
43666
+ ],
43667
+ "description": "Starts the typewriter animation"
43668
+ },
43669
+ {
43670
+ "kind": "method",
43671
+ "name": "clearTypingAnimation",
43672
+ "privacy": "private",
43673
+ "return": {
43674
+ "type": {
43675
+ "text": "void"
43676
+ }
43677
+ },
43678
+ "description": "Clears the typing animation timeout"
43679
+ },
43680
+ {
43681
+ "kind": "method",
43682
+ "name": "handleSlotChange",
43683
+ "privacy": "private",
43684
+ "return": {
43685
+ "type": {
43686
+ "text": "void"
43687
+ }
43688
+ },
43689
+ "description": "Handler for slotchange event"
43690
+ }
43691
+ ],
43692
+ "events": [
43693
+ {
43694
+ "type": {
43695
+ "text": "CustomEvent"
43696
+ }
43697
+ },
43698
+ {
43699
+ "description": "(React: onTypingComplete) Fired when the typewriter finishes typing all content. Detail: \\{ finalContent: string \\}",
43700
+ "name": "typing-complete",
43701
+ "reactName": "onTypingComplete"
43702
+ },
43703
+ {
43704
+ "description": "(React: onChange) Fired when the content of the typewriter changes. Detail: \\{ content: string, isTyping: boolean \\}",
43705
+ "name": "change",
43706
+ "reactName": "onChange"
43707
+ }
43708
+ ],
43709
+ "attributes": [
43710
+ {
43711
+ "name": "type",
43712
+ "type": {
43713
+ "text": "TextType"
43714
+ },
43715
+ "description": "Specifies the text style to be applied to the internal text component.\nUses the same types as the Text component.",
43716
+ "default": "body-large-regular",
43717
+ "fieldName": "type"
43718
+ },
43719
+ {
43720
+ "name": "tagname",
43721
+ "type": {
43722
+ "text": "TagName | undefined"
43723
+ },
43724
+ "description": "Specifies the HTML tag name for the text element. The default tag name is `p`.\nThis attribute is optional. When set, it changes the tag name of the internal text element.\n\nAcceptable values include all valid tag names from the Text component.",
43725
+ "fieldName": "tagname"
43726
+ },
43727
+ {
43728
+ "name": "speed",
43729
+ "type": {
43730
+ "text": "TypewriterSpeed"
43731
+ },
43732
+ "description": "Speed of the typewriter effect in milliseconds per character.\nCan be a string preset or a numeric string in milliseconds.\n- 'very-slow' = 240ms per character\n- 'slow' = 120ms per character\n- 'normal' = 60ms per character (default)\n- 'fast' = 20ms per character\n- 'very-fast' = 1ms per character\n- Or any numeric string representing milliseconds (e.g., '100')",
43733
+ "default": "'normal' (60ms per character)",
43734
+ "fieldName": "speed"
43735
+ },
43736
+ {
43737
+ "name": "max-queue-size",
43738
+ "type": {
43739
+ "text": "number"
43740
+ },
43741
+ "description": "Maximum number of text chunks that can be queued before oldest chunks are dropped.\nSet to prevent memory accumulation from excessive queuing.",
43742
+ "default": "Number.MAX_SAFE_INTEGER (effectively unlimited)",
43743
+ "fieldName": "maxQueueSize"
43744
+ }
43745
+ ],
43746
+ "superclass": {
43747
+ "name": "Component",
43748
+ "module": "/src/models"
43749
+ },
43750
+ "tagName": "mdc-typewriter",
43751
+ "jsDoc": "/**\n * Typewriter component that creates a typewriter effect on text content.\n * It uses the Text component internally, adding a progressive typing effect.\n *\n * The `type` attribute allows changing the text style (passed to the internal Text component).\n * The `tagname` attribute allows changing the tag name of the text element (passed to the internal Text component).\n * The default tag name is `p`.\n *\n * The `speed` attribute controls typing speed in milliseconds per character:\n * - 'very-slow' = 240ms per character\n * - 'slow' = 120ms per character\n * - 'normal' = 60ms per character (default)\n * - 'fast' = 20ms per character\n * - 'very-fast' = 1ms per character\n * - Or any numeric string representing milliseconds\n *\n * Advanced features:\n * - Dynamic speed adjustment during typing\n * - Chunked text addition via addTextChunk() method\n * - Instant text addition via addInstantTextChunk() method or instant parameter\n * - Mixed instant and animated chunks in queue\n * - Continues typing in background tabs\n * - Performance optimized for large text\n * - maxQueueSize to limit memory usage from excessive queuing\n * - event handling for typing completion and content changes\n *\n * The component includes accessibility features:\n * - Screen readers announce the complete text, not character by character\n * - Uses aria-live=\"polite\" for dynamic content updates\n * - Sets aria-busy during typing animation\n *\n * @dependency mdc-text\n *\n * @tagname mdc-typewriter\n * @slot - Default slot for text content\n *\n * @csspart container - Container for the text element\n * @csspart text - The text element (forwarded to mdc-text)\n *\n * @event typing-complete - (React: onTypingComplete) Fired when the typewriter finishes typing all content.\n * Detail: \\{ finalContent: string \\}\n * @event change - (React: onChange) Fired when the content of the typewriter changes.\n * Detail: \\{ content: string, isTyping: boolean \\}\n */",
43752
+ "customElement": true
43753
+ }
43754
+ ],
43755
+ "exports": [
43756
+ {
43757
+ "kind": "js",
43758
+ "name": "default",
43759
+ "declaration": {
43760
+ "name": "Typewriter",
43761
+ "module": "components/typewriter/typewriter.component.js"
43762
+ }
43763
+ }
43764
+ ]
43765
+ },
43374
43766
  {
43375
43767
  "kind": "javascript-module",
43376
43768
  "path": "components/virtualizedlist/virtualizedlist.component.js",