ikoncomponents 1.6.4 → 1.6.6
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 +36 -36
- package/dist/ikoncomponents/assistant-ui/Assistant.d.ts +16 -2
- package/dist/ikoncomponents/assistant-ui/Assistant.js +297 -11
- package/dist/ikoncomponents/assistant-ui/agent-dropdown.d.ts +24 -0
- package/dist/ikoncomponents/assistant-ui/agent-dropdown.js +16 -0
- package/dist/ikoncomponents/assistant-ui/agentTextChatTransport.d.ts +2 -0
- package/dist/ikoncomponents/assistant-ui/agentTextChatTransport.js +12 -2
- package/dist/ikoncomponents/assistant-ui/thread.d.ts +5 -0
- package/dist/ikoncomponents/assistant-ui/thread.js +12 -6
- package/dist/ikoncomponents/main-layout/RefreshContext.js +1 -0
- package/dist/ikoncomponents/main-layout/footer.js +1 -0
- package/dist/ikoncomponents/main-layout/header.js +1 -0
- package/dist/ikoncomponents/main-layout/index.js +1 -0
- package/dist/ikoncomponents/reload-component/index.d.ts +6 -0
- package/dist/ikoncomponents/reload-component/index.js +8 -0
- package/dist/ikoncomponents/table/DataTable/index.d.ts +2 -0
- package/dist/ikoncomponents/table/DataTable/index.js +9 -0
- package/dist/ikoncomponents/table/DataTablePageSize/index.d.ts +1 -0
- package/dist/ikoncomponents/table/DataTablePageSize/index.js +16 -0
- package/dist/ikoncomponents/table/DataTablePagination/index.d.ts +6 -0
- package/dist/ikoncomponents/table/DataTablePagination/index.js +14 -0
- package/dist/ikoncomponents/table/DataTableSearch/index.d.ts +1 -0
- package/dist/ikoncomponents/table/DataTableSearch/index.js +27 -0
- package/dist/ikoncomponents/table/component/DataTable.d.ts +14 -0
- package/dist/ikoncomponents/table/component/DataTable.js +10 -0
- package/dist/ikoncomponents/table/component/DataTablePageSize.d.ts +1 -0
- package/dist/ikoncomponents/table/component/DataTablePageSize.js +16 -0
- package/dist/ikoncomponents/table/component/DataTablePagination.d.ts +6 -0
- package/dist/ikoncomponents/table/component/DataTablePagination.js +14 -0
- package/dist/ikoncomponents/table/component/DataTableSearch.d.ts +1 -0
- package/dist/ikoncomponents/table/component/DataTableSearch.js +27 -0
- package/dist/ikoncomponents/table/index.d.ts +2 -0
- package/dist/ikoncomponents/table/index.js +12 -0
- package/dist/ikoncomponents/table/type.d.ts +24 -0
- package/dist/ikoncomponents/table/type.js +1 -0
- package/dist/index.d.ts +4 -2
- package/dist/index.js +3 -1
- package/dist/styles.css +162 -1
- package/dist/utils/api/loginService/index.js +2 -1
- package/package.json +23 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ikoncomponents",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.6",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"css": "dist/styles.css",
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
"prepublishOnly": "npm run build"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@assistant-ui/react": "^0.12.
|
|
19
|
-
"@assistant-ui/react-ai-sdk": "1.
|
|
20
|
-
"@assistant-ui/react-markdown": "0.
|
|
18
|
+
"@assistant-ui/react": "^0.12.1",
|
|
19
|
+
"@assistant-ui/react-ai-sdk": "^1.1.20",
|
|
20
|
+
"@assistant-ui/react-markdown": "^0.11.10",
|
|
21
21
|
"@radix-ui/react-accordion": "^1.2.12",
|
|
22
22
|
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
23
23
|
"@radix-ui/react-aspect-ratio": "^1.1.7",
|
|
@@ -36,13 +36,16 @@
|
|
|
36
36
|
"@radix-ui/react-select": "^2.2.6",
|
|
37
37
|
"@radix-ui/react-separator": "^1.1.7",
|
|
38
38
|
"@radix-ui/react-slider": "^1.3.6",
|
|
39
|
-
"@radix-ui/react-slot": "^1.2.
|
|
39
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
40
40
|
"@radix-ui/react-switch": "^1.2.6",
|
|
41
41
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
42
42
|
"@radix-ui/react-toggle": "^1.1.10",
|
|
43
43
|
"@radix-ui/react-toggle-group": "^1.1.11",
|
|
44
44
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
45
45
|
"@tanstack/react-table": "^8.21.3",
|
|
46
|
+
"ai": "^6.0.70",
|
|
47
|
+
"assistant-cloud": "^0.1.16",
|
|
48
|
+
"assistant-stream": "^0.3.1",
|
|
46
49
|
"axios": "^1.13.1",
|
|
47
50
|
"class-variance-authority": "^0.7.1",
|
|
48
51
|
"clsx": "^2.1.1",
|
|
@@ -52,27 +55,28 @@
|
|
|
52
55
|
"crypto-js": "^4.2.0",
|
|
53
56
|
"date-fns": "^4.1.0",
|
|
54
57
|
"echarts": "^6.0.0",
|
|
55
|
-
"eslint": "^9",
|
|
56
58
|
"framer-motion": "^12.23.22",
|
|
57
59
|
"input-otp": "^1.4.2",
|
|
58
60
|
"jwt-decode": "^4.0.0",
|
|
59
61
|
"lucide-react": "^0.552.0",
|
|
60
62
|
"motion": "^12.23.22",
|
|
61
|
-
"next": "16.
|
|
63
|
+
"next": "^16.1.6",
|
|
62
64
|
"next-themes": "^0.4.6",
|
|
63
|
-
"react": "^18.2.0",
|
|
65
|
+
"react": "^18.2.0 || ^19.0.0",
|
|
64
66
|
"react-big-calendar": "^1.19.4",
|
|
65
67
|
"react-cropper": "^2.3.3",
|
|
66
68
|
"react-day-picker": "^9.9.0",
|
|
67
|
-
"react-dom": "^18.2.0",
|
|
69
|
+
"react-dom": "^18.2.0 || ^19.0.0",
|
|
68
70
|
"react-hook-form": "^7.64.0",
|
|
69
71
|
"remark-gfm": "^4.0.1",
|
|
70
72
|
"shadcn": "^3.5.0",
|
|
71
73
|
"sonner": "^2.0.7",
|
|
72
74
|
"tailwind-merge": "^3.3.1",
|
|
73
75
|
"tailwindcss-animate": "^1.0.7",
|
|
76
|
+
"tap": "^21.5.0",
|
|
74
77
|
"uuid": "^13.0.0",
|
|
75
78
|
"vaul": "^1.1.2",
|
|
79
|
+
"zod": "^4.3.6",
|
|
76
80
|
"zustand": "^5.0.10",
|
|
77
81
|
"zxcvbn": "^4.4.2"
|
|
78
82
|
},
|
|
@@ -87,11 +91,13 @@
|
|
|
87
91
|
"autoprefixer": "^10.4.21",
|
|
88
92
|
"eslint": "^9",
|
|
89
93
|
"eslint-config-next": "16.0.0",
|
|
90
|
-
"next": "^
|
|
94
|
+
"next": "^16.1.6",
|
|
91
95
|
"postcss": "^8.5.6",
|
|
92
96
|
"postcss-cli": "^11.0.1",
|
|
93
97
|
"postcss-import": "^16.1.1",
|
|
94
98
|
"postcss-preset-env": "^10.4.0",
|
|
99
|
+
"react": "^19.2.4",
|
|
100
|
+
"react-dom": "^19.2.4",
|
|
95
101
|
"rimraf": "^6.0.1",
|
|
96
102
|
"tailwindcss": "^4",
|
|
97
103
|
"tw-animate-css": "^1.4.0",
|
|
@@ -99,10 +105,13 @@
|
|
|
99
105
|
},
|
|
100
106
|
"peerDependencies": {
|
|
101
107
|
"clsx": "^2.1.1",
|
|
102
|
-
"
|
|
108
|
+
"framer-motion": "^12.23.22",
|
|
109
|
+
"next": "^16.1.6",
|
|
103
110
|
"next-themes": "^0.4.6",
|
|
104
|
-
"react": "^18.2.0",
|
|
105
|
-
"react-dom": "^18.2.0",
|
|
106
|
-
"
|
|
111
|
+
"react": "^18.2.0 || ^19.0.0",
|
|
112
|
+
"react-dom": "^18.2.0 || ^19.0.0",
|
|
113
|
+
"remark-gfm": "^4.0.1",
|
|
114
|
+
"tailwind-merge": "^3.3.1",
|
|
115
|
+
"zustand": "^5.0.10"
|
|
107
116
|
}
|
|
108
117
|
}
|