@fluid-topics/ft-tree-list 1.3.15 → 1.3.16
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/ft-tree-list.light.js +179 -178
- package/build/ft-tree-list.min.js +61 -60
- package/build/ftds-tree-list.styles.js +5 -4
- package/package.json +6 -6
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { css } from "lit";
|
|
2
|
-
import { setVariable
|
|
2
|
+
import { setVariable } from "@fluid-topics/ft-wc-utils";
|
|
3
3
|
import { FtTypographyCssVariables, FtTypographyVariants } from "@fluid-topics/ft-typography";
|
|
4
4
|
import { treeList } from "@fluid-topics/design-system-variables";
|
|
5
|
+
import { FtIconCssVariables } from "@fluid-topics/ft-icon";
|
|
5
6
|
export { treeList as FtdsTreeListCssVariables } from "@fluid-topics/design-system-variables";
|
|
6
7
|
// language=CSS
|
|
7
8
|
export const styles = css `
|
|
@@ -138,7 +139,7 @@ export const styles = css `
|
|
|
138
139
|
|
|
139
140
|
/* Buttons */
|
|
140
141
|
[part="node-expand"] {
|
|
141
|
-
|
|
142
|
+
${FtIconCssVariables.size.set("16px")};
|
|
142
143
|
color: ${treeList.nodeUnselectedIconColor};
|
|
143
144
|
}
|
|
144
145
|
|
|
@@ -162,8 +163,8 @@ export const styles = css `
|
|
|
162
163
|
}
|
|
163
164
|
|
|
164
165
|
li a[role="treeitem"][part="load-more"]:hover:before {
|
|
165
|
-
|
|
166
|
-
|
|
166
|
+
background-color: ${treeList.loadMoreHoverBackgroundColor};
|
|
167
|
+
border-color: ${treeList.loadMoreHoverBorderColor} !important;
|
|
167
168
|
}
|
|
168
169
|
|
|
169
170
|
li a[role="treeitem"][part="load-more"]:focus-visible:before {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-topics/ft-tree-list",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.16",
|
|
4
4
|
"description": "A tree list component",
|
|
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/design-system-variables": "0.1.
|
|
23
|
-
"@fluid-topics/ft-assets": "1.3.
|
|
24
|
-
"@fluid-topics/ft-wc-utils": "1.3.
|
|
22
|
+
"@fluid-topics/design-system-variables": "0.1.102",
|
|
23
|
+
"@fluid-topics/ft-assets": "1.3.16",
|
|
24
|
+
"@fluid-topics/ft-wc-utils": "1.3.16",
|
|
25
25
|
"lit": "3.1.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@fluid-topics/ft-wc-test-utils": "1.3.
|
|
28
|
+
"@fluid-topics/ft-wc-test-utils": "1.3.16"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "092d409b397263ffef1f860386137eea8e5f7c2c"
|
|
31
31
|
}
|