@momentum-design/components 0.103.0 → 0.103.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.
@@ -31,6 +31,8 @@ import Component from '../../components/button';
31
31
  * @tagname mdc-button
32
32
  *
33
33
  * @slot - Text label of the button.
34
+ *
35
+ * @csspart button-text - Text label of the button, passed in default slot
34
36
  */
35
37
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
36
38
  onClick: EventName<MouseEvent>;
@@ -33,6 +33,8 @@ import { TAG_NAME } from '../../components/button/button.constants';
33
33
  * @tagname mdc-button
34
34
  *
35
35
  * @slot - Text label of the button.
36
+ *
37
+ * @csspart button-text - Text label of the button, passed in default slot
36
38
  */
37
39
  const reactWrapper = createComponent({
38
40
  tagName: TAG_NAME,
@@ -1,6 +1,6 @@
1
- export { default as Accordion } from './accordion';
2
- export { default as AccordionButton } from './accordionbutton';
3
1
  export { default as AccordionGroup } from './accordiongroup';
2
+ export { default as AccordionButton } from './accordionbutton';
3
+ export { default as Accordion } from './accordion';
4
4
  export { default as AlertChip } from './alertchip';
5
5
  export { default as Animation } from './animation';
6
6
  export { default as Appheader } from './appheader';
@@ -1,6 +1,6 @@
1
- export { default as Accordion } from './accordion';
2
- export { default as AccordionButton } from './accordionbutton';
3
1
  export { default as AccordionGroup } from './accordiongroup';
2
+ export { default as AccordionButton } from './accordionbutton';
3
+ export { default as Accordion } from './accordion';
4
4
  export { default as AlertChip } from './alertchip';
5
5
  export { default as Animation } from './animation';
6
6
  export { default as Appheader } from './appheader';
@@ -27,6 +27,20 @@ import Component from '../../components/select';
27
27
  * @event input - (React: onInput) This event is dispatched when the select is changed.
28
28
  * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the select.
29
29
  * @event focus - (React: onFocus) This event is dispatched when the select receives focus.
30
+ *
31
+ * @cssproperty --mdc-select-background-color - The background color of the combobox of select.
32
+ * @cssproperty --mdc-select-background-color-hover - The background color of the combobox of select when hovered.
33
+ * @cssproperty --mdc-select-background-color-active - The background color of the combobox of select when active.
34
+ * @cssproperty --mdc-select-background-color-disabled - The background color of the combobox of select when disabled.
35
+ * @cssproperty --mdc-select-text-color - The text color of the select.
36
+ * @cssproperty --mdc-select-text-color-selected - The text color of the selected option in the select.
37
+ * @cssproperty --mdc-select-text-color-disabled - The text color of the select when disabled.
38
+ * @cssproperty --mdc-select-border-color - The border color of the select.
39
+ * @cssproperty --mdc-select-border-color-disabled - The border color of the select when disabled.
40
+ * @cssproperty --mdc-select-border-color-success - The border color of the select when in success state.
41
+ * @cssproperty --mdc-select-border-color-warning - The border color of the select when in warning state.
42
+ * @cssproperty --mdc-select-border-color-error - The border color of the select when in error state.
43
+ * @cssproperty --mdc-select-width - The width of the select.
30
44
  */
31
45
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
32
46
  onChange: EventName<import("../../components/select/select.types").SelectChangeEvent>;
@@ -29,6 +29,20 @@ import { TAG_NAME } from '../../components/select/select.constants';
29
29
  * @event input - (React: onInput) This event is dispatched when the select is changed.
30
30
  * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the select.
31
31
  * @event focus - (React: onFocus) This event is dispatched when the select receives focus.
32
+ *
33
+ * @cssproperty --mdc-select-background-color - The background color of the combobox of select.
34
+ * @cssproperty --mdc-select-background-color-hover - The background color of the combobox of select when hovered.
35
+ * @cssproperty --mdc-select-background-color-active - The background color of the combobox of select when active.
36
+ * @cssproperty --mdc-select-background-color-disabled - The background color of the combobox of select when disabled.
37
+ * @cssproperty --mdc-select-text-color - The text color of the select.
38
+ * @cssproperty --mdc-select-text-color-selected - The text color of the selected option in the select.
39
+ * @cssproperty --mdc-select-text-color-disabled - The text color of the select when disabled.
40
+ * @cssproperty --mdc-select-border-color - The border color of the select.
41
+ * @cssproperty --mdc-select-border-color-disabled - The border color of the select when disabled.
42
+ * @cssproperty --mdc-select-border-color-success - The border color of the select when in success state.
43
+ * @cssproperty --mdc-select-border-color-warning - The border color of the select when in warning state.
44
+ * @cssproperty --mdc-select-border-color-error - The border color of the select when in error state.
45
+ * @cssproperty --mdc-select-width - The width of the select.
32
46
  */
33
47
  const reactWrapper = createComponent({
34
48
  tagName: TAG_NAME,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@momentum-design/components",
3
3
  "packageManager": "yarn@3.2.4",
4
- "version": "0.103.0",
4
+ "version": "0.103.2",
5
5
  "engines": {
6
6
  "node": ">=20.0.0",
7
7
  "npm": ">=8.0.0"