@ftdata/ui 0.0.14 → 0.0.15
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/dist/components/Input/index.js +15 -11
- package/dist/components/Input/styles.d.ts +2 -1
- package/dist/components/Input/styles.js +27 -16
- package/dist/components/Select/List/index.js +0 -1
- package/dist/components/Select/index.d.ts +2 -2
- package/dist/components/Select/index.js +1 -0
- package/package.json +2 -2
|
@@ -1,19 +1,15 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import "react";
|
|
3
|
-
import { Container,
|
|
4
|
-
import DoneCircleIcon from "../../assets/DoneCircleIcon.js";
|
|
5
|
-
import CancelSquareIcon from "../../assets/CancelSquareIcon.js";
|
|
3
|
+
import { Container, DivIcon, HelpText, InputContainer, InputControl, StyledLabel } from "./styles.js";
|
|
6
4
|
import { Icon } from "@ftdata/f-icons";
|
|
7
5
|
const Input = ({ disabled, error, helpText, name, success, width, icon, textField, margin, required, ...rest })=>/*#__PURE__*/ jsxs(Container, {
|
|
8
6
|
margin: margin,
|
|
9
7
|
children: [
|
|
10
|
-
textField && /*#__PURE__*/ jsxs(
|
|
8
|
+
textField && /*#__PURE__*/ jsxs(StyledLabel, {
|
|
9
|
+
htmlFor: name,
|
|
11
10
|
children: [
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
}),
|
|
15
|
-
required && /*#__PURE__*/ jsx("div", {
|
|
16
|
-
className: "required",
|
|
11
|
+
textField,
|
|
12
|
+
required && /*#__PURE__*/ jsx("span", {
|
|
17
13
|
children: "*"
|
|
18
14
|
})
|
|
19
15
|
]
|
|
@@ -44,8 +40,16 @@ const Input = ({ disabled, error, helpText, name, success, width, icon, textFiel
|
|
|
44
40
|
error: error,
|
|
45
41
|
success: success,
|
|
46
42
|
children: [
|
|
47
|
-
|
|
48
|
-
|
|
43
|
+
error && /*#__PURE__*/ jsx("div", {
|
|
44
|
+
children: /*#__PURE__*/ jsx(Icon, {
|
|
45
|
+
name: "ui warning-circle",
|
|
46
|
+
size: "1rem",
|
|
47
|
+
color: "currentColor"
|
|
48
|
+
})
|
|
49
|
+
}),
|
|
50
|
+
/*#__PURE__*/ jsx("span", {
|
|
51
|
+
children: helpText
|
|
52
|
+
})
|
|
49
53
|
]
|
|
50
54
|
})
|
|
51
55
|
]
|
|
@@ -13,5 +13,6 @@ interface HelpTextProps extends React.AllHTMLAttributes<HTMLSpanElement> {
|
|
|
13
13
|
error?: boolean;
|
|
14
14
|
success?: boolean;
|
|
15
15
|
}
|
|
16
|
-
export declare const HelpText: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").
|
|
16
|
+
export declare const HelpText: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, HelpTextProps>> & string;
|
|
17
|
+
export declare const StyledLabel: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, never>> & string;
|
|
17
18
|
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import styled_components from "styled-components";
|
|
2
|
-
import { BORDER_RADIUS_SM, COLOR_ACCENT_MEDIUM, COLOR_DANGER_MEDIUM, COLOR_NEUTRAL_DARK, COLOR_NEUTRAL_DAY, COLOR_NEUTRAL_DUSK, COLOR_NEUTRAL_LIGHT, COLOR_NEUTRAL_LIGHTER, COLOR_NEUTRAL_MEDIUM,
|
|
2
|
+
import { BORDER_RADIUS_SM, COLOR_ACCENT_MEDIUM, COLOR_DANGER_MEDIUM, COLOR_NEUTRAL_DARK, COLOR_NEUTRAL_DAY, COLOR_NEUTRAL_DUSK, COLOR_NEUTRAL_LIGHT, COLOR_NEUTRAL_LIGHTER, COLOR_NEUTRAL_MEDIUM, COLOR_SUCCESS_MEDIUM, FONT_FAMILY_01, FONT_SIZE_MD, FONT_SIZE_SM, FONT_WEIGHT_BOLD, FONT_WEIGHT_MEDIUM, LINE_HEIGHT_MEDIUM, SPACING_INLINE_02, SPACING_INSET_SM, SPACING_SQUISH_NANO, SPACING_STACK_02 } from "@ftdata/f-tokens";
|
|
3
3
|
import { Component } from "react";
|
|
4
4
|
const ContainerTextField = styled_components.div`
|
|
5
5
|
display: flex;
|
|
@@ -75,22 +75,33 @@ const InputControl = styled_components.input`
|
|
|
75
75
|
color: ${({ disabled })=>disabled ? COLOR_NEUTRAL_LIGHT : COLOR_NEUTRAL_MEDIUM};
|
|
76
76
|
}
|
|
77
77
|
`;
|
|
78
|
-
const HelpText = styled_components
|
|
79
|
-
|
|
80
|
-
box-sizing: border-box;
|
|
81
|
-
color: ${({ disabled, error, success })=>disabled && COLOR_NEUTRAL_MEDIUM || error && COLOR_DANGER_MEDIUM || success && COLOR_SUCCESS_DARK || COLOR_NEUTRAL_DARK};
|
|
78
|
+
const HelpText = styled_components.div`
|
|
79
|
+
color: ${({ error, success })=>error ? COLOR_DANGER_MEDIUM : success ? COLOR_SUCCESS_MEDIUM : COLOR_NEUTRAL_DARK};
|
|
82
80
|
display: flex;
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
line-height: ${LINE_HEIGHT_MEDIUM};
|
|
86
|
-
font-size: ${FONT_SIZE_XS};
|
|
87
|
-
margin-top: 8px;
|
|
81
|
+
gap: 0.25rem;
|
|
82
|
+
margin-top: 0.5rem;
|
|
88
83
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
84
|
+
div {
|
|
85
|
+
height: 1rem;
|
|
86
|
+
width: 1rem;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
span {
|
|
90
|
+
font-size: 0.875rem;
|
|
91
|
+
line-height: 1rem;
|
|
92
|
+
font-weight: ${FONT_WEIGHT_MEDIUM};
|
|
93
|
+
}
|
|
94
|
+
`;
|
|
95
|
+
const StyledLabel = styled_components.label`
|
|
96
|
+
color: ${COLOR_NEUTRAL_DUSK};
|
|
97
|
+
display: flex;
|
|
98
|
+
font-size: 0.875rem;
|
|
99
|
+
font-weight: ${FONT_WEIGHT_BOLD};
|
|
100
|
+
line-height: 1rem;
|
|
101
|
+
margin-bottom: 0.5rem;
|
|
102
|
+
|
|
103
|
+
span {
|
|
104
|
+
color: ${COLOR_DANGER_MEDIUM};
|
|
94
105
|
}
|
|
95
106
|
`;
|
|
96
|
-
export { Container, ContainerTextField, DivIcon, HelpText, InputContainer, InputControl, ReactInputMask, TextField };
|
|
107
|
+
export { Container, ContainerTextField, DivIcon, HelpText, InputContainer, InputControl, ReactInputMask, StyledLabel, TextField };
|
|
@@ -13,7 +13,6 @@ const SelectList = ({ options, onClickOption, selectedOption, isLoading, onLoadM
|
|
|
13
13
|
const height = OPTION_SIZE * (0 === optionLength ? 1 : optionLength >= 7 ? 7 : optionLength);
|
|
14
14
|
const onItemsRendered = useCallback(async ({ stopIndex })=>{
|
|
15
15
|
const isAtEnd = stopIndex >= options.length - 1;
|
|
16
|
-
console.log(lastIndex, stopIndex, isAtEnd);
|
|
17
16
|
if (loadingMore) return;
|
|
18
17
|
try {
|
|
19
18
|
setLoadingMore(true);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { InputHTMLAttributes, JSX } from "react";
|
|
2
2
|
export interface ISelectOption {
|
|
3
3
|
label: string;
|
|
4
4
|
value: string;
|
|
@@ -25,7 +25,7 @@ export interface SelectProps extends InputPropsWithoutOnToggle {
|
|
|
25
25
|
icon?: JSX.Element;
|
|
26
26
|
variation?: "default" | "searchable";
|
|
27
27
|
selected: ISelectOption | null;
|
|
28
|
-
setSelected:
|
|
28
|
+
setSelected: (selected: ISelectOption | null) => void;
|
|
29
29
|
onLoadMore?: () => Promise<void>;
|
|
30
30
|
onToggle?: (open: boolean) => void;
|
|
31
31
|
dropdownPosition?: "top" | "bottom";
|
|
@@ -153,6 +153,7 @@ function Select({ helpText, isError, isSuccess, label, name, isRequired, options
|
|
|
153
153
|
onClick: handleClickCavet,
|
|
154
154
|
isListOpen: showList,
|
|
155
155
|
ref: cavetRef,
|
|
156
|
+
type: "button",
|
|
156
157
|
children: /*#__PURE__*/ jsx(Icon, {
|
|
157
158
|
name: "arw caret-down",
|
|
158
159
|
color: "currentColor",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ftdata/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"react-input-mask-next": "3.0.0-alpha.12",
|
|
32
32
|
"react-select": "^5.10.2",
|
|
33
33
|
"react-window": "^2.0.2",
|
|
34
|
-
"@ftdata/f-icons": "0.0.
|
|
34
|
+
"@ftdata/f-icons": "0.0.3",
|
|
35
35
|
"@ftdata/f-tokens": "0.0.1"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|