Skip to content

Commit

Permalink
fix(vue-component): 从core中获取utils的方法
Browse files Browse the repository at this point in the history
  • Loading branch information
roymondchen authored and jia000 committed Dec 9, 2024
1 parent 368c9af commit d9ef4b9
Show file tree
Hide file tree
Showing 12 changed files with 9 additions and 24 deletions.
4 changes: 1 addition & 3 deletions vue-components/button/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@
"@vue/composition-api": {
"optional": true
},
"@tmagic/schema": {
"optional": true
},

"typescript": {
"optional": true
}
Expand Down
5 changes: 1 addition & 4 deletions vue-components/container/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.0.5",
"version": "0.0.6",
"name": "@tmagic/vue-container",
"type": "module",
"main": "src/index.ts",
Expand Down Expand Up @@ -29,9 +29,6 @@
},
"@vue/composition-api": {
"optional": true
},
"@tmagic/schema": {
"optional": true
}
}
}
2 changes: 1 addition & 1 deletion vue-components/container/src/formConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

import { getElById } from '@tmagic/utils';
import { getElById } from '@tmagic/core';

export default [
{
Expand Down
3 changes: 0 additions & 3 deletions vue-components/img/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@
"@vue/composition-api": {
"optional": true
},
"@tmagic/schema": {
"optional": true
},
"typescript": {
"optional": true
}
Expand Down
2 changes: 1 addition & 1 deletion vue-components/iterator-container/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.0.3",
"version": "0.0.4",
"name": "@tmagic/vue-iterator-container",
"type": "module",
"main": "src/index.ts",
Expand Down
3 changes: 1 addition & 2 deletions vue-components/iterator-container/src/formConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { NODE_CONDS_KEY } from '@tmagic/schema';
import { DATA_SOURCE_FIELDS_SELECT_VALUE_PREFIX } from '@tmagic/utils';
import { DATA_SOURCE_FIELDS_SELECT_VALUE_PREFIX, NODE_CONDS_KEY } from '@tmagic/core';

export default [
{
Expand Down
2 changes: 1 addition & 1 deletion vue-components/page-fragment/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.0.3",
"version": "0.0.4",
"name": "@tmagic/vue-page-fragment",
"type": "module",
"main": "src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion vue-components/page-fragment/src/formConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

import { getElById } from '@tmagic/utils';
import { getElById } from '@tmagic/core';

export default [
{
Expand Down
2 changes: 1 addition & 1 deletion vue-components/page/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.0.3",
"version": "0.0.4",
"name": "@tmagic/vue-page",
"type": "module",
"main": "src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion vue-components/page/src/formConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

import { getElById } from '@tmagic/utils';
import { getElById } from '@tmagic/core';

export default [
{
Expand Down
3 changes: 0 additions & 3 deletions vue-components/qrcode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@
},
"@vue/composition-api": {
"optional": true
},
"@tmagic/schema": {
"optional": true
}
},
"devDependencies": {
Expand Down
3 changes: 0 additions & 3 deletions vue-components/text/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@
},
"@vue/composition-api": {
"optional": true
},
"@tmagic/schema": {
"optional": true
}
}
}

0 comments on commit d9ef4b9

Please sign in to comment.