@momentum-design/components 0.106.7 → 0.106.8

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.
@@ -20,6 +20,11 @@ import Component from '../../components/alertchip';
20
20
  *
21
21
  * @csspart icon - The alert icon
22
22
  * @csspart label - The text label of the alertchip
23
+ *
24
+ * @event click - (React: onClick) This event is dispatched when the chip is clicked.
25
+ * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the chip.
26
+ * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the chip.
27
+ * @event focus - (React: onFocus) This event is dispatched when the chip receives focus.
23
28
  */
24
29
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
25
30
  onClick: EventName<import("../../utils/types").OverrideEventTarget<MouseEvent, import("../../components/buttonsimple/buttonsimple.component").default>>;
@@ -22,6 +22,11 @@ import { TAG_NAME } from '../../components/alertchip/alertchip.constants';
22
22
  *
23
23
  * @csspart icon - The alert icon
24
24
  * @csspart label - The text label of the alertchip
25
+ *
26
+ * @event click - (React: onClick) This event is dispatched when the chip is clicked.
27
+ * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the chip.
28
+ * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the chip.
29
+ * @event focus - (React: onFocus) This event is dispatched when the chip receives focus.
25
30
  */
26
31
  const reactWrapper = createComponent({
27
32
  tagName: TAG_NAME,
@@ -19,6 +19,13 @@ import Component from '../../components/chip';
19
19
  * @cssproperty --mdc-chip-border-color - The border color of the chip.
20
20
  * @cssproperty --mdc-chip-background-color - The background color of the chip.
21
21
  *
22
+ * @csspart label - The label part of the chip.
23
+ *
24
+ * @event click - (React: onClick) This event is dispatched when the chip is clicked.
25
+ * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the chip.
26
+ * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the chip.
27
+ * @event focus - (React: onFocus) This event is dispatched when the chip receives focus.
28
+ *
22
29
  */
23
30
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
24
31
  onClick: EventName<import("../../utils/types").OverrideEventTarget<MouseEvent, import("../../components/buttonsimple/buttonsimple.component").default>>;
@@ -21,6 +21,13 @@ import { TAG_NAME } from '../../components/chip/chip.constants';
21
21
  * @cssproperty --mdc-chip-border-color - The border color of the chip.
22
22
  * @cssproperty --mdc-chip-background-color - The background color of the chip.
23
23
  *
24
+ * @csspart label - The label part of the chip.
25
+ *
26
+ * @event click - (React: onClick) This event is dispatched when the chip is clicked.
27
+ * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the chip.
28
+ * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the chip.
29
+ * @event focus - (React: onFocus) This event is dispatched when the chip receives focus.
30
+ *
24
31
  */
25
32
  const reactWrapper = createComponent({
26
33
  tagName: TAG_NAME,
@@ -8,6 +8,19 @@ import Component from '../../components/filterchip';
8
8
  *
9
9
  * @tagname mdc-filterchip
10
10
  *
11
+ * @dependency mdc-icon
12
+ * @dependency mdc-text
13
+ *
14
+ * @csspart label - The label part of the chip.
15
+ *
16
+ * @cssproperty --mdc-chip-color - The color of the chip.
17
+ * @cssproperty --mdc-chip-border-color - The border color of the chip.
18
+ * @cssproperty --mdc-chip-background-color - The background color of the chip.
19
+ *
20
+ * @event click - (React: onClick) This event is dispatched when the chip is clicked.
21
+ * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the chip.
22
+ * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the chip.
23
+ * @event focus - (React: onFocus) This event is dispatched when the chip receives focus.
11
24
  */
12
25
  declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
13
26
  onClick: EventName<import("../../utils/types").OverrideEventTarget<MouseEvent, import("../../components/buttonsimple/buttonsimple.component").default>>;
@@ -10,6 +10,19 @@ import { TAG_NAME } from '../../components/filterchip/filterchip.constants';
10
10
  *
11
11
  * @tagname mdc-filterchip
12
12
  *
13
+ * @dependency mdc-icon
14
+ * @dependency mdc-text
15
+ *
16
+ * @csspart label - The label part of the chip.
17
+ *
18
+ * @cssproperty --mdc-chip-color - The color of the chip.
19
+ * @cssproperty --mdc-chip-border-color - The border color of the chip.
20
+ * @cssproperty --mdc-chip-background-color - The background color of the chip.
21
+ *
22
+ * @event click - (React: onClick) This event is dispatched when the chip is clicked.
23
+ * @event keydown - (React: onKeyDown) This event is dispatched when a key is pressed down on the chip.
24
+ * @event keyup - (React: onKeyUp) This event is dispatched when a key is released on the chip.
25
+ * @event focus - (React: onFocus) This event is dispatched when the chip receives focus.
13
26
  */
14
27
  const reactWrapper = createComponent({
15
28
  tagName: TAG_NAME,
@@ -39,8 +39,8 @@ export { default as Listheader } from './listheader';
39
39
  export { default as ListItem } from './listitem';
40
40
  export { default as Marker } from './marker';
41
41
  export { default as MenuBar } from './menubar';
42
- export { default as MenuItemCheckbox } from './menuitemcheckbox';
43
42
  export { default as MenuItem } from './menuitem';
43
+ export { default as MenuItemCheckbox } from './menuitemcheckbox';
44
44
  export { default as MenuItemRadio } from './menuitemradio';
45
45
  export { default as MenuPopover } from './menupopover';
46
46
  export { default as MenuSection } from './menusection';
@@ -60,10 +60,10 @@ export { default as Select } from './select';
60
60
  export { default as Selectlistbox } from './selectlistbox';
61
61
  export { default as SideNavigation } from './sidenavigation';
62
62
  export { default as Skeleton } from './skeleton';
63
- export { default as Slider } from './slider';
64
63
  export { default as Spinner } from './spinner';
65
64
  export { default as StaticCheckbox } from './staticcheckbox';
66
65
  export { default as StaticRadio } from './staticradio';
66
+ export { default as Slider } from './slider';
67
67
  export { default as StaticToggle } from './statictoggle';
68
68
  export { default as Stepper } from './stepper';
69
69
  export { default as StepperConnector } from './stepperconnector';
@@ -39,8 +39,8 @@ export { default as Listheader } from './listheader';
39
39
  export { default as ListItem } from './listitem';
40
40
  export { default as Marker } from './marker';
41
41
  export { default as MenuBar } from './menubar';
42
- export { default as MenuItemCheckbox } from './menuitemcheckbox';
43
42
  export { default as MenuItem } from './menuitem';
43
+ export { default as MenuItemCheckbox } from './menuitemcheckbox';
44
44
  export { default as MenuItemRadio } from './menuitemradio';
45
45
  export { default as MenuPopover } from './menupopover';
46
46
  export { default as MenuSection } from './menusection';
@@ -60,10 +60,10 @@ export { default as Select } from './select';
60
60
  export { default as Selectlistbox } from './selectlistbox';
61
61
  export { default as SideNavigation } from './sidenavigation';
62
62
  export { default as Skeleton } from './skeleton';
63
- export { default as Slider } from './slider';
64
63
  export { default as Spinner } from './spinner';
65
64
  export { default as StaticCheckbox } from './staticcheckbox';
66
65
  export { default as StaticRadio } from './staticradio';
66
+ export { default as Slider } from './slider';
67
67
  export { default as StaticToggle } from './statictoggle';
68
68
  export { default as Stepper } from './stepper';
69
69
  export { default as StepperConnector } from './stepperconnector';
@@ -15,6 +15,10 @@ import Component from '../../components/inputchip';
15
15
  *
16
16
  * @event remove - This event is dispatched when the close button is activated. It bubbles and is composed.
17
17
  *
18
+ * @csspart label - The label part of the chip.
19
+ * @csspart icon - The icon part of the chip.
20
+ * @csspart close-icon - The close icon part of the chip.
21
+ *
18
22
  * @cssproperty --mdc-chip-color - The color of the chip.
19
23
  * @cssproperty --mdc-chip-border-color - The border color of the chip.
20
24
  * @cssproperty --mdc-chip-background-color - The background color of the chip.
@@ -17,6 +17,10 @@ import { TAG_NAME } from '../../components/inputchip/inputchip.constants';
17
17
  *
18
18
  * @event remove - This event is dispatched when the close button is activated. It bubbles and is composed.
19
19
  *
20
+ * @csspart label - The label part of the chip.
21
+ * @csspart icon - The icon part of the chip.
22
+ * @csspart close-icon - The close icon part of the chip.
23
+ *
20
24
  * @cssproperty --mdc-chip-color - The color of the chip.
21
25
  * @cssproperty --mdc-chip-border-color - The border color of the chip.
22
26
  * @cssproperty --mdc-chip-background-color - The background color of the chip.
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.106.7",
4
+ "version": "0.106.8",
5
5
  "engines": {
6
6
  "node": ">=20.0.0",
7
7
  "npm": ">=8.0.0"