@team_yumi/ramen 1.2.1-next.20240513-5282c8c-a0e146d843a80611c1dd116dc5f51b0e → 1.2.1-next.20240514-5de7b49-7436dc6e8154d1b83bc58c672d528397
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/package.json
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface IProps {
|
|
3
|
+
title: string;
|
|
4
|
+
subtitle: string;
|
|
5
|
+
onConfirmText: string;
|
|
6
|
+
onConfirm?: () => void;
|
|
7
|
+
onChange?: (e: number) => void;
|
|
8
|
+
}
|
|
9
|
+
declare const XDatepickerYear: React.FC<IProps>;
|
|
10
|
+
export default XDatepickerYear;
|
package/src/index.mobile.d.ts
CHANGED
|
@@ -79,6 +79,7 @@ declare const _default: {
|
|
|
79
79
|
XBottomSheet: import("react").FC<import("./components/mobile/x-bottom-sheet/root").IProps>;
|
|
80
80
|
XRadioButtonOption: import("react").FC<import("./components/mobile/x-radio-button-option/root").IProps>;
|
|
81
81
|
XGroupCheckBox: import("react").FC<import("./components/mobile/x-group-checkbox/root").Props>;
|
|
82
|
+
XDatepickerYear: import("react").FC<import("./components/mobile/x-datepicker-year/root").IProps>;
|
|
82
83
|
XCardBusiness: import("react").FC<import("./components/mobile/x-card-business/root").IProps>;
|
|
83
84
|
XStoreSelector: import("react").FC<import("./components/mobile/x-store-selector/root").IProps>;
|
|
84
85
|
XCardCounter: import("react").FC<import("./components/core/x-card-counter/root").IProps>;
|
|
@@ -211,5 +212,6 @@ export { default as XGroupRadioButton } from './components/mobile/x-group-radio-
|
|
|
211
212
|
export { default as XBottomSheet } from './components/mobile/x-bottom-sheet';
|
|
212
213
|
export { default as XRadioButtonOption } from './components/mobile/x-radio-button-option';
|
|
213
214
|
export { default as XGroupCheckBox } from './components/mobile/x-group-checkbox';
|
|
215
|
+
export { default as XDatepickerYear } from './components/mobile/x-datepicker-year';
|
|
214
216
|
export { default as XCardBusiness } from './components/mobile/x-card-business';
|
|
215
217
|
export { default as XStoreSelector } from './components/mobile/x-store-selector';
|