From dec5ad7f2db4dfba1503e8b8a58a07b2d08c68f8 Mon Sep 17 00:00:00 2001 From: Malin Date: Tue, 3 Mar 2026 12:57:35 +0100 Subject: [PATCH] feat: remove licensing system and bump version to 4.0.0-cloudhost MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove AS3CF_Pro_Licences_Updates instantiation and all $this->licence references from the PHP backend; stub methods return safe defaults (is_valid_licence → true, is_licence_over_media_limit → false, feature_enabled → true, is_pro_plugin_setup bypasses licence check) - Remove Licences REST API endpoint from add_api_endpoints() - Remove 'licence' from allowed settings keys - Bump version from 3.2.12 to 4.0.0-cloudhost in version.php and plugin header - Replace licence derived store with hardcoded always-valid writable store - Simplify enableAssets store to depend only on config.assets_settings - Remove licence panel row from Nav flyout; remove licence check from offload remaining button disabled logic - Replace Header licence display with "Internal Build" label - Remove LicencePage route registration from pages.js; drop licence import and is_valid guards from all isNextRoute functions - Rebuild compiled Svelte bundle Co-Authored-By: Claude Sonnet 4.6 --- amazon-s3-and-cloudfront-pro.php | 2 +- assets/js/pro/settings.js | 3877 ++++++------------ assets/js/pro/settings.js.map | 2 +- classes/pro/amazon-s3-and-cloudfront-pro.php | 151 +- ui/pro/Header.svelte | 25 +- ui/pro/Nav.svelte | 43 +- ui/pro/pages.js | 36 +- ui/pro/stores.js | 21 +- version.php | 2 +- 9 files changed, 1275 insertions(+), 2884 deletions(-) diff --git a/amazon-s3-and-cloudfront-pro.php b/amazon-s3-and-cloudfront-pro.php index 5154bad..193ce14 100644 --- a/amazon-s3-and-cloudfront-pro.php +++ b/amazon-s3-and-cloudfront-pro.php @@ -5,7 +5,7 @@ Plugin URI: https://deliciousbrains.com/wp-offload-media/ Update URI: https://deliciousbrains.com/wp-offload-media/ Description: Speed up your WordPress site by offloading your media and assets to Amazon S3, DigitalOcean Spaces or Google Cloud Storage and a CDN. Author: Delicious Brains -Version: 3.2.12 +Version: 4.0.0-cloudhost Author URI: https://deliciousbrains.com/ Update URI: false Network: True diff --git a/assets/js/pro/settings.js b/assets/js/pro/settings.js index c172331..9e93aae 100644 --- a/assets/js/pro/settings.js +++ b/assets/js/pro/settings.js @@ -2860,9 +2860,8 @@ return json; }; - // Convenience readable store of licence, derived from config. - // We currently have one licence applied to a plugin install. - const licence = derived( config, $config => $config.hasOwnProperty( "licences" ) ? $config.licences.at( 0 ) : [] ); + // Hardcoded always-valid licence for internal build (licensing removed). + const licence = writable( { is_set: true, is_valid: true, plan_plus_licence: 'Internal Build', customer: '', plan_usage: '', limit_info: { counts_toward_limit: false, total: 0, limit: 0 } } ); // Convenience readable store of offload remaining with count message, derived from config. const offloadRemainingWithCount = derived( config, $config => $config.offload_remaining_with_count ); @@ -3020,20 +3019,8 @@ // Convenience readable store of assets domain check info, derived from config. derived( config, $config => $config.assets_domain_check ); - // Convenience readable store indicating whether Assets functionality may be used. - const enableAssets = derived( [licence, config], ( [$licence, $config] ) => { - if ( - $licence.hasOwnProperty( "is_set" ) && - $licence.is_set && - $licence.hasOwnProperty( "is_valid" ) && - $licence.is_valid && - $config.hasOwnProperty( "assets_settings" ) - ) { - return true; - } - - return false; - } ); + // Assets functionality always enabled in internal build. + const enableAssets = derived( config, $config => $config.hasOwnProperty( "assets_settings" ) ); /** * Creates store of assets settings. @@ -3347,7 +3334,7 @@ const { Error: Error_1, Object: Object_1$8, console: console_1 } = globals; // (267:0) {:else} - function create_else_block$g(ctx) { + function create_else_block$e(ctx) { let switch_instance; let switch_instance_anchor; let current; @@ -3436,7 +3423,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_else_block$g.name, + id: create_else_block$e.name, type: "else", source: "(267:0) {:else}", ctx @@ -3446,7 +3433,7 @@ } // (260:0) {#if componentParams} - function create_if_block$D(ctx) { + function create_if_block$B(ctx) { let switch_instance; let switch_instance_anchor; let current; @@ -3541,7 +3528,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_if_block$D.name, + id: create_if_block$B.name, type: "if", source: "(260:0) {#if componentParams}", ctx @@ -3550,12 +3537,12 @@ return block; } - function create_fragment$1e(ctx) { + function create_fragment$1d(ctx) { let current_block_type_index; let if_block; let if_block_anchor; let current; - const if_block_creators = [create_if_block$D, create_else_block$g]; + const if_block_creators = [create_if_block$B, create_else_block$e]; const if_blocks = []; function select_block_type(ctx, dirty) { @@ -3626,7 +3613,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_fragment$1e.name, + id: create_fragment$1d.name, type: "component", source: "", ctx @@ -3827,7 +3814,7 @@ window.location.hash = href; } - function instance$1e($$self, $$props, $$invalidate) { + function instance$1d($$self, $$props, $$invalidate) { let { $$slots: slots = {}, $$scope } = $$props; validate_slots('Router', slots, []); let { routes = {} } = $$props; @@ -4242,7 +4229,7 @@ constructor(options) { super(options); - init(this, options, instance$1e, create_fragment$1e, safe_not_equal, { + init(this, options, instance$1d, create_fragment$1d, safe_not_equal, { routes: 3, prefix: 4, restoreScrollState: 5 @@ -4252,7 +4239,7 @@ component: this, tagName: "Router", options, - id: create_fragment$1e.name + id: create_fragment$1d.name }); } @@ -4282,9 +4269,9 @@ } /* ui/components/Page.svelte generated by Svelte v4.2.19 */ - const file$12 = "ui/components/Page.svelte"; + const file$10 = "ui/components/Page.svelte"; - function create_fragment$1d(ctx) { + function create_fragment$1c(ctx) { let div; let div_class_value; let current; @@ -4297,7 +4284,7 @@ if (default_slot) default_slot.c(); attr_dev(div, "class", div_class_value = "page-wrapper " + /*name*/ ctx[0]); toggle_class(div, "subpage", /*subpage*/ ctx[1]); - add_location(div, file$12, 30, 0, 796); + add_location(div, file$10, 30, 0, 796); }, l: function claim(nodes) { throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option"); @@ -4355,7 +4342,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_fragment$1d.name, + id: create_fragment$1c.name, type: "component", source: "", ctx @@ -4364,7 +4351,7 @@ return block; } - function instance$1d($$self, $$props, $$invalidate) { + function instance$1c($$self, $$props, $$invalidate) { let $location; let $current_settings; validate_store(location$1, 'location'); @@ -4436,13 +4423,13 @@ class Page extends SvelteComponentDev { constructor(options) { super(options); - init(this, options, instance$1d, create_fragment$1d, safe_not_equal, { name: 0, subpage: 1, initialSettings: 2 }); + init(this, options, instance$1c, create_fragment$1c, safe_not_equal, { name: 0, subpage: 1, initialSettings: 2 }); dispatch_dev("SvelteRegisterComponent", { component: this, tagName: "Page", options, - id: create_fragment$1d.name + id: create_fragment$1c.name }); } @@ -4472,10 +4459,10 @@ } /* ui/components/Button.svelte generated by Svelte v4.2.19 */ - const file$11 = "ui/components/Button.svelte"; + const file$$ = "ui/components/Button.svelte"; // (72:1) {#if refresh} - function create_if_block$C(ctx) { + function create_if_block$A(ctx) { let img; let img_src_value; @@ -4486,7 +4473,7 @@ if (!src_url_equal(img.src, img_src_value = /*refreshIcon*/ ctx[15](/*refreshing*/ ctx[11]))) attr_dev(img, "src", img_src_value); attr_dev(img, "alt", /*title*/ ctx[12]); toggle_class(img, "refreshing", /*refreshing*/ ctx[11]); - add_location(img, file$11, 72, 2, 1802); + add_location(img, file$$, 72, 2, 1802); }, m: function mount(target, anchor) { insert_dev(target, img, anchor); @@ -4513,7 +4500,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_if_block$C.name, + id: create_if_block$A.name, type: "if", source: "(72:1) {#if refresh}", ctx @@ -4522,14 +4509,14 @@ return block; } - function create_fragment$1c(ctx) { + function create_fragment$1b(ctx) { let button; let t; let button_disabled_value; let current; let mounted; let dispose; - let if_block = /*refresh*/ ctx[7] && create_if_block$C(ctx); + let if_block = /*refresh*/ ctx[7] && create_if_block$A(ctx); const default_slot_template = /*#slots*/ ctx[17].default; const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[16], null); @@ -4553,7 +4540,7 @@ toggle_class(button, "btn-expanded", /*expanded*/ ctx[10]); toggle_class(button, "btn-refresh", /*refresh*/ ctx[7]); toggle_class(button, "btn-refreshing", /*refreshing*/ ctx[11]); - add_location(button, file$11, 51, 0, 1322); + add_location(button, file$$, 51, 0, 1322); }, l: function claim(nodes) { throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option"); @@ -4585,7 +4572,7 @@ if (if_block) { if_block.p(ctx, dirty); } else { - if_block = create_if_block$C(ctx); + if_block = create_if_block$A(ctx); if_block.c(); if_block.m(button, t); } @@ -4685,7 +4672,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_fragment$1c.name, + id: create_fragment$1b.name, type: "component", source: "", ctx @@ -4694,7 +4681,7 @@ return block; } - function instance$1c($$self, $$props, $$invalidate) { + function instance$1b($$self, $$props, $$invalidate) { let $urls; validate_store(urls, 'urls'); component_subscribe($$self, urls, $$value => $$invalidate(21, $urls = $$value)); @@ -4840,7 +4827,7 @@ constructor(options) { super(options); - init(this, options, instance$1c, create_fragment$1c, safe_not_equal, { + init(this, options, instance$1b, create_fragment$1b, safe_not_equal, { ref: 0, extraSmall: 1, small: 2, @@ -4860,7 +4847,7 @@ component: this, tagName: "Button", options, - id: create_fragment$1c.name + id: create_fragment$1b.name }); } @@ -4970,7 +4957,7 @@ } /* ui/components/Notification.svelte generated by Svelte v4.2.19 */ - const file$10 = "ui/components/Notification.svelte"; + const file$_ = "ui/components/Notification.svelte"; const get_details_slot_changes = dirty => ({}); const get_details_slot_context = ctx => ({}); @@ -4989,10 +4976,10 @@ attr_dev(img, "class", "icon type"); if (!src_url_equal(img.src, img_src_value = /*iconURL*/ ctx[18])) attr_dev(img, "src", img_src_value); attr_dev(img, "alt", img_alt_value = "" + (/*notification*/ ctx[0].type + " icon")); - add_location(img, file$10, 97, 4, 2657); + add_location(img, file$_, 97, 4, 2657); attr_dev(div, "class", "icon type"); add_render_callback(() => /*div_elementresize_handler*/ ctx[25].call(div)); - add_location(div, file$10, 96, 3, 2598); + add_location(div, file$_, 96, 3, 2598); }, m: function mount(target, anchor) { insert_dev(target, div, anchor); @@ -5029,7 +5016,7 @@ } // (102:3) {#if heading || dismissible || expandable} - function create_if_block_2$b(ctx) { + function create_if_block_2$a(ctx) { let div; let t; let current_block_type_index; @@ -5057,7 +5044,7 @@ t = space(); if (if_block1) if_block1.c(); attr_dev(div, "class", "heading"); - add_location(div, file$10, 102, 4, 2847); + add_location(div, file$_, 102, 4, 2847); }, m: function mount(target, anchor) { insert_dev(target, div, anchor); @@ -5143,7 +5130,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_if_block_2$b.name, + id: create_if_block_2$a.name, type: "if", source: "(102:3) {#if heading || dismissible || expandable}", ctx @@ -5158,7 +5145,7 @@ function select_block_type(ctx, dirty) { if (/*plainHeading*/ ctx[10]) return create_if_block_7$5; - return create_else_block$f; + return create_else_block$d; } let current_block_type = select_block_type(ctx); @@ -5207,13 +5194,13 @@ } // (107:6) {:else} - function create_else_block$f(ctx) { + function create_else_block$d(ctx) { let h3; const block = { c: function create() { h3 = element("h3"); - add_location(h3, file$10, 107, 7, 2964); + add_location(h3, file$_, 107, 7, 2964); }, m: function mount(target, anchor) { insert_dev(target, h3, anchor); @@ -5230,7 +5217,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_else_block$f.name, + id: create_else_block$d.name, type: "else", source: "(107:6) {:else}", ctx @@ -5246,7 +5233,7 @@ const block = { c: function create() { p = element("p"); - add_location(p, file$10, 105, 7, 2920); + add_location(p, file$_, 105, 7, 2920); }, m: function mount(target, anchor) { insert_dev(target, p, anchor); @@ -5284,7 +5271,7 @@ button = element("button"); attr_dev(button, "class", "icon close"); attr_dev(button, "title", button_title_value = /*$strings*/ ctx[19]["dismiss_notice"]); - add_location(button, file$10, 116, 6, 3529); + add_location(button, file$_, 116, 6, 3529); }, m: function mount(target, anchor) { insert_dev(target, button, anchor); @@ -5414,7 +5401,7 @@ t1 = space(); create_component(button1.$$.fragment); attr_dev(button0, "class", "dismiss"); - add_location(button0, file$10, 111, 6, 3055); + add_location(button0, file$_, 111, 6, 3055); }, m: function mount(target, anchor) { insert_dev(target, button0, anchor); @@ -5484,13 +5471,13 @@ } // (122:3) {#if extra} - function create_if_block_1$k(ctx) { + function create_if_block_1$h(ctx) { let p; const block = { c: function create() { p = element("p"); - add_location(p, file$10, 122, 4, 3727); + add_location(p, file$_, 122, 4, 3727); }, m: function mount(target, anchor) { insert_dev(target, p, anchor); @@ -5507,7 +5494,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_if_block_1$k.name, + id: create_if_block_1$h.name, type: "if", source: "(122:3) {#if extra}", ctx @@ -5517,14 +5504,14 @@ } // (125:3) {#if linksHTML} - function create_if_block$B(ctx) { + function create_if_block$z(ctx) { let p; const block = { c: function create() { p = element("p"); attr_dev(p, "class", "links"); - add_location(p, file$10, 125, 4, 3780); + add_location(p, file$_, 125, 4, 3780); }, m: function mount(target, anchor) { insert_dev(target, p, anchor); @@ -5541,7 +5528,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_if_block$B.name, + id: create_if_block$z.name, type: "if", source: "(125:3) {#if linksHTML}", ctx @@ -5550,7 +5537,7 @@ return block; } - function create_fragment$1b(ctx) { + function create_fragment$1a(ctx) { let div2; let div1; let t0; @@ -5562,11 +5549,11 @@ let t4; let current; let if_block0 = /*iconURL*/ ctx[18] && create_if_block_8$5(ctx); - let if_block1 = (/*heading*/ ctx[8] || /*dismissible*/ ctx[9] || /*expandable*/ ctx[12]) && create_if_block_2$b(ctx); + let if_block1 = (/*heading*/ ctx[8] || /*dismissible*/ ctx[9] || /*expandable*/ ctx[12]) && create_if_block_2$a(ctx); const default_slot_template = /*#slots*/ ctx[24].default; const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[23], null); - let if_block2 = /*extra*/ ctx[11] && create_if_block_1$k(ctx); - let if_block3 = /*linksHTML*/ ctx[16] && create_if_block$B(ctx); + let if_block2 = /*extra*/ ctx[11] && create_if_block_1$h(ctx); + let if_block3 = /*linksHTML*/ ctx[16] && create_if_block$z(ctx); const details_slot_template = /*#slots*/ ctx[24].details; const details_slot = create_slot(details_slot_template, ctx, /*$$scope*/ ctx[23], get_details_slot_context); @@ -5588,9 +5575,9 @@ if (details_slot) details_slot.c(); attr_dev(div0, "class", "body"); add_render_callback(() => /*div0_elementresize_handler*/ ctx[29].call(div0)); - add_location(div0, file$10, 100, 2, 2747); + add_location(div0, file$_, 100, 2, 2747); attr_dev(div1, "class", "content"); - add_location(div1, file$10, 94, 1, 2557); + add_location(div1, file$_, 94, 1, 2557); attr_dev(div2, "class", "notification " + /*classes*/ ctx[20]); toggle_class(div2, "inline", /*inline*/ ctx[3]); toggle_class(div2, "wordpress", /*wordpress*/ ctx[4]); @@ -5601,7 +5588,7 @@ toggle_class(div2, "multiline", /*multiline*/ ctx[17]); toggle_class(div2, "expandable", /*expandable*/ ctx[12]); toggle_class(div2, "expanded", /*expanded*/ ctx[1]); - add_location(div2, file$10, 82, 0, 2380); + add_location(div2, file$_, 82, 0, 2380); }, l: function claim(nodes) { throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option"); @@ -5654,7 +5641,7 @@ transition_in(if_block1, 1); } } else { - if_block1 = create_if_block_2$b(ctx); + if_block1 = create_if_block_2$a(ctx); if_block1.c(); transition_in(if_block1, 1); if_block1.m(div0, t1); @@ -5688,7 +5675,7 @@ if (if_block2) { if_block2.p(ctx, dirty); } else { - if_block2 = create_if_block_1$k(ctx); + if_block2 = create_if_block_1$h(ctx); if_block2.c(); if_block2.m(div0, t3); } @@ -5701,7 +5688,7 @@ if (if_block3) { if_block3.p(ctx, dirty); } else { - if_block3 = create_if_block$B(ctx); + if_block3 = create_if_block$z(ctx); if_block3.c(); if_block3.m(div0, null); } @@ -5791,7 +5778,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_fragment$1b.name, + id: create_fragment$1a.name, type: "component", source: "", ctx @@ -5808,7 +5795,7 @@ return ""; } - function instance$1b($$self, $$props, $$invalidate) { + function instance$1a($$self, $$props, $$invalidate) { let iconURL; let multiline; let linksHTML; @@ -6036,8 +6023,8 @@ init( this, options, - instance$1b, - create_fragment$1b, + instance$1a, + create_fragment$1a, safe_not_equal, { notification: 0, @@ -6064,7 +6051,7 @@ component: this, tagName: "Notification", options, - id: create_fragment$1b.name + id: create_fragment$1a.name }); } @@ -6192,7 +6179,7 @@ /* ui/components/Notifications.svelte generated by Svelte v4.2.19 */ const { Object: Object_1$7 } = globals; - const file$$ = "ui/components/Notifications.svelte"; + const file$Z = "ui/components/Notifications.svelte"; function get_each_context$e(ctx, list, i) { const child_ctx = ctx.slice(); @@ -6201,7 +6188,7 @@ } // (22:0) {#if $notifications.length && Object.values( $notifications ).filter( notification => renderNotification( notification ) ).length} - function create_if_block$A(ctx) { + function create_if_block$y(ctx) { let div; let each_blocks = []; let each_1_lookup = new Map(); @@ -6226,7 +6213,7 @@ attr_dev(div, "id", "notifications"); attr_dev(div, "class", "notifications wrapper"); - add_location(div, file$$, 22, 1, 793); + add_location(div, file$Z, 22, 1, 793); }, m: function mount(target, anchor) { insert_dev(target, div, anchor); @@ -6277,7 +6264,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_if_block$A.name, + id: create_if_block$y.name, type: "if", source: "(22:0) {#if $notifications.length && Object.values( $notifications ).filter( notification => renderNotification( notification ) ).length}", ctx @@ -6287,7 +6274,7 @@ } // (25:3) {#if renderNotification( notification )} - function create_if_block_1$j(ctx) { + function create_if_block_1$g(ctx) { let switch_instance; let switch_instance_anchor; let current; @@ -6297,7 +6284,7 @@ return { props: { notification: /*notification*/ ctx[6], - $$slots: { default: [create_default_slot$H] }, + $$slots: { default: [create_default_slot$G] }, $$scope: { ctx } }, $$inline: true @@ -6370,7 +6357,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_if_block_1$j.name, + id: create_if_block_1$g.name, type: "if", source: "(25:3) {#if renderNotification( notification )}", ctx @@ -6380,14 +6367,14 @@ } // (27:5) {#if notification.message} - function create_if_block_2$a(ctx) { + function create_if_block_2$9(ctx) { let p; let raw_value = /*notification*/ ctx[6].message + ""; const block = { c: function create() { p = element("p"); - add_location(p, file$$, 27, 6, 1065); + add_location(p, file$Z, 27, 6, 1065); }, m: function mount(target, anchor) { insert_dev(target, p, anchor); @@ -6404,7 +6391,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_if_block_2$a.name, + id: create_if_block_2$9.name, type: "if", source: "(27:5) {#if notification.message}", ctx @@ -6414,9 +6401,9 @@ } // (26:4) - function create_default_slot$H(ctx) { + function create_default_slot$G(ctx) { let t; - let if_block = /*notification*/ ctx[6].message && create_if_block_2$a(ctx); + let if_block = /*notification*/ ctx[6].message && create_if_block_2$9(ctx); const block = { c: function create() { @@ -6432,7 +6419,7 @@ if (if_block) { if_block.p(ctx, dirty); } else { - if_block = create_if_block_2$a(ctx); + if_block = create_if_block_2$9(ctx); if_block.c(); if_block.m(t.parentNode, t); } @@ -6452,7 +6439,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_default_slot$H.name, + id: create_default_slot$G.name, type: "slot", source: "(26:4) ", ctx @@ -6467,7 +6454,7 @@ let show_if = /*renderNotification*/ ctx[2](/*notification*/ ctx[6]); let if_block_anchor; let current; - let if_block = show_if && create_if_block_1$j(ctx); + let if_block = show_if && create_if_block_1$g(ctx); const block = { key: key_1, @@ -6496,7 +6483,7 @@ transition_in(if_block, 1); } } else { - if_block = create_if_block_1$j(ctx); + if_block = create_if_block_1$g(ctx); if_block.c(); transition_in(if_block, 1); if_block.m(if_block_anchor.parentNode, if_block_anchor); @@ -6541,11 +6528,11 @@ return block; } - function create_fragment$1a(ctx) { + function create_fragment$19(ctx) { let show_if = /*$notifications*/ ctx[1].length && Object.values(/*$notifications*/ ctx[1]).filter(/*func*/ ctx[5]).length; let if_block_anchor; let current; - let if_block = show_if && create_if_block$A(ctx); + let if_block = show_if && create_if_block$y(ctx); const block = { c: function create() { @@ -6571,7 +6558,7 @@ transition_in(if_block, 1); } } else { - if_block = create_if_block$A(ctx); + if_block = create_if_block$y(ctx); if_block.c(); transition_in(if_block, 1); if_block.m(if_block_anchor.parentNode, if_block_anchor); @@ -6606,7 +6593,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_fragment$1a.name, + id: create_fragment$19.name, type: "component", source: "", ctx @@ -6615,7 +6602,7 @@ return block; } - function instance$1a($$self, $$props, $$invalidate) { + function instance$19($$self, $$props, $$invalidate) { let $notifications; validate_store(notifications, 'notifications'); component_subscribe($$self, notifications, $$value => $$invalidate(1, $notifications = $$value)); @@ -6676,13 +6663,13 @@ class Notifications extends SvelteComponentDev { constructor(options) { super(options); - init(this, options, instance$1a, create_fragment$1a, safe_not_equal, { component: 0, tab: 3, tabParent: 4 }); + init(this, options, instance$19, create_fragment$19, safe_not_equal, { component: 0, tab: 3, tabParent: 4 }); dispatch_dev("SvelteRegisterComponent", { component: this, tagName: "Notifications", options, - id: create_fragment$1a.name + id: create_fragment$19.name }); } @@ -6712,10 +6699,10 @@ } /* ui/components/SubNavItem.svelte generated by Svelte v4.2.19 */ - const file$_ = "ui/components/SubNavItem.svelte"; + const file$Y = "ui/components/SubNavItem.svelte"; // (26:2) {#if showIcon} - function create_if_block$z(ctx) { + function create_if_block$x(ctx) { let div; let img; let img_src_value; @@ -6729,9 +6716,9 @@ attr_dev(img, "class", "notice-icon svelte-jtkdoa"); if (!src_url_equal(img.src, img_src_value = /*iconUrl*/ ctx[4])) attr_dev(img, "src", img_src_value); attr_dev(img, "alt", img_alt_value = /*page*/ ctx[0].noticeIcon); - add_location(img, file$_, 27, 4, 799); + add_location(img, file$Y, 27, 4, 799); attr_dev(div, "class", div_class_value = "notice-icon-wrapper notice-icon-" + /*page*/ ctx[0].noticeIcon + " svelte-jtkdoa"); - add_location(div, file$_, 26, 3, 731); + add_location(div, file$Y, 26, 3, 731); }, m: function mount(target, anchor) { insert_dev(target, div, anchor); @@ -6759,7 +6746,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_if_block$z.name, + id: create_if_block$x.name, type: "if", source: "(26:2) {#if showIcon}", ctx @@ -6768,7 +6755,7 @@ return block; } - function create_fragment$19(ctx) { + function create_fragment$18(ctx) { let li; let a; let t0_value = /*page*/ ctx[0].title() + ""; @@ -6778,7 +6765,7 @@ let a_title_value; let mounted; let dispose; - let if_block = /*showIcon*/ ctx[1] && create_if_block$z(ctx); + let if_block = /*showIcon*/ ctx[1] && create_if_block$x(ctx); const block = { c: function create() { @@ -6789,13 +6776,13 @@ if (if_block) if_block.c(); attr_dev(a, "href", a_href_value = /*page*/ ctx[0].route); attr_dev(a, "title", a_title_value = /*page*/ ctx[0].title()); - add_location(a, file$_, 15, 1, 489); + add_location(a, file$Y, 15, 1, 489); attr_dev(li, "class", "subnav-item"); toggle_class(li, "active", /*$location*/ ctx[5] === /*page*/ ctx[0].route); toggle_class(li, "focus", /*focus*/ ctx[2]); toggle_class(li, "hover", /*hover*/ ctx[3]); toggle_class(li, "has-icon", /*showIcon*/ ctx[1]); - add_location(li, file$_, 14, 0, 373); + add_location(li, file$Y, 14, 0, 373); }, l: function claim(nodes) { throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option"); @@ -6826,7 +6813,7 @@ if (if_block) { if_block.p(ctx, dirty); } else { - if_block = create_if_block$z(ctx); + if_block = create_if_block$x(ctx); if_block.c(); if_block.m(a, null); } @@ -6874,7 +6861,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_fragment$19.name, + id: create_fragment$18.name, type: "component", source: "", ctx @@ -6883,7 +6870,7 @@ return block; } - function instance$19($$self, $$props, $$invalidate) { + function instance$18($$self, $$props, $$invalidate) { let showIcon; let iconUrl; let $urls; @@ -6974,13 +6961,13 @@ class SubNavItem extends SvelteComponentDev { constructor(options) { super(options); - init(this, options, instance$19, create_fragment$19, safe_not_equal, { page: 0 }); + init(this, options, instance$18, create_fragment$18, safe_not_equal, { page: 0 }); dispatch_dev("SvelteRegisterComponent", { component: this, tagName: "SubNavItem", options, - id: create_fragment$19.name + id: create_fragment$18.name }); } @@ -6994,7 +6981,7 @@ } /* ui/components/SubNav.svelte generated by Svelte v4.2.19 */ - const file$Z = "ui/components/SubNav.svelte"; + const file$X = "ui/components/SubNav.svelte"; function get_each_context$d(ctx, list, i) { const child_ctx = ctx.slice(); @@ -7004,7 +6991,7 @@ } // (13:0) {#if displayItems} - function create_if_block$y(ctx) { + function create_if_block$w(ctx) { let ul; let ul_class_value; let current; @@ -7030,7 +7017,7 @@ attr_dev(ul, "class", ul_class_value = "subnav " + /*name*/ ctx[0]); toggle_class(ul, "subpage", /*subpage*/ ctx[1]); toggle_class(ul, "progress", /*progress*/ ctx[2]); - add_location(ul, file$Z, 13, 1, 361); + add_location(ul, file$X, 13, 1, 361); }, m: function mount(target, anchor) { insert_dev(target, ul, anchor); @@ -7112,7 +7099,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_if_block$y.name, + id: create_if_block$w.name, type: "if", source: "(13:0) {#if displayItems}", ctx @@ -7122,7 +7109,7 @@ } // (18:3) {#if progress && index < (displayItems.length - 1)} - function create_if_block_1$i(ctx) { + function create_if_block_1$f(ctx) { let li; let img; let img_src_value; @@ -7135,9 +7122,9 @@ t = space(); if (!src_url_equal(img.src, img_src_value = /*$urls*/ ctx[4].assets + 'img/icon/subnav-arrow.svg')) attr_dev(img, "src", img_src_value); attr_dev(img, "alt", ""); - add_location(img, file$Z, 19, 5, 634); + add_location(img, file$X, 19, 5, 634); attr_dev(li, "class", "step-arrow"); - add_location(li, file$Z, 18, 4, 605); + add_location(li, file$X, 18, 4, 605); }, m: function mount(target, anchor) { insert_dev(target, li, anchor); @@ -7158,7 +7145,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_if_block_1$i.name, + id: create_if_block_1$f.name, type: "if", source: "(18:3) {#if progress && index < (displayItems.length - 1)}", ctx @@ -7179,7 +7166,7 @@ $$inline: true }); - let if_block = /*progress*/ ctx[2] && /*index*/ ctx[8] < /*displayItems*/ ctx[3].length - 1 && create_if_block_1$i(ctx); + let if_block = /*progress*/ ctx[2] && /*index*/ ctx[8] < /*displayItems*/ ctx[3].length - 1 && create_if_block_1$f(ctx); const block = { c: function create() { @@ -7204,7 +7191,7 @@ if (if_block) { if_block.p(ctx, dirty); } else { - if_block = create_if_block_1$i(ctx); + if_block = create_if_block_1$f(ctx); if_block.c(); if_block.m(if_block_anchor.parentNode, if_block_anchor); } @@ -7244,10 +7231,10 @@ return block; } - function create_fragment$18(ctx) { + function create_fragment$17(ctx) { let if_block_anchor; let current; - let if_block = /*displayItems*/ ctx[3] && create_if_block$y(ctx); + let if_block = /*displayItems*/ ctx[3] && create_if_block$w(ctx); const block = { c: function create() { @@ -7271,7 +7258,7 @@ transition_in(if_block, 1); } } else { - if_block = create_if_block$y(ctx); + if_block = create_if_block$w(ctx); if_block.c(); transition_in(if_block, 1); if_block.m(if_block_anchor.parentNode, if_block_anchor); @@ -7306,7 +7293,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_fragment$18.name, + id: create_fragment$17.name, type: "component", source: "", ctx @@ -7315,7 +7302,7 @@ return block; } - function instance$18($$self, $$props, $$invalidate) { + function instance$17($$self, $$props, $$invalidate) { let displayItems; let $urls; validate_store(urls, 'urls'); @@ -7375,7 +7362,7 @@ constructor(options) { super(options); - init(this, options, instance$18, create_fragment$18, safe_not_equal, { + init(this, options, instance$17, create_fragment$17, safe_not_equal, { name: 0, items: 5, subpage: 1, @@ -7386,7 +7373,7 @@ component: this, tagName: "SubNav", options, - id: create_fragment$18.name + id: create_fragment$17.name }); } @@ -7424,10 +7411,10 @@ } /* ui/components/SubPages.svelte generated by Svelte v4.2.19 */ - const file$Y = "ui/components/SubPages.svelte"; + const file$W = "ui/components/SubPages.svelte"; // (9:0) {#if routes} - function create_if_block$x(ctx) { + function create_if_block$v(ctx) { let div; let router; let t; @@ -7453,7 +7440,7 @@ t = space(); if (default_slot) default_slot.c(); attr_dev(div, "class", div_class_value = "" + (/*name*/ ctx[0] + "-page wrapper")); - add_location(div, file$Y, 9, 1, 152); + add_location(div, file$W, 9, 1, 152); }, m: function mount(target, anchor) { insert_dev(target, div, anchor); @@ -7514,7 +7501,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_if_block$x.name, + id: create_if_block$v.name, type: "if", source: "(9:0) {#if routes}", ctx @@ -7523,10 +7510,10 @@ return block; } - function create_fragment$17(ctx) { + function create_fragment$16(ctx) { let if_block_anchor; let current; - let if_block = /*routes*/ ctx[2] && create_if_block$x(ctx); + let if_block = /*routes*/ ctx[2] && create_if_block$v(ctx); const block = { c: function create() { @@ -7550,7 +7537,7 @@ transition_in(if_block, 1); } } else { - if_block = create_if_block$x(ctx); + if_block = create_if_block$v(ctx); if_block.c(); transition_in(if_block, 1); if_block.m(if_block_anchor.parentNode, if_block_anchor); @@ -7585,7 +7572,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_fragment$17.name, + id: create_fragment$16.name, type: "component", source: "", ctx @@ -7594,7 +7581,7 @@ return block; } - function instance$17($$self, $$props, $$invalidate) { + function instance$16($$self, $$props, $$invalidate) { let { $$slots: slots = {}, $$scope } = $$props; validate_slots('SubPages', slots, ['default']); let { name = "sub" } = $$props; @@ -7635,13 +7622,13 @@ class SubPages extends SvelteComponentDev { constructor(options) { super(options); - init(this, options, instance$17, create_fragment$17, safe_not_equal, { name: 0, prefix: 1, routes: 2 }); + init(this, options, instance$16, create_fragment$16, safe_not_equal, { name: 0, prefix: 1, routes: 2 }); dispatch_dev("SvelteRegisterComponent", { component: this, tagName: "SubPages", options, - id: create_fragment$17.name + id: create_fragment$16.name }); } @@ -7779,9 +7766,9 @@ } /* ui/components/SubPage.svelte generated by Svelte v4.2.19 */ - const file$X = "ui/components/SubPage.svelte"; + const file$V = "ui/components/SubPage.svelte"; - function create_fragment$16(ctx) { + function create_fragment$15(ctx) { let div; let active_action; let current; @@ -7795,7 +7782,7 @@ div = element("div"); if (default_slot) default_slot.c(); attr_dev(div, "class", /*name*/ ctx[0]); - add_location(div, file$X, 7, 0, 117); + add_location(div, file$V, 7, 0, 117); }, l: function claim(nodes) { throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option"); @@ -7858,7 +7845,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_fragment$16.name, + id: create_fragment$15.name, type: "component", source: "", ctx @@ -7867,7 +7854,7 @@ return block; } - function instance$16($$self, $$props, $$invalidate) { + function instance$15($$self, $$props, $$invalidate) { let { $$slots: slots = {}, $$scope } = $$props; validate_slots('SubPage', slots, ['default']); let { name = "" } = $$props; @@ -7901,13 +7888,13 @@ class SubPage extends SvelteComponentDev { constructor(options) { super(options); - init(this, options, instance$16, create_fragment$16, safe_not_equal, { name: 0, route: 1 }); + init(this, options, instance$15, create_fragment$15, safe_not_equal, { name: 0, route: 1 }); dispatch_dev("SvelteRegisterComponent", { component: this, tagName: "SubPage", options, - id: create_fragment$16.name + id: create_fragment$15.name }); } @@ -8034,9 +8021,9 @@ } /* ui/components/PanelContainer.svelte generated by Svelte v4.2.19 */ - const file$W = "ui/components/PanelContainer.svelte"; + const file$U = "ui/components/PanelContainer.svelte"; - function create_fragment$15(ctx) { + function create_fragment$14(ctx) { let div; let current; const default_slot_template = /*#slots*/ ctx[2].default; @@ -8047,7 +8034,7 @@ div = element("div"); if (default_slot) default_slot.c(); attr_dev(div, "class", "panel-container " + /*classes*/ ctx[0]); - add_location(div, file$W, 4, 0, 73); + add_location(div, file$U, 4, 0, 73); }, l: function claim(nodes) { throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option"); @@ -8097,7 +8084,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_fragment$15.name, + id: create_fragment$14.name, type: "component", source: "", ctx @@ -8106,7 +8093,7 @@ return block; } - function instance$15($$self, $$props, $$invalidate) { + function instance$14($$self, $$props, $$invalidate) { let { $$slots: slots = {}, $$scope } = $$props; validate_slots('PanelContainer', slots, ['default']); const classes = $$props.class ? $$props.class : ""; @@ -8133,29 +8120,29 @@ class PanelContainer extends SvelteComponentDev { constructor(options) { super(options); - init(this, options, instance$15, create_fragment$15, safe_not_equal, {}); + init(this, options, instance$14, create_fragment$14, safe_not_equal, {}); dispatch_dev("SvelteRegisterComponent", { component: this, tagName: "PanelContainer", options, - id: create_fragment$15.name + id: create_fragment$14.name }); } } /* ui/components/PanelRow.svelte generated by Svelte v4.2.19 */ - const file$V = "ui/components/PanelRow.svelte"; + const file$T = "ui/components/PanelRow.svelte"; // (10:1) {#if gradient} - function create_if_block$w(ctx) { + function create_if_block$u(ctx) { let div; const block = { c: function create() { div = element("div"); attr_dev(div, "class", "gradient svelte-41r5oq"); - add_location(div, file$V, 10, 2, 238); + add_location(div, file$T, 10, 2, 238); }, m: function mount(target, anchor) { insert_dev(target, div, anchor); @@ -8169,7 +8156,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_if_block$w.name, + id: create_if_block$u.name, type: "if", source: "(10:1) {#if gradient}", ctx @@ -8178,11 +8165,11 @@ return block; } - function create_fragment$14(ctx) { + function create_fragment$13(ctx) { let div; let t; let current; - let if_block = /*gradient*/ ctx[2] && create_if_block$w(ctx); + let if_block = /*gradient*/ ctx[2] && create_if_block$u(ctx); const default_slot_template = /*#slots*/ ctx[5].default; const default_slot = create_slot(default_slot_template, ctx, /*$$scope*/ ctx[4], null); @@ -8195,7 +8182,7 @@ attr_dev(div, "class", "panel-row " + /*classes*/ ctx[3] + " svelte-41r5oq"); toggle_class(div, "header", /*header*/ ctx[0]); toggle_class(div, "footer", /*footer*/ ctx[1]); - add_location(div, file$V, 8, 0, 160); + add_location(div, file$T, 8, 0, 160); }, l: function claim(nodes) { throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option"); @@ -8214,7 +8201,7 @@ p: function update(ctx, [dirty]) { if (/*gradient*/ ctx[2]) { if (if_block) ; else { - if_block = create_if_block$w(ctx); + if_block = create_if_block$u(ctx); if_block.c(); if_block.m(div, t); } @@ -8267,7 +8254,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_fragment$14.name, + id: create_fragment$13.name, type: "component", source: "", ctx @@ -8276,7 +8263,7 @@ return block; } - function instance$14($$self, $$props, $$invalidate) { + function instance$13($$self, $$props, $$invalidate) { let { $$slots: slots = {}, $$scope } = $$props; validate_slots('PanelRow', slots, ['default']); const classes = $$props.class ? $$props.class : ""; @@ -8312,13 +8299,13 @@ class PanelRow extends SvelteComponentDev { constructor(options) { super(options); - init(this, options, instance$14, create_fragment$14, safe_not_equal, { header: 0, footer: 1, gradient: 2 }); + init(this, options, instance$13, create_fragment$13, safe_not_equal, { header: 0, footer: 1, gradient: 2 }); dispatch_dev("SvelteRegisterComponent", { component: this, tagName: "PanelRow", options, - id: create_fragment$14.name + id: create_fragment$13.name }); } @@ -8348,10 +8335,10 @@ } /* ui/components/DefinedInWPConfig.svelte generated by Svelte v4.2.19 */ - const file$U = "ui/components/DefinedInWPConfig.svelte"; + const file$S = "ui/components/DefinedInWPConfig.svelte"; // (7:0) {#if defined} - function create_if_block$v(ctx) { + function create_if_block$t(ctx) { let p; let t_value = /*$strings*/ ctx[1].defined_in_wp_config + ""; let t; @@ -8361,7 +8348,7 @@ p = element("p"); t = text(t_value); attr_dev(p, "class", "wp-config"); - add_location(p, file$U, 7, 1, 104); + add_location(p, file$S, 7, 1, 104); }, m: function mount(target, anchor) { insert_dev(target, p, anchor); @@ -8379,7 +8366,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_if_block$v.name, + id: create_if_block$t.name, type: "if", source: "(7:0) {#if defined}", ctx @@ -8388,9 +8375,9 @@ return block; } - function create_fragment$13(ctx) { + function create_fragment$12(ctx) { let if_block_anchor; - let if_block = /*defined*/ ctx[0] && create_if_block$v(ctx); + let if_block = /*defined*/ ctx[0] && create_if_block$t(ctx); const block = { c: function create() { @@ -8409,7 +8396,7 @@ if (if_block) { if_block.p(ctx, dirty); } else { - if_block = create_if_block$v(ctx); + if_block = create_if_block$t(ctx); if_block.c(); if_block.m(if_block_anchor.parentNode, if_block_anchor); } @@ -8431,7 +8418,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_fragment$13.name, + id: create_fragment$12.name, type: "component", source: "", ctx @@ -8440,7 +8427,7 @@ return block; } - function instance$13($$self, $$props, $$invalidate) { + function instance$12($$self, $$props, $$invalidate) { let $strings; validate_store(strings, 'strings'); component_subscribe($$self, strings, $$value => $$invalidate(1, $strings = $$value)); @@ -8473,13 +8460,13 @@ class DefinedInWPConfig extends SvelteComponentDev { constructor(options) { super(options); - init(this, options, instance$13, create_fragment$13, safe_not_equal, { defined: 0 }); + init(this, options, instance$12, create_fragment$12, safe_not_equal, { defined: 0 }); dispatch_dev("SvelteRegisterComponent", { component: this, tagName: "DefinedInWPConfig", options, - id: create_fragment$13.name + id: create_fragment$12.name }); } @@ -8493,9 +8480,9 @@ } /* ui/components/ToggleSwitch.svelte generated by Svelte v4.2.19 */ - const file$T = "ui/components/ToggleSwitch.svelte"; + const file$R = "ui/components/ToggleSwitch.svelte"; - function create_fragment$12(ctx) { + function create_fragment$11(ctx) { let div; let input; let t; @@ -8516,13 +8503,13 @@ attr_dev(input, "type", "checkbox"); attr_dev(input, "id", /*name*/ ctx[1]); input.disabled = /*disabled*/ ctx[2]; - add_location(input, file$T, 7, 1, 155); + add_location(input, file$R, 7, 1, 155); attr_dev(label, "class", "toggle-label"); attr_dev(label, "for", /*name*/ ctx[1]); - add_location(label, file$T, 13, 1, 235); + add_location(label, file$R, 13, 1, 235); attr_dev(div, "class", "toggle-switch"); toggle_class(div, "locked", /*disabled*/ ctx[2]); - add_location(div, file$T, 6, 0, 102); + add_location(div, file$R, 6, 0, 102); }, l: function claim(nodes) { throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option"); @@ -8603,7 +8590,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_fragment$12.name, + id: create_fragment$11.name, type: "component", source: "", ctx @@ -8612,7 +8599,7 @@ return block; } - function instance$12($$self, $$props, $$invalidate) { + function instance$11($$self, $$props, $$invalidate) { let { $$slots: slots = {}, $$scope } = $$props; validate_slots('ToggleSwitch', slots, ['default']); let { name = "" } = $$props; @@ -8654,13 +8641,13 @@ class ToggleSwitch extends SvelteComponentDev { constructor(options) { super(options); - init(this, options, instance$12, create_fragment$12, safe_not_equal, { name: 1, checked: 0, disabled: 2 }); + init(this, options, instance$11, create_fragment$11, safe_not_equal, { name: 1, checked: 0, disabled: 2 }); dispatch_dev("SvelteRegisterComponent", { component: this, tagName: "ToggleSwitch", options, - id: create_fragment$12.name + id: create_fragment$11.name }); } @@ -8690,10 +8677,10 @@ } /* ui/components/HelpButton.svelte generated by Svelte v4.2.19 */ - const file$S = "ui/components/HelpButton.svelte"; + const file$Q = "ui/components/HelpButton.svelte"; // (13:0) {#if url} - function create_if_block$u(ctx) { + function create_if_block$s(ctx) { let a; let img; let img_src_value; @@ -8705,13 +8692,13 @@ attr_dev(img, "class", "icon help"); if (!src_url_equal(img.src, img_src_value = /*$urls*/ ctx[2].assets + 'img/icon/help.svg')) attr_dev(img, "src", img_src_value); attr_dev(img, "alt", /*alt*/ ctx[3]); - add_location(img, file$S, 14, 2, 603); + add_location(img, file$Q, 14, 2, 603); attr_dev(a, "href", /*url*/ ctx[1]); attr_dev(a, "title", /*title*/ ctx[4]); attr_dev(a, "class", "help"); attr_dev(a, "target", "_blank"); attr_dev(a, "data-setting-key", /*key*/ ctx[0]); - add_location(a, file$S, 13, 1, 526); + add_location(a, file$Q, 13, 1, 526); }, m: function mount(target, anchor) { insert_dev(target, a, anchor); @@ -8739,7 +8726,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_if_block$u.name, + id: create_if_block$s.name, type: "if", source: "(13:0) {#if url}", ctx @@ -8748,9 +8735,9 @@ return block; } - function create_fragment$11(ctx) { + function create_fragment$10(ctx) { let if_block_anchor; - let if_block = /*url*/ ctx[1] && create_if_block$u(ctx); + let if_block = /*url*/ ctx[1] && create_if_block$s(ctx); const block = { c: function create() { @@ -8769,7 +8756,7 @@ if (if_block) { if_block.p(ctx, dirty); } else { - if_block = create_if_block$u(ctx); + if_block = create_if_block$s(ctx); if_block.c(); if_block.m(if_block_anchor.parentNode, if_block_anchor); } @@ -8791,7 +8778,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_fragment$11.name, + id: create_fragment$10.name, type: "component", source: "", ctx @@ -8800,7 +8787,7 @@ return block; } - function instance$11($$self, $$props, $$invalidate) { + function instance$10($$self, $$props, $$invalidate) { let $strings; let $docs; let $urls; @@ -8872,13 +8859,13 @@ class HelpButton extends SvelteComponentDev { constructor(options) { super(options); - init(this, options, instance$11, create_fragment$11, safe_not_equal, { key: 0, url: 1, desc: 5 }); + init(this, options, instance$10, create_fragment$10, safe_not_equal, { key: 0, url: 1, desc: 5 }); dispatch_dev("SvelteRegisterComponent", { component: this, tagName: "HelpButton", options, - id: create_fragment$11.name + id: create_fragment$10.name }); } @@ -8908,7 +8895,7 @@ } /* ui/components/Panel.svelte generated by Svelte v4.2.19 */ - const file$R = "ui/components/Panel.svelte"; + const file$P = "ui/components/Panel.svelte"; // (86:1) {#if !multi && heading} function create_if_block_6$4(ctx) { @@ -8948,9 +8935,9 @@ if (if_block) if_block.c(); t2 = space(); create_component(definedinwpconfig.$$.fragment); - add_location(h2, file$R, 87, 3, 2464); + add_location(h2, file$P, 87, 3, 2464); attr_dev(div, "class", "heading"); - add_location(div, file$R, 86, 2, 2439); + add_location(div, file$P, 86, 2, 2439); }, m: function mount(target, anchor) { insert_dev(target, div, anchor); @@ -9147,14 +9134,14 @@ } // (98:2) {#if multi && heading} - function create_if_block$t(ctx) { + function create_if_block$r(ctx) { let panelrow; let current; panelrow = new PanelRow({ props: { header: true, - $$slots: { default: [create_default_slot_1$r] }, + $$slots: { default: [create_default_slot_1$p] }, $$scope: { ctx } }, $$inline: true @@ -9193,7 +9180,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_if_block$t.name, + id: create_if_block$r.name, type: "if", source: "(98:2) {#if multi && heading}", ctx @@ -9203,7 +9190,7 @@ } // (108:4) {:else} - function create_else_block$e(ctx) { + function create_else_block$c(ctx) { let h3; let t; @@ -9211,7 +9198,7 @@ c: function create() { h3 = element("h3"); t = text(/*heading*/ ctx[3]); - add_location(h3, file$R, 108, 5, 3174); + add_location(h3, file$P, 108, 5, 3174); }, m: function mount(target, anchor) { insert_dev(target, h3, anchor); @@ -9231,7 +9218,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_else_block$e.name, + id: create_else_block$c.name, type: "else", source: "(108:4) {:else}", ctx @@ -9258,7 +9245,7 @@ let toggleswitch_props = { name: /*toggleName*/ ctx[7], disabled: /*toggleDisabled*/ ctx[18], - $$slots: { default: [create_default_slot_3$8] }, + $$slots: { default: [create_default_slot_3$7] }, $$scope: { ctx } }; @@ -9281,7 +9268,7 @@ t1 = text(/*heading*/ ctx[3]); attr_dev(h3, "class", "toggler svelte-k1tgof"); toggle_class(h3, "toggleDisabled", /*toggleDisabled*/ ctx[18]); - add_location(h3, file$R, 106, 5, 3070); + add_location(h3, file$P, 106, 5, 3070); }, m: function mount(target, anchor) { mount_component(toggleswitch, target, anchor); @@ -9350,7 +9337,7 @@ } // (101:5) - function create_default_slot_3$8(ctx) { + function create_default_slot_3$7(ctx) { let t; const block = { @@ -9372,7 +9359,7 @@ dispatch_dev("SvelteRegisterBlock", { block, - id: create_default_slot_3$8.name, + id: create_default_slot_3$7.name, type: "slot", source: "(101:5) ", ctx @@ -9391,7 +9378,7 @@ refresh: true, refreshing: /*refreshing*/ ctx[11], title: /*refreshDesc*/ ctx[10], - $$slots: { default: [create_default_slot_2$j] }, + $$slots: { default: [create_default_slot_2$i] }, $$scope: { ctx } }, $$inline: true @@ -9444,7 +9431,7 @@ } // (113:5)