@aplus-frontend/ui 6.39.0 → 6.39.1
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/es/index.mjs +62 -60
- package/es/src/ap-form/drawer-form/index.vue.d.ts +4 -0
- package/es/src/ap-form/modal-form/index.vue.d.ts +9 -1
- package/es/src/ap-modal/utils/createModal.mjs +34 -36
- package/es/src/business/ag-grid-modal/hooks/use-ag-grid-modal.d.ts +1 -1
- package/es/src/business/ag-grid-modal/hooks/use-ag-grid-modal.mjs +74 -37
- package/es/src/business/ag-grid-modal/hooks/use-ag-grid-select-modal.mjs +142 -99
- package/es/src/business/ag-grid-modal/index.d.ts +1 -0
- package/es/src/business/ag-grid-modal/index.mjs +4 -2
- package/es/src/business/ag-grid-modal/interface.d.ts +15 -4
- package/es/src/business/ag-grid-modal/modal-layout/index.vue.d.ts +1 -0
- package/es/src/business/ag-grid-modal/modal-layout/index.vue2.mjs +48 -44
- package/es/src/business/ag-grid-modal/selected-items/default.vue.d.ts +25 -0
- package/es/src/business/ag-grid-modal/selected-items/default.vue.mjs +4 -0
- package/es/src/business/ag-grid-modal/selected-items/default.vue2.mjs +33 -0
- package/es/src/business/ag-grid-modal/selected-items/index.d.ts +36 -0
- package/es/src/business/ag-grid-modal/selected-items/index.mjs +8 -0
- package/es/src/business/ag-grid-modal/selected-items/style/css.d.ts +0 -0
- package/es/src/business/ag-grid-modal/selected-items/style/css.js +1 -0
- package/es/src/business/ag-grid-modal/selected-items/style/index.d.ts +0 -0
- package/es/src/business/ag-grid-modal/selected-items/style/index.js +1 -0
- package/es/src/business/ag-grid-modal/utils.d.ts +2 -0
- package/es/src/business/ag-grid-modal/utils.mjs +1 -1
- package/es/src/business/ap-table-modal/table-modal.vue2.mjs +23 -23
- package/es/src/index.mjs +66 -64
- package/es/src/path-map.mjs +2 -1
- package/es/src/version.d.ts +1 -1
- package/es/src/version.mjs +1 -1
- package/lib/index.js +1 -1
- package/lib/src/ap-form/drawer-form/index.vue.d.ts +4 -0
- package/lib/src/ap-form/modal-form/index.vue.d.ts +9 -1
- package/lib/src/ap-modal/utils/createModal.js +1 -1
- package/lib/src/business/ag-grid-modal/hooks/use-ag-grid-modal.d.ts +1 -1
- package/lib/src/business/ag-grid-modal/hooks/use-ag-grid-modal.js +1 -1
- package/lib/src/business/ag-grid-modal/hooks/use-ag-grid-select-modal.js +1 -1
- package/lib/src/business/ag-grid-modal/index.d.ts +1 -0
- package/lib/src/business/ag-grid-modal/index.js +1 -1
- package/lib/src/business/ag-grid-modal/interface.d.ts +15 -4
- package/lib/src/business/ag-grid-modal/modal-layout/index.vue.d.ts +1 -0
- package/lib/src/business/ag-grid-modal/modal-layout/index.vue2.js +1 -1
- package/lib/src/business/ag-grid-modal/selected-items/default.vue.d.ts +25 -0
- package/lib/src/business/ag-grid-modal/selected-items/default.vue.js +1 -0
- package/lib/src/business/ag-grid-modal/selected-items/default.vue2.js +1 -0
- package/lib/src/business/ag-grid-modal/selected-items/index.d.ts +36 -0
- package/lib/src/business/ag-grid-modal/selected-items/index.js +1 -0
- package/lib/src/business/ag-grid-modal/selected-items/style/css.cjs +1 -0
- package/lib/src/business/ag-grid-modal/selected-items/style/css.d.ts +0 -0
- package/lib/src/business/ag-grid-modal/selected-items/style/index.cjs +1 -0
- package/lib/src/business/ag-grid-modal/selected-items/style/index.d.ts +0 -0
- package/lib/src/business/ag-grid-modal/utils.d.ts +2 -0
- package/lib/src/business/ag-grid-modal/utils.js +1 -1
- package/lib/src/business/ap-table-modal/table-modal.vue2.js +1 -1
- package/lib/src/index.js +1 -1
- package/lib/src/path-map.js +1 -1
- package/lib/src/version.d.ts +1 -1
- package/lib/src/version.js +1 -1
- package/package.json +3 -3
- package/theme/ag-grid-modal/index.css +18 -2
- package/theme/ag-grid-modal/index.less +23 -8
- package/theme/ag-grid-modal/selected-items.css +72 -0
- package/theme/ag-grid-modal/selected-items.less +34 -0
- package/theme/index.css +44 -2
- package/theme/index.less +2 -1
package/theme/index.css
CHANGED
|
@@ -5030,7 +5030,20 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
5030
5030
|
padding-block-start: 16px;
|
|
5031
5031
|
border-block-start: var(--ap-pro-card-border-line-width) var(--ap-pro-card-border-line-type) var(--ap-pro-card-border-color-split);
|
|
5032
5032
|
}
|
|
5033
|
+
.aplus-ag-grid-modal--bordered {
|
|
5034
|
+
border: 1px solid var(--ap-color-bg);
|
|
5035
|
+
padding: 16px;
|
|
5036
|
+
border-radius: 4px;
|
|
5037
|
+
--ag-grid-modal-layout-divider-offset: 32px;
|
|
5038
|
+
}
|
|
5039
|
+
.aplus-ag-grid-modal__empty {
|
|
5040
|
+
display: flex;
|
|
5041
|
+
height: 100%;
|
|
5042
|
+
justify-content: center;
|
|
5043
|
+
align-items: center;
|
|
5044
|
+
}
|
|
5033
5045
|
.aplus-ag-grid-modal--table-layout {
|
|
5046
|
+
box-sizing: border-box;
|
|
5034
5047
|
display: flex;
|
|
5035
5048
|
flex: 1;
|
|
5036
5049
|
justify-content: space-between;
|
|
@@ -5065,14 +5078,43 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
5065
5078
|
.aplus-ag-grid-modal--table-layout-right-content {
|
|
5066
5079
|
flex-grow: 1;
|
|
5067
5080
|
height: 0;
|
|
5081
|
+
overflow-y: hidden;
|
|
5082
|
+
}
|
|
5083
|
+
.aplus-ag-grid-modal--table-layout-right-content:hover {
|
|
5068
5084
|
overflow-y: auto;
|
|
5069
5085
|
}
|
|
5070
5086
|
.aplus-ag-grid-modal--table-layout-right::before {
|
|
5071
5087
|
content: '';
|
|
5072
5088
|
height: calc(100% + var(--ag-grid-modal-layout-divider-offset, 16px));
|
|
5073
5089
|
width: 1px;
|
|
5074
|
-
background-color:
|
|
5090
|
+
background-color: var(--ap-color-bg);
|
|
5075
5091
|
position: absolute;
|
|
5076
5092
|
left: 0px;
|
|
5077
|
-
top:
|
|
5093
|
+
top: -16px;
|
|
5094
|
+
}
|
|
5095
|
+
.aplus-ap-selected-items__default {
|
|
5096
|
+
display: flex;
|
|
5097
|
+
justify-content: space-between;
|
|
5098
|
+
align-items: center;
|
|
5099
|
+
padding: 8px;
|
|
5100
|
+
gap: 16px;
|
|
5101
|
+
border-radius: 4px;
|
|
5102
|
+
}
|
|
5103
|
+
.aplus-ap-selected-items__default:hover .aplus-ap-selected-items__del-icon {
|
|
5104
|
+
opacity: 1;
|
|
5105
|
+
}
|
|
5106
|
+
.aplus-ap-selected-items__default:hover {
|
|
5107
|
+
background-color: var(--ap-color-bg-2);
|
|
5108
|
+
}
|
|
5109
|
+
.aplus-ap-selected-items__default-content {
|
|
5110
|
+
width: 0px;
|
|
5111
|
+
flex-grow: 1;
|
|
5112
|
+
}
|
|
5113
|
+
.aplus-ap-selected-items__del-icon {
|
|
5114
|
+
font-size: 14px;
|
|
5115
|
+
cursor: pointer;
|
|
5116
|
+
opacity: 0;
|
|
5117
|
+
}
|
|
5118
|
+
.aplus-ap-selected-items__del-icon:hover {
|
|
5119
|
+
color: var(--ap-color-error);
|
|
5078
5120
|
}
|
package/theme/index.less
CHANGED