@alauda/ui 6.1.1-beta.8 → 6.1.2

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": "@alauda/ui",
3
- "version": "6.1.1-beta.8",
3
+ "version": "6.1.2",
4
4
  "description": "Angular UI components by Alauda Frontend Team.",
5
5
  "repository": "git+https://github.com/alauda/alauda-ui.git",
6
6
  "author": "Alauda Frontend",
package/theme/_var.scss CHANGED
@@ -157,6 +157,33 @@ $alerts-wrapper-top: 20px;
157
157
  $alerts-wrapper-right: 0;
158
158
 
159
159
  // Input
160
+ $input-size: (
161
+ large: (
162
+ height: get-size(inline-height-l),
163
+ font-size: get-size(font-size-l),
164
+ line-height: get-size(line-height-l),
165
+ icon-size: get-size(icon-size-l),
166
+ ),
167
+ medium: (
168
+ height: get-size(inline-height-m),
169
+ font-size: get-size(font-size-m),
170
+ line-height: get-size(line-height-m),
171
+ icon-size: get-size(icon-size-m),
172
+ ),
173
+ small: (
174
+ height: get-size(inline-height-s),
175
+ font-size: get-size(font-size-m),
176
+ line-height: get-size(line-height-m),
177
+ icon-size: get-size(icon-size-m),
178
+ ),
179
+ mini: (
180
+ height: get-size(inline-height-xs),
181
+ font-size: get-size(font-size-s),
182
+ line-height: get-size(line-height-s),
183
+ icon-size: get-size(icon-size-s),
184
+ ),
185
+ );
186
+
160
187
  $input-border-radius: $border-radius;
161
188
  $input-border-width: $border-width;
162
189
  $input-border-style: $border-style;