@covalent/components 11.0.0 → 11.0.1-beta.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.
Files changed (67) hide show
  1. package/package.json +1 -58
  2. package/action-ribbon/action-ribbon-base.d.ts +0 -29
  3. package/action-ribbon/action-ribbon.d.ts +0 -15
  4. package/alert/alert-base.d.ts +0 -36
  5. package/alert/alert.d.ts +0 -15
  6. package/app-shell/app-shell.d.ts +0 -75
  7. package/badge/badge.d.ts +0 -50
  8. package/button/button.d.ts +0 -10
  9. package/card/card-base.d.ts +0 -28
  10. package/card/card.d.ts +0 -10
  11. package/checkbox/checkbox.d.ts +0 -10
  12. package/chips/chip-base.d.ts +0 -51
  13. package/chips/chip-set-base.d.ts +0 -32
  14. package/chips/chip-set.d.ts +0 -15
  15. package/chips/chip.d.ts +0 -15
  16. package/circular-progress/circular-progress.d.ts +0 -10
  17. package/code-editor/code-editor.d.ts +0 -62
  18. package/code-editor/code-editor.theme.d.ts +0 -72
  19. package/code-snippet/code-snippet.d.ts +0 -22
  20. package/dialog/dialog.d.ts +0 -14
  21. package/drawer/drawer.d.ts +0 -10
  22. package/empty-state/empty-state.d.ts +0 -16
  23. package/expansion-panel/expansion-panel-item.d.ts +0 -26
  24. package/expansion-panel/expansion-panel.d.ts +0 -15
  25. package/focused-page/focused-page.d.ts +0 -54
  26. package/formfield/formfield.d.ts +0 -10
  27. package/full-screen-dialog/full-screen-dialog.d.ts +0 -31
  28. package/icon/_icon-list.d.ts +0 -3
  29. package/icon/icon-demo.d.ts +0 -13
  30. package/icon/icon.d.ts +0 -10
  31. package/icon-button/icon-button.d.ts +0 -10
  32. package/icon-button-toggle/icon-button-toggle.d.ts +0 -18
  33. package/icon-checkbox/icon-check-toggle.d.ts +0 -16
  34. package/icon-lockup/icon-lockup.d.ts +0 -63
  35. package/icon-radio/icon-radio-toggle.d.ts +0 -13
  36. package/index.d.ts +0 -59
  37. package/linear-progress/linear-progress.d.ts +0 -10
  38. package/list/check-list-item.d.ts +0 -10
  39. package/list/list-item.d.ts +0 -10
  40. package/list/list.d.ts +0 -10
  41. package/list/nav-list-item.d.ts +0 -29
  42. package/list/radio-list-item.d.ts +0 -10
  43. package/menu/menu.d.ts +0 -10
  44. package/notebook-cell/notebook-cell.d.ts +0 -95
  45. package/radio/radio.d.ts +0 -10
  46. package/select/select.d.ts +0 -10
  47. package/side-sheet/side-sheet.d.ts +0 -17
  48. package/slider/slider-range.d.ts +0 -10
  49. package/slider/slider.d.ts +0 -10
  50. package/snackbar/snackbar.d.ts +0 -10
  51. package/status-dialog/status-dialog.d.ts +0 -36
  52. package/status-header/status-header-base.d.ts +0 -8
  53. package/status-header/status-header-item.d.ts +0 -17
  54. package/status-header/status-header.d.ts +0 -15
  55. package/switch/switch.d.ts +0 -10
  56. package/tab/tab-bar.d.ts +0 -10
  57. package/tab/tab.d.ts +0 -10
  58. package/text-lockup/text-lockup.d.ts +0 -18
  59. package/textarea/textarea.d.ts +0 -10
  60. package/textfield/textfield.d.ts +0 -11
  61. package/toolbar/toolbar.d.ts +0 -14
  62. package/tooltip/tooltip.d.ts +0 -27
  63. package/top-app-bar/top-app-bar-fixed.d.ts +0 -10
  64. package/top-app-bar/top-app-bar.d.ts +0 -10
  65. package/tree-list/tree-list-item.d.ts +0 -17
  66. package/tree-list/tree-list.d.ts +0 -11
  67. package/typography/typography.d.ts +0 -12
