sanity-plugin-recurring-dates 1.1.0 → 1.1.1

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.d.ts CHANGED
@@ -13,7 +13,7 @@ export declare interface PluginConfig {
13
13
  export declare interface RecurringDate {
14
14
  rrule: string
15
15
  startDate: string
16
- endDate: String
16
+ endDate: string
17
17
  }
18
18
 
19
19
  export declare type RecurringDateFieldOptions = Omit<ObjectDefinition, 'type' | 'fields'> & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sanity-plugin-recurring-dates",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Add a custom input component to your Sanity Studio to manage recurring dates (e.g. for events)",
5
5
  "keywords": [
6
6
  "sanity",
@@ -85,7 +85,7 @@
85
85
  "react": "^18",
86
86
  "sanity": "^3",
87
87
  "@sanity/ui": "^1 || ^2.0.0-beta",
88
- "@sanity/icons": "^2"
88
+ "@sanity/icons": ">= 2"
89
89
  },
90
90
  "engines": {
91
91
  "node": ">=14"
package/src/types.ts CHANGED
@@ -30,5 +30,5 @@ declare module 'sanity' {
30
30
  export interface RecurringDate {
31
31
  rrule: string
32
32
  startDate: string
33
- endDate: String
33
+ endDate: string
34
34
  }