@touchvue/ui 1.0.0-beta.47 → 1.0.0-beta.48
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/es/components/select/src/select.d.ts +14 -0
- package/es/components/select/src/select.vue.d.ts +18 -0
- package/es/packages/components/float/src/Float.vue2.mjs +60 -51
- package/es/packages/components/float/src/Float.vue2.mjs.map +1 -1
- package/es/packages/components/select/src/hooks/use-select-class-style.mjs +3 -0
- package/es/packages/components/select/src/hooks/use-select-class-style.mjs.map +1 -1
- package/es/packages/components/select/src/select.mjs +14 -0
- package/es/packages/components/select/src/select.mjs.map +1 -1
- package/es/packages/components/select/src/select.vue2.mjs +28 -8
- package/es/packages/components/select/src/select.vue2.mjs.map +1 -1
- package/lib/components/select/src/select.d.ts +14 -0
- package/lib/components/select/src/select.vue.d.ts +18 -0
- package/lib/packages/components/float/src/Float.vue2.js +59 -50
- package/lib/packages/components/float/src/Float.vue2.js.map +1 -1
- package/lib/packages/components/select/src/hooks/use-select-class-style.js +3 -0
- package/lib/packages/components/select/src/hooks/use-select-class-style.js.map +1 -1
- package/lib/packages/components/select/src/select.js +14 -0
- package/lib/packages/components/select/src/select.js.map +1 -1
- package/lib/packages/components/select/src/select.vue2.js +27 -7
- package/lib/packages/components/select/src/select.vue2.js.map +1 -1
- package/package.json +1 -1
- package/theme/components/index.css +14 -0
- package/theme/index.css +14 -0
- package/theme/skin/default.css +14 -0
|
@@ -3344,6 +3344,20 @@ html body .height-full {
|
|
|
3344
3344
|
.to-select.is-changed {
|
|
3345
3345
|
color: var(--primary);
|
|
3346
3346
|
}
|
|
3347
|
+
.to-select.is-filterable .to-select-content {
|
|
3348
|
+
padding-left: 0;
|
|
3349
|
+
padding-top: 0;
|
|
3350
|
+
padding-bottom: 0;
|
|
3351
|
+
display: flex;
|
|
3352
|
+
}
|
|
3353
|
+
.to-select.is-filterable .to-select-input {
|
|
3354
|
+
flex: 1;
|
|
3355
|
+
}
|
|
3356
|
+
.to-select.is-filterable .to-select-input .to-input {
|
|
3357
|
+
--bg: none;
|
|
3358
|
+
--border: 0 none;
|
|
3359
|
+
flex: 1;
|
|
3360
|
+
}
|
|
3347
3361
|
.to-select-icon {
|
|
3348
3362
|
--color: inherit;
|
|
3349
3363
|
--width: 1em;
|
package/theme/index.css
CHANGED
|
@@ -3347,6 +3347,20 @@ html body .height-full {
|
|
|
3347
3347
|
.to-select.is-changed {
|
|
3348
3348
|
color: var(--primary);
|
|
3349
3349
|
}
|
|
3350
|
+
.to-select.is-filterable .to-select-content {
|
|
3351
|
+
padding-left: 0;
|
|
3352
|
+
padding-top: 0;
|
|
3353
|
+
padding-bottom: 0;
|
|
3354
|
+
display: flex;
|
|
3355
|
+
}
|
|
3356
|
+
.to-select.is-filterable .to-select-input {
|
|
3357
|
+
flex: 1;
|
|
3358
|
+
}
|
|
3359
|
+
.to-select.is-filterable .to-select-input .to-input {
|
|
3360
|
+
--bg: none;
|
|
3361
|
+
--border: 0 none;
|
|
3362
|
+
flex: 1;
|
|
3363
|
+
}
|
|
3350
3364
|
.to-select-icon {
|
|
3351
3365
|
--color: inherit;
|
|
3352
3366
|
--width: 1em;
|
package/theme/skin/default.css
CHANGED
|
@@ -3347,6 +3347,20 @@ html body .height-full {
|
|
|
3347
3347
|
.to-select.is-changed {
|
|
3348
3348
|
color: var(--primary);
|
|
3349
3349
|
}
|
|
3350
|
+
.to-select.is-filterable .to-select-content {
|
|
3351
|
+
padding-left: 0;
|
|
3352
|
+
padding-top: 0;
|
|
3353
|
+
padding-bottom: 0;
|
|
3354
|
+
display: flex;
|
|
3355
|
+
}
|
|
3356
|
+
.to-select.is-filterable .to-select-input {
|
|
3357
|
+
flex: 1;
|
|
3358
|
+
}
|
|
3359
|
+
.to-select.is-filterable .to-select-input .to-input {
|
|
3360
|
+
--bg: none;
|
|
3361
|
+
--border: 0 none;
|
|
3362
|
+
flex: 1;
|
|
3363
|
+
}
|
|
3350
3364
|
.to-select-icon {
|
|
3351
3365
|
--color: inherit;
|
|
3352
3366
|
--width: 1em;
|