From ba3803ab8c6646d55ea83576240c355d631c776b Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Mon, 13 May 2024 12:03:42 +0100 Subject: [PATCH] Add updates to vue roadmap --- .../102-ecosystem/101-forms/100-formkit.md | 8 + .../101-forms/100-vue-formulate.md | 8 - .../102-ecosystem/103-ssg/100-gridsome.md | 8 - .../102-ecosystem/103-ssg/100-vitepress.md | 7 + .../102-ecosystem/103-ssg/101-vuepress.md | 9 - .../102-ecosystem/106-api-calls/103-fetch.md | 9 + .../106-api-calls/103-unfetch.md | 7 - .../106-api-calls/104-superagent.md | 8 - .../106-api-calls/104-tanstack-query.md | 7 + .../vue/content/102-ecosystem/113-vueuse.md | 8 + src/data/roadmaps/vue/vue.json | 1374 ++++++++--------- 11 files changed, 687 insertions(+), 766 deletions(-) create mode 100644 src/data/roadmaps/vue/content/102-ecosystem/101-forms/100-formkit.md delete mode 100644 src/data/roadmaps/vue/content/102-ecosystem/101-forms/100-vue-formulate.md delete mode 100644 src/data/roadmaps/vue/content/102-ecosystem/103-ssg/100-gridsome.md create mode 100644 src/data/roadmaps/vue/content/102-ecosystem/103-ssg/100-vitepress.md delete mode 100644 src/data/roadmaps/vue/content/102-ecosystem/103-ssg/101-vuepress.md create mode 100644 src/data/roadmaps/vue/content/102-ecosystem/106-api-calls/103-fetch.md delete mode 100644 src/data/roadmaps/vue/content/102-ecosystem/106-api-calls/103-unfetch.md delete mode 100644 src/data/roadmaps/vue/content/102-ecosystem/106-api-calls/104-superagent.md create mode 100644 src/data/roadmaps/vue/content/102-ecosystem/106-api-calls/104-tanstack-query.md create mode 100644 src/data/roadmaps/vue/content/102-ecosystem/113-vueuse.md diff --git a/src/data/roadmaps/vue/content/102-ecosystem/101-forms/100-formkit.md b/src/data/roadmaps/vue/content/102-ecosystem/101-forms/100-formkit.md new file mode 100644 index 000000000..a59470d98 --- /dev/null +++ b/src/data/roadmaps/vue/content/102-ecosystem/101-forms/100-formkit.md @@ -0,0 +1,8 @@ +# Formkit + +FormKit helps build forms faster by simplifying form structure, generation, validation, theming, submission, error handling, and more. + +Visit the following resources to learn more: + +- [Formkit Documentation](https://formkit.dev/) + diff --git a/src/data/roadmaps/vue/content/102-ecosystem/101-forms/100-vue-formulate.md b/src/data/roadmaps/vue/content/102-ecosystem/101-forms/100-vue-formulate.md deleted file mode 100644 index 052f95136..000000000 --- a/src/data/roadmaps/vue/content/102-ecosystem/101-forms/100-vue-formulate.md +++ /dev/null @@ -1,8 +0,0 @@ -# Vue formulate - -Vue formulate's built-in validation, error handling, grouped & repeatable fields, form generation, and more — make complex form creation a breeze. - -Visit the following resources to learn more: - -- [Official Website: Vue Formulate](https://vueformulate.com/) -- [wearebraid/vue-formulate](https://github.com/wearebraid/vue-formulate) diff --git a/src/data/roadmaps/vue/content/102-ecosystem/103-ssg/100-gridsome.md b/src/data/roadmaps/vue/content/102-ecosystem/103-ssg/100-gridsome.md deleted file mode 100644 index 35723af6f..000000000 --- a/src/data/roadmaps/vue/content/102-ecosystem/103-ssg/100-gridsome.md +++ /dev/null @@ -1,8 +0,0 @@ -# Gridsome - -Gridsome is a Vue.js powered Jamstack framework for building static generated websites & apps that are fast by default. - -Visit the following resources to learn more: - -- [Gridsome Website](https://gridsome.org/) -- [Gridsome Documentation](https://gridsome.org/docs/) diff --git a/src/data/roadmaps/vue/content/102-ecosystem/103-ssg/100-vitepress.md b/src/data/roadmaps/vue/content/102-ecosystem/103-ssg/100-vitepress.md new file mode 100644 index 000000000..cb15cbfd9 --- /dev/null +++ b/src/data/roadmaps/vue/content/102-ecosystem/103-ssg/100-vitepress.md @@ -0,0 +1,7 @@ +# Vitepress + +Vitepress is a static site generator that is built on top of Vite. It is a lightweight and fast static site generator that is designed to work with Vue 3. Vitepress is a great choice for building documentation sites, blogs, and other static sites. + +Visit the following resources to learn more: + +- [https://vitepress.dev/) \ No newline at end of file diff --git a/src/data/roadmaps/vue/content/102-ecosystem/103-ssg/101-vuepress.md b/src/data/roadmaps/vue/content/102-ecosystem/103-ssg/101-vuepress.md deleted file mode 100644 index 95f748712..000000000 --- a/src/data/roadmaps/vue/content/102-ecosystem/103-ssg/101-vuepress.md +++ /dev/null @@ -1,9 +0,0 @@ -# Vuepress - -VuePress is composed of two parts: a minimalistic static site generator (opens new window)with a Vue-powered theming system and Plugin API, and a default theme optimized for writing technical documentation. It was created to support the documentation needs of Vue’s own sub projects. - -Visit the following resources to learn more: - -- [Official Website](https://vuepress.vuejs.org/) -- [Official Docs for Getting Started](https://vuepress.vuejs.org/guide/getting-started.html) -- [Introduction to VuePress](https://www.youtube.com/watch?v=lIv1ItUzktc) diff --git a/src/data/roadmaps/vue/content/102-ecosystem/106-api-calls/103-fetch.md b/src/data/roadmaps/vue/content/102-ecosystem/106-api-calls/103-fetch.md new file mode 100644 index 000000000..e87189e09 --- /dev/null +++ b/src/data/roadmaps/vue/content/102-ecosystem/106-api-calls/103-fetch.md @@ -0,0 +1,9 @@ +# Fetch + +The fetch() method in JavaScript is used to request to the server and load the information on the webpages. The request can be of any APIs that return the data of the format JSON or XML. This method returns a promise. + +Visit the following resources to learn more: + +- [Fetch MDN Docs](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch) +- [Fetch W3school Docs](https://www.w3schools.com/jsref/api_fetch.asp) +- [Network request - Fetch](https://javascript.info/fetch) diff --git a/src/data/roadmaps/vue/content/102-ecosystem/106-api-calls/103-unfetch.md b/src/data/roadmaps/vue/content/102-ecosystem/106-api-calls/103-unfetch.md deleted file mode 100644 index fea541e34..000000000 --- a/src/data/roadmaps/vue/content/102-ecosystem/106-api-calls/103-unfetch.md +++ /dev/null @@ -1,7 +0,0 @@ -# Unfetch - -Unfetch is the bare minimum 500b [fetch](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) polyfill. - -Visit the following resources to learn more: - -- [Official GitHub Repository](https://github.com/developit/unfetch) diff --git a/src/data/roadmaps/vue/content/102-ecosystem/106-api-calls/104-superagent.md b/src/data/roadmaps/vue/content/102-ecosystem/106-api-calls/104-superagent.md deleted file mode 100644 index 46df3fed7..000000000 --- a/src/data/roadmaps/vue/content/102-ecosystem/106-api-calls/104-superagent.md +++ /dev/null @@ -1,8 +0,0 @@ -# Superagent - -Small progressive client-side HTTP request library, and Node.js module with the same API, supporting many high-level HTTP client features - -Visit the following resources to learn more: - -- [Official Website](https://visionmedia.github.io/superagent/) -- [GitHub Repository](https://github.com/visionmedia/superagent) diff --git a/src/data/roadmaps/vue/content/102-ecosystem/106-api-calls/104-tanstack-query.md b/src/data/roadmaps/vue/content/102-ecosystem/106-api-calls/104-tanstack-query.md new file mode 100644 index 000000000..c023072e1 --- /dev/null +++ b/src/data/roadmaps/vue/content/102-ecosystem/106-api-calls/104-tanstack-query.md @@ -0,0 +1,7 @@ +# TanStack Query + +TanStack Query is a data fetching and caching library for Vue.js and React. It is a part of the TanStack ecosystem. + +Visit the following resources to learn more: + +- [Official Website](https://tanstack.com/query) \ No newline at end of file diff --git a/src/data/roadmaps/vue/content/102-ecosystem/113-vueuse.md b/src/data/roadmaps/vue/content/102-ecosystem/113-vueuse.md new file mode 100644 index 000000000..7ac3e02ab --- /dev/null +++ b/src/data/roadmaps/vue/content/102-ecosystem/113-vueuse.md @@ -0,0 +1,8 @@ +# VueUse + +VueUse is a collection of utility functions based on Composition API. It has over 200+ functions, is tree-shakable, has first-class TypeScript support, and has a small bundle size. VueUse is a great choice for adding common utilities to your Vue 3 projects. + +Visit the following resources to learn more: + +- [Official Website - VueUse](https://vueuse.org/) + diff --git a/src/data/roadmaps/vue/vue.json b/src/data/roadmaps/vue/vue.json index 7e206a18a..41273b418 100644 --- a/src/data/roadmaps/vue/vue.json +++ b/src/data/roadmaps/vue/vue.json @@ -3,15 +3,15 @@ "controls": { "control": [ { - "ID": "3235", + "ID": "4687", "typeID": "Arrow", - "zOrder": "0", + "zOrder": "1", "w": "68", "h": "186", "measuredW": "150", "measuredH": "100", - "x": "634", - "y": "746", + "x": "644", + "y": "756", "properties": { "color": "2848996", "curvature": "0", @@ -34,15 +34,15 @@ } }, { - "ID": "3236", + "ID": "4688", "typeID": "Arrow", - "zOrder": "1", + "zOrder": "2", "w": "43", "h": "129", "measuredW": "150", "measuredH": "100", - "x": "646", - "y": "752", + "x": "656", + "y": "762", "properties": { "color": "2848996", "curvature": "0", @@ -65,15 +65,15 @@ } }, { - "ID": "3237", + "ID": "4689", "typeID": "Arrow", - "zOrder": "2", + "zOrder": "3", "w": "78", "h": "51", "measuredW": "150", "measuredH": "100", - "x": "371", - "y": "1234", + "x": "381", + "y": "1244", "properties": { "color": "2848996", "curvature": "1", @@ -96,15 +96,15 @@ } }, { - "ID": "3238", + "ID": "4690", "typeID": "Arrow", - "zOrder": "3", + "zOrder": "4", "w": "160", "h": "6", "measuredW": "150", "measuredH": "100", - "x": "851", - "y": "1212", + "x": "861", + "y": "1222", "properties": { "color": "2848996", "curvature": "-1", @@ -127,15 +127,15 @@ } }, { - "ID": "3239", + "ID": "4691", "typeID": "Arrow", - "zOrder": "4", + "zOrder": "5", "w": "86", "h": "3", "measuredW": "150", "measuredH": "100", - "x": "350", - "y": "1469", + "x": "360", + "y": "1479", "properties": { "color": "2848996", "curvature": "1", @@ -158,15 +158,15 @@ } }, { - "ID": "3240", + "ID": "4692", "typeID": "Arrow", - "zOrder": "5", + "zOrder": "6", "w": "71", "h": "253", "measuredW": "150", "measuredH": "100", - "x": "619", - "y": "1217", + "x": "629", + "y": "1227", "properties": { "color": "2848996", "curvature": "-1", @@ -189,15 +189,15 @@ } }, { - "ID": "3241", + "ID": "4693", "typeID": "Arrow", - "zOrder": "6", + "zOrder": "7", "w": "76", "h": "3", "measuredW": "150", "measuredH": "100", - "x": "347", - "y": "1539", + "x": "357", + "y": "1549", "properties": { "color": "2848996", "curvature": "1", @@ -220,15 +220,15 @@ } }, { - "ID": "3242", + "ID": "4694", "typeID": "Arrow", - "zOrder": "7", + "zOrder": "8", "w": "117", "h": "389", "measuredW": "150", "measuredH": "100", - "x": "614", - "y": "1219", + "x": "624", + "y": "1229", "properties": { "color": "2848996", "curvature": "-1", @@ -251,15 +251,15 @@ } }, { - "ID": "3243", + "ID": "4695", "typeID": "Arrow", - "zOrder": "8", + "zOrder": "9", "w": "58", "h": "115", "measuredW": "150", "measuredH": "100", - "x": "525", - "y": "1227", + "x": "535", + "y": "1237", "properties": { "color": "2848996", "curvature": "1", @@ -282,15 +282,15 @@ } }, { - "ID": "3244", + "ID": "4696", "typeID": "Arrow", - "zOrder": "9", + "zOrder": "10", "w": "81", "h": "49", "measuredW": "150", "measuredH": "100", - "x": "365", - "y": "1293", + "x": "375", + "y": "1303", "properties": { "color": "2848996", "curvature": "1", @@ -313,46 +313,15 @@ } }, { - "ID": "3245", - "typeID": "Arrow", - "zOrder": "10", - "w": "91", - "h": "56", - "measuredW": "150", - "measuredH": "100", - "x": "370", - "y": "1341", - "properties": { - "color": "2848996", - "curvature": "-1", - "direction": "bottom", - "leftArrow": "false", - "rightArrow": "false", - "stroke": "dotted", - "p0": { - "x": 91, - "y": -0.5 - }, - "p1": { - "x": 0.6109328221585648, - "y": -0.04544573434706774 - }, - "p2": { - "x": 0, - "y": 55.5 - } - } - }, - { - "ID": "3246", + "ID": "4698", "typeID": "Arrow", "zOrder": "11", "w": "81", "h": "3", "measuredW": "150", "measuredH": "100", - "x": "364", - "y": "1343", + "x": "374", + "y": "1353", "properties": { "color": "2848996", "curvature": "1", @@ -375,15 +344,15 @@ } }, { - "ID": "3247", + "ID": "4699", "typeID": "Arrow", "zOrder": "12", "w": "87", "h": "4", "measuredW": "150", "measuredH": "100", - "x": "363", - "y": "1286", + "x": "373", + "y": "1296", "properties": { "color": "2848996", "curvature": "1", @@ -406,15 +375,15 @@ } }, { - "ID": "3248", + "ID": "4700", "typeID": "Arrow", "zOrder": "13", "w": "78", "h": "4", "measuredW": "150", "measuredH": "100", - "x": "368", - "y": "1126", + "x": "378", + "y": "1136", "properties": { "color": "2848996", "curvature": "1", @@ -437,15 +406,15 @@ } }, { - "ID": "3249", + "ID": "4701", "typeID": "Arrow", "zOrder": "14", "w": "82", "h": "79", "measuredW": "150", "measuredH": "100", - "x": "495", - "y": "1137", + "x": "505", + "y": "1147", "properties": { "color": "2848996", "curvature": "0", @@ -468,15 +437,15 @@ } }, { - "ID": "3250", + "ID": "4702", "typeID": "Arrow", "zOrder": "15", "w": "1", "h": "78", "measuredW": "150", "measuredH": "100", - "x": "640", - "y": "1137", + "x": "650", + "y": "1147", "properties": { "color": "2848996", "curvature": "0", @@ -499,46 +468,15 @@ } }, { - "ID": "3251", + "ID": "4704", "typeID": "Arrow", "zOrder": "16", - "w": "1", - "h": "55", - "measuredW": "150", - "measuredH": "100", - "x": "640", - "y": "1070", - "properties": { - "color": "2848996", - "curvature": "0", - "direction": "bottom", - "leftArrow": "false", - "rightArrow": "false", - "stroke": "dotted", - "p0": { - "x": 0, - "y": 55 - }, - "p1": { - "x": 0.6380090497737557, - "y": -0.0018099547511312255 - }, - "p2": { - "x": 0, - "y": 0 - } - } - }, - { - "ID": "3252", - "typeID": "Arrow", - "zOrder": "17", "w": "84", "h": "168", "measuredW": "150", "measuredH": "100", - "x": "597", - "y": "440", + "x": "607", + "y": "450", "properties": { "color": "2848996", "curvature": "-1", @@ -561,15 +499,15 @@ } }, { - "ID": "3253", + "ID": "4705", "typeID": "Arrow", - "zOrder": "18", + "zOrder": "17", "w": "176", "h": "277", "measuredW": "150", "measuredH": "100", - "x": "822", - "y": "749", + "x": "832", + "y": "759", "properties": { "color": "2848996", "curvature": "0", @@ -592,15 +530,15 @@ } }, { - "ID": "3254", + "ID": "4706", "typeID": "Arrow", - "zOrder": "19", + "zOrder": "18", "w": "162", "h": "202", "measuredW": "150", "measuredH": "100", - "x": "829", - "y": "749", + "x": "839", + "y": "759", "properties": { "color": "2848996", "curvature": "0", @@ -623,15 +561,15 @@ } }, { - "ID": "3255", + "ID": "4707", "typeID": "Arrow", - "zOrder": "20", + "zOrder": "19", "w": "151", "h": "146", "measuredW": "150", "measuredH": "100", - "x": "843", - "y": "751", + "x": "853", + "y": "761", "properties": { "color": "2848996", "curvature": "0", @@ -654,15 +592,15 @@ } }, { - "ID": "3256", + "ID": "4708", "typeID": "Arrow", - "zOrder": "21", + "zOrder": "20", "w": "137", "h": "92", "measuredW": "150", "measuredH": "100", - "x": "855", - "y": "750", + "x": "865", + "y": "760", "properties": { "color": "2848996", "curvature": "0", @@ -685,15 +623,15 @@ } }, { - "ID": "3257", + "ID": "4709", "typeID": "Arrow", - "zOrder": "22", + "zOrder": "21", "w": "136", "h": "46", "measuredW": "150", "measuredH": "100", - "x": "855", - "y": "743", + "x": "865", + "y": "753", "properties": { "color": "2848996", "curvature": "0", @@ -716,15 +654,15 @@ } }, { - "ID": "3258", + "ID": "4710", "typeID": "Arrow", - "zOrder": "23", + "zOrder": "22", "w": "140", "h": "8", "measuredW": "150", "measuredH": "100", - "x": "851", - "y": "730", + "x": "861", + "y": "740", "properties": { "color": "2848996", "curvature": "0", @@ -747,15 +685,15 @@ } }, { - "ID": "3259", + "ID": "4711", "typeID": "Arrow", - "zOrder": "24", + "zOrder": "23", "w": "28", "h": "77", "measuredW": "150", "measuredH": "100", - "x": "640", - "y": "751", + "x": "650", + "y": "761", "properties": { "color": "2848996", "curvature": "0", @@ -778,15 +716,15 @@ } }, { - "ID": "3260", + "ID": "4712", "typeID": "Arrow", - "zOrder": "25", + "zOrder": "24", "w": "222", "h": "1", "measuredW": "150", "measuredH": "100", - "x": "366", - "y": "737", + "x": "376", + "y": "747", "properties": { "color": "2848996", "curvature": "0", @@ -809,15 +747,15 @@ } }, { - "ID": "3261", + "ID": "4713", "typeID": "Arrow", - "zOrder": "26", + "zOrder": "25", "w": "74", "h": "104", "measuredW": "150", "measuredH": "100", - "x": "600", - "y": "443", + "x": "610", + "y": "453", "properties": { "color": "2848996", "curvature": "-1", @@ -840,15 +778,15 @@ } }, { - "ID": "3262", + "ID": "4714", "typeID": "Arrow", - "zOrder": "27", + "zOrder": "26", "w": "102", "h": "305", "measuredW": "150", "measuredH": "100", - "x": "688", - "y": "440", + "x": "698", + "y": "450", "properties": { "color": "2848996", "curvature": "-1", @@ -870,15 +808,15 @@ } }, { - "ID": "3263", + "ID": "4715", "typeID": "Arrow", - "zOrder": "28", + "zOrder": "27", "w": "155", "h": "220", "measuredW": "150", "measuredH": "100", - "x": "881", - "y": "433", + "x": "891", + "y": "443", "properties": { "color": "2848996", "curvature": "-1", @@ -901,15 +839,15 @@ } }, { - "ID": "3264", + "ID": "4716", "typeID": "Arrow", - "zOrder": "29", + "zOrder": "28", "w": "147", "h": "163", "measuredW": "150", "measuredH": "100", - "x": "891", - "y": "442", + "x": "901", + "y": "452", "properties": { "color": "2848996", "curvature": "-1", @@ -932,15 +870,15 @@ } }, { - "ID": "3265", + "ID": "4717", "typeID": "Arrow", - "zOrder": "30", + "zOrder": "29", "w": "142", "h": "113", "measuredW": "150", "measuredH": "100", - "x": "893", - "y": "437", + "x": "903", + "y": "447", "properties": { "color": "2848996", "curvature": "-1", @@ -963,15 +901,15 @@ } }, { - "ID": "3266", + "ID": "4718", "typeID": "Arrow", - "zOrder": "31", + "zOrder": "30", "w": "134", "h": "69", "measuredW": "150", "measuredH": "100", - "x": "902", - "y": "435", + "x": "912", + "y": "445", "properties": { "color": "2848996", "curvature": "-1", @@ -994,15 +932,15 @@ } }, { - "ID": "3267", + "ID": "4719", "typeID": "Arrow", - "zOrder": "32", + "zOrder": "31", "w": "145", "h": "17", "measuredW": "150", "measuredH": "100", - "x": "897", - "y": "432", + "x": "907", + "y": "442", "properties": { "color": "2848996", "curvature": "-1", @@ -1025,15 +963,15 @@ } }, { - "ID": "3268", + "ID": "4720", "typeID": "Arrow", - "zOrder": "33", + "zOrder": "32", "w": "141", "h": "32", "measuredW": "150", "measuredH": "100", - "x": "901", - "y": "392", + "x": "911", + "y": "402", "properties": { "color": "2848996", "curvature": "-1", @@ -1056,15 +994,15 @@ } }, { - "ID": "3269", + "ID": "4721", "typeID": "Arrow", - "zOrder": "34", + "zOrder": "33", "w": "153", "h": "89", "measuredW": "150", "measuredH": "100", - "x": "886", - "y": "337", + "x": "896", + "y": "347", "properties": { "color": "2848996", "curvature": "-1", @@ -1087,15 +1025,15 @@ } }, { - "ID": "3270", + "ID": "4722", "typeID": "Arrow", - "zOrder": "35", + "zOrder": "34", "w": "66", "h": "29", "measuredW": "150", "measuredH": "100", - "x": "387", - "y": "611", + "x": "397", + "y": "621", "properties": { "color": "2848996", "curvature": "1", @@ -1118,15 +1056,15 @@ } }, { - "ID": "3271", + "ID": "4723", "typeID": "Arrow", - "zOrder": "36", + "zOrder": "35", "w": "79", "h": "13", "measuredW": "150", "measuredH": "100", - "x": "375", - "y": "592", + "x": "385", + "y": "602", "properties": { "color": "2848996", "curvature": "1", @@ -1149,15 +1087,15 @@ } }, { - "ID": "3272", + "ID": "4724", "typeID": "Arrow", - "zOrder": "37", + "zOrder": "36", "w": "96", "h": "88", "measuredW": "150", "measuredH": "100", - "x": "403", - "y": "437", + "x": "413", + "y": "447", "properties": { "color": "2848996", "curvature": "1", @@ -1180,15 +1118,15 @@ } }, { - "ID": "3273", + "ID": "4725", "typeID": "Arrow", - "zOrder": "38", + "zOrder": "37", "w": "88", "h": "33", "measuredW": "150", "measuredH": "100", - "x": "406", - "y": "433", + "x": "416", + "y": "443", "properties": { "color": "2848996", "curvature": "1", @@ -1211,15 +1149,15 @@ } }, { - "ID": "3274", + "ID": "4726", "typeID": "Arrow", - "zOrder": "39", + "zOrder": "38", "w": "91", "h": "17", "measuredW": "150", "measuredH": "100", - "x": "405", - "y": "410", + "x": "415", + "y": "420", "properties": { "color": "2848996", "curvature": "1", @@ -1242,15 +1180,15 @@ } }, { - "ID": "3275", + "ID": "4727", "typeID": "Arrow", - "zOrder": "40", + "zOrder": "39", "w": "93", "h": "59", "measuredW": "150", "measuredH": "100", - "x": "409", - "y": "359", + "x": "419", + "y": "369", "properties": { "color": "2848996", "curvature": "1", @@ -1273,15 +1211,15 @@ } }, { - "ID": "3276", + "ID": "4728", "typeID": "Arrow", - "zOrder": "41", + "zOrder": "40", "w": "45", "h": "106", "measuredW": "150", "measuredH": "100", - "x": "705", - "y": "176", + "x": "715", + "y": "186", "properties": { "curvature": "0", "leftArrow": "false", @@ -1302,27 +1240,27 @@ } }, { - "ID": "3277", + "ID": "4729", "typeID": "Label", - "zOrder": "42", + "zOrder": "41", "measuredW": "74", "measuredH": "36", - "x": "750", - "y": "298", + "x": "760", + "y": "308", "properties": { "size": "28", "text": "Vue.js" } }, { - "ID": "3278", + "ID": "4730", "typeID": "Arrow", - "zOrder": "43", + "zOrder": "42", "w": "27", "measuredW": "150", "measuredH": "100", - "x": "728", - "y": "37", + "x": "738", + "y": "47", "properties": { "curvature": "0", "leftArrow": "false", @@ -1344,15 +1282,15 @@ } }, { - "ID": "3279", + "ID": "4731", "typeID": "Arrow", - "zOrder": "44", + "zOrder": "43", "w": "7", "h": "812", "measuredW": "150", "measuredH": "100", - "x": "773", - "y": "1223", + "x": "783", + "y": "1233", "properties": { "color": "2848996", "curvature": "0", @@ -1374,15 +1312,15 @@ } }, { - "ID": "3280", + "ID": "4732", "typeID": "Arrow", - "zOrder": "45", + "zOrder": "44", "w": "185", "h": "260", "measuredW": "150", "measuredH": "100", - "x": "825", - "y": "1216", + "x": "835", + "y": "1226", "properties": { "color": "2848996", "curvature": "-1", @@ -1405,15 +1343,15 @@ } }, { - "ID": "3281", + "ID": "4733", "typeID": "Arrow", - "zOrder": "46", + "zOrder": "45", "w": "74", "h": "47", "measuredW": "150", "measuredH": "100", - "x": "372", - "y": "1076", + "x": "382", + "y": "1086", "properties": { "color": "2848996", "curvature": "1", @@ -1436,15 +1374,15 @@ } }, { - "ID": "3282", + "ID": "4734", "typeID": "Arrow", - "zOrder": "47", + "zOrder": "46", "w": "80", "h": "44", "measuredW": "150", "measuredH": "100", - "x": "367", - "y": "1135", + "x": "377", + "y": "1145", "properties": { "color": "2848996", "curvature": "-1", @@ -1467,15 +1405,15 @@ } }, { - "ID": "3283", + "ID": "4735", "typeID": "Arrow", - "zOrder": "48", + "zOrder": "47", "w": "83", "h": "45", "measuredW": "150", "measuredH": "100", - "x": "353", - "y": "1612", + "x": "363", + "y": "1622", "properties": { "color": "2848996", "curvature": "1", @@ -1498,15 +1436,15 @@ } }, { - "ID": "3284", + "ID": "4736", "typeID": "Arrow", - "zOrder": "49", + "zOrder": "48", "w": "90", "h": "3", "measuredW": "150", "measuredH": "100", - "x": "350", - "y": "1604", + "x": "360", + "y": "1614", "properties": { "color": "2848996", "curvature": "1", @@ -1529,15 +1467,15 @@ } }, { - "ID": "3285", + "ID": "4737", "typeID": "Arrow", - "zOrder": "50", + "zOrder": "49", "w": "82", "h": "197", "measuredW": "150", "measuredH": "100", - "x": "357", - "y": "1614", + "x": "367", + "y": "1624", "properties": { "color": "2848996", "curvature": "-1", @@ -1560,46 +1498,15 @@ } }, { - "ID": "3286", + "ID": "4739", "typeID": "Arrow", - "zOrder": "51", - "w": "96", - "h": "236", - "measuredW": "150", - "measuredH": "100", - "x": "354", - "y": "1623", - "properties": { - "color": "2848996", - "curvature": "1", - "direction": "bottom", - "leftArrow": "false", - "rightArrow": "false", - "stroke": "dotted", - "p0": { - "x": -0.07602655679994541, - "y": 235.75863545440052 - }, - "p1": { - "x": 0.38845024469820544, - "y": -0.12424143556280588 - }, - "p2": { - "x": 95.5, - "y": 0 - } - } - }, - { - "ID": "3287", - "typeID": "Arrow", - "zOrder": "52", + "zOrder": "50", "w": "84", "h": "138", "measuredW": "150", "measuredH": "100", - "x": "357", - "y": "1611", + "x": "367", + "y": "1621", "properties": { "color": "2848996", "curvature": "-1", @@ -1622,15 +1529,15 @@ } }, { - "ID": "3288", + "ID": "4740", "typeID": "Arrow", - "zOrder": "53", + "zOrder": "51", "w": "40", "h": "67", "measuredW": "150", "measuredH": "100", - "x": "534", - "y": "1218", + "x": "544", + "y": "1228", "properties": { "color": "2848996", "curvature": "1", @@ -1653,15 +1560,15 @@ } }, { - "ID": "3289", + "ID": "4741", "typeID": "Arrow", - "zOrder": "54", + "zOrder": "52", "w": "96", "h": "313", "measuredW": "150", "measuredH": "100", - "x": "614", - "y": "1226", + "x": "624", + "y": "1236", "properties": { "color": "2848996", "curvature": "-1", @@ -1684,15 +1591,15 @@ } }, { - "ID": "3290", + "ID": "4742", "typeID": "Arrow", - "zOrder": "55", - "w": "105", - "h": "453", + "zOrder": "53", + "w": "56", + "h": "452", "measuredW": "150", "measuredH": "100", - "x": "723", - "y": "749", + "x": "733", + "y": "759", "properties": { "color": "2848996", "curvature": "1", @@ -1704,25 +1611,25 @@ "y": 0 }, "p1": { - "x": 0.5185682873198143, - "y": 0.16381627168336174 + "x": 0.4900492258899942, + "y": 0.06627091255555864 }, "p2": { - "x": 53.8032559648002, - "y": 453.3589896416004 + "x": 45, + "y": 452 } } }, { - "ID": "3291", + "ID": "4743", "typeID": "Arrow", - "zOrder": "56", + "zOrder": "54", "w": "69", "h": "59", "measuredW": "150", "measuredH": "100", - "x": "601", - "y": "440", + "x": "611", + "y": "450", "properties": { "color": "2848996", "curvature": "-1", @@ -1745,15 +1652,15 @@ } }, { - "ID": "3292", + "ID": "4744", "typeID": "Arrow", - "zOrder": "57", + "zOrder": "55", "w": "25", "h": "70", "measuredW": "150", "measuredH": "100", - "x": "796", - "y": "353", + "x": "806", + "y": "363", "properties": { "color": "2848996", "curvature": "-1", @@ -1775,15 +1682,15 @@ } }, { - "ID": "3293", + "ID": "4745", "typeID": "__group__", - "zOrder": "58", + "zOrder": "56", "measuredW": "350", "measuredH": "141", "w": "350", "h": "141", - "x": "974", - "y": "79", + "x": "984", + "y": "89", "children": { "controls": { "control": [ @@ -1934,15 +1841,15 @@ } }, { - "ID": "3294", + "ID": "4746", "typeID": "Arrow", - "zOrder": "59", + "zOrder": "57", "w": "86", "h": "1", "measuredW": "150", "measuredH": "100", - "x": "587", - "y": "430", + "x": "597", + "y": "440", "properties": { "color": "2848996", "curvature": "0", @@ -1965,15 +1872,15 @@ } }, { - "ID": "3295", + "ID": "4747", "typeID": "Arrow", - "zOrder": "60", + "zOrder": "58", "w": "76", "h": "56", "measuredW": "150", "measuredH": "100", - "x": "595", - "y": "360", + "x": "605", + "y": "370", "properties": { "color": "2848996", "curvature": "-1", @@ -1996,15 +1903,15 @@ } }, { - "ID": "3296", + "ID": "4748", "typeID": "__group__", - "zOrder": "61", + "zOrder": "59", "measuredW": "244", "measuredH": "50", "w": "244", "h": "50", - "x": "664", - "y": "404", + "x": "674", + "y": "414", "properties": { "controlName": "100-fundamental-topics" }, @@ -2043,15 +1950,15 @@ } }, { - "ID": "3297", + "ID": "4749", "typeID": "__group__", - "zOrder": "62", + "zOrder": "60", "measuredW": "132", "measuredH": "44", "w": "132", "h": "44", - "x": "475", - "y": "409", + "x": "485", + "y": "419", "properties": { "controlName": "101-fundamental-topics:components" }, @@ -2091,15 +1998,15 @@ } }, { - "ID": "3298", + "ID": "4750", "typeID": "__group__", - "zOrder": "63", + "zOrder": "61", "measuredW": "216", "measuredH": "44", "w": "216", "h": "44", - "x": "201", - "y": "340", + "x": "211", + "y": "350", "properties": { "controlName": "100-fundamental-topics:components:single-file-components" }, @@ -2138,15 +2045,15 @@ } }, { - "ID": "3299", + "ID": "4751", "typeID": "__group__", - "zOrder": "64", + "zOrder": "62", "measuredW": "216", "measuredH": "44", "w": "216", "h": "44", - "x": "201", - "y": "390", + "x": "211", + "y": "400", "properties": { "controlName": "101-fundamental-topics:components:component-registration" }, @@ -2185,15 +2092,15 @@ } }, { - "ID": "3300", + "ID": "4752", "typeID": "__group__", - "zOrder": "65", + "zOrder": "63", "measuredW": "134", "measuredH": "44", "w": "134", "h": "44", - "x": "473", - "y": "341", + "x": "483", + "y": "351", "properties": { "controlName": "100-fundamental-topics:create-vue" }, @@ -2232,15 +2139,15 @@ } }, { - "ID": "3301", + "ID": "4753", "typeID": "__group__", - "zOrder": "66", + "zOrder": "64", "measuredW": "326", "measuredH": "50", "w": "326", "h": "50", - "x": "566", - "y": "1189", + "x": "576", + "y": "1199", "properties": { "controlName": "102-ecosystem" }, @@ -2279,15 +2186,15 @@ } }, { - "ID": "3302", + "ID": "4754", "typeID": "__group__", - "zOrder": "67", + "zOrder": "65", "measuredW": "108", "measuredH": "44", "w": "108", "h": "44", - "x": "435", - "y": "1106", + "x": "445", + "y": "1116", "properties": { "controlName": "101-ecosystem:forms" }, @@ -2326,17 +2233,17 @@ } }, { - "ID": "3303", + "ID": "4755", "typeID": "__group__", - "zOrder": "68", + "zOrder": "66", "measuredW": "212", "measuredH": "44", "w": "212", "h": "44", - "x": "170", - "y": "1058", + "x": "180", + "y": "1068", "properties": { - "controlName": "100-ecosystem:forms:vue-formulate" + "controlName": "100-ecosystem:forms:formkit" }, "children": { "controls": { @@ -2359,13 +2266,13 @@ "ID": "1", "typeID": "Label", "zOrder": "1", - "measuredW": "112", + "measuredW": "60", "measuredH": "25", - "x": "50", + "x": "76", "y": "9", "properties": { "size": "17", - "text": "Vue Formulate" + "text": "FormKit" } } ] @@ -2373,15 +2280,15 @@ } }, { - "ID": "3304", + "ID": "4756", "typeID": "__group__", - "zOrder": "69", + "zOrder": "67", "measuredW": "211", "measuredH": "44", "w": "211", "h": "44", - "x": "171", - "y": "1108", + "x": "181", + "y": "1118", "properties": { "controlName": "101-ecosystem:forms:vee-validate" }, @@ -2420,15 +2327,15 @@ } }, { - "ID": "3305", + "ID": "4757", "typeID": "__group__", - "zOrder": "70", + "zOrder": "68", "measuredW": "211", "measuredH": "44", "w": "211", "h": "44", - "x": "171", - "y": "1158", + "x": "181", + "y": "1168", "properties": { "controlName": "102-ecosystem:forms:vuelidate" }, @@ -2467,15 +2374,15 @@ } }, { - "ID": "3306", + "ID": "4758", "typeID": "__group__", - "zOrder": "71", + "zOrder": "69", "measuredW": "142", "measuredH": "44", "w": "142", "h": "44", - "x": "570", - "y": "1106", + "x": "580", + "y": "1116", "properties": { "controlName": "100-ecosystem:routing" }, @@ -2491,10 +2398,7 @@ "measuredW": "200", "measuredH": "140", "x": "0", - "y": "0", - "properties": { - "color": "16770457" - } + "y": "0" }, { "ID": "1", @@ -2514,15 +2418,15 @@ } }, { - "ID": "3307", + "ID": "4759", "typeID": "__group__", - "zOrder": "72", + "zOrder": "70", "measuredW": "143", "measuredH": "44", "w": "143", "h": "44", - "x": "569", - "y": "1044", + "x": "579", + "y": "1075", "properties": { "controlName": "100-ecosystem:routing:vue-router" }, @@ -2561,15 +2465,15 @@ } }, { - "ID": "3308", + "ID": "4760", "typeID": "__group__", - "zOrder": "73", + "zOrder": "71", "measuredW": "221", "measuredH": "44", "w": "221", "h": "44", - "x": "411", - "y": "1585", + "x": "421", + "y": "1595", "properties": { "controlName": "106-ecosystem:api-calls" }, @@ -2608,15 +2512,15 @@ } }, { - "ID": "3309", + "ID": "4761", "typeID": "__group__", - "zOrder": "74", - "measuredW": "191", + "zOrder": "72", + "measuredW": "97", "measuredH": "44", - "w": "191", + "w": "97", "h": "44", - "x": "176", - "y": "1729", + "x": "185", + "y": "1739", "properties": { "controlName": "102-ecosystem:api-calls:axios" }, @@ -2627,7 +2531,7 @@ "ID": "0", "typeID": "TextArea", "zOrder": "0", - "w": "191", + "w": "97", "h": "44", "measuredW": "200", "measuredH": "140", @@ -2643,7 +2547,7 @@ "zOrder": "1", "measuredW": "41", "measuredH": "25", - "x": "75", + "x": "28", "y": "10", "properties": { "size": "17", @@ -2655,17 +2559,17 @@ } }, { - "ID": "3310", + "ID": "4762", "typeID": "__group__", - "zOrder": "75", - "measuredW": "189", + "zOrder": "73", + "measuredW": "88", "measuredH": "44", - "w": "189", + "w": "88", "h": "44", - "x": "177", - "y": "1781", + "x": "288", + "y": "1739", "properties": { - "controlName": "103-ecosystem:api-calls:unfetch" + "controlName": "103-ecosystem:api-calls:fetch" }, "children": { "controls": { @@ -2674,7 +2578,7 @@ "ID": "0", "typeID": "TextArea", "zOrder": "0", - "w": "189", + "w": "88", "h": "44", "measuredW": "200", "measuredH": "140", @@ -2688,13 +2592,13 @@ "ID": "1", "typeID": "Label", "zOrder": "1", - "measuredW": "61", + "measuredW": "39", "measuredH": "25", - "x": "64", + "x": "24", "y": "10", "properties": { "size": "17", - "text": "Unfetch" + "text": "fetch" } } ] @@ -2702,17 +2606,17 @@ } }, { - "ID": "3311", + "ID": "4763", "typeID": "__group__", - "zOrder": "76", + "zOrder": "74", "measuredW": "189", "measuredH": "44", "w": "189", "h": "44", - "x": "177", - "y": "1833", + "x": "187", + "y": "1788", "properties": { - "controlName": "104-ecosystem:api-calls:superagent" + "controlName": "104-ecosystem:api-calls:tanstack-query" }, "children": { "controls": { @@ -2735,13 +2639,13 @@ "ID": "1", "typeID": "Label", "zOrder": "1", - "measuredW": "88", + "measuredW": "122", "measuredH": "25", - "x": "51", + "x": "34", "y": "10", "properties": { "size": "17", - "text": "superagent" + "text": "TanStack Query" } } ] @@ -2749,28 +2653,15 @@ } }, { - "ID": "3312", - "typeID": "Label", - "zOrder": "77", - "measuredW": "117", - "measuredH": "25", - "x": "212", - "y": "1884", - "properties": { - "size": "17", - "text": "REST API Calls" - } - }, - { - "ID": "3313", + "ID": "4765", "typeID": "__group__", - "zOrder": "78", + "zOrder": "75", "measuredW": "190", "measuredH": "44", "w": "190", "h": "44", - "x": "175", - "y": "1583", + "x": "185", + "y": "1593", "properties": { "controlName": "100-ecosystem:api-calls:apollo" }, @@ -2809,15 +2700,15 @@ } }, { - "ID": "3314", + "ID": "4766", "typeID": "__group__", - "zOrder": "79", + "zOrder": "76", "measuredW": "188", "measuredH": "44", "w": "188", "h": "44", - "x": "177", - "y": "1633", + "x": "187", + "y": "1643", "properties": { "controlName": "101-ecosystem:api-calls:vue-relay" }, @@ -2856,28 +2747,28 @@ } }, { - "ID": "3315", + "ID": "4767", "typeID": "Label", - "zOrder": "80", + "zOrder": "77", "measuredW": "71", "measuredH": "25", - "x": "235", - "y": "1682", + "x": "245", + "y": "1692", "properties": { "size": "17", "text": "GraphQL" } }, { - "ID": "3316", + "ID": "4768", "typeID": "__group__", - "zOrder": "81", + "zOrder": "78", "measuredW": "219", "measuredH": "44", "w": "219", "h": "44", - "x": "413", - "y": "1519", + "x": "423", + "y": "1529", "properties": { "controlName": "105-ecosystem:mobile-apps" }, @@ -2916,15 +2807,15 @@ } }, { - "ID": "3317", + "ID": "4769", "typeID": "__group__", - "zOrder": "82", + "zOrder": "79", "measuredW": "216", "measuredH": "44", "w": "216", "h": "44", - "x": "412", - "y": "1448", + "x": "422", + "y": "1458", "properties": { "controlName": "104-ecosystem:state-management" }, @@ -2963,15 +2854,15 @@ } }, { - "ID": "3318", + "ID": "4770", "typeID": "__group__", - "zOrder": "83", + "zOrder": "80", "measuredW": "206", "measuredH": "44", "w": "206", "h": "44", - "x": "174", - "y": "1266", + "x": "184", + "y": "1276", "properties": { "controlName": "101-ecosystem:ssr:nuxt-js" }, @@ -3010,17 +2901,17 @@ } }, { - "ID": "3319", + "ID": "4771", "typeID": "__group__", - "zOrder": "84", + "zOrder": "81", "measuredW": "207", "measuredH": "44", "w": "207", "h": "44", - "x": "173", - "y": "1321", + "x": "183", + "y": "1331", "properties": { - "controlName": "100-ecosystem:ssg:gridsome" + "controlName": "100-ecosystem:ssg:vitepress" }, "children": { "controls": { @@ -3043,13 +2934,13 @@ "ID": "1", "typeID": "Label", "zOrder": "1", - "measuredW": "75", + "measuredW": "73", "measuredH": "25", - "x": "66", + "x": "67", "y": "10", "properties": { "size": "17", - "text": "Gridsome" + "text": "Vitepress" } } ] @@ -3057,15 +2948,15 @@ } }, { - "ID": "3320", + "ID": "4772", "typeID": "__group__", - "zOrder": "85", + "zOrder": "82", "measuredW": "576", "measuredH": "105", "w": "576", "h": "105", - "x": "541", - "y": "1827", + "x": "551", + "y": "1837", "properties": { "controlName": "ext_link:roadmap.sh/frontend" }, @@ -3115,15 +3006,15 @@ } }, { - "ID": "3321", + "ID": "4773", "typeID": "__group__", - "zOrder": "86", + "zOrder": "83", "measuredW": "104", "measuredH": "44", "w": "104", "h": "44", - "x": "201", - "y": "441", + "x": "211", + "y": "451", "properties": { "controlName": "102-fundamental-topics:components:props" }, @@ -3162,15 +3053,15 @@ } }, { - "ID": "3322", + "ID": "4774", "typeID": "__group__", - "zOrder": "87", + "zOrder": "84", "measuredW": "104", "measuredH": "44", "w": "104", "h": "44", - "x": "313", - "y": "440", + "x": "323", + "y": "450", "properties": { "controlName": "103-fundamental-topics:components:events" }, @@ -3209,15 +3100,15 @@ } }, { - "ID": "3323", + "ID": "4775", "typeID": "__group__", - "zOrder": "88", + "zOrder": "85", "measuredW": "216", "measuredH": "44", "w": "216", "h": "44", - "x": "201", - "y": "490", + "x": "211", + "y": "500", "properties": { "controlName": "104-fundamental-topics:components:attribute-inheritance" }, @@ -3256,15 +3147,15 @@ } }, { - "ID": "3324", + "ID": "4776", "typeID": "__group__", - "zOrder": "89", + "zOrder": "86", "measuredW": "212", "measuredH": "44", "w": "212", "h": "44", - "x": "1026", - "y": "476", + "x": "1036", + "y": "486", "properties": { "controlName": "108-fundamental-topics:lifecycle-hooks" }, @@ -3303,15 +3194,15 @@ } }, { - "ID": "3325", + "ID": "4777", "typeID": "__group__", - "zOrder": "90", + "zOrder": "87", "measuredW": "212", "measuredH": "44", "w": "212", "h": "44", - "x": "1026", - "y": "626", + "x": "1036", + "y": "636", "properties": { "controlName": "111-fundamental-topics:computed-properties" }, @@ -3350,15 +3241,15 @@ } }, { - "ID": "3326", + "ID": "4778", "typeID": "__group__", - "zOrder": "91", + "zOrder": "88", "measuredW": "163", "measuredH": "44", "w": "163", "h": "44", - "x": "238", - "y": "613", + "x": "248", + "y": "623", "properties": { "controlName": "101-fundamental-topics:api-styles:composition-api" }, @@ -3397,15 +3288,15 @@ } }, { - "ID": "3327", + "ID": "4779", "typeID": "__group__", - "zOrder": "92", + "zOrder": "89", "measuredW": "163", "measuredH": "44", "w": "163", "h": "44", - "x": "238", - "y": "563", + "x": "248", + "y": "573", "properties": { "controlName": "100-fundamental-topics:api-styles:options-api" }, @@ -3444,15 +3335,15 @@ } }, { - "ID": "3328", + "ID": "4780", "typeID": "__group__", - "zOrder": "93", + "zOrder": "90", "measuredW": "212", "measuredH": "44", "w": "212", "h": "44", - "x": "1026", - "y": "323", + "x": "1036", + "y": "333", "properties": { "controlName": "105-fundamental-topics:app-configurations" }, @@ -3491,15 +3382,15 @@ } }, { - "ID": "3329", + "ID": "4781", "typeID": "__group__", - "zOrder": "94", + "zOrder": "91", "measuredW": "212", "measuredH": "44", "w": "212", "h": "44", - "x": "1026", - "y": "426", + "x": "1036", + "y": "436", "properties": { "controlName": "107-fundamental-topics:conditional-rendering" }, @@ -3538,15 +3429,15 @@ } }, { - "ID": "3330", + "ID": "4782", "typeID": "__group__", - "zOrder": "95", + "zOrder": "92", "measuredW": "179", "measuredH": "44", "w": "179", "h": "44", - "x": "430", - "y": "587", + "x": "440", + "y": "597", "properties": { "controlName": "104-fundamental-topics:api-styles" }, @@ -3585,15 +3476,15 @@ } }, { - "ID": "3331", + "ID": "4783", "typeID": "__group__", - "zOrder": "96", + "zOrder": "93", "measuredW": "212", "measuredH": "44", "w": "212", "h": "44", - "x": "1026", - "y": "375", + "x": "1036", + "y": "385", "properties": { "controlName": "106-fundamental-topics:rendering-lists" }, @@ -3632,15 +3523,15 @@ } }, { - "ID": "3332", + "ID": "4784", "typeID": "__group__", - "zOrder": "97", + "zOrder": "94", "measuredW": "212", "measuredH": "44", "w": "212", "h": "44", - "x": "1026", - "y": "526", + "x": "1036", + "y": "536", "properties": { "controlName": "109-fundamental-topics:forms-handling" }, @@ -3679,15 +3570,15 @@ } }, { - "ID": "3333", + "ID": "4785", "typeID": "__group__", - "zOrder": "98", + "zOrder": "95", "measuredW": "212", "measuredH": "44", "w": "212", "h": "44", - "x": "1026", - "y": "576", + "x": "1036", + "y": "586", "properties": { "controlName": "110-fundamental-topics:events-handling" }, @@ -3726,15 +3617,15 @@ } }, { - "ID": "3334", + "ID": "4786", "typeID": "__group__", - "zOrder": "99", + "zOrder": "96", "measuredW": "299", "measuredH": "50", "w": "299", "h": "50", - "x": "566", - "y": "715", + "x": "576", + "y": "725", "properties": { "controlName": "101-advanced-topics" }, @@ -3773,15 +3664,15 @@ } }, { - "ID": "3335", + "ID": "4787", "typeID": "__group__", - "zOrder": "100", + "zOrder": "97", "measuredW": "134", "measuredH": "44", "w": "134", "h": "44", - "x": "475", - "y": "472", + "x": "485", + "y": "482", "properties": { "controlName": "102-fundamental-topics:templates" }, @@ -3820,15 +3711,15 @@ } }, { - "ID": "3336", + "ID": "4788", "typeID": "__group__", - "zOrder": "101", + "zOrder": "98", "measuredW": "134", "measuredH": "44", "w": "134", "h": "44", - "x": "475", - "y": "526", + "x": "485", + "y": "536", "properties": { "controlName": "103-fundamental-topics:directives" }, @@ -3867,15 +3758,15 @@ } }, { - "ID": "3337", + "ID": "4789", "typeID": "__group__", - "zOrder": "102", + "zOrder": "99", "measuredW": "263", "measuredH": "44", "w": "263", "h": "44", - "x": "979", - "y": "870", + "x": "989", + "y": "880", "properties": { "controlName": "113-advanced-topics:watchers" }, @@ -3914,15 +3805,15 @@ } }, { - "ID": "3338", + "ID": "4790", "typeID": "__group__", - "zOrder": "103", + "zOrder": "100", "measuredW": "265", "measuredH": "44", "w": "265", "h": "44", - "x": "979", - "y": "921", + "x": "989", + "y": "931", "properties": { "controlName": "114-advanced-topics:slots" }, @@ -3961,15 +3852,15 @@ } }, { - "ID": "3339", + "ID": "4791", "typeID": "__group__", - "zOrder": "104", + "zOrder": "101", "measuredW": "261", "measuredH": "44", "w": "261", "h": "44", - "x": "979", - "y": "715", + "x": "989", + "y": "725", "properties": { "controlName": "110-advanced-topics:custom-directives" }, @@ -4008,15 +3899,15 @@ } }, { - "ID": "3340", + "ID": "4792", "typeID": "__group__", - "zOrder": "105", + "zOrder": "102", "measuredW": "262", "measuredH": "44", "w": "262", "h": "44", - "x": "979", - "y": "765", + "x": "989", + "y": "775", "properties": { "controlName": "111-advanced-topics:custom-events" }, @@ -4055,15 +3946,15 @@ } }, { - "ID": "3341", + "ID": "4793", "typeID": "__group__", - "zOrder": "106", + "zOrder": "103", "measuredW": "262", "measuredH": "44", "w": "262", "h": "44", - "x": "979", - "y": "816", + "x": "989", + "y": "826", "properties": { "controlName": "112-advanced-topics:plugins" }, @@ -4102,39 +3993,39 @@ } }, { - "ID": "3342", + "ID": "4794", "typeID": "TextArea", - "zOrder": "107", + "zOrder": "104", "w": "262", "h": "154", "measuredW": "200", "measuredH": "140", - "x": "979", - "y": "977" + "x": "989", + "y": "987" }, { - "ID": "3343", + "ID": "4795", "typeID": "Label", - "zOrder": "108", + "zOrder": "105", "measuredW": "85", "measuredH": "25", - "x": "1067", - "y": "989", + "x": "1077", + "y": "999", "properties": { "size": "17", "text": "Animations" } }, { - "ID": "3344", + "ID": "4796", "typeID": "__group__", - "zOrder": "109", + "zOrder": "106", "measuredW": "230", "measuredH": "44", "w": "230", "h": "44", - "x": "995", - "y": "1021", + "x": "1005", + "y": "1031", "properties": { "controlName": "115-advanced-topics:transition" }, @@ -4173,15 +4064,15 @@ } }, { - "ID": "3345", + "ID": "4797", "typeID": "__group__", - "zOrder": "110", + "zOrder": "107", "measuredW": "231", "measuredH": "44", "w": "231", "h": "44", - "x": "995", - "y": "1071", + "x": "1005", + "y": "1081", "properties": { "controlName": "116-advanced-topics:transition-group" }, @@ -4220,39 +4111,39 @@ } }, { - "ID": "3346", + "ID": "4798", "typeID": "TextArea", - "zOrder": "111", + "zOrder": "108", "w": "250", "h": "312", "measuredW": "200", "measuredH": "140", - "x": "161", - "y": "715" + "x": "171", + "y": "725" }, { - "ID": "3347", + "ID": "4799", "typeID": "Label", - "zOrder": "112", + "zOrder": "109", "measuredW": "128", "measuredH": "25", - "x": "222", - "y": "729", + "x": "232", + "y": "739", "properties": { "size": "17", "text": "Composition API" } }, { - "ID": "3348", + "ID": "4800", "typeID": "__group__", - "zOrder": "113", + "zOrder": "110", "measuredW": "110", "measuredH": "44", "w": "110", "h": "44", - "x": "175", - "y": "765", + "x": "185", + "y": "775", "properties": { "controlName": "100-advanced-topics:ref" }, @@ -4291,15 +4182,15 @@ } }, { - "ID": "3349", + "ID": "4801", "typeID": "__group__", - "zOrder": "114", + "zOrder": "111", "measuredW": "222", "measuredH": "44", "w": "222", "h": "44", - "x": "175", - "y": "816", + "x": "185", + "y": "826", "properties": { "controlName": "102-advanced-topics:reactive" }, @@ -4338,15 +4229,15 @@ } }, { - "ID": "3350", + "ID": "4802", "typeID": "__group__", - "zOrder": "115", + "zOrder": "112", "measuredW": "104", "measuredH": "44", "w": "104", "h": "44", - "x": "292", - "y": "765", + "x": "302", + "y": "775", "properties": { "controlName": "101-advanced-topics:torefs" }, @@ -4385,15 +4276,15 @@ } }, { - "ID": "3351", + "ID": "4803", "typeID": "__group__", - "zOrder": "116", + "zOrder": "113", "measuredW": "222", "measuredH": "44", "w": "222", "h": "44", - "x": "175", - "y": "867", + "x": "185", + "y": "877", "properties": { "controlName": "103-advanced-topics:computed" }, @@ -4432,15 +4323,15 @@ } }, { - "ID": "3352", + "ID": "4804", "typeID": "__group__", - "zOrder": "117", + "zOrder": "114", "measuredW": "107", "measuredH": "44", "w": "107", "h": "44", - "x": "175", - "y": "918", + "x": "185", + "y": "928", "properties": { "controlName": "104-advanced-topics:watch" }, @@ -4479,15 +4370,15 @@ } }, { - "ID": "3353", + "ID": "4805", "typeID": "__group__", - "zOrder": "118", + "zOrder": "115", "measuredW": "105", "measuredH": "44", "w": "105", "h": "44", - "x": "291", - "y": "918", + "x": "301", + "y": "928", "properties": { "controlName": "105-advanced-topics:next-tick" }, @@ -4526,15 +4417,15 @@ } }, { - "ID": "3354", + "ID": "4806", "typeID": "__group__", - "zOrder": "119", + "zOrder": "116", "measuredW": "221", "measuredH": "44", "w": "221", "h": "44", - "x": "175", - "y": "970", + "x": "185", + "y": "980", "properties": { "controlName": "106-advanced-topics:composables" }, @@ -4573,15 +4464,15 @@ } }, { - "ID": "3355", + "ID": "4807", "typeID": "__group__", - "zOrder": "120", + "zOrder": "117", "measuredW": "227", "measuredH": "44", "w": "227", "h": "44", - "x": "429", - "y": "806", + "x": "439", + "y": "816", "properties": { "controlName": "107-advanced-topics:async-components" }, @@ -4620,15 +4511,15 @@ } }, { - "ID": "3356", + "ID": "4808", "typeID": "__group__", - "zOrder": "121", + "zOrder": "118", "measuredW": "227", "measuredH": "44", "w": "227", "h": "44", - "x": "427", - "y": "859", + "x": "437", + "y": "869", "properties": { "controlName": "108-advanced-topics:teleport-components" }, @@ -4667,15 +4558,15 @@ } }, { - "ID": "3357", + "ID": "4809", "typeID": "__group__", - "zOrder": "122", + "zOrder": "119", "measuredW": "227", "measuredH": "44", "w": "227", "h": "44", - "x": "427", - "y": "910", + "x": "437", + "y": "920", "properties": { "controlName": "109-advanced-topics:provide-inject" }, @@ -4714,62 +4605,15 @@ } }, { - "ID": "3358", + "ID": "4811", "typeID": "__group__", - "zOrder": "123", - "measuredW": "208", - "measuredH": "44", - "w": "208", - "h": "44", - "x": "174", - "y": "1372", - "properties": { - "controlName": "101-ecosystem:ssg:vuepress" - }, - "children": { - "controls": { - "control": [ - { - "ID": "0", - "typeID": "TextArea", - "zOrder": "0", - "w": "208", - "h": "44", - "measuredW": "200", - "measuredH": "140", - "x": "0", - "y": "0", - "properties": { - "color": "16770457" - } - }, - { - "ID": "1", - "typeID": "Label", - "zOrder": "1", - "measuredW": "72", - "measuredH": "25", - "x": "68", - "y": "10", - "properties": { - "size": "17", - "text": "Vuepress" - } - } - ] - } - } - }, - { - "ID": "3359", - "typeID": "__group__", - "zOrder": "124", + "zOrder": "120", "measuredW": "108", "measuredH": "44", "w": "108", "h": "44", - "x": "435", - "y": "1266", + "x": "445", + "y": "1276", "properties": { "controlName": "102-ecosystem:ssr" }, @@ -4808,15 +4652,15 @@ } }, { - "ID": "3360", + "ID": "4812", "typeID": "__group__", - "zOrder": "125", + "zOrder": "121", "measuredW": "108", "measuredH": "44", "w": "108", "h": "44", - "x": "435", - "y": "1317", + "x": "445", + "y": "1327", "properties": { "controlName": "103-ecosystem:ssg" }, @@ -4855,15 +4699,15 @@ } }, { - "ID": "3361", + "ID": "4813", "typeID": "__group__", - "zOrder": "126", + "zOrder": "122", "measuredW": "193", "measuredH": "44", "w": "193", "h": "44", - "x": "173", - "y": "1520", + "x": "183", + "y": "1530", "properties": { "controlName": "100-ecosystem:mobile-apps:capacitor" }, @@ -4902,15 +4746,15 @@ } }, { - "ID": "3362", + "ID": "4814", "typeID": "__group__", - "zOrder": "127", + "zOrder": "123", "measuredW": "194", "measuredH": "44", "w": "194", "h": "44", - "x": "172", - "y": "1448", + "x": "182", + "y": "1458", "properties": { "controlName": "100-ecosystem:state-management:pinia" }, @@ -4949,39 +4793,39 @@ } }, { - "ID": "3363", + "ID": "4815", "typeID": "TextArea", - "zOrder": "128", + "zOrder": "124", "w": "262", "h": "205", "measuredW": "200", "measuredH": "140", - "x": "979", - "y": "1192" + "x": "989", + "y": "1202" }, { - "ID": "3364", + "ID": "4816", "typeID": "Label", - "zOrder": "129", + "zOrder": "125", "measuredW": "56", "measuredH": "25", - "x": "1082", - "y": "1206", + "x": "1092", + "y": "1216", "properties": { "size": "17", "text": "Testing" } }, { - "ID": "3365", + "ID": "4817", "typeID": "__group__", - "zOrder": "130", + "zOrder": "126", "measuredW": "229", "measuredH": "44", "w": "229", "h": "44", - "x": "995", - "y": "1241", + "x": "1005", + "y": "1251", "properties": { "controlName": "107-ecosystem:jest" }, @@ -5020,15 +4864,15 @@ } }, { - "ID": "3366", + "ID": "4818", "typeID": "__group__", - "zOrder": "131", + "zOrder": "127", "measuredW": "229", "measuredH": "44", "w": "229", "h": "44", - "x": "996", - "y": "1290", + "x": "1006", + "y": "1300", "properties": { "controlName": "108-ecosystem:vue-testing-library" }, @@ -5067,15 +4911,15 @@ } }, { - "ID": "3367", + "ID": "4819", "typeID": "__group__", - "zOrder": "132", + "zOrder": "128", "measuredW": "228", "measuredH": "44", "w": "228", "h": "44", - "x": "999", - "y": "1339", + "x": "1009", + "y": "1349", "properties": { "controlName": "109-ecosystem:cypress" }, @@ -5114,15 +4958,15 @@ } }, { - "ID": "3368", + "ID": "4820", "typeID": "__group__", - "zOrder": "133", + "zOrder": "129", "measuredW": "207", "measuredH": "44", "w": "207", "h": "44", - "x": "173", - "y": "1214", + "x": "183", + "y": "1224", "properties": { "controlName": "100-ecosystem:ssr:quasar" }, @@ -5161,39 +5005,39 @@ } }, { - "ID": "3369", + "ID": "4821", "typeID": "TextArea", - "zOrder": "134", + "zOrder": "130", "w": "262", "h": "212", "measuredW": "200", "measuredH": "140", - "x": "979", - "y": "1442" + "x": "989", + "y": "1452" }, { - "ID": "3370", + "ID": "4822", "typeID": "Label", - "zOrder": "135", + "zOrder": "131", "measuredW": "51", "measuredH": "25", - "x": "1084", - "y": "1457", + "x": "1094", + "y": "1467", "properties": { "size": "17", "text": "Styling" } }, { - "ID": "3371", + "ID": "4823", "typeID": "__group__", - "zOrder": "136", + "zOrder": "132", "measuredW": "230", "measuredH": "44", "w": "230", "h": "44", - "x": "996", - "y": "1496", + "x": "1006", + "y": "1506", "properties": { "controlName": "110-ecosystem:tailwind-css" }, @@ -5232,15 +5076,15 @@ } }, { - "ID": "3372", + "ID": "4824", "typeID": "__group__", - "zOrder": "137", + "zOrder": "133", "measuredW": "228", "measuredH": "44", "w": "228", "h": "44", - "x": "998", - "y": "1545", + "x": "1008", + "y": "1555", "properties": { "controlName": "111-ecosystem:vuetify" }, @@ -5279,15 +5123,15 @@ } }, { - "ID": "3373", + "ID": "4825", "typeID": "__group__", - "zOrder": "138", + "zOrder": "134", "measuredW": "228", "measuredH": "44", "w": "228", "h": "44", - "x": "998", - "y": "1593", + "x": "1008", + "y": "1603", "properties": { "controlName": "112-ecosystem:element-ui" }, @@ -5326,15 +5170,15 @@ } }, { - "ID": "3374", + "ID": "4826", "typeID": "__group__", - "zOrder": "139", + "zOrder": "135", "measuredW": "274", "measuredH": "57", "w": "274", "h": "57", - "x": "547", - "y": "134", + "x": "557", + "y": "144", "properties": { "controlName": "ext_link:roadmap.sh/javascript" }, @@ -5375,15 +5219,15 @@ } }, { - "ID": "3375", + "ID": "4827", "typeID": "__group__", - "zOrder": "140", + "zOrder": "136", "measuredW": "300", "measuredH": "148", "w": "300", "h": "148", - "x": "190", - "y": "82", + "x": "200", + "y": "92", "children": { "controls": { "control": [ @@ -5544,6 +5388,84 @@ ] } } + }, + { + "ID": "4828", + "typeID": "__group__", + "zOrder": "137", + "measuredW": "96", + "measuredH": "44", + "w": "96", + "h": "44", + "x": "806", + "y": "1125", + "properties": { + "controlName": "113-ecosystem:vueuse" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "96", + "h": "44", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "61", + "measuredH": "25", + "x": "17", + "y": "9", + "properties": { + "size": "17", + "text": "VueUse" + } + } + ] + } + } + }, + { + "ID": "4829", + "typeID": "Arrow", + "zOrder": "0", + "w": "1", + "h": "78", + "measuredW": "150", + "measuredH": "100", + "x": "853", + "y": "1144", + "properties": { + "color": "2848996", + "curvature": "0", + "direction": "bottom", + "leftArrow": "false", + "rightArrow": "false", + "stroke": "dotted", + "p0": { + "x": 0, + "y": 78 + }, + "p1": { + "x": 0.6380090497737557, + "y": -0.0018099547511312257 + }, + "p2": { + "x": 0, + "y": 0 + } + } } ] }, @@ -5557,8 +5479,8 @@ "resourceID": "960B5EDB-5533-4531-9B7D-06B4366EBEAE", "mockupH": "1998", "mockupW": "1163", - "measuredW": "1324", - "measuredH": "2035", + "measuredW": "1334", + "measuredH": "2045", "version": "1.0" }, "groupOffset": {