@momentum-design/components 0.104.6 → 0.104.7
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 +262 -257
- package/dist/browser/index.js.map +4 -4
- package/dist/components/combobox/combobox.component.d.ts +16 -0
- package/dist/components/combobox/combobox.component.js +20 -0
- package/dist/components/combobox/combobox.constants.d.ts +2 -0
- package/dist/components/combobox/combobox.constants.js +3 -0
- package/dist/components/combobox/combobox.styles.d.ts +2 -0
- package/dist/components/combobox/combobox.styles.js +7 -0
- package/dist/components/combobox/combobox.types.d.ts +3 -0
- package/dist/components/combobox/combobox.types.js +2 -0
- package/dist/components/combobox/index.d.ts +7 -0
- package/dist/components/combobox/index.js +4 -0
- package/dist/custom-elements.json +3244 -3203
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -1
- package/dist/react/combobox/index.d.ts +12 -0
- package/dist/react/combobox/index.js +21 -0
- package/dist/react/index.d.ts +4 -3
- package/dist/react/index.js +4 -3
- package/dist/utils/roles.d.ts +1 -0
- package/dist/utils/roles.js +1 -0
- package/package.json +1 -1
@@ -0,0 +1,16 @@
|
|
1
|
+
import { CSSResult } from 'lit';
|
2
|
+
import { Component } from '../../models';
|
3
|
+
/**
|
4
|
+
* combobox component, which ...
|
5
|
+
*
|
6
|
+
* @tagname mdc-combobox
|
7
|
+
*
|
8
|
+
* @slot default - This is a default/unnamed slot
|
9
|
+
*
|
10
|
+
* @cssproperty --custom-property-name - Description of the CSS custom property
|
11
|
+
*/
|
12
|
+
declare class Combobox extends Component {
|
13
|
+
render(): import("lit-html").TemplateResult<1>;
|
14
|
+
static styles: Array<CSSResult>;
|
15
|
+
}
|
16
|
+
export default Combobox;
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { html } from 'lit';
|
2
|
+
import { Component } from '../../models';
|
3
|
+
import styles from './combobox.styles';
|
4
|
+
/**
|
5
|
+
* combobox component, which ...
|
6
|
+
*
|
7
|
+
* @tagname mdc-combobox
|
8
|
+
*
|
9
|
+
* @slot default - This is a default/unnamed slot
|
10
|
+
*
|
11
|
+
* @cssproperty --custom-property-name - Description of the CSS custom property
|
12
|
+
*/
|
13
|
+
class Combobox extends Component {
|
14
|
+
render() {
|
15
|
+
return html `<p>This is a dummy combobox component!</p>
|
16
|
+
<slot></slot>`;
|
17
|
+
}
|
18
|
+
}
|
19
|
+
Combobox.styles = [...Component.styles, ...styles];
|
20
|
+
export default Combobox;
|