diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md
index 76b7783e..1223585a 100644
--- a/COMPONENT_INDEX.md
+++ b/COMPONENT_INDEX.md
@@ -1050,7 +1050,7 @@ None.
| short | let
| No | boolean
| false
| Set to `true` to use the short variant |
| light | let
| No | boolean
| false
| Set to `true` to enable the light variant |
| id | let
| No | string
| "ccs-" + Math.random().toString(36)
| Set an id for the date picker element |
-| flatpickrProps | let
| No | import("flatpickr/dist/types/options").Options
| {}
| Override the options passed to the Flatpickr instance
https://flatpickr.js.org/options |
+| flatpickrProps | let
| No | import("flatpickr/dist/types/options").Options
| {}
| Override the options passed to the Flatpickr instance.
@see https://flatpickr.js.org/options |
### Slots
diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json
index dceeac19..396c40d6 100644
--- a/docs/src/COMPONENT_API.json
+++ b/docs/src/COMPONENT_API.json
@@ -2751,7 +2751,7 @@
{
"name": "flatpickrProps",
"kind": "let",
- "description": "Override the options passed to the Flatpickr instance\nhttps://flatpickr.js.org/options",
+ "description": "Override the options passed to the Flatpickr instance.\n@see https://flatpickr.js.org/options",
"type": "import(\"flatpickr/dist/types/options\").Options",
"value": "{}",
"isFunction": false,
@@ -10863,16 +10863,6 @@
"isFunctionDeclaration": false,
"constant": false,
"reactive": false
- },
- {
- "name": "tableStyle",
- "kind": "let",
- "description": "Set the style attribute on the `table` element",
- "type": "string",
- "isFunction": false,
- "isFunctionDeclaration": false,
- "constant": false,
- "reactive": false
}
],
"moduleExports": [],
@@ -10938,6 +10928,16 @@
"isFunctionDeclaration": false,
"constant": false,
"reactive": false
+ },
+ {
+ "name": "tableStyle",
+ "kind": "let",
+ "description": "Set the style attribute on the `table` element",
+ "type": "string",
+ "isFunction": false,
+ "isFunctionDeclaration": false,
+ "constant": false,
+ "reactive": false
}
],
"moduleExports": [],
diff --git a/package.json b/package.json
index 908429f9..49ce84d7 100644
--- a/package.json
+++ b/package.json
@@ -38,7 +38,7 @@
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.49.11",
- "sveld": "^0.15.2",
+ "sveld": "^0.15.3",
"svelte": "^3.46.6",
"svelte-check": "^2.4.6",
"typescript": "^4.6.3"
diff --git a/src/DatePicker/DatePicker.svelte b/src/DatePicker/DatePicker.svelte
index b210d6e5..3bfcc1d5 100644
--- a/src/DatePicker/DatePicker.svelte
+++ b/src/DatePicker/DatePicker.svelte
@@ -60,8 +60,8 @@
export let id = "ccs-" + Math.random().toString(36);
/**
- * Override the options passed to the Flatpickr instance
- * https://flatpickr.js.org/options
+ * Override the options passed to the Flatpickr instance.
+ * @see https://flatpickr.js.org/options
* @type {import("flatpickr/dist/types/options").Options}
*/
export let flatpickrProps = {};
diff --git a/types/DatePicker/DatePicker.svelte.d.ts b/types/DatePicker/DatePicker.svelte.d.ts
index 6ab96175..928953cc 100644
--- a/types/DatePicker/DatePicker.svelte.d.ts
+++ b/types/DatePicker/DatePicker.svelte.d.ts
@@ -74,8 +74,8 @@ export interface DatePickerProps
id?: string;
/**
- * Override the options passed to the Flatpickr instance
- * https://flatpickr.js.org/options
+ * Override the options passed to the Flatpickr instance.
+ * @see https://flatpickr.js.org/options
* @default {}
*/
flatpickrProps?: import("flatpickr/dist/types/options").Options;
diff --git a/yarn.lock b/yarn.lock
index 372baf6f..8ca64509 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1330,10 +1330,10 @@ supports-color@^9.2.1:
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-9.2.2.tgz#502acaf82f2b7ee78eb7c83dcac0f89694e5a7bb"
integrity sha512-XC6g/Kgux+rJXmwokjm9ECpD6k/smUoS5LKlUCcsYr4IY3rW0XyAympon2RmxGrlnZURMpg5T18gWDP9CsHXFA==
-sveld@^0.15.2:
- version "0.15.2"
- resolved "https://registry.yarnpkg.com/sveld/-/sveld-0.15.2.tgz#f8a72cafa8ba5e2ff12ce5a858935b6ca72bc18f"
- integrity sha512-Ogv8IBPJxNSIkLeGKIOLkqh6bcOjy/43Tcf8wiGMzg60ZWU1vnogkDl5aEAs4QvWZ+Mzy5t3GAAG8rpb4WO1YA==
+sveld@^0.15.3:
+ version "0.15.3"
+ resolved "https://registry.yarnpkg.com/sveld/-/sveld-0.15.3.tgz#75fe72f472b9cfbe863f6f0b074612d4132dc960"
+ integrity sha512-3TYhrLpm8z8elnZ6ffQeq1SeoxzC2zsFY/9QeNHu1UcQxAZ6LqfyUufnOkNkelYJMq9uBn4bGUAYJpbpTMjnOA==
dependencies:
"@rollup/plugin-node-resolve" "^13.2.1"
acorn "^8.7.0"