@seeqdev/qomponents 0.0.190 → 0.0.191
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 +2 -8
- package/dist/index.esm.js +45 -21
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +44 -20
- package/dist/index.js.map +1 -1
- package/dist/src/InputGroup/InputGroup.d.ts +1 -1
- package/dist/src/Select/index.d.ts +1 -1
- package/dist/src/TextArea/TextArea.d.ts +1 -1
- package/dist/src/TextField/TextField.d.ts +1 -1
- package/dist/src/index.d.ts +2 -4
- package/package.json +14 -11
- /package/dist/{FontCustom.woff → iconFont/FontCustom.woff} +0 -0
- /package/dist/{FontCustom.woff2 → iconFont/FontCustom.woff2} +0 -0
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { default } from './Select';
|
|
2
|
-
export { components as
|
|
2
|
+
export { components as SelectComponents, type GroupBase, type OptionProps } from 'react-select';
|
|
@@ -4,4 +4,4 @@ import '../styles.css';
|
|
|
4
4
|
/**
|
|
5
5
|
* Textfield.
|
|
6
6
|
*/
|
|
7
|
-
export declare const TextField: React.
|
|
7
|
+
export declare const TextField: React.ForwardRefExoticComponent<Omit<TextFieldProps & InputLengthStyleProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -5,8 +5,7 @@ import Checkbox from './Checkbox';
|
|
|
5
5
|
import TextArea from './TextArea';
|
|
6
6
|
import { QTip, Tooltip } from './Tooltip';
|
|
7
7
|
import Icon from './Icon';
|
|
8
|
-
import Select from './Select';
|
|
9
|
-
import { SelectCompoents } from './Select';
|
|
8
|
+
import Select, { type GroupBase, type OptionProps, SelectComponents } from './Select';
|
|
10
9
|
import Modal from './Modal';
|
|
11
10
|
import Tabs from './Tabs';
|
|
12
11
|
import Accordion from './Accordion';
|
|
@@ -28,8 +27,7 @@ export { TextArea };
|
|
|
28
27
|
export { Tooltip };
|
|
29
28
|
export { Checkbox };
|
|
30
29
|
export { Icon };
|
|
31
|
-
export { Select };
|
|
32
|
-
export { SelectCompoents };
|
|
30
|
+
export { Select, SelectComponents, type GroupBase, type OptionProps };
|
|
33
31
|
export { QTip };
|
|
34
32
|
export { Modal };
|
|
35
33
|
export { Accordion };
|
package/package.json
CHANGED
|
@@ -1,26 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seeqdev/qomponents",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.191",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
|
+
"source": "src/index.ts",
|
|
5
6
|
"module": "dist/index.esm.js",
|
|
6
7
|
"types": "dist/src/index.d.ts",
|
|
7
|
-
"
|
|
8
|
+
"style": "src/styles.css",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.esm.js",
|
|
12
|
+
"require": "./dist/index.js",
|
|
13
|
+
"types": "./dist/src/index.d.ts"
|
|
14
|
+
},
|
|
15
|
+
"./styles.css": "./dist/styles.css"
|
|
16
|
+
},
|
|
8
17
|
"files": [
|
|
9
18
|
"dist"
|
|
10
19
|
],
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "TOOD"
|
|
14
|
-
},
|
|
15
20
|
"publishConfig": {
|
|
16
21
|
"access": "public"
|
|
17
22
|
},
|
|
18
|
-
"description": "
|
|
23
|
+
"description": "Seeq's UI component library built for React",
|
|
19
24
|
"author": "Seeq",
|
|
20
25
|
"license": "MIT",
|
|
21
|
-
"bugs": {
|
|
22
|
-
"url": "TODO"
|
|
23
|
-
},
|
|
24
26
|
"homepage": "https://seeq12.github.io/qomponents-documentation/",
|
|
25
27
|
"peerDependencies": {
|
|
26
28
|
"react": ">=19.0.0",
|
|
@@ -66,7 +68,9 @@
|
|
|
66
68
|
"typescript": "5.9.3"
|
|
67
69
|
},
|
|
68
70
|
"dependencies": {
|
|
71
|
+
"@babel/runtime": "^7.28.4",
|
|
69
72
|
"@floating-ui/dom": "1.6.3",
|
|
73
|
+
"@mantine/hooks": "^8.3.12",
|
|
70
74
|
"@radix-ui/react-accordion": "1.2.12",
|
|
71
75
|
"@radix-ui/react-dialog": "1.1.15",
|
|
72
76
|
"@radix-ui/react-dropdown-menu": "2.1.16",
|
|
@@ -85,7 +89,6 @@
|
|
|
85
89
|
},
|
|
86
90
|
"scripts": {
|
|
87
91
|
"build": "rollup -c --bundleConfigAsCjs",
|
|
88
|
-
"build:watch": "rollup -c --bundleConfigAsCjs --watch",
|
|
89
92
|
"test": "cross-env TZ=UTC LANG=en-US jest",
|
|
90
93
|
"test:watch": "cross-env TZ=UTC LANG=en-US jest --watch",
|
|
91
94
|
"dev": "ladle serve",
|
|
File without changes
|
|
File without changes
|