form-driver 0.1.10 → 0.1.12
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/dist/m3.css +12 -5
- package/dist/m3.js +1 -1
- package/es/m3.css +12 -5
- package/es/m3.js +12 -2
- package/lib/m3.css +12 -5
- package/lib/m3.js +12 -2
- package/package.json +1 -1
- package/src/ui/editor/basic/ARate.less +34 -0
- package/src/ui/editor/basic/ARate.tsx +3 -3
- package/src/ui/editor/basic/NPS.tsx +6 -6
- package/types/src/ui/editor/basic/NPS.d.ts +1 -1
- package/src/ui/editor/basic/NPS.less +0 -26
package/dist/m3.css
CHANGED
|
@@ -134,18 +134,25 @@ table.M3_table tr:last-child td {
|
|
|
134
134
|
.ant-rate .ant-rate-star {
|
|
135
135
|
flex: 1;
|
|
136
136
|
}
|
|
137
|
-
|
|
138
137
|
.m3-nps-wrapper .m3-nps-tip {
|
|
139
138
|
overflow: hidden;
|
|
140
139
|
text-align: center;
|
|
141
140
|
padding-left: 15px;
|
|
142
141
|
padding-right: 15px;
|
|
142
|
+
display: flex;
|
|
143
143
|
}
|
|
144
|
-
.m3-nps-wrapper .m3-nps-tip
|
|
145
|
-
|
|
144
|
+
.m3-nps-wrapper .m3-nps-tip .m3-nps-tip-left {
|
|
145
|
+
flex: 1;
|
|
146
|
+
text-align: left;
|
|
146
147
|
}
|
|
147
|
-
.m3-nps-wrapper .m3-nps-tip
|
|
148
|
-
|
|
148
|
+
.m3-nps-wrapper .m3-nps-tip .m3-nps-tip-center {
|
|
149
|
+
flex: 1;
|
|
150
|
+
padding: 0 10px;
|
|
151
|
+
text-align: center;
|
|
152
|
+
}
|
|
153
|
+
.m3-nps-wrapper .m3-nps-tip .m3-nps-tip-right {
|
|
154
|
+
flex: 1;
|
|
155
|
+
text-align: right;
|
|
149
156
|
}
|
|
150
157
|
.m3-nps-wrapper .ant-rate {
|
|
151
158
|
display: flex !important;
|