@fluid-topics/ft-file-button 1.3.0 → 1.3.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.
@@ -0,0 +1,6 @@
1
+ import { FtBaseFileButton } from "./ft-base-file-button";
2
+ import { ElementDefinitionsMap } from "@fluid-topics/ft-wc-utils";
3
+ export declare class FtdsFileButton extends FtBaseFileButton {
4
+ static elementDefinitions: ElementDefinitionsMap;
5
+ static styles: import("lit").CSSResult;
6
+ }
@@ -0,0 +1,10 @@
1
+ import { FtBaseFileButton } from "./ft-base-file-button";
2
+ import { styles } from "./ftds-file-button.styles";
3
+ import { FtdsButton } from "@fluid-topics/ft-button";
4
+ class FtdsFileButton extends FtBaseFileButton {
5
+ }
6
+ FtdsFileButton.elementDefinitions = {
7
+ "ft-or-ftds-button": FtdsButton,
8
+ };
9
+ FtdsFileButton.styles = styles;
10
+ export { FtdsFileButton };
@@ -0,0 +1 @@
1
+ export declare const styles: import("lit").CSSResult;
@@ -0,0 +1,3 @@
1
+ import { css } from "lit";
2
+ // language=CSS
3
+ export const styles = css ``;
package/build/index.d.ts CHANGED
@@ -1,3 +1,5 @@
1
+ export * from "./ft-base-file-button";
2
+ export * from "./ft-base-file-button.properties";
3
+ export * from "./ftds-file-button";
1
4
  export * from "./ft-file-button";
2
5
  export * from "./ft-file-button.styles";
3
- export * from "./ft-file-button.properties";
package/build/index.js CHANGED
@@ -1,6 +1,10 @@
1
1
  import { customElement } from "@fluid-topics/ft-wc-utils";
2
+ import { FtdsFileButton } from "./ftds-file-button";
2
3
  import { FtFileButton } from "./ft-file-button";
4
+ export * from "./ft-base-file-button";
5
+ export * from "./ft-base-file-button.properties";
6
+ export * from "./ftds-file-button";
3
7
  export * from "./ft-file-button";
4
8
  export * from "./ft-file-button.styles";
5
- export * from "./ft-file-button.properties";
6
9
  customElement("ft-file-button")(FtFileButton);
10
+ customElement("ftds-file-button")(FtdsFileButton);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluid-topics/ft-file-button",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "File",
5
5
  "keywords": [
6
6
  "Lit"
@@ -19,9 +19,9 @@
19
19
  "url": "ssh://git@scm.mrs.antidot.net:2222/fluidtopics/ft-web-components.git"
20
20
  },
21
21
  "dependencies": {
22
- "@fluid-topics/ft-button": "1.3.0",
23
- "@fluid-topics/ft-wc-utils": "1.3.0",
22
+ "@fluid-topics/ft-button": "1.3.1",
23
+ "@fluid-topics/ft-wc-utils": "1.3.1",
24
24
  "lit": "3.1.0"
25
25
  },
26
- "gitHead": "cc982effbf27c0483e03961ad450fd2057a108b2"
26
+ "gitHead": "ba07775e09d57ec38038f07f9c03b52aea08376b"
27
27
  }