agilebuilder-ui 1.1.35-sit3 → 1.1.35
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/lib/{401-cf905888.js → 401-20f1c97c.js} +1 -1
- package/lib/{404-5a6f0cf4.js → 404-36d09e24.js} +1 -1
- package/lib/{iframe-page-603a05cd.js → iframe-page-51c292dc.js} +1 -1
- package/lib/{index-78107f31.js → index-19f46200.js} +485 -549
- package/lib/super-ui.css +1 -1
- package/lib/super-ui.js +1 -1
- package/lib/super-ui.umd.cjs +48 -48
- package/lib/{tab-content-iframe-index-8f8128dd.js → tab-content-iframe-index-5d9d85c0.js} +1 -1
- package/lib/{tab-content-index-9d7fc3c7.js → tab-content-index-bd535c86.js} +1 -1
- package/lib/{tache-subprocess-history-a3e8a008.js → tache-subprocess-history-56bf69ba.js} +1 -1
- package/package.json +1 -1
- package/packages/super-grid/src/formatter.js +3 -4
- package/packages/super-grid/src/normal-column-content.vue +0 -24
- package/packages/super-grid/src/row-operation.vue +13 -21
- package/packages/super-grid/src/search-form-open.vue +1 -0
- package/packages/super-grid/src/super-grid-service.js +1 -1
- package/packages/super-grid/src/utils.js +0 -8
- package/packages/super-icon/src/index.vue +1 -7
- package/packages/utils/value-set.js +1 -147
- package/src/utils/util.js +715 -721
- package/src/views/dsc-component/Sidebar/Item.vue +2 -7
|
@@ -27,8 +27,8 @@ export default defineComponent({
|
|
|
27
27
|
const { title, hasChildren, isRoot } = props
|
|
28
28
|
const icon = props.icon
|
|
29
29
|
const vnodes = []
|
|
30
|
+
// let iconsData = [h(SvgIcon,{'icon-class': 'meun_post' })]
|
|
30
31
|
let iconsData = [h('i', { class: 'amb-iconfont amb-icon-meun_post' })]
|
|
31
|
-
// let iconsData = [h('i', { class: 'amb-color-iconfont amb-color-icon-goal-jichuweihu super-icon' })]
|
|
32
32
|
if (icon) {
|
|
33
33
|
iconsData = [h(SuperIcon, { iconValue: icon })]
|
|
34
34
|
// if (icon.indexOf('amb-icon') === 0) {
|
|
@@ -76,9 +76,4 @@ export default defineComponent({
|
|
|
76
76
|
})
|
|
77
77
|
</script>
|
|
78
78
|
|
|
79
|
-
<style lang="scss" scoped>
|
|
80
|
-
.super-icon {
|
|
81
|
-
width: 16px;
|
|
82
|
-
height: 16px;
|
|
83
|
-
}
|
|
84
|
-
</style>
|
|
79
|
+
<style lang="scss" scoped></style>
|