vue2-client 1.18.67 → 1.18.69

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": "vue2-client",
3
- "version": "1.18.67",
3
+ "version": "1.18.69",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
@@ -29,7 +29,9 @@ const wrapperClassObject = computed(() => {
29
29
  'label-text-justify',
30
30
  'simple-inline',
31
31
  'label-justify',
32
- 'charge-form'
32
+ 'charge-form',
33
+ 'mini-form',
34
+ 'content-right'
33
35
  ]
34
36
  for (const key of booleanStyleKeys) {
35
37
  const val = a[key]
@@ -77,6 +79,27 @@ defineExpose({
77
79
  :deep(.ant-form-item) {
78
80
  margin-bottom: 4px;
79
81
  }
82
+ &.h-form-mini-form {
83
+ :deep(.ant-form-inline) {
84
+ .ant-row-flex {
85
+ .ant-col {
86
+ flex: auto !important;
87
+ max-width: 250px !important;
88
+ }
89
+ }
90
+ }
91
+ :deep(.ant-form-item){
92
+ margin-right: 0px !important;
93
+ }
94
+ }
95
+
96
+ &.h-form-content-right {
97
+ :deep(.ant-form-inline) {
98
+ .ant-row-flex {
99
+ justify-content: right;
100
+ }
101
+ }
102
+ }
80
103
 
81
104
  // query-conditions 样式
82
105
  &.h-form-query-conditions {