@daryasidorovich/modsen-datepicker 1.0.2 → 1.0.4

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 +5 -5
  2. package/package.json +9 -2
package/README.md CHANGED
@@ -86,7 +86,7 @@ const Example = () => {
86
86
 
87
87
  <div align="center">
88
88
 
89
- ![DatePicker](docs/datepicker.png)
89
+ ![DatePicker](https://cdn.jsdelivr.net/npm/@daryasidorovich/modsen-datepicker@1.0.1/docs/datepicker.png)
90
90
  </div>
91
91
 
92
92
  ### RangePicker
@@ -122,7 +122,7 @@ const Example = () => {
122
122
 
123
123
  <div align="center">
124
124
 
125
- ![RangePicker](docs/rangepicker.png)
125
+ ![RangePicker](https://cdn.jsdelivr.net/npm/@daryasidorovich/modsen-datepicker@1.0.1/docs/rangepicker.png)
126
126
  </div>
127
127
 
128
128
  ### BaseCalendar
@@ -159,7 +159,7 @@ const Example = () => {
159
159
 
160
160
  <div align="center">
161
161
 
162
- ![BaseCalendar](docs/base-calendar.png)
162
+ ![BaseCalendar](https://cdn.jsdelivr.net/npm/@daryasidorovich/modsen-datepicker@1.0.1/docs/base-calendar.png)
163
163
  </div>
164
164
 
165
165
  ## Callbacks
@@ -183,7 +183,7 @@ The input is `masked` (dd/mm/yyyy) and validated:
183
183
  - **Out of range** — if minDate or maxDate is set and the value falls outside, the input shows the corresponding error and the value is rejected.
184
184
 
185
185
  <div align="center">
186
- ![Validation](docs/rangepicker-with-error.png)
186
+ ![Validation](https://cdn.jsdelivr.net/npm/@daryasidorovich/modsen-datepicker@1.0.1/docs/rangepicker-with-error.png)
187
187
 
188
188
  </div>
189
189
 
@@ -298,5 +298,5 @@ The library ships with light and dark themes out of the box — no extra configu
298
298
 
299
299
  <div align="center">
300
300
 
301
- ![Dark theme](docs/dark-theme.png)
301
+ ![Dark theme](https://cdn.jsdelivr.net/npm/@daryasidorovich/modsen-datepicker@1.0.1/docs/dark-theme.png)
302
302
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daryasidorovich/modsen-datepicker",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
@@ -11,6 +11,14 @@
11
11
  "docs",
12
12
  "README.md"
13
13
  ],
14
+ "keywords": [
15
+ "React",
16
+ "Javascript",
17
+ "Typescript",
18
+ "DatePicker",
19
+ "RangePicker",
20
+ "Calendar"
21
+ ],
14
22
  "scripts": {
15
23
  "clean": "rimraf dist lib",
16
24
  "build": "npm run clean && rollup -c --bundleConfigAsCjs",
@@ -40,7 +48,6 @@
40
48
  "prettier --write"
41
49
  ]
42
50
  },
43
- "keywords": [],
44
51
  "author": "",
45
52
  "license": "ISC",
46
53
  "type": "module",