@itcase/forms 1.1.23 → 1.1.26

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/README.md CHANGED
@@ -1,14 +1,14 @@
1
1
  # Forms components and functions
2
2
 
3
3
  ## Fields
4
- * **CheckboxField**
5
- * **DatePickerField**
4
+ * **FormFieldCheckbox**
5
+ * **FormFieldDatePicker**
6
6
  * **FileInput** and **FileField**
7
7
  * **InputTextField**
8
8
  * **RadioGroupField**
9
9
  * **SelectButtonField**
10
- * **SelectField**, **CheckboxOption** and **ValueContainer**
11
- * **TextAreaField**
10
+ * **FormFieldSelect**, **CheckboxOption** and **ValueContainer**
11
+ * **FormFieldTextarea**
12
12
 
13
13
  ## Field wrapper
14
14
  * **FieldWrapper**
@@ -70,26 +70,6 @@
70
70
  }
71
71
  }
72
72
  }
73
- .form-field {
74
- &_type {
75
- &_normal {
76
- position: relative;
77
- @each $size in xl, l, m, s {
78
- &.form-field_size_$(size) {
79
- gap: var(--form-field_type_normal_$(size)-gap);
80
- padding: var(--form-field_type_normal_$(size)-padding);
81
- margin: var(--form-field_type_normal_$(size)-margin);
82
- ^^^&__label {
83
- padding: var(--form-field_type_normal_$(size)-label-padding);
84
- }
85
- ^^^&__message {
86
- padding: var(--form-field_type_normal_$(size)-message-padding);
87
- }
88
- }
89
- }
90
- }
91
- }
92
- }
93
73
  .form-field {
94
74
  &_type {
95
75
  &_classic {
@@ -162,9 +142,3 @@
162
142
  }
163
143
  }
164
144
  }
165
- :root {
166
- --form-field_type_normal_m-gap: 0.5m;
167
- --form-field_type_normal_m-padding: 1.5m 0;
168
- --form-field_type_normal_m-label-padding: 0 0.5m;
169
- --form-field_type_normal_m-message-padding: 0 1.5m;
170
- }