@team_yumi/ramen 1.0.2-next.20240312-1b41bec-d3bd247ece602336a7195887c773ef2c → 1.0.2-next.20240312-4af27c2-1225c546167077cedebeb96b52a47ddf
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 +6 -6
- package/index.js +2 -2
- package/package.json +1 -1
- package/src/components/mobile/x-card-approve/root.d.ts +1 -1
- package/src/components/mobile/x-empty-state/index.d.ts +1 -1
- package/src/components/mobile/x-empty-state/options/index.d.ts +2 -1
- package/src/components/mobile/x-empty-state/{root.d.ts → root.module.d.ts} +1 -0
- package/src/index.mobile.d.ts +1 -1
- package/src/models/Collections/IEmptyStateType.d.ts +1 -1
package/package.json
CHANGED
|
@@ -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
|
-
|
|
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, };
|
package/src/index.mobile.d.ts
CHANGED
|
@@ -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];
|