@fluid-topics/ft-select 1.3.21 → 1.3.22
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-select.d.ts +3 -2
- package/build/ft-select.js +28 -12
- package/build/ft-select.light.js +126 -111
- package/build/ft-select.min.js +146 -131
- package/build/ft-select.styles.js +5 -1
- package/package.json +7 -7
|
@@ -21,7 +21,7 @@ export const FtSelectCssVariables = {
|
|
|
21
21
|
elevation02: FtCssVariableFactory.external(designSystemVariables.elevation02, "Design system"),
|
|
22
22
|
colorError: FtCssVariableFactory.external(designSystemVariables.colorError, "Design system"),
|
|
23
23
|
};
|
|
24
|
-
//language=css
|
|
24
|
+
// language=css
|
|
25
25
|
export const styles = css `
|
|
26
26
|
*:focus {
|
|
27
27
|
outline: none;
|
|
@@ -155,6 +155,10 @@ export const styles = css `
|
|
|
155
155
|
align-items: center;
|
|
156
156
|
}
|
|
157
157
|
|
|
158
|
+
.ft-select--option:hover {
|
|
159
|
+
border-left: 2px ${FtSelectCssVariables.colorPrimary} solid;
|
|
160
|
+
}
|
|
161
|
+
|
|
158
162
|
.ft-select--option span {
|
|
159
163
|
text-overflow: ellipsis;
|
|
160
164
|
overflow: hidden;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-topics/ft-select",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.22",
|
|
4
4
|
"description": "Value selector for a predefined list of choices",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Lit"
|
|
@@ -19,12 +19,12 @@
|
|
|
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.3.
|
|
23
|
-
"@fluid-topics/ft-input-label": "1.3.
|
|
24
|
-
"@fluid-topics/ft-ripple": "1.3.
|
|
25
|
-
"@fluid-topics/ft-typography": "1.3.
|
|
26
|
-
"@fluid-topics/ft-wc-utils": "1.3.
|
|
22
|
+
"@fluid-topics/ft-icon": "1.3.22",
|
|
23
|
+
"@fluid-topics/ft-input-label": "1.3.22",
|
|
24
|
+
"@fluid-topics/ft-ripple": "1.3.22",
|
|
25
|
+
"@fluid-topics/ft-typography": "1.3.22",
|
|
26
|
+
"@fluid-topics/ft-wc-utils": "1.3.22",
|
|
27
27
|
"lit": "3.1.0"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "f8ee485234740327c93ce01f6149dc1605d080b9"
|
|
30
30
|
}
|