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

Skip to content

Releases: viewi/viewi

v2.6.7

11 Oct 10:12

Choose a tag to compare

v2.6.6

27 Sep 08:16

Choose a tag to compare

v2.6.5

18 Aug 10:45

Choose a tag to compare

v2.6.4

15 May 14:51

Choose a tag to compare

v2.6.3

15 May 14:09

Choose a tag to compare

v2.6.2

24 Mar 09:08

Choose a tag to compare

v2.6.2

This is a fix release.

Full Changelog: v2.6.1...v2.6.2

v2.6.1

01 Mar 13:58

Choose a tag to compare

v2.6.1

  • Added friendly errors output int the terminal during the build
  • Build time expressions support:

Executes the code during the build time and injects it as raw HTML content in the place

Syntax:

<div>{# file_get_contents('my-file') #}</div>

Full Changelog: v2.6.0...v2.6.1

v2.6.0

06 Feb 08:05

Choose a tag to compare

v2.6.0

Full Changelog: v2.5.3...v2.6.0

v2.5.3

26 Jan 12:49

Choose a tag to compare

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

v2.5.2

14 Jan 17:13

Choose a tag to compare

v2.5.2

  • Extended packages functionality
  • Refactoring
  • Minor rendering fixes for attributes

Full Changelog: v2.5.1...v2.5.2