chore(release): release Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
4.6 KiB
@bbob/vue3
4.0.2
Patch Changes
-
#238
7f931eeThanks @rda-wimi! - fix(#237): Ensure types definitions presence in published packages -
Updated dependencies [
7f931ee]:- @bbob/core@4.0.2
- @bbob/html@4.0.2
4.0.1
Patch Changes
-
dd7696cThanks @JiLiZART! - Fixes problem where@bbob/html@4.0.0depends on@bbob/core@3.0.2instead of^4.0.0 -
Updated dependencies [
dd7696c]:- @bbob/core@4.0.1
- @bbob/html@4.0.1
- @bbob/plugin-helper@4.0.1
- @bbob/types@4.0.1
4.0.0
Major Changes
Minor Changes
-
#233
270f564Thanks @JiLiZART! - ** BREAKING CHANGE **TagNode.createmethod now by default passnullto content instead of empty array[]// new behavior TagNode.create("img").toString(); // -> [img] // old behavior TagNode.create("img", {}, []).toString(); // -> [img][/img]Migrate all calls of
TagNode.create('test-tag')to `TagNode.create('test-tag', {}, []) -
#199
3575982Thanks @JiLiZART! - All build processes and CI actions now using PNPM as default Package Manager
Patch Changes
- Updated dependencies [
270f564,8797f7f,3575982]:- @bbob/plugin-helper@4.0.0
- @bbob/core@4.0.0
- @bbob/html@4.0.0
3.0.2
Patch Changes
-
#191
0c78831Thanks @JiLiZART! - Now HTML5 Preset supportscolortag[color="red"]Red Text[/color]Also fixes bug with case insensitive tags in
onlyAllowTagsNow you can pash1andH1and they will be treated as same tags -
Updated dependencies [
0c78831]:- @bbob/core@3.0.2
- @bbob/html@3.0.2
- @bbob/plugin-helper@3.0.2
3.0.1
Patch Changes
-
#186
603c3eaThanks @JiLiZART! - Fixes bug where nested tagquotelost[color=red]test[/color] [quote]xxxsdfasdf sdfasdfasdf [url=xxx]xxx[/url]Now content not will be lost, but not closed tag will displayed as raw text
3.0.0
Major Changes
-
#182
49065d2Thanks @JiLiZART! - # Vue3 supportNow you can use
@bbobparser invue3Example usage
npm i @bbob/vue3 @bbob/preset-vueimport { defineComponent } from "vue"; import VueBbob from "@bbob/vue3"; Vue.use(VueBbob);<template> <div class="vue3"> <h2>Generated vue3 here</h2> <bbob-bbcode container="div" :plugins="plugins">{{ bbcode }}</bbob-bbcode> </div> </template> <script> import { defineComponent } from "vue"; import preset from "@bbob/preset-vue"; export default defineComponent({ name: "App", data() { return { bbcode: "Text [b]bolded[/b] and [i]Some Name[/i]", plugins: [preset()], }; }, }); </script>
Patch Changes
- Updated dependencies [
49065d2]:- @bbob/core@3.0.0
- @bbob/html@3.0.0
- @bbob/plugin-helper@3.0.0