@instincthub/react-ui 0.1.30 → 0.1.32

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.
Files changed (35) hide show
  1. package/dist/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/endOfMonth.js +2 -0
  2. package/dist/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/endOfMonth.js.map +1 -0
  3. package/dist/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/endOfWeek.js +2 -0
  4. package/dist/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/endOfWeek.js.map +1 -0
  5. package/dist/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/subDays.js +2 -0
  6. package/dist/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/subDays.js.map +1 -0
  7. package/dist/node_modules/.pnpm/lucide-react@0.525.0_react@19.2.0/node_modules/lucide-react/dist/esm/icons/chevron-down.js +2 -2
  8. package/dist/node_modules/.pnpm/lucide-react@0.525.0_react@19.2.0/node_modules/lucide-react/dist/esm/icons/chevron-down.js.map +1 -1
  9. package/dist/node_modules/.pnpm/lucide-react@0.525.0_react@19.2.0/node_modules/lucide-react/dist/esm/icons/loader-circle.js +1 -1
  10. package/dist/node_modules/.pnpm/lucide-react@0.525.0_react@19.2.0/node_modules/lucide-react/dist/esm/icons/loader-circle.js.map +1 -1
  11. package/dist/node_modules/.pnpm/lucide-react@0.525.0_react@19.2.0/node_modules/lucide-react/dist/esm/icons/search.js +2 -2
  12. package/dist/node_modules/.pnpm/lucide-react@0.525.0_react@19.2.0/node_modules/lucide-react/dist/esm/icons/search.js.map +1 -1
  13. package/dist/node_modules/.pnpm/lucide-react@0.525.0_react@19.2.0/node_modules/lucide-react/dist/esm/icons/x.js +1 -1
  14. package/dist/node_modules/.pnpm/lucide-react@0.525.0_react@19.2.0/node_modules/lucide-react/dist/esm/icons/x.js.map +1 -1
  15. package/dist/src/assets/css/forms/date-range-picker.css +184 -0
  16. package/dist/src/assets/css/forms/datetime-picker.css +110 -111
  17. package/dist/src/assets/css/forms/forms-index.css +2 -0
  18. package/dist/src/assets/css/forms/input-fields.css +1 -0
  19. package/dist/src/assets/css/forms/search-objects-from-db.css +2 -2
  20. package/dist/src/assets/css/forms/searchable-dropdown.css +187 -0
  21. package/dist/src/assets/css/ui/tables.css +10 -6
  22. package/dist/src/components/forms/DateRangePicker.js +2 -0
  23. package/dist/src/components/forms/DateRangePicker.js.map +1 -0
  24. package/dist/src/components/forms/DateTimePicker.js +1 -1
  25. package/dist/src/components/forms/SearchableDropdown.js +2 -0
  26. package/dist/src/components/forms/SearchableDropdown.js.map +1 -0
  27. package/dist/src/components/ui/ComponentLists.js +1 -1
  28. package/dist/src/index.js +1 -1
  29. package/dist/src/types/components/forms/DateRangePicker.d.ts +19 -0
  30. package/dist/src/types/components/forms/SearchableDropdown.d.ts +56 -0
  31. package/dist/src/types/components/forms/index.d.ts +2 -0
  32. package/dist/src/types/index.d.ts +2 -0
  33. package/dist/src/types/types/index.d.ts +50 -0
  34. package/dist/tsconfig.build.tsbuildinfo +1 -1
  35. package/package.json +204 -203
