@team_yumi/ramen 1.0.2-next.20240312-eb21163-335daa16832c5d9a7f043fa9378c9e20 → 1.0.2-next.20240312-5eed168-1c2b3e5dff4bd8422e8b88516e25c7d5
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 +0 -1
- 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 +1 -2
- package/src/components/mobile/x-empty-state/{root.module.d.ts → root.d.ts} +0 -1
- 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';
|
|
2
2
|
export default Root;
|
|
@@ -12,5 +12,4 @@ 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
|
-
|
|
16
|
-
export { UpToDate, AllInOrder, Default, EnableCamera, EnableGPS, EnableNotification, Error, NoConnection, NoPermission, NoPlanograma, NoStore, NotFound, StartMessage, Success, Warning, };
|
|
15
|
+
export { UpToDate, 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
|
|
7
|
+
XEmptyState: import("react").FC<import("./components/mobile/x-empty-state/root").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", "
|
|
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];
|