\r\n\t\t>\r\n\t);\r\n}\r\n","/**\r\n * Registers a new block provided a unique name and an object defining its behavior.\r\n *\r\n * @see https://developer.wordpress.org/block-editor/reference-guides/block-api/block-registration/\r\n */\r\nimport { registerBlockType } from '@wordpress/blocks';\r\nimport { InnerBlocks } from '@wordpress/block-editor'\r\n\r\n/**\r\n * Lets webpack process CSS, SASS or SCSS files referenced in JavaScript files.\r\n * All files containing `style` keyword are bundled together. The code used\r\n * gets applied both to the front of your site and to the editor.\r\n *\r\n * @see https://www.npmjs.com/package/@wordpress/scripts#using-css\r\n */\r\nimport './scss/style.scss';\r\n\r\n/**\r\n * Internal dependencies\r\n */\r\nimport Edit from './edit';\r\nimport metadata from './block.json';\r\n\r\nconst blockIcon = (\r\n\t\r\n);\r\n\r\n/** Update custom icon for eo-blocks category /*/\r\nwp.blocks.updateCategory('eo-blocks', {\r\n\ticon: (\r\n\t\t\r\n\t)\r\n});\r\n\r\n/**\r\n * Every block starts by registering a new block type definition.\r\n *\r\n * @see https://developer.wordpress.org/block-editor/reference-guides/block-api/block-registration/\r\n */\r\nregisterBlockType( metadata.name, {\r\n\t/**\r\n\t * @see ./edit.js\r\n\t */\r\n\tedit: Edit,\r\n\tsave: props => {\r\n\t\treturn \r\n\t},\r\n\ticon: blockIcon,\r\n} );\r\n","// extracted by mini-css-extract-plugin\nexport {};","// extracted by mini-css-extract-plugin\nexport {};","/**\n * @license React\n * react-jsx-runtime.development.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nif (process.env.NODE_ENV !== \"production\") {\n (function() {\n'use strict';\n\nvar React = require('react');\n\n// ATTENTION\n// When adding new symbols to this file,\n// Please consider also adding to 'react-devtools-shared/src/backend/ReactSymbols'\n// The Symbol used to tag the ReactElement-like types.\nvar REACT_ELEMENT_TYPE = Symbol.for('react.element');\nvar REACT_PORTAL_TYPE = Symbol.for('react.portal');\nvar REACT_FRAGMENT_TYPE = Symbol.for('react.fragment');\nvar REACT_STRICT_MODE_TYPE = Symbol.for('react.strict_mode');\nvar REACT_PROFILER_TYPE = Symbol.for('react.profiler');\nvar REACT_PROVIDER_TYPE = Symbol.for('react.provider');\nvar REACT_CONTEXT_TYPE = Symbol.for('react.context');\nvar REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref');\nvar REACT_SUSPENSE_TYPE = Symbol.for('react.suspense');\nvar REACT_SUSPENSE_LIST_TYPE = Symbol.for('react.suspense_list');\nvar REACT_MEMO_TYPE = Symbol.for('react.memo');\nvar REACT_LAZY_TYPE = Symbol.for('react.lazy');\nvar REACT_OFFSCREEN_TYPE = Symbol.for('react.offscreen');\nvar MAYBE_ITERATOR_SYMBOL = Symbol.iterator;\nvar FAUX_ITERATOR_SYMBOL = '@@iterator';\nfunction getIteratorFn(maybeIterable) {\n if (maybeIterable === null || typeof maybeIterable !== 'object') {\n return null;\n }\n\n var maybeIterator = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL];\n\n if (typeof maybeIterator === 'function') {\n return maybeIterator;\n }\n\n return null;\n}\n\nvar ReactSharedInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;\n\nfunction error(format) {\n {\n {\n for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n args[_key2 - 1] = arguments[_key2];\n }\n\n printWarning('error', format, args);\n }\n }\n}\n\nfunction printWarning(level, format, args) {\n // When changing this logic, you might want to also\n // update consoleWithStackDev.www.js as well.\n {\n var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;\n var stack = ReactDebugCurrentFrame.getStackAddendum();\n\n if (stack !== '') {\n format += '%s';\n args = args.concat([stack]);\n } // eslint-disable-next-line react-internal/safe-string-coercion\n\n\n var argsWithFormat = args.map(function (item) {\n return String(item);\n }); // Careful: RN currently depends on this prefix\n\n argsWithFormat.unshift('Warning: ' + format); // We intentionally don't use spread (or .apply) directly because it\n // breaks IE9: https://github.com/facebook/react/issues/13610\n // eslint-disable-next-line react-internal/no-production-logging\n\n Function.prototype.apply.call(console[level], console, argsWithFormat);\n }\n}\n\n// -----------------------------------------------------------------------------\n\nvar enableScopeAPI = false; // Experimental Create Event Handle API.\nvar enableCacheElement = false;\nvar enableTransitionTracing = false; // No known bugs, but needs performance testing\n\nvar enableLegacyHidden = false; // Enables unstable_avoidThisFallback feature in Fiber\n// stuff. Intended to enable React core members to more easily debug scheduling\n// issues in DEV builds.\n\nvar enableDebugTracing = false; // Track which Fiber(s) schedule render work.\n\nvar REACT_MODULE_REFERENCE;\n\n{\n REACT_MODULE_REFERENCE = Symbol.for('react.module.reference');\n}\n\nfunction isValidElementType(type) {\n if (typeof type === 'string' || typeof type === 'function') {\n return true;\n } // Note: typeof might be other than 'symbol' or 'number' (e.g. if it's a polyfill).\n\n\n if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || enableDebugTracing || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || enableLegacyHidden || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || enableCacheElement || enableTransitionTracing ) {\n return true;\n }\n\n if (typeof type === 'object' && type !== null) {\n if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object\n // types supported by any Flight configuration anywhere since\n // we don't know which Flight build this will end up being used\n // with.\n type.$$typeof === REACT_MODULE_REFERENCE || type.getModuleId !== undefined) {\n return true;\n }\n }\n\n return false;\n}\n\nfunction getWrappedName(outerType, innerType, wrapperName) {\n var displayName = outerType.displayName;\n\n if (displayName) {\n return displayName;\n }\n\n var functionName = innerType.displayName || innerType.name || '';\n return functionName !== '' ? wrapperName + \"(\" + functionName + \")\" : wrapperName;\n} // Keep in sync with react-reconciler/getComponentNameFromFiber\n\n\nfunction getContextName(type) {\n return type.displayName || 'Context';\n} // Note that the reconciler package should generally prefer to use getComponentNameFromFiber() instead.\n\n\nfunction getComponentNameFromType(type) {\n if (type == null) {\n // Host root, text node or just invalid type.\n return null;\n }\n\n {\n if (typeof type.tag === 'number') {\n error('Received an unexpected object in getComponentNameFromType(). ' + 'This is likely a bug in React. Please file an issue.');\n }\n }\n\n if (typeof type === 'function') {\n return type.displayName || type.name || null;\n }\n\n if (typeof type === 'string') {\n return type;\n }\n\n switch (type) {\n case REACT_FRAGMENT_TYPE:\n return 'Fragment';\n\n case REACT_PORTAL_TYPE:\n return 'Portal';\n\n case REACT_PROFILER_TYPE:\n return 'Profiler';\n\n case REACT_STRICT_MODE_TYPE:\n return 'StrictMode';\n\n case REACT_SUSPENSE_TYPE:\n return 'Suspense';\n\n case REACT_SUSPENSE_LIST_TYPE:\n return 'SuspenseList';\n\n }\n\n if (typeof type === 'object') {\n switch (type.$$typeof) {\n case REACT_CONTEXT_TYPE:\n var context = type;\n return getContextName(context) + '.Consumer';\n\n case REACT_PROVIDER_TYPE:\n var provider = type;\n return getContextName(provider._context) + '.Provider';\n\n case REACT_FORWARD_REF_TYPE:\n return getWrappedName(type, type.render, 'ForwardRef');\n\n case REACT_MEMO_TYPE:\n var outerName = type.displayName || null;\n\n if (outerName !== null) {\n return outerName;\n }\n\n return getComponentNameFromType(type.type) || 'Memo';\n\n case REACT_LAZY_TYPE:\n {\n var lazyComponent = type;\n var payload = lazyComponent._payload;\n var init = lazyComponent._init;\n\n try {\n return getComponentNameFromType(init(payload));\n } catch (x) {\n return null;\n }\n }\n\n // eslint-disable-next-line no-fallthrough\n }\n }\n\n return null;\n}\n\nvar assign = Object.assign;\n\n// Helpers to patch console.logs to avoid logging during side-effect free\n// replaying on render function. This currently only patches the object\n// lazily which won't cover if the log function was extracted eagerly.\n// We could also eagerly patch the method.\nvar disabledDepth = 0;\nvar prevLog;\nvar prevInfo;\nvar prevWarn;\nvar prevError;\nvar prevGroup;\nvar prevGroupCollapsed;\nvar prevGroupEnd;\n\nfunction disabledLog() {}\n\ndisabledLog.__reactDisabledLog = true;\nfunction disableLogs() {\n {\n if (disabledDepth === 0) {\n /* eslint-disable react-internal/no-production-logging */\n prevLog = console.log;\n prevInfo = console.info;\n prevWarn = console.warn;\n prevError = console.error;\n prevGroup = console.group;\n prevGroupCollapsed = console.groupCollapsed;\n prevGroupEnd = console.groupEnd; // https://github.com/facebook/react/issues/19099\n\n var props = {\n configurable: true,\n enumerable: true,\n value: disabledLog,\n writable: true\n }; // $FlowFixMe Flow thinks console is immutable.\n\n Object.defineProperties(console, {\n info: props,\n log: props,\n warn: props,\n error: props,\n group: props,\n groupCollapsed: props,\n groupEnd: props\n });\n /* eslint-enable react-internal/no-production-logging */\n }\n\n disabledDepth++;\n }\n}\nfunction reenableLogs() {\n {\n disabledDepth--;\n\n if (disabledDepth === 0) {\n /* eslint-disable react-internal/no-production-logging */\n var props = {\n configurable: true,\n enumerable: true,\n writable: true\n }; // $FlowFixMe Flow thinks console is immutable.\n\n Object.defineProperties(console, {\n log: assign({}, props, {\n value: prevLog\n }),\n info: assign({}, props, {\n value: prevInfo\n }),\n warn: assign({}, props, {\n value: prevWarn\n }),\n error: assign({}, props, {\n value: prevError\n }),\n group: assign({}, props, {\n value: prevGroup\n }),\n groupCollapsed: assign({}, props, {\n value: prevGroupCollapsed\n }),\n groupEnd: assign({}, props, {\n value: prevGroupEnd\n })\n });\n /* eslint-enable react-internal/no-production-logging */\n }\n\n if (disabledDepth < 0) {\n error('disabledDepth fell below zero. ' + 'This is a bug in React. Please file an issue.');\n }\n }\n}\n\nvar ReactCurrentDispatcher = ReactSharedInternals.ReactCurrentDispatcher;\nvar prefix;\nfunction describeBuiltInComponentFrame(name, source, ownerFn) {\n {\n if (prefix === undefined) {\n // Extract the VM specific prefix used by each line.\n try {\n throw Error();\n } catch (x) {\n var match = x.stack.trim().match(/\\n( *(at )?)/);\n prefix = match && match[1] || '';\n }\n } // We use the prefix to ensure our stacks line up with native stack frames.\n\n\n return '\\n' + prefix + name;\n }\n}\nvar reentry = false;\nvar componentFrameCache;\n\n{\n var PossiblyWeakMap = typeof WeakMap === 'function' ? WeakMap : Map;\n componentFrameCache = new PossiblyWeakMap();\n}\n\nfunction describeNativeComponentFrame(fn, construct) {\n // If something asked for a stack inside a fake render, it should get ignored.\n if ( !fn || reentry) {\n return '';\n }\n\n {\n var frame = componentFrameCache.get(fn);\n\n if (frame !== undefined) {\n return frame;\n }\n }\n\n var control;\n reentry = true;\n var previousPrepareStackTrace = Error.prepareStackTrace; // $FlowFixMe It does accept undefined.\n\n Error.prepareStackTrace = undefined;\n var previousDispatcher;\n\n {\n previousDispatcher = ReactCurrentDispatcher.current; // Set the dispatcher in DEV because this might be call in the render function\n // for warnings.\n\n ReactCurrentDispatcher.current = null;\n disableLogs();\n }\n\n try {\n // This should throw.\n if (construct) {\n // Something should be setting the props in the constructor.\n var Fake = function () {\n throw Error();\n }; // $FlowFixMe\n\n\n Object.defineProperty(Fake.prototype, 'props', {\n set: function () {\n // We use a throwing setter instead of frozen or non-writable props\n // because that won't throw in a non-strict mode function.\n throw Error();\n }\n });\n\n if (typeof Reflect === 'object' && Reflect.construct) {\n // We construct a different control for this case to include any extra\n // frames added by the construct call.\n try {\n Reflect.construct(Fake, []);\n } catch (x) {\n control = x;\n }\n\n Reflect.construct(fn, [], Fake);\n } else {\n try {\n Fake.call();\n } catch (x) {\n control = x;\n }\n\n fn.call(Fake.prototype);\n }\n } else {\n try {\n throw Error();\n } catch (x) {\n control = x;\n }\n\n fn();\n }\n } catch (sample) {\n // This is inlined manually because closure doesn't do it for us.\n if (sample && control && typeof sample.stack === 'string') {\n // This extracts the first frame from the sample that isn't also in the control.\n // Skipping one frame that we assume is the frame that calls the two.\n var sampleLines = sample.stack.split('\\n');\n var controlLines = control.stack.split('\\n');\n var s = sampleLines.length - 1;\n var c = controlLines.length - 1;\n\n while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) {\n // We expect at least one stack frame to be shared.\n // Typically this will be the root most one. However, stack frames may be\n // cut off due to maximum stack limits. In this case, one maybe cut off\n // earlier than the other. We assume that the sample is longer or the same\n // and there for cut off earlier. So we should find the root most frame in\n // the sample somewhere in the control.\n c--;\n }\n\n for (; s >= 1 && c >= 0; s--, c--) {\n // Next we find the first one that isn't the same which should be the\n // frame that called our sample function and the control.\n if (sampleLines[s] !== controlLines[c]) {\n // In V8, the first line is describing the message but other VMs don't.\n // If we're about to return the first line, and the control is also on the same\n // line, that's a pretty good indicator that our sample threw at same line as\n // the control. I.e. before we entered the sample frame. So we ignore this result.\n // This can happen if you passed a class to function component, or non-function.\n if (s !== 1 || c !== 1) {\n do {\n s--;\n c--; // We may still have similar intermediate frames from the construct call.\n // The next one that isn't the same should be our match though.\n\n if (c < 0 || sampleLines[s] !== controlLines[c]) {\n // V8 adds a \"new\" prefix for native classes. Let's remove it to make it prettier.\n var _frame = '\\n' + sampleLines[s].replace(' at new ', ' at '); // If our component frame is labeled \"\"\n // but we have a user-provided \"displayName\"\n // splice it in to make the stack more readable.\n\n\n if (fn.displayName && _frame.includes('')) {\n _frame = _frame.replace('', fn.displayName);\n }\n\n {\n if (typeof fn === 'function') {\n componentFrameCache.set(fn, _frame);\n }\n } // Return the line we found.\n\n\n return _frame;\n }\n } while (s >= 1 && c >= 0);\n }\n\n break;\n }\n }\n }\n } finally {\n reentry = false;\n\n {\n ReactCurrentDispatcher.current = previousDispatcher;\n reenableLogs();\n }\n\n Error.prepareStackTrace = previousPrepareStackTrace;\n } // Fallback to just using the name if we couldn't make it throw.\n\n\n var name = fn ? fn.displayName || fn.name : '';\n var syntheticFrame = name ? describeBuiltInComponentFrame(name) : '';\n\n {\n if (typeof fn === 'function') {\n componentFrameCache.set(fn, syntheticFrame);\n }\n }\n\n return syntheticFrame;\n}\nfunction describeFunctionComponentFrame(fn, source, ownerFn) {\n {\n return describeNativeComponentFrame(fn, false);\n }\n}\n\nfunction shouldConstruct(Component) {\n var prototype = Component.prototype;\n return !!(prototype && prototype.isReactComponent);\n}\n\nfunction describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {\n\n if (type == null) {\n return '';\n }\n\n if (typeof type === 'function') {\n {\n return describeNativeComponentFrame(type, shouldConstruct(type));\n }\n }\n\n if (typeof type === 'string') {\n return describeBuiltInComponentFrame(type);\n }\n\n switch (type) {\n case REACT_SUSPENSE_TYPE:\n return describeBuiltInComponentFrame('Suspense');\n\n case REACT_SUSPENSE_LIST_TYPE:\n return describeBuiltInComponentFrame('SuspenseList');\n }\n\n if (typeof type === 'object') {\n switch (type.$$typeof) {\n case REACT_FORWARD_REF_TYPE:\n return describeFunctionComponentFrame(type.render);\n\n case REACT_MEMO_TYPE:\n // Memo may contain any component type so we recursively resolve it.\n return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);\n\n case REACT_LAZY_TYPE:\n {\n var lazyComponent = type;\n var payload = lazyComponent._payload;\n var init = lazyComponent._init;\n\n try {\n // Lazy may contain any component type so we recursively resolve it.\n return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);\n } catch (x) {}\n }\n }\n }\n\n return '';\n}\n\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\n\nvar loggedTypeFailures = {};\nvar ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;\n\nfunction setCurrentlyValidatingElement(element) {\n {\n if (element) {\n var owner = element._owner;\n var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);\n ReactDebugCurrentFrame.setExtraStackFrame(stack);\n } else {\n ReactDebugCurrentFrame.setExtraStackFrame(null);\n }\n }\n}\n\nfunction checkPropTypes(typeSpecs, values, location, componentName, element) {\n {\n // $FlowFixMe This is okay but Flow doesn't know it.\n var has = Function.call.bind(hasOwnProperty);\n\n for (var typeSpecName in typeSpecs) {\n if (has(typeSpecs, typeSpecName)) {\n var error$1 = void 0; // Prop type validation may throw. In case they do, we don't want to\n // fail the render phase where it didn't fail before. So we log it.\n // After these have been cleaned up, we'll let them throw.\n\n try {\n // This is intentionally an invariant that gets caught. It's the same\n // behavior as without this statement except with a better message.\n if (typeof typeSpecs[typeSpecName] !== 'function') {\n // eslint-disable-next-line react-internal/prod-error-codes\n var err = Error((componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' + 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' + 'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.');\n err.name = 'Invariant Violation';\n throw err;\n }\n\n error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED');\n } catch (ex) {\n error$1 = ex;\n }\n\n if (error$1 && !(error$1 instanceof Error)) {\n setCurrentlyValidatingElement(element);\n\n error('%s: type specification of %s' + ' `%s` is invalid; the type checker ' + 'function must return `null` or an `Error` but returned a %s. ' + 'You may have forgotten to pass an argument to the type checker ' + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + 'shape all require an argument).', componentName || 'React class', location, typeSpecName, typeof error$1);\n\n setCurrentlyValidatingElement(null);\n }\n\n if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {\n // Only monitor this failure once because there tends to be a lot of the\n // same error.\n loggedTypeFailures[error$1.message] = true;\n setCurrentlyValidatingElement(element);\n\n error('Failed %s type: %s', location, error$1.message);\n\n setCurrentlyValidatingElement(null);\n }\n }\n }\n }\n}\n\nvar isArrayImpl = Array.isArray; // eslint-disable-next-line no-redeclare\n\nfunction isArray(a) {\n return isArrayImpl(a);\n}\n\n/*\n * The `'' + value` pattern (used in in perf-sensitive code) throws for Symbol\n * and Temporal.* types. See https://github.com/facebook/react/pull/22064.\n *\n * The functions in this module will throw an easier-to-understand,\n * easier-to-debug exception with a clear errors message message explaining the\n * problem. (Instead of a confusing exception thrown inside the implementation\n * of the `value` object).\n */\n// $FlowFixMe only called in DEV, so void return is not possible.\nfunction typeName(value) {\n {\n // toStringTag is needed for namespaced types like Temporal.Instant\n var hasToStringTag = typeof Symbol === 'function' && Symbol.toStringTag;\n var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || 'Object';\n return type;\n }\n} // $FlowFixMe only called in DEV, so void return is not possible.\n\n\nfunction willCoercionThrow(value) {\n {\n try {\n testStringCoercion(value);\n return false;\n } catch (e) {\n return true;\n }\n }\n}\n\nfunction testStringCoercion(value) {\n // If you ended up here by following an exception call stack, here's what's\n // happened: you supplied an object or symbol value to React (as a prop, key,\n // DOM attribute, CSS property, string ref, etc.) and when React tried to\n // coerce it to a string using `'' + value`, an exception was thrown.\n //\n // The most common types that will cause this exception are `Symbol` instances\n // and Temporal objects like `Temporal.Instant`. But any object that has a\n // `valueOf` or `[Symbol.toPrimitive]` method that throws will also cause this\n // exception. (Library authors do this to prevent users from using built-in\n // numeric operators like `+` or comparison operators like `>=` because custom\n // methods are needed to perform accurate arithmetic or comparison.)\n //\n // To fix the problem, coerce this object or symbol value to a string before\n // passing it to React. The most reliable way is usually `String(value)`.\n //\n // To find which value is throwing, check the browser or debugger console.\n // Before this exception was thrown, there should be `console.error` output\n // that shows the type (Symbol, Temporal.PlainDate, etc.) that caused the\n // problem and how that type was used: key, atrribute, input value prop, etc.\n // In most cases, this console output also shows the component and its\n // ancestor components where the exception happened.\n //\n // eslint-disable-next-line react-internal/safe-string-coercion\n return '' + value;\n}\nfunction checkKeyStringCoercion(value) {\n {\n if (willCoercionThrow(value)) {\n error('The provided key is an unsupported type %s.' + ' This value must be coerced to a string before before using it here.', typeName(value));\n\n return testStringCoercion(value); // throw (to help callers find troubleshooting comments)\n }\n }\n}\n\nvar ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;\nvar RESERVED_PROPS = {\n key: true,\n ref: true,\n __self: true,\n __source: true\n};\nvar specialPropKeyWarningShown;\nvar specialPropRefWarningShown;\nvar didWarnAboutStringRefs;\n\n{\n didWarnAboutStringRefs = {};\n}\n\nfunction hasValidRef(config) {\n {\n if (hasOwnProperty.call(config, 'ref')) {\n var getter = Object.getOwnPropertyDescriptor(config, 'ref').get;\n\n if (getter && getter.isReactWarning) {\n return false;\n }\n }\n }\n\n return config.ref !== undefined;\n}\n\nfunction hasValidKey(config) {\n {\n if (hasOwnProperty.call(config, 'key')) {\n var getter = Object.getOwnPropertyDescriptor(config, 'key').get;\n\n if (getter && getter.isReactWarning) {\n return false;\n }\n }\n }\n\n return config.key !== undefined;\n}\n\nfunction warnIfStringRefCannotBeAutoConverted(config, self) {\n {\n if (typeof config.ref === 'string' && ReactCurrentOwner.current && self && ReactCurrentOwner.current.stateNode !== self) {\n var componentName = getComponentNameFromType(ReactCurrentOwner.current.type);\n\n if (!didWarnAboutStringRefs[componentName]) {\n error('Component \"%s\" contains the string ref \"%s\". ' + 'Support for string refs will be removed in a future major release. ' + 'This case cannot be automatically converted to an arrow function. ' + 'We ask you to manually fix this case by using useRef() or createRef() instead. ' + 'Learn more about using refs safely here: ' + 'https://reactjs.org/link/strict-mode-string-ref', getComponentNameFromType(ReactCurrentOwner.current.type), config.ref);\n\n didWarnAboutStringRefs[componentName] = true;\n }\n }\n }\n}\n\nfunction defineKeyPropWarningGetter(props, displayName) {\n {\n var warnAboutAccessingKey = function () {\n if (!specialPropKeyWarningShown) {\n specialPropKeyWarningShown = true;\n\n error('%s: `key` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName);\n }\n };\n\n warnAboutAccessingKey.isReactWarning = true;\n Object.defineProperty(props, 'key', {\n get: warnAboutAccessingKey,\n configurable: true\n });\n }\n}\n\nfunction defineRefPropWarningGetter(props, displayName) {\n {\n var warnAboutAccessingRef = function () {\n if (!specialPropRefWarningShown) {\n specialPropRefWarningShown = true;\n\n error('%s: `ref` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName);\n }\n };\n\n warnAboutAccessingRef.isReactWarning = true;\n Object.defineProperty(props, 'ref', {\n get: warnAboutAccessingRef,\n configurable: true\n });\n }\n}\n/**\n * Factory method to create a new React element. This no longer adheres to\n * the class pattern, so do not use new to call it. Also, instanceof check\n * will not work. Instead test $$typeof field against Symbol.for('react.element') to check\n * if something is a React Element.\n *\n * @param {*} type\n * @param {*} props\n * @param {*} key\n * @param {string|object} ref\n * @param {*} owner\n * @param {*} self A *temporary* helper to detect places where `this` is\n * different from the `owner` when React.createElement is called, so that we\n * can warn. We want to get rid of owner and replace string `ref`s with arrow\n * functions, and as long as `this` and owner are the same, there will be no\n * change in behavior.\n * @param {*} source An annotation object (added by a transpiler or otherwise)\n * indicating filename, line number, and/or other information.\n * @internal\n */\n\n\nvar ReactElement = function (type, key, ref, self, source, owner, props) {\n var element = {\n // This tag allows us to uniquely identify this as a React Element\n $$typeof: REACT_ELEMENT_TYPE,\n // Built-in properties that belong on the element\n type: type,\n key: key,\n ref: ref,\n props: props,\n // Record the component responsible for creating this element.\n _owner: owner\n };\n\n {\n // The validation flag is currently mutative. We put it on\n // an external backing store so that we can freeze the whole object.\n // This can be replaced with a WeakMap once they are implemented in\n // commonly used development environments.\n element._store = {}; // To make comparing ReactElements easier for testing purposes, we make\n // the validation flag non-enumerable (where possible, which should\n // include every environment we run tests in), so the test framework\n // ignores it.\n\n Object.defineProperty(element._store, 'validated', {\n configurable: false,\n enumerable: false,\n writable: true,\n value: false\n }); // self and source are DEV only properties.\n\n Object.defineProperty(element, '_self', {\n configurable: false,\n enumerable: false,\n writable: false,\n value: self\n }); // Two elements created in two different places should be considered\n // equal for testing purposes and therefore we hide it from enumeration.\n\n Object.defineProperty(element, '_source', {\n configurable: false,\n enumerable: false,\n writable: false,\n value: source\n });\n\n if (Object.freeze) {\n Object.freeze(element.props);\n Object.freeze(element);\n }\n }\n\n return element;\n};\n/**\n * https://github.com/reactjs/rfcs/pull/107\n * @param {*} type\n * @param {object} props\n * @param {string} key\n */\n\nfunction jsxDEV(type, config, maybeKey, source, self) {\n {\n var propName; // Reserved names are extracted\n\n var props = {};\n var key = null;\n var ref = null; // Currently, key can be spread in as a prop. This causes a potential\n // issue if key is also explicitly declared (ie. \n // or ). We want to deprecate key spread,\n // but as an intermediary step, we will use jsxDEV for everything except\n // , because we aren't currently able to tell if\n // key is explicitly declared to be undefined or not.\n\n if (maybeKey !== undefined) {\n {\n checkKeyStringCoercion(maybeKey);\n }\n\n key = '' + maybeKey;\n }\n\n if (hasValidKey(config)) {\n {\n checkKeyStringCoercion(config.key);\n }\n\n key = '' + config.key;\n }\n\n if (hasValidRef(config)) {\n ref = config.ref;\n warnIfStringRefCannotBeAutoConverted(config, self);\n } // Remaining properties are added to a new props object\n\n\n for (propName in config) {\n if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {\n props[propName] = config[propName];\n }\n } // Resolve default props\n\n\n if (type && type.defaultProps) {\n var defaultProps = type.defaultProps;\n\n for (propName in defaultProps) {\n if (props[propName] === undefined) {\n props[propName] = defaultProps[propName];\n }\n }\n }\n\n if (key || ref) {\n var displayName = typeof type === 'function' ? type.displayName || type.name || 'Unknown' : type;\n\n if (key) {\n defineKeyPropWarningGetter(props, displayName);\n }\n\n if (ref) {\n defineRefPropWarningGetter(props, displayName);\n }\n }\n\n return ReactElement(type, key, ref, self, source, ReactCurrentOwner.current, props);\n }\n}\n\nvar ReactCurrentOwner$1 = ReactSharedInternals.ReactCurrentOwner;\nvar ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;\n\nfunction setCurrentlyValidatingElement$1(element) {\n {\n if (element) {\n var owner = element._owner;\n var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);\n ReactDebugCurrentFrame$1.setExtraStackFrame(stack);\n } else {\n ReactDebugCurrentFrame$1.setExtraStackFrame(null);\n }\n }\n}\n\nvar propTypesMisspellWarningShown;\n\n{\n propTypesMisspellWarningShown = false;\n}\n/**\n * Verifies the object is a ReactElement.\n * See https://reactjs.org/docs/react-api.html#isvalidelement\n * @param {?object} object\n * @return {boolean} True if `object` is a ReactElement.\n * @final\n */\n\n\nfunction isValidElement(object) {\n {\n return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;\n }\n}\n\nfunction getDeclarationErrorAddendum() {\n {\n if (ReactCurrentOwner$1.current) {\n var name = getComponentNameFromType(ReactCurrentOwner$1.current.type);\n\n if (name) {\n return '\\n\\nCheck the render method of `' + name + '`.';\n }\n }\n\n return '';\n }\n}\n\nfunction getSourceInfoErrorAddendum(source) {\n {\n if (source !== undefined) {\n var fileName = source.fileName.replace(/^.*[\\\\\\/]/, '');\n var lineNumber = source.lineNumber;\n return '\\n\\nCheck your code at ' + fileName + ':' + lineNumber + '.';\n }\n\n return '';\n }\n}\n/**\n * Warn if there's no key explicitly set on dynamic arrays of children or\n * object keys are not valid. This allows us to keep track of children between\n * updates.\n */\n\n\nvar ownerHasKeyUseWarning = {};\n\nfunction getCurrentComponentErrorInfo(parentType) {\n {\n var info = getDeclarationErrorAddendum();\n\n if (!info) {\n var parentName = typeof parentType === 'string' ? parentType : parentType.displayName || parentType.name;\n\n if (parentName) {\n info = \"\\n\\nCheck the top-level render call using <\" + parentName + \">.\";\n }\n }\n\n return info;\n }\n}\n/**\n * Warn if the element doesn't have an explicit key assigned to it.\n * This element is in an array. The array could grow and shrink or be\n * reordered. All children that haven't already been validated are required to\n * have a \"key\" property assigned to it. Error statuses are cached so a warning\n * will only be shown once.\n *\n * @internal\n * @param {ReactElement} element Element that requires a key.\n * @param {*} parentType element's parent's type.\n */\n\n\nfunction validateExplicitKey(element, parentType) {\n {\n if (!element._store || element._store.validated || element.key != null) {\n return;\n }\n\n element._store.validated = true;\n var currentComponentErrorInfo = getCurrentComponentErrorInfo(parentType);\n\n if (ownerHasKeyUseWarning[currentComponentErrorInfo]) {\n return;\n }\n\n ownerHasKeyUseWarning[currentComponentErrorInfo] = true; // Usually the current owner is the offender, but if it accepts children as a\n // property, it may be the creator of the child that's responsible for\n // assigning it a key.\n\n var childOwner = '';\n\n if (element && element._owner && element._owner !== ReactCurrentOwner$1.current) {\n // Give the component that originally created this child.\n childOwner = \" It was passed a child from \" + getComponentNameFromType(element._owner.type) + \".\";\n }\n\n setCurrentlyValidatingElement$1(element);\n\n error('Each child in a list should have a unique \"key\" prop.' + '%s%s See https://reactjs.org/link/warning-keys for more information.', currentComponentErrorInfo, childOwner);\n\n setCurrentlyValidatingElement$1(null);\n }\n}\n/**\n * Ensure that every element either is passed in a static location, in an\n * array with an explicit keys property defined, or in an object literal\n * with valid key property.\n *\n * @internal\n * @param {ReactNode} node Statically passed child of any type.\n * @param {*} parentType node's parent's type.\n */\n\n\nfunction validateChildKeys(node, parentType) {\n {\n if (typeof node !== 'object') {\n return;\n }\n\n if (isArray(node)) {\n for (var i = 0; i < node.length; i++) {\n var child = node[i];\n\n if (isValidElement(child)) {\n validateExplicitKey(child, parentType);\n }\n }\n } else if (isValidElement(node)) {\n // This element was passed in a valid location.\n if (node._store) {\n node._store.validated = true;\n }\n } else if (node) {\n var iteratorFn = getIteratorFn(node);\n\n if (typeof iteratorFn === 'function') {\n // Entry iterators used to provide implicit keys,\n // but now we print a separate warning for them later.\n if (iteratorFn !== node.entries) {\n var iterator = iteratorFn.call(node);\n var step;\n\n while (!(step = iterator.next()).done) {\n if (isValidElement(step.value)) {\n validateExplicitKey(step.value, parentType);\n }\n }\n }\n }\n }\n }\n}\n/**\n * Given an element, validate that its props follow the propTypes definition,\n * provided by the type.\n *\n * @param {ReactElement} element\n */\n\n\nfunction validatePropTypes(element) {\n {\n var type = element.type;\n\n if (type === null || type === undefined || typeof type === 'string') {\n return;\n }\n\n var propTypes;\n\n if (typeof type === 'function') {\n propTypes = type.propTypes;\n } else if (typeof type === 'object' && (type.$$typeof === REACT_FORWARD_REF_TYPE || // Note: Memo only checks outer props here.\n // Inner props are checked in the reconciler.\n type.$$typeof === REACT_MEMO_TYPE)) {\n propTypes = type.propTypes;\n } else {\n return;\n }\n\n if (propTypes) {\n // Intentionally inside to avoid triggering lazy initializers:\n var name = getComponentNameFromType(type);\n checkPropTypes(propTypes, element.props, 'prop', name, element);\n } else if (type.PropTypes !== undefined && !propTypesMisspellWarningShown) {\n propTypesMisspellWarningShown = true; // Intentionally inside to avoid triggering lazy initializers:\n\n var _name = getComponentNameFromType(type);\n\n error('Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?', _name || 'Unknown');\n }\n\n if (typeof type.getDefaultProps === 'function' && !type.getDefaultProps.isReactClassApproved) {\n error('getDefaultProps is only used on classic React.createClass ' + 'definitions. Use a static property named `defaultProps` instead.');\n }\n }\n}\n/**\n * Given a fragment, validate that it can only be provided with fragment props\n * @param {ReactElement} fragment\n */\n\n\nfunction validateFragmentProps(fragment) {\n {\n var keys = Object.keys(fragment.props);\n\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n\n if (key !== 'children' && key !== 'key') {\n setCurrentlyValidatingElement$1(fragment);\n\n error('Invalid prop `%s` supplied to `React.Fragment`. ' + 'React.Fragment can only have `key` and `children` props.', key);\n\n setCurrentlyValidatingElement$1(null);\n break;\n }\n }\n\n if (fragment.ref !== null) {\n setCurrentlyValidatingElement$1(fragment);\n\n error('Invalid attribute `ref` supplied to `React.Fragment`.');\n\n setCurrentlyValidatingElement$1(null);\n }\n }\n}\n\nvar didWarnAboutKeySpread = {};\nfunction jsxWithValidation(type, props, key, isStaticChildren, source, self) {\n {\n var validType = isValidElementType(type); // We warn in this case but don't throw. We expect the element creation to\n // succeed and there will likely be errors in render.\n\n if (!validType) {\n var info = '';\n\n if (type === undefined || typeof type === 'object' && type !== null && Object.keys(type).length === 0) {\n info += ' You likely forgot to export your component from the file ' + \"it's defined in, or you might have mixed up default and named imports.\";\n }\n\n var sourceInfo = getSourceInfoErrorAddendum(source);\n\n if (sourceInfo) {\n info += sourceInfo;\n } else {\n info += getDeclarationErrorAddendum();\n }\n\n var typeString;\n\n if (type === null) {\n typeString = 'null';\n } else if (isArray(type)) {\n typeString = 'array';\n } else if (type !== undefined && type.$$typeof === REACT_ELEMENT_TYPE) {\n typeString = \"<\" + (getComponentNameFromType(type.type) || 'Unknown') + \" />\";\n info = ' Did you accidentally export a JSX literal instead of a component?';\n } else {\n typeString = typeof type;\n }\n\n error('React.jsx: type is invalid -- expected a string (for ' + 'built-in components) or a class/function (for composite ' + 'components) but got: %s.%s', typeString, info);\n }\n\n var element = jsxDEV(type, props, key, source, self); // The result can be nullish if a mock or a custom function is used.\n // TODO: Drop this when these are no longer allowed as the type argument.\n\n if (element == null) {\n return element;\n } // Skip key warning if the type isn't valid since our key validation logic\n // doesn't expect a non-string/function type and can throw confusing errors.\n // We don't want exception behavior to differ between dev and prod.\n // (Rendering will throw with a helpful message and as soon as the type is\n // fixed, the key warnings will appear.)\n\n\n if (validType) {\n var children = props.children;\n\n if (children !== undefined) {\n if (isStaticChildren) {\n if (isArray(children)) {\n for (var i = 0; i < children.length; i++) {\n validateChildKeys(children[i], type);\n }\n\n if (Object.freeze) {\n Object.freeze(children);\n }\n } else {\n error('React.jsx: Static children should always be an array. ' + 'You are likely explicitly calling React.jsxs or React.jsxDEV. ' + 'Use the Babel transform instead.');\n }\n } else {\n validateChildKeys(children, type);\n }\n }\n }\n\n {\n if (hasOwnProperty.call(props, 'key')) {\n var componentName = getComponentNameFromType(type);\n var keys = Object.keys(props).filter(function (k) {\n return k !== 'key';\n });\n var beforeExample = keys.length > 0 ? '{key: someKey, ' + keys.join(': ..., ') + ': ...}' : '{key: someKey}';\n\n if (!didWarnAboutKeySpread[componentName + beforeExample]) {\n var afterExample = keys.length > 0 ? '{' + keys.join(': ..., ') + ': ...}' : '{}';\n\n error('A props object containing a \"key\" prop is being spread into JSX:\\n' + ' let props = %s;\\n' + ' <%s {...props} />\\n' + 'React keys must be passed directly to JSX without using spread:\\n' + ' let props = %s;\\n' + ' <%s key={someKey} {...props} />', beforeExample, componentName, afterExample, componentName);\n\n didWarnAboutKeySpread[componentName + beforeExample] = true;\n }\n }\n }\n\n if (type === REACT_FRAGMENT_TYPE) {\n validateFragmentProps(element);\n } else {\n validatePropTypes(element);\n }\n\n return element;\n }\n} // These two functions exist to still get child warnings in dev\n// even with the prod transform. This means that jsxDEV is purely\n// opt-in behavior for better messages but that we won't stop\n// giving you warnings if you use production apis.\n\nfunction jsxWithValidationStatic(type, props, key) {\n {\n return jsxWithValidation(type, props, key, true);\n }\n}\nfunction jsxWithValidationDynamic(type, props, key) {\n {\n return jsxWithValidation(type, props, key, false);\n }\n}\n\nvar jsx = jsxWithValidationDynamic ; // we may want to special case jsxs internally to take advantage of static children.\n// for now we can ship identical prod functions\n\nvar jsxs = jsxWithValidationStatic ;\n\nexports.Fragment = REACT_FRAGMENT_TYPE;\nexports.jsx = jsx;\nexports.jsxs = jsxs;\n })();\n}\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-jsx-runtime.production.min.js');\n} else {\n module.exports = require('./cjs/react-jsx-runtime.development.js');\n}\n","module.exports = window[\"React\"];","module.exports = window[\"wp\"][\"blockEditor\"];","module.exports = window[\"wp\"][\"blocks\"];","module.exports = window[\"wp\"][\"components\"];","module.exports = window[\"wp\"][\"i18n\"];","module.exports = window[\"wp\"][\"primitives\"];","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","var deferred = [];\n__webpack_require__.O = (result, chunkIds, fn, priority) => {\n\tif(chunkIds) {\n\t\tpriority = priority || 0;\n\t\tfor(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar [chunkIds, fn, priority] = deferred[i];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","// no baseURI\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t\"accordion/index\": 0,\n\t\"accordion/style-index\": 0\n};\n\n// no chunk on demand loading\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = (chunkId) => (installedChunks[chunkId] === 0);\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = (parentChunkLoadingFunction, data) => {\n\tvar [chunkIds, moreModules, runtime] = data;\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some((id) => (installedChunks[id] !== 0))) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = globalThis[\"webpackChunkeo_blocks\"] = globalThis[\"webpackChunkeo_blocks\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","","// startup\n// Load entry module and return exports\n// This entry module depends on other loaded chunks and execution need to be delayed\nvar __webpack_exports__ = __webpack_require__.O(undefined, [\"accordion/style-index\"], () => (__webpack_require__(\"./blocks/src/accordion/index.js\")))\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n",""],"names":["__","InspectorControls","BlockControls","RichText","useBlockProps","InnerBlocks","Toolbar","ToolbarDropdownMenu","ToggleControl","PanelBody","heading","headingLevel1","headingLevel2","headingLevel3","headingLevel4","headingLevel5","headingLevel6","paragraph","Edit","attributes","setAttributes","createElement","Fragment","title","label","checked","isOpened","onChange","value","icon","controls","onClick","className","tagName","titleTag","allowedFormats","placeholder","subtitle","registerBlockType","metadata","blockIcon","xmlns","viewBox","d","fill","wp","blocks","updateCategory","name","edit","save","props","Content"],"sourceRoot":""}
\ No newline at end of file
diff --git a/blocks/build/accordion/style-index.css.map b/blocks/build/accordion/style-index.css.map
deleted file mode 100644
index 672ed74..0000000
--- a/blocks/build/accordion/style-index.css.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"accordion/style-index.css","mappings":";;;AAAA;;;;;EAAA;AASA;EACC;AAFD;AAIC;EACC;AAFF;AAIE;EACC;AAFH;AAMC;EACC;AAJF;AAME;EACC;AAJH;AAMG;EACC;AAJJ;AAMG;EACC;AAJJ;AAQE;EACC;EACA;EACA;AANH;AAQG;EACC;EACA;AANJ;AAQG;EACC;EACA;AANJ;AAQG;EACC;AANJ;AAQG;EAGC;EACA;EACA;AARJ;AAaC;EACC;EACA;AAXF;AAaE;EACC;AAXH;AAaE;EACC;AAXH;AAgBE;EACC;AAdH;AAkBE;EACC;AAhBH,C","sources":["webpack://eo-blocks/./blocks/src/accordion/scss/style.scss"],"sourcesContent":["/**\r\n * The following styles get applied both on the front of your site\r\n * and in the editor.\r\n *\r\n * Replace them with your own styles or remove the file completely.\r\n */\r\n\r\n$media__mobile: 599px;\r\n\r\n.wp-block-eo-accordion {\r\n\tborder-bottom: 1px solid rgba(0,0,0,0.4);\r\n\r\n\t&.has-background {\r\n\t\tpadding: 0 1em;\r\n\r\n\t\t.eo-accordion__main-container {\r\n\t\t\tborder-bottom: 0;\r\n\t\t}\r\n\t}\r\n\r\n\t.eo-accordion__header {\r\n\t\tpadding: 0.8em 0;\r\n\r\n\t\t&:hover {\r\n\t\t\tcursor: pointer;\r\n\r\n\t\t\t.eo-accordion__title {\r\n\t\t\t\topacity: 0.7;\r\n\t\t\t}\r\n\t\t\t.eo-accordion__header-toggle::before {\r\n\t\t\t\topacity: 1 !important;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t.eo-accordion__header-container {\r\n\t\t\tdisplay: flex;\r\n\t\t\tjustify-content: space-between;\r\n\t\t\talign-items: center;\r\n\r\n\t\t\t.eo-accordion__title {\r\n\t\t\t\tmargin: 0;\r\n\t\t\t\ttransition: opacity 0.2s ease-out;\r\n\t\t\t}\r\n\t\t\tspan.eo-accordion__title {\r\n\t\t\t\tfont-size: 18px;\r\n\t\t\t\tfont-weight: 700;\r\n\t\t\t}\r\n\t\t\t.eo-accordion__header-toggle {\r\n\t\t\t\ttransition: transform 0.2s ease-out;\r\n\t\t\t}\r\n\t\t\t.eo-accordion__header-toggle::before {\r\n\t\t\t\t//width: 15px;\r\n\t\t\t\t//fill: rgba(0,0,0,1);\r\n\t\t\t\topacity: 0.4;\r\n\t\t\t\ttransition: all 0.2s ease-out;\r\n\t\t\t\ttransform-origin: center;\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\r\n\t.eo-accordion__inner {\r\n\t\tpadding: 0 0 1em 0;\r\n\t\ttransition: opacity 0.2s ease-out;\r\n\r\n\t\t> *:first-child {\r\n\t\t\tmargin-top: 0;\r\n\t\t}\r\n\t\t> *:last-child {\r\n\t\t\tmargin-bottom: 0;\r\n\t\t}\r\n\t}\r\n\r\n\t.eo-accordion__main-container.eo-accordion__active {\r\n\t\t.eo-accordion__header-toggle {\r\n\t\t\ttransform: rotate(90deg);\r\n\t\t}\r\n\t}\r\n\t.eo-accordion__main-container:not(.eo-accordion__active) {\r\n\t\t.eo-accordion__inner {\r\n\t\t\topacity: 0;\r\n\t\t}\r\n\t}\r\n}\r\n"],"names":[],"sourceRoot":""}
\ No newline at end of file
diff --git a/blocks/build/accordion/view.asset.php b/blocks/build/accordion/view.asset.php
deleted file mode 100644
index abaac9a..0000000
--- a/blocks/build/accordion/view.asset.php
+++ /dev/null
@@ -1 +0,0 @@
- array(), 'version' => '470e222bd072b6a22737');
diff --git a/blocks/build/accordion/view.js.map b/blocks/build/accordion/view.js.map
deleted file mode 100644
index a7b6036..0000000
--- a/blocks/build/accordion/view.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"accordion/view.js","mappings":";;;;;AAAA,CAAC,UAASA,CAAC,EAAE;EAEZ;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACC,IAAIC,eAAe,GAAG,SAAAA,CAAUC,MAAM,EAAG;IACxCA,MAAM,CAACC,IAAI,CAAE,+EAAgF,CAAC,CAACC,MAAM,CAAC,CAAC;IACvGF,MAAM,CAACC,IAAI,CAAE,uBAAwB,CAAC,CAACE,KAAK,CAAC,YAAW;MACvDL,CAAC,CAAC,IAAI,CAAC,CAACM,OAAO,CAAC,+BAA+B,CAAC,CAACC,WAAW,CAAC,sBAAsB,CAAC;MACpFP,CAAC,CAAC,IAAI,CAAC,CAACM,OAAO,CAAC,+BAA+B,CAAC,CAACH,IAAI,CAAC,sBAAsB,CAAC,CAACK,WAAW,CAAC,MAAM,CAAC;IAClG,CAAC,CAAC;EACH,CAAC;EAEDR,CAAC,CAACS,QAAQ,CAAC,CAACC,KAAK,CAAC,YAAU;IAC3BV,CAAC,CAAC,wBAAwB,CAAC,CAACW,IAAI,CAAC,YAAU;MAC1CV,eAAe,CAAED,CAAC,CAAC,IAAI,CAAE,CAAC;IAC3B,CAAC,CAAC;EACH,CAAC,CAAC;AAEH,CAAC,EAAEY,MAAM,CAAC,C","sources":["webpack://eo-blocks/./blocks/src/accordion/view.js"],"sourcesContent":["(function($) {\r\n\r\n\t/**\r\n\t * initializeBlock\r\n\t *\r\n\t * Adds custom JavaScript to the block Accordion.\r\n\t *\r\n\t * @since 1.0.0\r\n\t *\r\n\t * @param object $block The block jQuery element.\r\n\t * @return void\r\n\t */\r\n\tvar initializeBlock = function( $block ) {\r\n\t\t$block.find( '.eo-accordion__main-container:not(.eo-accordion__active) .eo-accordion__inner' ).toggle();\r\n\t\t$block.find( '.eo-accordion__header' ).click(function() {\r\n\t\t\t$(this).closest('.eo-accordion__main-container').toggleClass('eo-accordion__active');\r\n\t\t\t$(this).closest('.eo-accordion__main-container').find('.eo-accordion__inner').slideToggle('fast');\r\n\t\t});\r\n\t}\r\n\r\n\t$(document).ready(function(){\r\n\t\t$('.wp-block-eo-accordion').each(function(){\r\n\t\t\tinitializeBlock( $(this) );\r\n\t\t});\r\n\t});\r\n\r\n})(jQuery);\r\n"],"names":["$","initializeBlock","$block","find","toggle","click","closest","toggleClass","slideToggle","document","ready","each","jQuery"],"sourceRoot":""}
\ No newline at end of file
diff --git a/blocks/build/digirisk-list-risk/block.json b/blocks/build/digirisk-list-risk/block.json
index 63e6dd4..98ef289 100644
--- a/blocks/build/digirisk-list-risk/block.json
+++ b/blocks/build/digirisk-list-risk/block.json
@@ -3,7 +3,7 @@
"apiVersion": 3,
"name": "eo/digirisk-list-risk",
"version": "1.0.0",
- "title": "Digirisk List Risk",
+ "title": "Digirisk - List Risk",
"category": "eo-blocks",
"icon": "smiley",
"description": "Displays a summary of the different risks of your Dolibarr",
diff --git a/blocks/build/digirisk-list-risk/index.asset.php b/blocks/build/digirisk-list-risk/index.asset.php
index c19e9c3..f6a820f 100644
--- a/blocks/build/digirisk-list-risk/index.asset.php
+++ b/blocks/build/digirisk-list-risk/index.asset.php
@@ -1 +1 @@
- array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-data', 'wp-i18n'), 'version' => '68857afa441b5853d4ad');
+ array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-data', 'wp-i18n'), 'version' => '6b34f8db971c85c2b201');
diff --git a/blocks/build/digirisk-list-risk/index.css.map b/blocks/build/digirisk-list-risk/index.css.map
index 502f454..513885d 100644
--- a/blocks/build/digirisk-list-risk/index.css.map
+++ b/blocks/build/digirisk-list-risk/index.css.map
@@ -1 +1 @@
-{"version":3,"file":"digirisk-list-risk/index.css","mappings":";;;AAAA;;;;EAAA,C","sources":["webpack://eo-blocks/./blocks/src/digirisk-list-risk/scss/editor.scss"],"sourcesContent":["/**\r\n * The following styles get applied inside the editor only.\r\n *\r\n * Replace them with your own styles or remove the file completely.\r\n */\r\n"],"names":[],"sourceRoot":""}
\ No newline at end of file
+{"version":3,"file":"digirisk-list-risk/index.css","mappings":";;;AAAA;;;;EAAA,C","sources":["webpack://eo-blocks/./blocks/src/digirisk-list-risk/scss/editor.scss"],"sourcesContent":["/**\n * The following styles get applied inside the editor only.\n *\n * Replace them with your own styles or remove the file completely.\n */\n"],"names":[],"sourceRoot":""}
\ No newline at end of file
diff --git a/blocks/build/digirisk-list-risk/index.js b/blocks/build/digirisk-list-risk/index.js
index 93072f7..5ecd477 100644
--- a/blocks/build/digirisk-list-risk/index.js
+++ b/blocks/build/digirisk-list-risk/index.js
@@ -2,6 +2,42 @@
/******/ "use strict";
/******/ var __webpack_modules__ = ({
+/***/ "./assets/images/digirisk-favicon.svg":
+/*!********************************************!*\
+ !*** ./assets/images/digirisk-favicon.svg ***!
+ \********************************************/
+/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
+
+__webpack_require__.r(__webpack_exports__);
+/* harmony export */ __webpack_require__.d(__webpack_exports__, {
+/* harmony export */ ReactComponent: () => (/* binding */ SvgDigiriskFavicon),
+/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
+/* harmony export */ });
+/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react");
+/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
+var _path, _path2, _path3;
+function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
+
+var SvgDigiriskFavicon = function SvgDigiriskFavicon(props) {
+ return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg", _extends({
+ xmlns: "http://www.w3.org/2000/svg",
+ viewBox: "0 0 96.74 84.43"
+ }, props), _path || (_path = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("path", {
+ fill: "#2a9d8f",
+ d: "M96.4 80.68 85.57 61.92l-24.2-41.91-13.01 22.5 11.21 19.41 13 22.51h21.66c1.92 0 3.13-2.08 2.17-3.75"
+ })), _path2 || (_path2 = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("path", {
+ fill: "#f7931e",
+ d: "M59.57 61.92H11.16L.34 80.65c-.96 1.67.24 3.75 2.16 3.75h21.63c16.14.02 32.29.02 48.43.02l-13-22.51Z"
+ })), _path3 || (_path3 = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement("path", {
+ fill: "#0067a6",
+ d: "M50.54 1.25c-.96-1.67-3.37-1.67-4.33 0L35.37 20 11.16 61.92h25.99l11.22-19.41 13.01-22.5z"
+ })));
+};
+
+/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA5Ni43NCA4NC40MyI+Cgk8cGF0aCBmaWxsPSIjMmE5ZDhmIiBkPSJtOTYuNCw4MC42OGwtMTAuODMtMTguNzYtMjQuMi00MS45MS0xMy4wMSwyMi41LDExLjIxLDE5LjQxLDEzLDIyLjUxaDIxLjY2YzEuOTIsMCwzLjEzLTIuMDgsMi4xNy0zLjc1WiIvPgoJPHBhdGggZmlsbD0iI2Y3OTMxZSIgZD0ibTU5LjU3LDYxLjkySDExLjE2TC4zNCw4MC42NWMtLjk2LDEuNjcuMjQsMy43NSwyLjE2LDMuNzVoMjEuNjNjMTYuMTQuMDIsMzIuMjkuMDIsNDguNDMuMDJsLTEzLTIyLjUxWiIvPgoJPHBhdGggZmlsbD0iIzAwNjdhNiIgZD0ibTUwLjU0LDEuMjVjLS45Ni0xLjY3LTMuMzctMS42Ny00LjMzLDBsLTEwLjg0LDE4Ljc1TDExLjE2LDYxLjkyaDI1Ljk5bDExLjIyLTE5LjQxLDEzLjAxLTIyLjVMNTAuNTQsMS4yNVoiLz4KPC9zdmc+Cg==");
+
+/***/ }),
+
/***/ "./assets/js/utils.js":
/*!****************************!*\
!*** ./assets/js/utils.js ***!
@@ -259,14 +295,12 @@ function Edit({
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
-/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "react");
-/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
-/* harmony import */ var _wordpress_blocks__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @wordpress/blocks */ "@wordpress/blocks");
-/* harmony import */ var _wordpress_blocks__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_wordpress_blocks__WEBPACK_IMPORTED_MODULE_1__);
-/* harmony import */ var _scss_style_scss__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./scss/style.scss */ "./blocks/src/digirisk-list-risk/scss/style.scss");
-/* harmony import */ var _edit__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./edit */ "./blocks/src/digirisk-list-risk/edit.js");
-/* harmony import */ var _block_json__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./block.json */ "./blocks/src/digirisk-list-risk/block.json");
-
+/* harmony import */ var _wordpress_blocks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/blocks */ "@wordpress/blocks");
+/* harmony import */ var _wordpress_blocks__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_blocks__WEBPACK_IMPORTED_MODULE_0__);
+/* harmony import */ var _scss_style_scss__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./scss/style.scss */ "./blocks/src/digirisk-list-risk/scss/style.scss");
+/* harmony import */ var _edit__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./edit */ "./blocks/src/digirisk-list-risk/edit.js");
+/* harmony import */ var _block_json__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./block.json */ "./blocks/src/digirisk-list-risk/block.json");
+/* harmony import */ var _assets_images_digirisk_favicon_svg__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./../../../assets/images/digirisk-favicon.svg */ "./assets/images/digirisk-favicon.svg");
/**
* Registers a new block provided a unique name and an object defining its behavior.
*
@@ -288,31 +322,19 @@ __webpack_require__.r(__webpack_exports__);
*/
-const blockIcon = (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("svg", {
- width: "47",
- height: "50",
- viewBox: "0 0 47 50",
- fill: "none",
- xmlns: "http://www.w3.org/2000/svg"
-}, (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", {
- d: "M43.6927 12.2532C44.3914 14.0606 45.2534 15.7834 45.7286 17.6077C48.6545 28.8614 44.8722 41.3758 32.7381 46.9688C28.9445 48.7179 24.9104 49.2966 20.7693 49.3022C19.4622 49.3022 18.1532 49.3022 16.786 49.3022V34.8866C18.2189 34.8866 19.6744 35.0632 21.0698 34.8433C23.0286 34.5371 25.0513 34.1895 26.8486 33.4061C30.0976 31.9914 31.4479 29.115 31.6826 25.7183C31.7709 24.4539 31.6864 23.1368 31.4347 21.895C30.6215 17.8989 27.7951 15.8623 24.054 15.2592C20.959 14.7614 17.7776 14.8102 14.4891 14.6073C14.4891 15.2874 14.4891 15.7139 14.4891 16.1404C14.4854 26.7929 14.4703 37.4454 14.4966 48.0998C14.4985 49.0242 14.2976 49.3342 13.3135 49.3191C9.11792 49.259 4.92236 49.2909 0.726804 49.2891C0.510829 49.2891 0.296731 49.2646 0 49.2477V0.871768C1.12307 0.871768 2.15412 0.871768 3.18517 0.871768C8.53948 0.873647 13.8938 0.847344 19.2481 0.888677C24.4221 0.928131 29.4703 1.67775 34.2781 3.9285C34.2781 3.9285 40.0456 5.90306 43.6927 12.2551V12.2532Z",
- fill: "#263C5C"
-}), (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("path", {
- d: "M40.5452 12.9145C44.1101 12.9145 47 10.0235 47 6.45727C47 2.89102 44.1101 0 40.5452 0C36.9803 0 34.0903 2.89102 34.0903 6.45727C34.0903 10.0235 36.9803 12.9145 40.5452 12.9145Z",
- fill: "#61BCC0"
-}));
+
/**
* Every block starts by registering a new block type definition.
*
* @see https://developer.wordpress.org/block-editor/reference-guides/block-api/block-registration/
*/
-(0,_wordpress_blocks__WEBPACK_IMPORTED_MODULE_1__.registerBlockType)(_block_json__WEBPACK_IMPORTED_MODULE_4__.name, {
+(0,_wordpress_blocks__WEBPACK_IMPORTED_MODULE_0__.registerBlockType)(_block_json__WEBPACK_IMPORTED_MODULE_3__.name, {
/**
* @see ./edit.js
*/
- edit: _edit__WEBPACK_IMPORTED_MODULE_3__["default"],
- icon: blockIcon
+ edit: _edit__WEBPACK_IMPORTED_MODULE_2__["default"],
+ icon: _assets_images_digirisk_favicon_svg__WEBPACK_IMPORTED_MODULE_4__.ReactComponent
});
/***/ }),
@@ -407,7 +429,7 @@ module.exports = window["wp"]["i18n"];
\**************************************************/
/***/ ((module) => {
-module.exports = /*#__PURE__*/JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"eo/digirisk-list-risk","version":"1.0.0","title":"Digirisk List Risk","category":"eo-blocks","icon":"smiley","description":"Displays a summary of the different risks of your Dolibarr","example":{},"attributes":{"displayRisk1":{"type":"boolean","default":true},"displayRisk2":{"type":"boolean","default":true},"displayRisk3":{"type":"boolean","default":true},"displayRisk4":{"type":"boolean","default":true},"blockGrid":{"type":"number","default":2}},"supports":{"html":false},"textdomain":"digirisk-list-risk","editorScript":"file:./index.js","editorStyle":"file:./index.css","style":"file:./style-index.css","render":"file:./render.php","viewScript":"file:./view.js"}');
+module.exports = /*#__PURE__*/JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"eo/digirisk-list-risk","version":"1.0.0","title":"Digirisk - List Risk","category":"eo-blocks","icon":"smiley","description":"Displays a summary of the different risks of your Dolibarr","example":{},"attributes":{"displayRisk1":{"type":"boolean","default":true},"displayRisk2":{"type":"boolean","default":true},"displayRisk3":{"type":"boolean","default":true},"displayRisk4":{"type":"boolean","default":true},"blockGrid":{"type":"number","default":2}},"supports":{"html":false},"textdomain":"digirisk-list-risk","editorScript":"file:./index.js","editorStyle":"file:./index.css","style":"file:./style-index.css","render":"file:./render.php","viewScript":"file:./view.js"}');
/***/ })
diff --git a/blocks/build/digirisk-list-risk/index.js.map b/blocks/build/digirisk-list-risk/index.js.map
index 413e3d0..6525b73 100644
--- a/blocks/build/digirisk-list-risk/index.js.map
+++ b/blocks/build/digirisk-list-risk/index.js.map
@@ -1 +1 @@
-{"version":3,"file":"digirisk-list-risk/index.js","mappings":"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ACR,KAAK,EAAC;AAA4B,GAC7Fd,oDAAA;EAAMgB,CAAC,EAAC,w7BAAw7B;EAACM,IAAI,EAAC;AAAS,CAAC,CAAC,EACj9BtB,oDAAA;EAAMgB,CAAC,EAAC,kLAAkL;EAACM,IAAI,EAAC;AAAS,CAAC,CACtM,CACL;;AAED;AACA;AACA;AACA;AACA;AACAL,oEAAiB,CAAEC,6CAAa,EAAE;EACjC;AACD;AACA;EACCM,IAAI,EAAE5C,6CAAI;EACV6C,IAAI,EAAEN;AACP,CAAE,CAAC;;;;;;;;;;;ACxCH;;;;;;;;;;;;ACAA;;;;;;;;;;;ACAA;;;;;;;;;;ACAA;;;;;;;;;;ACAA;;;;;;;;;;ACAA;;;;;;;;;;ACAA;;;;;;;;;;ACAA;;;;;;;;;;;;;;;;UCAA;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;;UAEA;UACA;;;;;WCzBA;WACA;WACA;WACA;WACA,+BAA+B,wCAAwC;WACvE;WACA;WACA;WACA;WACA,iBAAiB,qBAAqB;WACtC;WACA;WACA,kBAAkB,qBAAqB;WACvC;WACA;WACA,KAAK;WACL;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;;;;;WC3BA;WACA;WACA;WACA;WACA;WACA,iCAAiC,WAAW;WAC5C;WACA;;;;;WCPA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA;;;;;WCAA;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;WCNA;;WAEA;WACA;WACA;WACA;WACA;WACA;WACA;;WAEA;;WAEA;;WAEA;;WAEA;;WAEA;;WAEA;;WAEA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA,MAAM,qBAAqB;WAC3B;WACA;WACA;WACA;WACA;WACA;WACA;WACA;;WAEA;WACA;WACA;;;;;UEjDA;UACA;UACA;UACA;UACA","sources":["webpack://eo-blocks/./assets/js/utils.js","webpack://eo-blocks/./blocks/src/digirisk-list-risk/edit.js","webpack://eo-blocks/./blocks/src/digirisk-list-risk/index.js","webpack://eo-blocks/./blocks/src/digirisk-list-risk/scss/editor.scss","webpack://eo-blocks/./blocks/src/digirisk-list-risk/scss/style.scss","webpack://eo-blocks/external window \"React\"","webpack://eo-blocks/external window [\"wp\",\"blockEditor\"]","webpack://eo-blocks/external window [\"wp\",\"blocks\"]","webpack://eo-blocks/external window [\"wp\",\"components\"]","webpack://eo-blocks/external window [\"wp\",\"data\"]","webpack://eo-blocks/external window [\"wp\",\"i18n\"]","webpack://eo-blocks/webpack/bootstrap","webpack://eo-blocks/webpack/runtime/chunk loaded","webpack://eo-blocks/webpack/runtime/compat get default export","webpack://eo-blocks/webpack/runtime/define property getters","webpack://eo-blocks/webpack/runtime/hasOwnProperty shorthand","webpack://eo-blocks/webpack/runtime/make namespace object","webpack://eo-blocks/webpack/runtime/jsonp chunk loading","webpack://eo-blocks/webpack/before-startup","webpack://eo-blocks/webpack/startup","webpack://eo-blocks/webpack/after-startup"],"sourcesContent":["/**\r\n * Utils JS functions\r\n *\r\n */\r\n\r\n/**\r\n * WordPress dependencies\r\n */\r\nimport { useState, useEffect } from 'react';\r\n\r\n/**\r\n * Clean URL\r\n *\r\n * @param url\r\n * @returns {*}\r\n */\r\nconst cleanUrl = (url) => {\r\n\tlet cleanedUrl = url.replace(/:\\//g, '://');\r\n\tcleanedUrl = cleanedUrl.replace(/([^:]\\/)\\/+/g, '$1');\r\n\tcleanedUrl = cleanedUrl.replace(/^\\/+|\\/+$/g, '');\r\n\treturn cleanedUrl;\r\n};\r\n\r\n/**\r\n * Get datas from DigiRisk module on Dolibarr\r\n *\r\n * @param route\r\n * @param params\r\n * @returns {{data: unknown, error: unknown}}\r\n */\r\nexport const digiriskApiGet = (route, params) => {\r\n\tconst [data, setData] = useState(null);\r\n\tconst [error, setError] = useState(null);\r\n\r\n\tuseEffect(() => {\r\n\t\tconst fetchData = async () => {\r\n\t\t\tif (!params) {\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\t\t\tconst { eoblocks_dolibarr_url: baseUrlApi, eoblocks_dolibarr_api_key: apiKey } = params;\r\n\t\t\tif (!baseUrlApi || !apiKey || !route) {\r\n\t\t\t\tsetError('Missing API key or base URL or route');\r\n\t\t\t\treturn;\r\n\t\t\t}\r\n\r\n\t\t\tlet digiriskUrlApi = `${baseUrlApi}/api/index.php/${route}?DOLAPIKEY=${apiKey}`;\r\n\t\t\tdigiriskUrlApi = cleanUrl(digiriskUrlApi);\r\n\r\n\t\t\ttry {\r\n\t\t\t\tconst response = await fetch(digiriskUrlApi);\r\n\r\n\t\t\t\tif (!response.ok) {\r\n\t\t\t\t\tif (response.status === 401) {\r\n\t\t\t\t\t\tsetError('Unauthorized: Wrong API Key or Unauthorized');\r\n\t\t\t\t\t} else if (response.status === 404) {\r\n\t\t\t\t\t\tsetError('Not Found: Wrong Dolibarr URL');\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\tsetError(`Error: ${response.status}`);\r\n\t\t\t\t\t}\r\n\t\t\t\t\treturn;\r\n\t\t\t\t}\r\n\r\n\t\t\t\tconst data = await response.json();\r\n\r\n\t\t\t\tif (data.error) {\r\n\t\t\t\t\tsetError('Error in API response');\r\n\t\t\t\t\treturn;\r\n\t\t\t\t}\r\n\r\n\t\t\t\tsetData(data);\r\n\t\t\t} catch (err) {\r\n\t\t\t\tsetError(err.message);\r\n\t\t\t}\r\n\t\t};\r\n\t\tfetchData();\r\n\t}, [route, params]);\r\n\r\n\treturn { data, error };\r\n}\r\n","/**\r\n * Retrieves the translation of text.\r\n *\r\n * @see https://developer.wordpress.org/block-editor/reference-guides/packages/packages-i18n/\r\n */\r\nimport { __ } from '@wordpress/i18n';\r\n\r\n/**\r\n * React hook that is used to mark the block wrapper element.\r\n * It provides all the necessary props like the class name.\r\n *\r\n * @see https://developer.wordpress.org/block-editor/reference-guides/packages/packages-block-editor/#useblockprops\r\n */\r\nimport { InspectorControls, useBlockProps } from '@wordpress/block-editor';\r\nimport { PanelBody, RangeControl, ToggleControl } from '@wordpress/components';\r\nimport { useSelect } from '@wordpress/data';\r\nimport { digiriskApiGet } from './../../../assets/js/utils';\r\n\r\n\r\n/**\r\n * Lets webpack process CSS, SASS or SCSS files referenced in JavaScript files.\r\n * Those files can contain any CSS code that gets applied to the editor.\r\n *\r\n * @see https://www.npmjs.com/package/@wordpress/scripts#using-css\r\n */\r\nimport './scss/editor.scss';\r\n\r\n/**\r\n * The edit function describes the structure of your block in the context of the\r\n * editor. This represents what the editor will render when the block is used.\r\n *\r\n * @see https://developer.wordpress.org/block-editor/reference-guides/block-api/block-edit-save/#edit\r\n *\r\n * @return {Element} Element to render.\r\n */\r\nexport default function Edit( { attributes, setAttributes } ) {\r\n\tconst { blockGrid, displayRisk1, displayRisk2, displayRisk3, displayRisk4 } = attributes;\r\n\tconst blockProps = useBlockProps();\r\n\tconst customTooltipContent = value => `${value}`;\r\n\r\n\tconst routeApi = 'digiriskdolibarr/risk/getRisksByCotation';\r\n\tconst eoblocksSettings = useSelect( ( select ) => select( 'core' ).getSite()?.eoblocks_settings );\r\n\tconst { data, error } = digiriskApiGet(routeApi, eoblocksSettings);\r\n\r\n\tif (error) {\r\n\t\tconsole.log('Error:' + error);\r\n\t}\r\n\r\n\tconst riskLabel = {\r\n\t\t1: __( 'faible', 'eo-blocks' ),\r\n\t\t2: __( 'Ã planifier', 'eo-blocks' ),\r\n\t\t3: __( 'Ã traiter', 'eo-blocks' ),\r\n\t\t4: __( 'inacceptable', 'eo-blocks' )\r\n\t}\r\n\tconst riskRender = {\r\n\t\t1: displayRisk1,\r\n\t\t2: displayRisk2,\r\n\t\t3: displayRisk3,\r\n\t\t4: displayRisk4\r\n\t}\r\n\r\n\treturn (\r\n\t\t<>\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t setAttributes( { displayRisk1: value } ) }\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t setAttributes( { displayRisk2: value } ) }\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t setAttributes( { displayRisk3: value } ) }\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t setAttributes( { displayRisk4: value } ) }\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t setAttributes( { blockGrid: value } ) }\r\n\t\t\t\t\t\tmin={ 1 }\r\n\t\t\t\t\t\tmax={ 4 }\r\n\t\t\t\t\t\trenderTooltipContent={ customTooltipContent }\r\n\t\t\t\t\t/>\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t
\r\n\t\t>\r\n\t);\r\n}\r\n","/**\r\n * Registers a new block provided a unique name and an object defining its behavior.\r\n *\r\n * @see https://developer.wordpress.org/block-editor/reference-guides/block-api/block-registration/\r\n */\r\nimport { registerBlockType } from '@wordpress/blocks';\r\nimport { InnerBlocks } from '@wordpress/block-editor'\r\n\r\n/**\r\n * Lets webpack process CSS, SASS or SCSS files referenced in JavaScript files.\r\n * All files containing `style` keyword are bundled together. The code used\r\n * gets applied both to the front of your site and to the editor.\r\n *\r\n * @see https://www.npmjs.com/package/@wordpress/scripts#using-css\r\n */\r\nimport './scss/style.scss';\r\n\r\n/**\r\n * Internal dependencies\r\n */\r\nimport Edit from './edit';\r\nimport metadata from './block.json';\r\n\r\nconst blockIcon = (\r\n\t\r\n);\r\n\r\n/** Update custom icon for eo-blocks category /*/\r\nwp.blocks.updateCategory('eo-blocks', {\r\n\ticon: (\r\n\t\t\r\n\t)\r\n});\r\n\r\n/**\r\n * Every block starts by registering a new block type definition.\r\n *\r\n * @see https://developer.wordpress.org/block-editor/reference-guides/block-api/block-registration/\r\n */\r\nregisterBlockType( metadata.name, {\r\n\t/**\r\n\t * @see ./edit.js\r\n\t */\r\n\tedit: Edit,\r\n\tsave: props => {\r\n\t\treturn \r\n\t},\r\n\ticon: blockIcon,\r\n} );\r\n","// extracted by mini-css-extract-plugin\nexport {};","// extracted by mini-css-extract-plugin\nexport {};","/**\n * @license React\n * react-jsx-runtime.development.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nif (process.env.NODE_ENV !== \"production\") {\n (function() {\n'use strict';\n\nvar React = require('react');\n\n// ATTENTION\n// When adding new symbols to this file,\n// Please consider also adding to 'react-devtools-shared/src/backend/ReactSymbols'\n// The Symbol used to tag the ReactElement-like types.\nvar REACT_ELEMENT_TYPE = Symbol.for('react.element');\nvar REACT_PORTAL_TYPE = Symbol.for('react.portal');\nvar REACT_FRAGMENT_TYPE = Symbol.for('react.fragment');\nvar REACT_STRICT_MODE_TYPE = Symbol.for('react.strict_mode');\nvar REACT_PROFILER_TYPE = Symbol.for('react.profiler');\nvar REACT_PROVIDER_TYPE = Symbol.for('react.provider');\nvar REACT_CONTEXT_TYPE = Symbol.for('react.context');\nvar REACT_FORWARD_REF_TYPE = Symbol.for('react.forward_ref');\nvar REACT_SUSPENSE_TYPE = Symbol.for('react.suspense');\nvar REACT_SUSPENSE_LIST_TYPE = Symbol.for('react.suspense_list');\nvar REACT_MEMO_TYPE = Symbol.for('react.memo');\nvar REACT_LAZY_TYPE = Symbol.for('react.lazy');\nvar REACT_OFFSCREEN_TYPE = Symbol.for('react.offscreen');\nvar MAYBE_ITERATOR_SYMBOL = Symbol.iterator;\nvar FAUX_ITERATOR_SYMBOL = '@@iterator';\nfunction getIteratorFn(maybeIterable) {\n if (maybeIterable === null || typeof maybeIterable !== 'object') {\n return null;\n }\n\n var maybeIterator = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL];\n\n if (typeof maybeIterator === 'function') {\n return maybeIterator;\n }\n\n return null;\n}\n\nvar ReactSharedInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;\n\nfunction error(format) {\n {\n {\n for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n args[_key2 - 1] = arguments[_key2];\n }\n\n printWarning('error', format, args);\n }\n }\n}\n\nfunction printWarning(level, format, args) {\n // When changing this logic, you might want to also\n // update consoleWithStackDev.www.js as well.\n {\n var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;\n var stack = ReactDebugCurrentFrame.getStackAddendum();\n\n if (stack !== '') {\n format += '%s';\n args = args.concat([stack]);\n } // eslint-disable-next-line react-internal/safe-string-coercion\n\n\n var argsWithFormat = args.map(function (item) {\n return String(item);\n }); // Careful: RN currently depends on this prefix\n\n argsWithFormat.unshift('Warning: ' + format); // We intentionally don't use spread (or .apply) directly because it\n // breaks IE9: https://github.com/facebook/react/issues/13610\n // eslint-disable-next-line react-internal/no-production-logging\n\n Function.prototype.apply.call(console[level], console, argsWithFormat);\n }\n}\n\n// -----------------------------------------------------------------------------\n\nvar enableScopeAPI = false; // Experimental Create Event Handle API.\nvar enableCacheElement = false;\nvar enableTransitionTracing = false; // No known bugs, but needs performance testing\n\nvar enableLegacyHidden = false; // Enables unstable_avoidThisFallback feature in Fiber\n// stuff. Intended to enable React core members to more easily debug scheduling\n// issues in DEV builds.\n\nvar enableDebugTracing = false; // Track which Fiber(s) schedule render work.\n\nvar REACT_MODULE_REFERENCE;\n\n{\n REACT_MODULE_REFERENCE = Symbol.for('react.module.reference');\n}\n\nfunction isValidElementType(type) {\n if (typeof type === 'string' || typeof type === 'function') {\n return true;\n } // Note: typeof might be other than 'symbol' or 'number' (e.g. if it's a polyfill).\n\n\n if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || enableDebugTracing || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || enableLegacyHidden || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || enableCacheElement || enableTransitionTracing ) {\n return true;\n }\n\n if (typeof type === 'object' && type !== null) {\n if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object\n // types supported by any Flight configuration anywhere since\n // we don't know which Flight build this will end up being used\n // with.\n type.$$typeof === REACT_MODULE_REFERENCE || type.getModuleId !== undefined) {\n return true;\n }\n }\n\n return false;\n}\n\nfunction getWrappedName(outerType, innerType, wrapperName) {\n var displayName = outerType.displayName;\n\n if (displayName) {\n return displayName;\n }\n\n var functionName = innerType.displayName || innerType.name || '';\n return functionName !== '' ? wrapperName + \"(\" + functionName + \")\" : wrapperName;\n} // Keep in sync with react-reconciler/getComponentNameFromFiber\n\n\nfunction getContextName(type) {\n return type.displayName || 'Context';\n} // Note that the reconciler package should generally prefer to use getComponentNameFromFiber() instead.\n\n\nfunction getComponentNameFromType(type) {\n if (type == null) {\n // Host root, text node or just invalid type.\n return null;\n }\n\n {\n if (typeof type.tag === 'number') {\n error('Received an unexpected object in getComponentNameFromType(). ' + 'This is likely a bug in React. Please file an issue.');\n }\n }\n\n if (typeof type === 'function') {\n return type.displayName || type.name || null;\n }\n\n if (typeof type === 'string') {\n return type;\n }\n\n switch (type) {\n case REACT_FRAGMENT_TYPE:\n return 'Fragment';\n\n case REACT_PORTAL_TYPE:\n return 'Portal';\n\n case REACT_PROFILER_TYPE:\n return 'Profiler';\n\n case REACT_STRICT_MODE_TYPE:\n return 'StrictMode';\n\n case REACT_SUSPENSE_TYPE:\n return 'Suspense';\n\n case REACT_SUSPENSE_LIST_TYPE:\n return 'SuspenseList';\n\n }\n\n if (typeof type === 'object') {\n switch (type.$$typeof) {\n case REACT_CONTEXT_TYPE:\n var context = type;\n return getContextName(context) + '.Consumer';\n\n case REACT_PROVIDER_TYPE:\n var provider = type;\n return getContextName(provider._context) + '.Provider';\n\n case REACT_FORWARD_REF_TYPE:\n return getWrappedName(type, type.render, 'ForwardRef');\n\n case REACT_MEMO_TYPE:\n var outerName = type.displayName || null;\n\n if (outerName !== null) {\n return outerName;\n }\n\n return getComponentNameFromType(type.type) || 'Memo';\n\n case REACT_LAZY_TYPE:\n {\n var lazyComponent = type;\n var payload = lazyComponent._payload;\n var init = lazyComponent._init;\n\n try {\n return getComponentNameFromType(init(payload));\n } catch (x) {\n return null;\n }\n }\n\n // eslint-disable-next-line no-fallthrough\n }\n }\n\n return null;\n}\n\nvar assign = Object.assign;\n\n// Helpers to patch console.logs to avoid logging during side-effect free\n// replaying on render function. This currently only patches the object\n// lazily which won't cover if the log function was extracted eagerly.\n// We could also eagerly patch the method.\nvar disabledDepth = 0;\nvar prevLog;\nvar prevInfo;\nvar prevWarn;\nvar prevError;\nvar prevGroup;\nvar prevGroupCollapsed;\nvar prevGroupEnd;\n\nfunction disabledLog() {}\n\ndisabledLog.__reactDisabledLog = true;\nfunction disableLogs() {\n {\n if (disabledDepth === 0) {\n /* eslint-disable react-internal/no-production-logging */\n prevLog = console.log;\n prevInfo = console.info;\n prevWarn = console.warn;\n prevError = console.error;\n prevGroup = console.group;\n prevGroupCollapsed = console.groupCollapsed;\n prevGroupEnd = console.groupEnd; // https://github.com/facebook/react/issues/19099\n\n var props = {\n configurable: true,\n enumerable: true,\n value: disabledLog,\n writable: true\n }; // $FlowFixMe Flow thinks console is immutable.\n\n Object.defineProperties(console, {\n info: props,\n log: props,\n warn: props,\n error: props,\n group: props,\n groupCollapsed: props,\n groupEnd: props\n });\n /* eslint-enable react-internal/no-production-logging */\n }\n\n disabledDepth++;\n }\n}\nfunction reenableLogs() {\n {\n disabledDepth--;\n\n if (disabledDepth === 0) {\n /* eslint-disable react-internal/no-production-logging */\n var props = {\n configurable: true,\n enumerable: true,\n writable: true\n }; // $FlowFixMe Flow thinks console is immutable.\n\n Object.defineProperties(console, {\n log: assign({}, props, {\n value: prevLog\n }),\n info: assign({}, props, {\n value: prevInfo\n }),\n warn: assign({}, props, {\n value: prevWarn\n }),\n error: assign({}, props, {\n value: prevError\n }),\n group: assign({}, props, {\n value: prevGroup\n }),\n groupCollapsed: assign({}, props, {\n value: prevGroupCollapsed\n }),\n groupEnd: assign({}, props, {\n value: prevGroupEnd\n })\n });\n /* eslint-enable react-internal/no-production-logging */\n }\n\n if (disabledDepth < 0) {\n error('disabledDepth fell below zero. ' + 'This is a bug in React. Please file an issue.');\n }\n }\n}\n\nvar ReactCurrentDispatcher = ReactSharedInternals.ReactCurrentDispatcher;\nvar prefix;\nfunction describeBuiltInComponentFrame(name, source, ownerFn) {\n {\n if (prefix === undefined) {\n // Extract the VM specific prefix used by each line.\n try {\n throw Error();\n } catch (x) {\n var match = x.stack.trim().match(/\\n( *(at )?)/);\n prefix = match && match[1] || '';\n }\n } // We use the prefix to ensure our stacks line up with native stack frames.\n\n\n return '\\n' + prefix + name;\n }\n}\nvar reentry = false;\nvar componentFrameCache;\n\n{\n var PossiblyWeakMap = typeof WeakMap === 'function' ? WeakMap : Map;\n componentFrameCache = new PossiblyWeakMap();\n}\n\nfunction describeNativeComponentFrame(fn, construct) {\n // If something asked for a stack inside a fake render, it should get ignored.\n if ( !fn || reentry) {\n return '';\n }\n\n {\n var frame = componentFrameCache.get(fn);\n\n if (frame !== undefined) {\n return frame;\n }\n }\n\n var control;\n reentry = true;\n var previousPrepareStackTrace = Error.prepareStackTrace; // $FlowFixMe It does accept undefined.\n\n Error.prepareStackTrace = undefined;\n var previousDispatcher;\n\n {\n previousDispatcher = ReactCurrentDispatcher.current; // Set the dispatcher in DEV because this might be call in the render function\n // for warnings.\n\n ReactCurrentDispatcher.current = null;\n disableLogs();\n }\n\n try {\n // This should throw.\n if (construct) {\n // Something should be setting the props in the constructor.\n var Fake = function () {\n throw Error();\n }; // $FlowFixMe\n\n\n Object.defineProperty(Fake.prototype, 'props', {\n set: function () {\n // We use a throwing setter instead of frozen or non-writable props\n // because that won't throw in a non-strict mode function.\n throw Error();\n }\n });\n\n if (typeof Reflect === 'object' && Reflect.construct) {\n // We construct a different control for this case to include any extra\n // frames added by the construct call.\n try {\n Reflect.construct(Fake, []);\n } catch (x) {\n control = x;\n }\n\n Reflect.construct(fn, [], Fake);\n } else {\n try {\n Fake.call();\n } catch (x) {\n control = x;\n }\n\n fn.call(Fake.prototype);\n }\n } else {\n try {\n throw Error();\n } catch (x) {\n control = x;\n }\n\n fn();\n }\n } catch (sample) {\n // This is inlined manually because closure doesn't do it for us.\n if (sample && control && typeof sample.stack === 'string') {\n // This extracts the first frame from the sample that isn't also in the control.\n // Skipping one frame that we assume is the frame that calls the two.\n var sampleLines = sample.stack.split('\\n');\n var controlLines = control.stack.split('\\n');\n var s = sampleLines.length - 1;\n var c = controlLines.length - 1;\n\n while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) {\n // We expect at least one stack frame to be shared.\n // Typically this will be the root most one. However, stack frames may be\n // cut off due to maximum stack limits. In this case, one maybe cut off\n // earlier than the other. We assume that the sample is longer or the same\n // and there for cut off earlier. So we should find the root most frame in\n // the sample somewhere in the control.\n c--;\n }\n\n for (; s >= 1 && c >= 0; s--, c--) {\n // Next we find the first one that isn't the same which should be the\n // frame that called our sample function and the control.\n if (sampleLines[s] !== controlLines[c]) {\n // In V8, the first line is describing the message but other VMs don't.\n // If we're about to return the first line, and the control is also on the same\n // line, that's a pretty good indicator that our sample threw at same line as\n // the control. I.e. before we entered the sample frame. So we ignore this result.\n // This can happen if you passed a class to function component, or non-function.\n if (s !== 1 || c !== 1) {\n do {\n s--;\n c--; // We may still have similar intermediate frames from the construct call.\n // The next one that isn't the same should be our match though.\n\n if (c < 0 || sampleLines[s] !== controlLines[c]) {\n // V8 adds a \"new\" prefix for native classes. Let's remove it to make it prettier.\n var _frame = '\\n' + sampleLines[s].replace(' at new ', ' at '); // If our component frame is labeled \"\"\n // but we have a user-provided \"displayName\"\n // splice it in to make the stack more readable.\n\n\n if (fn.displayName && _frame.includes('')) {\n _frame = _frame.replace('', fn.displayName);\n }\n\n {\n if (typeof fn === 'function') {\n componentFrameCache.set(fn, _frame);\n }\n } // Return the line we found.\n\n\n return _frame;\n }\n } while (s >= 1 && c >= 0);\n }\n\n break;\n }\n }\n }\n } finally {\n reentry = false;\n\n {\n ReactCurrentDispatcher.current = previousDispatcher;\n reenableLogs();\n }\n\n Error.prepareStackTrace = previousPrepareStackTrace;\n } // Fallback to just using the name if we couldn't make it throw.\n\n\n var name = fn ? fn.displayName || fn.name : '';\n var syntheticFrame = name ? describeBuiltInComponentFrame(name) : '';\n\n {\n if (typeof fn === 'function') {\n componentFrameCache.set(fn, syntheticFrame);\n }\n }\n\n return syntheticFrame;\n}\nfunction describeFunctionComponentFrame(fn, source, ownerFn) {\n {\n return describeNativeComponentFrame(fn, false);\n }\n}\n\nfunction shouldConstruct(Component) {\n var prototype = Component.prototype;\n return !!(prototype && prototype.isReactComponent);\n}\n\nfunction describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {\n\n if (type == null) {\n return '';\n }\n\n if (typeof type === 'function') {\n {\n return describeNativeComponentFrame(type, shouldConstruct(type));\n }\n }\n\n if (typeof type === 'string') {\n return describeBuiltInComponentFrame(type);\n }\n\n switch (type) {\n case REACT_SUSPENSE_TYPE:\n return describeBuiltInComponentFrame('Suspense');\n\n case REACT_SUSPENSE_LIST_TYPE:\n return describeBuiltInComponentFrame('SuspenseList');\n }\n\n if (typeof type === 'object') {\n switch (type.$$typeof) {\n case REACT_FORWARD_REF_TYPE:\n return describeFunctionComponentFrame(type.render);\n\n case REACT_MEMO_TYPE:\n // Memo may contain any component type so we recursively resolve it.\n return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);\n\n case REACT_LAZY_TYPE:\n {\n var lazyComponent = type;\n var payload = lazyComponent._payload;\n var init = lazyComponent._init;\n\n try {\n // Lazy may contain any component type so we recursively resolve it.\n return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);\n } catch (x) {}\n }\n }\n }\n\n return '';\n}\n\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\n\nvar loggedTypeFailures = {};\nvar ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;\n\nfunction setCurrentlyValidatingElement(element) {\n {\n if (element) {\n var owner = element._owner;\n var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);\n ReactDebugCurrentFrame.setExtraStackFrame(stack);\n } else {\n ReactDebugCurrentFrame.setExtraStackFrame(null);\n }\n }\n}\n\nfunction checkPropTypes(typeSpecs, values, location, componentName, element) {\n {\n // $FlowFixMe This is okay but Flow doesn't know it.\n var has = Function.call.bind(hasOwnProperty);\n\n for (var typeSpecName in typeSpecs) {\n if (has(typeSpecs, typeSpecName)) {\n var error$1 = void 0; // Prop type validation may throw. In case they do, we don't want to\n // fail the render phase where it didn't fail before. So we log it.\n // After these have been cleaned up, we'll let them throw.\n\n try {\n // This is intentionally an invariant that gets caught. It's the same\n // behavior as without this statement except with a better message.\n if (typeof typeSpecs[typeSpecName] !== 'function') {\n // eslint-disable-next-line react-internal/prod-error-codes\n var err = Error((componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' + 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' + 'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.');\n err.name = 'Invariant Violation';\n throw err;\n }\n\n error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED');\n } catch (ex) {\n error$1 = ex;\n }\n\n if (error$1 && !(error$1 instanceof Error)) {\n setCurrentlyValidatingElement(element);\n\n error('%s: type specification of %s' + ' `%s` is invalid; the type checker ' + 'function must return `null` or an `Error` but returned a %s. ' + 'You may have forgotten to pass an argument to the type checker ' + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + 'shape all require an argument).', componentName || 'React class', location, typeSpecName, typeof error$1);\n\n setCurrentlyValidatingElement(null);\n }\n\n if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {\n // Only monitor this failure once because there tends to be a lot of the\n // same error.\n loggedTypeFailures[error$1.message] = true;\n setCurrentlyValidatingElement(element);\n\n error('Failed %s type: %s', location, error$1.message);\n\n setCurrentlyValidatingElement(null);\n }\n }\n }\n }\n}\n\nvar isArrayImpl = Array.isArray; // eslint-disable-next-line no-redeclare\n\nfunction isArray(a) {\n return isArrayImpl(a);\n}\n\n/*\n * The `'' + value` pattern (used in in perf-sensitive code) throws for Symbol\n * and Temporal.* types. See https://github.com/facebook/react/pull/22064.\n *\n * The functions in this module will throw an easier-to-understand,\n * easier-to-debug exception with a clear errors message message explaining the\n * problem. (Instead of a confusing exception thrown inside the implementation\n * of the `value` object).\n */\n// $FlowFixMe only called in DEV, so void return is not possible.\nfunction typeName(value) {\n {\n // toStringTag is needed for namespaced types like Temporal.Instant\n var hasToStringTag = typeof Symbol === 'function' && Symbol.toStringTag;\n var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || 'Object';\n return type;\n }\n} // $FlowFixMe only called in DEV, so void return is not possible.\n\n\nfunction willCoercionThrow(value) {\n {\n try {\n testStringCoercion(value);\n return false;\n } catch (e) {\n return true;\n }\n }\n}\n\nfunction testStringCoercion(value) {\n // If you ended up here by following an exception call stack, here's what's\n // happened: you supplied an object or symbol value to React (as a prop, key,\n // DOM attribute, CSS property, string ref, etc.) and when React tried to\n // coerce it to a string using `'' + value`, an exception was thrown.\n //\n // The most common types that will cause this exception are `Symbol` instances\n // and Temporal objects like `Temporal.Instant`. But any object that has a\n // `valueOf` or `[Symbol.toPrimitive]` method that throws will also cause this\n // exception. (Library authors do this to prevent users from using built-in\n // numeric operators like `+` or comparison operators like `>=` because custom\n // methods are needed to perform accurate arithmetic or comparison.)\n //\n // To fix the problem, coerce this object or symbol value to a string before\n // passing it to React. The most reliable way is usually `String(value)`.\n //\n // To find which value is throwing, check the browser or debugger console.\n // Before this exception was thrown, there should be `console.error` output\n // that shows the type (Symbol, Temporal.PlainDate, etc.) that caused the\n // problem and how that type was used: key, atrribute, input value prop, etc.\n // In most cases, this console output also shows the component and its\n // ancestor components where the exception happened.\n //\n // eslint-disable-next-line react-internal/safe-string-coercion\n return '' + value;\n}\nfunction checkKeyStringCoercion(value) {\n {\n if (willCoercionThrow(value)) {\n error('The provided key is an unsupported type %s.' + ' This value must be coerced to a string before before using it here.', typeName(value));\n\n return testStringCoercion(value); // throw (to help callers find troubleshooting comments)\n }\n }\n}\n\nvar ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;\nvar RESERVED_PROPS = {\n key: true,\n ref: true,\n __self: true,\n __source: true\n};\nvar specialPropKeyWarningShown;\nvar specialPropRefWarningShown;\nvar didWarnAboutStringRefs;\n\n{\n didWarnAboutStringRefs = {};\n}\n\nfunction hasValidRef(config) {\n {\n if (hasOwnProperty.call(config, 'ref')) {\n var getter = Object.getOwnPropertyDescriptor(config, 'ref').get;\n\n if (getter && getter.isReactWarning) {\n return false;\n }\n }\n }\n\n return config.ref !== undefined;\n}\n\nfunction hasValidKey(config) {\n {\n if (hasOwnProperty.call(config, 'key')) {\n var getter = Object.getOwnPropertyDescriptor(config, 'key').get;\n\n if (getter && getter.isReactWarning) {\n return false;\n }\n }\n }\n\n return config.key !== undefined;\n}\n\nfunction warnIfStringRefCannotBeAutoConverted(config, self) {\n {\n if (typeof config.ref === 'string' && ReactCurrentOwner.current && self && ReactCurrentOwner.current.stateNode !== self) {\n var componentName = getComponentNameFromType(ReactCurrentOwner.current.type);\n\n if (!didWarnAboutStringRefs[componentName]) {\n error('Component \"%s\" contains the string ref \"%s\". ' + 'Support for string refs will be removed in a future major release. ' + 'This case cannot be automatically converted to an arrow function. ' + 'We ask you to manually fix this case by using useRef() or createRef() instead. ' + 'Learn more about using refs safely here: ' + 'https://reactjs.org/link/strict-mode-string-ref', getComponentNameFromType(ReactCurrentOwner.current.type), config.ref);\n\n didWarnAboutStringRefs[componentName] = true;\n }\n }\n }\n}\n\nfunction defineKeyPropWarningGetter(props, displayName) {\n {\n var warnAboutAccessingKey = function () {\n if (!specialPropKeyWarningShown) {\n specialPropKeyWarningShown = true;\n\n error('%s: `key` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName);\n }\n };\n\n warnAboutAccessingKey.isReactWarning = true;\n Object.defineProperty(props, 'key', {\n get: warnAboutAccessingKey,\n configurable: true\n });\n }\n}\n\nfunction defineRefPropWarningGetter(props, displayName) {\n {\n var warnAboutAccessingRef = function () {\n if (!specialPropRefWarningShown) {\n specialPropRefWarningShown = true;\n\n error('%s: `ref` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://reactjs.org/link/special-props)', displayName);\n }\n };\n\n warnAboutAccessingRef.isReactWarning = true;\n Object.defineProperty(props, 'ref', {\n get: warnAboutAccessingRef,\n configurable: true\n });\n }\n}\n/**\n * Factory method to create a new React element. This no longer adheres to\n * the class pattern, so do not use new to call it. Also, instanceof check\n * will not work. Instead test $$typeof field against Symbol.for('react.element') to check\n * if something is a React Element.\n *\n * @param {*} type\n * @param {*} props\n * @param {*} key\n * @param {string|object} ref\n * @param {*} owner\n * @param {*} self A *temporary* helper to detect places where `this` is\n * different from the `owner` when React.createElement is called, so that we\n * can warn. We want to get rid of owner and replace string `ref`s with arrow\n * functions, and as long as `this` and owner are the same, there will be no\n * change in behavior.\n * @param {*} source An annotation object (added by a transpiler or otherwise)\n * indicating filename, line number, and/or other information.\n * @internal\n */\n\n\nvar ReactElement = function (type, key, ref, self, source, owner, props) {\n var element = {\n // This tag allows us to uniquely identify this as a React Element\n $$typeof: REACT_ELEMENT_TYPE,\n // Built-in properties that belong on the element\n type: type,\n key: key,\n ref: ref,\n props: props,\n // Record the component responsible for creating this element.\n _owner: owner\n };\n\n {\n // The validation flag is currently mutative. We put it on\n // an external backing store so that we can freeze the whole object.\n // This can be replaced with a WeakMap once they are implemented in\n // commonly used development environments.\n element._store = {}; // To make comparing ReactElements easier for testing purposes, we make\n // the validation flag non-enumerable (where possible, which should\n // include every environment we run tests in), so the test framework\n // ignores it.\n\n Object.defineProperty(element._store, 'validated', {\n configurable: false,\n enumerable: false,\n writable: true,\n value: false\n }); // self and source are DEV only properties.\n\n Object.defineProperty(element, '_self', {\n configurable: false,\n enumerable: false,\n writable: false,\n value: self\n }); // Two elements created in two different places should be considered\n // equal for testing purposes and therefore we hide it from enumeration.\n\n Object.defineProperty(element, '_source', {\n configurable: false,\n enumerable: false,\n writable: false,\n value: source\n });\n\n if (Object.freeze) {\n Object.freeze(element.props);\n Object.freeze(element);\n }\n }\n\n return element;\n};\n/**\n * https://github.com/reactjs/rfcs/pull/107\n * @param {*} type\n * @param {object} props\n * @param {string} key\n */\n\nfunction jsxDEV(type, config, maybeKey, source, self) {\n {\n var propName; // Reserved names are extracted\n\n var props = {};\n var key = null;\n var ref = null; // Currently, key can be spread in as a prop. This causes a potential\n // issue if key is also explicitly declared (ie. \n // or ). We want to deprecate key spread,\n // but as an intermediary step, we will use jsxDEV for everything except\n // , because we aren't currently able to tell if\n // key is explicitly declared to be undefined or not.\n\n if (maybeKey !== undefined) {\n {\n checkKeyStringCoercion(maybeKey);\n }\n\n key = '' + maybeKey;\n }\n\n if (hasValidKey(config)) {\n {\n checkKeyStringCoercion(config.key);\n }\n\n key = '' + config.key;\n }\n\n if (hasValidRef(config)) {\n ref = config.ref;\n warnIfStringRefCannotBeAutoConverted(config, self);\n } // Remaining properties are added to a new props object\n\n\n for (propName in config) {\n if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {\n props[propName] = config[propName];\n }\n } // Resolve default props\n\n\n if (type && type.defaultProps) {\n var defaultProps = type.defaultProps;\n\n for (propName in defaultProps) {\n if (props[propName] === undefined) {\n props[propName] = defaultProps[propName];\n }\n }\n }\n\n if (key || ref) {\n var displayName = typeof type === 'function' ? type.displayName || type.name || 'Unknown' : type;\n\n if (key) {\n defineKeyPropWarningGetter(props, displayName);\n }\n\n if (ref) {\n defineRefPropWarningGetter(props, displayName);\n }\n }\n\n return ReactElement(type, key, ref, self, source, ReactCurrentOwner.current, props);\n }\n}\n\nvar ReactCurrentOwner$1 = ReactSharedInternals.ReactCurrentOwner;\nvar ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;\n\nfunction setCurrentlyValidatingElement$1(element) {\n {\n if (element) {\n var owner = element._owner;\n var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);\n ReactDebugCurrentFrame$1.setExtraStackFrame(stack);\n } else {\n ReactDebugCurrentFrame$1.setExtraStackFrame(null);\n }\n }\n}\n\nvar propTypesMisspellWarningShown;\n\n{\n propTypesMisspellWarningShown = false;\n}\n/**\n * Verifies the object is a ReactElement.\n * See https://reactjs.org/docs/react-api.html#isvalidelement\n * @param {?object} object\n * @return {boolean} True if `object` is a ReactElement.\n * @final\n */\n\n\nfunction isValidElement(object) {\n {\n return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;\n }\n}\n\nfunction getDeclarationErrorAddendum() {\n {\n if (ReactCurrentOwner$1.current) {\n var name = getComponentNameFromType(ReactCurrentOwner$1.current.type);\n\n if (name) {\n return '\\n\\nCheck the render method of `' + name + '`.';\n }\n }\n\n return '';\n }\n}\n\nfunction getSourceInfoErrorAddendum(source) {\n {\n if (source !== undefined) {\n var fileName = source.fileName.replace(/^.*[\\\\\\/]/, '');\n var lineNumber = source.lineNumber;\n return '\\n\\nCheck your code at ' + fileName + ':' + lineNumber + '.';\n }\n\n return '';\n }\n}\n/**\n * Warn if there's no key explicitly set on dynamic arrays of children or\n * object keys are not valid. This allows us to keep track of children between\n * updates.\n */\n\n\nvar ownerHasKeyUseWarning = {};\n\nfunction getCurrentComponentErrorInfo(parentType) {\n {\n var info = getDeclarationErrorAddendum();\n\n if (!info) {\n var parentName = typeof parentType === 'string' ? parentType : parentType.displayName || parentType.name;\n\n if (parentName) {\n info = \"\\n\\nCheck the top-level render call using <\" + parentName + \">.\";\n }\n }\n\n return info;\n }\n}\n/**\n * Warn if the element doesn't have an explicit key assigned to it.\n * This element is in an array. The array could grow and shrink or be\n * reordered. All children that haven't already been validated are required to\n * have a \"key\" property assigned to it. Error statuses are cached so a warning\n * will only be shown once.\n *\n * @internal\n * @param {ReactElement} element Element that requires a key.\n * @param {*} parentType element's parent's type.\n */\n\n\nfunction validateExplicitKey(element, parentType) {\n {\n if (!element._store || element._store.validated || element.key != null) {\n return;\n }\n\n element._store.validated = true;\n var currentComponentErrorInfo = getCurrentComponentErrorInfo(parentType);\n\n if (ownerHasKeyUseWarning[currentComponentErrorInfo]) {\n return;\n }\n\n ownerHasKeyUseWarning[currentComponentErrorInfo] = true; // Usually the current owner is the offender, but if it accepts children as a\n // property, it may be the creator of the child that's responsible for\n // assigning it a key.\n\n var childOwner = '';\n\n if (element && element._owner && element._owner !== ReactCurrentOwner$1.current) {\n // Give the component that originally created this child.\n childOwner = \" It was passed a child from \" + getComponentNameFromType(element._owner.type) + \".\";\n }\n\n setCurrentlyValidatingElement$1(element);\n\n error('Each child in a list should have a unique \"key\" prop.' + '%s%s See https://reactjs.org/link/warning-keys for more information.', currentComponentErrorInfo, childOwner);\n\n setCurrentlyValidatingElement$1(null);\n }\n}\n/**\n * Ensure that every element either is passed in a static location, in an\n * array with an explicit keys property defined, or in an object literal\n * with valid key property.\n *\n * @internal\n * @param {ReactNode} node Statically passed child of any type.\n * @param {*} parentType node's parent's type.\n */\n\n\nfunction validateChildKeys(node, parentType) {\n {\n if (typeof node !== 'object') {\n return;\n }\n\n if (isArray(node)) {\n for (var i = 0; i < node.length; i++) {\n var child = node[i];\n\n if (isValidElement(child)) {\n validateExplicitKey(child, parentType);\n }\n }\n } else if (isValidElement(node)) {\n // This element was passed in a valid location.\n if (node._store) {\n node._store.validated = true;\n }\n } else if (node) {\n var iteratorFn = getIteratorFn(node);\n\n if (typeof iteratorFn === 'function') {\n // Entry iterators used to provide implicit keys,\n // but now we print a separate warning for them later.\n if (iteratorFn !== node.entries) {\n var iterator = iteratorFn.call(node);\n var step;\n\n while (!(step = iterator.next()).done) {\n if (isValidElement(step.value)) {\n validateExplicitKey(step.value, parentType);\n }\n }\n }\n }\n }\n }\n}\n/**\n * Given an element, validate that its props follow the propTypes definition,\n * provided by the type.\n *\n * @param {ReactElement} element\n */\n\n\nfunction validatePropTypes(element) {\n {\n var type = element.type;\n\n if (type === null || type === undefined || typeof type === 'string') {\n return;\n }\n\n var propTypes;\n\n if (typeof type === 'function') {\n propTypes = type.propTypes;\n } else if (typeof type === 'object' && (type.$$typeof === REACT_FORWARD_REF_TYPE || // Note: Memo only checks outer props here.\n // Inner props are checked in the reconciler.\n type.$$typeof === REACT_MEMO_TYPE)) {\n propTypes = type.propTypes;\n } else {\n return;\n }\n\n if (propTypes) {\n // Intentionally inside to avoid triggering lazy initializers:\n var name = getComponentNameFromType(type);\n checkPropTypes(propTypes, element.props, 'prop', name, element);\n } else if (type.PropTypes !== undefined && !propTypesMisspellWarningShown) {\n propTypesMisspellWarningShown = true; // Intentionally inside to avoid triggering lazy initializers:\n\n var _name = getComponentNameFromType(type);\n\n error('Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?', _name || 'Unknown');\n }\n\n if (typeof type.getDefaultProps === 'function' && !type.getDefaultProps.isReactClassApproved) {\n error('getDefaultProps is only used on classic React.createClass ' + 'definitions. Use a static property named `defaultProps` instead.');\n }\n }\n}\n/**\n * Given a fragment, validate that it can only be provided with fragment props\n * @param {ReactElement} fragment\n */\n\n\nfunction validateFragmentProps(fragment) {\n {\n var keys = Object.keys(fragment.props);\n\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n\n if (key !== 'children' && key !== 'key') {\n setCurrentlyValidatingElement$1(fragment);\n\n error('Invalid prop `%s` supplied to `React.Fragment`. ' + 'React.Fragment can only have `key` and `children` props.', key);\n\n setCurrentlyValidatingElement$1(null);\n break;\n }\n }\n\n if (fragment.ref !== null) {\n setCurrentlyValidatingElement$1(fragment);\n\n error('Invalid attribute `ref` supplied to `React.Fragment`.');\n\n setCurrentlyValidatingElement$1(null);\n }\n }\n}\n\nvar didWarnAboutKeySpread = {};\nfunction jsxWithValidation(type, props, key, isStaticChildren, source, self) {\n {\n var validType = isValidElementType(type); // We warn in this case but don't throw. We expect the element creation to\n // succeed and there will likely be errors in render.\n\n if (!validType) {\n var info = '';\n\n if (type === undefined || typeof type === 'object' && type !== null && Object.keys(type).length === 0) {\n info += ' You likely forgot to export your component from the file ' + \"it's defined in, or you might have mixed up default and named imports.\";\n }\n\n var sourceInfo = getSourceInfoErrorAddendum(source);\n\n if (sourceInfo) {\n info += sourceInfo;\n } else {\n info += getDeclarationErrorAddendum();\n }\n\n var typeString;\n\n if (type === null) {\n typeString = 'null';\n } else if (isArray(type)) {\n typeString = 'array';\n } else if (type !== undefined && type.$$typeof === REACT_ELEMENT_TYPE) {\n typeString = \"<\" + (getComponentNameFromType(type.type) || 'Unknown') + \" />\";\n info = ' Did you accidentally export a JSX literal instead of a component?';\n } else {\n typeString = typeof type;\n }\n\n error('React.jsx: type is invalid -- expected a string (for ' + 'built-in components) or a class/function (for composite ' + 'components) but got: %s.%s', typeString, info);\n }\n\n var element = jsxDEV(type, props, key, source, self); // The result can be nullish if a mock or a custom function is used.\n // TODO: Drop this when these are no longer allowed as the type argument.\n\n if (element == null) {\n return element;\n } // Skip key warning if the type isn't valid since our key validation logic\n // doesn't expect a non-string/function type and can throw confusing errors.\n // We don't want exception behavior to differ between dev and prod.\n // (Rendering will throw with a helpful message and as soon as the type is\n // fixed, the key warnings will appear.)\n\n\n if (validType) {\n var children = props.children;\n\n if (children !== undefined) {\n if (isStaticChildren) {\n if (isArray(children)) {\n for (var i = 0; i < children.length; i++) {\n validateChildKeys(children[i], type);\n }\n\n if (Object.freeze) {\n Object.freeze(children);\n }\n } else {\n error('React.jsx: Static children should always be an array. ' + 'You are likely explicitly calling React.jsxs or React.jsxDEV. ' + 'Use the Babel transform instead.');\n }\n } else {\n validateChildKeys(children, type);\n }\n }\n }\n\n {\n if (hasOwnProperty.call(props, 'key')) {\n var componentName = getComponentNameFromType(type);\n var keys = Object.keys(props).filter(function (k) {\n return k !== 'key';\n });\n var beforeExample = keys.length > 0 ? '{key: someKey, ' + keys.join(': ..., ') + ': ...}' : '{key: someKey}';\n\n if (!didWarnAboutKeySpread[componentName + beforeExample]) {\n var afterExample = keys.length > 0 ? '{' + keys.join(': ..., ') + ': ...}' : '{}';\n\n error('A props object containing a \"key\" prop is being spread into JSX:\\n' + ' let props = %s;\\n' + ' <%s {...props} />\\n' + 'React keys must be passed directly to JSX without using spread:\\n' + ' let props = %s;\\n' + ' <%s key={someKey} {...props} />', beforeExample, componentName, afterExample, componentName);\n\n didWarnAboutKeySpread[componentName + beforeExample] = true;\n }\n }\n }\n\n if (type === REACT_FRAGMENT_TYPE) {\n validateFragmentProps(element);\n } else {\n validatePropTypes(element);\n }\n\n return element;\n }\n} // These two functions exist to still get child warnings in dev\n// even with the prod transform. This means that jsxDEV is purely\n// opt-in behavior for better messages but that we won't stop\n// giving you warnings if you use production apis.\n\nfunction jsxWithValidationStatic(type, props, key) {\n {\n return jsxWithValidation(type, props, key, true);\n }\n}\nfunction jsxWithValidationDynamic(type, props, key) {\n {\n return jsxWithValidation(type, props, key, false);\n }\n}\n\nvar jsx = jsxWithValidationDynamic ; // we may want to special case jsxs internally to take advantage of static children.\n// for now we can ship identical prod functions\n\nvar jsxs = jsxWithValidationStatic ;\n\nexports.Fragment = REACT_FRAGMENT_TYPE;\nexports.jsx = jsx;\nexports.jsxs = jsxs;\n })();\n}\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-jsx-runtime.production.min.js');\n} else {\n module.exports = require('./cjs/react-jsx-runtime.development.js');\n}\n","module.exports = window[\"React\"];","module.exports = window[\"wp\"][\"blockEditor\"];","module.exports = window[\"wp\"][\"blocks\"];","module.exports = window[\"wp\"][\"components\"];","module.exports = window[\"wp\"][\"i18n\"];","module.exports = window[\"wp\"][\"primitives\"];","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","var deferred = [];\n__webpack_require__.O = (result, chunkIds, fn, priority) => {\n\tif(chunkIds) {\n\t\tpriority = priority || 0;\n\t\tfor(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar [chunkIds, fn, priority] = deferred[i];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","// no baseURI\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t\"eo-accordion/index\": 0,\n\t\"eo-accordion/style-index\": 0\n};\n\n// no chunk on demand loading\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = (chunkId) => (installedChunks[chunkId] === 0);\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = (parentChunkLoadingFunction, data) => {\n\tvar [chunkIds, moreModules, runtime] = data;\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some((id) => (installedChunks[id] !== 0))) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = globalThis[\"webpackChunkeo_blocks\"] = globalThis[\"webpackChunkeo_blocks\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","","// startup\n// Load entry module and return exports\n// This entry module depends on other loaded chunks and execution need to be delayed\nvar __webpack_exports__ = __webpack_require__.O(undefined, [\"eo-accordion/style-index\"], () => (__webpack_require__(\"./blocks/src/eo-accordion/index.js\")))\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n",""],"names":["__","InspectorControls","BlockControls","RichText","useBlockProps","InnerBlocks","Toolbar","ToolbarDropdownMenu","ToggleControl","PanelBody","heading","headingLevel1","headingLevel2","headingLevel3","headingLevel4","headingLevel5","headingLevel6","paragraph","Edit","attributes","setAttributes","createElement","Fragment","title","label","checked","isOpened","onChange","value","icon","controls","onClick","className","tagName","titleTag","allowedFormats","placeholder","subtitle","registerBlockType","metadata","blockIcon","xmlns","viewBox","d","fill","wp","blocks","updateCategory","name","edit","save","props","Content"],"sourceRoot":""}
\ No newline at end of file
diff --git a/blocks/build/accordion/render.php b/blocks/build/eo-accordion/render.php
similarity index 100%
rename from blocks/build/accordion/render.php
rename to blocks/build/eo-accordion/render.php
diff --git a/blocks/build/accordion/style-index-rtl.css b/blocks/build/eo-accordion/style-index-rtl.css
similarity index 97%
rename from blocks/build/accordion/style-index-rtl.css
rename to blocks/build/eo-accordion/style-index-rtl.css
index 4bfa2b7..b499591 100644
--- a/blocks/build/accordion/style-index-rtl.css
+++ b/blocks/build/eo-accordion/style-index-rtl.css
@@ -1,6 +1,6 @@
-/*!*************************************************************************************************************************************************************************************************************************************************************!*\
- !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./blocks/src/accordion/scss/style.scss ***!
- \*************************************************************************************************************************************************************************************************************************************************************/
+/*!****************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./blocks/src/eo-accordion/scss/style.scss ***!
+ \****************************************************************************************************************************************************************************************************************************************************************/
/**
* The following styles get applied both on the front of your site
* and in the editor.
diff --git a/blocks/build/accordion/style-index.css b/blocks/build/eo-accordion/style-index.css
similarity index 97%
rename from blocks/build/accordion/style-index.css
rename to blocks/build/eo-accordion/style-index.css
index d69e9c6..a29e159 100644
--- a/blocks/build/accordion/style-index.css
+++ b/blocks/build/eo-accordion/style-index.css
@@ -1,6 +1,6 @@
-/*!*************************************************************************************************************************************************************************************************************************************************************!*\
- !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./blocks/src/accordion/scss/style.scss ***!
- \*************************************************************************************************************************************************************************************************************************************************************/
+/*!****************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./blocks/src/eo-accordion/scss/style.scss ***!
+ \****************************************************************************************************************************************************************************************************************************************************************/
/**
* The following styles get applied both on the front of your site
* and in the editor.
diff --git a/blocks/build/eo-accordion/style-index.css.map b/blocks/build/eo-accordion/style-index.css.map
new file mode 100644
index 0000000..2f9d28a
--- /dev/null
+++ b/blocks/build/eo-accordion/style-index.css.map
@@ -0,0 +1 @@
+{"version":3,"file":"eo-accordion/style-index.css","mappings":";;;AAAA;;;;;EAAA;AASA;EACC;AAFD;AAIC;EACC;AAFF;AAIE;EACC;AAFH;AAMC;EACC;AAJF;AAME;EACC;AAJH;AAMG;EACC;AAJJ;AAMG;EACC;AAJJ;AAQE;EACC;EACA;EACA;AANH;AAQG;EACC;EACA;AANJ;AAQG;EACC;EACA;AANJ;AAQG;EACC;AANJ;AAQG;EAGC;EACA;EACA;AARJ;AAaC;EACC;EACA;AAXF;AAaE;EACC;AAXH;AAaE;EACC;AAXH;AAgBE;EACC;AAdH;AAkBE;EACC;AAhBH,C","sources":["webpack://eo-blocks/./blocks/src/eo-accordion/scss/style.scss"],"sourcesContent":["/**\r\n * The following styles get applied both on the front of your site\r\n * and in the editor.\r\n *\r\n * Replace them with your own styles or remove the file completely.\r\n */\r\n\r\n$media__mobile: 599px;\r\n\r\n.wp-block-eo-accordion {\r\n\tborder-bottom: 1px solid rgba(0,0,0,0.4);\r\n\r\n\t&.has-background {\r\n\t\tpadding: 0 1em;\r\n\r\n\t\t.eo-accordion__main-container {\r\n\t\t\tborder-bottom: 0;\r\n\t\t}\r\n\t}\r\n\r\n\t.eo-accordion__header {\r\n\t\tpadding: 0.8em 0;\r\n\r\n\t\t&:hover {\r\n\t\t\tcursor: pointer;\r\n\r\n\t\t\t.eo-accordion__title {\r\n\t\t\t\topacity: 0.7;\r\n\t\t\t}\r\n\t\t\t.eo-accordion__header-toggle::before {\r\n\t\t\t\topacity: 1 !important;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t.eo-accordion__header-container {\r\n\t\t\tdisplay: flex;\r\n\t\t\tjustify-content: space-between;\r\n\t\t\talign-items: center;\r\n\r\n\t\t\t.eo-accordion__title {\r\n\t\t\t\tmargin: 0;\r\n\t\t\t\ttransition: opacity 0.2s ease-out;\r\n\t\t\t}\r\n\t\t\tspan.eo-accordion__title {\r\n\t\t\t\tfont-size: 18px;\r\n\t\t\t\tfont-weight: 700;\r\n\t\t\t}\r\n\t\t\t.eo-accordion__header-toggle {\r\n\t\t\t\ttransition: transform 0.2s ease-out;\r\n\t\t\t}\r\n\t\t\t.eo-accordion__header-toggle::before {\r\n\t\t\t\t//width: 15px;\r\n\t\t\t\t//fill: rgba(0,0,0,1);\r\n\t\t\t\topacity: 0.4;\r\n\t\t\t\ttransition: all 0.2s ease-out;\r\n\t\t\t\ttransform-origin: center;\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\r\n\t.eo-accordion__inner {\r\n\t\tpadding: 0 0 1em 0;\r\n\t\ttransition: opacity 0.2s ease-out;\r\n\r\n\t\t> *:first-child {\r\n\t\t\tmargin-top: 0;\r\n\t\t}\r\n\t\t> *:last-child {\r\n\t\t\tmargin-bottom: 0;\r\n\t\t}\r\n\t}\r\n\r\n\t.eo-accordion__main-container.eo-accordion__active {\r\n\t\t.eo-accordion__header-toggle {\r\n\t\t\ttransform: rotate(90deg);\r\n\t\t}\r\n\t}\r\n\t.eo-accordion__main-container:not(.eo-accordion__active) {\r\n\t\t.eo-accordion__inner {\r\n\t\t\topacity: 0;\r\n\t\t}\r\n\t}\r\n}\r\n"],"names":[],"sourceRoot":""}
\ No newline at end of file
diff --git a/blocks/build/eo-accordion/view.asset.php b/blocks/build/eo-accordion/view.asset.php
new file mode 100644
index 0000000..9d261fe
--- /dev/null
+++ b/blocks/build/eo-accordion/view.asset.php
@@ -0,0 +1 @@
+ array(), 'version' => 'ee1ea008a5103955c84b');
diff --git a/blocks/build/accordion/view.js b/blocks/build/eo-accordion/view.js
similarity index 86%
rename from blocks/build/accordion/view.js
rename to blocks/build/eo-accordion/view.js
index 46e8b19..5050f6e 100644
--- a/blocks/build/accordion/view.js
+++ b/blocks/build/eo-accordion/view.js
@@ -1,8 +1,8 @@
/******/ (() => { // webpackBootstrap
var __webpack_exports__ = {};
-/*!**************************************!*\
- !*** ./blocks/src/accordion/view.js ***!
- \**************************************/
+/*!*****************************************!*\
+ !*** ./blocks/src/eo-accordion/view.js ***!
+ \*****************************************/
(function ($) {
/**
* initializeBlock
diff --git a/blocks/build/eo-accordion/view.js.map b/blocks/build/eo-accordion/view.js.map
new file mode 100644
index 0000000..a53cf2e
--- /dev/null
+++ b/blocks/build/eo-accordion/view.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"eo-accordion/view.js","mappings":";;;;;AAAA,CAAC,UAASA,CAAC,EAAE;EAEZ;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACC,IAAIC,eAAe,GAAG,SAAAA,CAAUC,MAAM,EAAG;IACxCA,MAAM,CAACC,IAAI,CAAE,+EAAgF,CAAC,CAACC,MAAM,CAAC,CAAC;IACvGF,MAAM,CAACC,IAAI,CAAE,uBAAwB,CAAC,CAACE,KAAK,CAAC,YAAW;MACvDL,CAAC,CAAC,IAAI,CAAC,CAACM,OAAO,CAAC,+BAA+B,CAAC,CAACC,WAAW,CAAC,sBAAsB,CAAC;MACpFP,CAAC,CAAC,IAAI,CAAC,CAACM,OAAO,CAAC,+BAA+B,CAAC,CAACH,IAAI,CAAC,sBAAsB,CAAC,CAACK,WAAW,CAAC,MAAM,CAAC;IAClG,CAAC,CAAC;EACH,CAAC;EAEDR,CAAC,CAACS,QAAQ,CAAC,CAACC,KAAK,CAAC,YAAU;IAC3BV,CAAC,CAAC,wBAAwB,CAAC,CAACW,IAAI,CAAC,YAAU;MAC1CV,eAAe,CAAED,CAAC,CAAC,IAAI,CAAE,CAAC;IAC3B,CAAC,CAAC;EACH,CAAC,CAAC;AAEH,CAAC,EAAEY,MAAM,CAAC,C","sources":["webpack://eo-blocks/./blocks/src/eo-accordion/view.js"],"sourcesContent":["(function($) {\r\n\r\n\t/**\r\n\t * initializeBlock\r\n\t *\r\n\t * Adds custom JavaScript to the block Accordion.\r\n\t *\r\n\t * @since 1.0.0\r\n\t *\r\n\t * @param object $block The block jQuery element.\r\n\t * @return void\r\n\t */\r\n\tvar initializeBlock = function( $block ) {\r\n\t\t$block.find( '.eo-accordion__main-container:not(.eo-accordion__active) .eo-accordion__inner' ).toggle();\r\n\t\t$block.find( '.eo-accordion__header' ).click(function() {\r\n\t\t\t$(this).closest('.eo-accordion__main-container').toggleClass('eo-accordion__active');\r\n\t\t\t$(this).closest('.eo-accordion__main-container').find('.eo-accordion__inner').slideToggle('fast');\r\n\t\t});\r\n\t}\r\n\r\n\t$(document).ready(function(){\r\n\t\t$('.wp-block-eo-accordion').each(function(){\r\n\t\t\tinitializeBlock( $(this) );\r\n\t\t});\r\n\t});\r\n\r\n})(jQuery);\r\n"],"names":["$","initializeBlock","$block","find","toggle","click","closest","toggleClass","slideToggle","document","ready","each","jQuery"],"sourceRoot":""}
\ No newline at end of file
diff --git a/blocks/build/kpi-contentment/block.json b/blocks/build/eo-kpi-contentment/block.json
similarity index 100%
rename from blocks/build/kpi-contentment/block.json
rename to blocks/build/eo-kpi-contentment/block.json
diff --git a/blocks/build/kpi-contentment/index-rtl.css b/blocks/build/eo-kpi-contentment/index-rtl.css
similarity index 89%
rename from blocks/build/kpi-contentment/index-rtl.css
rename to blocks/build/eo-kpi-contentment/index-rtl.css
index f31af6c..4d097cb 100644
--- a/blocks/build/kpi-contentment/index-rtl.css
+++ b/blocks/build/eo-kpi-contentment/index-rtl.css
@@ -1,6 +1,6 @@
-/*!********************************************************************************************************************************************************************************************************************************************************************!*\
- !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./blocks/src/kpi-contentment/scss/editor.scss ***!
- \********************************************************************************************************************************************************************************************************************************************************************/
+/*!***********************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./blocks/src/eo-kpi-contentment/scss/editor.scss ***!
+ \***********************************************************************************************************************************************************************************************************************************************************************/
/**
* The following styles get applied inside the editor only.
*
diff --git a/blocks/build/eo-kpi-contentment/index.asset.php b/blocks/build/eo-kpi-contentment/index.asset.php
new file mode 100644
index 0000000..113a756
--- /dev/null
+++ b/blocks/build/eo-kpi-contentment/index.asset.php
@@ -0,0 +1 @@
+ array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-i18n'), 'version' => '651e08f52e5d6797b787');
diff --git a/blocks/build/kpi-contentment/index.css b/blocks/build/eo-kpi-contentment/index.css
similarity index 89%
rename from blocks/build/kpi-contentment/index.css
rename to blocks/build/eo-kpi-contentment/index.css
index a56a54f..a5f0870 100644
--- a/blocks/build/kpi-contentment/index.css
+++ b/blocks/build/eo-kpi-contentment/index.css
@@ -1,6 +1,6 @@
-/*!********************************************************************************************************************************************************************************************************************************************************************!*\
- !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./blocks/src/kpi-contentment/scss/editor.scss ***!
- \********************************************************************************************************************************************************************************************************************************************************************/
+/*!***********************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./blocks/src/eo-kpi-contentment/scss/editor.scss ***!
+ \***********************************************************************************************************************************************************************************************************************************************************************/
/**
* The following styles get applied inside the editor only.
*
diff --git a/blocks/build/eo-kpi-contentment/index.css.map b/blocks/build/eo-kpi-contentment/index.css.map
new file mode 100644
index 0000000..a7a1c04
--- /dev/null
+++ b/blocks/build/eo-kpi-contentment/index.css.map
@@ -0,0 +1 @@
+{"version":3,"file":"eo-kpi-contentment/index.css","mappings":";;;AAAA;;;;EAAA,C","sources":["webpack://eo-blocks/./blocks/src/eo-kpi-contentment/scss/editor.scss"],"sourcesContent":["/**\r\n * The following styles get applied inside the editor only.\r\n *\r\n * Replace them with your own styles or remove the file completely.\r\n */\r\n\r\n.wp-block-eo-blocks-kpi-contentment {\r\n}\r\n"],"names":[],"sourceRoot":""}
\ No newline at end of file
diff --git a/blocks/build/kpi-contentment/index.js b/blocks/build/eo-kpi-contentment/index.js
similarity index 95%
rename from blocks/build/kpi-contentment/index.js
rename to blocks/build/eo-kpi-contentment/index.js
index 60c5bc0..553ddef 100644
--- a/blocks/build/kpi-contentment/index.js
+++ b/blocks/build/eo-kpi-contentment/index.js
@@ -98,10 +98,10 @@ var SvgIconSmile = function SvgIconSmile(props) {
/***/ }),
-/***/ "./blocks/src/kpi-contentment/edit.js":
-/*!********************************************!*\
- !*** ./blocks/src/kpi-contentment/edit.js ***!
- \********************************************/
+/***/ "./blocks/src/eo-kpi-contentment/edit.js":
+/*!***********************************************!*\
+ !*** ./blocks/src/eo-kpi-contentment/edit.js ***!
+ \***********************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
@@ -116,7 +116,7 @@ __webpack_require__.r(__webpack_exports__);
/* harmony import */ var _wordpress_block_editor__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_wordpress_block_editor__WEBPACK_IMPORTED_MODULE_2__);
/* harmony import */ var _wordpress_components__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @wordpress/components */ "@wordpress/components");
/* harmony import */ var _wordpress_components__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_wordpress_components__WEBPACK_IMPORTED_MODULE_3__);
-/* harmony import */ var _scss_editor_scss__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./scss/editor.scss */ "./blocks/src/kpi-contentment/scss/editor.scss");
+/* harmony import */ var _scss_editor_scss__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./scss/editor.scss */ "./blocks/src/eo-kpi-contentment/scss/editor.scss");
/* harmony import */ var _assets_images_icon_frown_svg__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./../../../assets/images/icon-frown.svg */ "./assets/images/icon-frown.svg");
/* harmony import */ var _assets_images_icon_smile_svg__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./../../../assets/images/icon-smile.svg */ "./assets/images/icon-smile.svg");
/* harmony import */ var _assets_images_icon_pin_svg__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./../../../assets/images/icon-pin.svg */ "./assets/images/icon-pin.svg");
@@ -235,10 +235,10 @@ function Edit({
/***/ }),
-/***/ "./blocks/src/kpi-contentment/index.js":
-/*!*********************************************!*\
- !*** ./blocks/src/kpi-contentment/index.js ***!
- \*********************************************/
+/***/ "./blocks/src/eo-kpi-contentment/index.js":
+/*!************************************************!*\
+ !*** ./blocks/src/eo-kpi-contentment/index.js ***!
+ \************************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
@@ -246,9 +246,9 @@ __webpack_require__.r(__webpack_exports__);
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
/* harmony import */ var _wordpress_blocks__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @wordpress/blocks */ "@wordpress/blocks");
/* harmony import */ var _wordpress_blocks__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_wordpress_blocks__WEBPACK_IMPORTED_MODULE_1__);
-/* harmony import */ var _scss_style_scss__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./scss/style.scss */ "./blocks/src/kpi-contentment/scss/style.scss");
-/* harmony import */ var _edit__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./edit */ "./blocks/src/kpi-contentment/edit.js");
-/* harmony import */ var _block_json__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./block.json */ "./blocks/src/kpi-contentment/block.json");
+/* harmony import */ var _scss_style_scss__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./scss/style.scss */ "./blocks/src/eo-kpi-contentment/scss/style.scss");
+/* harmony import */ var _edit__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./edit */ "./blocks/src/eo-kpi-contentment/edit.js");
+/* harmony import */ var _block_json__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./block.json */ "./blocks/src/eo-kpi-contentment/block.json");
/**
* Registers a new block provided a unique name and an object defining its behavior.
@@ -297,10 +297,10 @@ const blockIcon = (0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)("svg", {
/***/ }),
-/***/ "./blocks/src/kpi-contentment/scss/editor.scss":
-/*!*****************************************************!*\
- !*** ./blocks/src/kpi-contentment/scss/editor.scss ***!
- \*****************************************************/
+/***/ "./blocks/src/eo-kpi-contentment/scss/editor.scss":
+/*!********************************************************!*\
+ !*** ./blocks/src/eo-kpi-contentment/scss/editor.scss ***!
+ \********************************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
@@ -309,10 +309,10 @@ __webpack_require__.r(__webpack_exports__);
/***/ }),
-/***/ "./blocks/src/kpi-contentment/scss/style.scss":
-/*!****************************************************!*\
- !*** ./blocks/src/kpi-contentment/scss/style.scss ***!
- \****************************************************/
+/***/ "./blocks/src/eo-kpi-contentment/scss/style.scss":
+/*!*******************************************************!*\
+ !*** ./blocks/src/eo-kpi-contentment/scss/style.scss ***!
+ \*******************************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
@@ -371,10 +371,10 @@ module.exports = window["wp"]["i18n"];
/***/ }),
-/***/ "./blocks/src/kpi-contentment/block.json":
-/*!***********************************************!*\
- !*** ./blocks/src/kpi-contentment/block.json ***!
- \***********************************************/
+/***/ "./blocks/src/eo-kpi-contentment/block.json":
+/*!**************************************************!*\
+ !*** ./blocks/src/eo-kpi-contentment/block.json ***!
+ \**************************************************/
/***/ ((module) => {
module.exports = /*#__PURE__*/JSON.parse('{"$schema":"https://schemas.wp.org/trunk/block.json","apiVersion":3,"name":"eo/kpi-contentment","version":"1.0.0","title":"KPI Contentment","category":"eo-blocks","icon":"smiley","description":"Display satisfaction KPI","example":{},"attributes":{"blockLabel":{"type":"string","default":"Contentment rate"},"contentmentLabel":{"type":"number","default":50}},"supports":{"html":false},"textdomain":"kpi-contentment","editorScript":"file:./index.js","editorStyle":"file:./index.css","style":"file:./style-index.css","render":"file:./render.php","viewScript":"file:./view.js"}');
@@ -491,8 +491,8 @@ module.exports = /*#__PURE__*/JSON.parse('{"$schema":"https://schemas.wp.org/tru
/******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
/******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded
/******/ var installedChunks = {
-/******/ "kpi-contentment/index": 0,
-/******/ "kpi-contentment/style-index": 0
+/******/ "eo-kpi-contentment/index": 0,
+/******/ "eo-kpi-contentment/style-index": 0
/******/ };
/******/
/******/ // no chunk on demand loading
@@ -542,7 +542,7 @@ module.exports = /*#__PURE__*/JSON.parse('{"$schema":"https://schemas.wp.org/tru
/******/ // startup
/******/ // Load entry module and return exports
/******/ // This entry module depends on other loaded chunks and execution need to be delayed
-/******/ var __webpack_exports__ = __webpack_require__.O(undefined, ["kpi-contentment/style-index"], () => (__webpack_require__("./blocks/src/kpi-contentment/index.js")))
+/******/ var __webpack_exports__ = __webpack_require__.O(undefined, ["eo-kpi-contentment/style-index"], () => (__webpack_require__("./blocks/src/eo-kpi-contentment/index.js")))
/******/ __webpack_exports__ = __webpack_require__.O(__webpack_exports__);
/******/
/******/ })()
diff --git a/blocks/build/eo-kpi-contentment/index.js.map b/blocks/build/eo-kpi-contentment/index.js.map
new file mode 100644
index 0000000..317d7fe
--- /dev/null
+++ b/blocks/build/eo-kpi-contentment/index.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"eo-kpi-contentment/index.js","mappings":"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","sources":["webpack://eo-blocks/./assets/images/icon-frown.svg","webpack://eo-blocks/./assets/images/icon-pin.svg","webpack://eo-blocks/./assets/images/icon-smile.svg","webpack://eo-blocks/./blocks/src/eo-kpi-contentment/edit.js","webpack://eo-blocks/./blocks/src/eo-kpi-contentment/index.js","webpack://eo-blocks/./blocks/src/eo-kpi-contentment/scss/editor.scss","webpack://eo-blocks/./blocks/src/eo-kpi-contentment/scss/style.scss","webpack://eo-blocks/external window \"React\"","webpack://eo-blocks/external window [\"wp\",\"blockEditor\"]","webpack://eo-blocks/external window [\"wp\",\"blocks\"]","webpack://eo-blocks/external window [\"wp\",\"components\"]","webpack://eo-blocks/external window [\"wp\",\"i18n\"]","webpack://eo-blocks/webpack/bootstrap","webpack://eo-blocks/webpack/runtime/chunk loaded","webpack://eo-blocks/webpack/runtime/compat get default export","webpack://eo-blocks/webpack/runtime/define property getters","webpack://eo-blocks/webpack/runtime/hasOwnProperty shorthand","webpack://eo-blocks/webpack/runtime/make namespace object","webpack://eo-blocks/webpack/runtime/jsonp chunk loading","webpack://eo-blocks/webpack/before-startup","webpack://eo-blocks/webpack/startup","webpack://eo-blocks/webpack/after-startup"],"sourcesContent":["var _path;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nvar SvgIconFrown = function SvgIconFrown(props) {\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 20,\n height: 20,\n fill: \"none\"\n }, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#FA5659\",\n d: \"M10 20a10 10 0 1 0 0-20 10 10 0 0 0 0 20m-3.777-4.816a.624.624 0 1 1-1.191-.371c.64-2.075 2.636-3.563 4.968-3.563s4.328 1.488 4.973 3.566a.626.626 0 0 1-.41.782.626.626 0 0 1-.782-.41c-.48-1.54-1.98-2.688-3.781-2.688-1.8 0-3.3 1.148-3.777 2.684M5.64 8.125a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0m7.5-1.25a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5\"\n })));\n};\nexport { SvgIconFrown as ReactComponent };\nexport default \"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik0xMCAyMEMxMi42NTIyIDIwIDE1LjE5NTcgMTguOTQ2NCAxNy4wNzExIDE3LjA3MTFDMTguOTQ2NCAxNS4xOTU3IDIwIDEyLjY1MjIgMjAgMTBDMjAgNy4zNDc4NCAxOC45NDY0IDQuODA0MyAxNy4wNzExIDIuOTI4OTNDMTUuMTk1NyAxLjA1MzU3IDEyLjY1MjIgMCAxMCAwQzcuMzQ3ODQgMCA0LjgwNDMgMS4wNTM1NyAyLjkyODkzIDIuOTI4OTNDMS4wNTM1NyA0LjgwNDMgMCA3LjM0Nzg0IDAgMTBDMCAxMi42NTIyIDEuMDUzNTcgMTUuMTk1NyAyLjkyODkzIDE3LjA3MTFDNC44MDQzIDE4Ljk0NjQgNy4zNDc4NCAyMCAxMCAyMFpNNi4yMjI2NiAxNS4xODM2QzYuMTIxMDkgMTUuNTExNyA1Ljc2OTUzIDE1LjY5OTIgNS40NDE0MSAxNS41OTM4QzUuMTEzMjggMTUuNDg4MyA0LjkyNTc4IDE1LjE0MDYgNS4wMzEyNSAxNC44MTI1QzUuNjcxODggMTIuNzM4MyA3LjY2Nzk3IDExLjI1IDEwIDExLjI1QzEyLjMzMiAxMS4yNSAxNC4zMjgxIDEyLjczODMgMTQuOTcyNyAxNC44MTY0QzE1LjA3NDIgMTUuMTQ0NSAxNC44OTA2IDE1LjQ5NjEgMTQuNTYyNSAxNS41OTc3QzE0LjIzNDQgMTUuNjk5MiAxMy44ODI4IDE1LjUxNTYgMTMuNzgxMiAxNS4xODc1QzEzLjMwMDggMTMuNjQ4NCAxMS44MDA4IDEyLjUgMTAgMTIuNUM4LjE5OTIyIDEyLjUgNi42OTkyMiAxMy42NDg0IDYuMjIyNjYgMTUuMTgzNlpNNS42NDA2MiA4LjEyNUM1LjY0MDYyIDcuNzkzNDggNS43NzIzMiA3LjQ3NTU0IDYuMDA2NzQgNy4yNDExMkM2LjI0MTE2IDcuMDA2NyA2LjU1OTEgNi44NzUgNi44OTA2MiA2Ljg3NUM3LjIyMjE1IDYuODc1IDcuNTQwMDkgNy4wMDY3IDcuNzc0NTEgNy4yNDExMkM4LjAwODkzIDcuNDc1NTQgOC4xNDA2MiA3Ljc5MzQ4IDguMTQwNjIgOC4xMjVDOC4xNDA2MiA4LjQ1NjUyIDguMDA4OTMgOC43NzQ0NiA3Ljc3NDUxIDkuMDA4ODhDNy41NDAwOSA5LjI0MzMgNy4yMjIxNSA5LjM3NSA2Ljg5MDYyIDkuMzc1QzYuNTU5MSA5LjM3NSA2LjI0MTE2IDkuMjQzMyA2LjAwNjc0IDkuMDA4ODhDNS43NzIzMiA4Ljc3NDQ2IDUuNjQwNjIgOC40NTY1MiA1LjY0MDYyIDguMTI1Wk0xMy4xNDA2IDYuODc1QzEzLjQ3MjEgNi44NzUgMTMuNzkwMSA3LjAwNjcgMTQuMDI0NSA3LjI0MTEyQzE0LjI1ODkgNy40NzU1NCAxNC4zOTA2IDcuNzkzNDggMTQuMzkwNiA4LjEyNUMxNC4zOTA2IDguNDU2NTIgMTQuMjU4OSA4Ljc3NDQ2IDE0LjAyNDUgOS4wMDg4OEMxMy43OTAxIDkuMjQzMyAxMy40NzIxIDkuMzc1IDEzLjE0MDYgOS4zNzVDMTIuODA5MSA5LjM3NSAxMi40OTEyIDkuMjQzMyAxMi4yNTY3IDkuMDA4ODhDMTIuMDIyMyA4Ljc3NDQ2IDExLjg5MDYgOC40NTY1MiAxMS44OTA2IDguMTI1QzExLjg5MDYgNy43OTM0OCAxMi4wMjIzIDcuNDc1NTQgMTIuMjU2NyA3LjI0MTEyQzEyLjQ5MTIgNy4wMDY3IDEyLjgwOTEgNi44NzUgMTMuMTQwNiA2Ljg3NVoiIGZpbGw9IiNGQTU2NTkiLz4NCjwvc3ZnPg0K\";","var _path;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nvar SvgIconPin = function SvgIconPin(props) {\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 24,\n height: 32,\n fill: \"none\"\n }, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#1D1D1D\",\n d: \"M13.481 31.281C16.688 27.258 24 17.508 24 12.031 24 5.39 18.625 0 12 0S0 5.389 0 12.031c0 5.477 7.313 15.227 10.519 19.25a1.885 1.885 0 0 0 2.962 0M12 8.021c1.06 0 2.078.422 2.828 1.174a4.015 4.015 0 0 1 0 5.672 3.995 3.995 0 0 1-5.656 0 4.016 4.016 0 0 1 0-5.672A4 4 0 0 1 12 8.021\"\n })));\n};\nexport { SvgIconPin as ReactComponent };\nexport default \"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAyNCAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik0xMy40ODEyIDMxLjI4MUMxNi42ODc1IDI3LjI1OCAyNCAxNy41MDc4IDI0IDEyLjAzMTFDMjQgNS4zODg5NSAxOC42MjUgMCAxMiAwQzUuMzc1IDAgMCA1LjM4ODk1IDAgMTIuMDMxMUMwIDE3LjUwNzggNy4zMTI1IDI3LjI1OCAxMC41MTg4IDMxLjI4MUMxMS4yODc1IDMyLjIzOTcgMTIuNzEyNSAzMi4yMzk3IDEzLjQ4MTIgMzEuMjgxWk0xMiA4LjAyMDc2QzEzLjA2MDkgOC4wMjA3NiAxNC4wNzgzIDguNDQzMjggMTQuODI4NCA5LjE5NTM3QzE1LjU3ODYgOS45NDc0NiAxNiAxMC45Njc1IDE2IDEyLjAzMTFDMTYgMTMuMDk0OCAxNS41Nzg2IDE0LjExNDggMTQuODI4NCAxNC44NjY5QzE0LjA3ODMgMTUuNjE5IDEzLjA2MDkgMTYuMDQxNSAxMiAxNi4wNDE1QzEwLjkzOTEgMTYuMDQxNSA5LjkyMTcyIDE1LjYxOSA5LjE3MTU3IDE0Ljg2NjlDOC40MjE0MyAxNC4xMTQ4IDggMTMuMDk0OCA4IDEyLjAzMTFDOCAxMC45Njc1IDguNDIxNDMgOS45NDc0NiA5LjE3MTU3IDkuMTk1MzdDOS45MjE3MiA4LjQ0MzI4IDEwLjkzOTEgOC4wMjA3NiAxMiA4LjAyMDc2WiIgZmlsbD0iIzFEMUQxRCIvPg0KPC9zdmc+DQo=\";","var _path;\nfunction _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }\nimport * as React from \"react\";\nvar SvgIconSmile = function SvgIconSmile(props) {\n return /*#__PURE__*/React.createElement(\"svg\", _extends({\n xmlns: \"http://www.w3.org/2000/svg\",\n width: 20,\n height: 20,\n fill: \"none\"\n }, props), _path || (_path = /*#__PURE__*/React.createElement(\"path\", {\n fill: \"#62B64D\",\n d: \"M10 20a10 10 0 1 0 0-20 10 10 0 0 0 0 20m-3.59-7.285c.7.808 1.895 1.66 3.59 1.66s2.89-.852 3.59-1.66a.625.625 0 1 1 .945.82c-.87 1-2.383 2.09-4.535 2.09s-3.664-1.09-4.535-2.09a.625.625 0 1 1 .945-.82m-.77-4.59a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0m7.5-1.25a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5\"\n })));\n};\nexport { SvgIconSmile as ReactComponent };\nexport default \"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik0xMCAyMEMxMi42NTIyIDIwIDE1LjE5NTcgMTguOTQ2NCAxNy4wNzExIDE3LjA3MTFDMTguOTQ2NCAxNS4xOTU3IDIwIDEyLjY1MjIgMjAgMTBDMjAgNy4zNDc4NCAxOC45NDY0IDQuODA0MyAxNy4wNzExIDIuOTI4OTNDMTUuMTk1NyAxLjA1MzU3IDEyLjY1MjIgMCAxMCAwQzcuMzQ3ODQgMCA0LjgwNDMgMS4wNTM1NyAyLjkyODkzIDIuOTI4OTNDMS4wNTM1NyA0LjgwNDMgMCA3LjM0Nzg0IDAgMTBDMCAxMi42NTIyIDEuMDUzNTcgMTUuMTk1NyAyLjkyODkzIDE3LjA3MTFDNC44MDQzIDE4Ljk0NjQgNy4zNDc4NCAyMCAxMCAyMFpNNi40MTAxNiAxMi43MTQ4QzcuMTA5MzggMTMuNTIzNCA4LjMwNDY5IDE0LjM3NSAxMCAxNC4zNzVDMTEuNjk1MyAxNC4zNzUgMTIuODkwNiAxMy41MjM0IDEzLjU4OTggMTIuNzE0OEMxMy44MTY0IDEyLjQ1MzEgMTQuMjEwOSAxMi40MjU4IDE0LjQ3MjcgMTIuNjUyM0MxNC43MzQ0IDEyLjg3ODkgMTQuNzYxNyAxMy4yNzM0IDE0LjUzNTIgMTMuNTM1MkMxMy42NjQxIDE0LjUzNTIgMTIuMTUyMyAxNS42MjUgMTAgMTUuNjI1QzcuODQ3NjYgMTUuNjI1IDYuMzM1OTQgMTQuNTM1MiA1LjQ2NDg0IDEzLjUzNTJDNS4yMzgyOCAxMy4yNzM0IDUuMjY1NjIgMTIuODc4OSA1LjUyNzM0IDEyLjY1MjNDNS43ODkwNiAxMi40MjU4IDYuMTgzNTkgMTIuNDUzMSA2LjQxMDE2IDEyLjcxNDhaTTUuNjQwNjIgOC4xMjVDNS42NDA2MiA3Ljc5MzQ4IDUuNzcyMzIgNy40NzU1NCA2LjAwNjc0IDcuMjQxMTJDNi4yNDExNiA3LjAwNjcgNi41NTkxIDYuODc1IDYuODkwNjIgNi44NzVDNy4yMjIxNSA2Ljg3NSA3LjU0MDA5IDcuMDA2NyA3Ljc3NDUxIDcuMjQxMTJDOC4wMDg5MyA3LjQ3NTU0IDguMTQwNjIgNy43OTM0OCA4LjE0MDYyIDguMTI1QzguMTQwNjIgOC40NTY1MiA4LjAwODkzIDguNzc0NDYgNy43NzQ1MSA5LjAwODg4QzcuNTQwMDkgOS4yNDMzIDcuMjIyMTUgOS4zNzUgNi44OTA2MiA5LjM3NUM2LjU1OTEgOS4zNzUgNi4yNDExNiA5LjI0MzMgNi4wMDY3NCA5LjAwODg4QzUuNzcyMzIgOC43NzQ0NiA1LjY0MDYyIDguNDU2NTIgNS42NDA2MiA4LjEyNVpNMTMuMTQwNiA2Ljg3NUMxMy40NzIxIDYuODc1IDEzLjc5MDEgNy4wMDY3IDE0LjAyNDUgNy4yNDExMkMxNC4yNTg5IDcuNDc1NTQgMTQuMzkwNiA3Ljc5MzQ4IDE0LjM5MDYgOC4xMjVDMTQuMzkwNiA4LjQ1NjUyIDE0LjI1ODkgOC43NzQ0NiAxNC4wMjQ1IDkuMDA4ODhDMTMuNzkwMSA5LjI0MzMgMTMuNDcyMSA5LjM3NSAxMy4xNDA2IDkuMzc1QzEyLjgwOTEgOS4zNzUgMTIuNDkxMiA5LjI0MzMgMTIuMjU2NyA5LjAwODg4QzEyLjAyMjMgOC43NzQ0NiAxMS44OTA2IDguNDU2NTIgMTEuODkwNiA4LjEyNUMxMS44OTA2IDcuNzkzNDggMTIuMDIyMyA3LjQ3NTU0IDEyLjI1NjcgNy4yNDExMkMxMi40OTEyIDcuMDA2NyAxMi44MDkxIDYuODc1IDEzLjE0MDYgNi44NzVaIiBmaWxsPSIjNjJCNjREIi8+DQo8L3N2Zz4NCg==\";","/**\r\n * Retrieves the translation of text.\r\n *\r\n * @see https://developer.wordpress.org/block-editor/reference-guides/packages/packages-i18n/\r\n */\r\nimport { __ } from '@wordpress/i18n';\r\n\r\n/**\r\n * React hook that is used to mark the block wrapper element.\r\n * It provides all the necessary props like the class name.\r\n *\r\n * @see https://developer.wordpress.org/block-editor/reference-guides/packages/packages-block-editor/#useblockprops\r\n */\r\nimport { InspectorControls, useBlockProps } from '@wordpress/block-editor';\r\nimport { PanelBody, TextControl, RangeControl } from '@wordpress/components';\r\n\r\n/**\r\n * Lets webpack process CSS, SASS or SCSS files referenced in JavaScript files.\r\n * Those files can contain any CSS code that gets applied to the editor.\r\n *\r\n * @see https://www.npmjs.com/package/@wordpress/scripts#using-css\r\n */\r\nimport './scss/editor.scss';\r\n\r\n/**\r\n * Import components\r\n */\r\nimport iconFrown from './../../../assets/images/icon-frown.svg';\r\nimport iconSmile from './../../../assets/images/icon-smile.svg';\r\nimport iconPin from './../../../assets/images/icon-pin.svg';\r\n\r\n\r\n/**\r\n * The edit function describes the structure of your block in the context of the\r\n * editor. This represents what the editor will render when the block is used.\r\n *\r\n * @see https://developer.wordpress.org/block-editor/reference-guides/block-api/block-edit-save/#edit\r\n *\r\n * @return {Element} Element to render.\r\n */\r\nexport default function Edit( { attributes, setAttributes } ) {\r\n\tconst { blockLabel, contentmentLabel } = attributes;\r\n\tconst customTooltipContent = value => `${value}%`\r\n\tlet contentmentLabelColorClass = 'bar__quater-1';\r\n\r\n\tif ( contentmentLabel < 25 ) {\r\n\t\tcontentmentLabelColorClass = 'bar__quarter-1';\r\n\t} else if ( contentmentLabel >= 25 && contentmentLabel < 50 ) {\r\n\t\tcontentmentLabelColorClass = 'bar__quarter-2';\r\n\t} else if ( contentmentLabel >= 50 && contentmentLabel < 75 ) {\r\n\t\tcontentmentLabelColorClass = 'bar__quarter-3';\r\n\t} else {\r\n\t\tcontentmentLabelColorClass = 'bar__quarter-4';\r\n\t}\r\n\r\n\treturn (\r\n\t\t<>\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t setAttributes( { blockLabel: value } ) }\r\n\t\t\t\t\t/>\r\n\t\t\t\t\t setAttributes( { contentmentLabel: value } ) }\r\n\t\t\t\t\t\tmin={ 0 }\r\n\t\t\t\t\t\tmax={ 100 }\r\n\t\t\t\t\t\trenderTooltipContent={ customTooltipContent }\r\n\t\t\t\t\t/>\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t
\r\n\t\t>\r\n\t);\r\n}\r\n","/**\r\n * Registers a new block provided a unique name and an object defining its behavior.\r\n *\r\n * @see https://developer.wordpress.org/block-editor/reference-guides/block-api/block-registration/\r\n */\r\nimport { registerBlockType } from '@wordpress/blocks';\r\n\r\n/**\r\n * Lets webpack process CSS, SASS or SCSS files referenced in JavaScript files.\r\n * All files containing `style` keyword are bundled together. The code used\r\n * gets applied both to the front of your site and to the editor.\r\n *\r\n * @see https://www.npmjs.com/package/@wordpress/scripts#using-css\r\n */\r\nimport './scss/style.scss';\r\n\r\n/**\r\n * Internal dependencies\r\n */\r\nimport Edit from './edit';\r\nimport metadata from './block.json';\r\n\r\nconst blockIcon = (\r\n\t\r\n);\r\n\r\n/**\r\n * Every block starts by registering a new block type definition.\r\n *\r\n * @see https://developer.wordpress.org/block-editor/reference-guides/block-api/block-registration/\r\n */\r\nregisterBlockType( metadata.name, {\r\n\t/**\r\n\t * @see ./edit.js\r\n\t */\r\n\tedit: Edit,\r\n\ticon: blockIcon,\r\n} );\r\n","// extracted by mini-css-extract-plugin\nexport {};","// extracted by mini-css-extract-plugin\nexport {};","module.exports = window[\"React\"];","module.exports = window[\"wp\"][\"blockEditor\"];","module.exports = window[\"wp\"][\"blocks\"];","module.exports = window[\"wp\"][\"components\"];","module.exports = window[\"wp\"][\"i18n\"];","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","var deferred = [];\n__webpack_require__.O = (result, chunkIds, fn, priority) => {\n\tif(chunkIds) {\n\t\tpriority = priority || 0;\n\t\tfor(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar [chunkIds, fn, priority] = deferred[i];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","// no baseURI\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t\"kpi-contentment/index\": 0,\n\t\"kpi-contentment/style-index\": 0\n};\n\n// no chunk on demand loading\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n__webpack_require__.O.j = (chunkId) => (installedChunks[chunkId] === 0);\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = (parentChunkLoadingFunction, data) => {\n\tvar [chunkIds, moreModules, runtime] = data;\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some((id) => (installedChunks[id] !== 0))) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\treturn __webpack_require__.O(result);\n}\n\nvar chunkLoadingGlobal = globalThis[\"webpackChunkeo_blocks\"] = globalThis[\"webpackChunkeo_blocks\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","","// startup\n// Load entry module and return exports\n// This entry module depends on other loaded chunks and execution need to be delayed\nvar __webpack_exports__ = __webpack_require__.O(undefined, [\"kpi-contentment/style-index\"], () => (__webpack_require__(\"./blocks/src/kpi-contentment/index.js\")))\n__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n",""],"names":["__","InspectorControls","useBlockProps","PanelBody","TextControl","RangeControl","iconFrown","iconSmile","iconPin","Edit","attributes","setAttributes","blockLabel","contentmentLabel","customTooltipContent","value","contentmentLabelColorClass","createElement","Fragment","title","label","onChange","min","max","renderTooltipContent","className","src","style","left","registerBlockType","metadata","blockIcon","width","height","viewBox","fill","xmlns","d","name","edit","icon"],"sourceRoot":""}
\ No newline at end of file
diff --git a/blocks/build/kpi-contentment/style-index.css.map b/blocks/build/kpi-contentment/style-index.css.map
deleted file mode 100644
index 6a0b6e8..0000000
--- a/blocks/build/kpi-contentment/style-index.css.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"kpi-contentment/style-index.css","mappings":";;;AAAA;;;;;EAAA;AASA;EACC;EACA;EACA;EACA;AAFD;;AAKA;EAME;EACA;AAPF;AAEE;EACD;AAAD;AAME;EACD;EACA;EACA;AAJD;AAME;EACD;AAJD;AAME;EACD;AAJD;AAOE;EACC;EACF;EACE;EACF;AALD;AAQE;EACD;AAND;AAQC;EACE;EACA;EACA;AANH;AASE;EACD;EACA;EACA;EACA;EACA;EACA;AAPD;AASC;EACE;EACA;AAPH;AASG;EACD;AAPF;AASG;EACD;AAPF;AASG;EACD;AAPF;AASG;EACD;AAPF;AAYE;EACD;EACA;EACA;EACA;AAVD;AAYC;EACE;AAVH;AAYC;EACE;EACA;AAVH;AAYG;EACD;AAVF;AAYG;EACD;AAVF;AAYG;EACD;AAVF;AAYG;EACD;AAVF,C","sources":["webpack://eo-blocks/./blocks/src/kpi-contentment/scss/style.scss"],"sourcesContent":["/**\r\n * The following styles get applied both on the front of your site\r\n * and in the editor.\r\n *\r\n * Replace them with your own styles or remove the file completely.\r\n */\r\n\r\n$media__mobile: 599px;\r\n\r\n:root {\r\n\t--eo-kpi-contentment-quarter-1: #FA5659;\r\n\t--eo-kpi-contentment-quarter-2: #F7A34A;\r\n\t--eo-kpi-contentment-quarter-3: #F8D042;\r\n\t--eo-kpi-contentment-quarter-4: #62B64D;\r\n}\r\n\r\n.wp-block-eo-kpi-contentment {\r\n\r\n * {\r\n\tbox-sizing: border-box;\r\n }\r\n\r\n display: block;\r\n position: relative;\r\n\r\n .eo-kpi-contentment__icon-frown, .eo-kpi-contentment__icon-smile {\r\n\tposition: absolute;\r\n\ttop: -5px;\r\n\twidth: 30px;\r\n }\r\n .eo-kpi-contentment__icon-frown {\r\n\tleft: 0;\r\n }\r\n .eo-kpi-contentment__icon-smile {\r\n\tright: 0;\r\n }\r\n\r\n .eo-kpi-contentment__container {\r\n \tdisplay: block;\r\n\twidth: 100%;\r\n \tpadding-left: 50px;\r\n\tpadding-right: 50px;\r\n }\r\n\r\n .eo-kpi-contentment__bar-container {\r\n\tposition: relative;\r\n\r\n\t.eo-kpi-contentment__icon-pin {\r\n\t position: absolute;\r\n\t bottom: 8px;\r\n\t transform: translate(-50%);\r\n\t}\r\n }\r\n .eo-kpi-contentment__bar {\r\n\tdisplay: flex;\r\n\tflex-direction: row;\r\n\tflex-wrap: nowrap;\r\n\tgap: 0;\r\n\tborder-radius: 4px;\r\n\toverflow: hidden;\r\n\r\n\t.eo-kpi-contentment__bar-quarter {\r\n\t width: 25%;\r\n\t height: 20px;\r\n\r\n\t &.bar__1 {\r\n\t\tbackground: var(--eo-kpi-contentment-quarter-1);\r\n\t }\r\n\t &.bar__2 {\r\n\t\tbackground: var(--eo-kpi-contentment-quarter-2);\r\n\t }\r\n\t &.bar__3 {\r\n\t\tbackground: var(--eo-kpi-contentment-quarter-3);\r\n\t }\r\n\t &.bar__4 {\r\n\t\tbackground: var(--eo-kpi-contentment-quarter-4);\r\n\t }\r\n\t}\r\n }\r\n\r\n .eo-kpi-contentment__content {\r\n\tdisplay: flex;\r\n\tflex-direction: row;\r\n\tflex-wrap: wrap;\r\n\tjustify-content: space-between;\r\n\r\n\t.eo-kpi-contentment__block-label {\r\n\t font-weight: 508;\r\n\t}\r\n\t.eo-kpi-contentment__block-contentment {\r\n\t color: #62B64D;\r\n\t font-weight: 700;\r\n\r\n\t &.bar__quarter-1 {\r\n\t\tcolor: var(--eo-kpi-contentment-quarter-1);\r\n\t }\r\n\t &.bar__quarter-2 {\r\n\t\tcolor: var(--eo-kpi-contentment-quarter-2);\r\n\t }\r\n\t &.bar__quarter-3 {\r\n\t\tcolor: var(--eo-kpi-contentment-quarter-3);\r\n\t }\r\n\t &.bar__quarter-4 {\r\n\t\tcolor: var(--eo-kpi-contentment-quarter-4);\r\n\t }\r\n\t}\r\n }\r\n}\r\n\r\n"],"names":[],"sourceRoot":""}
\ No newline at end of file
diff --git a/blocks/build/kpi-contentment/view.asset.php b/blocks/build/kpi-contentment/view.asset.php
deleted file mode 100644
index 2dcf291..0000000
--- a/blocks/build/kpi-contentment/view.asset.php
+++ /dev/null
@@ -1 +0,0 @@
- array(), 'version' => '1013d32c093e3bb4301d');
diff --git a/blocks/build/kpi-contentment/view.js.map b/blocks/build/kpi-contentment/view.js.map
deleted file mode 100644
index 7f0853f..0000000
--- a/blocks/build/kpi-contentment/view.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"kpi-contentment/view.js","mappings":";;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACAA,OAAO,CAACC,GAAG,CAAC,qDAAqD,CAAC;AAClE,8B","sources":["webpack://eo-blocks/./blocks/src/kpi-contentment/view.js"],"sourcesContent":["/**\r\n * Use this file for JavaScript code that you want to run in the front-end\r\n * on posts/pages that contain this block.\r\n *\r\n * When this file is defined as the value of the `viewScript` property\r\n * in `block.json` it will be enqueued on the front end of the site.\r\n *\r\n * Example:\r\n *\r\n * ```js\r\n * {\r\n * \"viewScript\": \"file:./view.js\"\r\n * }\r\n * ```\r\n *\r\n * If you're not making any changes to this file because your project doesn't need any\r\n * JavaScript running in the front-end, then you should delete this file and remove\r\n * the `viewScript` property from `block.json`.\r\n *\r\n * @see https://developer.wordpress.org/block-editor/reference-guides/block-api/block-metadata/#view-script\r\n */\r\n\r\n/* eslint-disable no-console */\r\nconsole.log(\"Hello World! (from eo-blocks-kpi-contentment block)\");\r\n/* eslint-enable no-console */\r\n"],"names":["console","log"],"sourceRoot":""}
\ No newline at end of file
diff --git a/blocks/src/digirisk-list-risk/block.json b/blocks/src/digirisk-list-risk/block.json
index 0dce768..01ad57f 100644
--- a/blocks/src/digirisk-list-risk/block.json
+++ b/blocks/src/digirisk-list-risk/block.json
@@ -3,7 +3,7 @@
"apiVersion": 3,
"name": "eo/digirisk-list-risk",
"version": "1.0.0",
- "title": "Digirisk List Risk",
+ "title": "Digirisk - List Risk",
"category": "eo-blocks",
"icon": "smiley",
"description": "Displays a summary of the different risks of your Dolibarr",
diff --git a/blocks/src/digirisk-list-risk/index.js b/blocks/src/digirisk-list-risk/index.js
index d380391..22596b5 100644
--- a/blocks/src/digirisk-list-risk/index.js
+++ b/blocks/src/digirisk-list-risk/index.js
@@ -20,12 +20,7 @@ import './scss/style.scss';
import Edit from './edit';
import metadata from './block.json';
-const blockIcon = (
-
-);
+import { ReactComponent as digiriskIcon } from './../../../assets/images/digirisk-favicon.svg';
/**
* Every block starts by registering a new block type definition.
@@ -37,5 +32,5 @@ registerBlockType( metadata.name, {
* @see ./edit.js
*/
edit: Edit,
- icon: blockIcon,
+ icon: digiriskIcon,
} );
diff --git a/blocks/src/accordion/block.json b/blocks/src/eo-accordion/block.json
similarity index 100%
rename from blocks/src/accordion/block.json
rename to blocks/src/eo-accordion/block.json
diff --git a/blocks/src/accordion/edit.js b/blocks/src/eo-accordion/edit.js
similarity index 100%
rename from blocks/src/accordion/edit.js
rename to blocks/src/eo-accordion/edit.js
diff --git a/blocks/src/accordion/index.js b/blocks/src/eo-accordion/index.js
similarity index 100%
rename from blocks/src/accordion/index.js
rename to blocks/src/eo-accordion/index.js
diff --git a/blocks/src/accordion/render.php b/blocks/src/eo-accordion/render.php
similarity index 100%
rename from blocks/src/accordion/render.php
rename to blocks/src/eo-accordion/render.php
diff --git a/blocks/src/accordion/scss/editor.scss b/blocks/src/eo-accordion/scss/editor.scss
similarity index 100%
rename from blocks/src/accordion/scss/editor.scss
rename to blocks/src/eo-accordion/scss/editor.scss
diff --git a/blocks/src/accordion/scss/style.scss b/blocks/src/eo-accordion/scss/style.scss
similarity index 100%
rename from blocks/src/accordion/scss/style.scss
rename to blocks/src/eo-accordion/scss/style.scss
diff --git a/blocks/src/accordion/view.js b/blocks/src/eo-accordion/view.js
similarity index 100%
rename from blocks/src/accordion/view.js
rename to blocks/src/eo-accordion/view.js
diff --git a/blocks/src/kpi-contentment/block.json b/blocks/src/eo-kpi-contentment/block.json
similarity index 100%
rename from blocks/src/kpi-contentment/block.json
rename to blocks/src/eo-kpi-contentment/block.json
diff --git a/blocks/src/kpi-contentment/edit.js b/blocks/src/eo-kpi-contentment/edit.js
similarity index 100%
rename from blocks/src/kpi-contentment/edit.js
rename to blocks/src/eo-kpi-contentment/edit.js
diff --git a/blocks/src/kpi-contentment/index.js b/blocks/src/eo-kpi-contentment/index.js
similarity index 100%
rename from blocks/src/kpi-contentment/index.js
rename to blocks/src/eo-kpi-contentment/index.js
diff --git a/blocks/src/kpi-contentment/render.php b/blocks/src/eo-kpi-contentment/render.php
similarity index 100%
rename from blocks/src/kpi-contentment/render.php
rename to blocks/src/eo-kpi-contentment/render.php
diff --git a/blocks/src/kpi-contentment/scss/editor.scss b/blocks/src/eo-kpi-contentment/scss/editor.scss
similarity index 100%
rename from blocks/src/kpi-contentment/scss/editor.scss
rename to blocks/src/eo-kpi-contentment/scss/editor.scss
diff --git a/blocks/src/kpi-contentment/scss/style.scss b/blocks/src/eo-kpi-contentment/scss/style.scss
similarity index 100%
rename from blocks/src/kpi-contentment/scss/style.scss
rename to blocks/src/eo-kpi-contentment/scss/style.scss
diff --git a/blocks/src/kpi-contentment/view.js b/blocks/src/eo-kpi-contentment/view.js
similarity index 100%
rename from blocks/src/kpi-contentment/view.js
rename to blocks/src/eo-kpi-contentment/view.js