package/package.json CHANGED
@@ -1,203 +1,204 @@
1
- {
2
- "name": "@instincthub/react-ui",
3
- "version": "0.1.30",
4
- "description": "InstinctHub React UI components and assets in TypeScript",
5
- "main": "dist/src/index.js",
6
- "module": "dist/src/index.js",
7
- "types": "dist/src/types/index.d.ts",
8
- "typesVersions": {
9
- "*": {
10
- "*": [
11
- "dist/src/types/index.d.ts"
12
- ],
13
- "ssr": [
14
- "dist/src/types/ssr.d.ts"
15
- ],
16
- "types": [
17
- "dist/src/types/types/index.d.ts"
18
- ],
19
- "types/*": [
20
- "dist/src/types/types/*"
21
- ],
22
- "components/": [
23
- "dist/src/types/components/index.ts"
24
- ],
25
- "components/*": [
26
- "dist/src/types/components/*"
27
- ],
28
- "components/auth": [
29
- "dist/src/types/components/auth/index.ts"
30
- ],
31
- "components/auth/*": [
32
- "dist/src/types/components/auth/*"
33
- ],
34
- "lib": [
35
- "dist/src/types/components/lib/index.d.ts"
36
- ],
37
- "lib/*": [
38
- "dist/src/types/components/lib/*"
39
- ],
40
- "redux": [
41
- "dist/src/types/components/lib/redux/index.d.ts"
42
- ],
43
- "cursors": [
44
- "dist/src/types/components/cursors/index.d.ts"
45
- ]
46
- }
47
- },
48
- "files": [
49
- "dist"
50
- ],
51
- "exports": {
52
- ".": {
53
- "types": "./dist/src/types/index.d.ts",
54
- "import": "./dist/src/index.js",
55
- "require": "./dist/src/index.js"
56
- },
57
- "./ssr": {
58
- "types": "./dist/src/types/ssr.d.ts",
59
- "import": "./dist/src/ssr.js",
60
- "require": "./dist/src/ssr.js"
61
- },
62
- "./types": {
63
- "types": "./dist/src/types/types/index.d.ts",
64
- "import": "./dist/src/types/types/index.d.ts",
65
- "require": "./dist/src/types/types/index.d.ts"
66
- },
67
- "./types/*": {
68
- "types": "./dist/src/types/types/*",
69
- "import": "./dist/src/types/types/*",
70
- "require": "./dist/src/types/types/*"
71
- },
72
- "./lib": {
73
- "types": "./dist/src/types/components/lib/index.d.ts",
74
- "import": "./dist/src/components/lib/index.js",
75
- "require": "./dist/src/components/lib/index.js"
76
- },
77
- "./lib/*": {
78
- "types": "./dist/src/types/components/lib/*",
79
- "import": "./dist/src/components/lib/*",
80
- "require": "./dist/src/components/lib/*"
81
- },
82
- "./redux": {
83
- "types": "./dist/src/types/components/lib/redux/index.d.ts",
84
- "import": "./dist/src/components/lib/redux/index.js",
85
- "require": "./dist/src/components/lib/redux/index.js"
86
- },
87
- "./cursors": {
88
- "types": "./dist/src/types/components/cursors/index.d.ts",
89
- "import": "./dist/src/components/cursors/index.js",
90
- "require": "./dist/src/components/cursors/index.js"
91
- },
92
- "./assets/*": {
93
- "import": "./dist/src/assets/*",
94
- "require": "./dist/src/assets/*"
95
- }
96
- },
97
- "scripts": {
98
- "dev": "cd src/__examples__ && next dev",
99
- "build": "cd src/__examples__ && next build",
100
- "start": "cd src/__examples__ && next start",
101
- "rollup": "rollup -c",
102
- "link-ui": "npm unlink @instincthub/react-ui && rm -rf dist && rollup -c && npm link",
103
- "unlink-ui-linux": "npm unlink @instincthub/react-ui",
104
- "link-ui-win": "npm unlink @instincthub/react-ui && rmdir /s /q dist && rollup -c && npm link",
105
- "test": "echo \"Error: no test specified\" && exit 1",
106
- "yalc-link-ui": "rm -rf dist && rollup -c && yalc publish",
107
- "yalc-link-ui-win": "rmdir /s /q dist && rollup -c && yalc publish",
108
- "yalc-update-ui": "rmdir /s /q dist && rollup -c && yalc push"
109
- },
110
- "dependencies": {
111
- "@tiptap/extension-character-count": "^2.11.5",
112
- "@tiptap/extension-code-block": "^2.11.5",
113
- "@tiptap/extension-highlight": "^2.11.5",
114
- "@tiptap/extension-image": "^2.11.5",
115
- "@tiptap/extension-link": "^2.11.5",
116
- "@tiptap/extension-placeholder": "^2.11.5",
117
- "@tiptap/extension-table": "^2.11.5",
118
- "@tiptap/extension-table-cell": "^2.11.5",
119
- "@tiptap/extension-table-header": "^2.11.5",
120
- "@tiptap/extension-table-row": "^2.11.5",
121
- "@tiptap/extension-task-item": "^2.11.5",
122
- "@tiptap/extension-task-list": "^2.11.5",
123
- "@tiptap/react": "^2.11.7",
124
- "@tiptap/starter-kit": "^2.11.5",
125
- "date-fns": "^4.1.0",
126
- "dompurify": "^3.2.4",
127
- "html2canvas": "^1.4.1",
128
- "lodash": "^4.17.21",
129
- "lucide-react": "^0.525.0",
130
- "marked": "^15.0.7",
131
- "next-auth": "^5.0.0-beta.29",
132
- "react-dropzone": "^14.3.8",
133
- "xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
134
- },
135
- "peerDependencies": {
136
- "@aws-sdk/client-s3": "^3.777.0",
137
- "@aws-sdk/lib-storage": "^3.777.0",
138
- "@emotion/react": "^11.14.0",
139
- "@emotion/styled": "^11.14.0",
140
- "@mui/icons-material": "^7.0.0",
141
- "@mui/material": "^7.0.0",
142
- "@reduxjs/toolkit": "^2.6.1",
143
- "@types/redux-logger": "^3.0.13",
144
- "jspdf": "^3.0.1",
145
- "next": "^15.2.1",
146
- "primereact": "^10.9.3",
147
- "react": "^19.0.0",
148
- "react-dom": "^19.0.0",
149
- "react-redux": "^9.2.0",
150
- "react-syntax-highlighter": "^15.6.1",
151
- "redux-logger": "^3.0.6",
152
- "styled-components": "^6.1.16"
153
- },
154
- "devDependencies": {
155
- "@babel/core": "^7.18.5",
156
- "@babel/preset-env": "^7.26.9",
157
- "@babel/preset-react": "^7.26.3",
158
- "@babel/preset-typescript": "^7.26.0",
159
- "@emotion/is-prop-valid": "^1.3.1",
160
- "@rollup/plugin-babel": "^5.3.1",
161
- "@rollup/plugin-commonjs": "^22.0.0",
162
- "@rollup/plugin-json": "^6.1.0",
163
- "@rollup/plugin-node-resolve": "^16.0.0",
164
- "@rollup/plugin-typescript": "^8.3.3",
165
- "@types/lodash": "^4.17.16",
166
- "@types/react": "^18.3.18",
167
- "@types/react-dom": "^18.3.5",
168
- "@types/react-syntax-highlighter": "^15.5.13",
169
- "@types/rollup-plugin-node-resolve": "^4.1.0",
170
- "@types/styled-components": "^5.1.25",
171
- "postcss-import": "^16.1.0",
172
- "recharts": "^2.15.3",
173
- "rollup": "^2.75.6",
174
- "rollup-plugin-copy": "^3.5.0",
175
- "rollup-plugin-peer-deps-external": "^2.2.4",
176
- "rollup-plugin-postcss": "^4.0.2",
177
- "rollup-plugin-terser": "^7.0.2",
178
- "tslib": "^2.4.0",
179
- "typescript": "^4.7.4"
180
- },
181
- "keywords": [
182
- "css",
183
- "instincthub",
184
- "styles",
185
- "frontend",
186
- "react",
187
- "@instincthub/react-ui",
188
- "instincthub-react-ui",
189
- "instincthub-css",
190
- "instincthub-components",
191
- "instincthub-react-ui-components"
192
- ],
193
- "author": "Noah Olatoye",
194
- "license": "MIT",
195
- "repository": {
196
- "type": "git",
197
- "url": "git+https://github.com/instincthub/instincthub-react-ui.git"
198
- },
199
- "bugs": {
200
- "url": "https://github.com/instincthub/instincthub-react-ui/issues"
201
- },
202
- "homepage": "https://github.com/instincthub/instincthub-react-ui#readme"
203
- }
1
+ {
2
+ "name": "@instincthub/react-ui",
3
+ "version": "0.1.32",
4
+ "description": "InstinctHub React UI components and assets in TypeScript",
5
+ "main": "dist/src/index.js",
6
+ "module": "dist/src/index.js",
7
+ "types": "dist/src/types/index.d.ts",
8
+ "typesVersions": {
9
+ "*": {
10
+ "*": [
11
+ "dist/src/types/index.d.ts"
12
+ ],
13
+ "ssr": [
14
+ "dist/src/types/ssr.d.ts"
15
+ ],
16
+ "types": [
17
+ "dist/src/types/types/index.d.ts"
18
+ ],
19
+ "types/*": [
20
+ "dist/src/types/types/*"
21
+ ],
22
+ "components/": [
23
+ "dist/src/types/components/index.ts"
24
+ ],
25
+ "components/*": [
26
+ "dist/src/types/components/*"
27
+ ],
28
+ "components/auth": [
29
+ "dist/src/types/components/auth/index.ts"
30
+ ],
31
+ "components/auth/*": [
32
+ "dist/src/types/components/auth/*"
33
+ ],
34
+ "lib": [
35
+ "dist/src/types/components/lib/index.d.ts"
36
+ ],
37
+ "lib/*": [
38
+ "dist/src/types/components/lib/*"
39
+ ],
40
+ "redux": [
41
+ "dist/src/types/components/lib/redux/index.d.ts"
42
+ ],
43
+ "cursors": [
44
+ "dist/src/types/components/cursors/index.d.ts"
45
+ ]
46
+ }
47
+ },
48
+ "files": [
49
+ "dist"
50
+ ],
51
+ "exports": {
52
+ ".": {
53
+ "types": "./dist/src/types/index.d.ts",
54
+ "import": "./dist/src/index.js",
55
+ "require": "./dist/src/index.js"
56
+ },
57
+ "./ssr": {
58
+ "types": "./dist/src/types/ssr.d.ts",
59
+ "import": "./dist/src/ssr.js",
60
+ "require": "./dist/src/ssr.js"
61
+ },
62
+ "./types": {
63
+ "types": "./dist/src/types/types/index.d.ts",
64
+ "import": "./dist/src/types/types/index.d.ts",
65
+ "require": "./dist/src/types/types/index.d.ts"
66
+ },
67
+ "./types/*": {
68
+ "types": "./dist/src/types/types/*",
69
+ "import": "./dist/src/types/types/*",
70
+ "require": "./dist/src/types/types/*"
71
+ },
72
+ "./lib": {
73
+ "types": "./dist/src/types/components/lib/index.d.ts",
74
+ "import": "./dist/src/components/lib/index.js",
75
+ "require": "./dist/src/components/lib/index.js"
76
+ },
77
+ "./lib/*": {
78
+ "types": "./dist/src/types/components/lib/*",
79
+ "import": "./dist/src/components/lib/*",
80
+ "require": "./dist/src/components/lib/*"
81
+ },
82
+ "./redux": {
83
+ "types": "./dist/src/types/components/lib/redux/index.d.ts",
84
+ "import": "./dist/src/components/lib/redux/index.js",
85
+ "require": "./dist/src/components/lib/redux/index.js"
86
+ },
87
+ "./cursors": {
88
+ "types": "./dist/src/types/components/cursors/index.d.ts",
89
+ "import": "./dist/src/components/cursors/index.js",
90
+ "require": "./dist/src/components/cursors/index.js"
91
+ },
92
+ "./assets/*": {
93
+ "import": "./dist/src/assets/*",
94
+ "require": "./dist/src/assets/*"
95
+ }
96
+ },
97
+ "scripts": {
98
+ "dev": "cd src/__examples__ && next dev",
99
+ "build": "cd src/__examples__ && next build",
100
+ "start": "cd src/__examples__ && next start",
101
+ "rollup": "rollup -c",
102
+ "link-ui": "npm unlink @instincthub/react-ui && rm -rf dist && rollup -c && npm link",
103
+ "unlink-ui-linux": "npm unlink @instincthub/react-ui",
104
+ "link-ui-win": "npm unlink @instincthub/react-ui && rmdir /s /q dist && rollup -c && npm link",
105
+ "test": "echo \"Error: no test specified\" && exit 1",
106
+ "yalc-link-ui": "rm -rf dist && rollup -c && yalc publish",
107
+ "yalc-link-ui-win": "rmdir /s /q dist && rollup -c && yalc publish",
108
+ "yalc-update-ui": "rmdir /s /q dist && rollup -c && yalc push"
109
+ },
110
+ "dependencies": {
111
+ "@tiptap/extension-character-count": "^2.11.5",
112
+ "@tiptap/extension-code-block": "^2.11.5",
113
+ "@tiptap/extension-highlight": "^2.11.5",
114
+ "@tiptap/extension-image": "^2.11.5",
115
+ "@tiptap/extension-link": "^2.11.5",
116
+ "@tiptap/extension-placeholder": "^2.11.5",
117
+ "@tiptap/extension-table": "^2.11.5",
118
+ "@tiptap/extension-table-cell": "^2.11.5",
119
+ "@tiptap/extension-table-header": "^2.11.5",
120
+ "@tiptap/extension-table-row": "^2.11.5",
121
+ "@tiptap/extension-task-item": "^2.11.5",
122
+ "@tiptap/extension-task-list": "^2.11.5",
123
+ "@tiptap/react": "^2.11.7",
124
+ "@tiptap/starter-kit": "^2.11.5",
125
+ "date-fns": "^4.1.0",
126
+ "dompurify": "^3.2.4",
127
+ "html2canvas": "^1.4.1",
128
+ "immer": "^11.1.4",
129
+ "lodash": "^4.17.21",
130
+ "lucide-react": "^0.525.0",
131
+ "marked": "^15.0.7",
132
+ "next-auth": "^5.0.0-beta.29",
133
+ "react-dropzone": "^14.3.8",
134
+ "xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
135
+ },
136
+ "peerDependencies": {
137
+ "@aws-sdk/client-s3": "^3.777.0",
138
+ "@aws-sdk/lib-storage": "^3.777.0",
139
+ "@emotion/react": "^11.14.0",
140
+ "@emotion/styled": "^11.14.0",
141
+ "@mui/icons-material": "^7.0.0",
142
+ "@mui/material": "^7.0.0",
143
+ "@reduxjs/toolkit": "^2.6.1",
144
+ "@types/redux-logger": "^3.0.13",
145
+ "jspdf": "^3.0.1",
146
+ "next": "^15.2.1",
147
+ "primereact": "^10.9.3",
148
+ "react": "^19.0.0",
149
+ "react-dom": "^19.0.0",
150
+ "react-redux": "^9.2.0",
151
+ "react-syntax-highlighter": "^15.6.1",
152
+ "redux-logger": "^3.0.6",
153
+ "styled-components": "^6.1.16"
154
+ },
155
+ "devDependencies": {
156
+ "@babel/core": "^7.18.5",
157
+ "@babel/preset-env": "^7.26.9",
158
+ "@babel/preset-react": "^7.26.3",
159
+ "@babel/preset-typescript": "^7.26.0",
160
+ "@emotion/is-prop-valid": "^1.3.1",
161
+ "@rollup/plugin-babel": "^5.3.1",
162
+ "@rollup/plugin-commonjs": "^22.0.0",
163
+ "@rollup/plugin-json": "^6.1.0",
164
+ "@rollup/plugin-node-resolve": "^16.0.0",
165
+ "@rollup/plugin-typescript": "^8.3.3",
166
+ "@types/lodash": "^4.17.16",
167
+ "@types/react": "^18.3.18",
168
+ "@types/react-dom": "^18.3.5",
169
+ "@types/react-syntax-highlighter": "^15.5.13",
170
+ "@types/rollup-plugin-node-resolve": "^4.1.0",
171
+ "@types/styled-components": "^5.1.25",
172
+ "postcss-import": "^16.1.0",
173
+ "recharts": "^2.15.3",
174
+ "rollup": "^2.75.6",
175
+ "rollup-plugin-copy": "^3.5.0",
176
+ "rollup-plugin-peer-deps-external": "^2.2.4",
177
+ "rollup-plugin-postcss": "^4.0.2",
178
+ "rollup-plugin-terser": "^7.0.2",
179
+ "tslib": "^2.4.0",
180
+ "typescript": "^4.7.4"
181
+ },
182
+ "keywords": [
183
+ "css",
184
+ "instincthub",
185
+ "styles",
186
+ "frontend",
187
+ "react",
188
+ "@instincthub/react-ui",
189
+ "instincthub-react-ui",
190
+ "instincthub-css",
191
+ "instincthub-components",
192
+ "instincthub-react-ui-components"
193
+ ],
194
+ "author": "Noah Olatoye",
195
+ "license": "MIT",
196
+ "repository": {
197
+ "type": "git",
198
+ "url": "git+https://github.com/instincthub/instincthub-react-ui.git"
199
+ },
200
+ "bugs": {
201
+ "url": "https://github.com/instincthub/instincthub-react-ui/issues"
202
+ },
203
+ "homepage": "https://github.com/instincthub/instincthub-react-ui#readme"
204
+ }