@bagelink/vue 0.0.556 → 0.0.560
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/components/TableSchema.vue.d.ts +1 -50
- package/dist/components/TableSchema.vue.d.ts.map +1 -1
- package/dist/components/form/BglField.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/RichText2/Toolbar.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/RichText2/formatting.d.ts.map +1 -1
- package/dist/index.cjs +40 -39
- package/dist/index.mjs +40 -39
- package/dist/style.css +507 -112
- package/dist/utils/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/Btn.vue +2 -2
- package/src/components/TableSchema.vue +9 -9
- package/src/components/form/BglField.vue +16 -19
- package/src/components/form/inputs/RichText2/Toolbar.vue +1 -0
- package/src/components/form/inputs/RichText2/formatting.ts +18 -12
- package/src/styles/layout.css +230 -1
- package/src/styles/mobilLayout.css +264 -40
- package/src/utils/index.ts +1 -0
|
@@ -49,6 +49,10 @@
|
|
|
49
49
|
.m_round-none {
|
|
50
50
|
border-radius: 0 !important;
|
|
51
51
|
}
|
|
52
|
+
|
|
53
|
+
.m_oval{
|
|
54
|
+
border-radius: 100% ;
|
|
55
|
+
}
|
|
52
56
|
|
|
53
57
|
.m_flex-center {
|
|
54
58
|
justify-items: center;
|
|
@@ -1810,56 +1814,276 @@
|
|
|
1810
1814
|
inset-inline-start: 0;
|
|
1811
1815
|
inset-inline-end: 0;
|
|
1812
1816
|
}
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
.m_start {
|
|
1816
|
-
inset-inline-start: 0;
|
|
1817
|
+
.m_inset-inline-start, .m_start{
|
|
1818
|
+
inset-inline-start: 0 !important;
|
|
1817
1819
|
}
|
|
1818
|
-
|
|
1819
|
-
.
|
|
1820
|
-
|
|
1821
|
-
inset-inline-end: 0;
|
|
1820
|
+
|
|
1821
|
+
.m_start-1{
|
|
1822
|
+
inset-inline-start: 1rem !important;
|
|
1822
1823
|
}
|
|
1823
|
-
|
|
1824
|
-
.
|
|
1825
|
-
|
|
1826
|
-
top: 0;
|
|
1824
|
+
|
|
1825
|
+
.m_start-2{
|
|
1826
|
+
inset-inline-start: 2rem !important;
|
|
1827
1827
|
}
|
|
1828
|
-
|
|
1829
|
-
.
|
|
1830
|
-
|
|
1828
|
+
|
|
1829
|
+
.m_start-3{
|
|
1830
|
+
inset-inline-start: 3rem !important;
|
|
1831
1831
|
}
|
|
1832
|
-
|
|
1833
|
-
.
|
|
1834
|
-
|
|
1832
|
+
|
|
1833
|
+
.m_start-4{
|
|
1834
|
+
inset-inline-start: 4rem !important;
|
|
1835
1835
|
}
|
|
1836
|
-
|
|
1837
|
-
.
|
|
1838
|
-
|
|
1836
|
+
|
|
1837
|
+
.m_start-5{
|
|
1838
|
+
inset-inline-start: 5rem !important;
|
|
1839
1839
|
}
|
|
1840
|
-
|
|
1841
|
-
.
|
|
1842
|
-
|
|
1840
|
+
|
|
1841
|
+
.m_start-6{
|
|
1842
|
+
inset-inline-start: 6rem !important;
|
|
1843
1843
|
}
|
|
1844
|
-
|
|
1845
|
-
.
|
|
1846
|
-
|
|
1847
|
-
bottom: 0;
|
|
1844
|
+
|
|
1845
|
+
.m_start-7{
|
|
1846
|
+
inset-inline-start: 7rem !important;
|
|
1848
1847
|
}
|
|
1849
|
-
|
|
1850
|
-
.
|
|
1851
|
-
|
|
1848
|
+
|
|
1849
|
+
.m_start-8{
|
|
1850
|
+
inset-inline-start: 8rem !important;
|
|
1852
1851
|
}
|
|
1853
|
-
|
|
1854
|
-
.
|
|
1855
|
-
|
|
1852
|
+
|
|
1853
|
+
.m_-start-1{
|
|
1854
|
+
inset-inline-start: -1rem !important;
|
|
1856
1855
|
}
|
|
1857
|
-
|
|
1858
|
-
.
|
|
1859
|
-
|
|
1856
|
+
|
|
1857
|
+
.m_-start-2{
|
|
1858
|
+
inset-inline-start: -2rem !important;
|
|
1860
1859
|
}
|
|
1861
|
-
|
|
1862
|
-
.
|
|
1863
|
-
|
|
1860
|
+
|
|
1861
|
+
.m_-start-3{
|
|
1862
|
+
inset-inline-start: -3rem !important;
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1865
|
+
.m_-start-4{
|
|
1866
|
+
inset-inline-start: -4rem !important;
|
|
1867
|
+
}
|
|
1868
|
+
|
|
1869
|
+
.m_-start-5{
|
|
1870
|
+
inset-inline-start: -5rem !important;
|
|
1871
|
+
}
|
|
1872
|
+
|
|
1873
|
+
.m_-start-6{
|
|
1874
|
+
inset-inline-start: -6rem !important;
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
.m_-start-7{
|
|
1878
|
+
inset-inline-start: -7rem !important;
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1881
|
+
.m_-start-8{
|
|
1882
|
+
inset-inline-start: -8rem !important;
|
|
1883
|
+
}
|
|
1884
|
+
|
|
1885
|
+
.m_inset-inline-end, .m_end{
|
|
1886
|
+
inset-inline-end: 0 !important;
|
|
1887
|
+
}
|
|
1888
|
+
|
|
1889
|
+
.m_end-1{
|
|
1890
|
+
inset-inline-end: 1rem !important;
|
|
1891
|
+
}
|
|
1892
|
+
|
|
1893
|
+
.m_end-2{
|
|
1894
|
+
inset-inline-end: 2rem !important;
|
|
1895
|
+
}
|
|
1896
|
+
|
|
1897
|
+
.m_end-3{
|
|
1898
|
+
inset-inline-end: 3rem !important;
|
|
1899
|
+
}
|
|
1900
|
+
|
|
1901
|
+
.m_end-4{
|
|
1902
|
+
inset-inline-end: 4rem !important;
|
|
1903
|
+
}
|
|
1904
|
+
|
|
1905
|
+
.m_end-5{
|
|
1906
|
+
inset-inline-end: 5rem !important;
|
|
1907
|
+
}
|
|
1908
|
+
|
|
1909
|
+
.m_end-6{
|
|
1910
|
+
inset-inline-end: 6rem !important;
|
|
1911
|
+
}
|
|
1912
|
+
|
|
1913
|
+
.m_end-7{
|
|
1914
|
+
inset-inline-end: 7rem !important;
|
|
1915
|
+
}
|
|
1916
|
+
|
|
1917
|
+
.m_end-8{
|
|
1918
|
+
inset-inline-end: 8rem !important;
|
|
1919
|
+
}
|
|
1920
|
+
|
|
1921
|
+
.m_-end-1{
|
|
1922
|
+
inset-inline-end: -1rem !important;
|
|
1923
|
+
}
|
|
1924
|
+
|
|
1925
|
+
.m_-end-2{
|
|
1926
|
+
inset-inline-end: -2rem !important;
|
|
1927
|
+
}
|
|
1928
|
+
|
|
1929
|
+
.m_-end-3{
|
|
1930
|
+
inset-inline-end: -3rem !important;
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1933
|
+
.m_-end-4{
|
|
1934
|
+
inset-inline-end: -4rem !important;
|
|
1935
|
+
}
|
|
1936
|
+
|
|
1937
|
+
.m_-end-5{
|
|
1938
|
+
inset-inline-end: -5rem !important;
|
|
1939
|
+
}
|
|
1940
|
+
|
|
1941
|
+
.m_-end-6{
|
|
1942
|
+
inset-inline-end: -6rem !important;
|
|
1864
1943
|
}
|
|
1944
|
+
|
|
1945
|
+
.m_-end-7{
|
|
1946
|
+
inset-inline-end: -7rem !important;
|
|
1947
|
+
}
|
|
1948
|
+
|
|
1949
|
+
.m_-end-8{
|
|
1950
|
+
inset-inline-end: -8rem !important;
|
|
1951
|
+
}
|
|
1952
|
+
|
|
1953
|
+
.m_top, .m_top-0{
|
|
1954
|
+
top: 0 !important;
|
|
1955
|
+
}
|
|
1956
|
+
|
|
1957
|
+
.m_top-1{
|
|
1958
|
+
top: 1rem !important;
|
|
1959
|
+
}
|
|
1960
|
+
|
|
1961
|
+
.m_top-2{
|
|
1962
|
+
top: 2rem !important;
|
|
1963
|
+
}
|
|
1964
|
+
|
|
1965
|
+
.m_top-3{
|
|
1966
|
+
top: 3rem !important;
|
|
1967
|
+
}
|
|
1968
|
+
|
|
1969
|
+
.m_top-4{
|
|
1970
|
+
top: 4rem !important;
|
|
1971
|
+
}
|
|
1972
|
+
|
|
1973
|
+
.m_top-5{
|
|
1974
|
+
top: 5rem !important;
|
|
1975
|
+
}
|
|
1976
|
+
|
|
1977
|
+
.m_top-6{
|
|
1978
|
+
top: 6rem !important;
|
|
1979
|
+
}
|
|
1980
|
+
|
|
1981
|
+
.m_top-7{
|
|
1982
|
+
top: 7rem !important;
|
|
1983
|
+
}
|
|
1984
|
+
|
|
1985
|
+
.m_top-8{
|
|
1986
|
+
top: 8rem !important;
|
|
1987
|
+
}
|
|
1988
|
+
|
|
1989
|
+
.m_-top-1{
|
|
1990
|
+
top: -1rem !important;
|
|
1991
|
+
}
|
|
1992
|
+
|
|
1993
|
+
.m_-top-2{
|
|
1994
|
+
top: -2rem !important;
|
|
1995
|
+
}
|
|
1996
|
+
|
|
1997
|
+
.m_-top-3{
|
|
1998
|
+
top: -3rem !important;
|
|
1999
|
+
}
|
|
2000
|
+
|
|
2001
|
+
.m_-top-4{
|
|
2002
|
+
top: -4rem !important;
|
|
2003
|
+
}
|
|
2004
|
+
|
|
2005
|
+
.m_-top-5{
|
|
2006
|
+
top: -5rem !important;
|
|
2007
|
+
}
|
|
2008
|
+
|
|
2009
|
+
.m_-top-6{
|
|
2010
|
+
top: -6rem !important;
|
|
2011
|
+
}
|
|
2012
|
+
|
|
2013
|
+
.m_-top-7{
|
|
2014
|
+
top: -7rem !important;
|
|
2015
|
+
}
|
|
2016
|
+
|
|
2017
|
+
.m_-top-8{
|
|
2018
|
+
top: -8rem !important;
|
|
2019
|
+
}
|
|
2020
|
+
|
|
2021
|
+
.m_bottom, .m_bottom-0{
|
|
2022
|
+
bottom: 0 !important;
|
|
2023
|
+
}
|
|
2024
|
+
|
|
2025
|
+
.m_bottom-1{
|
|
2026
|
+
bottom: 1rem !important;
|
|
2027
|
+
}
|
|
2028
|
+
|
|
2029
|
+
.m_bottom-2{
|
|
2030
|
+
bottom: 2rem !important;
|
|
2031
|
+
}
|
|
2032
|
+
|
|
2033
|
+
.m_bottom-3{
|
|
2034
|
+
bottom: 3rem !important;
|
|
2035
|
+
}
|
|
2036
|
+
|
|
2037
|
+
.m_bottom-4{
|
|
2038
|
+
bottom: 4rem !important;
|
|
2039
|
+
}
|
|
2040
|
+
|
|
2041
|
+
.m_bottom-5{
|
|
2042
|
+
bottom: 5rem !important;
|
|
2043
|
+
}
|
|
2044
|
+
|
|
2045
|
+
.m_bottom-6{
|
|
2046
|
+
bottom: 6rem !important;
|
|
2047
|
+
}
|
|
2048
|
+
|
|
2049
|
+
.m_bottom-7{
|
|
2050
|
+
bottom: 7rem !important;
|
|
2051
|
+
}
|
|
2052
|
+
|
|
2053
|
+
.m_bottom-8{
|
|
2054
|
+
bottom: 8rem !important;
|
|
2055
|
+
}
|
|
2056
|
+
|
|
2057
|
+
.m_-bottom-1{
|
|
2058
|
+
bottom: -1rem !important;
|
|
2059
|
+
}
|
|
2060
|
+
|
|
2061
|
+
.m_-bottom-2{
|
|
2062
|
+
bottom: -2rem !important;
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2065
|
+
.m_-bottom-3{
|
|
2066
|
+
bottom: -3rem !important;
|
|
2067
|
+
}
|
|
2068
|
+
|
|
2069
|
+
.m_-bottom-4{
|
|
2070
|
+
bottom: -4rem !important;
|
|
2071
|
+
}
|
|
2072
|
+
|
|
2073
|
+
.m_-bottom-5{
|
|
2074
|
+
bottom: -5rem !important;
|
|
2075
|
+
}
|
|
2076
|
+
|
|
2077
|
+
.m_-bottom-6{
|
|
2078
|
+
bottom: -6rem !important;
|
|
2079
|
+
}
|
|
2080
|
+
|
|
2081
|
+
.m_-bottom-7{
|
|
2082
|
+
bottom: -7rem !important;
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2085
|
+
.m_-bottom-8{
|
|
2086
|
+
bottom: -8rem !important;
|
|
2087
|
+
}
|
|
2088
|
+
|
|
1865
2089
|
}
|
package/src/utils/index.ts
CHANGED