Skip to content

Releases: OsmiCSX/osmicsx

Update Minor v0.2.0

28 Mar 04:04
36e63b1
Compare
Choose a tag to compare

Changelog

Fix Minor Bugs

Some bugs in Border Style has been fixed.

Refactor Flex Direction Namespace

Here's the new namespace for the flex direction:

  • row
  • row-reverse
  • col
  • col-reverse

Add more border style

In the previous version, border style only have 4 kind. Now we expand more styling for the border style

Update Official Documentation

Official documentation of OsmiCSX has been updated and can be access on https://osmicsx.github.io/docs

Update Patch v0.1.3

27 Mar 19:37
81c4427
Compare
Choose a tag to compare

Changelog

  • Fix Text Alignment bug
  • Update custom style method
  • Add new helper method family

family() helper

family() is a custom fontFamily style helper. You just need to put the font name from your project
Example:

apply([
    "text-white",
    "text-lg",
    family("Roboto-Medium")
])

Update Custom Style Method

Now for custom style you just need put an object in the apply() array instead of second params.
Example:

apply([
    "flex",
    "p-5",
    "rounded-lg",
    { backgroundColor: "red" } // custom style
])

Critical Minor Patch v0.1.2

27 Mar 12:54
4cdc0fa
Compare
Choose a tag to compare

Changelog

  • Update typo

Minor Patch v0.1.1

27 Mar 12:48
4e8007f
Compare
Choose a tag to compare

Changelog

  • Refactoring Colors Name
  • Add Scaling Lib

Initial Release v0.1.0

27 Mar 11:17
a64e058
Compare
Choose a tag to compare

This is the initial release for OsmiCSX. We still develop more features and working on the documentation