@wizco/fenixds-core 1.3.0 → 1.3.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,7 +1,7 @@
1
1
  {
2
2
  "name": "@wizco/fenixds-core",
3
3
  "description": "Fenix design system é um produto da Wiz com ativos de design e código de front-end para ajudar as equipes na criação dos seus produtos.",
4
- "version": "1.3.0",
4
+ "version": "1.3.2",
5
5
  "private": false,
6
6
  "sideEffects": false,
7
7
  "author": "Raul Melo Fernandez",
package/styles/core.css CHANGED
@@ -625,7 +625,7 @@ a.btn {
625
625
  button.btn.btn-outline:disabled,
626
626
  a.btn.btn-outline:disabled {
627
627
  background-color: transparent;
628
- --textBtn: var(--wco-color-neutral-50);
628
+ --textBtn: var(--wco-color-neutral-700);
629
629
  --bgBtn: var(--wco-color-neutral-700); }
630
630
  button.wco-btn.btn-loading,
631
631
  a.wco-btn.btn-loading,
@@ -744,12 +744,14 @@ a.btn {
744
744
  .wco-form-field input:required + label::after,
745
745
  .wco-form-field textarea:required + label::after,
746
746
  .wco-form-field input:invalid:not(:placeholder-shown):required + label,
747
+ .wco-form-field .form-field__input.multiSelect.required + label::after,
747
748
  .form-field:has(input:required) label::after,
748
749
  .form-field:has(select:required) label::after,
749
750
  .form-field:has(textarea:required) label::after,
750
751
  .form-field input:required + label::after,
751
752
  .form-field textarea:required + label::after,
752
- .form-field input:invalid:not(:placeholder-shown):required + label {
753
+ .form-field input:invalid:not(:placeholder-shown):required + label,
754
+ .form-field .form-field__input.multiSelect.required + label::after {
753
755
  content: " *";
754
756
  color: var(--wco-input-color-required); }
755
757
  .wco-form-field .form-field__input,
@@ -209,7 +209,7 @@ a.btn {
209
209
 
210
210
  &:disabled {
211
211
  background-color: transparent;
212
- --textBtn: var(--wco-color-neutral-50);
212
+ --textBtn: var(--wco-color-neutral-700);
213
213
  --bgBtn: var(--wco-color-neutral-700);
214
214
  }
215
215
  }
@@ -34,7 +34,8 @@
34
34
  &:has(textarea:required) label::after,
35
35
  input:required+label::after,
36
36
  textarea:required+label::after,
37
- input:invalid:not(:placeholder-shown):required+label{
37
+ input:invalid:not(:placeholder-shown):required+label,
38
+ .form-field__input.multiSelect.required+label::after{
38
39
  content: " *";
39
40
  color: var(--wco-input-color-required);
40
41
  }