chore(vue-components): release

This commit is contained in:
roymondchen 2024-09-04 20:16:24 +08:00 committed by roymondchen
parent 0d901c018f
commit 815854bad8
21 changed files with 48 additions and 72 deletions

51
pnpm-lock.yaml generated
View File

@ -1342,9 +1342,9 @@ importers:
vue-components/button:
dependencies:
'@tmagic/schema':
'@tmagic/core':
specifier: workspace:^
version: link:../../packages/schema
version: link:../../packages/core
'@tmagic/vue-runtime-help':
specifier: workspace:^
version: link:../../runtime/vue-runtime-help
@ -1363,12 +1363,9 @@ importers:
vue-components/container:
dependencies:
'@tmagic/schema':
'@tmagic/core':
specifier: workspace:^
version: link:../../packages/schema
'@tmagic/utils':
specifier: workspace:^
version: link:../../packages/utils
version: link:../../packages/core
'@tmagic/vue-runtime-help':
specifier: workspace:^
version: link:../../runtime/vue-runtime-help
@ -1387,9 +1384,9 @@ importers:
vue-components/img:
dependencies:
'@tmagic/schema':
'@tmagic/core':
specifier: workspace:^
version: link:../../packages/schema
version: link:../../packages/core
'@tmagic/vue-runtime-help':
specifier: workspace:^
version: link:../../runtime/vue-runtime-help
@ -1411,12 +1408,6 @@ importers:
'@tmagic/core':
specifier: workspace:^
version: link:../../packages/core
'@tmagic/schema':
specifier: workspace:^
version: link:../../packages/schema
'@tmagic/utils':
specifier: workspace:^
version: link:../../packages/utils
'@tmagic/vue-runtime-help':
specifier: workspace:^
version: link:../../runtime/vue-runtime-help
@ -1435,9 +1426,9 @@ importers:
vue-components/overlay:
dependencies:
'@tmagic/schema':
'@tmagic/core':
specifier: workspace:^
version: link:../../packages/schema
version: link:../../packages/core
'@tmagic/vue-runtime-help':
specifier: workspace:^
version: link:../../runtime/vue-runtime-help
@ -1450,12 +1441,9 @@ importers:
vue-components/page:
dependencies:
'@tmagic/schema':
'@tmagic/core':
specifier: workspace:^
version: link:../../packages/schema
'@tmagic/utils':
specifier: workspace:^
version: link:../../packages/utils
version: link:../../packages/core
'@tmagic/vue-runtime-help':
specifier: workspace:^
version: link:../../runtime/vue-runtime-help
@ -1468,12 +1456,9 @@ importers:
vue-components/page-fragment:
dependencies:
'@tmagic/schema':
'@tmagic/core':
specifier: workspace:^
version: link:../../packages/schema
'@tmagic/utils':
specifier: workspace:^
version: link:../../packages/utils
version: link:../../packages/core
'@tmagic/vue-runtime-help':
specifier: workspace:^
version: link:../../runtime/vue-runtime-help
@ -1486,9 +1471,9 @@ importers:
vue-components/page-fragment-container:
dependencies:
'@tmagic/schema':
'@tmagic/core':
specifier: workspace:^
version: link:../../packages/schema
version: link:../../packages/core
'@tmagic/vue-runtime-help':
specifier: workspace:^
version: link:../../runtime/vue-runtime-help
@ -1501,9 +1486,9 @@ importers:
vue-components/qrcode:
dependencies:
'@tmagic/schema':
'@tmagic/core':
specifier: workspace:^
version: link:../../packages/schema
version: link:../../packages/core
'@tmagic/vue-runtime-help':
specifier: workspace:^
version: link:../../runtime/vue-runtime-help
@ -1529,9 +1514,9 @@ importers:
vue-components/text:
dependencies:
'@tmagic/schema':
'@tmagic/core':
specifier: workspace:^
version: link:../../packages/schema
version: link:../../packages/core
'@tmagic/vue-runtime-help':
specifier: workspace:^
version: link:../../runtime/vue-runtime-help

View File

