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/CHANGELOG.md +9 -0
- package/compiler.js +10 -7
- package/compiler.js.map +1 -1
- package/compiler.mjs +10 -7
- package/compiler.mjs.map +1 -1
- package/internal/index.js +1 -1
- package/internal/index.mjs +1 -1
- package/package.json +1 -1
- package/types/compiler/compile/utils/a11y.d.ts +1 -1
- package/internal/Component-1eb450cb.mjs +0 -2376
- package/internal/Component-26444f41.mjs +0 -2178
- package/internal/Component-5ada3e6d.js +0 -2324
- package/internal/Component-889ad17e.mjs +0 -1951
- package/internal/Component-939a9f0a.js +0 -2098
- package/internal/Component-aaafe29c.js +0 -2523
- package/internal/dev-1768eab7.mjs +0 -342
- package/internal/dev-4bfa980b.mjs +0 -199
- package/internal/dev-5c1b60eb.mjs +0 -339
- package/internal/dev-736228d3.js +0 -365
- package/internal/dev-82237d19.js +0 -225
- package/internal/dev-ac84fff2.js +0 -368
- package/types/compiler/parse/read/css-tree-cq/node/container_feature.d.ts +0 -12
- package/types/compiler/parse/read/css-tree-cq/node/container_feature_range.d.ts +0 -11
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.
|
|
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 });
|
package/internal/index.mjs
CHANGED
|
@@ -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.
|
|
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
|
@@ -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(
|
|
19
|
+
export declare function is_valid_autocomplete(autocomplete: null | true | string): boolean;
|