@politicalwatch/tipi-uikit 1.9.21 → 1.9.23

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": "@politicalwatch/tipi-uikit",
3
- "version": "1.9.21",
3
+ "version": "1.9.23",
4
4
  "main": "src/components/index.js",
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -1,5 +1,5 @@
1
1
  body {
2
- @include tbody;
2
+ @include mixins.tbody;
3
3
 
4
4
  -webkit-font-smoothing: antialiased;
5
5
  -moz-osx-font-smoothing: grayscale;
@@ -1,9 +1,8 @@
1
1
  input {
2
-
3
- &[type=text],
4
- &[type=email],
5
- &[type=password] {
6
- @include tbody;
2
+ &[type='text'],
3
+ &[type='email'],
4
+ &[type='password'] {
5
+ @include mixins.tbody;
7
6
 
8
7
  display: block;
9
8
  width: 100%;
@@ -17,7 +16,7 @@ input {
17
16
  }
18
17
 
19
18
  textarea {
20
- @include tbody;
19
+ @include mixins.tbody;
21
20
 
22
21
  display: block;
23
22
  width: 100%;
@@ -5,7 +5,7 @@
5
5
  padding: rem($spacer-unit * 2);
6
6
 
7
7
  input {
8
- @include tbody;
8
+ @include mixins.tbody;
9
9
 
10
10
  outline: none;
11
11
  border: none;
@@ -14,7 +14,7 @@
14
14
  padding: 0;
15
15
 
16
16
  &::placeholder {
17
- @include tbody;
17
+ @include mixins.tbody;
18
18
 
19
19
  color: $secondary;
20
20
  }
@@ -80,7 +80,7 @@
80
80
  }
81
81
 
82
82
  select {
83
- @include tbody;
83
+ @include mixins.tbody;
84
84
 
85
85
  outline: none;
86
86
  border: none;
@@ -91,7 +91,7 @@
91
91
  width: 110%;
92
92
 
93
93
  &::placeholder {
94
- @include tbody;
94
+ @include mixins.tbody;
95
95
 
96
96
  color: $secondary;
97
97
  }
@@ -128,7 +128,7 @@
128
128
 
129
129
  &__single,
130
130
  &__placeholder {
131
- @include tbody;
131
+ @include mixins.tbody;
132
132
 
133
133
  margin: 0;
134
134
  padding: 0;
@@ -165,7 +165,7 @@
165
165
  }
166
166
 
167
167
  &__option {
168
- @include tbody;
168
+ @include mixins.tbody;
169
169
 
170
170
  display: block;
171
171
  border: solid 1px $secondary;
@@ -267,7 +267,7 @@
267
267
  position: relative;
268
268
 
269
269
  input {
270
- @include tbody;
270
+ @include mixins.tbody;
271
271
 
272
272
  outline: none;
273
273
  border: none;
@@ -278,7 +278,7 @@
278
278
  padding: 0;
279
279
 
280
280
  &::placeholder {
281
- @include tbody;
281
+ @include mixins.tbody;
282
282
 
283
283
  color: $secondary;
284
284
  }
@@ -9,7 +9,7 @@
9
9
  }
10
10
 
11
11
  &__title {
12
- @include tbody;
12
+ @include mixins.tbody;
13
13
 
14
14
  margin-bottom: rem($spacer-unit * 2);
15
15
 
@@ -31,7 +31,7 @@
31
31
  }
32
32
 
33
33
  .u-text-tbody {
34
- @include tbody;
34
+ @include mixins.tbody;
35
35
  }
36
36
 
37
37
  .u-text-tbody2 {
@@ -1,10 +1,10 @@
1
- @use '01_settings/settings__variables' as *;
1
+ @use '01_settings/settings__variables';
2
2
  @use '01_settings/settings__breakpoints';
3
3
  @use '01_settings/settings__colors';
4
4
  @use '01_settings/settings__fonts';
5
5
  @use '01_settings/settings__icons';
6
- @use '02_tools/tools__functions' as *;
7
- @use '02_tools/tools__mixins' as *;
6
+ @use '02_tools/tools__functions';
7
+ @use '02_tools/tools__mixins' as mixins;
8
8
  @use '03_generic/generic__normalize';
9
9
  @use '03_generic/generic__box-sizing';
10
10
  @use '03_generic/generic__global';