@ -1,5 +1,5 @@
{
"version": "0.0.2",
"version": "0.0.4",
"name": "@tmagic/vue-button",
"type": "module",
"main": "src/index.ts",
@ -17,7 +17,7 @@
"vue-demi": "^0.14.10"
},
"peerDependencies": {
"@tmagic/schema": "workspace:^",
"@tmagic/core": "workspace:^",
"@tmagic/vue-runtime-help": "workspace:^",
"@vue/composition-api": ">=1.7.2",
"typescript": "*",

View File

@ -9,7 +9,7 @@
<script lang="ts">
import { defineComponent, type PropType } from 'vue-demi';
import type { Id, MComponent } from '@tmagic/schema';
import type { Id, MComponent } from '@tmagic/core';
import { useApp } from '@tmagic/vue-runtime-help';
interface ButtonSchema extends Omit<MComponent, 'id'> {

View File

@ -1,5 +1,5 @@
{
"version": "0.0.3",
"version": "0.0.5",
"name": "@tmagic/vue-container",
"type": "module",
"main": "src/index.ts",
@ -17,8 +17,7 @@
"vue-demi": "^0.14.10"
},
"peerDependencies": {
"@tmagic/schema": "workspace:^",
"@tmagic/utils": "workspace:^",
"@tmagic/core": "workspace:^",
"@tmagic/vue-runtime-help": "workspace:^",
"@vue/composition-api": ">=1.7.2",
"typescript": "*",

View File

@ -25,8 +25,8 @@
<script lang="ts">
import { computed, defineComponent, type PropType } from 'vue-demi';
import type { Id, MContainer } from '@tmagic/schema';
import { IS_DSL_NODE_KEY, toLine } from '@tmagic/utils';
import type { Id, MContainer } from '@tmagic/core';
import { IS_DSL_NODE_KEY, toLine } from '@tmagic/core';
import { useApp, useComponent } from '@tmagic/vue-runtime-help';
interface ContainerSchema extends Omit<MContainer, 'id'> {

View File

@ -1,5 +1,5 @@
{
"version": "0.0.2",
"version": "0.0.4",
"name": "@tmagic/vue-img",
"type": "module",
"main": "src/index.ts",
@ -17,7 +17,7 @@
"vue-demi": "^0.14.10"
},
"peerDependencies": {
"@tmagic/schema": "workspace:^",
"@tmagic/core": "workspace:^",
"@tmagic/vue-runtime-help": "workspace:^",
"@vue/composition-api": ">=1.7.2",
"typescript": "*",

View File

@ -5,7 +5,7 @@
<script lang="ts">
import { defineComponent, type PropType } from 'vue-demi';
import type { Id, MComponent } from '@tmagic/schema';
import type { Id, MComponent } from '@tmagic/core';
import { useApp } from '@tmagic/vue-runtime-help';
interface ImgSchema extends Omit<MComponent, 'id'> {

View File

@ -1,5 +1,5 @@
{
"version": "0.0.2",
"version": "0.0.3",
"name": "@tmagic/vue-iterator-container",
"type": "module",
"main": "src/index.ts",
@ -18,8 +18,6 @@
},
"peerDependencies": {
"@tmagic/core": "workspace:^",
"@tmagic/schema": "workspace:^",
"@tmagic/utils": "workspace:^",
"@tmagic/vue-runtime-help": "workspace:^",
"@vue/composition-api": ">=1.7.2",
"typescript": "*",
@ -29,9 +27,6 @@
"@vue/composition-api": {
"optional": true
},
"@tmagic/schema": {
"optional": true
},
"typescript": {
"optional": true
}

View File

@ -14,8 +14,7 @@
<script lang="ts">
import { computed, defineComponent, type PropType, watch } from 'vue-demi';
import type { IteratorContainer as TMagicIteratorContainer } from '@tmagic/core';
import type { Id, MIteratorContainer, MNode } from '@tmagic/schema';
import type { Id, IteratorContainer as TMagicIteratorContainer, MIteratorContainer, MNode } from '@tmagic/core';
import { useApp, useComponent } from '@tmagic/vue-runtime-help';
interface IteratorContainerSchema extends Omit<MIteratorContainer, 'id'> {

View File

@ -1,5 +1,5 @@
{
"version": "0.0.2",
"version": "0.0.3",
"name": "@tmagic/vue-overlay",
"type": "module",
"main": "src/index.ts",
@ -17,7 +17,7 @@
"vue-demi": "^0.14.10"
},
"peerDependencies": {
"@tmagic/schema": "workspace:^",
"@tmagic/core": "workspace:^",
"@tmagic/vue-runtime-help": "workspace:^",
"vue-demi": ">=0.14.7",
"typescript": "*"

View File

@ -7,7 +7,7 @@
<script lang="ts">
import { defineComponent, onBeforeUnmount, type PropType, ref } from 'vue-demi';
import type { Id, MContainer, MNode, MPage } from '@tmagic/schema';
import type { Id, MContainer, MNode, MPage } from '@tmagic/core';
import { useApp, useComponent } from '@tmagic/vue-runtime-help';
interface OverlaySchema extends Omit<MContainer, 'id'> {

View File

@ -1,5 +1,5 @@
{
"version": "0.0.2",
"version": "0.0.3",
"name": "@tmagic/vue-page-fragment-container",
"type": "module",
"main": "src/index.ts",
@ -17,7 +17,7 @@
"vue-demi": "^0.14.10"
},
"peerDependencies": {
"@tmagic/schema": "workspace:^",
"@tmagic/core": "workspace:^",
"@tmagic/vue-runtime-help": "workspace:^",
"typescript": "*"
},

View File

@ -13,7 +13,7 @@
<script lang="ts">
import { computed, defineComponent, type PropType } from 'vue-demi';
import { type Id, type MComponent, type MNode, NodeType } from '@tmagic/schema';
import { type Id, type MComponent, type MNode, NodeType } from '@tmagic/core';
import { useApp, useComponent } from '@tmagic/vue-runtime-help';
export default defineComponent({

View File

@ -1,5 +1,5 @@
{
"version": "0.0.2",
"version": "0.0.3",
"name": "@tmagic/vue-page-fragment",
"type": "module",
"main": "src/index.ts",
@ -17,8 +17,7 @@
"vue-demi": "^0.14.10"
},
"peerDependencies": {
"@tmagic/utils": "workspace:^",
"@tmagic/schema": "workspace:^",
"@tmagic/core": "workspace:^",
"@tmagic/vue-runtime-help": "workspace:^",
"typescript": "*"
},

View File

@ -11,7 +11,7 @@
<script lang="ts">
import { defineComponent, type PropType } from 'vue-demi';
import type { MPageFragment } from '@tmagic/schema';
import type { MPageFragment } from '@tmagic/core';
import { useApp, useComponent } from '@tmagic/vue-runtime-help';
export default defineComponent({

View File

@ -1,5 +1,5 @@
{
"version": "0.0.2",
"version": "0.0.3",
"name": "@tmagic/vue-page",
"type": "module",
"main": "src/index.ts",
@ -17,8 +17,7 @@
"vue-demi": "^0.14.10"
},
"peerDependencies": {
"@tmagic/utils": "workspace:^",
"@tmagic/schema": "workspace:^",
"@tmagic/core": "workspace:^",
"@tmagic/vue-runtime-help": "workspace:^",
"typescript": "*"
},

View File

@ -5,7 +5,7 @@
<script lang="ts">
import { defineComponent, type PropType } from 'vue-demi';
import type { MPage } from '@tmagic/schema';
import type { MPage } from '@tmagic/core';
import { useApp, useComponent } from '@tmagic/vue-runtime-help';
export default defineComponent({

View File

@ -1,5 +1,5 @@
{
"version": "0.0.2",
"version": "0.0.3",
"name": "@tmagic/vue-qrcode",
"type": "module",
"main": "src/index.ts",
@ -18,7 +18,7 @@
"vue-demi": "^0.14.10"
},
"peerDependencies": {
"@tmagic/schema": "workspace:^",
"@tmagic/core": "workspace:^",
"@tmagic/vue-runtime-help": "workspace:^",
"@vue/composition-api": ">=1.7.2",
"typescript": "*",

View File

@ -6,7 +6,7 @@
import { defineComponent, type PropType, ref, watch } from 'vue-demi';
import QRCode from 'qrcode';
import type { Id, MComponent } from '@tmagic/schema';
import type { Id, MComponent } from '@tmagic/core';
import { useApp } from '@tmagic/vue-runtime-help';
interface QrCodeSchema extends Omit<MComponent, 'id'> {

View File

@ -1,5 +1,5 @@
{
"version": "0.0.2",
"version": "0.0.3",
"name": "@tmagic/vue-text",
"type": "module",
"main": "src/index.ts",
@ -17,7 +17,7 @@
"vue-demi": "^0.14.10"
},
"peerDependencies": {
"@tmagic/schema": "workspace:^",
"@tmagic/core": "workspace:^",
"@tmagic/vue-runtime-help": "workspace:^",
"@vue/composition-api": ">=1.7.2",
"typescript": "*",

View File

@ -5,7 +5,7 @@
<script lang="ts">
import { defineComponent, type PropType } from 'vue-demi';
import type { Id, MComponent } from '@tmagic/schema';
import type { Id, MComponent } from '@tmagic/core';
import { useApp } from '@tmagic/vue-runtime-help';
interface TextSchema extends Omit<MComponent, 'id'> {