@qikdev/vue-ui 0.2.311 → 0.2.313
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/dist/lib.es.js +9263 -8135
- package/dist/lib.es.js.map +1 -1
- package/dist/lib.umd.js +6081 -4947
- package/dist/lib.umd.js.map +1 -1
- package/dist/style.css +155 -49
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -1474,19 +1474,19 @@ li.expanded > .ux-link .caret[data-v-cbfd31c1] {
|
|
|
1474
1474
|
.ux-list-item[data-v-a5de8929]:hover {
|
|
1475
1475
|
background: color-mix(in lab, currentColor 5%, transparent);
|
|
1476
1476
|
}
|
|
1477
|
-
.basic-input-style[data-v-
|
|
1477
|
+
.basic-input-style[data-v-de5516aa] {
|
|
1478
1478
|
color: inherit;
|
|
1479
1479
|
background: color-mix(in lab, currentColor 4%, transparent);
|
|
1480
1480
|
border: 1px solid color-mix(in lab, currentColor 18%, transparent);
|
|
1481
1481
|
}
|
|
1482
|
-
.cell[data-v-
|
|
1482
|
+
.cell[data-v-de5516aa] {
|
|
1483
1483
|
display: flex;
|
|
1484
1484
|
min-width: 150px;
|
|
1485
1485
|
}
|
|
1486
|
-
.cell > div[data-v-
|
|
1486
|
+
.cell > div[data-v-de5516aa] {
|
|
1487
1487
|
flex: 1;
|
|
1488
1488
|
}
|
|
1489
|
-
.cell label[data-v-
|
|
1489
|
+
.cell label[data-v-de5516aa] {
|
|
1490
1490
|
display: block;
|
|
1491
1491
|
font-size: 0.8em;
|
|
1492
1492
|
margin-bottom: 0.3em;
|
|
@@ -1494,12 +1494,12 @@ li.expanded > .ux-link .caret[data-v-cbfd31c1] {
|
|
|
1494
1494
|
font-weight: 700;
|
|
1495
1495
|
opacity: 0.5;
|
|
1496
1496
|
}
|
|
1497
|
-
.cell input[data-v-
|
|
1497
|
+
.cell input[data-v-de5516aa] {
|
|
1498
1498
|
min-width: 150px;
|
|
1499
1499
|
flex: 1;
|
|
1500
1500
|
width: 100%;
|
|
1501
1501
|
}
|
|
1502
|
-
input[data-v-
|
|
1502
|
+
input[data-v-de5516aa] {
|
|
1503
1503
|
border-radius: 0.1em;
|
|
1504
1504
|
padding: 0.5em;
|
|
1505
1505
|
box-sizing: border-box;
|
|
@@ -1511,7 +1511,7 @@ input[data-v-8e1886fb] {
|
|
|
1511
1511
|
height: 2.5em;
|
|
1512
1512
|
color: inherit;
|
|
1513
1513
|
}
|
|
1514
|
-
input[data-v-
|
|
1514
|
+
input[data-v-de5516aa]:focus {
|
|
1515
1515
|
background: none;
|
|
1516
1516
|
border: 1px solid var(--primary);
|
|
1517
1517
|
outline: none;
|
|
@@ -1862,6 +1862,146 @@ input[data-v-1078f395]:focus {
|
|
|
1862
1862
|
border-bottom: 1px solid color-mix(in lab, currentColor 18%, transparent);
|
|
1863
1863
|
}
|
|
1864
1864
|
}
|
|
1865
|
+
.basic-input-style[data-v-6ddd93f2] {
|
|
1866
|
+
color: inherit;
|
|
1867
|
+
background: color-mix(in lab, currentColor 4%, transparent);
|
|
1868
|
+
border: 1px solid color-mix(in lab, currentColor 18%, transparent);
|
|
1869
|
+
}
|
|
1870
|
+
.search[data-v-6ddd93f2] {
|
|
1871
|
+
position: relative;
|
|
1872
|
+
width: 100%;
|
|
1873
|
+
}
|
|
1874
|
+
.search > .icon[data-v-6ddd93f2] {
|
|
1875
|
+
position: absolute;
|
|
1876
|
+
right: 0;
|
|
1877
|
+
top: 50%;
|
|
1878
|
+
translate: 0 -50%;
|
|
1879
|
+
bottom: 0;
|
|
1880
|
+
padding: 0 1em;
|
|
1881
|
+
}
|
|
1882
|
+
.search input[data-v-6ddd93f2] {
|
|
1883
|
+
width: 100%;
|
|
1884
|
+
border-radius: 5em;
|
|
1885
|
+
padding: 0.5em 1em;
|
|
1886
|
+
box-sizing: border-box;
|
|
1887
|
+
font-size: inherit;
|
|
1888
|
+
appearance: none;
|
|
1889
|
+
line-height: 1;
|
|
1890
|
+
color: inherit;
|
|
1891
|
+
background: color-mix(in lab, currentColor 6%, transparent);
|
|
1892
|
+
border: 1px solid transparent;
|
|
1893
|
+
}
|
|
1894
|
+
.search input[data-v-6ddd93f2]:focus {
|
|
1895
|
+
background: var(--bg1, #fff);
|
|
1896
|
+
border: 1px solid var(--primary);
|
|
1897
|
+
outline: none;
|
|
1898
|
+
}
|
|
1899
|
+
.basic-input-style[data-v-1f0deee2] {
|
|
1900
|
+
color: inherit;
|
|
1901
|
+
background: color-mix(in lab, currentColor 4%, transparent);
|
|
1902
|
+
border: 1px solid color-mix(in lab, currentColor 18%, transparent);
|
|
1903
|
+
}
|
|
1904
|
+
.invisible[data-v-1f0deee2] {
|
|
1905
|
+
opacity: 0.5;
|
|
1906
|
+
pointer-events: none;
|
|
1907
|
+
}
|
|
1908
|
+
.search-component[data-v-1f0deee2] {
|
|
1909
|
+
position: relative;
|
|
1910
|
+
width: 100%;
|
|
1911
|
+
}
|
|
1912
|
+
.face[data-v-1f0deee2] {
|
|
1913
|
+
width: 20px;
|
|
1914
|
+
}
|
|
1915
|
+
.ux-content-search-selected-items[data-v-1f0deee2] {
|
|
1916
|
+
display: flex;
|
|
1917
|
+
flex-wrap: wrap;
|
|
1918
|
+
gap: 8px;
|
|
1919
|
+
margin-bottom: 8px;
|
|
1920
|
+
}
|
|
1921
|
+
.ux-content-search-selected-item[data-v-1f0deee2] {
|
|
1922
|
+
background-color: #f0f0f0;
|
|
1923
|
+
padding: 4px 8px;
|
|
1924
|
+
border-radius: 4px;
|
|
1925
|
+
font-size: 14px;
|
|
1926
|
+
}
|
|
1927
|
+
.ux-content-search-options[data-v-1f0deee2] {
|
|
1928
|
+
position: absolute;
|
|
1929
|
+
max-height: 20vh;
|
|
1930
|
+
overflow-y: auto;
|
|
1931
|
+
z-index: 100;
|
|
1932
|
+
box-shadow: 0 4px 6px #0000001a;
|
|
1933
|
+
border: 1px solid color-mix(in lab, currentColor, var(--bg1));
|
|
1934
|
+
border-radius: 4px;
|
|
1935
|
+
margin-top: 4px;
|
|
1936
|
+
background-color: var(--bg1);
|
|
1937
|
+
}
|
|
1938
|
+
.ux-content-search-option.active[data-v-1f0deee2] {
|
|
1939
|
+
background-color: color-mix(in lab, var(--primary) 15%, var(--bg1));
|
|
1940
|
+
}
|
|
1941
|
+
.basic-input-style[data-v-ec70a3d8],
|
|
1942
|
+
input[data-v-ec70a3d8] {
|
|
1943
|
+
color: inherit;
|
|
1944
|
+
background: color-mix(in lab, currentColor 4%, transparent);
|
|
1945
|
+
border: 1px solid color-mix(in lab, currentColor 18%, transparent);
|
|
1946
|
+
}
|
|
1947
|
+
.ux-text-row[data-v-ec70a3d8] {
|
|
1948
|
+
margin-bottom: 0.5em;
|
|
1949
|
+
}
|
|
1950
|
+
[data-v-ec70a3d8] .ux-list {
|
|
1951
|
+
font-size: 0.9em;
|
|
1952
|
+
}
|
|
1953
|
+
input[data-v-ec70a3d8] {
|
|
1954
|
+
border-radius: 0.1em;
|
|
1955
|
+
padding: 0.5em;
|
|
1956
|
+
box-sizing: border-box;
|
|
1957
|
+
font-size: inherit;
|
|
1958
|
+
appearance: none;
|
|
1959
|
+
line-height: 1;
|
|
1960
|
+
height: 2.5em;
|
|
1961
|
+
}
|
|
1962
|
+
input[data-v-ec70a3d8]:focus {
|
|
1963
|
+
background: none;
|
|
1964
|
+
border: 1px solid var(--primary);
|
|
1965
|
+
outline: none;
|
|
1966
|
+
}
|
|
1967
|
+
.ux-text-row .ux-btn[data-v-ec70a3d8] {
|
|
1968
|
+
margin-left: 0.25em;
|
|
1969
|
+
}
|
|
1970
|
+
.ux-text-input-multiple[data-v-ec70a3d8] {
|
|
1971
|
+
width: 100%;
|
|
1972
|
+
}
|
|
1973
|
+
.ux-text-input-single[data-v-ec70a3d8] {
|
|
1974
|
+
width: calc(100% - 0.5em);
|
|
1975
|
+
margin: 0 0.5em 0 0;
|
|
1976
|
+
}
|
|
1977
|
+
.items[data-v-ec70a3d8] {
|
|
1978
|
+
border-radius: 0.3em;
|
|
1979
|
+
overflow: hidden;
|
|
1980
|
+
margin-bottom: 0.5em;
|
|
1981
|
+
}
|
|
1982
|
+
@media (prefers-color-scheme: light) {
|
|
1983
|
+
.items[data-v-ec70a3d8] {
|
|
1984
|
+
border: 1px solid color-mix(in lab, currentColor 15%, transparent);
|
|
1985
|
+
}
|
|
1986
|
+
}
|
|
1987
|
+
@media (prefers-color-scheme: dark) {
|
|
1988
|
+
.items[data-v-ec70a3d8] {
|
|
1989
|
+
border: 1px solid color-mix(in lab, currentColor 18%, transparent);
|
|
1990
|
+
}
|
|
1991
|
+
}
|
|
1992
|
+
.items .content-item[data-v-ec70a3d8] {
|
|
1993
|
+
border: none;
|
|
1994
|
+
}
|
|
1995
|
+
@media (prefers-color-scheme: light) {
|
|
1996
|
+
.items .content-item[data-v-ec70a3d8] {
|
|
1997
|
+
border-bottom: 1px solid color-mix(in lab, currentColor 15%, transparent);
|
|
1998
|
+
}
|
|
1999
|
+
}
|
|
2000
|
+
@media (prefers-color-scheme: dark) {
|
|
2001
|
+
.items .content-item[data-v-ec70a3d8] {
|
|
2002
|
+
border-bottom: 1px solid color-mix(in lab, currentColor 18%, transparent);
|
|
2003
|
+
}
|
|
2004
|
+
}
|
|
1865
2005
|
.basic-input-style[data-v-17c04ff2] {
|
|
1866
2006
|
color: inherit;
|
|
1867
2007
|
background: color-mix(in lab, currentColor 4%, transparent);
|
|
@@ -2991,40 +3131,6 @@ input[data-v-c8feb6c2]:focus {
|
|
|
2991
3131
|
display: flex;
|
|
2992
3132
|
min-height: 300px;
|
|
2993
3133
|
}
|
|
2994
|
-
.basic-input-style[data-v-6ddd93f2] {
|
|
2995
|
-
color: inherit;
|
|
2996
|
-
background: color-mix(in lab, currentColor 4%, transparent);
|
|
2997
|
-
border: 1px solid color-mix(in lab, currentColor 18%, transparent);
|
|
2998
|
-
}
|
|
2999
|
-
.search[data-v-6ddd93f2] {
|
|
3000
|
-
position: relative;
|
|
3001
|
-
width: 100%;
|
|
3002
|
-
}
|
|
3003
|
-
.search > .icon[data-v-6ddd93f2] {
|
|
3004
|
-
position: absolute;
|
|
3005
|
-
right: 0;
|
|
3006
|
-
top: 50%;
|
|
3007
|
-
translate: 0 -50%;
|
|
3008
|
-
bottom: 0;
|
|
3009
|
-
padding: 0 1em;
|
|
3010
|
-
}
|
|
3011
|
-
.search input[data-v-6ddd93f2] {
|
|
3012
|
-
width: 100%;
|
|
3013
|
-
border-radius: 5em;
|
|
3014
|
-
padding: 0.5em 1em;
|
|
3015
|
-
box-sizing: border-box;
|
|
3016
|
-
font-size: inherit;
|
|
3017
|
-
appearance: none;
|
|
3018
|
-
line-height: 1;
|
|
3019
|
-
color: inherit;
|
|
3020
|
-
background: color-mix(in lab, currentColor 6%, transparent);
|
|
3021
|
-
border: 1px solid transparent;
|
|
3022
|
-
}
|
|
3023
|
-
.search input[data-v-6ddd93f2]:focus {
|
|
3024
|
-
background: var(--bg1, #fff);
|
|
3025
|
-
border: 1px solid var(--primary);
|
|
3026
|
-
outline: none;
|
|
3027
|
-
}
|
|
3028
3134
|
.basic-input-style[data-v-a40a42bc] {
|
|
3029
3135
|
color: inherit;
|
|
3030
3136
|
background: color-mix(in lab, currentColor 4%, transparent);
|
|
@@ -3382,18 +3488,18 @@ td[data-v-f5a130e8]:first-child {
|
|
|
3382
3488
|
border-color: var(--primary);
|
|
3383
3489
|
opacity: 0.5;
|
|
3384
3490
|
}
|
|
3385
|
-
.basic-input-style[data-v-
|
|
3491
|
+
.basic-input-style[data-v-b5298f2c] {
|
|
3386
3492
|
color: inherit;
|
|
3387
3493
|
background: color-mix(in lab, currentColor 4%, transparent);
|
|
3388
3494
|
border: 1px solid color-mix(in lab, currentColor 18%, transparent);
|
|
3389
3495
|
}
|
|
3390
|
-
.ux-field[data-v-
|
|
3496
|
+
.ux-field[data-v-b5298f2c] {
|
|
3391
3497
|
margin-bottom: 1em;
|
|
3392
3498
|
}
|
|
3393
|
-
.ux-field.ux-layout-only[data-v-
|
|
3499
|
+
.ux-field.ux-layout-only[data-v-b5298f2c] {
|
|
3394
3500
|
margin-bottom: 0;
|
|
3395
3501
|
}
|
|
3396
|
-
.ux-field .ux-field-message[data-v-
|
|
3502
|
+
.ux-field .ux-field-message[data-v-b5298f2c] {
|
|
3397
3503
|
border: red;
|
|
3398
3504
|
background: rgba(255, 0, 0, 0.1);
|
|
3399
3505
|
color: red;
|
|
@@ -3403,23 +3509,23 @@ td[data-v-f5a130e8]:first-child {
|
|
|
3403
3509
|
margin: 0.3em 0;
|
|
3404
3510
|
display: inline-block;
|
|
3405
3511
|
}
|
|
3406
|
-
[data-v-
|
|
3512
|
+
[data-v-b5298f2c] .ux-field-title {
|
|
3407
3513
|
margin-top: 0.5em;
|
|
3408
3514
|
display: block;
|
|
3409
3515
|
margin-bottom: 0.2em;
|
|
3410
3516
|
font-size: 0.9em;
|
|
3411
3517
|
font-weight: 700;
|
|
3412
3518
|
}
|
|
3413
|
-
.ux-field.ux-field-hide[data-v-
|
|
3519
|
+
.ux-field.ux-field-hide[data-v-b5298f2c] {
|
|
3414
3520
|
display: none !important;
|
|
3415
3521
|
margin: 0 !important;
|
|
3416
3522
|
}
|
|
3417
|
-
[data-v-
|
|
3523
|
+
[data-v-b5298f2c] .ux-field-description {
|
|
3418
3524
|
font-size: clamp(12px, 0.8em, 16px);
|
|
3419
3525
|
opacity: 0.5;
|
|
3420
3526
|
margin-bottom: 0.5em;
|
|
3421
3527
|
}
|
|
3422
|
-
.ux-field.ux-field-error[data-v-
|
|
3528
|
+
.ux-field.ux-field-error[data-v-b5298f2c] > .ux-field-title {
|
|
3423
3529
|
color: red;
|
|
3424
3530
|
}
|
|
3425
3531
|
.basic-input-style[data-v-f0b9d2cd] {
|