@momentum-design/components 0.51.3 → 0.52.0

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.
@@ -774,6 +774,20 @@
774
774
  "kind": "class",
775
775
  "description": "The `mdc-avatarbutton` component is an interactable version of the `mdc-avatar` component.\n\nThis component is made by extending `buttonsimple` class.\nThe button component acts as a wrapper for the avatar component.",
776
776
  "name": "AvatarButton",
777
+ "cssProperties": [
778
+ {
779
+ "description": "Background color of the overlay in rest state",
780
+ "name": "--mdc-avatarbutton-overlay-background-color-rest"
781
+ },
782
+ {
783
+ "description": "Background color of the overlay in hover state",
784
+ "name": "--mdc-avatarbutton-overlay-background-color-hover"
785
+ },
786
+ {
787
+ "description": "Background color of the overlay in active state",
788
+ "name": "--mdc-avatarbutton-overlay-background-color-active"
789
+ }
790
+ ],
777
791
  "members": [
778
792
  {
779
793
  "kind": "field",
@@ -1348,7 +1362,7 @@
1348
1362
  "module": "/src/components/buttonsimple/buttonsimple.component"
1349
1363
  },
1350
1364
  "tagName": "mdc-avatarbutton",
1351
- "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 * @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 */",
1365
+ "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 * @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 */",
1352
1366
  "customElement": true
1353
1367
  }
1354
1368
  ],
@@ -12122,6 +12136,554 @@
12122
12136
  }
12123
12137
  ]
12124
12138
  },
