mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
chore: import type
This commit is contained in:
parent
de81218dc0
commit
a7afe057fb
@ -18,7 +18,7 @@
|
||||
|
||||
import { ElMessage, ElMessageBox } from 'element-plus';
|
||||
|
||||
import { MNode } from '@tmagic/schema';
|
||||
import type { MNode } from '@tmagic/schema';
|
||||
|
||||
import actApi from '@src/api/act';
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
import { EventEmitter } from 'events';
|
||||
|
||||
import { Id, MApp } from '@tmagic/schema';
|
||||
import type { Id, MApp } from '@tmagic/schema';
|
||||
|
||||
import Env from './Env';
|
||||
import {
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
import { EventEmitter } from 'events';
|
||||
|
||||
import { EventItemConfig, MComponent, MContainer, MPage } from '@tmagic/schema';
|
||||
import type { EventItemConfig, MComponent, MContainer, MPage } from '@tmagic/schema';
|
||||
|
||||
class Node extends EventEmitter {
|
||||
data: MComponent | MContainer | MPage;
|
||||
|
@ -16,7 +16,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { Id, MComponent, MContainer, MPage } from '@tmagic/schema';
|
||||
import type { Id, MComponent, MContainer, MPage } from '@tmagic/schema';
|
||||
|
||||
import Node from './Node';
|
||||
interface ConfigOptions {
|
||||
|
@ -17,7 +17,7 @@ import { Plus } from '@element-plus/icons';
|
||||
|
||||
import { NodeType } from '@tmagic/schema';
|
||||
|
||||
import { Services } from '@editor/type';
|
||||
import type { Services } from '@editor/type';
|
||||
import { generatePageNameByApp } from '@editor/utils';
|
||||
|
||||
export default defineComponent({
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
import { reactive } from 'vue';
|
||||
|
||||
import { Id, MPage } from '@tmagic/schema';
|
||||
import type { Id, MPage } from '@tmagic/schema';
|
||||
|
||||
import { UndoRedo } from '@editor/utils/undo-redo';
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
import { EventEmitter } from 'events';
|
||||
|
||||
import { Id } from '@tmagic/schema';
|
||||
import type { Id } from '@tmagic/schema';
|
||||
|
||||
import { DEFAULT_ZOOM, GHOST_EL_ID_PREFIX } from './const';
|
||||
import StageDragResize from './StageDragResize';
|
||||
|
@ -19,7 +19,7 @@
|
||||
import { MoveableOptions } from 'moveable';
|
||||
|
||||
import Core from '@tmagic/core';
|
||||
import { Id, MApp, MNode } from '@tmagic/schema';
|
||||
import type { Id, MApp, MNode } from '@tmagic/schema';
|
||||
|
||||
import { GuidesType } from './const';
|
||||
import StageCore from './StageCore';
|
||||
|
@ -16,9 +16,9 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import React, { useRef } from 'react';
|
||||
import React from 'react';
|
||||
|
||||
import { MComponent } from '@tmagic/schema';
|
||||
import type { MComponent } from '@tmagic/schema';
|
||||
|
||||
import useApp from '../useApp';
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import { MComponent, MContainer } from '@tmagic/schema';
|
||||
import type { MComponent, MContainer } from '@tmagic/schema';
|
||||
|
||||
import useApp from '../useApp';
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import { MComponent } from '@tmagic/schema';
|
||||
import type { MComponent } from '@tmagic/schema';
|
||||
|
||||
import useApp from '../useApp';
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
import React, { useContext, useEffect, useState } from 'react';
|
||||
|
||||
import Core from '@tmagic/core';
|
||||
import { MComponent, MNode } from '@tmagic/schema';
|
||||
import type { MComponent, MNode } from '@tmagic/schema';
|
||||
|
||||
import AppContent from '../AppContent';
|
||||
import useApp from '../useApp';
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import { MComponent, MContainer, MPage } from '@tmagic/schema';
|
||||
import type { MComponent, MContainer, MPage } from '@tmagic/schema';
|
||||
|
||||
import useApp from '../useApp';
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
import React, { useEffect, useState } from 'react';
|
||||
import QRCode from 'qrcode';
|
||||
|
||||
import { MComponent } from '@tmagic/schema';
|
||||
import type { MComponent } from '@tmagic/schema';
|
||||
|
||||
import useApp from '../useApp';
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
import React, { useState } from 'react';
|
||||
|
||||
import { MComponent } from '@tmagic/schema';
|
||||
import type { MComponent } from '@tmagic/schema';
|
||||
|
||||
import useApp from '../useApp';
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
import { useContext, useEffect, useState } from 'react';
|
||||
|
||||
import Core from '@tmagic/core';
|
||||
import { MComponent } from '@tmagic/schema';
|
||||
import type { MComponent } from '@tmagic/schema';
|
||||
|
||||
import AppContent from './AppContent';
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
<script lang="ts">
|
||||
import { computed, defineComponent, getCurrentInstance, PropType, reactive } from '@vue/composition-api';
|
||||
|
||||
import { MComponent } from '@tmagic/schema';
|
||||
import type { MComponent } from '@tmagic/schema';
|
||||
|
||||
import useApp from '../useApp';
|
||||
|
||||
|
@ -13,7 +13,7 @@
|
||||
<script lang="ts">
|
||||
import { computed, defineComponent, PropType } from '@vue/composition-api';
|
||||
|
||||
import { MContainer } from '@tmagic/schema';
|
||||
import type { MContainer } from '@tmagic/schema';
|
||||
|
||||
import Component from '../Component.vue';
|
||||
import useApp from '../useApp';
|
||||
|
@ -7,7 +7,7 @@
|
||||
import { defineComponent, ref } from '@vue/composition-api';
|
||||
|
||||
import Core from '@tmagic/core';
|
||||
import { MNode } from '@tmagic/schema';
|
||||
import type { MNode } from '@tmagic/schema';
|
||||
|
||||
import useApp from '../../useApp';
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
<script lang="ts">
|
||||
import { computed, defineComponent, PropType } from '@vue/composition-api';
|
||||
|
||||
import { MPage } from '@tmagic/schema';
|
||||
import type { MPage } from '@tmagic/schema';
|
||||
|
||||
import Component from '../Component.vue';
|
||||
import useApp from '../useApp';
|
||||
|
@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import { computed, defineComponent, getCurrentInstance, h, inject, PropType } from '@vue/composition-api';
|
||||
|
||||
import { MComponent } from '@tmagic/schema';
|
||||
import type { MComponent } from '@tmagic/schema';
|
||||
|
||||
import useApp from '../useApp';
|
||||
|
||||
|
@ -13,7 +13,7 @@
|
||||
<script lang="ts">
|
||||
import { computed, defineComponent, PropType } from 'vue';
|
||||
|
||||
import { MContainer } from '@tmagic/schema';
|
||||
import type { MContainer } from '@tmagic/schema';
|
||||
|
||||
import Component from '../../Component.vue';
|
||||
import useApp from '../../useApp';
|
||||
|
@ -7,7 +7,7 @@
|
||||
import { defineComponent, ref } from 'vue';
|
||||
|
||||
import Core from '@tmagic/core';
|
||||
import { MNode } from '@tmagic/schema';
|
||||
import type { MNode } from '@tmagic/schema';
|
||||
|
||||
import useApp from '../../useApp';
|
||||
|
||||
|
@ -12,7 +12,7 @@
|
||||
<script lang="ts">
|
||||
import { computed, defineComponent, PropType } from 'vue';
|
||||
|
||||
import { MPage } from '@tmagic/schema';
|
||||
import type { MPage } from '@tmagic/schema';
|
||||
|
||||
import Component from '../../Component.vue';
|
||||
import useApp from '../../useApp';
|
||||
|
@ -18,7 +18,8 @@
|
||||
|
||||
import moment from 'moment';
|
||||
|
||||
import { MNode, NodeType } from '@tmagic/schema';
|
||||
import type { MNode } from '@tmagic/schema';
|
||||
import { NodeType } from '@tmagic/schema';
|
||||
|
||||
export const sleep = (ms: number): Promise<void> =>
|
||||
new Promise((resolve) => {
|
||||
|
@ -38,7 +38,8 @@ import { ElMessage, ElMessageBox } from 'element-plus';
|
||||
import serialize from 'serialize-javascript';
|
||||
|
||||
import type { MenuBarData, MoveableOptions, TMagicEditor } from '@tmagic/editor';
|
||||
import { Id, NodeType } from '@tmagic/schema';
|
||||
import type { Id } from '@tmagic/schema';
|
||||
import { NodeType } from '@tmagic/schema';
|
||||
import StageCore from '@tmagic/stage';
|
||||
import { asyncLoadJs } from '@tmagic/utils';
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
import React, { useContext } from 'react';
|
||||
|
||||
import Core from '@tmagic/core';
|
||||
import { Page } from '@tmagic/schema';
|
||||
import type { Page } from '@tmagic/schema';
|
||||
import { AppContent } from '@tmagic/ui-react';
|
||||
|
||||
import './App.css';
|
||||
|
@ -20,7 +20,7 @@ import React from 'react';
|
||||
import ReactDOM from 'react-dom';
|
||||
|
||||
import Core from '@tmagic/core';
|
||||
import { MApp } from '@tmagic/schema';
|
||||
import type { MApp } from '@tmagic/schema';
|
||||
import { AppContent } from '@tmagic/ui-react';
|
||||
import { getUrlParam } from '@tmagic/utils';
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
import React, { useContext } from 'react';
|
||||
|
||||
import Core from '@tmagic/core';
|
||||
import { Page } from '@tmagic/schema';
|
||||
import type { Page } from '@tmagic/schema';
|
||||
import { AppContent } from '@tmagic/ui-react';
|
||||
|
||||
import './App.css';
|
||||
|
2
runtime/vue2/src/index.d.ts
vendored
2
runtime/vue2/src/index.d.ts
vendored
@ -16,7 +16,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { MApp } from '@tmagic/schema';
|
||||
import type { MApp } from '@tmagic/schema';
|
||||
|
||||
declare global {
|
||||
interface Window {
|
||||
|
@ -6,7 +6,7 @@
|
||||
import { computed, defineComponent, nextTick, onMounted, provide, reactive, ref, watch } from '@vue/composition-api';
|
||||
|
||||
import Core from '@tmagic/core';
|
||||
import { Id, MApp, MNode } from '@tmagic/schema';
|
||||
import type { Id, MApp, MNode } from '@tmagic/schema';
|
||||
import { Magic, RemoveData, UpdateData } from '@tmagic/stage';
|
||||
import { getNodePath } from '@tmagic/utils';
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { MApp } from '@tmagic/schema';
|
||||
import type { MApp } from '@tmagic/schema';
|
||||
|
||||
export const getLocalConfig = (): MApp[] => {
|
||||
const configStr = localStorage.getItem('magicUiConfig');
|
||||
|
2
runtime/vue3/src/index.d.ts
vendored
2
runtime/vue3/src/index.d.ts
vendored
@ -16,7 +16,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { MApp } from '@tmagic/schema';
|
||||
import type { MApp } from '@tmagic/schema';
|
||||
|
||||
declare global {
|
||||
interface Window {
|
||||
|
@ -6,7 +6,7 @@
|
||||
import { computed, defineComponent, nextTick, onMounted, provide, reactive, ref, watch } from 'vue';
|
||||
|
||||
import Core from '@tmagic/core';
|
||||
import { Id, MApp, MNode } from '@tmagic/schema';
|
||||
import type { Id, MApp, MNode } from '@tmagic/schema';
|
||||
import { Magic, RemoveData, UpdateData } from '@tmagic/stage';
|
||||
import { getNodePath } from '@tmagic/utils';
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { MApp } from '@tmagic/schema';
|
||||
import type { MApp } from '@tmagic/schema';
|
||||
|
||||
export const getLocalConfig = (): MApp[] => {
|
||||
const configStr = localStorage.getItem('magicUiConfig');
|
||||
|
Loading…
x
Reference in New Issue
Block a user