flame-plus 0.1.12 → 0.1.13
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 +1 -1
- package/packages/components/base/flmButton/flmButton.vue +2 -2
- package/packages/components/base/flmCascader/flmCascader.vue +2 -2
- package/packages/components/base/flmCheckbox/flmCheckbox.vue +2 -2
- package/packages/components/base/flmCheckbox/flmCheckboxGroup.vue +3 -3
- package/packages/components/base/flmColorPicker/flmColorPicker.vue +2 -2
- package/packages/components/base/flmDatePicker/flmDatePicker.vue +2 -2
- package/packages/components/base/flmDialog/flmDialog.vue +2 -2
- package/packages/components/base/flmInput/flmInput.vue +2 -2
- package/packages/components/base/flmInputNumber/flmInputNumber.vue +2 -2
- package/packages/components/base/flmPagination/flmPagination.vue +2 -2
- package/packages/components/base/flmRadio/flmRadio.vue +2 -2
- package/packages/components/base/flmRate/flmRate.vue +2 -2
- package/packages/components/base/flmRead/flmRead.vue +1 -1
- package/packages/components/base/flmSelect/flmSelect.vue +2 -2
- package/packages/components/base/flmSlider/flmSlider.vue +2 -2
- package/packages/components/base/flmSwitch/flmSwitch.vue +2 -2
- package/packages/components/base/flmTimePicker/flmTimePicker.vue +2 -2
- package/packages/components/base/flmTimeSelect/flmTimeSelect.vue +2 -2
- package/packages/components/base/flmTransfer/flmTransfer.vue +2 -2
- package/packages/model/flmComponentConfig/base/flmButton.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmCascader.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmCheckbox.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmColorPicker.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmDatePicker.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmInput.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmInputNumber.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmRadio.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmRate.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmSelect.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmSlider.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmSwitch.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmTimePicker.ts +1 -1
- package/packages/model/flmComponentConfig/base/flmTimeSelect.ts +1 -1
- package/packages/model/flmComponentConfig/complex/flmForm.ts +1 -1
- package/packages/model/flmComponentConfig/complex/flmTable.ts +1 -1
- package/packages/model/flmComponentConfig/complex/flmToolbar.ts +1 -1
- package/packages/model/flmComponentConfig/page/flmReportPage.ts +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, computed } from 'vue'
|
|
3
|
-
import { ButtonConfig, buttonDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { ButtonConfig, buttonDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['buttonClick'],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, computed, reactive } from 'vue'
|
|
3
|
-
import { CascaderConfig, CascaderDefaultEvent, cascaderDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { CascaderConfig, CascaderDefaultEvent, cascaderDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['change', 'expand-change', 'blur', 'focus', 'visible-change', 'remove-tag'],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, reactive, computed } from 'vue'
|
|
3
|
-
import { CheckboxConfig, CheckboxDefaultEvent, checkboxDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { CheckboxConfig, CheckboxDefaultEvent, checkboxDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['change'],
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, ref, Ref, computed } from 'vue'
|
|
3
|
-
import { flmCheckbox } from '
|
|
3
|
+
import { flmCheckbox } from '../../index'
|
|
4
4
|
import {
|
|
5
5
|
CheckboxConfig,
|
|
6
6
|
CheckboxGroupConfig,
|
|
7
7
|
checkboxGroupDefaultConfig
|
|
8
|
-
} from '
|
|
9
|
-
import { filterConfig } from '
|
|
8
|
+
} from '../../../model/flmComponentConfig'
|
|
9
|
+
import { filterConfig } from '../../../utils'
|
|
10
10
|
|
|
11
11
|
export default defineComponent({
|
|
12
12
|
components: { flmCheckbox },
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, reactive, computed } from 'vue'
|
|
3
|
-
import { ColorPickerConfig, ColorPickerDefaultEvent, colorPickerDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { ColorPickerConfig, ColorPickerDefaultEvent, colorPickerDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['change'],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, computed, reactive } from 'vue'
|
|
3
|
-
import { DatePickerConfig, DatePickerDefaultEvent, datePickerDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { DatePickerConfig, DatePickerDefaultEvent, datePickerDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: [
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, reactive, computed } from 'vue'
|
|
3
|
-
import { DialogConfig, DialogDefaultEvent, dialogDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { DialogConfig, DialogDefaultEvent, dialogDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['open', 'opened', 'close', 'closed', 'open-auto-focus', 'close-auto-focus'],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, reactive, computed } from 'vue'
|
|
3
|
-
import { InputConfig, InputDefaultEvent, inputDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { InputConfig, InputDefaultEvent, inputDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['blur', 'focus', 'change', 'input', 'clear'],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, computed, reactive } from 'vue'
|
|
3
|
-
import { InputNumberConfig, InputNumberDefaultEvent, inputNumberDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { InputNumberConfig, InputNumberDefaultEvent, inputNumberDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['change', 'blur', 'focus'],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, reactive, computed } from 'vue'
|
|
3
|
-
import { PaginationConfig, PaginationDefaultEvent, paginationDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { PaginationConfig, PaginationDefaultEvent, paginationDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['size-change', 'current-change', 'prev-click', 'next-click'],
|
|
@@ -6,8 +6,8 @@ import {
|
|
|
6
6
|
RadioGroupDefaultEvent,
|
|
7
7
|
radioDefaultConfig,
|
|
8
8
|
radioGroupDefaultConfig
|
|
9
|
-
} from '
|
|
10
|
-
import { filterConfig } from '
|
|
9
|
+
} from '../../../model/flmComponentConfig'
|
|
10
|
+
import { filterConfig } from '../../../utils'
|
|
11
11
|
|
|
12
12
|
export default defineComponent({
|
|
13
13
|
emits: ['change'],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, computed, reactive } from 'vue'
|
|
3
|
-
import { RateConfig, RateDefaultEvent, rateDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { RateConfig, RateDefaultEvent, rateDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['change'],
|
|
@@ -6,8 +6,8 @@ import {
|
|
|
6
6
|
OptionGroupConfig,
|
|
7
7
|
OptionConfig,
|
|
8
8
|
selectDefaultConfig
|
|
9
|
-
} from '
|
|
10
|
-
import { filterConfig } from '
|
|
9
|
+
} from '../../../model/flmComponentConfig'
|
|
10
|
+
import { filterConfig } from '../../../utils'
|
|
11
11
|
|
|
12
12
|
export default defineComponent({
|
|
13
13
|
emits: ['change', 'visible-change', 'remove-tag', 'clear', 'blur', 'focus'],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, computed, reactive } from 'vue'
|
|
3
|
-
import { SliderConfig, SliderDefaultEvent, sliderDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { SliderConfig, SliderDefaultEvent, sliderDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['change', 'input'],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, computed } from 'vue'
|
|
3
|
-
import { SwitchConfig, switchDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { SwitchConfig, switchDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['change'],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, computed, reactive } from 'vue'
|
|
3
|
-
import { TimePickerConfig, TimePickerDefaultEvent, timePickerDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { TimePickerConfig, TimePickerDefaultEvent, timePickerDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['change', 'blur', 'focus', 'visible-change' ],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, computed, reactive } from 'vue'
|
|
3
|
-
import { TimeSelectConfig, timeSelectDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { TimeSelectConfig, timeSelectDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['change', 'blur', 'focus'],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="tsx">
|
|
2
2
|
import { defineComponent, PropType, computed, reactive } from 'vue'
|
|
3
|
-
import { TransferConfig, TransferDefaultEvent, transferDefaultConfig } from '
|
|
4
|
-
import { filterConfig } from '
|
|
3
|
+
import { TransferConfig, TransferDefaultEvent, transferDefaultConfig } from '../../../model/flmComponentConfig'
|
|
4
|
+
import { filterConfig } from '../../../utils'
|
|
5
5
|
|
|
6
6
|
export default defineComponent({
|
|
7
7
|
emits: ['change', 'left-check-change', 'right-check-change'],
|