@fluid-topics/ft-popover 1.4.5 → 2.0.1
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/build/define.d.ts +1 -0
- package/build/define.js +5 -0
- package/build/ft-popover.light.js +235 -235
- package/build/ft-popover.min.js +181 -181
- package/build/ftds-popover-section.d.ts +1 -1
- package/build/ftds-popover.d.ts +2 -2
- package/build/index.js +0 -5
- package/package.json +29 -29
|
@@ -8,6 +8,6 @@ export declare class FtdsPopoverSection extends FtLitElement implements FtdsPopo
|
|
|
8
8
|
private popoverSectionLinkTypography;
|
|
9
9
|
private popoverSectionLinkSlot;
|
|
10
10
|
protected render(): import("lit-html").TemplateResult<1>;
|
|
11
|
-
renderHeading(): import("lit-html").TemplateResult<1
|
|
11
|
+
renderHeading(): typeof nothing | import("lit-html").TemplateResult<1>;
|
|
12
12
|
protected updated(props: PropertyValues): void;
|
|
13
13
|
}
|
package/build/ftds-popover.d.ts
CHANGED
|
@@ -25,8 +25,8 @@ export declare class FtdsPopover extends FtLitElement implements FtdsPopoverProp
|
|
|
25
25
|
private popoverLinkTypography?;
|
|
26
26
|
private popoverSectionsDiv?;
|
|
27
27
|
private popoverSectionsSlot?;
|
|
28
|
-
protected render(): import("lit-html").TemplateResult<1
|
|
29
|
-
renderPopover(): import("lit-html").TemplateResult<1
|
|
28
|
+
protected render(): typeof nothing | import("lit-html").TemplateResult<1>;
|
|
29
|
+
renderPopover(): typeof nothing | import("lit-html").TemplateResult<1>;
|
|
30
30
|
updated(properties: PropertyValues<FtdsPopover>): void;
|
|
31
31
|
close(): void;
|
|
32
32
|
open(): void;
|
package/build/index.js
CHANGED
|
@@ -1,11 +1,6 @@
|
|
|
1
|
-
import { customElement } from "@fluid-topics/ft-wc-utils";
|
|
2
|
-
import { FtdsPopover } from "./ftds-popover";
|
|
3
|
-
import { FtdsPopoverSection } from "./ftds-popover-section";
|
|
4
1
|
export * from "./ftds-popover";
|
|
5
2
|
export * from "./ftds-popover.styles";
|
|
6
3
|
export * from "./ftds-popover.properties";
|
|
7
4
|
export * from "./ftds-popover-section";
|
|
8
5
|
export * from "./ftds-popover-section.styles";
|
|
9
6
|
export * from "./ftds-popover-section.properties";
|
|
10
|
-
customElement("ftds-popover")(FtdsPopover);
|
|
11
|
-
customElement("ftds-popover-section")(FtdsPopoverSection);
|
package/package.json
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
2
|
+
"name": "@fluid-topics/ft-popover",
|
|
3
|
+
"version": "2.0.1",
|
|
4
|
+
"description": "A simple popover component",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"Lit"
|
|
7
|
+
],
|
|
8
|
+
"author": "Fluid Topics <devtopics@antidot.net>",
|
|
9
|
+
"license": "ISC",
|
|
10
|
+
"main": "build/index.js",
|
|
11
|
+
"web": "build/ft-popover.min.js",
|
|
12
|
+
"typings": "build/index",
|
|
13
|
+
"files": [
|
|
14
|
+
"build/**/*.ts",
|
|
15
|
+
"build/**/*.js"
|
|
16
|
+
],
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "ssh://git@scm.mrs.antidot.net:2222/fluidtopics/ft-web-components.git"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@fluid-topics/design-system-variables": "3.1.0",
|
|
23
|
+
"@fluid-topics/ft-button": "2.0.1",
|
|
24
|
+
"@fluid-topics/ft-icon": "2.0.1",
|
|
25
|
+
"@fluid-topics/ft-link": "2.0.1",
|
|
26
|
+
"@fluid-topics/ft-typography": "2.0.1",
|
|
27
|
+
"@fluid-topics/ft-wc-utils": "2.0.1",
|
|
28
|
+
"lit": "3.1.0"
|
|
29
|
+
},
|
|
30
|
+
"gitHead": "26bf1bd750f8272124b045d597e18b1eff63c518"
|
|
31
31
|
}
|