Skip to content

Releases: sciux-kit/laplace

Version 0.0.1 - beta.1

14 Jun 16:53

Choose a tag to compare

Sciux Laplace Version 0.0.1 - Beta.1

Version 0.0.1 - alpha.11

12 Jun 06:48

Choose a tag to compare

Sciux Laplace Version 0.0.1 - Alpha.11

Features

  • Support variable animation, for example:
<let :x="1"/>
<!-- Let `x` to 100 in 1000ms -->
<block #animate="x(100),1000">{{ x }}</block>
<!-- Let `x` from 20 to 100 in 1000ms -->
<block #animate="x(20,100),1000">{{ x }}</block>
  • Auto-convert the snake-case into camel-case, now you can write snake-case as attributes name or easing function name:
<let :current-id="2"/> <!-- Will be auto-convert to `currentId` -->
<block #animate="currentId(10),1000,easing-in-out">{{ x }}</block> <!-- `easing-in-out` will refer to `easingInOut` -->

Bug fixes

  • Fix the error threw from observer when some specific page mounted, now you need to launch the observer with observe function.

Version 0.0.1 - alpha.8

02 Jun 08:43

Choose a tag to compare

Sciux Laplace (Ver. 0.0.1 - Alpha.8)

Features

  • Animation parameters
  • Text-mode setting of components

Bug Fixes

  • Context items was readonly, which arose change the reactive value of context items failed in some components.

Version 0.0.1 - alpha.7

01 Jun 06:22

Choose a tag to compare

Sciux Laplace (Ver. 0.0.1 - Alpha.7)

Features

  • XPath selector and related operations
  • Defaults value of component attributes
  • Built-in for/if/else/elif/animate flows
  • Basic Animation System

Bug Fixes

  • Post flow was not working

Version 0.0.1 - alpha.3

19 May 08:29

Choose a tag to compare

Sciux Laplace

version 0.0.1-alpha.3

  • <let> built-in components
  • re-export @vue/reactivity in package
  • event syntax

Version 0.0.1 - alpha.2

17 May 12:01

Choose a tag to compare

Sciux Laplace

The second alpha version we bring laplace with more friendly apis. Now for statement has been a builtin flow.

Version 0.0.1 - alpha.1

17 May 06:30

Choose a tag to compare

Sciux Laplace

This is the first experimental version of sciux renderer - we give it a name called 'Laplace' which is a mathematician.

The plan taken in of this version are merely not implement, but it has the basic reactive system and syntax parser.

Laplace IS ONLY a renderer without any other components, please visit https://github.com/sciux-kit/lib to seek the components.