yii\base\ErrorException {#1554 #severity: E_WARNING }
'filter' => function(string $path) use ($basename, $time): bool { $b = basename($path); return ( $b !== $basename && str_starts_with($b, 'CustomFieldBehavior') && filemtime($path) < $time ); }, ]); } elseif ($load) { // Just evaluate the code 'filter' => function(string $path) use ($basename, $time): bool { $b = basename($path); return ( $b !== $basename && str_starts_with($b, 'CustomFieldBehavior') && filemtime($path) < $time ); }, ]); } elseif ($load) { // Just evaluate the code * @return bool whether the file or directory satisfies the filtering options. */ public static function filterPath($path, $options) { if (isset($options['filter'])) { $result = call_user_func($options['filter'], $path); if (is_bool($result)) { return $result; } } while (($file = readdir($handle)) !== false) { if ($file === '.' || $file === '..') { continue; } $path = $dir . DIRECTORY_SEPARATOR . $file; if (static::filterPath($path, $options)) { if (is_dir($path)) { try { static::removeDirectory($path, $options); } catch (UnexpectedValueException $e) { // Ignore if the folder has already been removed. } // Delete any CustomFieldBehavior files that are over 10 seconds old $basename = basename($filePath); $time = DateTimeHelper::currentTimeStamp() - 10; FileHelper::clearDirectory($dir, [ 'filter' => function(string $path) use ($basename, $time): bool { $b = basename($path); return ( $b !== $basename && str_starts_with($b, 'CustomFieldBehavior') && } foreach ($generatedFieldHandles as $handle) { $fieldTypes[$handle]['string'] = true; $fieldTypes[$handle]['null'] = true; } self::_generateCustomFieldBehavior($fieldHandles, $generatedFieldHandles, $fieldTypes, $filePath, true, false); // Generate a new field version if we need one if (!$fieldVersionExists) { try { $fieldsService->updateFieldVersion(); * @param class-string $className */ public static function autoload($className): void { if ($className === CustomFieldBehavior::class) { self::_autoloadCustomFieldBehavior(); } } /** * Autoloads (and possibly generates) `CustomFieldBehavior.php` return [$this->_reflections[$class], $this->_dependencies[$class]]; } $dependencies = []; try { $reflection = new ReflectionClass($class); } catch (\ReflectionException $e) { throw new NotInstantiableException( $class, 'Failed to instantiate component or class "' . $class . '".', 0, { /** * @var ReflectionClass $reflection * @phpstan-var ReflectionClass<T> $reflection */ list($reflection, $dependencies) = $this->getDependencies($class); $addDependencies = []; if (isset($config['__construct()'])) { $addDependencies = $config['__construct()']; unset($config['__construct()']); } if (isset($this->_singletons[$class])) { // singleton return $this->_singletons[$class]; } elseif (!isset($this->_definitions[$class])) { return $this->build($class, $params, $config); } $definition = $this->_definitions[$class]; if (is_callable($definition, true)) { } if (isset($type['class'])) { $class = $type['class']; unset($type['class']); return static::$container->get($class, $params, $type); } throw new InvalidConfigException('Object configuration must be an array containing a "class" or "__class" element.'); } * @phpstan-return Behavior<$this> */ private function attachBehaviorInternal($name, $behavior) { if (!($behavior instanceof Behavior)) { $behavior = Yii::createObject($behavior); } if (is_int($name)) { $behavior->attach($this); $this->_behaviors[] = $behavior; } else { public function ensureBehaviors() { if ($this->_behaviors === null) { $this->_behaviors = []; foreach ($this->behaviors() as $name => $behavior) { $this->attachBehaviorInternal($name, $behavior); } } } /** * @param string $name the event name * @return bool whether there is any handler attached to the event. */ public function hasEventHandlers($name) { $this->ensureBehaviors(); if (!empty($this->_events[$name])) { return true; } */ public function init(): void { parent::init(); if ($this->hasEventHandlers(self::EVENT_INIT)) { $this->trigger(self::EVENT_INIT); } } /** public function __construct($config = []) { if (!empty($config)) { Yii::configure($this, $config); } $this->init(); } /** * Initializes the object. * This method is invoked at the end of the constructor after the object is initialized with the // Set a placeholder for the default `orderBy` param if (!isset($this->orderBy)) { $this->orderBy(new OrderByPlaceholderExpression()); } parent::__construct($config); } /** * @inheritdoc */ * @inheritdoc * @return GlobalSetQuery The newly created [[GlobalSetQuery]] instance. */ public static function find(): GlobalSetQuery { return new GlobalSetQuery(static::class); } /** * @inheritdoc * @since 3.3.0 * @return MemoizableArray<GlobalSet> */ private function _allSets(int $siteId): MemoizableArray { if (!isset($this->_allGlobalSets[$siteId])) { $this->_allGlobalSets[$siteId] = new MemoizableArray(GlobalSet::find()->siteId($siteId)->all()); } return $this->_allGlobalSets[$siteId]; } * @return GlobalSet[] */ public function getAllSets(): array { /** @noinspection PhpUnhandledExceptionInspection */ return $this->_allSets(Craft::$app->getSites()->getCurrentSite()->id)->all(); } /** * Returns all global sets that are editable by the current user. * * @inheritdoc */ public function getGlobals(): array { $globals = []; foreach (Craft::$app->getGlobals()->getAllSets() as $globalSet) { $globals[$globalSet->handle] = $globalSet; } return $globals; }} foreach ($this->extensions as $extension) { if (!$extension instanceof GlobalsInterface) { continue; } $globals = array_merge($globals, $extension->getGlobals()); } if ($this->initialized) { $this->globals = $globals; } */ public function getGlobals(): array { if ($this->extensionSet->isInitialized()) { if (null === $this->resolvedGlobals) { $this->resolvedGlobals = array_merge($this->extensionSet->getGlobals(), $this->globals); } return $this->resolvedGlobals; } /** * @return iterable<scalar|\Stringable|null> */ public function yield(array $context, array $blocks = []): iterable { $context += $this->env->getGlobals(); $blocks = array_merge($this->blocks, $blocks); try { yield from $this->doDisplay($context, $blocks); } catch (Error $e) { return $this->blocks; } public function display(array $context, array $blocks = []): void { foreach ($this->yield($context, $blocks) as $data) { echo $data; } } public function render(array $context): string ob_start(); } else { ob_start(function () { return ''; }); } try { $this->display($context); } catch (\Throwable $e) { while (ob_get_level() > $level) { ob_end_clean(); } yield from $this->template->yieldBlock($name, $context); } public function render(array $context = []): string { return $this->template->render($context); } /** * @return void */ * @throws SyntaxError When an error occurred during compilation * @throws RuntimeError When an error occurred during rendering */ public function render($name, array $context = []): string { return $this->load($name)->render($context); } /** * Displays a template. * // Render and return $renderingTemplate = $this->_renderingTemplate; $this->_renderingTemplate = $template; try { $output = $this->getTwig()->render($template, $variables); } finally { $this->_renderingTemplate = $renderingTemplate; $this->setTemplateMode($oldTemplateMode); } $isRenderingPageTemplate = $this->_isRenderingPageTemplate; $this->_isRenderingPageTemplate = true; try { $this->beginPage(); echo $this->renderTemplate($template, $variables); $this->endPage(); } finally { $this->_isRenderingPageTemplate = $isRenderingPageTemplate; $this->setTemplateMode($oldTemplateMode); $output = ob_get_clean(); function (RegisterTemplateRootsEvent $event) { $event->roots['@components'] = Craft::getAlias('@root/src/components'); }, ); Console::stdout(Craft::$app->getView()->renderPageTemplate( "@components/{$template}", $context, View::TEMPLATE_MODE_SITE, )); } catch (\Throwable $exception) { Yii::debug('Running action: ' . get_class($this->controller) . '::' . $this->actionMethod . '()', __METHOD__); if (Yii::$app->requestedParams === null) { Yii::$app->requestedParams = $args; } return call_user_func_array([$this->controller, $this->actionMethod], $args); }} $result = null; if ($runAction && $this->beforeAction($action)) { // run the action $result = $action->runWithParams($params); $result = $this->afterAction($action, $result); // call afterAction on modules foreach ($modules as $module) { if ($this->help) { $route = $this->getUniqueId() . '/' . $id; return Yii::$app->runAction('help', [$route]); } return parent::runAction($id, $params); } /** * Binds the parameters to the action. * This method is invoked by [[Action]] when it begins to run with the given parameters. public function runAction($id, $params = []) { try { // *should* only be an int, but there are exceptions :/ /** @var int|null $response */ $response = parent::runAction($id, $params); return $response ?? ExitCode::OK; } finally { if (isset($this->isolationMutexName)) { Craft::$app->getMutex()->release($this->isolationMutexName); } * @inheritdoc */ public function runAction($id, $params = []): int { $this->_actionId = $id; $result = $this->traitRunAction($id, $params); $this->_actionId = null; return $result; } /** * @phpstan-var Controller<$this> $controller */ list($controller, $actionID) = $parts; $oldController = Yii::$app->controller; Yii::$app->controller = $controller; $result = $controller->runAction($actionID, $params); if ($oldController !== null) { Yii::$app->controller = $oldController; } return $result; * @throws Exception if the route is invalid */ public function runAction($route, $params = []) { try { $res = parent::runAction($route, $params); return is_object($res) ? $res : (int) $res; } catch (InvalidRouteException $e) { throw new UnknownCommandException($route, $this, 0, $e); } } } Console::outputWarning("Craft can’t fetch the `$infoTable` table row." . ($e ? PHP_EOL . 'Exception: ' . $e->getMessage() : ''), false); } } return parent::runAction($route, $params); } /** * @inheritdoc */ */ public function handleRequest($request) { list($route, $params) = $request->resolve(); $this->requestedRoute = $route; $result = $this->runAction($route, $params); if ($result instanceof Response) { return $result; } $response = $this->getResponse(); public function handleRequest($request) { // Disable read/write splitting for all console requests $this->getDb()->enableReplicas = false; return parent::handleRequest($request); } /** * Returns the configuration of the built-in commands. * try { $this->state = self::STATE_BEFORE_REQUEST; $this->trigger(self::EVENT_BEFORE_REQUEST); $this->state = self::STATE_HANDLING_REQUEST; $response = $this->handleRequest($this->getRequest()); $this->state = self::STATE_AFTER_REQUEST; $this->trigger(self::EVENT_AFTER_REQUEST); $this->state = self::STATE_SENDING_RESPONSE;// Load and run Craft/** @var craft\console\Application $app */$app = require CRAFT_VENDOR_PATH . '/craftcms/cms/bootstrap/console.php';$exitCode = $app->run();exit($exitCode);|
ErrorException
|
|---|
yii\base\ErrorException:
filemtime(): stat failed for /Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes/CustomFieldBehavior_3@zedodnbhhx69a0422c888a08.71811364.php
at /Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/Craft.php:371
at yii\base\ErrorHandler->handleError(2, 'filemtime(): stat failed for /Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes/CustomFieldBehavior_3@zedodnbhhx69a0422c888a08.71811364.php', '/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/Craft.php', 371)
at filemtime('/Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes/CustomFieldBehavior_3@zedodnbhhx69a0422c888a08.71811364.php')
(/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/Craft.php:371)
at Craft::{closure}('/Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes/CustomFieldBehavior_3@zedodnbhhx69a0422c888a08.71811364.php')
at call_user_func(object(Closure), '/Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes/CustomFieldBehavior_3@zedodnbhhx69a0422c888a08.71811364.php')
(/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/helpers/BaseFileHelper.php:664)
at yii\helpers\BaseFileHelper::filterPath('/Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes/CustomFieldBehavior_3@zedodnbhhx69a0422c888a08.71811364.php', array('filter' => object(Closure), 'basePath' => '/Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes', 'caseSensitive' => true))
(/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/helpers/FileHelper.php:607)
at craft\helpers\FileHelper::clearDirectory('/Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes', array('filter' => object(Closure), 'basePath' => '/Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes', 'caseSensitive' => true))
(/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/Craft.php:365)
at Craft::_generateCustomFieldBehavior(array('caption', 'copyright', 'description', 'headline', 'hidden', 'htmlCode', 'hyperButton', 'hyperLink', 'hyperLinks', 'image', 'images', 'lightswitch', 'linkIcon', 'linkIcon', 'linkIcon', 'linkIcon', 'linkIcon', 'monospacedPlainText', 'multiLinePlainText', 'noarchive', 'noindex', 'ogDescription', 'ogImage', 'paragraph', 'paragraphs', 'plainText', 'seoTitle', 'siteIcon', 'thumbnail'), array(), array('caption' => array('\craft\ckeditor\data\FieldData' => true, 'null' => true), 'copyright' => array('\craft\ckeditor\data\FieldData' => true, 'null' => true), 'description' => array('string' => true, 'null' => true), 'headline' => array('string' => true, 'null' => true), 'hidden' => array('bool' => true), 'htmlCode' => array('mixed' => true), 'hyperButton' => array('\verbb\hyper\models\LinkCollection' => true, 'null' => true), 'hyperLink' => array('\verbb\hyper\models\LinkCollection' => true, 'null' => true), 'hyperLinks' => array('\verbb\hyper\models\LinkCollection' => true, 'null' => true), 'image' => array('\craft\elements\db\AssetQuery' => true, '\craft\elements\ElementCollection<\craft\elements\Asset>' => true), 'images' => array('\craft\elements\db\AssetQuery' => true, '\craft\elements\ElementCollection<\craft\elements\Asset>' => true), 'lightswitch' => array('bool' => true), 'linkIcon' => array('string' => true, 'null' => true), 'monospacedPlainText' => array('string' => true, 'null' => true), 'multiLinePlainText' => array('string' => true, 'null' => true), 'noarchive' => array('bool' => true), 'noindex' => array('bool' => true), 'ogDescription' => array('string' => true, 'null' => true), 'ogImage' => array('\craft\elements\db\AssetQuery' => true, '\craft\elements\ElementCollection<\craft\elements\Asset>' => true), 'paragraph' => array('\craft\ckeditor\data\FieldData' => true, 'null' => true), 'paragraphs' => array('\craft\ckeditor\data\FieldData' => true, 'null' => true), 'plainText' => array('string' => true, 'null' => true), 'seoTitle' => array('string' => true, 'null' => true), 'siteIcon' => array('string' => true, 'null' => true), 'thumbnail' => array('\craft\elements\db\AssetQuery' => true, '\craft\elements\ElementCollection<\craft\elements\Asset>' => true)), '/Users/dennis/Projekte/zplane-licensing/storage/runtime/compiled_classes/CustomFieldBehavior_3@zedodnbhhx.php', true, false)
(/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/Craft.php:271)
at Craft::_autoloadCustomFieldBehavior()
(/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/Craft.php:203)
at Craft::autoload('craft\\behaviors\\CustomFieldBehavior')
at ReflectionClass->__construct('craft\\behaviors\\CustomFieldBehavior')
(/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/di/Container.php:536)
at yii\di\Container->getDependencies('craft\\behaviors\\CustomFieldBehavior')
(/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/di/Container.php:406)
at yii\di\Container->build('craft\\behaviors\\CustomFieldBehavior', array(), array('hasMethods' => true))
(/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/di/Container.php:180)
at yii\di\Container->get('craft\\behaviors\\CustomFieldBehavior', array(), array('hasMethods' => true))
(/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/BaseYii.php:380)
at yii\BaseYii::createObject(array('hasMethods' => true))
(/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/base/Component.php:795)
at yii\base\Component->attachBehaviorInternal('customFields', array('class' => 'craft\\behaviors\\CustomFieldBehavior', 'hasMethods' => true))
(/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/base/Component.php:775)
at yii\base\Component->ensureBehaviors()
(/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/base/Component.php:485)
at yii\base\Component->hasEventHandlers('init')
(/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/db/Query.php:55)
at craft\db\Query->init()
(/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/base/BaseObject.php:112)
at yii\base\BaseObject->__construct(array('select' => array('**' => '**')))
(/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/elements/db/ElementQuery.php:626)
at craft\elements\db\ElementQuery->__construct('craft\\elements\\GlobalSet')
(/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/elements/GlobalSet.php:139)
at craft\elements\GlobalSet::find()
(/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/services/Globals.php:554)
at craft\services\Globals->_allSets(1)
(/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/services/Globals.php:127)
at craft\services\Globals->getAllSets()
(/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/web/twig/GlobalsExtension.php:28)
at craft\web\twig\GlobalsExtension->getGlobals()
(/Users/dennis/Projekte/zplane-licensing/vendor/twig/twig/src/ExtensionSet.php:359)
at Twig\ExtensionSet->getGlobals()
(/Users/dennis/Projekte/zplane-licensing/vendor/twig/twig/src/Environment.php:900)
at Twig\Environment->getGlobals()
(/Users/dennis/Projekte/zplane-licensing/vendor/twig/twig/src/Template.php:398)
at Twig\Template->yield(array('_self' => array('id' => 'ed0bfabe88edd9350ffbefed5cb1b486', 'name' => 'default', 'handle' => 'progressive-blur--default', 'label' => 'Default', 'title' => 'Progressive Blur: Default', 'order' => 1, 'isHidden' => true, 'alias' => 'progressive-blur', 'isEntity' => true, 'isVariant' => true, 'baseHandle' => 'progressive-blur', 'notes' => null, 'meta' => array(), 'status' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'display' => array(), 'isDefault' => true, 'viewPath' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/progressive-blur/progressive-blur.twig', 'preview' => '@preview', 'context' => array(), 'resources' => array('assets' => array(array('id' => 'a1f47b13d2d13582e8b54892c0c3ef8f', 'path' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/progressive-blur/progressive-blur.scss', 'relPath' => '1-particles/progressive-blur/progressive-blur.scss', 'base' => 'progressive-blur.scss', 'handle' => 'progressive-blur-scss', 'name' => 'progressive-blur.scss', 'ext' => '.scss', 'lang' => 'SCSS', 'mime' => 'text/x-scss', 'editorMode' => 'scss', 'editorScope' => 'source.scss', 'githubColor' => '#000', 'isBinary' => false, 'isFile' => true, 'isImage' => false, 'isAsset' => true, 'srcPath' => 'components/1-particles/progressive-blur/progressive-blur.scss', 'isSCSS' => true))), 'content' => '<div {{ html_attributes({ id: id ?? null, class: html_cva( base: \'progressive-blur\', variants: { direction: { \'block-start\': \'progressive-blur--block-start\', \'block-end\': \'progressive-blur--block-end\', \'inline-start\': \'progressive-blur--inline-start\', \'inline-end\': \'progressive-blur--inline-end\', }, }, ).apply({ direction: direction ?? null, }),}, attrs ?? {}) }}> {% for index in 1..8 %} <div class="progressive-blur__step"></div> {% endfor %}</div>', 'lang' => 'Twig', 'editorMode' => 'twig', 'editorScope' => 'text.html.twig'), '_env' => array('request' => array('headers' => array(), 'query' => array(), 'url' => '/components/preview/progressive-blur', 'segments' => array('components', 'preview', 'progressive-blur'), 'params' => array('handle' => 'progressive-blur'), 'path' => '/components/preview/progressive-blur', 'error' => null, 'errorStatus' => null, 'route' => array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), 'builder' => true, 'server' => false), '_config' => array('version' => '1.5.15', 'env' => 'production', 'project' => array('title' => '@zplane-web/craft-licensing', 'version' => null), 'components' => array('path' => 'src/components', 'label' => 'Components', 'title' => 'Components', 'yield' => 'yield', 'splitter' => '--', 'ext' => '.twig', 'files' => array('preview' => 'preview', 'config' => 'config', 'collator' => 'collator', 'notes' => 'readme'), 'resources' => array('assets' => array('label' => 'Assets', 'match' => array('**/*'))), 'default' => array('preview' => '@preview', 'display' => array(), 'context' => array(), 'tags' => array(), 'meta' => array(), 'status' => 'wip', 'collated' => false, 'prefix' => null), 'statuses' => array('prototype' => array('label' => 'Prototype', 'description' => 'Do not implement.', 'color' => '#FF3333'), 'wip' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'ready' => array('label' => 'Ready', 'description' => 'Ready to implement.', 'color' => '#29CC29'))), 'docs' => array('path' => null, 'label' => 'documentation', 'title' => 'Documentation', 'markdown' => array('gfm' => true, 'tables' => true, 'breaks' => false, 'pedantic' => false, 'sanitize' => false, 'smartLists' => true, 'smartypants' => true), 'ext' => '.md', 'indexLabel' => 'Overview', 'default' => array('context' => array(), 'status' => null, 'prefix' => null), 'statuses' => array('draft' => array('label' => 'Draft', 'description' => 'Work in progress.', 'color' => '#FF3333'), 'ready' => array('label' => 'Ready', 'description' => 'Ready for referencing.', 'color' => '#29CC29')), 'files' => array('config' => 'config')), 'assets' => array('label' => 'assets', 'title' => 'Assets'), 'cli' => array(), 'web' => array('theme' => array('_config' => array('skin' => array('name' => 'default'), 'navigation' => 'default', 'rtl' => false, 'lang' => 'en', 'styles' => array('/themes/mandelbrot/css/default.css', '/themes/mandelbrot/css/highlight.css'), 'highlightStyles' => 'default', 'scripts' => array('/themes/mandelbrot/js/mandelbrot.js'), 'format' => 'json', 'static' => array('mount' => 'themes/mandelbrot'), 'version' => '1.10.3', 'favicon' => '/themes/mandelbrot/favicon.ico', 'labels' => array('info' => 'Information', 'builtOn' => 'Built on', 'search' => array('label' => 'Search', 'placeholder' => 'Search…', 'clear' => 'Clear search'), 'navigation' => array('back' => 'Back'), 'tree' => array('collapse' => 'Collapse tree'), 'components' => array('handle' => 'Handle', 'tags' => 'Tags', 'variants' => 'Variants', 'context' => array('empty' => 'No context defined.'), 'notes' => array('empty' => 'No notes defined.'), 'preview' => array('label' => 'Preview', 'withLayout' => 'With layout', 'componentOnly' => 'Component only'), 'path' => 'Filesystem Path', 'references' => 'References', 'referenced' => 'Referenced by', 'resources' => array('file' => 'File', 'content' => 'Content', 'previewUnavailable' => 'Previews are currently not available for this file type.', 'url' => 'URL', 'path' => 'Filesystem Path', 'size' => 'Size')), 'panels' => array('html' => 'HTML', 'view' => 'View', 'context' => 'Context', 'resources' => 'Resources', 'info' => 'Info', 'notes' => 'Notes')), 'information' => array(array('type' => 'time', 'label' => 'Built on', 'value' => object(DateTime))), 'panels' => array('html', 'view', 'context', 'resources', 'info', 'notes'), 'nav' => array('search', 'components', 'docs', 'assets', 'information')), '_staticPaths' => array(array('path' => '/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/dist', 'mount' => '/themes/mandelbrot'), array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets')), '_routes' => array(array('overview', array('handle' => 'overview', 'view' => 'pages/doc.nunj', 'path' => '/', 'matcher' => array(), 'keys' => array())), array('/docs', array('redirect' => '/', 'path' => '/docs', 'handle' => '/docs', 'matcher' => array(), 'keys' => array())), array('/components', array('redirect' => '/', 'path' => '/components', 'handle' => '/components', 'matcher' => array(), 'keys' => array())), array('/assets', array('redirect' => '/', 'path' => '/assets', 'handle' => '/assets', 'matcher' => array(), 'keys' => array())), array('asset-source', array('handle' => 'asset-source', 'view' => 'pages/assets.nunj', 'path' => '/assets/:name', 'matcher' => array(), 'keys' => array(array('name' => 'name', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('preview', array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('render', array('handle' => 'render', 'view' => 'pages/components/render.nunj', 'path' => '/components/render/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component', array('handle' => 'component', 'view' => 'pages/components/detail.nunj', 'path' => '/components/detail/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component-resource', array('handle' => 'component-resource', 'path' => '/components/raw/:handle/:asset', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => ''), array('name' => 'asset', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('page', array('handle' => 'page', 'view' => 'pages/doc.nunj', 'path' => '/docs/:path([^?]+?)', 'matcher' => array(), 'keys' => array(array('name' => 'path', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^?]+?', 'modifier' => ''))))), '_resolvers' => array('overview' => array(null), '/docs' => array(null), '/components' => array(null), '/assets' => array(null), 'asset-source' => array(null), 'preview' => array(null), 'render' => array(null), 'component' => array(null), 'component-resource' => array(null), 'page' => array(null)), '_builder' => null, '_views' => array('/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/views'), '_filters' => array(), '_extensions' => array(), '_globals' => array(), '_errorView' => 'pages/error.nunj', '_redirectView' => '__system/redirect.nunj', '_events' => array(), '_eventsCount' => 1), 'server' => array('sync' => false, 'watch' => false, 'port' => null, 'syncOptions' => array('ghostMode' => false, 'watchOptions' => array('ignored' => array('/Users/dennis/Projekte/zplane-licensing/src/**/*.{scss,js,ts}')))), 'builder' => array('dest' => 'web/design-system', 'concurrency' => 10, 'ext' => '.html', 'urls' => array('ext' => '.html', 'relativeToCurrentFolder' => true), 'static' => array('ignored' => array())), 'static' => array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets'), 'assets' => array('mount' => 'assets')))), array())
(/Users/dennis/Projekte/zplane-licensing/vendor/twig/twig/src/Template.php:358)
at Twig\Template->display(array('_self' => array('id' => 'ed0bfabe88edd9350ffbefed5cb1b486', 'name' => 'default', 'handle' => 'progressive-blur--default', 'label' => 'Default', 'title' => 'Progressive Blur: Default', 'order' => 1, 'isHidden' => true, 'alias' => 'progressive-blur', 'isEntity' => true, 'isVariant' => true, 'baseHandle' => 'progressive-blur', 'notes' => null, 'meta' => array(), 'status' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'display' => array(), 'isDefault' => true, 'viewPath' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/progressive-blur/progressive-blur.twig', 'preview' => '@preview', 'context' => array(), 'resources' => array('assets' => array(array('id' => 'a1f47b13d2d13582e8b54892c0c3ef8f', 'path' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/progressive-blur/progressive-blur.scss', 'relPath' => '1-particles/progressive-blur/progressive-blur.scss', 'base' => 'progressive-blur.scss', 'handle' => 'progressive-blur-scss', 'name' => 'progressive-blur.scss', 'ext' => '.scss', 'lang' => 'SCSS', 'mime' => 'text/x-scss', 'editorMode' => 'scss', 'editorScope' => 'source.scss', 'githubColor' => '#000', 'isBinary' => false, 'isFile' => true, 'isImage' => false, 'isAsset' => true, 'srcPath' => 'components/1-particles/progressive-blur/progressive-blur.scss', 'isSCSS' => true))), 'content' => '<div {{ html_attributes({ id: id ?? null, class: html_cva( base: \'progressive-blur\', variants: { direction: { \'block-start\': \'progressive-blur--block-start\', \'block-end\': \'progressive-blur--block-end\', \'inline-start\': \'progressive-blur--inline-start\', \'inline-end\': \'progressive-blur--inline-end\', }, }, ).apply({ direction: direction ?? null, }),}, attrs ?? {}) }}> {% for index in 1..8 %} <div class="progressive-blur__step"></div> {% endfor %}</div>', 'lang' => 'Twig', 'editorMode' => 'twig', 'editorScope' => 'text.html.twig'), '_env' => array('request' => array('headers' => array(), 'query' => array(), 'url' => '/components/preview/progressive-blur', 'segments' => array('components', 'preview', 'progressive-blur'), 'params' => array('handle' => 'progressive-blur'), 'path' => '/components/preview/progressive-blur', 'error' => null, 'errorStatus' => null, 'route' => array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), 'builder' => true, 'server' => false), '_config' => array('version' => '1.5.15', 'env' => 'production', 'project' => array('title' => '@zplane-web/craft-licensing', 'version' => null), 'components' => array('path' => 'src/components', 'label' => 'Components', 'title' => 'Components', 'yield' => 'yield', 'splitter' => '--', 'ext' => '.twig', 'files' => array('preview' => 'preview', 'config' => 'config', 'collator' => 'collator', 'notes' => 'readme'), 'resources' => array('assets' => array('label' => 'Assets', 'match' => array('**/*'))), 'default' => array('preview' => '@preview', 'display' => array(), 'context' => array(), 'tags' => array(), 'meta' => array(), 'status' => 'wip', 'collated' => false, 'prefix' => null), 'statuses' => array('prototype' => array('label' => 'Prototype', 'description' => 'Do not implement.', 'color' => '#FF3333'), 'wip' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'ready' => array('label' => 'Ready', 'description' => 'Ready to implement.', 'color' => '#29CC29'))), 'docs' => array('path' => null, 'label' => 'documentation', 'title' => 'Documentation', 'markdown' => array('gfm' => true, 'tables' => true, 'breaks' => false, 'pedantic' => false, 'sanitize' => false, 'smartLists' => true, 'smartypants' => true), 'ext' => '.md', 'indexLabel' => 'Overview', 'default' => array('context' => array(), 'status' => null, 'prefix' => null), 'statuses' => array('draft' => array('label' => 'Draft', 'description' => 'Work in progress.', 'color' => '#FF3333'), 'ready' => array('label' => 'Ready', 'description' => 'Ready for referencing.', 'color' => '#29CC29')), 'files' => array('config' => 'config')), 'assets' => array('label' => 'assets', 'title' => 'Assets'), 'cli' => array(), 'web' => array('theme' => array('_config' => array('skin' => array('name' => 'default'), 'navigation' => 'default', 'rtl' => false, 'lang' => 'en', 'styles' => array('/themes/mandelbrot/css/default.css', '/themes/mandelbrot/css/highlight.css'), 'highlightStyles' => 'default', 'scripts' => array('/themes/mandelbrot/js/mandelbrot.js'), 'format' => 'json', 'static' => array('mount' => 'themes/mandelbrot'), 'version' => '1.10.3', 'favicon' => '/themes/mandelbrot/favicon.ico', 'labels' => array('info' => 'Information', 'builtOn' => 'Built on', 'search' => array('label' => 'Search', 'placeholder' => 'Search…', 'clear' => 'Clear search'), 'navigation' => array('back' => 'Back'), 'tree' => array('collapse' => 'Collapse tree'), 'components' => array('handle' => 'Handle', 'tags' => 'Tags', 'variants' => 'Variants', 'context' => array('empty' => 'No context defined.'), 'notes' => array('empty' => 'No notes defined.'), 'preview' => array('label' => 'Preview', 'withLayout' => 'With layout', 'componentOnly' => 'Component only'), 'path' => 'Filesystem Path', 'references' => 'References', 'referenced' => 'Referenced by', 'resources' => array('file' => 'File', 'content' => 'Content', 'previewUnavailable' => 'Previews are currently not available for this file type.', 'url' => 'URL', 'path' => 'Filesystem Path', 'size' => 'Size')), 'panels' => array('html' => 'HTML', 'view' => 'View', 'context' => 'Context', 'resources' => 'Resources', 'info' => 'Info', 'notes' => 'Notes')), 'information' => array(array('type' => 'time', 'label' => 'Built on', 'value' => object(DateTime))), 'panels' => array('html', 'view', 'context', 'resources', 'info', 'notes'), 'nav' => array('search', 'components', 'docs', 'assets', 'information')), '_staticPaths' => array(array('path' => '/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/dist', 'mount' => '/themes/mandelbrot'), array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets')), '_routes' => array(array('overview', array('handle' => 'overview', 'view' => 'pages/doc.nunj', 'path' => '/', 'matcher' => array(), 'keys' => array())), array('/docs', array('redirect' => '/', 'path' => '/docs', 'handle' => '/docs', 'matcher' => array(), 'keys' => array())), array('/components', array('redirect' => '/', 'path' => '/components', 'handle' => '/components', 'matcher' => array(), 'keys' => array())), array('/assets', array('redirect' => '/', 'path' => '/assets', 'handle' => '/assets', 'matcher' => array(), 'keys' => array())), array('asset-source', array('handle' => 'asset-source', 'view' => 'pages/assets.nunj', 'path' => '/assets/:name', 'matcher' => array(), 'keys' => array(array('name' => 'name', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('preview', array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('render', array('handle' => 'render', 'view' => 'pages/components/render.nunj', 'path' => '/components/render/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component', array('handle' => 'component', 'view' => 'pages/components/detail.nunj', 'path' => '/components/detail/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component-resource', array('handle' => 'component-resource', 'path' => '/components/raw/:handle/:asset', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => ''), array('name' => 'asset', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('page', array('handle' => 'page', 'view' => 'pages/doc.nunj', 'path' => '/docs/:path([^?]+?)', 'matcher' => array(), 'keys' => array(array('name' => 'path', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^?]+?', 'modifier' => ''))))), '_resolvers' => array('overview' => array(null), '/docs' => array(null), '/components' => array(null), '/assets' => array(null), 'asset-source' => array(null), 'preview' => array(null), 'render' => array(null), 'component' => array(null), 'component-resource' => array(null), 'page' => array(null)), '_builder' => null, '_views' => array('/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/views'), '_filters' => array(), '_extensions' => array(), '_globals' => array(), '_errorView' => 'pages/error.nunj', '_redirectView' => '__system/redirect.nunj', '_events' => array(), '_eventsCount' => 1), 'server' => array('sync' => false, 'watch' => false, 'port' => null, 'syncOptions' => array('ghostMode' => false, 'watchOptions' => array('ignored' => array('/Users/dennis/Projekte/zplane-licensing/src/**/*.{scss,js,ts}')))), 'builder' => array('dest' => 'web/design-system', 'concurrency' => 10, 'ext' => '.html', 'urls' => array('ext' => '.html', 'relativeToCurrentFolder' => true), 'static' => array('ignored' => array())), 'static' => array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets'), 'assets' => array('mount' => 'assets')))))
(/Users/dennis/Projekte/zplane-licensing/vendor/twig/twig/src/Template.php:373)
at Twig\Template->render(array('_self' => array('id' => 'ed0bfabe88edd9350ffbefed5cb1b486', 'name' => 'default', 'handle' => 'progressive-blur--default', 'label' => 'Default', 'title' => 'Progressive Blur: Default', 'order' => 1, 'isHidden' => true, 'alias' => 'progressive-blur', 'isEntity' => true, 'isVariant' => true, 'baseHandle' => 'progressive-blur', 'notes' => null, 'meta' => array(), 'status' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'display' => array(), 'isDefault' => true, 'viewPath' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/progressive-blur/progressive-blur.twig', 'preview' => '@preview', 'context' => array(), 'resources' => array('assets' => array(array('id' => 'a1f47b13d2d13582e8b54892c0c3ef8f', 'path' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/progressive-blur/progressive-blur.scss', 'relPath' => '1-particles/progressive-blur/progressive-blur.scss', 'base' => 'progressive-blur.scss', 'handle' => 'progressive-blur-scss', 'name' => 'progressive-blur.scss', 'ext' => '.scss', 'lang' => 'SCSS', 'mime' => 'text/x-scss', 'editorMode' => 'scss', 'editorScope' => 'source.scss', 'githubColor' => '#000', 'isBinary' => false, 'isFile' => true, 'isImage' => false, 'isAsset' => true, 'srcPath' => 'components/1-particles/progressive-blur/progressive-blur.scss', 'isSCSS' => true))), 'content' => '<div {{ html_attributes({ id: id ?? null, class: html_cva( base: \'progressive-blur\', variants: { direction: { \'block-start\': \'progressive-blur--block-start\', \'block-end\': \'progressive-blur--block-end\', \'inline-start\': \'progressive-blur--inline-start\', \'inline-end\': \'progressive-blur--inline-end\', }, }, ).apply({ direction: direction ?? null, }),}, attrs ?? {}) }}> {% for index in 1..8 %} <div class="progressive-blur__step"></div> {% endfor %}</div>', 'lang' => 'Twig', 'editorMode' => 'twig', 'editorScope' => 'text.html.twig'), '_env' => array('request' => array('headers' => array(), 'query' => array(), 'url' => '/components/preview/progressive-blur', 'segments' => array('components', 'preview', 'progressive-blur'), 'params' => array('handle' => 'progressive-blur'), 'path' => '/components/preview/progressive-blur', 'error' => null, 'errorStatus' => null, 'route' => array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), 'builder' => true, 'server' => false), '_config' => array('version' => '1.5.15', 'env' => 'production', 'project' => array('title' => '@zplane-web/craft-licensing', 'version' => null), 'components' => array('path' => 'src/components', 'label' => 'Components', 'title' => 'Components', 'yield' => 'yield', 'splitter' => '--', 'ext' => '.twig', 'files' => array('preview' => 'preview', 'config' => 'config', 'collator' => 'collator', 'notes' => 'readme'), 'resources' => array('assets' => array('label' => 'Assets', 'match' => array('**/*'))), 'default' => array('preview' => '@preview', 'display' => array(), 'context' => array(), 'tags' => array(), 'meta' => array(), 'status' => 'wip', 'collated' => false, 'prefix' => null), 'statuses' => array('prototype' => array('label' => 'Prototype', 'description' => 'Do not implement.', 'color' => '#FF3333'), 'wip' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'ready' => array('label' => 'Ready', 'description' => 'Ready to implement.', 'color' => '#29CC29'))), 'docs' => array('path' => null, 'label' => 'documentation', 'title' => 'Documentation', 'markdown' => array('gfm' => true, 'tables' => true, 'breaks' => false, 'pedantic' => false, 'sanitize' => false, 'smartLists' => true, 'smartypants' => true), 'ext' => '.md', 'indexLabel' => 'Overview', 'default' => array('context' => array(), 'status' => null, 'prefix' => null), 'statuses' => array('draft' => array('label' => 'Draft', 'description' => 'Work in progress.', 'color' => '#FF3333'), 'ready' => array('label' => 'Ready', 'description' => 'Ready for referencing.', 'color' => '#29CC29')), 'files' => array('config' => 'config')), 'assets' => array('label' => 'assets', 'title' => 'Assets'), 'cli' => array(), 'web' => array('theme' => array('_config' => array('skin' => array('name' => 'default'), 'navigation' => 'default', 'rtl' => false, 'lang' => 'en', 'styles' => array('/themes/mandelbrot/css/default.css', '/themes/mandelbrot/css/highlight.css'), 'highlightStyles' => 'default', 'scripts' => array('/themes/mandelbrot/js/mandelbrot.js'), 'format' => 'json', 'static' => array('mount' => 'themes/mandelbrot'), 'version' => '1.10.3', 'favicon' => '/themes/mandelbrot/favicon.ico', 'labels' => array('info' => 'Information', 'builtOn' => 'Built on', 'search' => array('label' => 'Search', 'placeholder' => 'Search…', 'clear' => 'Clear search'), 'navigation' => array('back' => 'Back'), 'tree' => array('collapse' => 'Collapse tree'), 'components' => array('handle' => 'Handle', 'tags' => 'Tags', 'variants' => 'Variants', 'context' => array('empty' => 'No context defined.'), 'notes' => array('empty' => 'No notes defined.'), 'preview' => array('label' => 'Preview', 'withLayout' => 'With layout', 'componentOnly' => 'Component only'), 'path' => 'Filesystem Path', 'references' => 'References', 'referenced' => 'Referenced by', 'resources' => array('file' => 'File', 'content' => 'Content', 'previewUnavailable' => 'Previews are currently not available for this file type.', 'url' => 'URL', 'path' => 'Filesystem Path', 'size' => 'Size')), 'panels' => array('html' => 'HTML', 'view' => 'View', 'context' => 'Context', 'resources' => 'Resources', 'info' => 'Info', 'notes' => 'Notes')), 'information' => array(array('type' => 'time', 'label' => 'Built on', 'value' => object(DateTime))), 'panels' => array('html', 'view', 'context', 'resources', 'info', 'notes'), 'nav' => array('search', 'components', 'docs', 'assets', 'information')), '_staticPaths' => array(array('path' => '/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/dist', 'mount' => '/themes/mandelbrot'), array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets')), '_routes' => array(array('overview', array('handle' => 'overview', 'view' => 'pages/doc.nunj', 'path' => '/', 'matcher' => array(), 'keys' => array())), array('/docs', array('redirect' => '/', 'path' => '/docs', 'handle' => '/docs', 'matcher' => array(), 'keys' => array())), array('/components', array('redirect' => '/', 'path' => '/components', 'handle' => '/components', 'matcher' => array(), 'keys' => array())), array('/assets', array('redirect' => '/', 'path' => '/assets', 'handle' => '/assets', 'matcher' => array(), 'keys' => array())), array('asset-source', array('handle' => 'asset-source', 'view' => 'pages/assets.nunj', 'path' => '/assets/:name', 'matcher' => array(), 'keys' => array(array('name' => 'name', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('preview', array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('render', array('handle' => 'render', 'view' => 'pages/components/render.nunj', 'path' => '/components/render/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component', array('handle' => 'component', 'view' => 'pages/components/detail.nunj', 'path' => '/components/detail/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component-resource', array('handle' => 'component-resource', 'path' => '/components/raw/:handle/:asset', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => ''), array('name' => 'asset', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('page', array('handle' => 'page', 'view' => 'pages/doc.nunj', 'path' => '/docs/:path([^?]+?)', 'matcher' => array(), 'keys' => array(array('name' => 'path', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^?]+?', 'modifier' => ''))))), '_resolvers' => array('overview' => array(null), '/docs' => array(null), '/components' => array(null), '/assets' => array(null), 'asset-source' => array(null), 'preview' => array(null), 'render' => array(null), 'component' => array(null), 'component-resource' => array(null), 'page' => array(null)), '_builder' => null, '_views' => array('/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/views'), '_filters' => array(), '_extensions' => array(), '_globals' => array(), '_errorView' => 'pages/error.nunj', '_redirectView' => '__system/redirect.nunj', '_events' => array(), '_eventsCount' => 1), 'server' => array('sync' => false, 'watch' => false, 'port' => null, 'syncOptions' => array('ghostMode' => false, 'watchOptions' => array('ignored' => array('/Users/dennis/Projekte/zplane-licensing/src/**/*.{scss,js,ts}')))), 'builder' => array('dest' => 'web/design-system', 'concurrency' => 10, 'ext' => '.html', 'urls' => array('ext' => '.html', 'relativeToCurrentFolder' => true), 'static' => array('ignored' => array())), 'static' => array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets'), 'assets' => array('mount' => 'assets')))))
(/Users/dennis/Projekte/zplane-licensing/vendor/twig/twig/src/TemplateWrapper.php:51)
at Twig\TemplateWrapper->render(array('_self' => array('id' => 'ed0bfabe88edd9350ffbefed5cb1b486', 'name' => 'default', 'handle' => 'progressive-blur--default', 'label' => 'Default', 'title' => 'Progressive Blur: Default', 'order' => 1, 'isHidden' => true, 'alias' => 'progressive-blur', 'isEntity' => true, 'isVariant' => true, 'baseHandle' => 'progressive-blur', 'notes' => null, 'meta' => array(), 'status' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'display' => array(), 'isDefault' => true, 'viewPath' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/progressive-blur/progressive-blur.twig', 'preview' => '@preview', 'context' => array(), 'resources' => array('assets' => array(array('id' => 'a1f47b13d2d13582e8b54892c0c3ef8f', 'path' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/progressive-blur/progressive-blur.scss', 'relPath' => '1-particles/progressive-blur/progressive-blur.scss', 'base' => 'progressive-blur.scss', 'handle' => 'progressive-blur-scss', 'name' => 'progressive-blur.scss', 'ext' => '.scss', 'lang' => 'SCSS', 'mime' => 'text/x-scss', 'editorMode' => 'scss', 'editorScope' => 'source.scss', 'githubColor' => '#000', 'isBinary' => false, 'isFile' => true, 'isImage' => false, 'isAsset' => true, 'srcPath' => 'components/1-particles/progressive-blur/progressive-blur.scss', 'isSCSS' => true))), 'content' => '<div {{ html_attributes({ id: id ?? null, class: html_cva( base: \'progressive-blur\', variants: { direction: { \'block-start\': \'progressive-blur--block-start\', \'block-end\': \'progressive-blur--block-end\', \'inline-start\': \'progressive-blur--inline-start\', \'inline-end\': \'progressive-blur--inline-end\', }, }, ).apply({ direction: direction ?? null, }),}, attrs ?? {}) }}> {% for index in 1..8 %} <div class="progressive-blur__step"></div> {% endfor %}</div>', 'lang' => 'Twig', 'editorMode' => 'twig', 'editorScope' => 'text.html.twig'), '_env' => array('request' => array('headers' => array(), 'query' => array(), 'url' => '/components/preview/progressive-blur', 'segments' => array('components', 'preview', 'progressive-blur'), 'params' => array('handle' => 'progressive-blur'), 'path' => '/components/preview/progressive-blur', 'error' => null, 'errorStatus' => null, 'route' => array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), 'builder' => true, 'server' => false), '_config' => array('version' => '1.5.15', 'env' => 'production', 'project' => array('title' => '@zplane-web/craft-licensing', 'version' => null), 'components' => array('path' => 'src/components', 'label' => 'Components', 'title' => 'Components', 'yield' => 'yield', 'splitter' => '--', 'ext' => '.twig', 'files' => array('preview' => 'preview', 'config' => 'config', 'collator' => 'collator', 'notes' => 'readme'), 'resources' => array('assets' => array('label' => 'Assets', 'match' => array('**/*'))), 'default' => array('preview' => '@preview', 'display' => array(), 'context' => array(), 'tags' => array(), 'meta' => array(), 'status' => 'wip', 'collated' => false, 'prefix' => null), 'statuses' => array('prototype' => array('label' => 'Prototype', 'description' => 'Do not implement.', 'color' => '#FF3333'), 'wip' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'ready' => array('label' => 'Ready', 'description' => 'Ready to implement.', 'color' => '#29CC29'))), 'docs' => array('path' => null, 'label' => 'documentation', 'title' => 'Documentation', 'markdown' => array('gfm' => true, 'tables' => true, 'breaks' => false, 'pedantic' => false, 'sanitize' => false, 'smartLists' => true, 'smartypants' => true), 'ext' => '.md', 'indexLabel' => 'Overview', 'default' => array('context' => array(), 'status' => null, 'prefix' => null), 'statuses' => array('draft' => array('label' => 'Draft', 'description' => 'Work in progress.', 'color' => '#FF3333'), 'ready' => array('label' => 'Ready', 'description' => 'Ready for referencing.', 'color' => '#29CC29')), 'files' => array('config' => 'config')), 'assets' => array('label' => 'assets', 'title' => 'Assets'), 'cli' => array(), 'web' => array('theme' => array('_config' => array('skin' => array('name' => 'default'), 'navigation' => 'default', 'rtl' => false, 'lang' => 'en', 'styles' => array('/themes/mandelbrot/css/default.css', '/themes/mandelbrot/css/highlight.css'), 'highlightStyles' => 'default', 'scripts' => array('/themes/mandelbrot/js/mandelbrot.js'), 'format' => 'json', 'static' => array('mount' => 'themes/mandelbrot'), 'version' => '1.10.3', 'favicon' => '/themes/mandelbrot/favicon.ico', 'labels' => array('info' => 'Information', 'builtOn' => 'Built on', 'search' => array('label' => 'Search', 'placeholder' => 'Search…', 'clear' => 'Clear search'), 'navigation' => array('back' => 'Back'), 'tree' => array('collapse' => 'Collapse tree'), 'components' => array('handle' => 'Handle', 'tags' => 'Tags', 'variants' => 'Variants', 'context' => array('empty' => 'No context defined.'), 'notes' => array('empty' => 'No notes defined.'), 'preview' => array('label' => 'Preview', 'withLayout' => 'With layout', 'componentOnly' => 'Component only'), 'path' => 'Filesystem Path', 'references' => 'References', 'referenced' => 'Referenced by', 'resources' => array('file' => 'File', 'content' => 'Content', 'previewUnavailable' => 'Previews are currently not available for this file type.', 'url' => 'URL', 'path' => 'Filesystem Path', 'size' => 'Size')), 'panels' => array('html' => 'HTML', 'view' => 'View', 'context' => 'Context', 'resources' => 'Resources', 'info' => 'Info', 'notes' => 'Notes')), 'information' => array(array('type' => 'time', 'label' => 'Built on', 'value' => object(DateTime))), 'panels' => array('html', 'view', 'context', 'resources', 'info', 'notes'), 'nav' => array('search', 'components', 'docs', 'assets', 'information')), '_staticPaths' => array(array('path' => '/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/dist', 'mount' => '/themes/mandelbrot'), array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets')), '_routes' => array(array('overview', array('handle' => 'overview', 'view' => 'pages/doc.nunj', 'path' => '/', 'matcher' => array(), 'keys' => array())), array('/docs', array('redirect' => '/', 'path' => '/docs', 'handle' => '/docs', 'matcher' => array(), 'keys' => array())), array('/components', array('redirect' => '/', 'path' => '/components', 'handle' => '/components', 'matcher' => array(), 'keys' => array())), array('/assets', array('redirect' => '/', 'path' => '/assets', 'handle' => '/assets', 'matcher' => array(), 'keys' => array())), array('asset-source', array('handle' => 'asset-source', 'view' => 'pages/assets.nunj', 'path' => '/assets/:name', 'matcher' => array(), 'keys' => array(array('name' => 'name', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('preview', array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('render', array('handle' => 'render', 'view' => 'pages/components/render.nunj', 'path' => '/components/render/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component', array('handle' => 'component', 'view' => 'pages/components/detail.nunj', 'path' => '/components/detail/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component-resource', array('handle' => 'component-resource', 'path' => '/components/raw/:handle/:asset', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => ''), array('name' => 'asset', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('page', array('handle' => 'page', 'view' => 'pages/doc.nunj', 'path' => '/docs/:path([^?]+?)', 'matcher' => array(), 'keys' => array(array('name' => 'path', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^?]+?', 'modifier' => ''))))), '_resolvers' => array('overview' => array(null), '/docs' => array(null), '/components' => array(null), '/assets' => array(null), 'asset-source' => array(null), 'preview' => array(null), 'render' => array(null), 'component' => array(null), 'component-resource' => array(null), 'page' => array(null)), '_builder' => null, '_views' => array('/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/views'), '_filters' => array(), '_extensions' => array(), '_globals' => array(), '_errorView' => 'pages/error.nunj', '_redirectView' => '__system/redirect.nunj', '_events' => array(), '_eventsCount' => 1), 'server' => array('sync' => false, 'watch' => false, 'port' => null, 'syncOptions' => array('ghostMode' => false, 'watchOptions' => array('ignored' => array('/Users/dennis/Projekte/zplane-licensing/src/**/*.{scss,js,ts}')))), 'builder' => array('dest' => 'web/design-system', 'concurrency' => 10, 'ext' => '.html', 'urls' => array('ext' => '.html', 'relativeToCurrentFolder' => true), 'static' => array('ignored' => array())), 'static' => array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets'), 'assets' => array('mount' => 'assets')))))
(/Users/dennis/Projekte/zplane-licensing/vendor/twig/twig/src/Environment.php:333)
at Twig\Environment->render('@components/1-particles/progressive-blur/progressive-blur.twig', array('_self' => array('id' => 'ed0bfabe88edd9350ffbefed5cb1b486', 'name' => 'default', 'handle' => 'progressive-blur--default', 'label' => 'Default', 'title' => 'Progressive Blur: Default', 'order' => 1, 'isHidden' => true, 'alias' => 'progressive-blur', 'isEntity' => true, 'isVariant' => true, 'baseHandle' => 'progressive-blur', 'notes' => null, 'meta' => array(), 'status' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'display' => array(), 'isDefault' => true, 'viewPath' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/progressive-blur/progressive-blur.twig', 'preview' => '@preview', 'context' => array(), 'resources' => array('assets' => array(array('id' => 'a1f47b13d2d13582e8b54892c0c3ef8f', 'path' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/progressive-blur/progressive-blur.scss', 'relPath' => '1-particles/progressive-blur/progressive-blur.scss', 'base' => 'progressive-blur.scss', 'handle' => 'progressive-blur-scss', 'name' => 'progressive-blur.scss', 'ext' => '.scss', 'lang' => 'SCSS', 'mime' => 'text/x-scss', 'editorMode' => 'scss', 'editorScope' => 'source.scss', 'githubColor' => '#000', 'isBinary' => false, 'isFile' => true, 'isImage' => false, 'isAsset' => true, 'srcPath' => 'components/1-particles/progressive-blur/progressive-blur.scss', 'isSCSS' => true))), 'content' => '<div {{ html_attributes({ id: id ?? null, class: html_cva( base: \'progressive-blur\', variants: { direction: { \'block-start\': \'progressive-blur--block-start\', \'block-end\': \'progressive-blur--block-end\', \'inline-start\': \'progressive-blur--inline-start\', \'inline-end\': \'progressive-blur--inline-end\', }, }, ).apply({ direction: direction ?? null, }),}, attrs ?? {}) }}> {% for index in 1..8 %} <div class="progressive-blur__step"></div> {% endfor %}</div>', 'lang' => 'Twig', 'editorMode' => 'twig', 'editorScope' => 'text.html.twig'), '_env' => array('request' => array('headers' => array(), 'query' => array(), 'url' => '/components/preview/progressive-blur', 'segments' => array('components', 'preview', 'progressive-blur'), 'params' => array('handle' => 'progressive-blur'), 'path' => '/components/preview/progressive-blur', 'error' => null, 'errorStatus' => null, 'route' => array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), 'builder' => true, 'server' => false), '_config' => array('version' => '1.5.15', 'env' => 'production', 'project' => array('title' => '@zplane-web/craft-licensing', 'version' => null), 'components' => array('path' => 'src/components', 'label' => 'Components', 'title' => 'Components', 'yield' => 'yield', 'splitter' => '--', 'ext' => '.twig', 'files' => array('preview' => 'preview', 'config' => 'config', 'collator' => 'collator', 'notes' => 'readme'), 'resources' => array('assets' => array('label' => 'Assets', 'match' => array('**/*'))), 'default' => array('preview' => '@preview', 'display' => array(), 'context' => array(), 'tags' => array(), 'meta' => array(), 'status' => 'wip', 'collated' => false, 'prefix' => null), 'statuses' => array('prototype' => array('label' => 'Prototype', 'description' => 'Do not implement.', 'color' => '#FF3333'), 'wip' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'ready' => array('label' => 'Ready', 'description' => 'Ready to implement.', 'color' => '#29CC29'))), 'docs' => array('path' => null, 'label' => 'documentation', 'title' => 'Documentation', 'markdown' => array('gfm' => true, 'tables' => true, 'breaks' => false, 'pedantic' => false, 'sanitize' => false, 'smartLists' => true, 'smartypants' => true), 'ext' => '.md', 'indexLabel' => 'Overview', 'default' => array('context' => array(), 'status' => null, 'prefix' => null), 'statuses' => array('draft' => array('label' => 'Draft', 'description' => 'Work in progress.', 'color' => '#FF3333'), 'ready' => array('label' => 'Ready', 'description' => 'Ready for referencing.', 'color' => '#29CC29')), 'files' => array('config' => 'config')), 'assets' => array('label' => 'assets', 'title' => 'Assets'), 'cli' => array(), 'web' => array('theme' => array('_config' => array('skin' => array('name' => 'default'), 'navigation' => 'default', 'rtl' => false, 'lang' => 'en', 'styles' => array('/themes/mandelbrot/css/default.css', '/themes/mandelbrot/css/highlight.css'), 'highlightStyles' => 'default', 'scripts' => array('/themes/mandelbrot/js/mandelbrot.js'), 'format' => 'json', 'static' => array('mount' => 'themes/mandelbrot'), 'version' => '1.10.3', 'favicon' => '/themes/mandelbrot/favicon.ico', 'labels' => array('info' => 'Information', 'builtOn' => 'Built on', 'search' => array('label' => 'Search', 'placeholder' => 'Search…', 'clear' => 'Clear search'), 'navigation' => array('back' => 'Back'), 'tree' => array('collapse' => 'Collapse tree'), 'components' => array('handle' => 'Handle', 'tags' => 'Tags', 'variants' => 'Variants', 'context' => array('empty' => 'No context defined.'), 'notes' => array('empty' => 'No notes defined.'), 'preview' => array('label' => 'Preview', 'withLayout' => 'With layout', 'componentOnly' => 'Component only'), 'path' => 'Filesystem Path', 'references' => 'References', 'referenced' => 'Referenced by', 'resources' => array('file' => 'File', 'content' => 'Content', 'previewUnavailable' => 'Previews are currently not available for this file type.', 'url' => 'URL', 'path' => 'Filesystem Path', 'size' => 'Size')), 'panels' => array('html' => 'HTML', 'view' => 'View', 'context' => 'Context', 'resources' => 'Resources', 'info' => 'Info', 'notes' => 'Notes')), 'information' => array(array('type' => 'time', 'label' => 'Built on', 'value' => object(DateTime))), 'panels' => array('html', 'view', 'context', 'resources', 'info', 'notes'), 'nav' => array('search', 'components', 'docs', 'assets', 'information')), '_staticPaths' => array(array('path' => '/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/dist', 'mount' => '/themes/mandelbrot'), array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets')), '_routes' => array(array('overview', array('handle' => 'overview', 'view' => 'pages/doc.nunj', 'path' => '/', 'matcher' => array(), 'keys' => array())), array('/docs', array('redirect' => '/', 'path' => '/docs', 'handle' => '/docs', 'matcher' => array(), 'keys' => array())), array('/components', array('redirect' => '/', 'path' => '/components', 'handle' => '/components', 'matcher' => array(), 'keys' => array())), array('/assets', array('redirect' => '/', 'path' => '/assets', 'handle' => '/assets', 'matcher' => array(), 'keys' => array())), array('asset-source', array('handle' => 'asset-source', 'view' => 'pages/assets.nunj', 'path' => '/assets/:name', 'matcher' => array(), 'keys' => array(array('name' => 'name', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('preview', array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('render', array('handle' => 'render', 'view' => 'pages/components/render.nunj', 'path' => '/components/render/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component', array('handle' => 'component', 'view' => 'pages/components/detail.nunj', 'path' => '/components/detail/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component-resource', array('handle' => 'component-resource', 'path' => '/components/raw/:handle/:asset', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => ''), array('name' => 'asset', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('page', array('handle' => 'page', 'view' => 'pages/doc.nunj', 'path' => '/docs/:path([^?]+?)', 'matcher' => array(), 'keys' => array(array('name' => 'path', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^?]+?', 'modifier' => ''))))), '_resolvers' => array('overview' => array(null), '/docs' => array(null), '/components' => array(null), '/assets' => array(null), 'asset-source' => array(null), 'preview' => array(null), 'render' => array(null), 'component' => array(null), 'component-resource' => array(null), 'page' => array(null)), '_builder' => null, '_views' => array('/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/views'), '_filters' => array(), '_extensions' => array(), '_globals' => array(), '_errorView' => 'pages/error.nunj', '_redirectView' => '__system/redirect.nunj', '_events' => array(), '_eventsCount' => 1), 'server' => array('sync' => false, 'watch' => false, 'port' => null, 'syncOptions' => array('ghostMode' => false, 'watchOptions' => array('ignored' => array('/Users/dennis/Projekte/zplane-licensing/src/**/*.{scss,js,ts}')))), 'builder' => array('dest' => 'web/design-system', 'concurrency' => 10, 'ext' => '.html', 'urls' => array('ext' => '.html', 'relativeToCurrentFolder' => true), 'static' => array('ignored' => array())), 'static' => array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets'), 'assets' => array('mount' => 'assets')))))
(/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/web/View.php:590)
at craft\web\View->renderTemplate('@components/1-particles/progressive-blur/progressive-blur.twig', array('_self' => array('id' => 'ed0bfabe88edd9350ffbefed5cb1b486', 'name' => 'default', 'handle' => 'progressive-blur--default', 'label' => 'Default', 'title' => 'Progressive Blur: Default', 'order' => 1, 'isHidden' => true, 'alias' => 'progressive-blur', 'isEntity' => true, 'isVariant' => true, 'baseHandle' => 'progressive-blur', 'notes' => null, 'meta' => array(), 'status' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'display' => array(), 'isDefault' => true, 'viewPath' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/progressive-blur/progressive-blur.twig', 'preview' => '@preview', 'context' => array(), 'resources' => array('assets' => array(array('id' => 'a1f47b13d2d13582e8b54892c0c3ef8f', 'path' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/progressive-blur/progressive-blur.scss', 'relPath' => '1-particles/progressive-blur/progressive-blur.scss', 'base' => 'progressive-blur.scss', 'handle' => 'progressive-blur-scss', 'name' => 'progressive-blur.scss', 'ext' => '.scss', 'lang' => 'SCSS', 'mime' => 'text/x-scss', 'editorMode' => 'scss', 'editorScope' => 'source.scss', 'githubColor' => '#000', 'isBinary' => false, 'isFile' => true, 'isImage' => false, 'isAsset' => true, 'srcPath' => 'components/1-particles/progressive-blur/progressive-blur.scss', 'isSCSS' => true))), 'content' => '<div {{ html_attributes({ id: id ?? null, class: html_cva( base: \'progressive-blur\', variants: { direction: { \'block-start\': \'progressive-blur--block-start\', \'block-end\': \'progressive-blur--block-end\', \'inline-start\': \'progressive-blur--inline-start\', \'inline-end\': \'progressive-blur--inline-end\', }, }, ).apply({ direction: direction ?? null, }),}, attrs ?? {}) }}> {% for index in 1..8 %} <div class="progressive-blur__step"></div> {% endfor %}</div>', 'lang' => 'Twig', 'editorMode' => 'twig', 'editorScope' => 'text.html.twig'), '_env' => array('request' => array('headers' => array(), 'query' => array(), 'url' => '/components/preview/progressive-blur', 'segments' => array('components', 'preview', 'progressive-blur'), 'params' => array('handle' => 'progressive-blur'), 'path' => '/components/preview/progressive-blur', 'error' => null, 'errorStatus' => null, 'route' => array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), 'builder' => true, 'server' => false), '_config' => array('version' => '1.5.15', 'env' => 'production', 'project' => array('title' => '@zplane-web/craft-licensing', 'version' => null), 'components' => array('path' => 'src/components', 'label' => 'Components', 'title' => 'Components', 'yield' => 'yield', 'splitter' => '--', 'ext' => '.twig', 'files' => array('preview' => 'preview', 'config' => 'config', 'collator' => 'collator', 'notes' => 'readme'), 'resources' => array('assets' => array('label' => 'Assets', 'match' => array('**/*'))), 'default' => array('preview' => '@preview', 'display' => array(), 'context' => array(), 'tags' => array(), 'meta' => array(), 'status' => 'wip', 'collated' => false, 'prefix' => null), 'statuses' => array('prototype' => array('label' => 'Prototype', 'description' => 'Do not implement.', 'color' => '#FF3333'), 'wip' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'ready' => array('label' => 'Ready', 'description' => 'Ready to implement.', 'color' => '#29CC29'))), 'docs' => array('path' => null, 'label' => 'documentation', 'title' => 'Documentation', 'markdown' => array('gfm' => true, 'tables' => true, 'breaks' => false, 'pedantic' => false, 'sanitize' => false, 'smartLists' => true, 'smartypants' => true), 'ext' => '.md', 'indexLabel' => 'Overview', 'default' => array('context' => array(), 'status' => null, 'prefix' => null), 'statuses' => array('draft' => array('label' => 'Draft', 'description' => 'Work in progress.', 'color' => '#FF3333'), 'ready' => array('label' => 'Ready', 'description' => 'Ready for referencing.', 'color' => '#29CC29')), 'files' => array('config' => 'config')), 'assets' => array('label' => 'assets', 'title' => 'Assets'), 'cli' => array(), 'web' => array('theme' => array('_config' => array('skin' => array('name' => 'default'), 'navigation' => 'default', 'rtl' => false, 'lang' => 'en', 'styles' => array('/themes/mandelbrot/css/default.css', '/themes/mandelbrot/css/highlight.css'), 'highlightStyles' => 'default', 'scripts' => array('/themes/mandelbrot/js/mandelbrot.js'), 'format' => 'json', 'static' => array('mount' => 'themes/mandelbrot'), 'version' => '1.10.3', 'favicon' => '/themes/mandelbrot/favicon.ico', 'labels' => array('info' => 'Information', 'builtOn' => 'Built on', 'search' => array('label' => 'Search', 'placeholder' => 'Search…', 'clear' => 'Clear search'), 'navigation' => array('back' => 'Back'), 'tree' => array('collapse' => 'Collapse tree'), 'components' => array('handle' => 'Handle', 'tags' => 'Tags', 'variants' => 'Variants', 'context' => array('empty' => 'No context defined.'), 'notes' => array('empty' => 'No notes defined.'), 'preview' => array('label' => 'Preview', 'withLayout' => 'With layout', 'componentOnly' => 'Component only'), 'path' => 'Filesystem Path', 'references' => 'References', 'referenced' => 'Referenced by', 'resources' => array('file' => 'File', 'content' => 'Content', 'previewUnavailable' => 'Previews are currently not available for this file type.', 'url' => 'URL', 'path' => 'Filesystem Path', 'size' => 'Size')), 'panels' => array('html' => 'HTML', 'view' => 'View', 'context' => 'Context', 'resources' => 'Resources', 'info' => 'Info', 'notes' => 'Notes')), 'information' => array(array('type' => 'time', 'label' => 'Built on', 'value' => object(DateTime))), 'panels' => array('html', 'view', 'context', 'resources', 'info', 'notes'), 'nav' => array('search', 'components', 'docs', 'assets', 'information')), '_staticPaths' => array(array('path' => '/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/dist', 'mount' => '/themes/mandelbrot'), array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets')), '_routes' => array(array('overview', array('handle' => 'overview', 'view' => 'pages/doc.nunj', 'path' => '/', 'matcher' => array(), 'keys' => array())), array('/docs', array('redirect' => '/', 'path' => '/docs', 'handle' => '/docs', 'matcher' => array(), 'keys' => array())), array('/components', array('redirect' => '/', 'path' => '/components', 'handle' => '/components', 'matcher' => array(), 'keys' => array())), array('/assets', array('redirect' => '/', 'path' => '/assets', 'handle' => '/assets', 'matcher' => array(), 'keys' => array())), array('asset-source', array('handle' => 'asset-source', 'view' => 'pages/assets.nunj', 'path' => '/assets/:name', 'matcher' => array(), 'keys' => array(array('name' => 'name', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('preview', array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('render', array('handle' => 'render', 'view' => 'pages/components/render.nunj', 'path' => '/components/render/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component', array('handle' => 'component', 'view' => 'pages/components/detail.nunj', 'path' => '/components/detail/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component-resource', array('handle' => 'component-resource', 'path' => '/components/raw/:handle/:asset', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => ''), array('name' => 'asset', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('page', array('handle' => 'page', 'view' => 'pages/doc.nunj', 'path' => '/docs/:path([^?]+?)', 'matcher' => array(), 'keys' => array(array('name' => 'path', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^?]+?', 'modifier' => ''))))), '_resolvers' => array('overview' => array(null), '/docs' => array(null), '/components' => array(null), '/assets' => array(null), 'asset-source' => array(null), 'preview' => array(null), 'render' => array(null), 'component' => array(null), 'component-resource' => array(null), 'page' => array(null)), '_builder' => null, '_views' => array('/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/views'), '_filters' => array(), '_extensions' => array(), '_globals' => array(), '_errorView' => 'pages/error.nunj', '_redirectView' => '__system/redirect.nunj', '_events' => array(), '_eventsCount' => 1), 'server' => array('sync' => false, 'watch' => false, 'port' => null, 'syncOptions' => array('ghostMode' => false, 'watchOptions' => array('ignored' => array('/Users/dennis/Projekte/zplane-licensing/src/**/*.{scss,js,ts}')))), 'builder' => array('dest' => 'web/design-system', 'concurrency' => 10, 'ext' => '.html', 'urls' => array('ext' => '.html', 'relativeToCurrentFolder' => true), 'static' => array('ignored' => array())), 'static' => array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets'), 'assets' => array('mount' => 'assets')))))
(/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/web/View.php:662)
at craft\web\View->renderPageTemplate('@components/1-particles/progressive-blur/progressive-blur.twig', array('_self' => array('id' => 'ed0bfabe88edd9350ffbefed5cb1b486', 'name' => 'default', 'handle' => 'progressive-blur--default', 'label' => 'Default', 'title' => 'Progressive Blur: Default', 'order' => 1, 'isHidden' => true, 'alias' => 'progressive-blur', 'isEntity' => true, 'isVariant' => true, 'baseHandle' => 'progressive-blur', 'notes' => null, 'meta' => array(), 'status' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'display' => array(), 'isDefault' => true, 'viewPath' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/progressive-blur/progressive-blur.twig', 'preview' => '@preview', 'context' => array(), 'resources' => array('assets' => array(array('id' => 'a1f47b13d2d13582e8b54892c0c3ef8f', 'path' => '/Users/dennis/Projekte/zplane-licensing/src/components/1-particles/progressive-blur/progressive-blur.scss', 'relPath' => '1-particles/progressive-blur/progressive-blur.scss', 'base' => 'progressive-blur.scss', 'handle' => 'progressive-blur-scss', 'name' => 'progressive-blur.scss', 'ext' => '.scss', 'lang' => 'SCSS', 'mime' => 'text/x-scss', 'editorMode' => 'scss', 'editorScope' => 'source.scss', 'githubColor' => '#000', 'isBinary' => false, 'isFile' => true, 'isImage' => false, 'isAsset' => true, 'srcPath' => 'components/1-particles/progressive-blur/progressive-blur.scss', 'isSCSS' => true))), 'content' => '<div {{ html_attributes({ id: id ?? null, class: html_cva( base: \'progressive-blur\', variants: { direction: { \'block-start\': \'progressive-blur--block-start\', \'block-end\': \'progressive-blur--block-end\', \'inline-start\': \'progressive-blur--inline-start\', \'inline-end\': \'progressive-blur--inline-end\', }, }, ).apply({ direction: direction ?? null, }),}, attrs ?? {}) }}> {% for index in 1..8 %} <div class="progressive-blur__step"></div> {% endfor %}</div>', 'lang' => 'Twig', 'editorMode' => 'twig', 'editorScope' => 'text.html.twig'), '_env' => array('request' => array('headers' => array(), 'query' => array(), 'url' => '/components/preview/progressive-blur', 'segments' => array('components', 'preview', 'progressive-blur'), 'params' => array('handle' => 'progressive-blur'), 'path' => '/components/preview/progressive-blur', 'error' => null, 'errorStatus' => null, 'route' => array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), 'builder' => true, 'server' => false), '_config' => array('version' => '1.5.15', 'env' => 'production', 'project' => array('title' => '@zplane-web/craft-licensing', 'version' => null), 'components' => array('path' => 'src/components', 'label' => 'Components', 'title' => 'Components', 'yield' => 'yield', 'splitter' => '--', 'ext' => '.twig', 'files' => array('preview' => 'preview', 'config' => 'config', 'collator' => 'collator', 'notes' => 'readme'), 'resources' => array('assets' => array('label' => 'Assets', 'match' => array('**/*'))), 'default' => array('preview' => '@preview', 'display' => array(), 'context' => array(), 'tags' => array(), 'meta' => array(), 'status' => 'wip', 'collated' => false, 'prefix' => null), 'statuses' => array('prototype' => array('label' => 'Prototype', 'description' => 'Do not implement.', 'color' => '#FF3333'), 'wip' => array('label' => 'WIP', 'description' => 'Work in progress. Implement with caution.', 'color' => '#FF9233'), 'ready' => array('label' => 'Ready', 'description' => 'Ready to implement.', 'color' => '#29CC29'))), 'docs' => array('path' => null, 'label' => 'documentation', 'title' => 'Documentation', 'markdown' => array('gfm' => true, 'tables' => true, 'breaks' => false, 'pedantic' => false, 'sanitize' => false, 'smartLists' => true, 'smartypants' => true), 'ext' => '.md', 'indexLabel' => 'Overview', 'default' => array('context' => array(), 'status' => null, 'prefix' => null), 'statuses' => array('draft' => array('label' => 'Draft', 'description' => 'Work in progress.', 'color' => '#FF3333'), 'ready' => array('label' => 'Ready', 'description' => 'Ready for referencing.', 'color' => '#29CC29')), 'files' => array('config' => 'config')), 'assets' => array('label' => 'assets', 'title' => 'Assets'), 'cli' => array(), 'web' => array('theme' => array('_config' => array('skin' => array('name' => 'default'), 'navigation' => 'default', 'rtl' => false, 'lang' => 'en', 'styles' => array('/themes/mandelbrot/css/default.css', '/themes/mandelbrot/css/highlight.css'), 'highlightStyles' => 'default', 'scripts' => array('/themes/mandelbrot/js/mandelbrot.js'), 'format' => 'json', 'static' => array('mount' => 'themes/mandelbrot'), 'version' => '1.10.3', 'favicon' => '/themes/mandelbrot/favicon.ico', 'labels' => array('info' => 'Information', 'builtOn' => 'Built on', 'search' => array('label' => 'Search', 'placeholder' => 'Search…', 'clear' => 'Clear search'), 'navigation' => array('back' => 'Back'), 'tree' => array('collapse' => 'Collapse tree'), 'components' => array('handle' => 'Handle', 'tags' => 'Tags', 'variants' => 'Variants', 'context' => array('empty' => 'No context defined.'), 'notes' => array('empty' => 'No notes defined.'), 'preview' => array('label' => 'Preview', 'withLayout' => 'With layout', 'componentOnly' => 'Component only'), 'path' => 'Filesystem Path', 'references' => 'References', 'referenced' => 'Referenced by', 'resources' => array('file' => 'File', 'content' => 'Content', 'previewUnavailable' => 'Previews are currently not available for this file type.', 'url' => 'URL', 'path' => 'Filesystem Path', 'size' => 'Size')), 'panels' => array('html' => 'HTML', 'view' => 'View', 'context' => 'Context', 'resources' => 'Resources', 'info' => 'Info', 'notes' => 'Notes')), 'information' => array(array('type' => 'time', 'label' => 'Built on', 'value' => object(DateTime))), 'panels' => array('html', 'view', 'context', 'resources', 'info', 'notes'), 'nav' => array('search', 'components', 'docs', 'assets', 'information')), '_staticPaths' => array(array('path' => '/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/dist', 'mount' => '/themes/mandelbrot'), array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets')), '_routes' => array(array('overview', array('handle' => 'overview', 'view' => 'pages/doc.nunj', 'path' => '/', 'matcher' => array(), 'keys' => array())), array('/docs', array('redirect' => '/', 'path' => '/docs', 'handle' => '/docs', 'matcher' => array(), 'keys' => array())), array('/components', array('redirect' => '/', 'path' => '/components', 'handle' => '/components', 'matcher' => array(), 'keys' => array())), array('/assets', array('redirect' => '/', 'path' => '/assets', 'handle' => '/assets', 'matcher' => array(), 'keys' => array())), array('asset-source', array('handle' => 'asset-source', 'view' => 'pages/assets.nunj', 'path' => '/assets/:name', 'matcher' => array(), 'keys' => array(array('name' => 'name', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('preview', array('handle' => 'preview', 'view' => 'pages/components/preview.nunj', 'path' => '/components/preview/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('render', array('handle' => 'render', 'view' => 'pages/components/render.nunj', 'path' => '/components/render/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component', array('handle' => 'component', 'view' => 'pages/components/detail.nunj', 'path' => '/components/detail/:handle', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('component-resource', array('handle' => 'component-resource', 'path' => '/components/raw/:handle/:asset', 'matcher' => array(), 'keys' => array(array('name' => 'handle', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => ''), array('name' => 'asset', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^\\/#\\?]+?', 'modifier' => '')))), array('page', array('handle' => 'page', 'view' => 'pages/doc.nunj', 'path' => '/docs/:path([^?]+?)', 'matcher' => array(), 'keys' => array(array('name' => 'path', 'prefix' => '/', 'suffix' => '', 'pattern' => '[^?]+?', 'modifier' => ''))))), '_resolvers' => array('overview' => array(null), '/docs' => array(null), '/components' => array(null), '/assets' => array(null), 'asset-source' => array(null), 'preview' => array(null), 'render' => array(null), 'component' => array(null), 'component-resource' => array(null), 'page' => array(null)), '_builder' => null, '_views' => array('/Users/dennis/Projekte/zplane-licensing/node_modules/@frctl/mandelbrot/views'), '_filters' => array(), '_extensions' => array(), '_globals' => array(), '_errorView' => 'pages/error.nunj', '_redirectView' => '__system/redirect.nunj', '_events' => array(), '_eventsCount' => 1), 'server' => array('sync' => false, 'watch' => false, 'port' => null, 'syncOptions' => array('ghostMode' => false, 'watchOptions' => array('ignored' => array('/Users/dennis/Projekte/zplane-licensing/src/**/*.{scss,js,ts}')))), 'builder' => array('dest' => 'web/design-system', 'concurrency' => 10, 'ext' => '.html', 'urls' => array('ext' => '.html', 'relativeToCurrentFolder' => true), 'static' => array('ignored' => array())), 'static' => array('path' => '/Users/dennis/Projekte/zplane-licensing/web/assets', 'mount' => 'assets'), 'assets' => array('mount' => 'assets')))), 'site')
(/Users/dennis/Projekte/zplane-licensing/src/module/Console/Controller/ComponentController.php:42)
at ZplaneLicensing\Console\Controller\ComponentController->actionRender('1-particles/progressive-blur/progressive-blur.twig')
at call_user_func_array(array(object(ComponentController), 'actionRender'), array('1-particles/progressive-blur/progressive-blur.twig'))
(/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/base/InlineAction.php:66)
at yii\base\InlineAction->runWithParams(array('1-particles/progressive-blur/progressive-blur.twig'))
(/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/base/Controller.php:197)
at yii\base\Controller->runAction('render', array('1-particles/progressive-blur/progressive-blur.twig'))
(/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/console/Controller.php:186)
at yii\console\Controller->runAction('render', array('1-particles/progressive-blur/progressive-blur.twig'))
(/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/console/ControllerTrait.php:88)
at craft\console\Controller->traitRunAction('render', array('1-particles/progressive-blur/progressive-blur.twig'))
(/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/console/Controller.php:217)
at craft\console\Controller->runAction('render', array('1-particles/progressive-blur/progressive-blur.twig'))
(/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/base/Module.php:554)
at yii\base\Module->runAction('zplane-licensing/component/render', array('1-particles/progressive-blur/progressive-blur.twig'))
(/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/console/Application.php:183)
at yii\console\Application->runAction('zplane-licensing/component/render', array('1-particles/progressive-blur/progressive-blur.twig'))
(/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/console/Application.php:91)
at craft\console\Application->runAction('zplane-licensing/component/render', array('1-particles/progressive-blur/progressive-blur.twig'))
(/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/console/Application.php:150)
at yii\console\Application->handleRequest(object(Request))
(/Users/dennis/Projekte/zplane-licensing/vendor/craftcms/cms/src/console/Application.php:122)
at craft\console\Application->handleRequest(object(Request))
(/Users/dennis/Projekte/zplane-licensing/vendor/yiisoft/yii2/base/Application.php:391)
at yii\base\Application->run()
(/Users/dennis/Projekte/zplane-licensing/craft:15)
|