flame-plus 0.1.11 → 0.1.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flame-plus",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "private": false,
5
5
  "description": "基于 element-plus 的组件库",
6
6
  "main": "packages/index.ts",
@@ -27,7 +27,7 @@ import {
27
27
  flmTimePicker,
28
28
  flmTimeSelect,
29
29
  flmTransfer,
30
- } from '@/components'
30
+ } from '../../index'
31
31
  import {
32
32
  ControlTypes,
33
33
  ControlConfig,
@@ -37,8 +37,8 @@ import {
37
37
  FormItemConfig,
38
38
  FormButtonConfig,
39
39
  formDefaultConfig
40
- } from '@/model/flmComponentConfig'
41
- import { filterConfig, isValidKey } from '@/utils'
40
+ } from '../../../model/flmComponentConfig'
41
+ import { filterConfig, isValidKey } from '../../../utils'
42
42
 
43
43
  export default defineComponent({
44
44
  components: {
@@ -38,15 +38,9 @@
38
38
 
39
39
  <script lang="ts" setup>
40
40
  import { defineProps, PropType, ref, Ref, computed, ComputedRef } from 'vue'
41
- import { ElMessage } from 'element-plus'
42
- import { flmForm } from '@/components'
43
- import {
44
- ElementSize,
45
- ControlTypes,
46
- FormConfig,
47
- } from '@/model/flmComponentConfig'
48
- import { isValidKey } from '@/utils'
49
- import { nextTick } from 'process'
41
+ import { flmForm } from '../../index'
42
+ import { FormConfig, FormItemConfig } from '../../../model/flmComponentConfig'
43
+ import { isValidKey } from '../../../utils'
50
44
 
51
45
  const emit = defineEmits(['searchSubmit', 'searchCancel', 'searchCustomEvent'])
52
46
  const props = defineProps({
@@ -5,8 +5,8 @@ import {
5
5
  TableColumnConfig,
6
6
  tableDefaultConfig,
7
7
  tableColumnDefaultConfig
8
- } from '@/model/flmComponentConfig'
9
- import { filterConfig } from '@/utils'
8
+ } from '../../../model/flmComponentConfig'
9
+ import { filterConfig } from '../../../utils'
10
10
 
11
11
  export default defineComponent({
12
12
  emits: [
@@ -29,8 +29,8 @@
29
29
 
30
30
  <script lang="ts" setup>
31
31
  import { defineEmits, defineProps, PropType, computed, ComputedRef } from 'vue'
32
- import { flmButton } from '@/components'
33
- import { ToolbarConfig, ToolbarButtonConfig } from '@/model/flmComponentConfig'
32
+ import { flmButton } from '../../index'
33
+ import { ToolbarConfig, ToolbarButtonConfig } from '../../../model/flmComponentConfig'
34
34
 
35
35
  const emit = defineEmits(['toolbarClick'])
36
36
  const props = defineProps({
@@ -72,15 +72,15 @@ import {
72
72
  flmTable,
73
73
  flmPagination,
74
74
  flmDialog
75
- } from '@/components'
75
+ } from '../../index'
76
76
  import {
77
77
  ControlTypes,
78
78
  FormItemConfig,
79
79
  FormConfig,
80
80
  TableColumnConfig,
81
81
  ReportPageSetting,
82
- } from '@/model/flmComponentConfig'
83
- import { isValidKey } from '@/utils'
82
+ } from '../../../model/flmComponentConfig'
83
+ import { isValidKey } from '../../../utils'
84
84
 
85
85
  const emit = defineEmits(['customEvent'])
86
86
  const reportPageRef = ref()