@fastkit/vui 1.1.1 → 1.3.0

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 CHANGED
@@ -920,7 +920,7 @@ interface VuiPluginOptions {
920
920
  "@fastkit/helpers": "Utilities"
921
921
  },
922
922
  "peerDependencies": {
923
- "vue": "^3.4.0",
923
+ "vue": "^3.5.0",
924
924
  "vue-router": "^4.0.0"
925
925
  }
926
926
  }
package/dist/vui.css CHANGED
@@ -1361,6 +1361,7 @@
1361
1361
  height:var(--control-field-height);
1362
1362
  letter-spacing:var(--control-field-letter-spacing);
1363
1363
  line-height:var(--control-field-line-height);
1364
+ min-height:var(--control-field-height);
1364
1365
  min-width:0;
1365
1366
  padding:0 8px;
1366
1367
  position:relative;
@@ -1876,6 +1877,42 @@
1876
1877
  color:var(--control-disabled-color);
1877
1878
  font-style:italic;
1878
1879
  }
1880
+ .v-file-input__inner{
1881
+ align-items:stretch;
1882
+ display:flex;
1883
+ }
1884
+ .v-file-input__button{
1885
+ border-bottom-right-radius:0;
1886
+ border-top-right-radius:0;
1887
+ flex:0 0 auto;
1888
+ height:auto;
1889
+ margin:0 0 1px;
1890
+ }
1891
+ .v-file-input__selections{
1892
+ align-items:center;
1893
+ align-self:stretch;
1894
+ display:flex;
1895
+ flex-wrap:wrap;
1896
+ padding:4px 6px;
1897
+ }
1898
+ .v-file-input__placeholder{
1899
+ color:var(--control-disabled-color);
1900
+ }
1901
+ .v-file-input__input{
1902
+ border-bottom-left-radius:0;
1903
+ border-top-left-radius:0;
1904
+ cursor:text;
1905
+ flex:1 1 100%;
1906
+ }
1907
+ .v-file-input__input__element{
1908
+ height:1px;
1909
+ overflow:hidden;
1910
+ position:absolute;
1911
+ white-space:nowrap;
1912
+ width:1px;
1913
+ clip:rect(0 0 0 0);
1914
+ clip-path:inset(100%);
1915
+ }
1879
1916
  .v-tabs{
1880
1917
  height:var(--tabs-height);
1881
1918
  overflow:hidden;