@team_yumi/ramen 0.4.0-next.20231219-decd25b-61c12120c13e6cf198e03e06cba26629 → 0.4.0-next.20231227-de405c4-09379fe933156a3b642c37fb112ad30d
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.mobile.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ declare const _default: {
|
|
|
11
11
|
XBody: import("react").FC<import("./components/mobile/xbody/root").IProps>;
|
|
12
12
|
XFooter: import("react").FC<import("./components/mobile/xfooter/root").IProps>;
|
|
13
13
|
XPage: import("react").FC<import("./components/mobile/xpage/root").IProps>;
|
|
14
|
-
XModal: import("react").FC<import("./components/mobile/
|
|
14
|
+
XModal: import("react").FC<import("./components/mobile/x-modal/root").IProps>;
|
|
15
15
|
XSelect: import("react").FC<import("./components/mobile/xselect/root").IProps>;
|
|
16
16
|
XSelectMultiple: import("react").ForwardRefExoticComponent<Pick<import("./components/mobile/xselect-multiple/root").IProps, "size" | "icon" | "disabled" | "hasError" | "onChange" | "title" | "subtitle" | "values" | "defaultValues" | "okText" | "options" | "showCounter" | "showSelecteds" | "showOnlyModal"> & import("react").RefAttributes<XSelectMultipleRef>>;
|
|
17
17
|
XFloatButton: import("react").FC<import("./components/mobile/xfloat-button/root").IProps>;
|
package/package.json
CHANGED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { Collections } from './../../../models';
|
|
3
|
-
export interface IAction {
|
|
4
|
-
key: string;
|
|
5
|
-
text?: string;
|
|
6
|
-
type?: (typeof Collections.IType)[number];
|
|
7
|
-
icon?: (typeof Collections.IIcon)[number];
|
|
8
|
-
disabled?: boolean;
|
|
9
|
-
loading?: boolean;
|
|
10
|
-
render?: (key: string) => React.ReactNode;
|
|
11
|
-
}
|
|
12
|
-
export interface IProps {
|
|
13
|
-
children?: React.ReactNode;
|
|
14
|
-
headerChildren?: React.ReactNode;
|
|
15
|
-
icon?: (typeof Collections.IIcon)[number];
|
|
16
|
-
title?: string;
|
|
17
|
-
subtitle?: string;
|
|
18
|
-
size?: (typeof Collections.ISize)[number];
|
|
19
|
-
visible: boolean;
|
|
20
|
-
closable?: boolean;
|
|
21
|
-
onClose?: () => void;
|
|
22
|
-
actions?: Array<IAction>;
|
|
23
|
-
onActionClick?: (key: string) => void;
|
|
24
|
-
}
|
|
25
|
-
declare const XModal: React.FC<IProps>;
|
|
26
|
-
export default XModal;
|
|
File without changes
|