@opentinyvue/vue-runtime 3.31.0 → 3.32.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/dist2/tailwind.css +64 -24
- package/dist2/tiny-vue-all.mjs +22818 -22548
- package/dist2/tiny-vue-common.mjs +70 -70
- package/dist2/tiny-vue-directive.mjs +740 -734
- package/dist2/tiny-vue-huicharts.mjs +1 -1
- package/dist2/tiny-vue-icon.mjs +3 -3
- package/dist2/tiny-vue-locale.mjs +45 -41
- package/dist2/tiny-vue-mobile-first.mjs +14427 -14201
- package/dist2/tiny-vue-pc.mjs +20061 -19821
- package/dist2/tiny-vue-saas-common.mjs +85 -77
- package/dist2/tiny-vue-simple.mjs +14500 -14371
- package/dist3/tailwind.css +64 -24
- package/dist3/tiny-vue-all.mjs +22172 -21905
- package/dist3/tiny-vue-common.mjs +175 -162
- package/dist3/tiny-vue-directive.mjs +666 -660
- package/dist3/tiny-vue-huicharts.mjs +1 -1
- package/dist3/tiny-vue-icon.mjs +0 -3
- package/dist3/tiny-vue-locale.mjs +45 -41
- package/dist3/tiny-vue-mobile-first.mjs +22475 -22250
- package/dist3/tiny-vue-pc.mjs +20729 -20491
- package/dist3/tiny-vue-saas-common.mjs +107 -86
- package/dist3/tiny-vue-simple.mjs +14639 -14512
- package/package.json +1 -1
package/dist2/tailwind.css
CHANGED
|
@@ -812,6 +812,38 @@ html {
|
|
|
812
812
|
top: 100%;
|
|
813
813
|
}
|
|
814
814
|
|
|
815
|
+
.-left-\[3px\] {
|
|
816
|
+
left: -3px;
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
.-right-\[3px\] {
|
|
820
|
+
right: -3px;
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
.-top-2 {
|
|
824
|
+
top: calc(var(--tiny-spacing-2, 0.500rem) * -1);
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
.-left-2 {
|
|
828
|
+
left: calc(var(--tiny-spacing-2, 0.500rem) * -1);
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
.-right-2 {
|
|
832
|
+
right: calc(var(--tiny-spacing-2, 0.500rem) * -1);
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
.-top-\[3px\] {
|
|
836
|
+
top: -3px;
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
.-bottom-2 {
|
|
840
|
+
bottom: calc(var(--tiny-spacing-2, 0.500rem) * -1);
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
.-bottom-\[3px\] {
|
|
844
|
+
bottom: -3px;
|
|
845
|
+
}
|
|
846
|
+
|
|
815
847
|
.top-0\.5 {
|
|
816
848
|
top: var(--tiny-spacing-0_5, 0.125rem);
|
|
817
849
|
}
|
|
@@ -884,10 +916,6 @@ html {
|
|
|
884
916
|
left: calc(var(--tiny-spacing-2_5, 0.625rem) * -1);
|
|
885
917
|
}
|
|
886
918
|
|
|
887
|
-
.-left-2 {
|
|
888
|
-
left: calc(var(--tiny-spacing-2, 0.500rem) * -1);
|
|
889
|
-
}
|
|
890
|
-
|
|
891
919
|
.bottom-4 {
|
|
892
920
|
bottom: var(--tiny-spacing-4, 1.000rem);
|
|
893
921
|
}
|
|
@@ -924,10 +952,6 @@ html {
|
|
|
924
952
|
right: calc(var(--tiny-spacing-px, 0.0625rem) * -1);
|
|
925
953
|
}
|
|
926
954
|
|
|
927
|
-
.-bottom-2 {
|
|
928
|
-
bottom: calc(var(--tiny-spacing-2, 0.500rem) * -1);
|
|
929
|
-
}
|
|
930
|
-
|
|
931
955
|
.right-3\.5 {
|
|
932
956
|
right: var(--tiny-spacing-3_5, 0.875rem);
|
|
933
957
|
}
|
|
@@ -1032,10 +1056,6 @@ html {
|
|
|
1032
1056
|
top: calc(var(--tiny-spacing-2_5, 0.625rem) * -1);
|
|
1033
1057
|
}
|
|
1034
1058
|
|
|
1035
|
-
.-top-2 {
|
|
1036
|
-
top: calc(var(--tiny-spacing-2, 0.500rem) * -1);
|
|
1037
|
-
}
|
|
1038
|
-
|
|
1039
1059
|
.isolate {
|
|
1040
1060
|
isolation: isolate;
|
|
1041
1061
|
}
|
|
@@ -1072,6 +1092,14 @@ html {
|
|
|
1072
1092
|
z-index: -10;
|
|
1073
1093
|
}
|
|
1074
1094
|
|
|
1095
|
+
.z-\[100\] {
|
|
1096
|
+
z-index: 100;
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
.z-\[101\] {
|
|
1100
|
+
z-index: 101;
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1075
1103
|
.z-\[2\] {
|
|
1076
1104
|
z-index: 2;
|
|
1077
1105
|
}
|
|
@@ -1676,10 +1704,6 @@ html {
|
|
|
1676
1704
|
height: var(--tiny-spacing-16, 4.000rem);
|
|
1677
1705
|
}
|
|
1678
1706
|
|
|
1679
|
-
.h-\[76px\] {
|
|
1680
|
-
height: 76px;
|
|
1681
|
-
}
|
|
1682
|
-
|
|
1683
1707
|
.h-4\.5 {
|
|
1684
1708
|
height: var(--tiny-spacing-4_5, 1.1250rem);
|
|
1685
1709
|
}
|
|
@@ -1734,6 +1758,10 @@ html {
|
|
|
1734
1758
|
height: var(--tiny-spacing-11, 2.750rem);
|
|
1735
1759
|
}
|
|
1736
1760
|
|
|
1761
|
+
.h-2\.5 {
|
|
1762
|
+
height: var(--tiny-spacing-2_5, 0.625rem);
|
|
1763
|
+
}
|
|
1764
|
+
|
|
1737
1765
|
.h-14 {
|
|
1738
1766
|
height: var(--tiny-spacing-14, 3.500rem);
|
|
1739
1767
|
}
|
|
@@ -1782,10 +1810,6 @@ html {
|
|
|
1782
1810
|
height: 75%;
|
|
1783
1811
|
}
|
|
1784
1812
|
|
|
1785
|
-
.h-2\.5 {
|
|
1786
|
-
height: var(--tiny-spacing-2_5, 0.625rem);
|
|
1787
|
-
}
|
|
1788
|
-
|
|
1789
1813
|
.h-0\.5 {
|
|
1790
1814
|
height: var(--tiny-spacing-0_5, 0.125rem);
|
|
1791
1815
|
}
|
|
@@ -2016,6 +2040,10 @@ html {
|
|
|
2016
2040
|
width: auto;
|
|
2017
2041
|
}
|
|
2018
2042
|
|
|
2043
|
+
.w-2\.5 {
|
|
2044
|
+
width: var(--tiny-spacing-2_5, 0.625rem);
|
|
2045
|
+
}
|
|
2046
|
+
|
|
2019
2047
|
.w-12 {
|
|
2020
2048
|
width: var(--tiny-spacing-12, 3.000rem);
|
|
2021
2049
|
}
|
|
@@ -2106,10 +2134,6 @@ html {
|
|
|
2106
2134
|
width: 100% !important;
|
|
2107
2135
|
}
|
|
2108
2136
|
|
|
2109
|
-
.w-2\.5 {
|
|
2110
|
-
width: var(--tiny-spacing-2_5, 0.625rem);
|
|
2111
|
-
}
|
|
2112
|
-
|
|
2113
2137
|
.w-14 {
|
|
2114
2138
|
width: var(--tiny-spacing-14, 3.500rem);
|
|
2115
2139
|
}
|
|
@@ -2764,6 +2788,22 @@ html {
|
|
|
2764
2788
|
cursor: default;
|
|
2765
2789
|
}
|
|
2766
2790
|
|
|
2791
|
+
.cursor-w-resize {
|
|
2792
|
+
cursor: w-resize;
|
|
2793
|
+
}
|
|
2794
|
+
|
|
2795
|
+
.cursor-se-resize {
|
|
2796
|
+
cursor: se-resize;
|
|
2797
|
+
}
|
|
2798
|
+
|
|
2799
|
+
.cursor-sw-resize {
|
|
2800
|
+
cursor: sw-resize;
|
|
2801
|
+
}
|
|
2802
|
+
|
|
2803
|
+
.cursor-s-resize {
|
|
2804
|
+
cursor: s-resize;
|
|
2805
|
+
}
|
|
2806
|
+
|
|
2767
2807
|
.cursor-auto {
|
|
2768
2808
|
cursor: auto;
|
|
2769
2809
|
}
|