@ttoss/ui 1.31.4 → 1.31.5
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/esm/index.js +42 -21
- package/dist/index.d.ts +8 -3
- package/dist/index.js +42 -21
- package/package.json +3 -3
- package/src/components/Badge.tsx +24 -1
package/dist/esm/index.js
CHANGED
|
@@ -33,14 +33,7 @@ import { useThemeUI } from "theme-ui";
|
|
|
33
33
|
var useTheme = useThemeUI;
|
|
34
34
|
|
|
35
35
|
// src/components/Badge.tsx
|
|
36
|
-
import { Badge } from "theme-ui";
|
|
37
|
-
|
|
38
|
-
// src/components/Box.tsx
|
|
39
|
-
import { Box } from "theme-ui";
|
|
40
|
-
|
|
41
|
-
// src/components/Button.tsx
|
|
42
|
-
import * as React3 from "react";
|
|
43
|
-
import { Button as ButtonUi } from "theme-ui";
|
|
36
|
+
import { Badge as BadgeUi } from "theme-ui";
|
|
44
37
|
|
|
45
38
|
// src/components/Icon.tsx
|
|
46
39
|
import * as React2 from "react";
|
|
@@ -55,8 +48,36 @@ var Icon = /*#__PURE__*/React2.forwardRef((props, ref) => {
|
|
|
55
48
|
});
|
|
56
49
|
Icon.displayName = "Icon";
|
|
57
50
|
|
|
58
|
-
// src/components/
|
|
51
|
+
// src/components/Badge.tsx
|
|
59
52
|
import { jsx as jsx3, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
53
|
+
var Badge = ({
|
|
54
|
+
icon,
|
|
55
|
+
children,
|
|
56
|
+
sx,
|
|
57
|
+
...props
|
|
58
|
+
}) => {
|
|
59
|
+
return /* @__PURE__ */jsxs2(BadgeUi, {
|
|
60
|
+
sx: {
|
|
61
|
+
display: "flex",
|
|
62
|
+
alignItems: "center",
|
|
63
|
+
gap: "xs",
|
|
64
|
+
...sx
|
|
65
|
+
},
|
|
66
|
+
...props,
|
|
67
|
+
children: [icon && /* @__PURE__ */jsx3(Icon, {
|
|
68
|
+
inline: true,
|
|
69
|
+
icon
|
|
70
|
+
}), children]
|
|
71
|
+
});
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
// src/components/Box.tsx
|
|
75
|
+
import { Box } from "theme-ui";
|
|
76
|
+
|
|
77
|
+
// src/components/Button.tsx
|
|
78
|
+
import * as React3 from "react";
|
|
79
|
+
import { Button as ButtonUi } from "theme-ui";
|
|
80
|
+
import { jsx as jsx4, jsxs as jsxs3 } from "react/jsx-runtime";
|
|
60
81
|
var Button = /*#__PURE__*/React3.forwardRef((props, ref) => {
|
|
61
82
|
const {
|
|
62
83
|
children,
|
|
@@ -64,7 +85,7 @@ var Button = /*#__PURE__*/React3.forwardRef((props, ref) => {
|
|
|
64
85
|
rightIcon,
|
|
65
86
|
...restProps
|
|
66
87
|
} = props;
|
|
67
|
-
return /* @__PURE__ */
|
|
88
|
+
return /* @__PURE__ */jsxs3(ButtonUi, {
|
|
68
89
|
ref,
|
|
69
90
|
type: "button",
|
|
70
91
|
...restProps,
|
|
@@ -78,10 +99,10 @@ var Button = /*#__PURE__*/React3.forwardRef((props, ref) => {
|
|
|
78
99
|
gap: "lg",
|
|
79
100
|
...restProps.sx
|
|
80
101
|
},
|
|
81
|
-
children: [leftIcon && /* @__PURE__ */
|
|
102
|
+
children: [leftIcon && /* @__PURE__ */jsx4(Icon, {
|
|
82
103
|
inline: true,
|
|
83
104
|
icon: leftIcon
|
|
84
|
-
}), children, rightIcon && /* @__PURE__ */
|
|
105
|
+
}), children, rightIcon && /* @__PURE__ */jsx4(Icon, {
|
|
85
106
|
inline: true,
|
|
86
107
|
icon: rightIcon
|
|
87
108
|
})]
|
|
@@ -110,18 +131,18 @@ import { Image } from "theme-ui";
|
|
|
110
131
|
// src/components/Input.tsx
|
|
111
132
|
import React4 from "react";
|
|
112
133
|
import { Input as InputUI } from "theme-ui";
|
|
113
|
-
import { jsx as
|
|
134
|
+
import { jsx as jsx5, jsxs as jsxs4 } from "react/jsx-runtime";
|
|
114
135
|
var Input = /*#__PURE__*/React4.forwardRef(({
|
|
115
136
|
leadingIcon,
|
|
116
137
|
trailingIcon,
|
|
117
138
|
sx,
|
|
118
139
|
...inputProps
|
|
119
140
|
}, ref) => {
|
|
120
|
-
return /* @__PURE__ */
|
|
141
|
+
return /* @__PURE__ */jsxs4(Flex, {
|
|
121
142
|
sx: {
|
|
122
143
|
position: "relative"
|
|
123
144
|
},
|
|
124
|
-
children: [leadingIcon && /* @__PURE__ */
|
|
145
|
+
children: [leadingIcon && /* @__PURE__ */jsx5(Text, {
|
|
125
146
|
sx: {
|
|
126
147
|
position: "absolute",
|
|
127
148
|
alignSelf: "center",
|
|
@@ -130,10 +151,10 @@ var Input = /*#__PURE__*/React4.forwardRef(({
|
|
|
130
151
|
lineHeight: 0
|
|
131
152
|
},
|
|
132
153
|
variant: "leading-icon",
|
|
133
|
-
children: /* @__PURE__ */
|
|
154
|
+
children: /* @__PURE__ */jsx5(Icon, {
|
|
134
155
|
icon: leadingIcon
|
|
135
156
|
})
|
|
136
|
-
}), /* @__PURE__ */
|
|
157
|
+
}), /* @__PURE__ */jsx5(InputUI, {
|
|
137
158
|
ref,
|
|
138
159
|
sx: {
|
|
139
160
|
paddingLeft: leadingIcon ? "3xl" : void 0,
|
|
@@ -141,7 +162,7 @@ var Input = /*#__PURE__*/React4.forwardRef(({
|
|
|
141
162
|
...sx
|
|
142
163
|
},
|
|
143
164
|
...inputProps
|
|
144
|
-
}), trailingIcon && /* @__PURE__ */
|
|
165
|
+
}), trailingIcon && /* @__PURE__ */jsx5(Text, {
|
|
145
166
|
sx: {
|
|
146
167
|
position: "absolute",
|
|
147
168
|
right: "1rem",
|
|
@@ -150,7 +171,7 @@ var Input = /*#__PURE__*/React4.forwardRef(({
|
|
|
150
171
|
lineHeight: 0
|
|
151
172
|
},
|
|
152
173
|
variant: "trailing-icon",
|
|
153
|
-
children: /* @__PURE__ */
|
|
174
|
+
children: /* @__PURE__ */jsx5(Icon, {
|
|
154
175
|
icon: trailingIcon
|
|
155
176
|
})
|
|
156
177
|
})]
|
|
@@ -190,7 +211,7 @@ import { Checkbox } from "theme-ui";
|
|
|
190
211
|
|
|
191
212
|
// src/components/InfiniteLinearProgress.tsx
|
|
192
213
|
import * as React5 from "react";
|
|
193
|
-
import { jsx as
|
|
214
|
+
import { jsx as jsx6 } from "react/jsx-runtime";
|
|
194
215
|
var MAX_PROGRESS = 100;
|
|
195
216
|
var InfiniteLinearProgress = () => {
|
|
196
217
|
const [progress, setProgress] = React5.useState(0);
|
|
@@ -215,7 +236,7 @@ var InfiniteLinearProgress = () => {
|
|
|
215
236
|
clearInterval(timer);
|
|
216
237
|
};
|
|
217
238
|
}, []);
|
|
218
|
-
return /* @__PURE__ */
|
|
239
|
+
return /* @__PURE__ */jsx6(Progress, {
|
|
219
240
|
max: MAX_PROGRESS,
|
|
220
241
|
value: progress,
|
|
221
242
|
role: "progressbar"
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as theme_ui from 'theme-ui';
|
|
2
|
-
import { Theme, ButtonProps as ButtonProps$1, InputProps as InputProps$1 } from 'theme-ui';
|
|
3
|
-
export {
|
|
2
|
+
import { Theme, BadgeProps as BadgeProps$1, ButtonProps as ButtonProps$1, InputProps as InputProps$1 } from 'theme-ui';
|
|
3
|
+
export { BaseStyles, Box, BoxProps, Card, CardProps, Checkbox, CheckboxProps, Container, ContainerProps, Divider, DividerProps, Flex, FlexProps, Grid, GridProps, Heading, HeadingProps, IconButton, IconButtonProps, Image, ImageProps, Label, LabelProps, Progress as LinearProgress, ProgressProps as LinearProgressProps, Link, LinkProps, Radio, RadioProps, Select, SelectProps, Slider, SliderProps, Spinner, SpinnerProps, Text, TextProps, Textarea, TextareaProps, Theme } from 'theme-ui';
|
|
4
4
|
export { useBreakpointIndex, useResponsiveValue } from '@theme-ui/match-media';
|
|
5
5
|
import * as React from 'react';
|
|
6
6
|
import React__default from 'react';
|
|
@@ -23,6 +23,11 @@ type IconType = string | IconifyIcon;
|
|
|
23
23
|
type IconProps = Omit<IconifyIconProps, 'ref'>;
|
|
24
24
|
declare const Icon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<IconifyIconHTMLElement | null>>;
|
|
25
25
|
|
|
26
|
+
type BadgeProps = BadgeProps$1 & {
|
|
27
|
+
icon: IconType;
|
|
28
|
+
};
|
|
29
|
+
declare const Badge: ({ icon, children, sx, ...props }: BadgeProps) => JSX.Element;
|
|
30
|
+
|
|
26
31
|
type ButtonProps = ButtonProps$1 & {
|
|
27
32
|
leftIcon?: IconType;
|
|
28
33
|
rightIcon?: IconType;
|
|
@@ -37,4 +42,4 @@ declare const Input: React__default.ForwardRefExoticComponent<Omit<InputProps, "
|
|
|
37
42
|
|
|
38
43
|
declare const InfiniteLinearProgress: () => JSX.Element;
|
|
39
44
|
|
|
40
|
-
export { Button, ButtonProps, Icon, IconProps, IconType, InfiniteLinearProgress, Input, InputProps, ThemeProvider, ThemeProviderProps, useTheme };
|
|
45
|
+
export { Badge, BadgeProps, Button, ButtonProps, Icon, IconProps, IconType, InfiniteLinearProgress, Input, InputProps, ThemeProvider, ThemeProviderProps, useTheme };
|
package/dist/index.js
CHANGED
|
@@ -38,7 +38,7 @@ var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
|
38
38
|
// src/index.ts
|
|
39
39
|
var src_exports = {};
|
|
40
40
|
__export(src_exports, {
|
|
41
|
-
Badge: () =>
|
|
41
|
+
Badge: () => Badge,
|
|
42
42
|
BaseStyles: () => import_theme_ui25.BaseStyles,
|
|
43
43
|
Box: () => import_theme_ui4.Box,
|
|
44
44
|
Button: () => Button,
|
|
@@ -103,13 +103,6 @@ var useTheme = import_theme_ui2.useThemeUI;
|
|
|
103
103
|
// src/components/Badge.tsx
|
|
104
104
|
var import_theme_ui3 = require("theme-ui");
|
|
105
105
|
|
|
106
|
-
// src/components/Box.tsx
|
|
107
|
-
var import_theme_ui4 = require("theme-ui");
|
|
108
|
-
|
|
109
|
-
// src/components/Button.tsx
|
|
110
|
-
var React3 = __toESM(require("react"));
|
|
111
|
-
var import_theme_ui5 = require("theme-ui");
|
|
112
|
-
|
|
113
106
|
// src/components/Icon.tsx
|
|
114
107
|
var React2 = __toESM(require("react"));
|
|
115
108
|
var import_react2 = require("@iconify-icon/react");
|
|
@@ -123,8 +116,36 @@ var Icon = React2.forwardRef((props, ref) => {
|
|
|
123
116
|
});
|
|
124
117
|
Icon.displayName = "Icon";
|
|
125
118
|
|
|
126
|
-
// src/components/
|
|
119
|
+
// src/components/Badge.tsx
|
|
127
120
|
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
121
|
+
var Badge = ({
|
|
122
|
+
icon,
|
|
123
|
+
children,
|
|
124
|
+
sx,
|
|
125
|
+
...props
|
|
126
|
+
}) => {
|
|
127
|
+
return /* @__PURE__ */(0, import_jsx_runtime3.jsxs)(import_theme_ui3.Badge, {
|
|
128
|
+
sx: {
|
|
129
|
+
display: "flex",
|
|
130
|
+
alignItems: "center",
|
|
131
|
+
gap: "xs",
|
|
132
|
+
...sx
|
|
133
|
+
},
|
|
134
|
+
...props,
|
|
135
|
+
children: [icon && /* @__PURE__ */(0, import_jsx_runtime3.jsx)(Icon, {
|
|
136
|
+
inline: true,
|
|
137
|
+
icon
|
|
138
|
+
}), children]
|
|
139
|
+
});
|
|
140
|
+
};
|
|
141
|
+
|
|
142
|
+
// src/components/Box.tsx
|
|
143
|
+
var import_theme_ui4 = require("theme-ui");
|
|
144
|
+
|
|
145
|
+
// src/components/Button.tsx
|
|
146
|
+
var React3 = __toESM(require("react"));
|
|
147
|
+
var import_theme_ui5 = require("theme-ui");
|
|
148
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
128
149
|
var Button = React3.forwardRef((props, ref) => {
|
|
129
150
|
const {
|
|
130
151
|
children,
|
|
@@ -132,7 +153,7 @@ var Button = React3.forwardRef((props, ref) => {
|
|
|
132
153
|
rightIcon,
|
|
133
154
|
...restProps
|
|
134
155
|
} = props;
|
|
135
|
-
return /* @__PURE__ */(0,
|
|
156
|
+
return /* @__PURE__ */(0, import_jsx_runtime4.jsxs)(import_theme_ui5.Button, {
|
|
136
157
|
ref,
|
|
137
158
|
type: "button",
|
|
138
159
|
...restProps,
|
|
@@ -146,10 +167,10 @@ var Button = React3.forwardRef((props, ref) => {
|
|
|
146
167
|
gap: "lg",
|
|
147
168
|
...restProps.sx
|
|
148
169
|
},
|
|
149
|
-
children: [leftIcon && /* @__PURE__ */(0,
|
|
170
|
+
children: [leftIcon && /* @__PURE__ */(0, import_jsx_runtime4.jsx)(Icon, {
|
|
150
171
|
inline: true,
|
|
151
172
|
icon: leftIcon
|
|
152
|
-
}), children, rightIcon && /* @__PURE__ */(0,
|
|
173
|
+
}), children, rightIcon && /* @__PURE__ */(0, import_jsx_runtime4.jsx)(Icon, {
|
|
153
174
|
inline: true,
|
|
154
175
|
icon: rightIcon
|
|
155
176
|
})]
|
|
@@ -178,18 +199,18 @@ var import_theme_ui11 = require("theme-ui");
|
|
|
178
199
|
// src/components/Input.tsx
|
|
179
200
|
var import_react3 = __toESM(require("react"));
|
|
180
201
|
var import_theme_ui12 = require("theme-ui");
|
|
181
|
-
var
|
|
202
|
+
var import_jsx_runtime5 = require("react/jsx-runtime");
|
|
182
203
|
var Input = import_react3.default.forwardRef(({
|
|
183
204
|
leadingIcon,
|
|
184
205
|
trailingIcon,
|
|
185
206
|
sx,
|
|
186
207
|
...inputProps
|
|
187
208
|
}, ref) => {
|
|
188
|
-
return /* @__PURE__ */(0,
|
|
209
|
+
return /* @__PURE__ */(0, import_jsx_runtime5.jsxs)(import_theme_ui8.Flex, {
|
|
189
210
|
sx: {
|
|
190
211
|
position: "relative"
|
|
191
212
|
},
|
|
192
|
-
children: [leadingIcon && /* @__PURE__ */(0,
|
|
213
|
+
children: [leadingIcon && /* @__PURE__ */(0, import_jsx_runtime5.jsx)(import_theme_ui16.Text, {
|
|
193
214
|
sx: {
|
|
194
215
|
position: "absolute",
|
|
195
216
|
alignSelf: "center",
|
|
@@ -198,10 +219,10 @@ var Input = import_react3.default.forwardRef(({
|
|
|
198
219
|
lineHeight: 0
|
|
199
220
|
},
|
|
200
221
|
variant: "leading-icon",
|
|
201
|
-
children: /* @__PURE__ */(0,
|
|
222
|
+
children: /* @__PURE__ */(0, import_jsx_runtime5.jsx)(Icon, {
|
|
202
223
|
icon: leadingIcon
|
|
203
224
|
})
|
|
204
|
-
}), /* @__PURE__ */(0,
|
|
225
|
+
}), /* @__PURE__ */(0, import_jsx_runtime5.jsx)(import_theme_ui12.Input, {
|
|
205
226
|
ref,
|
|
206
227
|
sx: {
|
|
207
228
|
paddingLeft: leadingIcon ? "3xl" : void 0,
|
|
@@ -209,7 +230,7 @@ var Input = import_react3.default.forwardRef(({
|
|
|
209
230
|
...sx
|
|
210
231
|
},
|
|
211
232
|
...inputProps
|
|
212
|
-
}), trailingIcon && /* @__PURE__ */(0,
|
|
233
|
+
}), trailingIcon && /* @__PURE__ */(0, import_jsx_runtime5.jsx)(import_theme_ui16.Text, {
|
|
213
234
|
sx: {
|
|
214
235
|
position: "absolute",
|
|
215
236
|
right: "1rem",
|
|
@@ -218,7 +239,7 @@ var Input = import_react3.default.forwardRef(({
|
|
|
218
239
|
lineHeight: 0
|
|
219
240
|
},
|
|
220
241
|
variant: "trailing-icon",
|
|
221
|
-
children: /* @__PURE__ */(0,
|
|
242
|
+
children: /* @__PURE__ */(0, import_jsx_runtime5.jsx)(Icon, {
|
|
222
243
|
icon: trailingIcon
|
|
223
244
|
})
|
|
224
245
|
})]
|
|
@@ -258,7 +279,7 @@ var import_theme_ui22 = require("theme-ui");
|
|
|
258
279
|
|
|
259
280
|
// src/components/InfiniteLinearProgress.tsx
|
|
260
281
|
var React5 = __toESM(require("react"));
|
|
261
|
-
var
|
|
282
|
+
var import_jsx_runtime6 = require("react/jsx-runtime");
|
|
262
283
|
var MAX_PROGRESS = 100;
|
|
263
284
|
var InfiniteLinearProgress = () => {
|
|
264
285
|
const [progress, setProgress] = React5.useState(0);
|
|
@@ -283,7 +304,7 @@ var InfiniteLinearProgress = () => {
|
|
|
283
304
|
clearInterval(timer);
|
|
284
305
|
};
|
|
285
306
|
}, []);
|
|
286
|
-
return /* @__PURE__ */(0,
|
|
307
|
+
return /* @__PURE__ */(0, import_jsx_runtime6.jsx)(import_theme_ui15.Progress, {
|
|
287
308
|
max: MAX_PROGRESS,
|
|
288
309
|
value: progress,
|
|
289
310
|
role: "progressbar"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ttoss/ui",
|
|
3
|
-
"version": "1.31.
|
|
3
|
+
"version": "1.31.5",
|
|
4
4
|
"description": "Primitive layout, typographic, and other components for styling applications.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"author": "ttoss",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@emotion/react": "^11.10.6",
|
|
25
25
|
"@iconify-icon/react": "^1.0.7",
|
|
26
26
|
"@theme-ui/match-media": "^0.15.5",
|
|
27
|
-
"@ttoss/theme": "^1.4.
|
|
27
|
+
"@ttoss/theme": "^1.4.5",
|
|
28
28
|
"theme-ui": "^0.15.5"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "77d124d6e4c2ccd61058c8852789dcd9bc2f527a"
|
|
50
50
|
}
|
package/src/components/Badge.tsx
CHANGED
|
@@ -1 +1,24 @@
|
|
|
1
|
-
|
|
1
|
+
import { type BadgeProps as BadgePropsUi, Badge as BadgeUi } from 'theme-ui';
|
|
2
|
+
|
|
3
|
+
import { Icon, IconType } from './Icon';
|
|
4
|
+
|
|
5
|
+
export type BadgeProps = BadgePropsUi & {
|
|
6
|
+
icon: IconType;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export const Badge = ({ icon, children, sx, ...props }: BadgeProps) => {
|
|
10
|
+
return (
|
|
11
|
+
<BadgeUi
|
|
12
|
+
sx={{
|
|
13
|
+
display: 'flex',
|
|
14
|
+
alignItems: 'center',
|
|
15
|
+
gap: 'xs',
|
|
16
|
+
...sx,
|
|
17
|
+
}}
|
|
18
|
+
{...props}
|
|
19
|
+
>
|
|
20
|
+
{icon && <Icon inline icon={icon} />}
|
|
21
|
+
{children}
|
|
22
|
+
</BadgeUi>
|
|
23
|
+
);
|
|
24
|
+
};
|