@fluid-topics/ft-filterable-table 1.1.41 → 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-filterable-table.js +1 -1
- package/build/ft-filterable-table.light.js +1 -1
- package/build/ft-filterable-table.min.js +435 -412
- package/build/{ft-filterable-table.css.js → ft-filterable-table.styles.js} +2 -2
- package/build/index.d.ts +1 -1
- package/build/index.js +1 -1
- package/package.json +6 -6
- /package/build/{ft-filterable-table.css.d.ts → ft-filterable-table.styles.d.ts} +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { css } from "lit";
|
|
2
2
|
import { designSystemVariables, FtCssVariableFactory, setVariable } from "@fluid-topics/ft-wc-utils";
|
|
3
|
-
import { FtButtonCssVariables } from "@fluid-topics/ft-button/build/ft-button.
|
|
3
|
+
import { FtButtonCssVariables } from "@fluid-topics/ft-button/build/ft-button.styles";
|
|
4
4
|
export const FtFilterableTableCssVariables = {
|
|
5
5
|
headerBackground: FtCssVariableFactory.create("--ft-filterable-table-header-background", "", "COLOR", "whitesmoke"),
|
|
6
6
|
oddRowBackground: FtCssVariableFactory.create("--ft-filterable-table-odd-row-background", "", "COLOR", "#FFFFFF"),
|
|
7
7
|
evenRowBackground: FtCssVariableFactory.create("--ft-filterable-table-even-row-background", "", "COLOR", "#fdfdfd"),
|
|
8
8
|
rowHoverBackground: FtCssVariableFactory.create("--ft-filterable-table-row-hover-background", "", "COLOR", "#fafafa"),
|
|
9
|
-
stickyHeaderZIndex: FtCssVariableFactory.create("--ft-filterable-table-sticky-header-zindex", "", "NUMBER", "
|
|
9
|
+
stickyHeaderZIndex: FtCssVariableFactory.create("--ft-filterable-table-sticky-header-zindex", "", "NUMBER", "10"),
|
|
10
10
|
cellVerticalBorderWidth: FtCssVariableFactory.create("--ft-filterable-table-cell-vertical-border-width", "", "SIZE", "1px"),
|
|
11
11
|
colorOnSurfaceHigh: FtCssVariableFactory.external(designSystemVariables.colorOnSurfaceHigh, "Design system"),
|
|
12
12
|
titleFont: FtCssVariableFactory.external(designSystemVariables.titleFont, "Design system"),
|
package/build/index.d.ts
CHANGED
package/build/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { customElement } from "@fluid-topics/ft-wc-utils";
|
|
2
2
|
import { FtFilterableTable } from "./ft-filterable-table";
|
|
3
|
-
export * from "./ft-filterable-table.
|
|
3
|
+
export * from "./ft-filterable-table.styles";
|
|
4
4
|
export * from "./ft-filterable-table.properties";
|
|
5
5
|
export * from "./ft-filterable-table";
|
|
6
6
|
customElement("ft-filterable-table")(FtFilterableTable);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-topics/ft-filterable-table",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.42",
|
|
4
4
|
"description": "A dynamic table with filters",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Lit"
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
"test": "echo \"Error: run tests from root\" && exit 1"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@fluid-topics/ft-button": "1.1.
|
|
26
|
-
"@fluid-topics/ft-select": "1.1.
|
|
27
|
-
"@fluid-topics/ft-text-field": "1.1.
|
|
28
|
-
"@fluid-topics/ft-wc-utils": "1.1.
|
|
25
|
+
"@fluid-topics/ft-button": "1.1.42",
|
|
26
|
+
"@fluid-topics/ft-select": "1.1.42",
|
|
27
|
+
"@fluid-topics/ft-text-field": "1.1.42",
|
|
28
|
+
"@fluid-topics/ft-wc-utils": "1.1.42",
|
|
29
29
|
"lit": "3.1.0"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "057e1248874a9a814a34e0bf75329f963744a5ff"
|
|
32
32
|
}
|
|
File without changes
|