@@ -1,15 +0,0 @@
1
- import { ChipSetBase } from './chip-set-base';
2
- /**
3
- * Action ribbon
4
- *
5
- * @slot - This element has a slot
6
- */
7
- export declare class CovalentChipSet extends ChipSetBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- declare global {
11
- interface HTMLElementTagNameMap {
12
- 'cv-chip-set': CovalentChipSet;
13
- }
14
- }
15
- export default CovalentChipSet;
package/chips/chip.d.ts DELETED
@@ -1,15 +0,0 @@
1
- import { ChipBase } from './chip-base';
2
- /**
3
- * Action ribbon
4
- *
5
- * @slot - This element has a slot
6
- */
7
- export declare class CovalentChip extends ChipBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- declare global {
11
- interface HTMLElementTagNameMap {
12
- 'cv-chip': CovalentChip;
13
- }
14
- }
15
- export default CovalentChip;
@@ -1,10 +0,0 @@
1
- import { CircularProgressBase } from '@material/mwc-circular-progress/mwc-circular-progress-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-circular-progress': CovalentCircularProgress;
5
- }
6
- }
7
- export declare class CovalentCircularProgress extends CircularProgressBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- export default CovalentCircularProgress;
@@ -1,62 +0,0 @@
1
- import { LitElement, PropertyValues } from 'lit';
2
- import { editor } from 'monaco-editor/esm/vs/editor/editor.api.js';
3
- import 'monaco-editor/esm/vs/basic-languages/html/html.contribution';
4
- import 'monaco-editor/esm/vs/basic-languages/css/css.contribution';
5
- import 'monaco-editor/esm/vs/basic-languages/javascript/javascript.contribution';
6
- import 'monaco-editor/esm/vs/basic-languages/typescript/typescript.contribution';
7
- import 'monaco-editor/esm/vs/basic-languages/python/python.contribution';
8
- import 'monaco-editor/esm/vs/basic-languages/sql/sql.contribution';
9
- import 'monaco-editor/esm/vs/basic-languages/markdown/markdown.contribution';
10
- import 'monaco-editor/esm/vs/basic-languages/r/r.contribution';
11
- export declare class CovalentCodeEditor extends LitElement {
12
- /**
13
- * The container where editor will be created
14
- */
15
- private container;
16
- /**
17
- * Editor instance
18
- */
19
- editor?: editor.IStandaloneCodeEditor;
20
- /**
21
- * Theme of the editor
22
- */
23
- theme?: string;
24
- /**
25
- * Language of th editor instance
26
- */
27
- language?: string;
28
- /**
29
- * Code entered into the editor
30
- */
31
- code?: string;
32
- /**
33
- * Disable scroll bar and set the editor height based on content
34
- */
35
- disableScroll?: boolean;
36
- /**
37
- * Options that can be set for the editor
38
- */
39
- options?: editor.IEditorOptions & editor.IGlobalEditorOptions;
40
- static styles: import("lit").CSSResult[];
41
- private getFile;
42
- private getCode;
43
- private getLang;
44
- private getTheme;
45
- private setTheme;
46
- adjustHeight(): void;
47
- createEditor(container: HTMLElement): void;
48
- disconnectedCallback(): void;
49
- firstUpdated(): void;
50
- getEditorInstance(): editor.IStandaloneCodeEditor | undefined;
51
- getValue(): string | undefined;
52
- onModelChange(): void;
53
- render(): import("lit-html").TemplateResult<1>;
54
- setValue(value: string): void;
55
- updated(changedProperties: PropertyValues): void;
56
- }
57
- declare global {
58
- interface HTMLElementTagNameMap {
59
- 'cv-code-editor': CovalentCodeEditor;
60
- }
61
- }
62
- export default CovalentCodeEditor;
@@ -1,72 +0,0 @@
1
- export declare const cvEditorDarkTheme: {
2
- base: string;
3
- inherit: boolean;
4
- rules: ({
5
- token: string;
6
- foreground: string;
7
- background: string;
8
- fontStyle?: undefined;
9
- } | {
10
- token: string;
11
- foreground: string;
12
- background?: undefined;
13
- fontStyle?: undefined;
14
- } | {
15
- token: string;
16
- foreground: string;
17
- fontStyle: string;
18
- background?: undefined;
19
- } | {
20
- token: string;
21
- fontStyle: string;
22
- foreground?: undefined;
23
- background?: undefined;
24
- })[];
25
- colors: {
26
- comment: string;
27
- 'editor.background': string;
28
- 'editor.foreground': string;
29
- 'editorCursor.foreground': string;
30
- 'editorLineNumber.activeForeground': string;
31
- 'editorLineNumber.foreground': string;
32
- 'editor.lineHighlightBackground': string;
33
- 'inputValidation.errorBackground': string;
34
- 'inputValidation.errorBorder': string;
35
- };
36
- };
37
- export declare const cvEditorLightTheme: {
38
- base: string;
39
- inherit: boolean;
40
- rules: ({
41
- token: string;
42
- foreground: string;
43
- background: string;
44
- fontStyle?: undefined;
45
- } | {
46
- token: string;
47
- foreground: string;
48
- background?: undefined;
49
- fontStyle?: undefined;
50
- } | {
51
- token: string;
52
- foreground: string;
53
- fontStyle: string;
54
- background?: undefined;
55
- } | {
56
- token: string;
57
- fontStyle: string;
58
- foreground?: undefined;
59
- background?: undefined;
60
- })[];
61
- colors: {
62
- comment: string;
63
- 'editor.background': string;
64
- 'editor.foreground': string;
65
- 'editorCursor.foreground': string;
66
- 'editorLineNumber.activeForeground': string;
67
- 'editorLineNumber.foreground': string;
68
- 'editor.lineHighlightBackground': string;
69
- 'inputValidation.errorBackground': string;
70
- 'inputValidation.errorBorder': string;
71
- };
72
- };
@@ -1,22 +0,0 @@
1
- import { LitElement } from 'lit';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-code-snippet': CovalentCodeSnippet;
5
- }
6
- }
7
- export declare class CovalentCodeSnippet extends LitElement {
8
- static styles: import("lit").CSSResult[];
9
- language?: string;
10
- label?: string;
11
- inline: boolean;
12
- hideHeader: boolean;
13
- _codeItems: Array<Node>;
14
- maxHeight?: number;
15
- private _code;
16
- highlight(): void;
17
- firstUpdated(): void;
18
- render(): import("lit-html").TemplateResult<1>;
19
- renderContainer(): import("lit-html").TemplateResult<1>;
20
- renderHeader(): import("lit-html").TemplateResult<1>;
21
- }
22
- export default CovalentCodeSnippet;
@@ -1,14 +0,0 @@
1
- import { DialogBase } from '@material/mwc-dialog/mwc-dialog-base';
2
- import { MDCDialogAdapter } from '@material/dialog/adapter.js';
3
- declare global {
4
- interface HTMLElementTagNameMap {
5
- 'cv-dialog': CovalentDialog;
6
- }
7
- }
8
- export declare class CovalentDialog extends DialogBase {
9
- static styles: import("lit").CSSResult[];
10
- /** Enables/Disables the trap focus functionality that uses blocking-elements library */
11
- trapFocus: boolean;
12
- protected createAdapter(): MDCDialogAdapter;
13
- }
14
- export default CovalentDialog;
@@ -1,10 +0,0 @@
1
- import { DrawerBase } from '@material/mwc-drawer/mwc-drawer-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-drawer': CovalentDrawer;
5
- }
6
- }
7
- export declare class CovalentDrawer extends DrawerBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- export default CovalentDrawer;
@@ -1,16 +0,0 @@
1
- import { LitElement } from 'lit';
2
- import '../icon/icon';
3
- declare global {
4
- interface HTMLElementTagNameMap {
5
- 'cv-empty-state': CovalentEmptyState;
6
- }
7
- }
8
- export declare class CovalentEmptyState extends LitElement {
9
- static styles: import("lit").CSSResult[];
10
- headline: string;
11
- subtitle: string;
12
- icon: string;
13
- card: boolean;
14
- render(): import("lit-html").TemplateResult<1>;
15
- }
16
- export default CovalentEmptyState;
@@ -1,26 +0,0 @@
1
- import { LitElement } from 'lit';
2
- import '../icon/icon';
3
- export declare class CovalentExpansionPanelItem extends LitElement {
4
- static styles: import("lit").CSSResult[];
5
- index: number;
6
- open: boolean;
7
- isTopPanel: boolean;
8
- isInnerPanel: boolean;
9
- isBottomPanel: boolean;
10
- isSinglePanel: boolean;
11
- belowOpenInnerPanel: boolean;
12
- aboveOpenInnerPanel: boolean;
13
- separateSinglePanel: boolean;
14
- title: string;
15
- contentPreview: string;
16
- showFooter: boolean;
17
- noSurface: boolean;
18
- render(): import("lit-html").TemplateResult<1>;
19
- resetPanel(): void;
20
- private _toggleContent;
21
- }
22
- declare global {
23
- interface HTMLElementTagNameMap {
24
- 'cv-expansion-panel-item': CovalentExpansionPanelItem;
25
- }
26
- }
@@ -1,15 +0,0 @@
1
- import { LitElement } from 'lit';
2
- import { CovalentExpansionPanelItem } from './expansion-panel-item';
3
- export declare class CovalentExpansionPanel extends LitElement {
4
- noSurface: boolean;
5
- titleWidth: string;
6
- panelItems: CovalentExpansionPanelItem[];
7
- render(): import("lit-html").TemplateResult<1>;
8
- private _handleToggle;
9
- firstUpdated(): void;
10
- }
11
- declare global {
12
- interface HTMLElementTagNameMap {
13
- 'cv-expansion-panel': CovalentExpansionPanel;
14
- }
15
- }
@@ -1,54 +0,0 @@
1
- import { LitElement, PropertyValues, TemplateResult } from 'lit';
2
- /**
3
- * Focused page
4
- *
5
- * @slot - This element has a slot
6
- */
7
- export declare class CovalentFocusedPage extends LitElement {
8
- static styles: import("lit").CSSResult[];
9
- /**
10
- * Whether the help section is open or not
11
- */
12
- helpOpen: boolean;
13
- /**
14
- * Whether the help section is resizable
15
- */
16
- helpResizable: boolean;
17
- /**
18
- * Whether the top border is hidden
19
- */
20
- hideTopBorder: boolean;
21
- /**
22
- * DOM element of the container div
23
- */
24
- container: HTMLDivElement;
25
- /**
26
- * DOM element of the help panel
27
- */
28
- helpPanel: HTMLElement;
29
- /**
30
- * DOM element of the resize handler
31
- */
32
- resizeHandle: HTMLElement;
33
- /**
34
- * Whether the help section is being resized
35
- */
36
- private _isResizing;
37
- constructor();
38
- protected firstUpdated(): void;
39
- openHelpPanel(): void;
40
- closeHelpPanel(): void;
41
- resetHelpPanelWidth(): void;
42
- setHelpPanelWidth(width: string): void;
43
- protected updated(_changedProperties: PropertyValues): void;
44
- private _resizerMouseMove;
45
- private _resizerMouseUp;
46
- private _startResizing;
47
- protected render(): TemplateResult<1>;
48
- }
49
- declare global {
50
- interface HTMLElementTagNameMap {
51
- 'cv-focused-page': CovalentFocusedPage;
52
- }
53
- }
54
- export default CovalentFocusedPage;
@@ -1,10 +0,0 @@
1
- import { FormfieldBase } from '@material/mwc-formfield/mwc-formfield-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-formfield': CovalentFormfield;
5
- }
6
- }
7
- export declare class CovalentFormfield extends FormfieldBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- export default CovalentFormfield;
@@ -1,31 +0,0 @@
1
- import { TemplateResult } from 'lit';
2
- import CovalentDialog from '../dialog/dialog';
3
- import '../focused-page/focused-page';
4
- /**
5
- * Full-screen Dialog
6
- *
7
- * @slot - This element has a slot
8
- */
9
- export declare class CovalentFullscreenDialog extends CovalentDialog {
10
- static styles: import("lit").CSSResult[];
11
- /**
12
- * Whether the help section is open or not
13
- */
14
- helpOpen: boolean;
15
- /**
16
- * Whether the help section is resizable
17
- */
18
- helpResizable: boolean;
19
- /**
20
- * Since the default, action slots of mdc-dialog have been replaced with the focused page component,
21
- * override this method to return focused page as the initial focus element
22
- */
23
- protected getInitialFocusEl(): HTMLElement | null;
24
- protected render(): TemplateResult<1>;
25
- }
26
- declare global {
27
- interface HTMLElementTagNameMap {
28
- 'cv-full-screen-dialog': CovalentFullscreenDialog;
29
- }
30
- }
31
- export default CovalentFullscreenDialog;
@@ -1,3 +0,0 @@
1
- export declare const MAT_ICON_LIST: string[];
2
- export declare const COV_ICON_LIST: string[];
3
- export default COV_ICON_LIST;
@@ -1,13 +0,0 @@
1
- import { LitElement } from 'lit';
2
- import './icon.js';
3
- import '../typography/typography.js';
4
- export declare class CovalentIconDemo extends LitElement {
5
- static styles: import("lit").CSSResult[];
6
- render(): import("lit-html").TemplateResult<1>;
7
- }
8
- declare global {
9
- interface HTMLElementTagNameMap {
10
- 'cv-icon-demo': CovalentIconDemo;
11
- }
12
- }
13
- export default CovalentIconDemo;
package/icon/icon.d.ts DELETED
@@ -1,10 +0,0 @@
1
- import { Icon } from '@material/mwc-icon/mwc-icon';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-icon': CovalentIcon;
5
- }
6
- }
7
- export declare class CovalentIcon extends Icon {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- export default CovalentIcon;
@@ -1,10 +0,0 @@
1
- import { IconButtonBase } from '@material/mwc-icon-button/mwc-icon-button-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-icon-button': CovalentIconButton;
5
- }
6
- }
7
- export declare class CovalentIconButton extends IconButtonBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- export default CovalentIconButton;
@@ -1,18 +0,0 @@
1
- import { PropertyValues } from 'lit';
2
- import { IconButtonToggle } from '@material/mwc-icon-button-toggle/mwc-icon-button-toggle';
3
- declare global {
4
- interface HTMLElementTagNameMap {
5
- 'cv-icon-button-toggle': CovalentIconButtonToggle;
6
- }
7
- }
8
- export declare class CovalentIconButtonToggle extends IconButtonToggle {
9
- /**
10
- * Angular doesn't allow properties that begin with 'on' to be set due to security reasons.
11
- * This is an alias for the 'on' property in mwc-icon-button-toggle, which can be used to toggle the button on/off.
12
- */
13
- toggledOn: boolean;
14
- static styles: import("lit").CSSResult[];
15
- protected update(changedProperties: PropertyValues): void;
16
- protected renderRipple(): "" | import("lit-html").TemplateResult<1>;
17
- }
18
- export default CovalentIconButtonToggle;
@@ -1,16 +0,0 @@
1
- import { CheckboxBase } from '@material/mwc-checkbox/mwc-checkbox-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-icon-check-item': CovalentIconCheckToggle;
5
- }
6
- }
7
- export declare class CovalentIconCheckToggle extends CheckboxBase {
8
- static styles: import("lit").CSSResult[];
9
- width: number | string;
10
- height: number | string;
11
- iconOnly: boolean;
12
- protected mdcRoot: HTMLElement;
13
- render(): import("lit-html").TemplateResult<1>;
14
- private _handleClick;
15
- }
16
- export default CovalentIconCheckToggle;
@@ -1,63 +0,0 @@
1
- import { LitElement, PropertyValues } from 'lit';
2
- import '../typography/typography';
3
- import '../icon/icon';
4
- /**
5
- * Icon lockup
6
- *
7
- * @slot icon - Slot for a custom icon. If provided, this slot content replaces the `icon` property.
8
- */
9
- export declare class CovalentIconLockup extends LitElement {
10
- static styles: import("lit").CSSResult[];
11
- /**
12
- * Whether the icon is a covalent icon.
13
- */
14
- covalentIcon: boolean;
15
- /**
16
- * Whether the icon is filled.
17
- */
18
- filledIcon: boolean;
19
- /**
20
- * The icon to display.
21
- */
22
- icon: string;
23
- /**
24
- * Scale of the component, controlling font-size and icon size.
25
- * Default is "1", but it can be set to other values to scale the component.
26
- */
27
- scale: string;
28
- /**
29
- * State of the component, used to apply different styles based on status.
30
- * Example values might include "success", "error", etc.
31
- */
32
- state: string;
33
- /**
34
- * If true, the icon is displayed after the text (trailing).
35
- * If false, the icon is displayed before the text.
36
- */
37
- trailingIcon: boolean;
38
- /**
39
- * Tracks if the icon slot has content.
40
- */
41
- private _hasIconSlot;
42
- /**
43
- * Checks if there is content in the icon slot and updates `hasIconSlot`.
44
- */
45
- private checkIconSlot;
46
- /**
47
- * Template method for rendering the icon. If content is provided in the
48
- * `icon` slot, it is displayed instead of the `icon` property.
49
- */
50
- private iconTemplate;
51
- /**
52
- * Renders the component with icon and text. If `trailingIcon` is true,
53
- * the icon is displayed after the text. Otherwise, it is displayed before.
54
- */
55
- render(): import("lit-html").TemplateResult<1>;
56
- protected updated(_changedProperties: PropertyValues): void;
57
- }
58
- declare global {
59
- interface HTMLElementTagNameMap {
60
- 'cv-icon-lockup': CovalentIconLockup;
61
- }
62
- }
63
- export default CovalentIconLockup;
@@ -1,13 +0,0 @@
1
- import { TemplateResult } from 'lit';
2
- import { RadioBase } from '@material/mwc-radio/mwc-radio-base';
3
- declare global {
4
- interface HTMLElementTagNameMap {
5
- 'cv-icon-radio-item': CovalentIconRadioToggle;
6
- }
7
- }
8
- export declare class CovalentIconRadioToggle extends RadioBase {
9
- static styles: import("lit").CSSResult[];
10
- iconOnly: boolean;
11
- protected renderRipple(): TemplateResult | string;
12
- }
13
- export default CovalentIconRadioToggle;
package/index.d.ts DELETED
@@ -1,59 +0,0 @@
1
- export * from './action-ribbon/action-ribbon';
2
- export * from './alert/alert';
3
- export * from './app-shell/app-shell';
4
- export * from './badge/badge';
5
- export * from './button/button';
6
- export * from './card/card';
7
- export * from './checkbox/checkbox';
8
- export * from './list/check-list-item';
9
- export * from './chips/chip';
10
- export * from './chips/chip-set';
11
- export * from './circular-progress/circular-progress';
12
- export * from './code-editor/code-editor';
13
- export * from './code-editor/code-editor.theme';
14
- export * from './code-snippet/code-snippet';
15
- export * from './dialog/dialog';
16
- export * from './drawer/drawer';
17
- export * from './empty-state/empty-state';
18
- export * from './expansion-panel/expansion-panel';
19
- export * from './expansion-panel/expansion-panel-item';
20
- export * from './focused-page/focused-page';
21
- export * from './formfield/formfield';
22
- export * from './full-screen-dialog/full-screen-dialog';
23
- export * from './icon/icon';
24
- export * from './icon/_icon-list';
25
- export * from './icon/icon-demo';
26
- export * from './icon-button/icon-button';
27
- export * from './icon-button-toggle/icon-button-toggle';
28
- export * from './icon-checkbox/icon-check-toggle';
29
- export * from './icon-lockup/icon-lockup';
30
- export * from './icon-radio/icon-radio-toggle';
31
- export * from './linear-progress/linear-progress';
32
- export * from './list/list';
33
- export * from './list/list-item';
34
- export * from './menu/menu';
35
- export * from './list/nav-list-item';
36
- export * from './notebook-cell/notebook-cell';
37
- export * from './radio/radio';
38
- export * from './list/radio-list-item';
39
- export * from './select/select';
40
- export * from './side-sheet/side-sheet';
41
- export * from './slider/slider';
42
- export * from './slider/slider-range';
43
- export * from './snackbar/snackbar';
44
- export * from './status-dialog/status-dialog';
45
- export * from './status-header/status-header';
46
- export * from './status-header/status-header-item';
47
- export * from './switch/switch';
48
- export * from './tab/tab';
49
- export * from './tab/tab-bar';
50
- export * from './textarea/textarea';
51
- export * from './textfield/textfield';
52
- export * from './text-lockup/text-lockup';
53
- export * from './toolbar/toolbar';
54
- export * from './tooltip/tooltip';
55
- export * from './top-app-bar/top-app-bar';
56
- export * from './top-app-bar/top-app-bar-fixed';
57
- export * from './tree-list/tree-list';
58
- export * from './tree-list/tree-list-item';
59
- export * from './typography/typography';
@@ -1,10 +0,0 @@
1
- import { LinearProgressBase } from '@material/mwc-linear-progress/mwc-linear-progress-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-linear-progress': CovalentLinearProgress;
5
- }
6
- }
7
- export declare class CovalentLinearProgress extends LinearProgressBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- export default CovalentLinearProgress;
@@ -1,10 +0,0 @@
1
- import { CheckListItemBase } from '@material/mwc-list/mwc-check-list-item-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-check-list-item': CovalentCheckListItem;
5
- }
6
- }
7
- export declare class CovalentCheckListItem extends CheckListItemBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- export default CovalentCheckListItem;
@@ -1,10 +0,0 @@
1
- import { ListItemBase } from '@material/mwc-list/mwc-list-item-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-list-item': CovalentListItem;
5
- }
6
- }
7
- export declare class CovalentListItem extends ListItemBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- export default CovalentListItem;
package/list/list.d.ts DELETED
@@ -1,10 +0,0 @@
1
- import { ListBase } from '@material/mwc-list/mwc-list-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-list': CovalentList;
5
- }
6
- }
7
- export declare class CovalentList extends ListBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- export default CovalentList;