Thanks to visit codestin.com
Credit goes to github.com

Skip to content

v2.5.3

Choose a tag to compare

@ivanvoitovych ivanvoitovych released this 26 Jan 12:49
· 64 commits to v2 since this release

v2.5.3

Class to work with session storage on client-side

class BrowserSession
{
    public function getItem(string $key): ?string;
    public function setItem(string $key, string $value);
    public function removeItem(string $key);
    public function clear();
}

Override component implementation and template with another one. Use to replace package's components.

Example: BoxHeader will override BoxLayoutHeader. Instead of BoxLayoutHeader, BoxHeader will be rendered.

#[OverrideComponent(BoxLayoutHeader::class)]
class BoxHeader extends BaseComponent {}

Full Changelog: v2.5.2...v2.5.3