@covalent/components 7.0.0 → 7.1.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.
@@ -0,0 +1,27 @@
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
+ }
27
+ //# sourceMappingURL=cv-expansion-panel-item.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cv-expansion-panel-item.d.ts","sourceRoot":"","sources":["../../../../libs/components/src/expansion-panel/cv-expansion-panel-item.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAwB,MAAM,KAAK,CAAC;AAGvD,OAAO,cAAc,CAAC;AAEtB,qBACa,0BAA2B,SAAQ,UAAU;IACxD,OAAgB,MAAM,4BAIpB;IAE0B,KAAK,SAAK;IAEyB,IAAI,UAAS;IAE5E,UAAU,UAAS;IAEnB,YAAY,UAAS;IAErB,aAAa,UAAS;IAEtB,aAAa,UAAS;IAGtB,mBAAmB,UAAS;IAE5B,mBAAmB,UAAS;IAI5B,mBAAmB,UAAS;IAEA,KAAK,SAAW;IAChB,cAAc,SAAM;IACJ,UAAU,UAAS;IACnB,SAAS,UAAS;IAE9D,MAAM;IA2BN,UAAU;IAOV,OAAO,CAAC,cAAc;CAcvB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,yBAAyB,EAAE,0BAA0B,CAAC;KACvD;CACF"}
@@ -0,0 +1,16 @@
1
+ import { LitElement } from 'lit';
2
+ import { CovalentExpansionPanelItem } from './cv-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
+ }
16
+ //# sourceMappingURL=cv-expansion-panel.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cv-expansion-panel.d.ts","sourceRoot":"","sources":["../../../../libs/components/src/expansion-panel/cv-expansion-panel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAQ,MAAM,KAAK,CAAC;AAMvC,OAAO,EAAE,0BAA0B,EAAE,MAAM,2BAA2B,CAAC;AAEvE,qBACa,sBAAuB,SAAQ,UAAU;IACR,SAAS,UAAS;IAClC,UAAU,SAAW;IACxB,UAAU,EAAG,0BAA0B,EAAE,CAAC;IAEnE,MAAM;IAUN,OAAO,CAAC,aAAa,CA6BnB;IAEF,YAAY;CAgCb;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,oBAAoB,EAAE,sBAAsB,CAAC;KAC9C;CACF"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@covalent/components",
3
- "version": "7.0.0",
3
+ "version": "7.1.0",
4
4
  "description": "a catalog of material components for covalent",
5
5
  "main": "./index.js",
6
6
  "module": "./index.mjs",