@ddwl/ddwl-ui 1.0.7 → 1.0.9

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/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## [1.0.9](https://121.40.23.60:51888/frontend/ddwl-ui/compare/v1.0.8...v1.0.9) (2025-07-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add console ([128ea47](https://121.40.23.60:51888/frontend/ddwl-ui/commits/128ea47e252acedf6c800cbd241fae835fd7822f))
7
+
8
+
9
+
10
+ ## [1.0.8](https://121.40.23.60:51888/frontend/ddwl-ui/compare/v1.0.7...v1.0.8) (2025-07-04)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * slot name修改 ([c0789c5](https://121.40.23.60:51888/frontend/ddwl-ui/commits/c0789c5583fbe55de63c01f2f9dbb36c038765b2))
16
+
17
+
18
+
1
19
  ## [1.0.7](https://121.40.23.60:51888/frontend/ddwl-ui/compare/v1.0.6...v1.0.7) (2025-07-04)
2
20
 
3
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ddwl/ddwl-ui",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "private": false,
5
5
  "main": "src/main.js",
6
6
  "description": "ddwl组件库",
@@ -5,7 +5,8 @@
5
5
 
6
6
  <script>
7
7
  export default {
8
- name: 'DictSlot',
8
+ // eslint-disable-next-line vue/multi-word-component-names
9
+ name: 'Dict',
9
10
  components: {},
10
11
  props: {
11
12
  row: {
@@ -28,6 +29,7 @@ export default {
28
29
  },
29
30
  computed: {
30
31
  dictText () {
32
+ console.log(this.$DDWL)
31
33
  if (Array.isArray(this.row[this.props])) {
32
34
  const result = this.$DDWL.enum.getLabels(this.code, this.row[this.props])
33
35
  return result?.length ? result.join(',') : ''
@@ -8,7 +8,8 @@
8
8
  import FileUpload from '../../packages/upload'
9
9
 
10
10
  export default {
11
- name: 'FileSlot',
11
+ // eslint-disable-next-line vue/multi-word-component-names
12
+ name: 'File',
12
13
  components: { FileUpload },
13
14
  props: {
14
15
  row: {
@@ -16,7 +16,8 @@
16
16
  <script>
17
17
  import SvgIcon from '../../packages/svg-icon'
18
18
  export default {
19
- name: 'IconSlot',
19
+ // eslint-disable-next-line vue/multi-word-component-names
20
+ name: 'Icon',
20
21
  components: { SvgIcon },
21
22
  props: {
22
23
  row: {
@@ -100,6 +100,8 @@ import { cloneDeep } from 'lodash'
100
100
  import modules from '../../lib/slots'
101
101
  import ColumnRender from '../render'
102
102
 
103
+ console.log(111, modules)
104
+
103
105
  export default {
104
106
  name: 'DTable',
105
107
  components: { ...modules, ColumnRender },