@tanishraj/ui-kit 2.5.2 → 2.5.3
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/index.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +207 -115
- package/dist/index.es.js +149 -152
- package/dist/index.es.js.map +1 -1
- package/package.json +5 -4
- package/readme.md +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanishraj/ui-kit",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.3",
|
|
4
4
|
"description": "A production-ready React component library with modern tooling, Storybook docs, and TypeScript support.",
|
|
5
5
|
"author": "Tanishraj",
|
|
6
6
|
"license": "MIT",
|
|
@@ -74,15 +74,16 @@
|
|
|
74
74
|
"d3-org-chart": "^3.1.1",
|
|
75
75
|
"lucide-react": "^1.21.0",
|
|
76
76
|
"react": "^19.2.7",
|
|
77
|
+
"react-day-picker": "^10.0.1",
|
|
77
78
|
"react-dom": "^19.2.7",
|
|
78
79
|
"react-select": "^5.10.2",
|
|
79
|
-
"react-tooltip": "^
|
|
80
|
+
"react-tooltip": "^6.0.8",
|
|
80
81
|
"sonner": "^2.0.7",
|
|
81
82
|
"tailwind-merge": "^3.6.0"
|
|
82
83
|
},
|
|
83
84
|
"devDependencies": {
|
|
84
85
|
"@chromatic-com/storybook": "^5.2.1",
|
|
85
|
-
"@eslint/js": "^9.
|
|
86
|
+
"@eslint/js": "^9.39.4",
|
|
86
87
|
"@microsoft/api-extractor": "^7.58.9",
|
|
87
88
|
"@storybook/addon-docs": "^10.4.6",
|
|
88
89
|
"@storybook/addon-onboarding": "^10.4.6",
|
|
@@ -101,7 +102,7 @@
|
|
|
101
102
|
"@vitejs/plugin-react": "^6.0.3",
|
|
102
103
|
"@vitest/coverage-v8": "4.1.9",
|
|
103
104
|
"@vueless/storybook-dark-mode": "^10.0.8",
|
|
104
|
-
"eslint": "^9.
|
|
105
|
+
"eslint": "^9.39.4",
|
|
105
106
|
"eslint-config-prettier": "^10.1.8",
|
|
106
107
|
"eslint-import-resolver-typescript": "^4.4.5",
|
|
107
108
|
"eslint-plugin-import": "^2.32.0",
|
package/readme.md
CHANGED
|
@@ -123,6 +123,7 @@ Storybook is the source of truth for public component usage, variants, and examp
|
|
|
123
123
|
|
|
124
124
|
### Inputs and selection
|
|
125
125
|
|
|
126
|
+
- `Calendar`
|
|
126
127
|
- `Checkbox`
|
|
127
128
|
- `CheckboxGroup`
|
|
128
129
|
- `Input`
|
|
@@ -178,6 +179,8 @@ Most components follow a shared set of prop patterns where relevant:
|
|
|
178
179
|
|
|
179
180
|
Not every component supports every prop. Use Storybook or the exported TypeScript types for the exact API.
|
|
180
181
|
|
|
182
|
+
`Calendar` wraps `react-day-picker` with ui-kit styling, supports Day Picker selection modes such as `single`, `multiple`, and `range`, includes `shape="squared" | "circle"` for day cells, and can show month/year selectors with `captionLayout="dropdown"` plus optional `startMonth`/`endMonth` bounds.
|
|
183
|
+
|
|
181
184
|
## Development
|
|
182
185
|
|
|
183
186
|
Prerequisites:
|