@team_yumi/ramen 1.0.2-next.20240312-58660e7-f453a2c3c47743b5ae683f0d579e7ee0 → 1.0.2-next.20240312-eb21163-335daa16832c5d9a7f043fa9378c9e20

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.0.2-next.20240312-58660e7-f453a2c3c47743b5ae683f0d579e7ee0",
3
+ "version": "1.0.2-next.20240312-eb21163-335daa16832c5d9a7f043fa9378c9e20",
4
4
  "license": "MIT",
5
5
  "peerDependencies": {
6
6
  "react": ">=16.8.0"
@@ -1,2 +1,2 @@
1
- import Root from './root';
1
+ import Root from './root.module';
2
2
  export default Root;
@@ -12,4 +12,5 @@ import NoPermission from './assets/no-permission.svg';
12
12
  import NoPlanograma from './assets/no-planograma.svg';
13
13
  import NoStore from './assets/no-store.svg';
14
14
  import Default from './assets/default.svg';
15
- export { UpToDate, Default, EnableCamera, EnableGPS, EnableNotification, Error, NoConnection, NoPermission, NoPlanograma, NoStore, NotFound, StartMessage, Success, Warning, };
15
+ import AllInOrder from './assets/all-in-order.svg';
16
+ export { UpToDate, AllInOrder, Default, EnableCamera, EnableGPS, EnableNotification, Error, NoConnection, NoPermission, NoPlanograma, NoStore, NotFound, StartMessage, Success, Warning, };
@@ -4,6 +4,7 @@ export interface IProps {
4
4
  title: string;
5
5
  subtitle?: string;
6
6
  type?: (typeof Collections.IEmptyStateType)[number];
7
+ isCenter?: boolean;
7
8
  }
8
9
  declare const XEmptyState: React.FC<IProps>;
9
10
  export default XEmptyState;
@@ -4,7 +4,7 @@ import { XSelectMultipleRef, XSelectMultipleOption } from '@yumi/x-select-multip
4
4
  import { XImageUploaderFileData } from '@yumi/x-image-uploader';
5
5
  import { XImageDownloaderFileData } from '@yumi/x-image-downloader';
6
6
  declare const _default: {
7
- XEmptyState: import("react").FC<import("./components/mobile/x-empty-state/root").IProps>;
7
+ XEmptyState: import("react").FC<import("./components/mobile/x-empty-state/root.module").IProps>;
8
8
  XCardApprove: import("react").FC<import("./components/mobile/x-card-approve/root").IProps>;
9
9
  XHeader: import("react").FC<import("./components/mobile/x-header/root").IProps>;
10
10
  XDatepicker: import("react").FC<import("./components/mobile/x-datepicker/root").IProps>;
@@ -1 +1 @@
1
- export declare const IEmptyStateType: readonly ["up-to-date", "not-found", "success", "error", "warning", "start-message", "enable-gps", "enable-notification", "enable-camera", "no-connection", "no-planograma", "no-store", "no-permission", undefined];
1
+ export declare const IEmptyStateType: readonly ["up-to-date", "all-in-order", "not-found", "success", "error", "warning", "start-message", "enable-gps", "enable-notification", "enable-camera", "no-connection", "no-planograma", "no-store", "no-permission", undefined];