@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 +1 -1
- package/dist/vui.css +37 -0
- package/dist/vui.d.ts +417 -76
- package/dist/vui.mjs +458 -337
- package/dist/vui.mjs.map +1 -1
- package/package.json +24 -24
- package/src/components/VControlField/VControlField.scss +1 -0
- package/src/components/VControlField/VControlField.tsx +2 -2
- package/src/components/VDataTable/VDataTable.tsx +1 -1
- package/src/components/VFileInput/VFileInput.scss +42 -0
- package/src/components/VFileInput/VFileInput.tsx +178 -0
- package/src/components/VFileInput/index.ts +1 -0
- package/src/components/VFormControl/VFormControl.tsx +2 -1
- package/src/components/VIcon/VIcon.tsx +1 -1
- package/src/components/VNavigation/VNavigationItem.tsx +1 -1
- package/src/components/VPagination/VPagination.tsx +1 -1
- package/src/components/VSelect/VSelect.tsx +3 -3
- package/src/components/VTabs/VTab.tsx +1 -1
- package/src/components/VTextField/VTextField.tsx +1 -1
- package/src/components/index.ts +1 -0
- package/src/injections.ts +1 -0
- package/src/service.tsx +2 -1
package/README.md
CHANGED
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;
|