@team_yumi/ramen 1.2.1-next.20240416-6e2ddba-294f03803f86cf422ad8b269e9683347 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@team_yumi/ramen",
3
- "version": "1.2.1-next.20240416-6e2ddba-294f03803f86cf422ad8b269e9683347",
3
+ "version": "1.2.1-next.20240514-5de7b49-7436dc6e8154d1b83bc58c672d528397",
4
4
  "license": "MIT",
5
5
  "peerDependencies": {
6
6
  "react": ">=16.8.0"
@@ -0,0 +1,2 @@
1
+ import Root from './root';
2
+ export default Root;
@@ -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;
@@ -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';