unika-components 1.0.278 → 1.0.280
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.
|
@@ -340,6 +340,7 @@ export declare const buttonDefaultProps: {
|
|
|
340
340
|
actionType: string;
|
|
341
341
|
url: string;
|
|
342
342
|
buttonText: string;
|
|
343
|
+
opacity: number;
|
|
343
344
|
};
|
|
344
345
|
export declare const likeDefaultProps: {
|
|
345
346
|
actionType: string;
|
|
@@ -767,6 +768,7 @@ export declare const componentsDefaultProps: {
|
|
|
767
768
|
actionType: string;
|
|
768
769
|
url: string;
|
|
769
770
|
buttonText: string;
|
|
771
|
+
opacity: number;
|
|
770
772
|
};
|
|
771
773
|
};
|
|
772
774
|
'uni-build-up': {
|
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
|
|
2
|
-
.uni-
|
|
3
|
-
|
|
2
|
+
h2.uni-text-component, p.uni-text-component {
|
|
3
|
+
margin-top: 0;
|
|
4
|
+
margin-bottom: 0;
|
|
4
5
|
}
|
|
5
|
-
.uni-
|
|
6
|
-
|
|
6
|
+
button.uni-text-component {
|
|
7
|
+
padding: 5px 10px;
|
|
8
|
+
cursor: pointer;
|
|
9
|
+
}
|
|
10
|
+
.uni-text-component {
|
|
11
|
+
box-sizing: border-box;
|
|
12
|
+
white-space: pre-wrap;
|
|
7
13
|
}
|
|
8
14
|
|
|
9
15
|
.slide-guide {
|
|
@@ -90,19 +96,25 @@ body, html {
|
|
|
90
96
|
position: static !important;
|
|
91
97
|
}
|
|
92
98
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
margin-bottom: 0;
|
|
96
|
-
}
|
|
97
|
-
button.uni-text-component {
|
|
98
|
-
padding: 5px 10px;
|
|
99
|
-
cursor: pointer;
|
|
99
|
+
.uni-image-component {
|
|
100
|
+
max-width: 100%;
|
|
100
101
|
}
|
|
101
|
-
.uni-
|
|
102
|
-
|
|
103
|
-
white-space: pre-wrap;
|
|
102
|
+
.uni-image-mask-wrapper {
|
|
103
|
+
display: inline-block;
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
+
|
|
107
|
+
.uni-calendar-component {
|
|
108
|
+
|
|
109
|
+
}
|
|
110
|
+
.slot-number {
|
|
111
|
+
position: absolute;
|
|
112
|
+
bottom: 2px;
|
|
113
|
+
left: 7px;
|
|
114
|
+
font-size: 12px;
|
|
115
|
+
color: #666
|
|
116
|
+
}
|
|
117
|
+
|
|
106
118
|
.uni-video-component {
|
|
107
119
|
position: relative;
|
|
108
120
|
text-align: center;
|
|
@@ -129,21 +141,39 @@ button.uni-text-component {
|
|
|
129
141
|
height: 100%;
|
|
130
142
|
}
|
|
131
143
|
|
|
132
|
-
.
|
|
144
|
+
.ant-input-number {
|
|
145
|
+
box-sizing: border-box;
|
|
146
|
+
margin: 0;
|
|
147
|
+
padding: 0;
|
|
148
|
+
color: rgba(0, 0, 0, 0.88);
|
|
149
|
+
font-size: 14px;
|
|
150
|
+
line-height: 1.5714285714285714;
|
|
151
|
+
list-style: none;
|
|
152
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
153
|
+
position: relative;
|
|
154
|
+
display: inline-block;
|
|
133
155
|
width: 100%;
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
156
|
+
min-width: 0;
|
|
157
|
+
background-color: #ffffff;
|
|
158
|
+
background-image: none;
|
|
159
|
+
border-width: 1px;
|
|
160
|
+
border-style: solid;
|
|
161
|
+
border-color: #d9d9d9;
|
|
162
|
+
border-radius: 6px;
|
|
163
|
+
transition: all 0.2s;
|
|
164
|
+
border: 1px solid #d9d9d9;
|
|
140
165
|
}
|
|
141
|
-
.
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
166
|
+
.ant-form-item {
|
|
167
|
+
box-sizing: border-box;
|
|
168
|
+
margin: 0;
|
|
169
|
+
padding: 0;
|
|
170
|
+
color: rgba(0, 0, 0, 0.88);
|
|
171
|
+
font-size: 14px;
|
|
172
|
+
line-height: 1.5714285714285714;
|
|
173
|
+
list-style: none;
|
|
174
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
175
|
+
margin-bottom: 0px;
|
|
176
|
+
vertical-align: top;
|
|
147
177
|
}
|
|
148
178
|
|
|
149
179
|
.like-button {
|
|
@@ -168,8 +198,10 @@ button.uni-text-component {
|
|
|
168
198
|
color: #333;
|
|
169
199
|
}
|
|
170
200
|
|
|
171
|
-
|
|
172
|
-
|
|
201
|
+
.uni-lotties-component {
|
|
202
|
+
width: 100%;
|
|
203
|
+
height: 100%;
|
|
204
|
+
}
|
|
173
205
|
|
|
174
206
|
.swiper-warp {
|
|
175
207
|
width: 100%;
|
|
@@ -184,45 +216,13 @@ button.uni-text-component {
|
|
|
184
216
|
max-width: 100%;
|
|
185
217
|
max-height: 100%;
|
|
186
218
|
}
|
|
187
|
-
|
|
188
|
-
.ant-input-number {
|
|
189
|
-
box-sizing: border-box;
|
|
190
|
-
margin: 0;
|
|
191
|
-
padding: 0;
|
|
192
|
-
color: rgba(0, 0, 0, 0.88);
|
|
193
|
-
font-size: 14px;
|
|
194
|
-
line-height: 1.5714285714285714;
|
|
195
|
-
list-style: none;
|
|
196
|
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
197
|
-
position: relative;
|
|
198
|
-
display: inline-block;
|
|
199
|
-
width: 100%;
|
|
200
|
-
min-width: 0;
|
|
201
|
-
background-color: #ffffff;
|
|
202
|
-
background-image: none;
|
|
203
|
-
border-width: 1px;
|
|
204
|
-
border-style: solid;
|
|
205
|
-
border-color: #d9d9d9;
|
|
206
|
-
border-radius: 6px;
|
|
207
|
-
transition: all 0.2s;
|
|
208
|
-
border: 1px solid #d9d9d9;
|
|
209
|
-
}
|
|
210
|
-
.ant-form-item {
|
|
211
|
-
box-sizing: border-box;
|
|
212
|
-
margin: 0;
|
|
213
|
-
padding: 0;
|
|
214
|
-
color: rgba(0, 0, 0, 0.88);
|
|
215
|
-
font-size: 14px;
|
|
216
|
-
line-height: 1.5714285714285714;
|
|
217
|
-
list-style: none;
|
|
218
|
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
219
|
-
margin-bottom: 0px;
|
|
220
|
-
vertical-align: top;
|
|
221
|
-
}
|
|
222
219
|
|
|
223
220
|
.uni-svg-component {
|
|
224
221
|
display: inline-block;
|
|
225
222
|
}
|
|
223
|
+
|
|
224
|
+
.uni-build-up-component {
|
|
225
|
+
}
|
|
226
226
|
/**
|
|
227
227
|
* Swiper 6.8.4
|
|
228
228
|
* Most modern mobile touch slider and framework with hardware accelerated transitions
|