@uxf/ui 11.80.1 → 11.80.4
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/README.md +1 -0
- package/accordion/accordion.stories.js +1 -1
- package/combobox/combobox.d.ts +2 -2
- package/config/icons.d.ts +48 -28
- package/config/icons.js +12 -0
- package/icon/icon.stories.js +2 -0
- package/icon/theme.d.ts +2 -1
- package/icons-config.js +10 -0
- package/icons.d.ts +40 -0
- package/input/input-arrow-icon.d.ts +2 -2
- package/modal-dialog/modal-dialog.stories.js +2 -2
- package/multi-combobox/types.d.ts +2 -2
- package/multi-select/types.d.ts +2 -2
- package/package.json +5 -5
- package/select/select.d.ts +2 -2
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ function Default() {
|
|
|
14
14
|
react_1.default.createElement(accordion_1.Accordion.Item, { id: "item2", title: "Hodn\u011B dobr\u00FD dotaz" }, "P\u0159evedl spr\u00E1vn\u00ED, kter\u00FDmi v\u00FDkonn\u00E9mu st\u00E1tn\u00EDho a \u00FA\u010Deln\u00FD tuto org\u00E1nu, mohlo k zdr\u017Eet n\u011Bho\u017E prok\u00E1z\u00E1n 1950 i n\u011Bm\u017E p\u00EDsmenny a velk\u00E9 v\u00FDznamn\u00E9 p\u0159\u00EDpady, kter\u00E9 se neboj\u00ED v\u00FDznamn\u00E9 p\u0159\u00EDpady, kter\u00E9 se"),
|
|
15
15
|
react_1.default.createElement(accordion_1.Accordion.Item, { id: "item3", title: "Kdo v\u00ED kde se skr\u00FDv\u00E1 v\u0161ev\u011Bdouc\u00ED..." }, "Spr\u00E1vn\u00ED, kter\u00FDmi v\u00FDkonn\u00E9mu st\u00E1tn\u00EDho a \u00FA\u010Deln\u00FD tuto org\u00E1nu, mohlo k zdr\u017Eet n\u011Bho\u017E prok\u00E1z\u00E1n 1950 i n\u011Bm\u017E p\u00EDsmenny a velk\u00E9 v\u00FDznamn\u00E9 p\u0159\u00EDpady, kter\u00E9 se neboj\u00ED v\u00FDznamn\u00E9 p\u0159\u00EDpady, kter\u00E9 se")),
|
|
16
16
|
react_1.default.createElement("p", { className: "mb-4 mt-10" }, "Accordion - itemOpenBehavior multiple, custom icons, default open"),
|
|
17
|
-
react_1.default.createElement(accordion_1.Accordion, { closeIconName: "minus", itemOpenBehavior: "multiple", openIconName: "
|
|
17
|
+
react_1.default.createElement(accordion_1.Accordion, { closeIconName: "minus", itemOpenBehavior: "multiple", openIconName: "check" },
|
|
18
18
|
react_1.default.createElement(accordion_1.Accordion.Item, { id: "item1", isOpen: true, title: "Item 1" }, "Opr\u00E1vn\u011Bn\u00E9 ani\u017E i odstoupil o snadno osoby vede kter\u00FDmi v\u00FDkonn\u00E9mu st\u00E1tn\u00EDho a \u00FA\u010Deln\u00FD tuto org\u00E1nu"),
|
|
19
19
|
react_1.default.createElement(accordion_1.Accordion.Item, { id: "item2", title: "Item 2" }, "P\u0159evedl spr\u00E1vn\u00ED, kter\u00FDmi v\u00FDkonn\u00E9mu st\u00E1tn\u00EDho a \u00FA\u010Deln\u00FD tuto org\u00E1nu, mohlo k zdr\u017Eet n\u011Bho\u017E prok\u00E1z\u00E1n 1950 i n\u011Bm\u017E p\u00EDsmenny a velk\u00E9 v\u00FDznamn\u00E9 p\u0159\u00EDpady, kter\u00E9 se neboj\u00ED v\u00FDznamn\u00E9 p\u0159\u00EDpady, kter\u00E9 se"))));
|
|
20
20
|
}
|
package/combobox/combobox.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Placement, Strategy } from "@floating-ui/react";
|
|
2
|
-
import { IconsSet } from "@uxf/ui/icon";
|
|
3
2
|
import { InputGroupSize, InputGroupVariant } from "@uxf/ui/input";
|
|
4
3
|
import { Clearable, FormControlProps } from "@uxf/ui/types";
|
|
5
4
|
import React, { CSSProperties, ReactNode, Ref } from "react";
|
|
5
|
+
import { IconName } from "../icon/types";
|
|
6
6
|
export type ComboboxValueId = number | string;
|
|
7
7
|
export type ComboboxValue<Id = ComboboxValueId> = {
|
|
8
8
|
id: Id;
|
|
@@ -22,7 +22,7 @@ export interface ComboboxProps<Id = ComboboxValueId, Option = ComboboxOption<Id>
|
|
|
22
22
|
form?: string;
|
|
23
23
|
helperText?: ReactNode;
|
|
24
24
|
hiddenLabel?: boolean;
|
|
25
|
-
iconName?:
|
|
25
|
+
iconName?: IconName;
|
|
26
26
|
id?: string;
|
|
27
27
|
inputArrow?: (open: boolean) => ReactNode;
|
|
28
28
|
keyExtractor?: (option: Option) => string | number;
|
package/config/icons.d.ts
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
export declare const ICONS: {
|
|
2
|
+
readonly "angle-left": {
|
|
3
|
+
readonly w: 320;
|
|
4
|
+
readonly h: 512;
|
|
5
|
+
};
|
|
6
|
+
readonly "angle-right": {
|
|
7
|
+
readonly w: 320;
|
|
8
|
+
readonly h: 512;
|
|
9
|
+
};
|
|
2
10
|
readonly "arrow-left": {
|
|
3
11
|
readonly w: 448;
|
|
4
12
|
readonly h: 512;
|
|
@@ -67,6 +75,14 @@ export declare const ICONS: {
|
|
|
67
75
|
readonly w: 128;
|
|
68
76
|
readonly h: 512;
|
|
69
77
|
};
|
|
78
|
+
readonly eye: {
|
|
79
|
+
readonly w: 576;
|
|
80
|
+
readonly h: 512;
|
|
81
|
+
};
|
|
82
|
+
readonly "eye-slash": {
|
|
83
|
+
readonly w: 640;
|
|
84
|
+
readonly h: 512;
|
|
85
|
+
};
|
|
70
86
|
readonly file: {
|
|
71
87
|
readonly w: 384;
|
|
72
88
|
readonly h: 512;
|
|
@@ -75,10 +91,42 @@ export declare const ICONS: {
|
|
|
75
91
|
readonly w: 384;
|
|
76
92
|
readonly h: 512;
|
|
77
93
|
};
|
|
94
|
+
readonly minus: {
|
|
95
|
+
readonly w: 24;
|
|
96
|
+
readonly h: 24;
|
|
97
|
+
};
|
|
98
|
+
readonly plus: {
|
|
99
|
+
readonly w: 448;
|
|
100
|
+
readonly h: 512;
|
|
101
|
+
};
|
|
102
|
+
readonly "solid-badge-check": {
|
|
103
|
+
readonly w: 24;
|
|
104
|
+
readonly h: 24;
|
|
105
|
+
};
|
|
106
|
+
readonly "solid-triangle-exclamation": {
|
|
107
|
+
readonly w: 24;
|
|
108
|
+
readonly h: 24;
|
|
109
|
+
};
|
|
110
|
+
readonly "solid-octagon-xmark": {
|
|
111
|
+
readonly w: 24;
|
|
112
|
+
readonly h: 24;
|
|
113
|
+
};
|
|
114
|
+
readonly "solid-circle-info": {
|
|
115
|
+
readonly w: 24;
|
|
116
|
+
readonly h: 24;
|
|
117
|
+
};
|
|
118
|
+
readonly trash: {
|
|
119
|
+
readonly w: 448;
|
|
120
|
+
readonly h: 512;
|
|
121
|
+
};
|
|
78
122
|
readonly "triangle-exclamation": {
|
|
79
123
|
readonly w: 512;
|
|
80
124
|
readonly h: 512;
|
|
81
125
|
};
|
|
126
|
+
readonly "triangle-exclamation-solid": {
|
|
127
|
+
readonly w: 512;
|
|
128
|
+
readonly h: 512;
|
|
129
|
+
};
|
|
82
130
|
readonly user: {
|
|
83
131
|
readonly w: 448;
|
|
84
132
|
readonly h: 512;
|
|
@@ -97,31 +145,3 @@ export declare const ICONS: {
|
|
|
97
145
|
};
|
|
98
146
|
};
|
|
99
147
|
export type IconsType = keyof typeof ICONS;
|
|
100
|
-
declare module "@uxf/ui/icon/theme" {
|
|
101
|
-
interface IconsSet {
|
|
102
|
-
"arrow-left": true;
|
|
103
|
-
"arrow-right": true;
|
|
104
|
-
"calendar": true;
|
|
105
|
-
"camera": true;
|
|
106
|
-
"caretDown": true;
|
|
107
|
-
"clock": true;
|
|
108
|
-
"bars": true;
|
|
109
|
-
"check": true;
|
|
110
|
-
"chevronDown": true;
|
|
111
|
-
"chevronLeft": true;
|
|
112
|
-
"chevronsLeft": true;
|
|
113
|
-
"chevronRight": true;
|
|
114
|
-
"chevronsRight": true;
|
|
115
|
-
"chevronUp": true;
|
|
116
|
-
"cloud": true;
|
|
117
|
-
"copy": true;
|
|
118
|
-
"ellipsis-vertical": true;
|
|
119
|
-
"file": true;
|
|
120
|
-
"imageFile": true;
|
|
121
|
-
"triangle-exclamation": true;
|
|
122
|
-
"user": true;
|
|
123
|
-
"videoFile": true;
|
|
124
|
-
"xmark": true;
|
|
125
|
-
"xmarkLarge": true;
|
|
126
|
-
}
|
|
127
|
-
}
|
package/config/icons.js
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
exports.ICONS = void 0;
|
|
5
5
|
exports.ICONS = {
|
|
6
|
+
"angle-left": { w: 320, h: 512 },
|
|
7
|
+
"angle-right": { w: 320, h: 512 },
|
|
6
8
|
"arrow-left": { w: 448, h: 512 },
|
|
7
9
|
"arrow-right": { w: 448, h: 512 },
|
|
8
10
|
"calendar": { w: 448, h: 512 },
|
|
@@ -20,9 +22,19 @@ exports.ICONS = {
|
|
|
20
22
|
"cloud": { w: 640, h: 512 },
|
|
21
23
|
"copy": { w: 512, h: 512 },
|
|
22
24
|
"ellipsis-vertical": { w: 128, h: 512 },
|
|
25
|
+
"eye": { w: 576, h: 512 },
|
|
26
|
+
"eye-slash": { w: 640, h: 512 },
|
|
23
27
|
"file": { w: 384, h: 512 },
|
|
24
28
|
"imageFile": { w: 384, h: 512 },
|
|
29
|
+
"minus": { w: 24, h: 24 },
|
|
30
|
+
"plus": { w: 448, h: 512 },
|
|
31
|
+
"solid-badge-check": { w: 24, h: 24 },
|
|
32
|
+
"solid-triangle-exclamation": { w: 24, h: 24 },
|
|
33
|
+
"solid-octagon-xmark": { w: 24, h: 24 },
|
|
34
|
+
"solid-circle-info": { w: 24, h: 24 },
|
|
35
|
+
"trash": { w: 448, h: 512 },
|
|
25
36
|
"triangle-exclamation": { w: 512, h: 512 },
|
|
37
|
+
"triangle-exclamation-solid": { w: 512, h: 512 },
|
|
26
38
|
"user": { w: 448, h: 512 },
|
|
27
39
|
"videoFile": { w: 384, h: 512 },
|
|
28
40
|
"xmark": { w: 384, h: 512 },
|
package/icon/icon.stories.js
CHANGED
|
@@ -39,5 +39,7 @@ function SpriteIcon() {
|
|
|
39
39
|
return react_1.default.createElement(icon_1.Icon, { name: "camera", size: 16 });
|
|
40
40
|
}
|
|
41
41
|
function SpriteIconNotExists() {
|
|
42
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
43
|
+
// @ts-expect-error
|
|
42
44
|
return react_1.default.createElement(icon_1.Icon, { name: "not-exists", size: 16 });
|
|
43
45
|
}
|
package/icon/theme.d.ts
CHANGED
package/icons-config.js
CHANGED
|
@@ -120,6 +120,11 @@ module.exports = {
|
|
|
120
120
|
height: 24,
|
|
121
121
|
data: `<path fill="currentColor" d="M22.875 10.833c.623 0 1.125.544 1.125 1.125 0 .666-.502 1.125-1.125 1.125H1.083c-.58 0-1.083-.46-1.083-1.125 0-.581.503-1.125 1.083-1.125h21.792Z"/>`,
|
|
122
122
|
},
|
|
123
|
+
plus: {
|
|
124
|
+
width: 448,
|
|
125
|
+
height: 512,
|
|
126
|
+
data: `<path fill="currentColor" d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z"/>`,
|
|
127
|
+
},
|
|
123
128
|
"triangle-exclamation": {
|
|
124
129
|
width: 512,
|
|
125
130
|
height: 512,
|
|
@@ -170,4 +175,9 @@ module.exports = {
|
|
|
170
175
|
height: 24,
|
|
171
176
|
data: `<path d="M12.5 22.5C8.90625 22.5 5.625 20.625 3.82812 17.5C2.03125 14.4141 2.03125 10.625 3.82812 7.5C5.625 4.41406 8.90625 2.5 12.5 2.5C16.0547 2.5 19.3359 4.41406 21.1328 7.5C22.9297 10.625 22.9297 14.4141 21.1328 17.5C19.3359 20.625 16.0547 22.5 12.5 22.5ZM10.9375 15.625C10.3906 15.625 10 16.0547 10 16.5625C10 17.1094 10.3906 17.5 10.9375 17.5H14.0625C14.5703 17.5 15 17.1094 15 16.5625C15 16.0547 14.5703 15.625 14.0625 15.625H13.75V12.1875C13.75 11.6797 13.3203 11.25 12.8125 11.25H10.9375C10.3906 11.25 10 11.6797 10 12.1875C10 12.7344 10.3906 13.125 10.9375 13.125H11.875V15.625H10.9375ZM12.5 7.5C11.7969 7.5 11.25 8.08594 11.25 8.75C11.25 9.45312 11.7969 10 12.5 10C13.1641 10 13.75 9.45312 13.75 8.75C13.75 8.08594 13.1641 7.5 12.5 7.5Z" fill="currentColor"/>`,
|
|
172
177
|
},
|
|
178
|
+
trash: {
|
|
179
|
+
width: 448,
|
|
180
|
+
height: 512,
|
|
181
|
+
data: `<path d="M424 80C437.3 80 448 90.75 448 104C448 117.3 437.3 128 424 128H412.4L388.4 452.7C385.9 486.1 358.1 512 324.6 512H123.4C89.92 512 62.09 486.1 59.61 452.7L35.56 128H24C10.75 128 0 117.3 0 104C0 90.75 10.75 80 24 80H93.82L130.5 24.94C140.9 9.357 158.4 0 177.1 0H270.9C289.6 0 307.1 9.358 317.5 24.94L354.2 80H424zM177.1 48C174.5 48 171.1 49.34 170.5 51.56L151.5 80H296.5L277.5 51.56C276 49.34 273.5 48 270.9 48H177.1zM364.3 128H83.69L107.5 449.2C108.1 457.5 115.1 464 123.4 464H324.6C332.9 464 339.9 457.5 340.5 449.2L364.3 128z" fill="currentColor"/>`,
|
|
182
|
+
},
|
|
173
183
|
};
|
package/icons.d.ts
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
declare module "@uxf/ui/icon/theme" {
|
|
2
|
+
interface IconsSet {
|
|
3
|
+
"angle-left": true;
|
|
4
|
+
"angle-right": true;
|
|
5
|
+
"arrow-left": true;
|
|
6
|
+
"arrow-right": true;
|
|
7
|
+
bars: true;
|
|
8
|
+
calendar: true;
|
|
9
|
+
camera: true;
|
|
10
|
+
caretDown: true;
|
|
11
|
+
check: true;
|
|
12
|
+
chevronDown: true;
|
|
13
|
+
chevronLeft: true;
|
|
14
|
+
chevronRight: true;
|
|
15
|
+
chevronUp: true;
|
|
16
|
+
chevronsLeft: true;
|
|
17
|
+
chevronsRight: true;
|
|
18
|
+
clock: true;
|
|
19
|
+
cloud: true;
|
|
20
|
+
copy: true;
|
|
21
|
+
"ellipsis-vertical": true;
|
|
22
|
+
eye: true;
|
|
23
|
+
"eye-slash": true;
|
|
24
|
+
file: true;
|
|
25
|
+
imageFile: true;
|
|
26
|
+
minus: true;
|
|
27
|
+
plus: true;
|
|
28
|
+
"solid-badge-check": true;
|
|
29
|
+
"solid-circle-info": true;
|
|
30
|
+
"solid-octagon-xmark": true;
|
|
31
|
+
"solid-triangle-exclamation": true;
|
|
32
|
+
trash: true;
|
|
33
|
+
"triangle-exclamation": true;
|
|
34
|
+
"triangle-exclamation-solid": true;
|
|
35
|
+
user: true;
|
|
36
|
+
videoFile: true;
|
|
37
|
+
xmark: true;
|
|
38
|
+
xmarkLarge: true;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { IconsSet } from "@uxf/ui/icon";
|
|
2
1
|
import React from "react";
|
|
2
|
+
import { IconName } from "../icon/types";
|
|
3
3
|
interface Props {
|
|
4
|
-
iconName?:
|
|
4
|
+
iconName?: IconName;
|
|
5
5
|
isOpen: boolean;
|
|
6
6
|
}
|
|
7
7
|
export declare function InputArrowIcon(props: Props): React.JSX.Element;
|
|
@@ -18,11 +18,11 @@ function Default() {
|
|
|
18
18
|
react_1.default.createElement(button_1.Button, { color: "warning" }, "Button")), icon: react_1.default.createElement(icon_1.Icon, { color: "warning", name: "triangle-exclamation" }), title: "Warning dialog" }, "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam erat volutpat. Praesent dapibus. Vestibulum fermentum tortor id mi."),
|
|
19
19
|
react_1.default.createElement(modal_dialog_1.ModalDialog, { footer: react_1.default.createElement(react_1.default.Fragment, null,
|
|
20
20
|
react_1.default.createElement(button_1.Button, { variant: "text" }, "Cancel"),
|
|
21
|
-
react_1.default.createElement(button_1.Button, { color: "positive" }, "Save")), icon: react_1.default.createElement(icon_1.Icon, { color: "positive", name: "
|
|
21
|
+
react_1.default.createElement(button_1.Button, { color: "positive" }, "Save")), icon: react_1.default.createElement(icon_1.Icon, { color: "positive", name: "camera" }), title: "Positive dialog asda ksdjahs kjdhakj shdk jahksdjh kajsdh k" }, "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam erat volutpat. Praesent dapibus. Vestibulum fermentum tortor id mi."),
|
|
22
22
|
react_1.default.createElement(modal_dialog_1.ModalDialog, { footer: react_1.default.createElement(react_1.default.Fragment, null,
|
|
23
23
|
react_1.default.createElement(button_1.Button, { variant: "text" }, "Cancel"),
|
|
24
24
|
react_1.default.createElement(button_1.Button, { color: "negative" }, "Save")), icon: react_1.default.createElement(icon_1.Icon, { color: "negative", name: "xmark", size: 48 }), title: "Negative dialog" }, "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam erat volutpat. Praesent dapibus. Vestibulum fermentum tortor id mi."),
|
|
25
25
|
react_1.default.createElement(modal_dialog_1.ModalDialog, { footer: react_1.default.createElement(react_1.default.Fragment, null,
|
|
26
26
|
react_1.default.createElement(button_1.Button, { variant: "text" }, "Cancel"),
|
|
27
|
-
react_1.default.createElement(button_1.Button, { color: "info" }, "Save")), icon: react_1.default.createElement(icon_1.Icon, { color: "info", name: "circle-info" }), title: "Info dialog", width: "lg" }, "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam erat volutpat. Praesent dapibus. Vestibulum fermentum tortor id mi.")));
|
|
27
|
+
react_1.default.createElement(button_1.Button, { color: "info" }, "Save")), icon: react_1.default.createElement(icon_1.Icon, { color: "info", name: "solid-circle-info" }), title: "Info dialog", width: "lg" }, "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam erat volutpat. Praesent dapibus. Vestibulum fermentum tortor id mi.")));
|
|
28
28
|
}
|
|
@@ -2,7 +2,7 @@ import { Placement, Strategy } from "@floating-ui/react";
|
|
|
2
2
|
import { InputGroupSizes, InputGroupVariants } from "@uxf/ui/input/theme";
|
|
3
3
|
import { CSSProperties, ReactNode } from "react";
|
|
4
4
|
import { ChipColor } from "../chip";
|
|
5
|
-
import {
|
|
5
|
+
import { IconName } from "../icon/types";
|
|
6
6
|
import { FormControlProps } from "../types";
|
|
7
7
|
export type MultiComboboxValueId = number | string;
|
|
8
8
|
export type MultiComboboxValue<ValueId = MultiComboboxValueId> = {
|
|
@@ -24,7 +24,7 @@ export interface MultiComboboxProps<ValueId = MultiComboboxValueId, Option = Mul
|
|
|
24
24
|
form?: string;
|
|
25
25
|
helperText?: ReactNode;
|
|
26
26
|
hiddenLabel?: boolean;
|
|
27
|
-
iconName?:
|
|
27
|
+
iconName?: IconName;
|
|
28
28
|
id?: string;
|
|
29
29
|
inputArrow?: (open: boolean) => ReactNode;
|
|
30
30
|
keyExtractor?: (option: Option) => string | number;
|
package/multi-select/types.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { SelectableId } from "@uxf/core/types";
|
|
|
3
3
|
import { InputGroupSizes, InputGroupVariants } from "@uxf/ui/input/theme";
|
|
4
4
|
import { CSSProperties, ReactNode } from "react";
|
|
5
5
|
import { ChipColor } from "../chip";
|
|
6
|
-
import {
|
|
6
|
+
import { IconName } from "../icon/types";
|
|
7
7
|
import { FormControlProps } from "../types";
|
|
8
8
|
/** @deprecated use import { SelectableId } from "@uxf/core/types" */
|
|
9
9
|
export type MultiSelectValueId = SelectableId;
|
|
@@ -25,7 +25,7 @@ export interface MultiSelectProps<ValueId extends SelectableId = SelectableId, O
|
|
|
25
25
|
form?: string;
|
|
26
26
|
helperText?: ReactNode;
|
|
27
27
|
hiddenLabel?: boolean;
|
|
28
|
-
iconName?:
|
|
28
|
+
iconName?: IconName;
|
|
29
29
|
id?: string;
|
|
30
30
|
inputArrow?: (open: boolean) => ReactNode;
|
|
31
31
|
keyExtractor?: (option: Option) => string | number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uxf/ui",
|
|
3
|
-
"version": "11.80.
|
|
3
|
+
"version": "11.80.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@floating-ui/react": "0.26.28",
|
|
25
25
|
"@headlessui/react": "1.7.19",
|
|
26
|
-
"@uxf/core": "11.80.
|
|
27
|
-
"@uxf/core-react": "11.80.
|
|
28
|
-
"@uxf/datepicker": "11.
|
|
29
|
-
"@uxf/styles": "11.80.
|
|
26
|
+
"@uxf/core": "11.80.4",
|
|
27
|
+
"@uxf/core-react": "11.80.4",
|
|
28
|
+
"@uxf/datepicker": "11.80.4",
|
|
29
|
+
"@uxf/styles": "11.80.4",
|
|
30
30
|
"color2k": "2.0.3",
|
|
31
31
|
"dayjs": "1.11.13",
|
|
32
32
|
"jump.js": "1.0.2",
|
package/select/select.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Placement, Strategy } from "@floating-ui/react";
|
|
2
|
-
import {
|
|
2
|
+
import { IconName } from "@uxf/ui/icon/types";
|
|
3
3
|
import { InputGroupSize, InputGroupVariant } from "@uxf/ui/input";
|
|
4
4
|
import { Clearable, FormControlProps } from "@uxf/ui/types";
|
|
5
5
|
import React, { CSSProperties, ReactNode, Ref } from "react";
|
|
@@ -20,7 +20,7 @@ export interface SelectProps<Value = SelectValue, Option = SelectOption<Value>>
|
|
|
20
20
|
form?: string;
|
|
21
21
|
helperText?: ReactNode;
|
|
22
22
|
hiddenLabel?: boolean;
|
|
23
|
-
iconName?:
|
|
23
|
+
iconName?: IconName;
|
|
24
24
|
id?: string;
|
|
25
25
|
inputArrow?: (open: boolean) => ReactNode;
|
|
26
26
|
keyExtractor?: (option: Option) => string | number;
|