2023-02-07 10:54:56 +08:00

1 line
10 KiB
Plaintext

{"version":3,"file":"index.umd.cjs","sources":["../../../../../packages/ui/src/page/src/formConfig.ts","../../../../../packages/ui/src/container/src/formConfig.ts","../../../../../packages/ui/src/button/src/formConfig.ts","../../../../../packages/ui/src/text/src/formConfig.ts","../../../../../packages/ui/src/img/src/formConfig.ts","../../../../../packages/ui/src/qrcode/src/formConfig.ts","../../../../../packages/ui/src/overlay/src/formConfig.ts","../../../.tmagic/config-entry.ts"],"sourcesContent":["/*\n * Tencent is pleased to support the open source community by making TMagicEditor available.\n *\n * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport default [\n {\n text: '页面标识',\n name: 'name',\n disabled: true,\n extra: '在多页面的情况下用来指定要打开的页面',\n },\n {\n text: '页面标题',\n name: 'title',\n },\n {\n name: 'layout',\n text: '容器布局',\n type: 'select',\n defaultValue: 'absolute',\n options: [\n { value: 'absolute', text: '绝对定位' },\n { value: 'relative', text: '流式布局' },\n ],\n onChange: (formState: any, v: string, { model }: any) => {\n if (!model.style) return v;\n if (v === 'relative') {\n model.style.height = 'auto';\n } else {\n const el = formState.stage?.renderer?.contentWindow.document.getElementById(model.id);\n if (el) {\n model.style.height = el.getBoundingClientRect().height;\n }\n }\n },\n },\n];\n","/*\n * Tencent is pleased to support the open source community by making TMagicEditor available.\n *\n * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport default [\n {\n name: 'layout',\n text: '容器布局',\n type: 'select',\n defaultValue: 'absolute',\n options: [\n { value: 'absolute', text: '绝对定位' },\n { value: 'relative', text: '流式布局' },\n ],\n onChange: (formState: any, v: string, { model }: any) => {\n if (!model.style) return v;\n if (v === 'relative') {\n model.style.height = 'auto';\n } else {\n const el = formState.stage?.renderer?.contentWindow.document.getElementById(model.id);\n if (el) {\n model.style.height = el.getBoundingClientRect().height;\n }\n }\n },\n },\n];\n","/*\n * Tencent is pleased to support the open source community by making TMagicEditor available.\n *\n * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport default [\n {\n text: '文本',\n name: 'text',\n },\n];\n","/*\n * Tencent is pleased to support the open source community by making TMagicEditor available.\n *\n * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport default [\n {\n name: 'text',\n text: '文本',\n },\n {\n name: 'multiple',\n text: '多行文本',\n type: 'switch',\n },\n];\n","/*\n * Tencent is pleased to support the open source community by making TMagicEditor available.\n *\n * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport default [\n {\n text: '图片',\n name: 'src',\n },\n {\n text: '链接',\n name: 'url',\n },\n];\n","/*\n * Tencent is pleased to support the open source community by making TMagicEditor available.\n *\n * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport default [\n {\n text: '链接',\n name: 'url',\n },\n];\n","export default [];\n","import page from '/parisma/github/tmagic-editor/packages/ui/src/page/src/formConfig';\nimport container from '/parisma/github/tmagic-editor/packages/ui/src/container/src/formConfig';\nimport button from '/parisma/github/tmagic-editor/packages/ui/src/button/src/formConfig';\nimport text from '/parisma/github/tmagic-editor/packages/ui/src/text/src/formConfig';\nimport img from '/parisma/github/tmagic-editor/packages/ui/src/img/src/formConfig';\nimport qrcode from '/parisma/github/tmagic-editor/packages/ui/src/qrcode/src/formConfig';\nimport overlay from '/parisma/github/tmagic-editor/packages/ui/src/overlay/src/formConfig';\n\nconst configs: Record<string, any> = {\n 'page': page,\n 'container': container,\n 'button': button,\n 'text': text,\n 'img': img,\n 'qrcode': qrcode,\n 'overlay': overlay,\n};\n\nexport default configs;"],"names":[],"mappings":"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"}