@momentum-design/components 0.106.6 → 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.
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +2 -2
- package/dist/components/alertchip/alertchip.component.d.ts +5 -0
- package/dist/components/alertchip/alertchip.component.js +5 -0
- package/dist/components/alertchip/alertchip.types.d.ts +9 -2
- package/dist/components/chip/chip.component.d.ts +7 -0
- package/dist/components/chip/chip.component.js +7 -0
- package/dist/components/chip/chip.types.d.ts +9 -2
- package/dist/components/filterchip/filterchip.component.d.ts +13 -0
- package/dist/components/filterchip/filterchip.component.js +13 -0
- package/dist/components/filterchip/filterchip.types.d.ts +9 -0
- package/dist/components/filterchip/filterchip.types.js +1 -0
- package/dist/components/inputchip/inputchip.component.d.ts +4 -0
- package/dist/components/inputchip/inputchip.component.js +5 -1
- package/dist/custom-elements.json +1646 -1616
- package/dist/react/alertchip/index.d.ts +5 -0
- package/dist/react/alertchip/index.js +5 -0
- package/dist/react/chip/index.d.ts +7 -0
- package/dist/react/chip/index.js +7 -0
- package/dist/react/filterchip/index.d.ts +13 -0
- package/dist/react/filterchip/index.js +13 -0
- package/dist/react/index.d.ts +4 -4
- package/dist/react/index.js +4 -4
- package/dist/react/inputchip/index.d.ts +4 -0
- package/dist/react/inputchip/index.js +4 -0
- package/package.json +1 -1
@@ -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>>;
|
package/dist/react/chip/index.js
CHANGED
@@ -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,
|
package/dist/react/index.d.ts
CHANGED
@@ -13,13 +13,14 @@ export { default as Button } from './button';
|
|
13
13
|
export { default as ButtonGroup } from './buttongroup';
|
14
14
|
export { default as ButtonLink } from './buttonlink';
|
15
15
|
export { default as Buttonsimple } from './buttonsimple';
|
16
|
-
export { default as CardCheckbox } from './cardcheckbox';
|
17
16
|
export { default as Card } from './card';
|
18
17
|
export { default as CardButton } from './cardbutton';
|
18
|
+
export { default as CardCheckbox } from './cardcheckbox';
|
19
19
|
export { default as CardRadio } from './cardradio';
|
20
20
|
export { default as Checkbox } from './checkbox';
|
21
21
|
export { default as Chip } from './chip';
|
22
22
|
export { default as Coachmark } from './coachmark';
|
23
|
+
export { default as Combobox } from './combobox';
|
23
24
|
export { default as Dialog } from './dialog';
|
24
25
|
export { default as Divider } from './divider';
|
25
26
|
export { default as FilterChip } from './filterchip';
|
@@ -32,9 +33,8 @@ export { default as InputChip } from './inputchip';
|
|
32
33
|
export { default as Link } from './link';
|
33
34
|
export { default as LinkButton } from './linkbutton';
|
34
35
|
export { default as Linksimple } from './linksimple';
|
35
|
-
export { default as Combobox } from './combobox';
|
36
|
-
export { default as ListBox } from './listbox';
|
37
36
|
export { default as List } from './list';
|
37
|
+
export { default as ListBox } from './listbox';
|
38
38
|
export { default as Listheader } from './listheader';
|
39
39
|
export { default as ListItem } from './listitem';
|
40
40
|
export { default as Marker } from './marker';
|
@@ -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';
|
package/dist/react/index.js
CHANGED
@@ -13,13 +13,14 @@ export { default as Button } from './button';
|
|
13
13
|
export { default as ButtonGroup } from './buttongroup';
|
14
14
|
export { default as ButtonLink } from './buttonlink';
|
15
15
|
export { default as Buttonsimple } from './buttonsimple';
|
16
|
-
export { default as CardCheckbox } from './cardcheckbox';
|
17
16
|
export { default as Card } from './card';
|
18
17
|
export { default as CardButton } from './cardbutton';
|
18
|
+
export { default as CardCheckbox } from './cardcheckbox';
|
19
19
|
export { default as CardRadio } from './cardradio';
|
20
20
|
export { default as Checkbox } from './checkbox';
|
21
21
|
export { default as Chip } from './chip';
|
22
22
|
export { default as Coachmark } from './coachmark';
|
23
|
+
export { default as Combobox } from './combobox';
|
23
24
|
export { default as Dialog } from './dialog';
|
24
25
|
export { default as Divider } from './divider';
|
25
26
|
export { default as FilterChip } from './filterchip';
|
@@ -32,9 +33,8 @@ export { default as InputChip } from './inputchip';
|
|
32
33
|
export { default as Link } from './link';
|
33
34
|
export { default as LinkButton } from './linkbutton';
|
34
35
|
export { default as Linksimple } from './linksimple';
|
35
|
-
export { default as Combobox } from './combobox';
|
36
|
-
export { default as ListBox } from './listbox';
|
37
36
|
export { default as List } from './list';
|
37
|
+
export { default as ListBox } from './listbox';
|
38
38
|
export { default as Listheader } from './listheader';
|
39
39
|
export { default as ListItem } from './listitem';
|
40
40
|
export { default as Marker } from './marker';
|
@@ -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.
|