svelte 3.59.0 → 3.59.2

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/internal/index.js CHANGED
@@ -2278,7 +2278,7 @@ class SvelteComponent {
2278
2278
  }
2279
2279
 
2280
2280
  function dispatch_dev(type, detail) {
2281
- document.dispatchEvent(custom_event(type, Object.assign({ version: '3.59.0' }, detail), { bubbles: true }));
2281
+ document.dispatchEvent(custom_event(type, Object.assign({ version: '3.59.2' }, detail), { bubbles: true }));
2282
2282
  }
2283
2283
  function append_dev(target, node) {
2284
2284
  dispatch_dev('SvelteDOMInsert', { target, node });
@@ -2276,7 +2276,7 @@ class SvelteComponent {
2276
2276
  }
2277
2277
 
2278
2278
  function dispatch_dev(type, detail) {
2279
- document.dispatchEvent(custom_event(type, Object.assign({ version: '3.59.0' }, detail), { bubbles: true }));
2279
+ document.dispatchEvent(custom_event(type, Object.assign({ version: '3.59.2' }, detail), { bubbles: true }));
2280
2280
  }
2281
2281
  function append_dev(target, node) {
2282
2282
  dispatch_dev('SvelteDOMInsert', { target, node });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte",
3
- "version": "3.59.0",
3
+ "version": "3.59.2",
4
4
  "description": "Cybernetically enhanced web apps",
5
5
  "module": "index.mjs",
6
6
  "main": "index",
@@ -16,4 +16,4 @@ export declare function is_interactive_element(tag_name: string, attribute_map:
16
16
  export declare function is_non_interactive_element(tag_name: string, attribute_map: Map<string, Attribute>): boolean;
17
17
  export declare function is_static_element(tag_name: string, attribute_map: Map<string, Attribute>): boolean;
18
18
  export declare function is_semantic_role_element(role: ARIARoleDefinitionKey, tag_name: string, attribute_map: Map<string, Attribute>): boolean;
19
- export declare function is_valid_autocomplete(type: null | true | string, autocomplete: null | true | string): boolean;
19
+ export declare function is_valid_autocomplete(autocomplete: null | true | string): boolean;