v0.4.6
pattern attribute from z-input-pin — triggered native browser validation UI instead of custom handling.v0.4.5
Welcome to 0build.
Rebranding… again
We have outgrown our own skin! Franken UI and Frankenstyle no longer reflect what this project does, as it now has its own ecosystem. Frankenstyle should have been the final name, but right after its release, npm suffered another major attack (Team PCP). Hence:
Cutting off NPM
We’re moving away from npm and becoming 100% CDN-based — hence the new name. For the last few months, Microsoft has kept changing the goalposts, forcing mandatory 2FA and expiring tokens. Publishing is no longer as simple as running npm publish. It’s a nightmare for a solo maintainer.
GitHub… again
We tried to distance ourselves from Microsoft’s claws by moving to Codeberg. However, we learned that we can still publish directly to jsdelivr using GitHub. So, we’re going back.
Clean Break
We will leave the old repositories and websites as they are, with the exception of redirecting https://franken.style to the new home at https://038.0build.dev.
You are not forced to update. FrankenstyleKit will continue to work! However, upgrading from v0.3.8 is fully possible if you are not relying on Tailwind CSS for your utility classes. Here’s how to migrate:
uk-* with z-*dropdown: w-full with dropdown: z-dropdown w-fullUIkit with zUIkitFS with zRuntimeLucide with zLucideApexCharts with zApexChartsBecause UIkit follows a different update cycle, it has been moved out of the core.iife.js and now has its own binary—please include it somewhere in your HTML document.
<script src="https://cdn.jsdelivr.net/gh/0builddotdev/[email protected]/dist/js/uikit.min.js"></script>Remove drop="" option from z-select and z-input-date components. They will not work anymore. You can manually add z-dropdown class as stated above.
Because of changes in dropdown mechanics, a minor bug created a z-index issue. To fix this, you can either create a custom class with a z-index and apply it to the dropdown part via cls="dropdown: custom-class", or you can set it using the stl attribute like so: stl="dropdown: z-index\: 1020". Here’s the correct implementation:
<z-select
cls="button: z-input-fake justify-between w-full; dropdown: z-dropdown w-full"
stl="dropdown: z-index\: 1020"
>
<!-- ... -->
</z-select>The same treatment for your z-input-date components:
<z-input-date
cls="z-input-fake justify-between"
stl="dropdown: z-index\: 1020"
></z-input-date>The uk-command component is also remove. It will be replace with a better component in the future release.