@team_yumi/ramen 1.2.3-next.20241227-3e1f8a8-0bc131539a6e1e7ac6de93c877dd872c → 1.2.3-next.20250218-f7239e2-3266afaa6ee8bb48ac2422b601729b06
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 +22 -0
- package/index.js +1 -1
- package/package.json +1 -1
- package/src/components/mobile/x-bar-graph/root.d.ts +31 -1
- package/src/components/mobile/x-float-button/root.d.ts +3 -0
- package/src/components/mobile/x-gauge-graph/root.d.ts +2 -2
- package/src/index.core.d.ts +2 -2
- package/src/index.mobile.d.ts +2 -2
- package/src/index.web.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,3 +1,33 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare const
|
|
2
|
+
declare const locales: readonly ["en-US", "pt-BR", "de-DE", "fr-FR", "es-ES", "it-IT", "ja-JP", "zh-CN", "ar-SA", "ru-RU", "ko-KR", "hi-IN", "en-GB", "fr-CA", "pt-PT", "nl-NL", "sv-SE", "pl-PL", "tr-TR", "en-AU", "en-CA"];
|
|
3
|
+
export interface IProps {
|
|
4
|
+
locale?: (typeof locales)[number];
|
|
5
|
+
barSymbol?: 'R$' | '$' | '%';
|
|
6
|
+
seeBy: string;
|
|
7
|
+
title: string;
|
|
8
|
+
hourMin: string;
|
|
9
|
+
budget: number;
|
|
10
|
+
titleBudget: string;
|
|
11
|
+
projectionDay: number;
|
|
12
|
+
loading: boolean;
|
|
13
|
+
isMonth: boolean;
|
|
14
|
+
chartData: {
|
|
15
|
+
meta: number;
|
|
16
|
+
bars: [
|
|
17
|
+
{
|
|
18
|
+
value: number;
|
|
19
|
+
color: string;
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
value: number;
|
|
23
|
+
color: string;
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
value: number;
|
|
27
|
+
color: string;
|
|
28
|
+
}
|
|
29
|
+
];
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
declare const XBarGraph: React.FC<IProps>;
|
|
3
33
|
export default XBarGraph;
|
|
@@ -4,6 +4,9 @@ import { IProps as XButtonIconProps } from '../../core/x-button-icon/root';
|
|
|
4
4
|
export interface IProps extends XButtonIconProps {
|
|
5
5
|
placement?: (typeof Collections.IFloatButtonPlacement)[number];
|
|
6
6
|
bottom?: (typeof Collections.IFloatButtonBottom)[number];
|
|
7
|
+
tooltipAutoHide?: boolean;
|
|
8
|
+
showTooltip?: boolean;
|
|
9
|
+
tooltipText?: string;
|
|
7
10
|
}
|
|
8
11
|
declare const XFloatButton: React.FC<IProps>;
|
|
9
12
|
export default XFloatButton;
|
|
@@ -4,7 +4,7 @@ export type ISeries = {
|
|
|
4
4
|
value: number;
|
|
5
5
|
color: string;
|
|
6
6
|
};
|
|
7
|
-
export type
|
|
7
|
+
export type IProps = {
|
|
8
8
|
onClick: () => void;
|
|
9
9
|
title: string;
|
|
10
10
|
skeleton: boolean;
|
|
@@ -21,5 +21,5 @@ export type IGaugeChart = {
|
|
|
21
21
|
col3?: string;
|
|
22
22
|
};
|
|
23
23
|
};
|
|
24
|
-
declare const XGaugeGraph: React.FC<
|
|
24
|
+
declare const XGaugeGraph: React.FC<IProps>;
|
|
25
25
|
export default XGaugeGraph;
|
package/src/index.core.d.ts
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
import './index.css';
|
|
4
4
|
import XList from '@yumi/x-list';
|
|
5
5
|
declare const _default: {
|
|
6
|
-
XGaugeGraph: import("react").FC<import("./components/mobile/x-gauge-graph/root").
|
|
7
|
-
XBarGraph: import("react").FC<
|
|
6
|
+
XGaugeGraph: import("react").FC<import("./components/mobile/x-gauge-graph/root").IProps>;
|
|
7
|
+
XBarGraph: import("react").FC<import("./components/mobile/x-bar-graph/root").IProps>;
|
|
8
8
|
XCardCounter: import("react").FC<import("./components/core/x-card-counter/root").IProps>;
|
|
9
9
|
XBox: import("react").FC<import("./components/core/x-box/root").IProps>;
|
|
10
10
|
XText: import("react").FC<import("./components/core/x-text/root").IProps>;
|
package/src/index.mobile.d.ts
CHANGED
|
@@ -86,8 +86,8 @@ declare const _default: {
|
|
|
86
86
|
XStoreSelector: import("react").FC<import("./components/mobile/x-store-selector/root").IProps>;
|
|
87
87
|
XPullToRefresh: import("react").FC<import("./components/mobile/x-pull-to-refresh/root").IProps>;
|
|
88
88
|
XCardExpandProgress: import("react").FC<import("./components/mobile/x-card-expand-progress/root").IProps>;
|
|
89
|
-
XGaugeGraph: import("react").FC<import("./components/mobile/x-gauge-graph/root").
|
|
90
|
-
XBarGraph: import("react").FC<
|
|
89
|
+
XGaugeGraph: import("react").FC<import("./components/mobile/x-gauge-graph/root").IProps>;
|
|
90
|
+
XBarGraph: import("react").FC<import("./components/mobile/x-bar-graph/root").IProps>;
|
|
91
91
|
XCardCounter: import("react").FC<import("./components/core/x-card-counter/root").IProps>;
|
|
92
92
|
XBox: import("react").FC<import("./components/core/x-box/root").IProps>;
|
|
93
93
|
XText: import("react").FC<import("./components/core/x-text/root").IProps>;
|
package/src/index.web.d.ts
CHANGED
|
@@ -67,8 +67,8 @@ declare const _default: {
|
|
|
67
67
|
};
|
|
68
68
|
};
|
|
69
69
|
XApp: import("react").FC<import("./components/web/x-app/root").IProps>;
|
|
70
|
-
XGaugeGraph: import("react").FC<import("./components/mobile/x-gauge-graph/root").
|
|
71
|
-
XBarGraph: import("react").FC<
|
|
70
|
+
XGaugeGraph: import("react").FC<import("./components/mobile/x-gauge-graph/root").IProps>;
|
|
71
|
+
XBarGraph: import("react").FC<import("./components/mobile/x-bar-graph/root").IProps>;
|
|
72
72
|
XCardCounter: import("react").FC<import("./components/core/x-card-counter/root").IProps>;
|
|
73
73
|
XBox: import("react").FC<import("./components/core/x-box/root").IProps>;
|
|
74
74
|
XText: import("react").FC<import("./components/core/x-text/root").IProps>;
|