@super-calendar/dom 2.1.3 → 2.1.5

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 (2) hide show
  1. package/README.md +6 -10
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,23 +1,19 @@
1
1
  # @super-calendar/dom
2
2
 
3
- [![JSR](https://jsr.io/badges/@super-calendar/dom)](https://jsr.io/@super-calendar/dom) [![JSR score](https://jsr.io/badges/@super-calendar/dom/score)](https://jsr.io/@super-calendar/dom)
3
+ [![npm](https://img.shields.io/npm/v/@super-calendar/dom?style=flat-square&color=1F6FEB)](https://www.npmjs.com/package/@super-calendar/dom) [![JSR](https://img.shields.io/jsr/v/@super-calendar/dom?style=flat-square&label=JSR&color=F7DF1E)](https://jsr.io/@super-calendar/dom) [![npmx](https://img.shields.io/badge/npmx-view-8A2BE2?style=flat-square)](https://npmx.dev/package/@super-calendar/dom)
4
4
 
5
- The react-dom renderer for [super-calendar](https://github.com/afonsojramos/react-native-super-calendar): a virtualized **month / week / day** calendar and date picker built from real DOM components. No React Native, no react-native-web.
5
+ The react-dom renderer for [super-calendar](https://github.com/afonsojramos/super-calendar): a virtualized **month / week / day** calendar and date picker built from real DOM components. No React Native, no react-native-web.
6
6
 
7
- It is built on the headless [`@super-calendar/core`](https://jsr.io/@super-calendar/core) and Legend List's DOM renderer.
7
+ It is built on the headless [`@super-calendar/core`](https://www.npmjs.com/package/@super-calendar/core) and Legend List's DOM renderer.
8
8
 
9
9
  ## Install
10
10
 
11
11
  ```sh
12
- # Deno
13
- deno add jsr:@super-calendar/dom
14
-
15
- # npm / pnpm / yarn / bun
16
- npx jsr add @super-calendar/dom
17
- pnpm dlx jsr add @super-calendar/dom
18
- bunx jsr add @super-calendar/dom
12
+ npm install @super-calendar/dom
19
13
  ```
20
14
 
15
+ Also on [JSR](https://jsr.io/@super-calendar/dom): `deno add jsr:@super-calendar/dom`.
16
+
21
17
  Peer dependencies: `@legendapp/list` (>=3), `date-fns` (>=3), `react` (>=19), and `react-dom` (>=19).
22
18
 
23
19
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@super-calendar/dom",
3
- "version": "2.1.3",
3
+ "version": "2.1.5",
4
4
  "description": "Virtualized month / week / day calendar and date picker for react-dom. No React Native, no react-native-web.",
5
5
  "keywords": [
6
6
  "calendar",
@@ -48,7 +48,7 @@
48
48
  "access": "public"
49
49
  },
50
50
  "dependencies": {
51
- "@super-calendar/core": "2.1.3"
51
+ "@super-calendar/core": "2.1.5"
52
52
  },
53
53
  "peerDependencies": {
54
54
  "@legendapp/list": ">=3",