analytica-frontend-lib 1.0.5 → 1.0.6

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.
Files changed (2) hide show
  1. package/dist/index.css +76 -0
  2. package/package.json +1 -1
package/dist/index.css CHANGED
@@ -61,6 +61,7 @@
61
61
  --color-text-950: #171717;
62
62
  --color-background: #ffffff;
63
63
  --color-background-50: #f6f6f6;
64
+ --color-background-200: #dcdbdb;
64
65
  --color-success-300: #66b584;
65
66
  --color-success-400: #489766;
66
67
  --color-success-500: #348352;
@@ -279,6 +280,9 @@
279
280
  }
280
281
  }
281
282
  @layer utilities {
283
+ .mx-2 {
284
+ margin-inline: calc(var(--spacing) * 2);
285
+ }
282
286
  .my-4 {
283
287
  margin-block: calc(var(--spacing) * 4);
284
288
  }
@@ -300,6 +304,18 @@
300
304
  .table {
301
305
  display: table;
302
306
  }
307
+ .h-5 {
308
+ height: calc(var(--spacing) * 5);
309
+ }
310
+ .h-8 {
311
+ height: calc(var(--spacing) * 8);
312
+ }
313
+ .w-5 {
314
+ width: calc(var(--spacing) * 5);
315
+ }
316
+ .w-8 {
317
+ width: calc(var(--spacing) * 8);
318
+ }
303
319
  .transform {
304
320
  transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
305
321
  }
@@ -341,6 +357,9 @@
341
357
  border-style: var(--tw-border-style);
342
358
  border-width: 2px;
343
359
  }
360
+ .border-background-200 {
361
+ border-color: var(--color-background-200);
362
+ }
344
363
  .border-error-300 {
345
364
  border-color: var(--color-error-300);
346
365
  }
@@ -596,6 +615,19 @@
596
615
  }
597
616
  }
598
617
  }
618
+ .hover\:shadow-hard-shadow-1 {
619
+ &:hover {
620
+ @media (hover: hover) {
621
+ --tw-shadow: -2px 2px 8px var(--tw-shadow-color, rgba(38, 38, 38, 0.2));
622
+ box-shadow:
623
+ var(--tw-inset-shadow),
624
+ var(--tw-inset-ring-shadow),
625
+ var(--tw-ring-offset-shadow),
626
+ var(--tw-ring-shadow),
627
+ var(--tw-shadow);
628
+ }
629
+ }
630
+ }
599
631
  .focus\:border-2 {
600
632
  &:focus {
601
633
  border-style: var(--tw-border-style);
@@ -637,6 +669,17 @@
637
669
  color: var(--color-success-600);
638
670
  }
639
671
  }
672
+ .focus\:shadow-hard-shadow-1 {
673
+ &:focus {
674
+ --tw-shadow: -2px 2px 8px var(--tw-shadow-color, rgba(38, 38, 38, 0.2));
675
+ box-shadow:
676
+ var(--tw-inset-shadow),
677
+ var(--tw-inset-ring-shadow),
678
+ var(--tw-ring-offset-shadow),
679
+ var(--tw-ring-shadow),
680
+ var(--tw-shadow);
681
+ }
682
+ }
640
683
  .active\:border-error-700 {
641
684
  &:active {
642
685
  border-color: var(--color-error-700);
@@ -722,6 +765,11 @@
722
765
  opacity: 40%;
723
766
  }
724
767
  }
768
+ .disabled\:opacity-50 {
769
+ &:disabled {
770
+ opacity: 50%;
771
+ }
772
+ }
725
773
  }
726
774
  @layer base {
727
775
  [data-theme=dark] {
@@ -1051,6 +1099,20 @@
1051
1099
  @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
1052
1100
  @property --tw-font-weight { syntax: "*"; inherits: false; }
1053
1101
  @property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
1102
+ @property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1103
+ @property --tw-shadow-color { syntax: "*"; inherits: false; }
1104
+ @property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1105
+ @property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1106
+ @property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
1107
+ @property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1108
+ @property --tw-ring-color { syntax: "*"; inherits: false; }
1109
+ @property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1110
+ @property --tw-inset-ring-color { syntax: "*"; inherits: false; }
1111
+ @property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1112
+ @property --tw-ring-inset { syntax: "*"; inherits: false; }
1113
+ @property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
1114
+ @property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
1115
+ @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1054
1116
  @layer properties {
1055
1117
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1056
1118
  *,
@@ -1065,6 +1127,20 @@
1065
1127
  --tw-border-style: solid;
1066
1128
  --tw-font-weight: initial;
1067
1129
  --tw-outline-style: solid;
1130
+ --tw-shadow: 0 0 #0000;
1131
+ --tw-shadow-color: initial;
1132
+ --tw-shadow-alpha: 100%;
1133
+ --tw-inset-shadow: 0 0 #0000;
1134
+ --tw-inset-shadow-color: initial;
1135
+ --tw-inset-shadow-alpha: 100%;
1136
+ --tw-ring-color: initial;
1137
+ --tw-ring-shadow: 0 0 #0000;
1138
+ --tw-inset-ring-color: initial;
1139
+ --tw-inset-ring-shadow: 0 0 #0000;
1140
+ --tw-ring-inset: initial;
1141
+ --tw-ring-offset-width: 0px;
1142
+ --tw-ring-offset-color: #fff;
1143
+ --tw-ring-offset-shadow: 0 0 #0000;
1068
1144
  }
1069
1145
  }
1070
1146
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "analytica-frontend-lib",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Repositório público dos componentes utilizados nas plataformas da Analytica Ensino",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "./dist/index.js",