@fluid-topics/ft-in-product-help 1.0.33
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/README.md +19 -0
- package/build/ft-in-product-help.css.d.ts +26 -0
- package/build/ft-in-product-help.css.js +83 -0
- package/build/ft-in-product-help.d.ts +32 -0
- package/build/ft-in-product-help.js +188 -0
- package/build/ft-in-product-help.light.js +672 -0
- package/build/ft-in-product-help.min.js +790 -0
- package/build/ft-in-product-help.properties.d.ts +25 -0
- package/build/ft-in-product-help.properties.js +11 -0
- package/build/index.d.ts +3 -0
- package/build/index.js +6 -0
- package/package.json +26 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { FtIconVariants } from "@fluid-topics/ft-icon/build/ft-icon.properties";
|
|
2
|
+
export declare enum FtInProductHelpMode {
|
|
3
|
+
STANDARD = "standard",
|
|
4
|
+
THEATER = "theater",
|
|
5
|
+
FULLSCREEN = "fullscreen"
|
|
6
|
+
}
|
|
7
|
+
export declare class FtInProductHelpVisibilityChange extends CustomEvent<{
|
|
8
|
+
opened: boolean;
|
|
9
|
+
displayMode: FtInProductHelpMode;
|
|
10
|
+
}> {
|
|
11
|
+
constructor(opened: boolean, displayMode: FtInProductHelpMode);
|
|
12
|
+
}
|
|
13
|
+
export interface FtInProductHelpProperties {
|
|
14
|
+
portalUrl?: string;
|
|
15
|
+
opened?: boolean;
|
|
16
|
+
displayMode?: FtInProductHelpMode;
|
|
17
|
+
closeIcon?: string;
|
|
18
|
+
standardModeIcon?: string;
|
|
19
|
+
disableStandardMode?: boolean;
|
|
20
|
+
theaterModeIcon?: string;
|
|
21
|
+
disableTheaterMode?: boolean;
|
|
22
|
+
fullscreenModeIcon?: string;
|
|
23
|
+
disableFullscreenMode?: boolean;
|
|
24
|
+
iconVariant?: FtIconVariants;
|
|
25
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export var FtInProductHelpMode;
|
|
2
|
+
(function (FtInProductHelpMode) {
|
|
3
|
+
FtInProductHelpMode["STANDARD"] = "standard";
|
|
4
|
+
FtInProductHelpMode["THEATER"] = "theater";
|
|
5
|
+
FtInProductHelpMode["FULLSCREEN"] = "fullscreen";
|
|
6
|
+
})(FtInProductHelpMode || (FtInProductHelpMode = {}));
|
|
7
|
+
export class FtInProductHelpVisibilityChange extends CustomEvent {
|
|
8
|
+
constructor(opened, displayMode) {
|
|
9
|
+
super("visibility-change", { detail: { opened, displayMode } });
|
|
10
|
+
}
|
|
11
|
+
}
|
package/build/index.d.ts
ADDED
package/build/index.js
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { customElement } from "@fluid-topics/ft-wc-utils";
|
|
2
|
+
import { FtInProductHelp } from "./ft-in-product-help";
|
|
3
|
+
export * from "./ft-in-product-help.css";
|
|
4
|
+
export * from "./ft-in-product-help.properties";
|
|
5
|
+
export * from "./ft-in-product-help";
|
|
6
|
+
customElement("ft-in-product-help")(FtInProductHelp);
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fluid-topics/ft-in-product-help",
|
|
3
|
+
"version": "1.0.33",
|
|
4
|
+
"description": "Embeddable fluid-topics iframe",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"Lit"
|
|
7
|
+
],
|
|
8
|
+
"author": "Fluid Topics <devtopics@antidot.net>",
|
|
9
|
+
"license": "ISC",
|
|
10
|
+
"main": "build/index.js",
|
|
11
|
+
"web": "build/ft-in-product-help.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-wc-utils": "1.0.33",
|
|
23
|
+
"lit": "2.7.2"
|
|
24
|
+
},
|
|
25
|
+
"gitHead": "4524915c2692a78f7cf4c12ebc844e8e83347231"
|
|
26
|
+
}
|