12139
+ {
12140
+ "kind": "javascript-module",
12141
+ "path": "components/progressspinner/progressspinner.component.js",
12142
+ "declarations": [
12143
+ {
12144
+ "kind": "class",
12145
+ "description": "`mdc-progressspinner` is a customizable, circular progress indicator component.\nIt visually represents the current completion state of a process, such as loading,\nsyncing, uploading, or any ongoing task that has a measurable percentage.\n\nThe spinner is built using SVG with two concentric `<circle>` elements:\n- The `progress` arc represents the portion of work completed.\n- The `track` arc represents the remaining part.\n\nA visual gap is maintained between the progress and track arcs to clearly\ndistinguish the two segments. The component smoothly animates arc length\nand respects accessibility best practices with ARIA attributes.\n\nThe component supports different states:\n- **Default**: Circular spinner shows the progress.\n- **Success**: Displays a checkmark icon when progress reaches 100%.\n- **Error**: Displays an error icon when in an error state.",
12146
+ "name": "Progressspinner",
12147
+ "cssProperties": [
12148
+ {
12149
+ "description": "The size of the spinner.",
12150
+ "name": "--mdc-spinner-size"
12151
+ },
12152
+ {
12153
+ "description": "The color of the spinner track.",
12154
+ "name": "--mdc-track-color"
12155
+ },
12156
+ {
12157
+ "description": "The color of the spinner progress.",
12158
+ "name": "--mdc-progress-color"
12159
+ },
12160
+ {
12161
+ "description": "The color of the spinner when in success state.",
12162
+ "name": "--mdc-progress-success-color"
12163
+ },
12164
+ {
12165
+ "description": "The color of the spinner when in error state.",
12166
+ "name": "--mdc-progress-error-color"
12167
+ },
12168
+ {
12169
+ "description": "Background color of the progressbar when inactive.",
12170
+ "name": "--mdc-progressbar-default-background-color",
12171
+ "inheritedFrom": {
12172
+ "name": "Progressbar",
12173
+ "module": "src/components/progressbar/progressbar.component.ts"
12174
+ }
12175
+ },
12176
+ {
12177
+ "description": "Background color of the progressbar when active.",
12178
+ "name": "--mdc-progressbar-default-active-background-color",
12179
+ "inheritedFrom": {
12180
+ "name": "Progressbar",
12181
+ "module": "src/components/progressbar/progressbar.component.ts"
12182
+ }
12183
+ },
12184
+ {
12185
+ "description": "Background color of the progressbar when in success state.",
12186
+ "name": "--mdc-progressbar-success-background-color",
12187
+ "inheritedFrom": {
12188
+ "name": "Progressbar",
12189
+ "module": "src/components/progressbar/progressbar.component.ts"
12190
+ }
12191
+ },
12192
+ {
12193
+ "description": "Background color of the progressbar when in error state.",
12194
+ "name": "--mdc-progressbar-error-background-color",
12195
+ "inheritedFrom": {
12196
+ "name": "Progressbar",
12197
+ "module": "src/components/progressbar/progressbar.component.ts"
12198
+ }
12199
+ },
12200
+ {
12201
+ "description": "The height of the progressbar.",
12202
+ "name": "--mdc-progressbar-height",
12203
+ "inheritedFrom": {
12204
+ "name": "Progressbar",
12205
+ "module": "src/components/progressbar/progressbar.component.ts"
12206
+ }
12207
+ },
12208
+ {
12209
+ "description": "The border radius of the progressbar.",
12210
+ "name": "--mdc-progressbar-border-radius",
12211
+ "inheritedFrom": {
12212
+ "name": "Progressbar",
12213
+ "module": "src/components/progressbar/progressbar.component.ts"
12214
+ }
12215
+ },
12216
+ {
12217
+ "description": "Color of the progressbar label text.",
12218
+ "name": "--mdc-progressbar-label-color",
12219
+ "inheritedFrom": {
12220
+ "name": "Progressbar",
12221
+ "module": "src/components/progressbar/progressbar.component.ts"
12222
+ }
12223
+ },
12224
+ {
12225
+ "description": "Line height of the label text.",
12226
+ "name": "--mdc-progressbar-label-lineheight",
12227
+ "inheritedFrom": {
12228
+ "name": "Progressbar",
12229
+ "module": "src/components/progressbar/progressbar.component.ts"
12230
+ }
12231
+ },
12232
+ {
12233
+ "description": "Font size of the label text.",
12234
+ "name": "--mdc-progressbar-label-fontsize",
12235
+ "inheritedFrom": {
12236
+ "name": "Progressbar",
12237
+ "module": "src/components/progressbar/progressbar.component.ts"
12238
+ }
12239
+ },
12240
+ {
12241
+ "description": "Font weight of the label text.",
12242
+ "name": "--mdc-progressbar-label-fontweight",
12243
+ "inheritedFrom": {
12244
+ "name": "Progressbar",
12245
+ "module": "src/components/progressbar/progressbar.component.ts"
12246
+ }
12247
+ },
12248
+ {
12249
+ "description": "Color of the help text.",
12250
+ "name": "--mdc-progressbar-help-text-color",
12251
+ "inheritedFrom": {
12252
+ "name": "Progressbar",
12253
+ "module": "src/components/progressbar/progressbar.component.ts"
12254
+ }
12255
+ }
12256
+ ],
12257
+ "members": [
12258
+ {
12259
+ "kind": "method",
12260
+ "name": "renderProgressSpinner",
12261
+ "privacy": "private"
12262
+ },
12263
+ {
12264
+ "kind": "method",
12265
+ "name": "renderErrorState",
12266
+ "privacy": "private",
12267
+ "description": "Renders the error state of the progress spinner.",
12268
+ "return": {
12269
+ "type": {
12270
+ "text": ""
12271
+ }
12272
+ }
12273
+ },
12274
+ {
12275
+ "kind": "method",
12276
+ "name": "renderSuccessState",
12277
+ "privacy": "private",
12278
+ "description": "Renders the success state of the progress spinner.",
12279
+ "return": {
12280
+ "type": {
12281
+ "text": ""
12282
+ }
12283
+ }
12284
+ },
12285
+ {
12286
+ "kind": "field",
12287
+ "name": "dataAriaLabel",
12288
+ "type": {
12289
+ "text": "string | null"
12290
+ },
12291
+ "default": "null",
12292
+ "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
12293
+ "attribute": "data-aria-label",
12294
+ "reflects": true,
12295
+ "inheritedFrom": {
12296
+ "name": "DataAriaLabelMixin",
12297
+ "module": "utils/mixins/DataAriaLabelMixin.js"
12298
+ }
12299
+ },
12300
+ {
12301
+ "kind": "field",
12302
+ "name": "variant",
12303
+ "type": {
12304
+ "text": "Variant"
12305
+ },
12306
+ "description": "Types of the progressbar\n- **Default**\n- **Inline**",
12307
+ "default": "default",
12308
+ "attribute": "variant",
12309
+ "reflects": true,
12310
+ "inheritedFrom": {
12311
+ "name": "Progressbar",
12312
+ "module": "components/progressbar/progressbar.component.js"
12313
+ }
12314
+ },
12315
+ {
12316
+ "kind": "field",
12317
+ "name": "value",
12318
+ "type": {
12319
+ "text": "string"
12320
+ },
12321
+ "default": "'0'",
12322
+ "description": "The current progress as a percentage, 0 to 100.\nThe value will be clamped between 0 and 100.",
12323
+ "attribute": "value",
12324
+ "reflects": true,
12325
+ "inheritedFrom": {
12326
+ "name": "Progressbar",
12327
+ "module": "components/progressbar/progressbar.component.js"
12328
+ }
12329
+ },
12330
+ {
12331
+ "kind": "field",
12332
+ "name": "error",
12333
+ "type": {
12334
+ "text": "boolean"
12335
+ },
12336
+ "default": "false",
12337
+ "description": "Define error state of the progressbar\n- **true**\n- **false**",
12338
+ "attribute": "error",
12339
+ "inheritedFrom": {
12340
+ "name": "Progressbar",
12341
+ "module": "components/progressbar/progressbar.component.js"
12342
+ }
12343
+ },
12344
+ {
12345
+ "kind": "method",
12346
+ "name": "getValidationVariant",
12347
+ "privacy": "private",
12348
+ "description": "Determines the validation state (success, error, or default) based on progress value and error state.",
12349
+ "return": {
12350
+ "type": {
12351
+ "text": ""
12352
+ }
12353
+ },
12354
+ "inheritedFrom": {
12355
+ "name": "Progressbar",
12356
+ "module": "components/progressbar/progressbar.component.js"
12357
+ }
12358
+ },
12359
+ {
12360
+ "kind": "field",
12361
+ "name": "disabled",
12362
+ "type": {
12363
+ "text": "boolean | undefined"
12364
+ },
12365
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
12366
+ "default": "undefined",
12367
+ "attribute": "disabled",
12368
+ "reflects": true,
12369
+ "inheritedFrom": {
12370
+ "name": "FormfieldWrapper",
12371
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
12372
+ }
12373
+ },
12374
+ {
12375
+ "kind": "field",
12376
+ "name": "label",
12377
+ "type": {
12378
+ "text": "string | undefined"
12379
+ },
12380
+ "description": "The label of the input field. It is linked to the input field using the `for` attribute.",
12381
+ "attribute": "label",
12382
+ "reflects": true,
12383
+ "inheritedFrom": {
12384
+ "name": "FormfieldWrapper",
12385
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
12386
+ }
12387
+ },
12388
+ {
12389
+ "kind": "field",
12390
+ "name": "requiredLabel",
12391
+ "type": {
12392
+ "text": "string | undefined"
12393
+ },
12394
+ "description": "The required label of the input field.\nWhen an appropriate string value is set,\nthe input field is marked as required and the label is appended with this text.",
12395
+ "attribute": "required-label",
12396
+ "reflects": true,
12397
+ "inheritedFrom": {
12398
+ "name": "FormfieldWrapper",
12399
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
12400
+ }
12401
+ },
12402
+ {
12403
+ "kind": "field",
12404
+ "name": "id",
12405
+ "type": {
12406
+ "text": "string"
12407
+ },
12408
+ "default": "''",
12409
+ "description": "The unique id of the input field. It is used to link the input field with the label.",
12410
+ "attribute": "id",
12411
+ "inheritedFrom": {
12412
+ "name": "FormfieldWrapper",
12413
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
12414
+ }
12415
+ },
12416
+ {
12417
+ "kind": "field",
12418
+ "name": "helpTextType",
12419
+ "type": {
12420
+ "text": "ValidationType"
12421
+ },
12422
+ "description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
12423
+ "attribute": "help-text-type",
12424
+ "reflects": true,
12425
+ "inheritedFrom": {
12426
+ "name": "FormfieldWrapper",
12427
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
12428
+ }
12429
+ },
12430
+ {
12431
+ "kind": "field",
12432
+ "name": "helpText",
12433
+ "type": {
12434
+ "text": "string | undefined"
12435
+ },
12436
+ "description": "The help text that is displayed below the input field.",
12437
+ "attribute": "help-text",
12438
+ "reflects": true,
12439
+ "inheritedFrom": {
12440
+ "name": "FormfieldWrapper",
12441
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
12442
+ }
12443
+ },
12444
+ {
12445
+ "kind": "method",
12446
+ "name": "renderLabelElement",
12447
+ "privacy": "protected",
12448
+ "description": "creates the label element when the label property is set.\nid is used to link the label with the input field.",
12449
+ "return": {
12450
+ "type": {
12451
+ "text": ""
12452
+ }
12453
+ },
12454
+ "inheritedFrom": {
12455
+ "name": "FormfieldWrapper",
12456
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
12457
+ }
12458
+ },
12459
+ {
12460
+ "kind": "method",
12461
+ "name": "renderRequiredLabel",
12462
+ "privacy": "protected",
12463
+ "inheritedFrom": {
12464
+ "name": "FormfieldWrapper",
12465
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
12466
+ }
12467
+ },
12468
+ {
12469
+ "kind": "method",
12470
+ "name": "renderHelpTextIcon",
12471
+ "privacy": "protected",
12472
+ "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.",
12473
+ "return": {
12474
+ "type": {
12475
+ "text": ""
12476
+ }
12477
+ },
12478
+ "inheritedFrom": {
12479
+ "name": "FormfieldWrapper",
12480
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
12481
+ }
12482
+ },
12483
+ {
12484
+ "kind": "method",
12485
+ "name": "renderHelpText",
12486
+ "privacy": "protected",
12487
+ "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.",
12488
+ "return": {
12489
+ "type": {
12490
+ "text": ""
12491
+ }
12492
+ },
12493
+ "inheritedFrom": {
12494
+ "name": "FormfieldWrapper",
12495
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
12496
+ }
12497
+ },
12498
+ {
12499
+ "kind": "method",
12500
+ "name": "renderLabel",
12501
+ "privacy": "protected",
12502
+ "description": "renders the mdc-label-text container that contains the label and labelInfoToggleTip.",
12503
+ "return": {
12504
+ "type": {
12505
+ "text": ""
12506
+ }
12507
+ },
12508
+ "inheritedFrom": {
12509
+ "name": "FormfieldWrapper",
12510
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
12511
+ }
12512
+ },
12513
+ {
12514
+ "kind": "method",
12515
+ "name": "renderHelperText",
12516
+ "privacy": "protected",
12517
+ "description": "renders the mdc-help-text container that contains the helpertext icon and helpertext.",
12518
+ "return": {
12519
+ "type": {
12520
+ "text": ""
12521
+ }
12522
+ },
12523
+ "inheritedFrom": {
12524
+ "name": "FormfieldWrapper",
12525
+ "module": "components/formfieldwrapper/formfieldwrapper.component.js"
12526
+ }
12527
+ }
12528
+ ],
12529
+ "superclass": {
12530
+ "name": "Progressbar",
12531
+ "module": "/src/components/progressbar/progressbar.component"
12532
+ },
12533
+ "tagName": "mdc-progressspinner",
12534
+ "jsDoc": "/**\n * `mdc-progressspinner` is a customizable, circular progress indicator component.\n * It visually represents the current completion state of a process, such as loading,\n * syncing, uploading, or any ongoing task that has a measurable percentage.\n *\n * The spinner is built using SVG with two concentric `<circle>` elements:\n * - The `progress` arc represents the portion of work completed.\n * - The `track` arc represents the remaining part.\n *\n * A visual gap is maintained between the progress and track arcs to clearly\n * distinguish the two segments. The component smoothly animates arc length\n * and respects accessibility best practices with ARIA attributes.\n *\n * The component supports different states:\n * - **Default**: Circular spinner shows the progress.\n * - **Success**: Displays a checkmark icon when progress reaches 100%.\n * - **Error**: Displays an error icon when in an error state.\n *\n * @tagname mdc-progressspinner\n *\n * @cssproperty --mdc-spinner-size - The size of the spinner.\n * @cssproperty --mdc-track-color - The color of the spinner track.\n * @cssproperty --mdc-progress-color - The color of the spinner progress.\n * @cssproperty --mdc-progress-success-color - The color of the spinner when in success state.\n * @cssproperty --mdc-progress-error-color - The color of the spinner when in error state.\n *\n */",
12535
+ "customElement": true,
12536
+ "attributes": [
12537
+ {
12538
+ "name": "data-aria-label",
12539
+ "type": {
12540
+ "text": "string | null"
12541
+ },
12542
+ "default": "null",
12543
+ "description": "Defines a string value that labels the current element.\nThe Aria-Label attribute to be set for accessibility.",
12544
+ "fieldName": "dataAriaLabel",
12545
+ "inheritedFrom": {
12546
+ "name": "DataAriaLabelMixin",
12547
+ "module": "src/utils/mixins/DataAriaLabelMixin.ts"
12548
+ }
12549
+ },
12550
+ {
12551
+ "name": "variant",
12552
+ "type": {
12553
+ "text": "Variant"
12554
+ },
12555
+ "description": "Types of the progressbar\n- **Default**\n- **Inline**",
12556
+ "default": "default",
12557
+ "fieldName": "variant",
12558
+ "inheritedFrom": {
12559
+ "name": "Progressbar",
12560
+ "module": "src/components/progressbar/progressbar.component.ts"
12561
+ }
12562
+ },
12563
+ {
12564
+ "name": "value",
12565
+ "type": {
12566
+ "text": "string"
12567
+ },
12568
+ "default": "'0'",
12569
+ "description": "The current progress as a percentage, 0 to 100.\nThe value will be clamped between 0 and 100.",
12570
+ "fieldName": "value",
12571
+ "inheritedFrom": {
12572
+ "name": "Progressbar",
12573
+ "module": "src/components/progressbar/progressbar.component.ts"
12574
+ }
12575
+ },
12576
+ {
12577
+ "name": "error",
12578
+ "type": {
12579
+ "text": "boolean"
12580
+ },
12581
+ "default": "false",
12582
+ "description": "Define error state of the progressbar\n- **true**\n- **false**",
12583
+ "fieldName": "error",
12584
+ "inheritedFrom": {
12585
+ "name": "Progressbar",
12586
+ "module": "src/components/progressbar/progressbar.component.ts"
12587
+ }
12588
+ },
12589
+ {
12590
+ "name": "disabled",
12591
+ "type": {
12592
+ "text": "boolean | undefined"
12593
+ },
12594
+ "description": "Indicates whether the component is disabled.\nWhen the component is disabled for user interaction; it is not focusable or clickable.",
12595
+ "default": "undefined",
12596
+ "fieldName": "disabled",
12597
+ "inheritedFrom": {
12598
+ "name": "FormfieldWrapper",
12599
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
12600
+ }
12601
+ },
12602
+ {
12603
+ "name": "label",
12604
+ "type": {
12605
+ "text": "string | undefined"
12606
+ },
12607
+ "description": "The label of the input field. It is linked to the input field using the `for` attribute.",
12608
+ "fieldName": "label",
12609
+ "inheritedFrom": {
12610
+ "name": "FormfieldWrapper",
12611
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
12612
+ }
12613
+ },
12614
+ {
12615
+ "name": "required-label",
12616
+ "type": {
12617
+ "text": "string | undefined"
12618
+ },
12619
+ "description": "The required label of the input field.\nWhen an appropriate string value is set,\nthe input field is marked as required and the label is appended with this text.",
12620
+ "fieldName": "requiredLabel",
12621
+ "inheritedFrom": {
12622
+ "name": "FormfieldWrapper",
12623
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
12624
+ }
12625
+ },
12626
+ {
12627
+ "name": "id",
12628
+ "type": {
12629
+ "text": "string"
12630
+ },
12631
+ "default": "''",
12632
+ "description": "The unique id of the input field. It is used to link the input field with the label.",
12633
+ "fieldName": "id",
12634
+ "inheritedFrom": {
12635
+ "name": "FormfieldWrapper",
12636
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
12637
+ }
12638
+ },
12639
+ {
12640
+ "name": "help-text-type",
12641
+ "type": {
12642
+ "text": "ValidationType"
12643
+ },
12644
+ "description": "The type of help text. It can be 'default', 'error', 'warning', 'success', 'priority'.",
12645
+ "fieldName": "helpTextType",
12646
+ "inheritedFrom": {
12647
+ "name": "FormfieldWrapper",
12648
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
12649
+ }
12650
+ },
12651
+ {
12652
+ "name": "help-text",
12653
+ "type": {
12654
+ "text": "string | undefined"
12655
+ },
12656
+ "description": "The help text that is displayed below the input field.",
12657
+ "fieldName": "helpText",
12658
+ "inheritedFrom": {
12659
+ "name": "FormfieldWrapper",
12660
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
12661
+ }
12662
+ }
12663
+ ],
12664
+ "slots": [
12665
+ {
12666
+ "description": "slot to add the label info icon",
12667
+ "name": "label-info",
12668
+ "inheritedFrom": {
12669
+ "name": "FormfieldWrapper",
12670
+ "module": "src/components/formfieldwrapper/formfieldwrapper.component.ts"
12671
+ }
12672
+ }
12673
+ ]
12674
+ }
12675
+ ],
12676
+ "exports": [
12677
+ {
12678
+ "kind": "js",
12679
+ "name": "default",
12680
+ "declaration": {
12681
+ "name": "Progressspinner",
12682
+ "module": "components/progressspinner/progressspinner.component.js"
12683
+ }
12684
+ }
12685
+ ]
12686
+ },
12125
12687
  {
12126
12688
  "kind": "javascript-module",
12127
12689
  "path": "components/radio/radio.component.js",
package/dist/index.d.ts CHANGED
@@ -25,6 +25,7 @@ import Option from './components/option';
25
25
  import Popover from './components/popover';
26
26
  import Presence from './components/presence';
27
27
  import Progressbar from './components/progressbar';
28
+ import Progressspinner from './components/progressspinner';
28
29
  import Radio from './components/radio';
29
30
  import RadioGroup from './components/radiogroup';
30
31
  import ScreenreaderAnnouncer from './components/screenreaderannouncer';
@@ -46,6 +47,6 @@ import type { SpinnerSize, SpinnerVariant } from './components/spinner/spinner.t
46
47
  import type { TextType } from './components/text/text.types';
47
48
  import { inMemoryCache, webAPIIconsCache } from './utils/icon-cache';
48
49
  import { BUTTON_COLORS, BUTTON_VARIANTS, ICON_BUTTON_SIZES, PILL_BUTTON_SIZES } from './components/button/button.constants';
49
- export { AlertChip, Avatar, AvatarButton, Badge, Bullet, Button, Checkbox, Chip, Coachmark, Divider, FilterChip, FormfieldGroup, Icon, IconProvider, Input, InputChip, Link, List, ListItem, Marker, Popover, Presence, Radio, RadioGroup, Spinner, Tab, Text, ThemeProvider, Toggle, VirtualizedList, Option, OptGroup, Progressbar, ScreenreaderAnnouncer, Textarea, Tooltip, Searchfield, Brandvisual, Appheader, Select, TabList, };
50
+ export { AlertChip, Avatar, AvatarButton, Badge, Bullet, Button, Checkbox, Chip, Coachmark, Divider, FilterChip, FormfieldGroup, Icon, IconProvider, Input, InputChip, Link, List, ListItem, Marker, Popover, Presence, Radio, RadioGroup, Spinner, Tab, Text, ThemeProvider, Toggle, VirtualizedList, Option, OptGroup, Progressbar, ScreenreaderAnnouncer, Textarea, Tooltip, Searchfield, Brandvisual, Appheader, Select, TabList, Progressspinner, };
50
51
  export type { TextType, SpinnerSize, SpinnerVariant, PopoverPlacement, BadgeType, IconButtonSize, PillButtonSize, ButtonVariant, ButtonColor, };
51
52
  export { inMemoryCache, webAPIIconsCache, BUTTON_COLORS, BUTTON_VARIANTS, ICON_BUTTON_SIZES, PILL_BUTTON_SIZES };
package/dist/index.js CHANGED
@@ -26,6 +26,7 @@ import Option from './components/option';
26
26
  import Popover from './components/popover';
27
27
  import Presence from './components/presence';
28
28
  import Progressbar from './components/progressbar';
29
+ import Progressspinner from './components/progressspinner';
29
30
  import Radio from './components/radio';
30
31
  import RadioGroup from './components/radiogroup';
31
32
  import ScreenreaderAnnouncer from './components/screenreaderannouncer';
@@ -44,6 +45,6 @@ import { inMemoryCache, webAPIIconsCache } from './utils/icon-cache';
44
45
  // Constants / Utils Imports
45
46
  import { BUTTON_COLORS, BUTTON_VARIANTS, ICON_BUTTON_SIZES, PILL_BUTTON_SIZES, } from './components/button/button.constants';
46
47
  // Components Exports
47
- export { AlertChip, Avatar, AvatarButton, Badge, Bullet, Button, Checkbox, Chip, Coachmark, Divider, FilterChip, FormfieldGroup, Icon, IconProvider, Input, InputChip, Link, List, ListItem, Marker, Popover, Presence, Radio, RadioGroup, Spinner, Tab, Text, ThemeProvider, Toggle, VirtualizedList, Option, OptGroup, Progressbar, ScreenreaderAnnouncer, Textarea, Tooltip, Searchfield, Brandvisual, Appheader, Select, TabList, };
48
+ export { AlertChip, Avatar, AvatarButton, Badge, Bullet, Button, Checkbox, Chip, Coachmark, Divider, FilterChip, FormfieldGroup, Icon, IconProvider, Input, InputChip, Link, List, ListItem, Marker, Popover, Presence, Radio, RadioGroup, Spinner, Tab, Text, ThemeProvider, Toggle, VirtualizedList, Option, OptGroup, Progressbar, ScreenreaderAnnouncer, Textarea, Tooltip, Searchfield, Brandvisual, Appheader, Select, TabList, Progressspinner, };
48
49
  // Constants / Utils Exports
49
50
  export { inMemoryCache, webAPIIconsCache, BUTTON_COLORS, BUTTON_VARIANTS, ICON_BUTTON_SIZES, PILL_BUTTON_SIZES };
@@ -14,6 +14,10 @@ import Component from '../../components/avatarbutton';
14
14
  * @event focus - (React: onFocus) This event is dispatched when the avatarbutton receives focus.
15
15
  *
16
16
  * @tagname mdc-avatarbutton
17
+ *
18
+ * @cssproperty --mdc-avatarbutton-overlay-background-color-rest - Background color of the overlay in rest state
19
+ * @cssproperty --mdc-avatarbutton-overlay-background-color-hover - Background color of the overlay in hover state
20
+ * @cssproperty --mdc-avatarbutton-overlay-background-color-active - Background color of the overlay in active state
17
21
  */
18
22
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
19
23
  onClick: EventName<MouseEvent>;
@@ -16,6 +16,10 @@ import { TAG_NAME } from '../../components/avatarbutton/avatarbutton.constants';
16
16
  * @event focus - (React: onFocus) This event is dispatched when the avatarbutton receives focus.
17
17
  *
18
18
  * @tagname mdc-avatarbutton
19
+ *
20
+ * @cssproperty --mdc-avatarbutton-overlay-background-color-rest - Background color of the overlay in rest state
21
+ * @cssproperty --mdc-avatarbutton-overlay-background-color-hover - Background color of the overlay in hover state
22
+ * @cssproperty --mdc-avatarbutton-overlay-background-color-active - Background color of the overlay in active state
19
23
  */
20
24
  const reactWrapper = createComponent({
21
25
  tagName: TAG_NAME,
@@ -27,6 +27,7 @@ export { default as Option } from './option';
27
27
  export { default as Popover } from './popover';
28
28
  export { default as Presence } from './presence';
29
29
  export { default as Progressbar } from './progressbar';
30
+ export { default as Progressspinner } from './progressspinner';
30
31
  export { default as Radio } from './radio';
31
32
  export { default as RadioGroup } from './radiogroup';
32
33
  export { default as ScreenreaderAnnouncer } from './screenreaderannouncer';
@@ -27,6 +27,7 @@ export { default as Option } from './option';
27
27
  export { default as Popover } from './popover';
28
28
  export { default as Presence } from './presence';
29
29
  export { default as Progressbar } from './progressbar';
30
+ export { default as Progressspinner } from './progressspinner';
30
31
  export { default as Radio } from './radio';
31
32
  export { default as RadioGroup } from './radiogroup';
32
33
  export { default as ScreenreaderAnnouncer } from './screenreaderannouncer';