@covalent/components 11.17.0 → 11.18.0
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/card/card-header/card-header.d.ts +16 -0
- package/card-header.js +13 -0
- package/card-header.mjs +42 -0
- package/index.d.ts +1 -0
- package/index.js +1 -1
- package/index.mjs +106 -104
- package/package.json +6 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { LitElement } from 'lit';
|
|
2
|
+
/**
|
|
3
|
+
* Card header
|
|
4
|
+
*
|
|
5
|
+
* @slot context - Context content area (flexible)
|
|
6
|
+
* @slot actions - Action items area
|
|
7
|
+
*/
|
|
8
|
+
export declare class CovalentCardHeader extends LitElement {
|
|
9
|
+
static styles: import("lit").CSSResult[];
|
|
10
|
+
/**
|
|
11
|
+
* Adds a divider line below the header
|
|
12
|
+
*/
|
|
13
|
+
divider: boolean;
|
|
14
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
15
|
+
}
|
|
16
|
+
export default CovalentCardHeader;
|
package/card-header.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const r=require("./query-assigned-elements-8EurZY45.js"),n=require("./property-DYTC_2-m.js"),v=":host{--cv-card-header-height: 56px;display:flex;flex-direction:column;align-self:stretch}.cv-card-header{display:flex;height:var(--cv-card-header-height);padding:0 4px 0 16px;align-self:stretch;gap:8px;align-items:center}.cv-card-header__context{flex:1 0 0;display:flex;gap:8px;align-items:center}.cv-card-header__actions{display:flex;gap:8px;align-items:center}.cv-card-header__divider{width:100%;height:1px;background-color:var(--cv-theme-outline-variant)}";var o=Object.defineProperty,h=Object.getOwnPropertyDescriptor,c=(t,a,i,d)=>{for(var e=d>1?void 0:d?h(a,i):a,s=t.length-1,l;s>=0;s--)(l=t[s])&&(e=(d?l(a,i,e):l(e))||e);return d&&e&&o(a,i,e),e};exports.CovalentCardHeader=class extends r.s{constructor(){super(...arguments),this.divider=!1}render(){return r.x`
|
|
2
|
+
<div class="cv-card-header">
|
|
3
|
+
<div class="cv-card-header__context">
|
|
4
|
+
<slot name="leading"></slot>
|
|
5
|
+
</div>
|
|
6
|
+
<div class="cv-card-header__actions">
|
|
7
|
+
<slot name="trailing"></slot>
|
|
8
|
+
</div>
|
|
9
|
+
</div>
|
|
10
|
+
${this.divider?r.x`<div class="cv-card-header__divider"></div>`:""}
|
|
11
|
+
`}};exports.CovalentCardHeader.styles=[r.i`
|
|
12
|
+
${r.r(v)}
|
|
13
|
+
`];c([n.n({type:Boolean})],exports.CovalentCardHeader.prototype,"divider",2);exports.CovalentCardHeader=c([r.e("cv-card-header")],exports.CovalentCardHeader);const p=exports.CovalentCardHeader;exports.default=p;
|
package/card-header.mjs
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { r as n, i as o, s as h, x as l, e as p } from "./query-assigned-elements-D930kELM.mjs";
|
|
2
|
+
import { n as x } from "./property-DJzm_oB9.mjs";
|
|
3
|
+
const _ = ":host{--cv-card-header-height: 56px;display:flex;flex-direction:column;align-self:stretch}.cv-card-header{display:flex;height:var(--cv-card-header-height);padding:0 4px 0 16px;align-self:stretch;gap:8px;align-items:center}.cv-card-header__context{flex:1 0 0;display:flex;gap:8px;align-items:center}.cv-card-header__actions{display:flex;gap:8px;align-items:center}.cv-card-header__divider{width:100%;height:1px;background-color:var(--cv-theme-outline-variant)}";
|
|
4
|
+
var f = Object.defineProperty, g = Object.getOwnPropertyDescriptor, v = (s, a, t, d) => {
|
|
5
|
+
for (var e = d > 1 ? void 0 : d ? g(a, t) : a, i = s.length - 1, c; i >= 0; i--)
|
|
6
|
+
(c = s[i]) && (e = (d ? c(a, t, e) : c(e)) || e);
|
|
7
|
+
return d && e && f(a, t, e), e;
|
|
8
|
+
};
|
|
9
|
+
let r = class extends h {
|
|
10
|
+
constructor() {
|
|
11
|
+
super(...arguments), this.divider = !1;
|
|
12
|
+
}
|
|
13
|
+
render() {
|
|
14
|
+
return l`
|
|
15
|
+
<div class="cv-card-header">
|
|
16
|
+
<div class="cv-card-header__context">
|
|
17
|
+
<slot name="leading"></slot>
|
|
18
|
+
</div>
|
|
19
|
+
<div class="cv-card-header__actions">
|
|
20
|
+
<slot name="trailing"></slot>
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
23
|
+
${this.divider ? l`<div class="cv-card-header__divider"></div>` : ""}
|
|
24
|
+
`;
|
|
25
|
+
}
|
|
26
|
+
};
|
|
27
|
+
r.styles = [
|
|
28
|
+
o`
|
|
29
|
+
${n(_)}
|
|
30
|
+
`
|
|
31
|
+
];
|
|
32
|
+
v([
|
|
33
|
+
x({ type: Boolean })
|
|
34
|
+
], r.prototype, "divider", 2);
|
|
35
|
+
r = v([
|
|
36
|
+
p("cv-card-header")
|
|
37
|
+
], r);
|
|
38
|
+
const y = r;
|
|
39
|
+
export {
|
|
40
|
+
r as CovalentCardHeader,
|
|
41
|
+
y as default
|
|
42
|
+
};
|
package/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export * from './app-shell/app-shell';
|
|
|
4
4
|
export * from './badge/badge';
|
|
5
5
|
export * from './button/button';
|
|
6
6
|
export * from './card/card';
|
|
7
|
+
export * from './card/card-header/card-header';
|
|
7
8
|
export * from './checkbox/checkbox';
|
|
8
9
|
export * from './list/check-list-item';
|
|
9
10
|
export * from './chips/chip';
|
package/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("./action-ribbon.js"),r=require("./alert.js"),o=require("./app-shell.js"),n=require("./badge.js"),a=require("./button.js"),l=require("./card.js"),i=require("./
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("./action-ribbon.js"),r=require("./alert.js"),o=require("./app-shell.js"),n=require("./badge.js"),a=require("./button.js"),l=require("./card.js"),i=require("./card-header.js"),u=require("./checkbox.js"),c=require("./check-list-item.js"),b=require("./chip-DiYsniRL.js"),C=require("./chip-set.js"),d=require("./circular-progress.js"),e=require("./code-editor-BIT6cm84.js"),v=require("./code-snippet.js"),s=require("./dialog-BShWbhKq.js"),p=require("./divider.js"),g=require("./drawer.js"),m=require("./empty-state.js"),P=require("./expansion-panel.js"),y=require("./expansion-panel-item.js"),f=require("./focused-page.js"),j=require("./formfield.js"),O=require("./full-screen-dialog.js"),q=require("./icon.js"),T=require("./icon-button.js"),S=require("./icon-button-toggle.js"),h=require("./icon-check-toggle.js"),I=require("./icon-lockup.js"),L=require("./icon-radio-toggle.js"),k=require("./linear-progress.js"),x=require("./list.js"),B=require("./list-item.js"),R=require("./menu.js"),A=require("./nav-list-item.js"),D=require("./notebook-cell.js"),E=require("./radio.js"),F=require("./radio-list-item.js"),H=require("./select.js"),w=require("./side-sheet.js"),N=require("./slider.js"),M=require("./slider-range.js"),_=require("./snackbar.js"),z=require("./status-dialog.js"),G=require("./status-header.js"),J=require("./status-header-item.js"),K=require("./switch.js"),Q=require("./tab.js"),U=require("./tab-bar.js"),V=require("./textarea.js"),W=require("./textfield.js"),X=require("./text-lockup.js"),Y=require("./toolbar.js"),Z=require("./tooltip.js"),$=require("./top-app-bar.js"),ee=require("./top-app-bar-fixed.js"),te=require("./tree-list.js"),re=require("./tree-list-item.js"),oe=require("./typography.js");Object.defineProperty(exports,"CovalentActionRibbon",{enumerable:!0,get:()=>t.CovalentActionRibbon});Object.defineProperty(exports,"CovalentAlert",{enumerable:!0,get:()=>r.CovalentAlert});Object.defineProperty(exports,"CovalentAppShell",{enumerable:!0,get:()=>o.CovalentAppShell});Object.defineProperty(exports,"CovalentBadge",{enumerable:!0,get:()=>n.CovalentBadge});Object.defineProperty(exports,"CovalentButton",{enumerable:!0,get:()=>a.CovalentButton});Object.defineProperty(exports,"CovalentCard",{enumerable:!0,get:()=>l.CovalentCard});Object.defineProperty(exports,"CovalentCardHeader",{enumerable:!0,get:()=>i.CovalentCardHeader});Object.defineProperty(exports,"CovalentCheckbox",{enumerable:!0,get:()=>u.CovalentCheckbox});Object.defineProperty(exports,"CovalentCheckListItem",{enumerable:!0,get:()=>c.CovalentCheckListItem});Object.defineProperty(exports,"CovalentChip",{enumerable:!0,get:()=>b.CovalentChip});Object.defineProperty(exports,"CovalentChipSet",{enumerable:!0,get:()=>C.CovalentChipSet});Object.defineProperty(exports,"CovalentCircularProgress",{enumerable:!0,get:()=>d.CovalentCircularProgress});Object.defineProperty(exports,"CovalentCodeEditor",{enumerable:!0,get:()=>e.CovalentCodeEditor});exports.cvEditorDarkTheme=e.cvEditorDarkTheme;exports.cvEditorLightTheme=e.cvEditorLightTheme;Object.defineProperty(exports,"CovalentCodeSnippet",{enumerable:!0,get:()=>v.CovalentCodeSnippet});Object.defineProperty(exports,"CovalentDialog",{enumerable:!0,get:()=>s.CovalentDialog});Object.defineProperty(exports,"CovalentDivider",{enumerable:!0,get:()=>p.CovalentDivider});Object.defineProperty(exports,"CovalentDrawer",{enumerable:!0,get:()=>g.CovalentDrawer});Object.defineProperty(exports,"CovalentEmptyState",{enumerable:!0,get:()=>m.CovalentEmptyState});Object.defineProperty(exports,"CovalentExpansionPanel",{enumerable:!0,get:()=>P.CovalentExpansionPanel});Object.defineProperty(exports,"CovalentExpansionPanelItem",{enumerable:!0,get:()=>y.CovalentExpansionPanelItem});Object.defineProperty(exports,"CovalentFocusedPage",{enumerable:!0,get:()=>f.CovalentFocusedPage});Object.defineProperty(exports,"CovalentFormfield",{enumerable:!0,get:()=>j.CovalentFormfield});Object.defineProperty(exports,"CovalentFullscreenDialog",{enumerable:!0,get:()=>O.CovalentFullscreenDialog});Object.defineProperty(exports,"CovalentIcon",{enumerable:!0,get:()=>q.CovalentIcon});Object.defineProperty(exports,"CovalentIconButton",{enumerable:!0,get:()=>T.CovalentIconButton});Object.defineProperty(exports,"CovalentIconButtonToggle",{enumerable:!0,get:()=>S.CovalentIconButtonToggle});Object.defineProperty(exports,"CovalentIconCheckToggle",{enumerable:!0,get:()=>h.CovalentIconCheckToggle});Object.defineProperty(exports,"CovalentIconLockup",{enumerable:!0,get:()=>I.CovalentIconLockup});Object.defineProperty(exports,"CovalentIconRadioToggle",{enumerable:!0,get:()=>L.CovalentIconRadioToggle});Object.defineProperty(exports,"CovalentLinearProgress",{enumerable:!0,get:()=>k.CovalentLinearProgress});Object.defineProperty(exports,"CovalentList",{enumerable:!0,get:()=>x.CovalentList});Object.defineProperty(exports,"CovalentListItem",{enumerable:!0,get:()=>B.CovalentListItem});Object.defineProperty(exports,"CovalentMenu",{enumerable:!0,get:()=>R.CovalentMenu});Object.defineProperty(exports,"CovalentNavRailListItem",{enumerable:!0,get:()=>A.CovalentNavRailListItem});Object.defineProperty(exports,"CovalentNotebookCell",{enumerable:!0,get:()=>D.CovalentNotebookCell});Object.defineProperty(exports,"CovalentRadio",{enumerable:!0,get:()=>E.CovalentRadio});Object.defineProperty(exports,"CovalentRadioListItem",{enumerable:!0,get:()=>F.CovalentRadioListItem});Object.defineProperty(exports,"CovalentSelect",{enumerable:!0,get:()=>H.CovalentSelect});Object.defineProperty(exports,"CovalentSideSheet",{enumerable:!0,get:()=>w.CovalentSideSheet});Object.defineProperty(exports,"CovalentSlider",{enumerable:!0,get:()=>N.CovalentSlider});Object.defineProperty(exports,"CovalentSliderRange",{enumerable:!0,get:()=>M.CovalentSliderRange});Object.defineProperty(exports,"CovalentSnackbar",{enumerable:!0,get:()=>_.CovalentSnackbar});Object.defineProperty(exports,"CovalentStatusDialog",{enumerable:!0,get:()=>z.CovalentStatusDialog});Object.defineProperty(exports,"CovalentStatusHeader",{enumerable:!0,get:()=>G.CovalentStatusHeader});Object.defineProperty(exports,"CovalentStatusHeaderItem",{enumerable:!0,get:()=>J.CovalentStatusHeaderItem});Object.defineProperty(exports,"CovalentSwitch",{enumerable:!0,get:()=>K.CovalentSwitch});Object.defineProperty(exports,"CovalentTab",{enumerable:!0,get:()=>Q.CovalentTab});Object.defineProperty(exports,"CovalentTabBar",{enumerable:!0,get:()=>U.CovalentTabBar});Object.defineProperty(exports,"CovalentTextArea",{enumerable:!0,get:()=>V.CovalentTextArea});Object.defineProperty(exports,"CovalentTextField",{enumerable:!0,get:()=>W.CovalentTextField});Object.defineProperty(exports,"CovalentTextLockup",{enumerable:!0,get:()=>X.CovalentTextLockup});Object.defineProperty(exports,"CovalentToolbar",{enumerable:!0,get:()=>Y.CovalentToolbar});Object.defineProperty(exports,"CovalentTooltip",{enumerable:!0,get:()=>Z.CovalentTooltip});Object.defineProperty(exports,"CovalentTopAppBar",{enumerable:!0,get:()=>$.CovalentTopAppBar});Object.defineProperty(exports,"CovalentTopAppBarFixed",{enumerable:!0,get:()=>ee.CovalentTopAppBarFixed});Object.defineProperty(exports,"CovalentTreeList",{enumerable:!0,get:()=>te.CovalentTreeList});Object.defineProperty(exports,"CovalentTreeListItem",{enumerable:!0,get:()=>re.CovalentTreeListItem});Object.defineProperty(exports,"CovalentTypography",{enumerable:!0,get:()=>oe.CovalentTypography});
|
package/index.mjs
CHANGED
|
@@ -4,57 +4,58 @@ import { CovalentAppShell as n } from "./app-shell.mjs";
|
|
|
4
4
|
import { CovalentBadge as C } from "./badge.mjs";
|
|
5
5
|
import { CovalentButton as x } from "./button.mjs";
|
|
6
6
|
import { CovalentCard as f } from "./card.mjs";
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
7
|
+
import { CovalentCardHeader as s } from "./card-header.mjs";
|
|
8
|
+
import { CovalentCheckbox as c } from "./checkbox.mjs";
|
|
9
|
+
import { CovalentCheckListItem as g } from "./check-list-item.mjs";
|
|
10
|
+
import { C as I } from "./chip-S-9zvyg8.mjs";
|
|
11
|
+
import { CovalentChipSet as u } from "./chip-set.mjs";
|
|
12
|
+
import { CovalentCircularProgress as b } from "./circular-progress.mjs";
|
|
13
|
+
import { C as B, c as A, a as D } from "./code-editor-DfyYB7BH.mjs";
|
|
14
|
+
import { CovalentCodeSnippet as R } from "./code-snippet.mjs";
|
|
15
|
+
import { C as P } from "./dialog-ChTd6dnt.mjs";
|
|
16
|
+
import { CovalentDivider as H } from "./divider.mjs";
|
|
17
|
+
import { CovalentDrawer as N } from "./drawer.mjs";
|
|
18
|
+
import { CovalentEmptyState as j } from "./empty-state.mjs";
|
|
19
|
+
import { CovalentExpansionPanel as z } from "./expansion-panel.mjs";
|
|
20
|
+
import { CovalentExpansionPanelItem as J } from "./expansion-panel-item.mjs";
|
|
21
|
+
import { CovalentFocusedPage as O } from "./focused-page.mjs";
|
|
22
|
+
import { CovalentFormfield as U } from "./formfield.mjs";
|
|
23
|
+
import { CovalentFullscreenDialog as W } from "./full-screen-dialog.mjs";
|
|
24
|
+
import { CovalentIcon as Y } from "./icon.mjs";
|
|
25
|
+
import { CovalentIconButton as _ } from "./icon-button.mjs";
|
|
26
|
+
import { CovalentIconButtonToggle as oo } from "./icon-button-toggle.mjs";
|
|
27
|
+
import { CovalentIconCheckToggle as to } from "./icon-check-toggle.mjs";
|
|
28
|
+
import { CovalentIconLockup as ao } from "./icon-lockup.mjs";
|
|
29
|
+
import { CovalentIconRadioToggle as no } from "./icon-radio-toggle.mjs";
|
|
30
|
+
import { CovalentLinearProgress as Co } from "./linear-progress.mjs";
|
|
31
|
+
import { CovalentList as xo } from "./list.mjs";
|
|
32
|
+
import { CovalentListItem as fo } from "./list-item.mjs";
|
|
33
|
+
import { CovalentMenu as so } from "./menu.mjs";
|
|
34
|
+
import { CovalentNavRailListItem as To } from "./nav-list-item.mjs";
|
|
35
|
+
import { CovalentNotebookCell as So } from "./notebook-cell.mjs";
|
|
36
|
+
import { CovalentRadio as ho } from "./radio.mjs";
|
|
37
|
+
import { CovalentRadioListItem as Lo } from "./radio-list-item.mjs";
|
|
38
|
+
import { CovalentSelect as ko } from "./select.mjs";
|
|
39
|
+
import { CovalentSideSheet as Ao } from "./side-sheet.mjs";
|
|
40
|
+
import { CovalentSlider as Eo } from "./slider.mjs";
|
|
41
|
+
import { CovalentSliderRange as Fo } from "./slider-range.mjs";
|
|
42
|
+
import { CovalentSnackbar as yo } from "./snackbar.mjs";
|
|
43
|
+
import { CovalentStatusDialog as wo } from "./status-dialog.mjs";
|
|
44
|
+
import { CovalentStatusHeader as Mo } from "./status-header.mjs";
|
|
45
|
+
import { CovalentStatusHeaderItem as qo } from "./status-header-item.mjs";
|
|
46
|
+
import { CovalentSwitch as Go } from "./switch.mjs";
|
|
47
|
+
import { CovalentTab as Ko } from "./tab.mjs";
|
|
48
|
+
import { CovalentTabBar as Qo } from "./tab-bar.mjs";
|
|
49
|
+
import { CovalentTextArea as Vo } from "./textarea.mjs";
|
|
50
|
+
import { CovalentTextField as Xo } from "./textfield.mjs";
|
|
51
|
+
import { CovalentTextLockup as Zo } from "./text-lockup.mjs";
|
|
52
|
+
import { CovalentToolbar as $o } from "./toolbar.mjs";
|
|
53
|
+
import { CovalentTooltip as ee } from "./tooltip.mjs";
|
|
54
|
+
import { CovalentTopAppBar as re } from "./top-app-bar.mjs";
|
|
55
|
+
import { CovalentTopAppBarFixed as le } from "./top-app-bar-fixed.mjs";
|
|
56
|
+
import { CovalentTreeList as pe } from "./tree-list.mjs";
|
|
57
|
+
import { CovalentTreeListItem as me } from "./tree-list-item.mjs";
|
|
58
|
+
import { CovalentTypography as ve } from "./typography.mjs";
|
|
58
59
|
export {
|
|
59
60
|
t as CovalentActionRibbon,
|
|
60
61
|
a as CovalentAlert,
|
|
@@ -62,57 +63,58 @@ export {
|
|
|
62
63
|
C as CovalentBadge,
|
|
63
64
|
x as CovalentButton,
|
|
64
65
|
f as CovalentCard,
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
I as
|
|
69
|
-
u as
|
|
70
|
-
b as
|
|
71
|
-
|
|
72
|
-
R as
|
|
73
|
-
P as
|
|
74
|
-
|
|
75
|
-
N as
|
|
76
|
-
j as
|
|
77
|
-
z as
|
|
78
|
-
J as
|
|
79
|
-
O as
|
|
80
|
-
U as
|
|
81
|
-
W as
|
|
82
|
-
Y as
|
|
83
|
-
_ as
|
|
84
|
-
oo as
|
|
85
|
-
to as
|
|
86
|
-
ao as
|
|
87
|
-
no as
|
|
88
|
-
Co as
|
|
89
|
-
xo as
|
|
90
|
-
fo as
|
|
91
|
-
so as
|
|
92
|
-
To as
|
|
93
|
-
So as
|
|
94
|
-
ho as
|
|
95
|
-
Lo as
|
|
96
|
-
ko as
|
|
97
|
-
Ao as
|
|
98
|
-
Eo as
|
|
99
|
-
Fo as
|
|
100
|
-
yo as
|
|
101
|
-
|
|
102
|
-
Mo as
|
|
103
|
-
qo as
|
|
104
|
-
Go as
|
|
105
|
-
Ko as
|
|
106
|
-
Qo as
|
|
107
|
-
Vo as
|
|
108
|
-
Xo as
|
|
109
|
-
Zo as
|
|
110
|
-
$o as
|
|
111
|
-
ee as
|
|
112
|
-
re as
|
|
113
|
-
le as
|
|
114
|
-
pe as
|
|
115
|
-
me as
|
|
116
|
-
|
|
117
|
-
|
|
66
|
+
s as CovalentCardHeader,
|
|
67
|
+
g as CovalentCheckListItem,
|
|
68
|
+
c as CovalentCheckbox,
|
|
69
|
+
I as CovalentChip,
|
|
70
|
+
u as CovalentChipSet,
|
|
71
|
+
b as CovalentCircularProgress,
|
|
72
|
+
B as CovalentCodeEditor,
|
|
73
|
+
R as CovalentCodeSnippet,
|
|
74
|
+
P as CovalentDialog,
|
|
75
|
+
H as CovalentDivider,
|
|
76
|
+
N as CovalentDrawer,
|
|
77
|
+
j as CovalentEmptyState,
|
|
78
|
+
z as CovalentExpansionPanel,
|
|
79
|
+
J as CovalentExpansionPanelItem,
|
|
80
|
+
O as CovalentFocusedPage,
|
|
81
|
+
U as CovalentFormfield,
|
|
82
|
+
W as CovalentFullscreenDialog,
|
|
83
|
+
Y as CovalentIcon,
|
|
84
|
+
_ as CovalentIconButton,
|
|
85
|
+
oo as CovalentIconButtonToggle,
|
|
86
|
+
to as CovalentIconCheckToggle,
|
|
87
|
+
ao as CovalentIconLockup,
|
|
88
|
+
no as CovalentIconRadioToggle,
|
|
89
|
+
Co as CovalentLinearProgress,
|
|
90
|
+
xo as CovalentList,
|
|
91
|
+
fo as CovalentListItem,
|
|
92
|
+
so as CovalentMenu,
|
|
93
|
+
To as CovalentNavRailListItem,
|
|
94
|
+
So as CovalentNotebookCell,
|
|
95
|
+
ho as CovalentRadio,
|
|
96
|
+
Lo as CovalentRadioListItem,
|
|
97
|
+
ko as CovalentSelect,
|
|
98
|
+
Ao as CovalentSideSheet,
|
|
99
|
+
Eo as CovalentSlider,
|
|
100
|
+
Fo as CovalentSliderRange,
|
|
101
|
+
yo as CovalentSnackbar,
|
|
102
|
+
wo as CovalentStatusDialog,
|
|
103
|
+
Mo as CovalentStatusHeader,
|
|
104
|
+
qo as CovalentStatusHeaderItem,
|
|
105
|
+
Go as CovalentSwitch,
|
|
106
|
+
Ko as CovalentTab,
|
|
107
|
+
Qo as CovalentTabBar,
|
|
108
|
+
Vo as CovalentTextArea,
|
|
109
|
+
Xo as CovalentTextField,
|
|
110
|
+
Zo as CovalentTextLockup,
|
|
111
|
+
$o as CovalentToolbar,
|
|
112
|
+
ee as CovalentTooltip,
|
|
113
|
+
re as CovalentTopAppBar,
|
|
114
|
+
le as CovalentTopAppBarFixed,
|
|
115
|
+
pe as CovalentTreeList,
|
|
116
|
+
me as CovalentTreeListItem,
|
|
117
|
+
ve as CovalentTypography,
|
|
118
|
+
A as cvEditorDarkTheme,
|
|
119
|
+
D as cvEditorLightTheme
|
|
118
120
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@covalent/components",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.18.0",
|
|
4
4
|
"description": "a catalog of material components for covalent",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"module": "./index.mjs",
|
|
@@ -83,6 +83,11 @@
|
|
|
83
83
|
"import": "./card.mjs",
|
|
84
84
|
"require": "./card.js"
|
|
85
85
|
},
|
|
86
|
+
"./card-header": {
|
|
87
|
+
"types": "./card/card-header/card-header.d.ts",
|
|
88
|
+
"import": "./card-header.mjs",
|
|
89
|
+
"require": "./card-header.js"
|
|
90
|
+
},
|
|
86
91
|
"./checkbox": {
|
|
87
92
|
"types": "./checkbox/checkbox.d.ts",
|
|
88
93
|
"import": "./checkbox.mjs",
|