@team_yumi/ramen 1.0.2-next.20240312-5eed168-1c2b3e5dff4bd8422e8b88516e25c7d5 → 1.0.2-next.20240313-a294498-fedf0dc1b04894fa4df124ed6131dd7a
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 +7 -6
- package/index.js +2 -2
- package/package.json +1 -1
- package/src/components/core/x-text-field/root.d.ts +4 -0
- 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
|
@@ -26,6 +26,10 @@ export interface IProps extends Omit<IInputProps, 'type'> {
|
|
|
26
26
|
* Whether the input field is mandatory.
|
|
27
27
|
*/
|
|
28
28
|
mandatory?: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* Max digital count
|
|
31
|
+
*/
|
|
32
|
+
maxNumber?: number;
|
|
29
33
|
}
|
|
30
34
|
declare const XTextField: React.FC<IProps>;
|
|
31
35
|
export default XTextField;
|
|
@@ -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];
|