@innosolutions/inno-calendar 1.0.57 → 1.0.59
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/AGENT.md +1721 -1610
- package/README.md +235 -235
- package/dist/agenda-widget-BxZU4eGL.cjs +2 -0
- package/dist/agenda-widget-BxZU4eGL.cjs.map +1 -0
- package/dist/{agenda-widget-1kak6FM9.js → agenda-widget-wrZfO67A.js} +1308 -1223
- package/dist/agenda-widget-wrZfO67A.js.map +1 -0
- package/dist/components/event/event-card.d.ts.map +1 -1
- package/dist/components/index.cjs +1 -1
- package/dist/components/index.mjs +2 -2
- package/dist/components/primitives/scroll-navigator.d.ts +1 -1
- package/dist/components/primitives/scroll-navigator.d.ts.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +200 -200
- package/dist/presets/index.cjs +1 -1
- package/dist/presets/index.mjs +1 -1
- package/dist/{tailwind-calendar-DjtOowce.js → tailwind-calendar-CVuxWXLY.js} +2 -2
- package/dist/{tailwind-calendar-DjtOowce.js.map → tailwind-calendar-CVuxWXLY.js.map} +1 -1
- package/dist/{tailwind-calendar-DpEkgg5k.cjs → tailwind-calendar-DoG6s3PJ.cjs} +2 -2
- package/dist/{tailwind-calendar-DpEkgg5k.cjs.map → tailwind-calendar-DoG6s3PJ.cjs.map} +1 -1
- package/dist/week-view-Bzpbti1B.cjs +11 -0
- package/dist/week-view-Bzpbti1B.cjs.map +1 -0
- package/dist/{week-view-CKx6bJdJ.js → week-view-C1FxF_nk.js} +880 -867
- package/dist/week-view-C1FxF_nk.js.map +1 -0
- package/package.json +138 -138
- package/dist/agenda-widget-1kak6FM9.js.map +0 -1
- package/dist/agenda-widget-C8CFFI1c.cjs +0 -2
- package/dist/agenda-widget-C8CFFI1c.cjs.map +0 -1
- package/dist/week-view-CKx6bJdJ.js.map +0 -1
- package/dist/week-view-DXlwhFjn.cjs +0 -11
- package/dist/week-view-DXlwhFjn.cjs.map +0 -1
package/package.json
CHANGED
|
@@ -1,138 +1,138 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@innosolutions/inno-calendar",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "A headless-first, fully customizable React calendar",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"main": "./dist/index.cjs",
|
|
8
|
-
"module": "./dist/index.mjs",
|
|
9
|
-
"types": "./dist/index.d.ts",
|
|
10
|
-
"sideEffects": [
|
|
11
|
-
"**/*.css"
|
|
12
|
-
],
|
|
13
|
-
"exports": {
|
|
14
|
-
".": {
|
|
15
|
-
"types": "./dist/index.d.ts",
|
|
16
|
-
"import": "./dist/index.mjs",
|
|
17
|
-
"require": "./dist/index.cjs"
|
|
18
|
-
},
|
|
19
|
-
"./utils": {
|
|
20
|
-
"types": "./dist/utils.d.ts",
|
|
21
|
-
"import": "./dist/utils.mjs",
|
|
22
|
-
"require": "./dist/utils.cjs"
|
|
23
|
-
},
|
|
24
|
-
"./core": {
|
|
25
|
-
"types": "./dist/core/index.d.ts",
|
|
26
|
-
"import": "./dist/core/index.mjs",
|
|
27
|
-
"require": "./dist/core/index.cjs"
|
|
28
|
-
},
|
|
29
|
-
"./components": {
|
|
30
|
-
"types": "./dist/components/index.d.ts",
|
|
31
|
-
"import": "./dist/components/index.mjs",
|
|
32
|
-
"require": "./dist/components/index.cjs"
|
|
33
|
-
},
|
|
34
|
-
"./presets": {
|
|
35
|
-
"types": "./dist/presets/index.d.ts",
|
|
36
|
-
"import": "./dist/presets/index.mjs",
|
|
37
|
-
"require": "./dist/presets/index.cjs"
|
|
38
|
-
},
|
|
39
|
-
"./lib": {
|
|
40
|
-
"types": "./dist/lib/index.d.ts",
|
|
41
|
-
"import": "./dist/lib/index.mjs",
|
|
42
|
-
"require": "./dist/lib/index.cjs"
|
|
43
|
-
},
|
|
44
|
-
"./styles": "./dist/styles/index.css",
|
|
45
|
-
"./styles.css": "./dist/styles/index.css"
|
|
46
|
-
},
|
|
47
|
-
"files": [
|
|
48
|
-
"dist",
|
|
49
|
-
"README.md",
|
|
50
|
-
"AGENT.md",
|
|
51
|
-
"LICENSE"
|
|
52
|
-
],
|
|
53
|
-
"scripts": {
|
|
54
|
-
"dev": "vite",
|
|
55
|
-
"build": "vite build",
|
|
56
|
-
"typecheck": "tsc --noEmit",
|
|
57
|
-
"lint": "biome check src",
|
|
58
|
-
"format": "biome format --write src",
|
|
59
|
-
"prepublishOnly": "npm run build"
|
|
60
|
-
},
|
|
61
|
-
"peerDependencies": {
|
|
62
|
-
"react": ">=18.0.0",
|
|
63
|
-
"react-dom": ">=18.0.0"
|
|
64
|
-
},
|
|
65
|
-
"peerDependenciesMeta": {
|
|
66
|
-
"tailwindcss": {
|
|
67
|
-
"optional": true
|
|
68
|
-
},
|
|
69
|
-
"@radix-ui/react-popover": {
|
|
70
|
-
"optional": true
|
|
71
|
-
},
|
|
72
|
-
"@radix-ui/react-dropdown-menu": {
|
|
73
|
-
"optional": true
|
|
74
|
-
},
|
|
75
|
-
"@radix-ui/react-tooltip": {
|
|
76
|
-
"optional": true
|
|
77
|
-
},
|
|
78
|
-
"@radix-ui/react-dialog": {
|
|
79
|
-
"optional": true
|
|
80
|
-
},
|
|
81
|
-
"@radix-ui/react-scroll-area": {
|
|
82
|
-
"optional": true
|
|
83
|
-
},
|
|
84
|
-
"@radix-ui/react-select": {
|
|
85
|
-
"optional": true
|
|
86
|
-
},
|
|
87
|
-
"@radix-ui/react-avatar": {
|
|
88
|
-
"optional": true
|
|
89
|
-
}
|
|
90
|
-
},
|
|
91
|
-
"dependencies": {
|
|
92
|
-
"@radix-ui/react-dialog": "^1.1.15",
|
|
93
|
-
"class-variance-authority": "^0.7.1",
|
|
94
|
-
"clsx": "^2.1.1",
|
|
95
|
-
"tailwind-merge": "^3.0.2"
|
|
96
|
-
},
|
|
97
|
-
"devDependencies": {
|
|
98
|
-
"@biomejs/biome": "^2.2.5",
|
|
99
|
-
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
100
|
-
"@radix-ui/react-popover": "^1.1.15",
|
|
101
|
-
"@radix-ui/react-tooltip": "^1.2.8",
|
|
102
|
-
"@tailwindcss/vite": "^4.1.18",
|
|
103
|
-
"@types/react": "^19.0.0",
|
|
104
|
-
"@types/react-dom": "^19.0.0",
|
|
105
|
-
"@vitejs/plugin-react": "^4.3.4",
|
|
106
|
-
"lucide-react": "^0.563.0",
|
|
107
|
-
"react": "^19.0.0",
|
|
108
|
-
"react-dom": "^19.0.0",
|
|
109
|
-
"tailwindcss": "^4.0.15",
|
|
110
|
-
"typescript": "^5.9.3",
|
|
111
|
-
"vite": "^7.1.9",
|
|
112
|
-
"vite-plugin-dts": "^4.5.0"
|
|
113
|
-
},
|
|
114
|
-
"keywords": [
|
|
115
|
-
"react",
|
|
116
|
-
"calendar",
|
|
117
|
-
"scheduler",
|
|
118
|
-
"headless",
|
|
119
|
-
"tailwindcss",
|
|
120
|
-
"agenda",
|
|
121
|
-
"timeline",
|
|
122
|
-
"enterprise",
|
|
123
|
-
"customizable",
|
|
124
|
-
"shadcn"
|
|
125
|
-
],
|
|
126
|
-
"repository": {
|
|
127
|
-
"type": "git",
|
|
128
|
-
"url": "https://github.com/innosolutions/inno-calendar.git"
|
|
129
|
-
},
|
|
130
|
-
"bugs": {
|
|
131
|
-
"url": "https://github.com/innosolutions/inno-calendar/issues"
|
|
132
|
-
},
|
|
133
|
-
"homepage": "https://github.com/innosolutions/inno-calendar#readme",
|
|
134
|
-
"author": "InnoSolutions",
|
|
135
|
-
"publishConfig": {
|
|
136
|
-
"access": "public"
|
|
137
|
-
}
|
|
138
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@innosolutions/inno-calendar",
|
|
3
|
+
"version": "1.0.59",
|
|
4
|
+
"description": "A headless-first, fully customizable React calendar",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "./dist/index.cjs",
|
|
8
|
+
"module": "./dist/index.mjs",
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"sideEffects": [
|
|
11
|
+
"**/*.css"
|
|
12
|
+
],
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"import": "./dist/index.mjs",
|
|
17
|
+
"require": "./dist/index.cjs"
|
|
18
|
+
},
|
|
19
|
+
"./utils": {
|
|
20
|
+
"types": "./dist/utils.d.ts",
|
|
21
|
+
"import": "./dist/utils.mjs",
|
|
22
|
+
"require": "./dist/utils.cjs"
|
|
23
|
+
},
|
|
24
|
+
"./core": {
|
|
25
|
+
"types": "./dist/core/index.d.ts",
|
|
26
|
+
"import": "./dist/core/index.mjs",
|
|
27
|
+
"require": "./dist/core/index.cjs"
|
|
28
|
+
},
|
|
29
|
+
"./components": {
|
|
30
|
+
"types": "./dist/components/index.d.ts",
|
|
31
|
+
"import": "./dist/components/index.mjs",
|
|
32
|
+
"require": "./dist/components/index.cjs"
|
|
33
|
+
},
|
|
34
|
+
"./presets": {
|
|
35
|
+
"types": "./dist/presets/index.d.ts",
|
|
36
|
+
"import": "./dist/presets/index.mjs",
|
|
37
|
+
"require": "./dist/presets/index.cjs"
|
|
38
|
+
},
|
|
39
|
+
"./lib": {
|
|
40
|
+
"types": "./dist/lib/index.d.ts",
|
|
41
|
+
"import": "./dist/lib/index.mjs",
|
|
42
|
+
"require": "./dist/lib/index.cjs"
|
|
43
|
+
},
|
|
44
|
+
"./styles": "./dist/styles/index.css",
|
|
45
|
+
"./styles.css": "./dist/styles/index.css"
|
|
46
|
+
},
|
|
47
|
+
"files": [
|
|
48
|
+
"dist",
|
|
49
|
+
"README.md",
|
|
50
|
+
"AGENT.md",
|
|
51
|
+
"LICENSE"
|
|
52
|
+
],
|
|
53
|
+
"scripts": {
|
|
54
|
+
"dev": "vite",
|
|
55
|
+
"build": "vite build",
|
|
56
|
+
"typecheck": "tsc --noEmit",
|
|
57
|
+
"lint": "biome check src",
|
|
58
|
+
"format": "biome format --write src",
|
|
59
|
+
"prepublishOnly": "npm run build"
|
|
60
|
+
},
|
|
61
|
+
"peerDependencies": {
|
|
62
|
+
"react": ">=18.0.0",
|
|
63
|
+
"react-dom": ">=18.0.0"
|
|
64
|
+
},
|
|
65
|
+
"peerDependenciesMeta": {
|
|
66
|
+
"tailwindcss": {
|
|
67
|
+
"optional": true
|
|
68
|
+
},
|
|
69
|
+
"@radix-ui/react-popover": {
|
|
70
|
+
"optional": true
|
|
71
|
+
},
|
|
72
|
+
"@radix-ui/react-dropdown-menu": {
|
|
73
|
+
"optional": true
|
|
74
|
+
},
|
|
75
|
+
"@radix-ui/react-tooltip": {
|
|
76
|
+
"optional": true
|
|
77
|
+
},
|
|
78
|
+
"@radix-ui/react-dialog": {
|
|
79
|
+
"optional": true
|
|
80
|
+
},
|
|
81
|
+
"@radix-ui/react-scroll-area": {
|
|
82
|
+
"optional": true
|
|
83
|
+
},
|
|
84
|
+
"@radix-ui/react-select": {
|
|
85
|
+
"optional": true
|
|
86
|
+
},
|
|
87
|
+
"@radix-ui/react-avatar": {
|
|
88
|
+
"optional": true
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"dependencies": {
|
|
92
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
93
|
+
"class-variance-authority": "^0.7.1",
|
|
94
|
+
"clsx": "^2.1.1",
|
|
95
|
+
"tailwind-merge": "^3.0.2"
|
|
96
|
+
},
|
|
97
|
+
"devDependencies": {
|
|
98
|
+
"@biomejs/biome": "^2.2.5",
|
|
99
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
100
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
101
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
102
|
+
"@tailwindcss/vite": "^4.1.18",
|
|
103
|
+
"@types/react": "^19.0.0",
|
|
104
|
+
"@types/react-dom": "^19.0.0",
|
|
105
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
106
|
+
"lucide-react": "^0.563.0",
|
|
107
|
+
"react": "^19.0.0",
|
|
108
|
+
"react-dom": "^19.0.0",
|
|
109
|
+
"tailwindcss": "^4.0.15",
|
|
110
|
+
"typescript": "^5.9.3",
|
|
111
|
+
"vite": "^7.1.9",
|
|
112
|
+
"vite-plugin-dts": "^4.5.0"
|
|
113
|
+
},
|
|
114
|
+
"keywords": [
|
|
115
|
+
"react",
|
|
116
|
+
"calendar",
|
|
117
|
+
"scheduler",
|
|
118
|
+
"headless",
|
|
119
|
+
"tailwindcss",
|
|
120
|
+
"agenda",
|
|
121
|
+
"timeline",
|
|
122
|
+
"enterprise",
|
|
123
|
+
"customizable",
|
|
124
|
+
"shadcn"
|
|
125
|
+
],
|
|
126
|
+
"repository": {
|
|
127
|
+
"type": "git",
|
|
128
|
+
"url": "https://github.com/innosolutions/inno-calendar.git"
|
|
129
|
+
},
|
|
130
|
+
"bugs": {
|
|
131
|
+
"url": "https://github.com/innosolutions/inno-calendar/issues"
|
|
132
|
+
},
|
|
133
|
+
"homepage": "https://github.com/innosolutions/inno-calendar#readme",
|
|
134
|
+
"author": "InnoSolutions",
|
|
135
|
+
"publishConfig": {
|
|
136
|
+
"access": "public"
|
|
137
|
+
}
|
|
138
|
+
}
|