@fluid-topics/ft-button 1.1.40 → 1.1.42
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 +1 -1
- package/build/ft-button.js +1 -1
- package/build/ft-button.min.js +306 -268
- package/build/{ft-button.css.js → ft-button.styles.js} +4 -4
- package/build/ftds-button.js +1 -1
- package/build/{ftds-button.css.js → ftds-button.styles.js} +3 -3
- package/build/index.d.ts +2 -2
- package/build/index.js +2 -2
- package/package.json +8 -8
- /package/build/{ft-button.css.d.ts → ft-button.styles.d.ts} +0 -0
- /package/build/{ftds-button.css.d.ts → ftds-button.styles.d.ts} +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { css, } from "lit";
|
|
2
2
|
import { designSystemVariables, FtCssVariableFactory, noTextSelect, setVariable } from "@fluid-topics/ft-wc-utils";
|
|
3
|
-
import { FtRippleCssVariables } from "@fluid-topics/ft-ripple/build/ft-ripple.
|
|
4
|
-
import { FtTypographyButtonCssVariables } from "@fluid-topics/ft-typography/build/ft-typography.
|
|
5
|
-
import { FtLoaderCssVariables } from "@fluid-topics/ft-loader/build/ft-loader.
|
|
6
|
-
import { FtIconCssVariables } from "@fluid-topics/ft-icon/build/ft-icon.
|
|
3
|
+
import { FtRippleCssVariables } from "@fluid-topics/ft-ripple/build/ft-ripple.styles";
|
|
4
|
+
import { FtTypographyButtonCssVariables } from "@fluid-topics/ft-typography/build/ft-typography.styles";
|
|
5
|
+
import { FtLoaderCssVariables } from "@fluid-topics/ft-loader/build/ft-loader.styles";
|
|
6
|
+
import { FtIconCssVariables } from "@fluid-topics/ft-icon/build/ft-icon.styles";
|
|
7
7
|
const buttonColor = FtCssVariableFactory.extend("--ft-button-color", "", designSystemVariables.colorPrimary);
|
|
8
8
|
export const FtButtonCssVariables = {
|
|
9
9
|
backgroundColor: FtCssVariableFactory.extend("--ft-button-background-color", "", designSystemVariables.colorSurface),
|
package/build/ftds-button.js
CHANGED
|
@@ -8,7 +8,7 @@ import { FtBaseButton } from "./ft-base-button";
|
|
|
8
8
|
import { property } from "lit/decorators.js";
|
|
9
9
|
import { FtTypographyVariants } from "@fluid-topics/ft-typography/build/ft-typography.properties";
|
|
10
10
|
import { safariEllipsisFix } from "@fluid-topics/ft-wc-utils";
|
|
11
|
-
import { designSystemStyles } from "./ftds-button.
|
|
11
|
+
import { designSystemStyles } from "./ftds-button.styles";
|
|
12
12
|
class FtdsButton extends FtBaseButton {
|
|
13
13
|
constructor() {
|
|
14
14
|
super(...arguments);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { css, } from "lit";
|
|
2
2
|
import { noTextSelect, setVariable } from "@fluid-topics/ft-wc-utils";
|
|
3
|
-
import { FtRippleCssVariables } from "@fluid-topics/ft-ripple/build/ft-ripple.
|
|
4
|
-
import { FtLoaderCssVariables } from "@fluid-topics/ft-loader/build/ft-loader.
|
|
5
|
-
import { FtIconCssVariables } from "@fluid-topics/ft-icon/build/ft-icon.
|
|
3
|
+
import { FtRippleCssVariables } from "@fluid-topics/ft-ripple/build/ft-ripple.styles";
|
|
4
|
+
import { FtLoaderCssVariables } from "@fluid-topics/ft-loader/build/ft-loader.styles";
|
|
5
|
+
import { FtIconCssVariables } from "@fluid-topics/ft-icon/build/ft-icon.styles";
|
|
6
6
|
import { button } from "@fluid-topics/design-system-variables";
|
|
7
7
|
export { button as FtdsButtonCssVariables } from "@fluid-topics/design-system-variables";
|
|
8
8
|
//language=css
|
package/build/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * from "./ft-button";
|
|
2
|
-
export * from "./ft-button.
|
|
2
|
+
export * from "./ft-button.styles";
|
|
3
3
|
export * from "./ft-button.properties";
|
|
4
4
|
export * from "./ftds-button";
|
|
5
|
-
export * from "./ftds-button.
|
|
5
|
+
export * from "./ftds-button.styles";
|
|
6
6
|
export * from "./ftds-button.properties";
|
package/build/index.js
CHANGED
|
@@ -2,10 +2,10 @@ import { customElement } from "@fluid-topics/ft-wc-utils";
|
|
|
2
2
|
import { FtButton } from "./ft-button";
|
|
3
3
|
import { FtdsButton } from "./ftds-button";
|
|
4
4
|
export * from "./ft-button";
|
|
5
|
-
export * from "./ft-button.
|
|
5
|
+
export * from "./ft-button.styles";
|
|
6
6
|
export * from "./ft-button.properties";
|
|
7
7
|
export * from "./ftds-button";
|
|
8
|
-
export * from "./ftds-button.
|
|
8
|
+
export * from "./ftds-button.styles";
|
|
9
9
|
export * from "./ftds-button.properties";
|
|
10
10
|
customElement("ft-button")(FtButton);
|
|
11
11
|
customElement("ftds-button")(FtdsButton);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-topics/ft-button",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.42",
|
|
4
4
|
"description": "A generic Fluid Topics tag",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Lit"
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"url": "ssh://git@scm.mrs.antidot.net:2222/fluidtopics/ft-web-components.git"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@fluid-topics/ft-icon": "1.1.
|
|
23
|
-
"@fluid-topics/ft-loader": "1.1.
|
|
24
|
-
"@fluid-topics/ft-ripple": "1.1.
|
|
25
|
-
"@fluid-topics/ft-tooltip": "1.1.
|
|
26
|
-
"@fluid-topics/ft-typography": "1.1.
|
|
27
|
-
"@fluid-topics/ft-wc-utils": "1.1.
|
|
22
|
+
"@fluid-topics/ft-icon": "1.1.42",
|
|
23
|
+
"@fluid-topics/ft-loader": "1.1.42",
|
|
24
|
+
"@fluid-topics/ft-ripple": "1.1.42",
|
|
25
|
+
"@fluid-topics/ft-tooltip": "1.1.42",
|
|
26
|
+
"@fluid-topics/ft-typography": "1.1.42",
|
|
27
|
+
"@fluid-topics/ft-wc-utils": "1.1.42",
|
|
28
28
|
"lit": "3.1.0"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "057e1248874a9a814a34e0bf75329f963744a5ff"
|
|
31
31
|
}
|
|
File without changes
|
|
File without changes
|