@team_yumi/ramen 1.2.3-next.20240821-bae06f9-f4455711ced42dc9e2ecf932f1b872e2 → 1.2.3-next.20240823-cf62ce1-6013d3c882363798678d724ba78a23ce
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 +165 -0
- package/index.js +3 -3
- package/package.json +1 -1
- package/src/index.mobile.d.ts +2 -0
package/package.json
CHANGED
package/src/index.mobile.d.ts
CHANGED
|
@@ -85,6 +85,7 @@ declare const _default: {
|
|
|
85
85
|
XCardBusiness: import("react").FC<import("./components/mobile/x-card-business/root").IProps>;
|
|
86
86
|
XStoreSelector: import("react").FC<import("./components/mobile/x-store-selector/root").IProps>;
|
|
87
87
|
XPullToRefresh: import("react").FC<import("./components/mobile/x-pull-to-refresh/root").IProps>;
|
|
88
|
+
XCardExpandProgress: import("react").FC<import("./components/mobile/x-card-expand-progress/root").IProps>;
|
|
88
89
|
XCardCounter: import("react").FC<import("./components/core/x-card-counter/root").IProps>;
|
|
89
90
|
XBox: import("react").FC<import("./components/core/x-box/root").IProps>;
|
|
90
91
|
XText: import("react").FC<import("./components/core/x-text/root").IProps>;
|
|
@@ -221,3 +222,4 @@ export { default as XCardHomeIndicator } from './components/mobile/x-card-home-i
|
|
|
221
222
|
export { default as XCardBusiness } from './components/mobile/x-card-business';
|
|
222
223
|
export { default as XStoreSelector } from './components/mobile/x-store-selector';
|
|
223
224
|
export { default as XPullToRefresh } from './components/mobile/x-pull-to-refresh';
|
|
225
|
+
export { default as XCardExpandProgress } from './components/mobile/x-card-expand-progress';
|