@tecsinapse/cortex-react 1.2.2-beta.1 → 1.2.2-beta.2
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/cjs/components/Calendar.js +22 -0
- package/dist/cjs/components/CalendarCell.js +51 -0
- package/dist/cjs/components/CalendarGrid.js +23 -0
- package/dist/cjs/components/CalendarGridBodyRows.js +12 -0
- package/dist/cjs/components/CalendarGridHeaderRow.js +12 -0
- package/dist/cjs/components/CalendarHeader.js +40 -0
- package/dist/cjs/components/GroupButton.js +2 -1
- package/dist/cjs/components/ProgressBar.js +2 -1
- package/dist/cjs/components/RangeCalendar.js +44 -0
- package/dist/cjs/components/SearchInput.js +17 -11
- package/dist/cjs/hooks/useCalendar.js +27 -0
- package/dist/cjs/hooks/useCalendarCell.js +35 -0
- package/dist/cjs/hooks/useCalendarGrid.js +14 -0
- package/dist/cjs/index.js +31 -21
- package/dist/cjs/service/SnackbarSonner.js +16 -10
- package/dist/cjs/styles/calendar-cell.js +40 -0
- package/dist/esm/components/Calendar.js +20 -0
- package/dist/esm/components/CalendarCell.js +49 -0
- package/dist/esm/components/CalendarGrid.js +21 -0
- package/dist/esm/components/CalendarGridBodyRows.js +10 -0
- package/dist/esm/components/CalendarGridHeaderRow.js +10 -0
- package/dist/esm/components/CalendarHeader.js +38 -0
- package/dist/esm/components/GroupButton.js +2 -1
- package/dist/esm/components/ProgressBar.js +2 -1
- package/dist/esm/components/RangeCalendar.js +42 -0
- package/dist/esm/components/SearchInput.js +17 -11
- package/dist/esm/hooks/useCalendar.js +25 -0
- package/dist/esm/hooks/useCalendarCell.js +33 -0
- package/dist/esm/hooks/useCalendarGrid.js +12 -0
- package/dist/esm/index.js +15 -10
- package/dist/esm/service/SnackbarSonner.js +16 -10
- package/dist/esm/styles/calendar-cell.js +38 -0
- package/dist/types/components/Calendar.d.ts +6 -0
- package/dist/types/components/CalendarCell.d.ts +8 -0
- package/dist/types/components/CalendarGrid.d.ts +6 -0
- package/dist/types/components/CalendarGridBodyRows.d.ts +6 -0
- package/dist/types/components/CalendarGridHeaderRow.d.ts +5 -0
- package/dist/types/components/CalendarHeader.d.ts +6 -0
- package/dist/types/components/RangeCalendar.d.ts +10 -0
- package/dist/types/components/index.d.ts +12 -10
- package/dist/types/hooks/index.d.ts +3 -0
- package/dist/types/hooks/useCalendar.d.ts +10 -0
- package/dist/types/hooks/useCalendarCell.d.ts +18 -0
- package/dist/types/hooks/useCalendarGrid.d.ts +10 -0
- package/dist/types/styles/calendar-cell.d.ts +199 -0
- package/dist/types/styles/index.d.ts +2 -1
- package/dist/types/tests/Calendar.test.d.ts +1 -0
- package/dist/types/tests/CalendarCell.test.d.ts +1 -0
- package/dist/types/tests/CalendarGridBodyRows.test.d.ts +1 -0
- package/dist/types/tests/CalendarGridHeaderRow.test.d.ts +1 -0
- package/dist/types/tests/CalendarHeader.test.d.ts +1 -0
- package/dist/types/tests/useCalendarCell.test.d.ts +1 -0
- package/package.json +4 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@testing-library/jest-dom';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@testing-library/jest-dom';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@testing-library/jest-dom';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@testing-library/jest-dom';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@testing-library/jest-dom';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tecsinapse/cortex-react",
|
|
3
|
-
"version": "1.2.2-beta.
|
|
3
|
+
"version": "1.2.2-beta.2",
|
|
4
4
|
"description": "React components based in @tecsinapse/cortex-core",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
@@ -20,7 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@tecsinapse/cortex-core": "0.2.2-beta.1",
|
|
22
22
|
"clsx": "*",
|
|
23
|
+
"react-aria": "^3.33.1",
|
|
23
24
|
"react-icons": "^5.2.1",
|
|
25
|
+
"react-stately": "^3.31.1",
|
|
24
26
|
"sonner": "^1.5.0"
|
|
25
27
|
},
|
|
26
28
|
"repository": {
|
|
@@ -37,5 +39,5 @@
|
|
|
37
39
|
"react-dom": ">=18.0.0",
|
|
38
40
|
"tailwind": ">=3.3.0"
|
|
39
41
|
},
|
|
40
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "8018ecf7ba73dcedf9d6f58c9c836f50ca94ea70"
|
|
41
43
|
}
|