Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93

Warning: Undefined array key "page_file_edit_line" in /home/sportsfever/public_html/filemanger/edit_text_line.php on line 32
/home/sportsfe.../httpdocs/clone/wp-inclu.../js/dist
File: components.js
}
[70500] Fix | Delete
}
[70501] Fix | Delete
render() {
[70502] Fix | Delete
const wrappedComponent = /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(WrappedComponent, {
[70503] Fix | Delete
...this.props,
[70504] Fix | Delete
...this.state.fallbackStyles
[70505] Fix | Delete
});
[70506] Fix | Delete
return this.props.node ? wrappedComponent : /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsxs)("div", {
[70507] Fix | Delete
ref: this.bindRef,
[70508] Fix | Delete
children: [" ", wrappedComponent, " "]
[70509] Fix | Delete
});
[70510] Fix | Delete
}
[70511] Fix | Delete
};
[70512] Fix | Delete
}, 'withFallbackStyles'));
[70513] Fix | Delete
[70514] Fix | Delete
;// CONCATENATED MODULE: external ["wp","hooks"]
[70515] Fix | Delete
const external_wp_hooks_namespaceObject = window["wp"]["hooks"];
[70516] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/components/build-module/higher-order/with-filters/index.js
[70517] Fix | Delete
/**
[70518] Fix | Delete
* WordPress dependencies
[70519] Fix | Delete
*/
[70520] Fix | Delete
[70521] Fix | Delete
[70522] Fix | Delete
[70523] Fix | Delete
[70524] Fix | Delete
const ANIMATION_FRAME_PERIOD = 16;
[70525] Fix | Delete
[70526] Fix | Delete
/**
[70527] Fix | Delete
* Creates a higher-order component which adds filtering capability to the
[70528] Fix | Delete
* wrapped component. Filters get applied when the original component is about
[70529] Fix | Delete
* to be mounted. When a filter is added or removed that matches the hook name,
[70530] Fix | Delete
* the wrapped component re-renders.
[70531] Fix | Delete
*
[70532] Fix | Delete
* @param hookName Hook name exposed to be used by filters.
[70533] Fix | Delete
*
[70534] Fix | Delete
* @return Higher-order component factory.
[70535] Fix | Delete
*
[70536] Fix | Delete
* ```jsx
[70537] Fix | Delete
* import { withFilters } from '@wordpress/components';
[70538] Fix | Delete
* import { addFilter } from '@wordpress/hooks';
[70539] Fix | Delete
*
[70540] Fix | Delete
* const MyComponent = ( { title } ) => <h1>{ title }</h1>;
[70541] Fix | Delete
*
[70542] Fix | Delete
* const ComponentToAppend = () => <div>Appended component</div>;
[70543] Fix | Delete
*
[70544] Fix | Delete
* function withComponentAppended( FilteredComponent ) {
[70545] Fix | Delete
* return ( props ) => (
[70546] Fix | Delete
* <>
[70547] Fix | Delete
* <FilteredComponent { ...props } />
[70548] Fix | Delete
* <ComponentToAppend />
[70549] Fix | Delete
* </>
[70550] Fix | Delete
* );
[70551] Fix | Delete
* }
[70552] Fix | Delete
*
[70553] Fix | Delete
* addFilter(
[70554] Fix | Delete
* 'MyHookName',
[70555] Fix | Delete
* 'my-plugin/with-component-appended',
[70556] Fix | Delete
* withComponentAppended
[70557] Fix | Delete
* );
[70558] Fix | Delete
*
[70559] Fix | Delete
* const MyComponentWithFilters = withFilters( 'MyHookName' )( MyComponent );
[70560] Fix | Delete
* ```
[70561] Fix | Delete
*/
[70562] Fix | Delete
function withFilters(hookName) {
[70563] Fix | Delete
return (0,external_wp_compose_namespaceObject.createHigherOrderComponent)(OriginalComponent => {
[70564] Fix | Delete
const namespace = 'core/with-filters/' + hookName;
[70565] Fix | Delete
[70566] Fix | Delete
/**
[70567] Fix | Delete
* The component definition with current filters applied. Each instance
[70568] Fix | Delete
* reuse this shared reference as an optimization to avoid excessive
[70569] Fix | Delete
* calls to `applyFilters` when many instances exist.
[70570] Fix | Delete
*/
[70571] Fix | Delete
let FilteredComponent;
[70572] Fix | Delete
[70573] Fix | Delete
/**
[70574] Fix | Delete
* Initializes the FilteredComponent variable once, if not already
[70575] Fix | Delete
* assigned. Subsequent calls are effectively a noop.
[70576] Fix | Delete
*/
[70577] Fix | Delete
function ensureFilteredComponent() {
[70578] Fix | Delete
if (FilteredComponent === undefined) {
[70579] Fix | Delete
FilteredComponent = (0,external_wp_hooks_namespaceObject.applyFilters)(hookName, OriginalComponent);
[70580] Fix | Delete
}
[70581] Fix | Delete
}
[70582] Fix | Delete
class FilteredComponentRenderer extends external_wp_element_namespaceObject.Component {
[70583] Fix | Delete
constructor(props) {
[70584] Fix | Delete
super(props);
[70585] Fix | Delete
ensureFilteredComponent();
[70586] Fix | Delete
}
[70587] Fix | Delete
componentDidMount() {
[70588] Fix | Delete
FilteredComponentRenderer.instances.push(this);
[70589] Fix | Delete
[70590] Fix | Delete
// If there were previously no mounted instances for components
[70591] Fix | Delete
// filtered on this hook, add the hook handler.
[70592] Fix | Delete
if (FilteredComponentRenderer.instances.length === 1) {
[70593] Fix | Delete
(0,external_wp_hooks_namespaceObject.addAction)('hookRemoved', namespace, onHooksUpdated);
[70594] Fix | Delete
(0,external_wp_hooks_namespaceObject.addAction)('hookAdded', namespace, onHooksUpdated);
[70595] Fix | Delete
}
[70596] Fix | Delete
}
[70597] Fix | Delete
componentWillUnmount() {
[70598] Fix | Delete
FilteredComponentRenderer.instances = FilteredComponentRenderer.instances.filter(instance => instance !== this);
[70599] Fix | Delete
[70600] Fix | Delete
// If this was the last of the mounted components filtered on
[70601] Fix | Delete
// this hook, remove the hook handler.
[70602] Fix | Delete
if (FilteredComponentRenderer.instances.length === 0) {
[70603] Fix | Delete
(0,external_wp_hooks_namespaceObject.removeAction)('hookRemoved', namespace);
[70604] Fix | Delete
(0,external_wp_hooks_namespaceObject.removeAction)('hookAdded', namespace);
[70605] Fix | Delete
}
[70606] Fix | Delete
}
[70607] Fix | Delete
render() {
[70608] Fix | Delete
return /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(FilteredComponent, {
[70609] Fix | Delete
...this.props
[70610] Fix | Delete
});
[70611] Fix | Delete
}
[70612] Fix | Delete
}
[70613] Fix | Delete
FilteredComponentRenderer.instances = [];
[70614] Fix | Delete
[70615] Fix | Delete
/**
[70616] Fix | Delete
* Updates the FilteredComponent definition, forcing a render for each
[70617] Fix | Delete
* mounted instance. This occurs a maximum of once per animation frame.
[70618] Fix | Delete
*/
[70619] Fix | Delete
const throttledForceUpdate = (0,external_wp_compose_namespaceObject.debounce)(() => {
[70620] Fix | Delete
// Recreate the filtered component, only after delay so that it's
[70621] Fix | Delete
// computed once, even if many filters added.
[70622] Fix | Delete
FilteredComponent = (0,external_wp_hooks_namespaceObject.applyFilters)(hookName, OriginalComponent);
[70623] Fix | Delete
[70624] Fix | Delete
// Force each instance to render.
[70625] Fix | Delete
FilteredComponentRenderer.instances.forEach(instance => {
[70626] Fix | Delete
instance.forceUpdate();
[70627] Fix | Delete
});
[70628] Fix | Delete
}, ANIMATION_FRAME_PERIOD);
[70629] Fix | Delete
[70630] Fix | Delete
/**
[70631] Fix | Delete
* When a filter is added or removed for the matching hook name, each
[70632] Fix | Delete
* mounted instance should re-render with the new filters having been
[70633] Fix | Delete
* applied to the original component.
[70634] Fix | Delete
*
[70635] Fix | Delete
* @param updatedHookName Name of the hook that was updated.
[70636] Fix | Delete
*/
[70637] Fix | Delete
function onHooksUpdated(updatedHookName) {
[70638] Fix | Delete
if (updatedHookName === hookName) {
[70639] Fix | Delete
throttledForceUpdate();
[70640] Fix | Delete
}
[70641] Fix | Delete
}
[70642] Fix | Delete
return FilteredComponentRenderer;
[70643] Fix | Delete
}, 'withFilters');
[70644] Fix | Delete
}
[70645] Fix | Delete
[70646] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/components/build-module/higher-order/with-focus-return/index.js
[70647] Fix | Delete
/**
[70648] Fix | Delete
* WordPress dependencies
[70649] Fix | Delete
*/
[70650] Fix | Delete
[70651] Fix | Delete
[70652] Fix | Delete
[70653] Fix | Delete
[70654] Fix | Delete
/**
[70655] Fix | Delete
* Returns true if the given object is component-like. An object is component-
[70656] Fix | Delete
* like if it is an instance of wp.element.Component, or is a function.
[70657] Fix | Delete
*
[70658] Fix | Delete
* @param object Object to test.
[70659] Fix | Delete
*
[70660] Fix | Delete
* @return Whether object is component-like.
[70661] Fix | Delete
*/
[70662] Fix | Delete
[70663] Fix | Delete
function isComponentLike(object) {
[70664] Fix | Delete
return object instanceof external_wp_element_namespaceObject.Component || typeof object === 'function';
[70665] Fix | Delete
}
[70666] Fix | Delete
/**
[70667] Fix | Delete
* Higher Order Component used to be used to wrap disposable elements like
[70668] Fix | Delete
* sidebars, modals, dropdowns. When mounting the wrapped component, we track a
[70669] Fix | Delete
* reference to the current active element so we know where to restore focus
[70670] Fix | Delete
* when the component is unmounted.
[70671] Fix | Delete
*
[70672] Fix | Delete
* @param options The component to be enhanced with
[70673] Fix | Delete
* focus return behavior, or an object
[70674] Fix | Delete
* describing the component and the
[70675] Fix | Delete
* focus return characteristics.
[70676] Fix | Delete
*
[70677] Fix | Delete
* @return Higher Order Component with the focus restauration behaviour.
[70678] Fix | Delete
*/
[70679] Fix | Delete
/* harmony default export */ const with_focus_return = ((0,external_wp_compose_namespaceObject.createHigherOrderComponent)(
[70680] Fix | Delete
// @ts-expect-error TODO: Reconcile with intended `createHigherOrderComponent` types
[70681] Fix | Delete
options => {
[70682] Fix | Delete
const HoC = ({
[70683] Fix | Delete
onFocusReturn
[70684] Fix | Delete
} = {}) => WrappedComponent => {
[70685] Fix | Delete
const WithFocusReturn = props => {
[70686] Fix | Delete
const ref = (0,external_wp_compose_namespaceObject.useFocusReturn)(onFocusReturn);
[70687] Fix | Delete
return /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)("div", {
[70688] Fix | Delete
ref: ref,
[70689] Fix | Delete
children: /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(WrappedComponent, {
[70690] Fix | Delete
...props
[70691] Fix | Delete
})
[70692] Fix | Delete
});
[70693] Fix | Delete
};
[70694] Fix | Delete
return WithFocusReturn;
[70695] Fix | Delete
};
[70696] Fix | Delete
if (isComponentLike(options)) {
[70697] Fix | Delete
const WrappedComponent = options;
[70698] Fix | Delete
return HoC()(WrappedComponent);
[70699] Fix | Delete
}
[70700] Fix | Delete
return HoC(options);
[70701] Fix | Delete
}, 'withFocusReturn'));
[70702] Fix | Delete
const with_focus_return_Provider = ({
[70703] Fix | Delete
children
[70704] Fix | Delete
}) => {
[70705] Fix | Delete
external_wp_deprecated_default()('wp.components.FocusReturnProvider component', {
[70706] Fix | Delete
since: '5.7',
[70707] Fix | Delete
hint: 'This provider is not used anymore. You can just remove it from your codebase'
[70708] Fix | Delete
});
[70709] Fix | Delete
return children;
[70710] Fix | Delete
};
[70711] Fix | Delete
[70712] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/components/build-module/higher-order/with-notices/index.js
[70713] Fix | Delete
/**
[70714] Fix | Delete
* External dependencies
[70715] Fix | Delete
*/
[70716] Fix | Delete
[70717] Fix | Delete
[70718] Fix | Delete
/**
[70719] Fix | Delete
* WordPress dependencies
[70720] Fix | Delete
*/
[70721] Fix | Delete
[70722] Fix | Delete
[70723] Fix | Delete
[70724] Fix | Delete
/**
[70725] Fix | Delete
* Internal dependencies
[70726] Fix | Delete
*/
[70727] Fix | Delete
[70728] Fix | Delete
[70729] Fix | Delete
/**
[70730] Fix | Delete
* Override the default edit UI to include notices if supported.
[70731] Fix | Delete
*
[70732] Fix | Delete
* Wrapping the original component with `withNotices` encapsulates the component
[70733] Fix | Delete
* with the additional props `noticeOperations` and `noticeUI`.
[70734] Fix | Delete
*
[70735] Fix | Delete
* ```jsx
[70736] Fix | Delete
* import { withNotices, Button } from '@wordpress/components';
[70737] Fix | Delete
*
[70738] Fix | Delete
* const MyComponentWithNotices = withNotices(
[70739] Fix | Delete
* ( { noticeOperations, noticeUI } ) => {
[70740] Fix | Delete
* const addError = () =>
[70741] Fix | Delete
* noticeOperations.createErrorNotice( 'Error message' );
[70742] Fix | Delete
* return (
[70743] Fix | Delete
* <div>
[70744] Fix | Delete
* { noticeUI }
[70745] Fix | Delete
* <Button variant="secondary" onClick={ addError }>
[70746] Fix | Delete
* Add error
[70747] Fix | Delete
* </Button>
[70748] Fix | Delete
* </div>
[70749] Fix | Delete
* );
[70750] Fix | Delete
* }
[70751] Fix | Delete
* );
[70752] Fix | Delete
* ```
[70753] Fix | Delete
*
[70754] Fix | Delete
* @param OriginalComponent Original component.
[70755] Fix | Delete
*
[70756] Fix | Delete
* @return Wrapped component.
[70757] Fix | Delete
*/
[70758] Fix | Delete
/* harmony default export */ const with_notices = ((0,external_wp_compose_namespaceObject.createHigherOrderComponent)(OriginalComponent => {
[70759] Fix | Delete
function Component(props, ref) {
[70760] Fix | Delete
const [noticeList, setNoticeList] = (0,external_wp_element_namespaceObject.useState)([]);
[70761] Fix | Delete
const noticeOperations = (0,external_wp_element_namespaceObject.useMemo)(() => {
[70762] Fix | Delete
const createNotice = notice => {
[70763] Fix | Delete
const noticeToAdd = notice.id ? notice : {
[70764] Fix | Delete
...notice,
[70765] Fix | Delete
id: esm_browser_v4()
[70766] Fix | Delete
};
[70767] Fix | Delete
setNoticeList(current => [...current, noticeToAdd]);
[70768] Fix | Delete
};
[70769] Fix | Delete
return {
[70770] Fix | Delete
createNotice,
[70771] Fix | Delete
createErrorNotice: msg => {
[70772] Fix | Delete
// @ts-expect-error TODO: Missing `id`, potentially a bug
[70773] Fix | Delete
createNotice({
[70774] Fix | Delete
status: 'error',
[70775] Fix | Delete
content: msg
[70776] Fix | Delete
});
[70777] Fix | Delete
},
[70778] Fix | Delete
removeNotice: id => {
[70779] Fix | Delete
setNoticeList(current => current.filter(notice => notice.id !== id));
[70780] Fix | Delete
},
[70781] Fix | Delete
removeAllNotices: () => {
[70782] Fix | Delete
setNoticeList([]);
[70783] Fix | Delete
}
[70784] Fix | Delete
};
[70785] Fix | Delete
}, []);
[70786] Fix | Delete
const propsOut = {
[70787] Fix | Delete
...props,
[70788] Fix | Delete
noticeList,
[70789] Fix | Delete
noticeOperations,
[70790] Fix | Delete
noticeUI: noticeList.length > 0 && /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(list, {
[70791] Fix | Delete
className: "components-with-notices-ui",
[70792] Fix | Delete
notices: noticeList,
[70793] Fix | Delete
onRemove: noticeOperations.removeNotice
[70794] Fix | Delete
})
[70795] Fix | Delete
};
[70796] Fix | Delete
return isForwardRef ? /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(OriginalComponent, {
[70797] Fix | Delete
...propsOut,
[70798] Fix | Delete
ref: ref
[70799] Fix | Delete
}) : /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(OriginalComponent, {
[70800] Fix | Delete
...propsOut
[70801] Fix | Delete
});
[70802] Fix | Delete
}
[70803] Fix | Delete
let isForwardRef;
[70804] Fix | Delete
// @ts-expect-error - `render` will only be present when OriginalComponent was wrapped with forwardRef().
[70805] Fix | Delete
const {
[70806] Fix | Delete
render
[70807] Fix | Delete
} = OriginalComponent;
[70808] Fix | Delete
// Returns a forwardRef if OriginalComponent appears to be a forwardRef.
[70809] Fix | Delete
if (typeof render === 'function') {
[70810] Fix | Delete
isForwardRef = true;
[70811] Fix | Delete
return (0,external_wp_element_namespaceObject.forwardRef)(Component);
[70812] Fix | Delete
}
[70813] Fix | Delete
return Component;
[70814] Fix | Delete
}, 'withNotices'));
[70815] Fix | Delete
[70816] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@ariakit/react-core/esm/__chunks/YGMEBI3A.js
[70817] Fix | Delete
"use client";
[70818] Fix | Delete
[70819] Fix | Delete
[70820] Fix | Delete
[70821] Fix | Delete
[70822] Fix | Delete
[70823] Fix | Delete
// src/menu/menu-context.ts
[70824] Fix | Delete
[70825] Fix | Delete
var YGMEBI3A_menu = createStoreContext(
[70826] Fix | Delete
[CompositeContextProvider, HovercardContextProvider],
[70827] Fix | Delete
[CompositeScopedContextProvider, HovercardScopedContextProvider]
[70828] Fix | Delete
);
[70829] Fix | Delete
var useMenuContext = YGMEBI3A_menu.useContext;
[70830] Fix | Delete
var useMenuScopedContext = YGMEBI3A_menu.useScopedContext;
[70831] Fix | Delete
var useMenuProviderContext = YGMEBI3A_menu.useProviderContext;
[70832] Fix | Delete
var MenuContextProvider = YGMEBI3A_menu.ContextProvider;
[70833] Fix | Delete
var MenuScopedContextProvider = YGMEBI3A_menu.ScopedContextProvider;
[70834] Fix | Delete
var useMenuBarContext = (/* unused pure expression or super */ null && (useMenubarContext));
[70835] Fix | Delete
var useMenuBarScopedContext = (/* unused pure expression or super */ null && (useMenubarScopedContext));
[70836] Fix | Delete
var useMenuBarProviderContext = (/* unused pure expression or super */ null && (useMenubarProviderContext));
[70837] Fix | Delete
var MenuBarContextProvider = (/* unused pure expression or super */ null && (MenubarContextProvider));
[70838] Fix | Delete
var MenuBarScopedContextProvider = (/* unused pure expression or super */ null && (MenubarScopedContextProvider));
[70839] Fix | Delete
var MenuItemCheckedContext = (0,external_React_.createContext)(
[70840] Fix | Delete
void 0
[70841] Fix | Delete
);
[70842] Fix | Delete
[70843] Fix | Delete
[70844] Fix | Delete
[70845] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@ariakit/react-core/esm/__chunks/6XBVQI3K.js
[70846] Fix | Delete
"use client";
[70847] Fix | Delete
[70848] Fix | Delete
// src/checkbox/checkbox-checked-context.ts
[70849] Fix | Delete
[70850] Fix | Delete
var CheckboxCheckedContext = (0,external_React_.createContext)(false);
[70851] Fix | Delete
[70852] Fix | Delete
[70853] Fix | Delete
[70854] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@ariakit/react-core/esm/__chunks/MW2F7SEA.js
[70855] Fix | Delete
"use client";
[70856] Fix | Delete
[70857] Fix | Delete
[70858] Fix | Delete
[70859] Fix | Delete
[70860] Fix | Delete
// src/checkbox/checkbox-check.tsx
[70861] Fix | Delete
[70862] Fix | Delete
[70863] Fix | Delete
var checkmark = /* @__PURE__ */ (0,external_ReactJSXRuntime_namespaceObject.jsx)(
[70864] Fix | Delete
"svg",
[70865] Fix | Delete
{
[70866] Fix | Delete
display: "block",
[70867] Fix | Delete
fill: "none",
[70868] Fix | Delete
stroke: "currentColor",
[70869] Fix | Delete
strokeLinecap: "round",
[70870] Fix | Delete
strokeLinejoin: "round",
[70871] Fix | Delete
strokeWidth: "1.5pt",
[70872] Fix | Delete
viewBox: "0 0 16 16",
[70873] Fix | Delete
height: "1em",
[70874] Fix | Delete
width: "1em",
[70875] Fix | Delete
children: /* @__PURE__ */ (0,external_ReactJSXRuntime_namespaceObject.jsx)("polyline", { points: "4,8 7,12 12,4" })
[70876] Fix | Delete
}
[70877] Fix | Delete
);
[70878] Fix | Delete
function getChildren(props) {
[70879] Fix | Delete
if (props.checked) {
[70880] Fix | Delete
return props.children || checkmark;
[70881] Fix | Delete
}
[70882] Fix | Delete
if (typeof props.children === "function") {
[70883] Fix | Delete
return props.children;
[70884] Fix | Delete
}
[70885] Fix | Delete
return null;
[70886] Fix | Delete
}
[70887] Fix | Delete
var useCheckboxCheck = createHook(
[70888] Fix | Delete
(_a) => {
[70889] Fix | Delete
var _b = _a, { store, checked } = _b, props = __objRest(_b, ["store", "checked"]);
[70890] Fix | Delete
const context = (0,external_React_.useContext)(CheckboxCheckedContext);
[70891] Fix | Delete
checked = checked != null ? checked : context;
[70892] Fix | Delete
const children = getChildren({ checked, children: props.children });
[70893] Fix | Delete
props = _4R3V3JGP_spreadProps(_4R3V3JGP_spreadValues({
[70894] Fix | Delete
"aria-hidden": true
[70895] Fix | Delete
}, props), {
[70896] Fix | Delete
children,
[70897] Fix | Delete
style: _4R3V3JGP_spreadValues({
[70898] Fix | Delete
width: "1em",
[70899] Fix | Delete
height: "1em",
[70900] Fix | Delete
pointerEvents: "none"
[70901] Fix | Delete
}, props.style)
[70902] Fix | Delete
});
[70903] Fix | Delete
return props;
[70904] Fix | Delete
}
[70905] Fix | Delete
);
[70906] Fix | Delete
var CheckboxCheck = createComponent((props) => {
[70907] Fix | Delete
const htmlProps = useCheckboxCheck(props);
[70908] Fix | Delete
return _3ORBWXWF_createElement("span", htmlProps);
[70909] Fix | Delete
});
[70910] Fix | Delete
if (false) {}
[70911] Fix | Delete
[70912] Fix | Delete
[70913] Fix | Delete
[70914] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@ariakit/react-core/esm/menu/menu-item-check.js
[70915] Fix | Delete
"use client";
[70916] Fix | Delete
[70917] Fix | Delete
[70918] Fix | Delete
[70919] Fix | Delete
[70920] Fix | Delete
[70921] Fix | Delete
[70922] Fix | Delete
[70923] Fix | Delete
[70924] Fix | Delete
[70925] Fix | Delete
[70926] Fix | Delete
[70927] Fix | Delete
[70928] Fix | Delete
[70929] Fix | Delete
[70930] Fix | Delete
[70931] Fix | Delete
// src/menu/menu-item-check.ts
[70932] Fix | Delete
[70933] Fix | Delete
var useMenuItemCheck = createHook(
[70934] Fix | Delete
(_a) => {
[70935] Fix | Delete
var _b = _a, { store, checked } = _b, props = __objRest(_b, ["store", "checked"]);
[70936] Fix | Delete
const context = (0,external_React_.useContext)(MenuItemCheckedContext);
[70937] Fix | Delete
checked = checked != null ? checked : context;
[70938] Fix | Delete
props = useCheckboxCheck(_4R3V3JGP_spreadProps(_4R3V3JGP_spreadValues({}, props), { checked }));
[70939] Fix | Delete
return props;
[70940] Fix | Delete
}
[70941] Fix | Delete
);
[70942] Fix | Delete
var MenuItemCheck = createComponent((props) => {
[70943] Fix | Delete
const htmlProps = useMenuItemCheck(props);
[70944] Fix | Delete
return _3ORBWXWF_createElement("span", htmlProps);
[70945] Fix | Delete
});
[70946] Fix | Delete
if (false) {}
[70947] Fix | Delete
[70948] Fix | Delete
[70949] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@ariakit/react-core/esm/__chunks/KA4GX64Z.js
[70950] Fix | Delete
"use client";
[70951] Fix | Delete
[70952] Fix | Delete
[70953] Fix | Delete
[70954] Fix | Delete
// src/menubar/menubar-context.ts
[70955] Fix | Delete
[70956] Fix | Delete
var menubar = createStoreContext(
[70957] Fix | Delete
[CompositeContextProvider],
[70958] Fix | Delete
[CompositeScopedContextProvider]
[70959] Fix | Delete
);
[70960] Fix | Delete
var KA4GX64Z_useMenubarContext = menubar.useContext;
[70961] Fix | Delete
var KA4GX64Z_useMenubarScopedContext = menubar.useScopedContext;
[70962] Fix | Delete
var KA4GX64Z_useMenubarProviderContext = menubar.useProviderContext;
[70963] Fix | Delete
var KA4GX64Z_MenubarContextProvider = menubar.ContextProvider;
[70964] Fix | Delete
var KA4GX64Z_MenubarScopedContextProvider = menubar.ScopedContextProvider;
[70965] Fix | Delete
var KA4GX64Z_MenuItemCheckedContext = (0,external_React_.createContext)(
[70966] Fix | Delete
void 0
[70967] Fix | Delete
);
[70968] Fix | Delete
[70969] Fix | Delete
[70970] Fix | Delete
[70971] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@ariakit/react-core/esm/__chunks/W76OTZCC.js
[70972] Fix | Delete
"use client";
[70973] Fix | Delete
[70974] Fix | Delete
[70975] Fix | Delete
[70976] Fix | Delete
[70977] Fix | Delete
// src/combobox/combobox-context.tsx
[70978] Fix | Delete
[70979] Fix | Delete
var W76OTZCC_ctx = createStoreContext(
[70980] Fix | Delete
[PopoverContextProvider, CompositeContextProvider],
[70981] Fix | Delete
[PopoverScopedContextProvider, CompositeScopedContextProvider]
[70982] Fix | Delete
);
[70983] Fix | Delete
var useComboboxContext = W76OTZCC_ctx.useContext;
[70984] Fix | Delete
var useComboboxScopedContext = W76OTZCC_ctx.useScopedContext;
[70985] Fix | Delete
var useComboboxProviderContext = W76OTZCC_ctx.useProviderContext;
[70986] Fix | Delete
var ComboboxContextProvider = W76OTZCC_ctx.ContextProvider;
[70987] Fix | Delete
var ComboboxScopedContextProvider = W76OTZCC_ctx.ScopedContextProvider;
[70988] Fix | Delete
var ComboboxItemValueContext = (0,external_React_.createContext)(
[70989] Fix | Delete
void 0
[70990] Fix | Delete
);
[70991] Fix | Delete
var ComboboxItemCheckedContext = (0,external_React_.createContext)(false);
[70992] Fix | Delete
[70993] Fix | Delete
[70994] Fix | Delete
[70995] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@ariakit/core/esm/menu/menu-store.js
[70996] Fix | Delete
"use client";
[70997] Fix | Delete
[70998] Fix | Delete
[70999] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function