@fluid-topics/ft-floating-menu 1.4.5 → 2.0.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/build/define.d.ts +1 -0
- package/build/define.js +9 -0
- package/build/ft-floating-menu.light.js +162 -162
- package/build/ft-floating-menu.min.js +161 -161
- package/build/index.d.ts +1 -1
- package/build/index.js +1 -10
- package/package.json +28 -28
package/build/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from "./ft-base-floating-menu.properties";
|
|
2
|
-
export { FtFloatingMenuSelectEvent, FtFloatingMenuStatusChangeEvent } from "./ft-base-floating-menu";
|
|
2
|
+
export { FtFloatingMenuSelectEvent, FtFloatingMenuStatusChangeEvent, } from "./ft-base-floating-menu";
|
|
3
3
|
export * from "./ft-floating-menu.styles";
|
|
4
4
|
export * from "./ft-floating-menu.properties";
|
|
5
5
|
export * from "./ft-floating-menu";
|
package/build/index.js
CHANGED
|
@@ -1,10 +1,5 @@
|
|
|
1
|
-
import { customElement } from "@fluid-topics/ft-wc-utils";
|
|
2
|
-
import { FtFloatingMenu } from "./ft-floating-menu";
|
|
3
|
-
import { FtFloatingMenuItem } from "./ft-floating-menu-item";
|
|
4
|
-
import { FtdsFloatingMenu } from "./ftds-floating-menu";
|
|
5
|
-
import { FtFloatingMenuLabel } from "./ft-floating-menu-label";
|
|
6
1
|
export * from "./ft-base-floating-menu.properties";
|
|
7
|
-
export { FtFloatingMenuSelectEvent, FtFloatingMenuStatusChangeEvent } from "./ft-base-floating-menu";
|
|
2
|
+
export { FtFloatingMenuSelectEvent, FtFloatingMenuStatusChangeEvent, } from "./ft-base-floating-menu";
|
|
8
3
|
export * from "./ft-floating-menu.styles";
|
|
9
4
|
export * from "./ft-floating-menu.properties";
|
|
10
5
|
export * from "./ft-floating-menu";
|
|
@@ -16,7 +11,3 @@ export * from "./ft-floating-menu-item";
|
|
|
16
11
|
export * from "./ft-floating-menu-label.styles";
|
|
17
12
|
export * from "./ft-floating-menu-label.properties";
|
|
18
13
|
export * from "./ft-floating-menu-label";
|
|
19
|
-
customElement("ft-floating-menu")(FtFloatingMenu);
|
|
20
|
-
customElement("ftds-floating-menu")(FtdsFloatingMenu);
|
|
21
|
-
customElement("ft-floating-menu-item")(FtFloatingMenuItem);
|
|
22
|
-
customElement("ft-floating-menu-label")(FtFloatingMenuLabel);
|
package/package.json
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
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
|
-
|
|
2
|
+
"name": "@fluid-topics/ft-floating-menu",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "Floating menu 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-floating-menu.min.js",
|
|
12
|
+
"typings": "build/index",
|
|
13
|
+
"files": [
|
|
14
|
+
"build/**/*.js",
|
|
15
|
+
"build/**/*.ts"
|
|
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/ft-button": "2.0.0",
|
|
23
|
+
"@fluid-topics/ft-icon": "2.0.0",
|
|
24
|
+
"@fluid-topics/ft-ripple": "2.0.0",
|
|
25
|
+
"@fluid-topics/ft-typography": "2.0.0",
|
|
26
|
+
"@fluid-topics/ft-wc-utils": "2.0.0",
|
|
27
|
+
"lit": "3.1.0"
|
|
28
|
+
},
|
|
29
|
+
"gitHead": "139801842483cdd25e6c0d850431dfb2b930f394"
|
|
30
30
|
}
|