@team_yumi/ramen 1.2.3-next.20240823-cf62ce1-6013d3c882363798678d724ba78a23ce → 1.2.3-next.20241001-ad3f834-be07d2c37398576ced0b26ec31e3f0d6
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/index.css +149 -1
- package/index.js +2 -2
- package/package.json +1 -1
- package/src/components/core/x-input/root.d.ts +3 -1
- package/src/components/core/x-progress-bar/root.d.ts +12 -0
- package/src/components/core/x-text-field/root.d.ts +4 -0
- package/src/components/core/x-tooltip/index.d.ts +2 -0
- package/src/components/{web → core}/x-tooltip/root.d.ts +1 -0
- package/src/components/mobile/x-card-expand-progress/root.d.ts +3 -0
- package/src/index.core.d.ts +1 -0
- package/src/index.mobile.d.ts +1 -0
- package/src/index.web.d.ts +1 -2
- package/src/models/Collections/ITooltipShowOn.d.ts +1 -0
- package/src/models/Collections/index.d.ts +2 -1
- package/src/components/web/x-tooltip/index.d.ts +0 -2
package/index.css
CHANGED
|
@@ -2062,6 +2062,154 @@ body {
|
|
|
2062
2062
|
display: none;
|
|
2063
2063
|
}
|
|
2064
2064
|
|
|
2065
|
+
.root-module_xtooltip__1wj4J {
|
|
2066
|
+
position: relative;
|
|
2067
|
+
}
|
|
2068
|
+
|
|
2069
|
+
.root-module_xtooltip--inline__nADFl {
|
|
2070
|
+
display: inline-flex;
|
|
2071
|
+
vertical-align: middle;
|
|
2072
|
+
margin-left: 5px;
|
|
2073
|
+
}
|
|
2074
|
+
|
|
2075
|
+
.root-module_xtooltip--top__mpRi1 .root-module_xtooltip__container__JabpY {
|
|
2076
|
+
bottom: calc(100% + 8px);
|
|
2077
|
+
left: 50%;
|
|
2078
|
+
transform: translateX(-50%);
|
|
2079
|
+
}
|
|
2080
|
+
|
|
2081
|
+
.root-module_xtooltip--top__mpRi1 .root-module_xtooltip__container__arrow__lCZgH {
|
|
2082
|
+
bottom: 100%;
|
|
2083
|
+
left: 50%;
|
|
2084
|
+
transform: translateX(-50%);
|
|
2085
|
+
width: 0;
|
|
2086
|
+
height: 0;
|
|
2087
|
+
border-left: 8px solid transparent;
|
|
2088
|
+
border-right: 8px solid transparent;
|
|
2089
|
+
border-top: 8px solid #1f1f1f;
|
|
2090
|
+
}
|
|
2091
|
+
|
|
2092
|
+
.root-module_xtooltip--bottom__fVvGZ .root-module_xtooltip__container__JabpY {
|
|
2093
|
+
bottom: 0px;
|
|
2094
|
+
left: 50%;
|
|
2095
|
+
transform: translate(-50%, calc(100% + 8px));
|
|
2096
|
+
}
|
|
2097
|
+
|
|
2098
|
+
.root-module_xtooltip--bottom__fVvGZ .root-module_xtooltip__container__arrow__lCZgH {
|
|
2099
|
+
bottom: 0px;
|
|
2100
|
+
left: 50%;
|
|
2101
|
+
transform: translate(-50%, 100%);
|
|
2102
|
+
width: 0;
|
|
2103
|
+
height: 0;
|
|
2104
|
+
border-left: 8px solid transparent;
|
|
2105
|
+
border-right: 8px solid transparent;
|
|
2106
|
+
border-bottom: 8px solid #1f1f1f;
|
|
2107
|
+
}
|
|
2108
|
+
|
|
2109
|
+
.root-module_xtooltip--right__g-fX7 .root-module_xtooltip__container__JabpY {
|
|
2110
|
+
left: calc(100% + 8px);
|
|
2111
|
+
top: 50%;
|
|
2112
|
+
transform: translateY(-50%);
|
|
2113
|
+
}
|
|
2114
|
+
|
|
2115
|
+
.root-module_xtooltip--right__g-fX7 .root-module_xtooltip__container__arrow__lCZgH {
|
|
2116
|
+
left: calc(100%);
|
|
2117
|
+
top: 50%;
|
|
2118
|
+
transform: translateY(-50%);
|
|
2119
|
+
width: 0;
|
|
2120
|
+
height: 0;
|
|
2121
|
+
border-top: 8px solid transparent;
|
|
2122
|
+
border-bottom: 8px solid transparent;
|
|
2123
|
+
border-right: 8px solid #1f1f1f;
|
|
2124
|
+
}
|
|
2125
|
+
|
|
2126
|
+
.root-module_xtooltip--left__GxTX2 .root-module_xtooltip__container__JabpY {
|
|
2127
|
+
left: 0px;
|
|
2128
|
+
top: 50%;
|
|
2129
|
+
transform: translate(calc(-100% - 10px), -50%);
|
|
2130
|
+
}
|
|
2131
|
+
|
|
2132
|
+
.root-module_xtooltip--left__GxTX2 .root-module_xtooltip__container__arrow__lCZgH {
|
|
2133
|
+
left: -10px;
|
|
2134
|
+
top: calc(50% - 8px);
|
|
2135
|
+
width: 0;
|
|
2136
|
+
height: 0;
|
|
2137
|
+
border-top: 8px solid transparent;
|
|
2138
|
+
border-bottom: 8px solid transparent;
|
|
2139
|
+
border-left: 8px solid #1f1f1f;
|
|
2140
|
+
}
|
|
2141
|
+
|
|
2142
|
+
.root-module_xtooltip__1wj4J:hover .root-module_xtooltip__container__JabpY {
|
|
2143
|
+
display: block;
|
|
2144
|
+
}
|
|
2145
|
+
|
|
2146
|
+
.root-module_xtooltip__1wj4J:hover .root-module_xtooltip__container__arrow__lCZgH {
|
|
2147
|
+
display: block;
|
|
2148
|
+
}
|
|
2149
|
+
|
|
2150
|
+
.root-module_xtooltip__1wj4J.root-module_xtooltip--force-show__PDGSq .root-module_xtooltip__container__JabpY {
|
|
2151
|
+
display: block;
|
|
2152
|
+
}
|
|
2153
|
+
|
|
2154
|
+
.root-module_xtooltip__1wj4J.root-module_xtooltip--force-show__PDGSq .root-module_xtooltip__container__arrow__lCZgH {
|
|
2155
|
+
display: block;
|
|
2156
|
+
}
|
|
2157
|
+
|
|
2158
|
+
.root-module_xtooltip__container__JabpY {
|
|
2159
|
+
position: absolute;
|
|
2160
|
+
display: none;
|
|
2161
|
+
z-index: 9999;
|
|
2162
|
+
background-color: #1f1f1f;
|
|
2163
|
+
border-radius: 8px;
|
|
2164
|
+
color: #fff;
|
|
2165
|
+
padding: 8px;
|
|
2166
|
+
}
|
|
2167
|
+
|
|
2168
|
+
.root-module_xtooltip__container__arrow__lCZgH {
|
|
2169
|
+
position: absolute;
|
|
2170
|
+
display: none;
|
|
2171
|
+
z-index: 9999;
|
|
2172
|
+
}
|
|
2173
|
+
|
|
2174
|
+
.root-module_xtooltip__container__tooltip__iCk4r {
|
|
2175
|
+
width: 230px;
|
|
2176
|
+
width: -moz-max-content;
|
|
2177
|
+
width: max-content;
|
|
2178
|
+
}
|
|
2179
|
+
|
|
2180
|
+
.root-module_xtooltip_container-xxs__zrivi {
|
|
2181
|
+
max-width: 80px;
|
|
2182
|
+
width: -moz-max-content;
|
|
2183
|
+
width: max-content;
|
|
2184
|
+
}
|
|
2185
|
+
.root-module_xtooltip_container-xs__ID1Yb {
|
|
2186
|
+
max-width: 110px;
|
|
2187
|
+
width: -moz-max-content;
|
|
2188
|
+
width: max-content;
|
|
2189
|
+
}
|
|
2190
|
+
|
|
2191
|
+
.root-module_xtooltip_container-s__OTUso {
|
|
2192
|
+
max-width: 140px;
|
|
2193
|
+
width: -moz-max-content;
|
|
2194
|
+
width: max-content;
|
|
2195
|
+
}
|
|
2196
|
+
|
|
2197
|
+
.root-module_xtooltip_container-m__fmTbX {
|
|
2198
|
+
max-width: 170px;
|
|
2199
|
+
width: -moz-max-content;
|
|
2200
|
+
width: max-content;
|
|
2201
|
+
}
|
|
2202
|
+
.root-module_xtooltip_container-l__LAu2G {
|
|
2203
|
+
max-width: 200px;
|
|
2204
|
+
width: -moz-max-content;
|
|
2205
|
+
width: max-content;
|
|
2206
|
+
}
|
|
2207
|
+
.root-module_xtooltip_container-xl__-CmsQ {
|
|
2208
|
+
max-width: 230px;
|
|
2209
|
+
width: -moz-max-content;
|
|
2210
|
+
width: max-content;
|
|
2211
|
+
}
|
|
2212
|
+
|
|
2065
2213
|
.root-module_x-input__8bcVs {
|
|
2066
2214
|
background-color: var(--color-neutral-lightest, #ffffff);
|
|
2067
2215
|
border-radius: 999px;
|
|
@@ -5593,7 +5741,7 @@ body {
|
|
|
5593
5741
|
}
|
|
5594
5742
|
|
|
5595
5743
|
.root-module_x-card-expand-progress--ml__ymil9 {
|
|
5596
|
-
margin
|
|
5744
|
+
margin: 0px 30px 0px 10px;
|
|
5597
5745
|
}
|
|
5598
5746
|
|
|
5599
5747
|
.root-module_x-card-expand-progress--wrapper__lQjO2 {
|