@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,29 +0,0 @@
1
- import { CovalentListItem } from './list-item';
2
- import CovalentList from './list';
3
- declare global {
4
- interface HTMLElementTagNameMap {
5
- 'cv-nav-list-item': CovalentNavRailListItem;
6
- }
7
- }
8
- export declare class CovalentNavRailListItem extends CovalentListItem {
9
- static styles: import("lit").CSSResult[];
10
- expansionPanelElements: CovalentList[];
11
- open: boolean;
12
- hasChildren: boolean;
13
- activated: boolean;
14
- private lastKeySelected;
15
- private _toggleOpen;
16
- private _handleKeydown;
17
- private _handleRequestSelected;
18
- private _deselectChildren;
19
- private _deselectHeader;
20
- private _updateMaxHeight;
21
- renderExpansionItem(): import("lit-html").TemplateResult<1>;
22
- connectedCallback(): void;
23
- disconnectedCallback(): void;
24
- protected renderMeta(): import("lit-html").TemplateResult<1>;
25
- firstUpdated(): void;
26
- updated(changedProperties: Map<string | number | symbol, unknown>): void;
27
- render(): import("lit-html").TemplateResult<1>;
28
- }
29
- export default CovalentNavRailListItem;
@@ -1,10 +0,0 @@
1
- import { RadioListItemBase } from '@material/mwc-list/mwc-radio-list-item-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-radio-list-item': CovalentRadioListItem;
5
- }
6
- }
7
- export declare class CovalentRadioListItem extends RadioListItemBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- export default CovalentRadioListItem;
package/menu/menu.d.ts DELETED
@@ -1,10 +0,0 @@
1
- import { MenuBase } from '@material/mwc-menu/mwc-menu-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-menu': CovalentMenu;
5
- }
6
- }
7
- export declare class CovalentMenu extends MenuBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- export default CovalentMenu;
@@ -1,95 +0,0 @@
1
- import { LitElement, PropertyValues } from 'lit';
2
- import '../code-editor/code-editor';
3
- import '../code-snippet/code-snippet';
4
- import '../icon-button/icon-button';
5
- import '../typography/typography';
6
- declare global {
7
- interface HTMLElementTagNameMap {
8
- 'cv-notebook-cell': CovalentNotebookCell;
9
- }
10
- }
11
- /**
12
- * Notebook cell
13
- *
14
- * @slot - This element has a slot
15
- */
16
- export declare class CovalentNotebookCell extends LitElement {
17
- /**
18
- * The index of the cell in a notebook
19
- */
20
- index?: number;
21
- /**
22
- * Code written in the cell
23
- */
24
- code: string;
25
- /**
26
- * Language of the code
27
- */
28
- language: string;
29
- /**
30
- * Whether the cell is loading
31
- */
32
- loading: boolean;
33
- /**
34
- * Whether the cell is selected
35
- */
36
- selected: boolean;
37
- /**
38
- * Number of times the cell was exceuted
39
- */
40
- timesExecuted: number;
41
- /**
42
- * Whether the editor is shown
43
- */
44
- hideEditor: boolean;
45
- /**
46
- * Whether the execution count is shown
47
- */
48
- hideCount: boolean;
49
- /**
50
- * Theme for the code editor
51
- */
52
- editorTheme: string;
53
- private _editor;
54
- private _editorFocused;
55
- private _isMenuOpen;
56
- private _menuMaxHeight;
57
- private _menuPosition;
58
- editorOptions: {
59
- minimap: {
60
- enabled: boolean;
61
- };
62
- wordWrap: string;
63
- fontSize: string;
64
- glyphMargin: boolean;
65
- folding: boolean;
66
- lineHeight: number;
67
- lineNumbers: string;
68
- lineDecorationsWidth: number;
69
- lineNumbersMinChars: number;
70
- renderIndentGuides: boolean;
71
- renderLineHighlight: string;
72
- overviewRulerLanes: number;
73
- hideCursorInOverviewRuler: boolean;
74
- scrollbar: {
75
- alwaysConsumeMouseWheel: boolean;
76
- vertical: string;
77
- };
78
- };
79
- static styles: import("lit").CSSResult[];
80
- constructor();
81
- closeContextMenu(): void;
82
- connectedCallback(): void;
83
- disconnectedCallback(): void;
84
- handleCodeChange(e: CustomEvent): void;
85
- setEditorFocus(e: CustomEvent, setFocus: boolean): void;
86
- setEditorInstance(e: CustomEvent): void;
87
- showContextMenu(e: MouseEvent): void;
88
- protected updated(changedProperties: PropertyValues): void;
89
- getEditorBgColor(): string;
90
- renderEditor(): import("lit-html").TemplateResult<1>;
91
- renderOutput(): import("lit-html").TemplateResult<1>;
92
- renderExecutionCount(): import("lit-html").TemplateResult<1>;
93
- protected render(): import("lit-html").TemplateResult<1>;
94
- }
95
- export default CovalentNotebookCell;
package/radio/radio.d.ts DELETED
@@ -1,10 +0,0 @@
1
- import { RadioBase } from '@material/mwc-radio/mwc-radio-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-radio': CovalentRadio;
5
- }
6
- }
7
- export declare class CovalentRadio extends RadioBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- export default CovalentRadio;
@@ -1,10 +0,0 @@
1
- import { SelectBase } from '@material/mwc-select/mwc-select-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-select': CovalentSelect;
5
- }
6
- }
7
- export declare class CovalentSelect extends SelectBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- export default CovalentSelect;
@@ -1,17 +0,0 @@
1
- import { CovalentDialog } from '../dialog/dialog';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-side-sheet': CovalentSideSheet;
5
- }
6
- }
7
- /**
8
- * Side sheet element.
9
- *
10
- * @slot - This element has a slot
11
- */
12
- export declare class CovalentSideSheet extends CovalentDialog {
13
- static styles: import("lit").CSSResult[];
14
- pushed: boolean;
15
- noPadding: boolean;
16
- constructor();
17
- }
@@ -1,10 +0,0 @@
1
- import { SliderRangeBase } from '@material/mwc-slider/slider-range-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-slider-range': CovalentSliderRange;
5
- }
6
- }
7
- export declare class CovalentSliderRange extends SliderRangeBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- export default CovalentSliderRange;
@@ -1,10 +0,0 @@
1
- import { SliderSingleBase } from '@material/mwc-slider/slider-single-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-slider': CovalentSlider;
5
- }
6
- }
7
- export declare class CovalentSlider extends SliderSingleBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- export default CovalentSlider;
@@ -1,10 +0,0 @@
1
- import { SnackbarBase } from '@material/mwc-snackbar/mwc-snackbar-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-snackbar': CovalentSnackbar;
5
- }
6
- }
7
- export declare class CovalentSnackbar extends SnackbarBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- export default CovalentSnackbar;
@@ -1,36 +0,0 @@
1
- import CovalentDialog from '../dialog/dialog';
2
- import '../icon/icon';
3
- import '../icon-button/icon-button';
4
- declare global {
5
- interface HTMLElementTagNameMap {
6
- 'cv-status-dialog': CovalentStatusDialog;
7
- }
8
- }
9
- /**
10
- * Status Dialog
11
- *
12
- * @slot - This element has a slot
13
- */
14
- export declare class CovalentStatusDialog extends CovalentDialog {
15
- _details?: HTMLSlotElement;
16
- /**
17
- * The state representation error|positive|warning
18
- */
19
- state: 'error' | 'positive' | 'warning';
20
- /**
21
- * Whether the content details are expanded
22
- */
23
- protected expandDetails: boolean;
24
- /**
25
- * Whether the expand details link is shown
26
- */
27
- showDetailsLink: boolean;
28
- static styles: import("lit").CSSResult[];
29
- protected firstUpdated(): void;
30
- toggleDetails(): void;
31
- private _getStatusIcon;
32
- renderDetails(): import("lit-html").TemplateResult<1>;
33
- protected renderHeading(): import("lit-html").TemplateResult<1>;
34
- render(): import("lit-html").TemplateResult<1>;
35
- }
36
- export default CovalentStatusDialog;
@@ -1,8 +0,0 @@
1
- import { LitElement } from 'lit';
2
- export declare class StatusHeaderBase extends LitElement {
3
- state: 'active' | 'positive' | 'caution' | 'error' | 'neutral';
4
- statusText: string;
5
- statusHelper: string;
6
- titleText: string;
7
- protected render(): import("lit-html").TemplateResult<1>;
8
- }
@@ -1,17 +0,0 @@
1
- import { LitElement } from 'lit';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-status-header-item': CovalentStatusHeaderItem;
5
- }
6
- }
7
- /**
8
- * Status header item
9
- *
10
- * @slot - This element has a slot
11
- */
12
- export declare class CovalentStatusHeaderItem extends LitElement {
13
- static styles: import("lit").CSSResult[];
14
- label: string;
15
- render(): import("lit-html").TemplateResult<1>;
16
- }
17
- export default CovalentStatusHeaderItem;
@@ -1,15 +0,0 @@
1
- import { StatusHeaderBase } from './status-header-base';
2
- /**
3
- * Status header
4
- *
5
- * @slot - This element has a slot
6
- */
7
- export declare class CovalentStatusHeader extends StatusHeaderBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- declare global {
11
- interface HTMLElementTagNameMap {
12
- 'cv-status-header': CovalentStatusHeader;
13
- }
14
- }
15
- export default CovalentStatusHeader;
@@ -1,10 +0,0 @@
1
- import { SwitchBase } from '@material/mwc-switch/mwc-switch-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-switch': CovalentSwitch;
5
- }
6
- }
7
- export declare class CovalentSwitch extends SwitchBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- export default CovalentSwitch;
package/tab/tab-bar.d.ts DELETED
@@ -1,10 +0,0 @@
1
- import { TabBarBase } from '@material/mwc-tab-bar/mwc-tab-bar-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-tab-bar': CovalentTabBar;
5
- }
6
- }
7
- export declare class CovalentTabBar extends TabBarBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- export default CovalentTabBar;
package/tab/tab.d.ts DELETED
@@ -1,10 +0,0 @@
1
- import { TabBase } from '@material/mwc-tab/mwc-tab-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-tab': CovalentTab;
5
- }
6
- }
7
- export declare class CovalentTab extends TabBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- export default CovalentTab;
@@ -1,18 +0,0 @@
1
- import { LitElement, nothing } from 'lit';
2
- import '../icon/icon';
3
- declare global {
4
- interface HTMLElementTagNameMap {
5
- 'cv-text-lockup': CovalentTextLockup;
6
- }
7
- }
8
- export declare class CovalentTextLockup extends LitElement {
9
- static styles: import("lit").CSSResult[];
10
- subText: string;
11
- icon?: string;
12
- state?: 'active' | 'positive' | 'negative' | 'caution';
13
- scale: 'large' | 'small';
14
- trailingSubText: boolean;
15
- render(): import("lit-html").TemplateResult<1>;
16
- renderIcon(): import("lit-html").TemplateResult<1> | typeof nothing;
17
- }
18
- export default CovalentTextLockup;
@@ -1,10 +0,0 @@
1
- import { TextAreaBase } from '@material/mwc-textarea/mwc-textarea-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-textarea': CovalentTextArea;
5
- }
6
- }
7
- export declare class CovalentTextArea extends TextAreaBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- export default CovalentTextArea;
@@ -1,11 +0,0 @@
1
- import { TextFieldBase } from '@material/mwc-textfield/mwc-textfield-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-textfield': CovalentTextField;
5
- }
6
- }
7
- export declare class CovalentTextField extends TextFieldBase {
8
- static styles: import("lit").CSSResult[];
9
- outlined: boolean;
10
- }
11
- export default CovalentTextField;
@@ -1,14 +0,0 @@
1
- import { TopAppBarBase } from '@material/mwc-top-app-bar/mwc-top-app-bar-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-toolbar': CovalentToolbar;
5
- }
6
- }
7
- export declare class CovalentToolbar extends TopAppBarBase {
8
- static styles: import("lit").CSSResult[];
9
- /**
10
- * position sticky when scrolled
11
- */
12
- sticky: boolean;
13
- }
14
- export default CovalentToolbar;
@@ -1,27 +0,0 @@
1
- import { LitElement, PropertyValues } from 'lit';
2
- import { MDCTooltipAdapter } from '@material/tooltip';
3
- import { MDCTooltipFoundation } from '@material/tooltip/foundation';
4
- declare global {
5
- interface HTMLElementTagNameMap {
6
- 'cv-tooltip': CovalentTooltip;
7
- }
8
- }
9
- export declare class CovalentTooltip extends LitElement {
10
- protected mdcFoundation: MDCTooltipFoundation;
11
- protected readonly mdcFoundationClass: typeof MDCTooltipFoundation;
12
- static styles: import("lit").CSSResult[];
13
- protected mdcRoot: HTMLElement;
14
- protected mdcSurface: HTMLElement;
15
- anchor?: HTMLElement;
16
- richTitle?: string;
17
- rich?: boolean;
18
- persistent?: HTMLElement;
19
- showDelay?: number;
20
- hideDelay?: number;
21
- protected createAdapter(): MDCTooltipAdapter;
22
- protected updated(changedProps: PropertyValues): void;
23
- protected firstUpdated(): Promise<void>;
24
- disconnectedCallback(): void;
25
- render(): import("lit-html").TemplateResult<1>;
26
- }
27
- export default CovalentTooltip;
@@ -1,10 +0,0 @@
1
- import { TopAppBarFixedBase } from '@material/mwc-top-app-bar-fixed/mwc-top-app-bar-fixed-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-top-app-bar-fixed': CovalentTopAppBarFixed;
5
- }
6
- }
7
- export declare class CovalentTopAppBarFixed extends TopAppBarFixedBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- export default CovalentTopAppBarFixed;
@@ -1,10 +0,0 @@
1
- import { TopAppBarBase } from '@material/mwc-top-app-bar/mwc-top-app-bar-base';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-top-app-bar': CovalentTopAppBar;
5
- }
6
- }
7
- export declare class CovalentTopAppBar extends TopAppBarBase {
8
- static styles: import("lit").CSSResult[];
9
- }
10
- export default CovalentTopAppBar;
@@ -1,17 +0,0 @@
1
- import { LitElement } from 'lit';
2
- import '../icon/icon';
3
- declare global {
4
- interface HTMLElementTagNameMap {
5
- 'cv-tree-list-item': CovalentTreeListItem;
6
- }
7
- }
8
- export declare class CovalentTreeListItem extends LitElement {
9
- static styles: import("lit").CSSResult[];
10
- isOpen: boolean;
11
- icon: string;
12
- indentLevel: number;
13
- indentMultiple: number;
14
- render(): import("lit-html").TemplateResult<1>;
15
- private _handleClick;
16
- }
17
- export default CovalentTreeListItem;
@@ -1,11 +0,0 @@
1
- import { LitElement } from 'lit';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-tree-list': CovalentTreeList;
5
- }
6
- }
7
- export declare class CovalentTreeList extends LitElement {
8
- static styles: import("lit").CSSResult[];
9
- render(): import("lit-html").TemplateResult<1>;
10
- }
11
- export default CovalentTreeList;
@@ -1,12 +0,0 @@
1
- import { LitElement } from 'lit';
2
- declare global {
3
- interface HTMLElementTagNameMap {
4
- 'cv-typography': CovalentTypography;
5
- }
6
- }
7
- export declare class CovalentTypography extends LitElement {
8
- static styles: import("lit").CSSResult[];
9
- scale: string;
10
- render(): import("lit-html").TemplateResult<1>;
11
- }
12
- export default CovalentTypography;