@acorex/styles 21.0.1-next.60 → 21.0.1-next.62

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.
@@ -1,5 +1,5 @@
1
1
  .ax-editor-container {
2
- @apply border-border-default rounded-default relative flex h-9 w-full items-center justify-between gap-2 overflow-hidden border px-2 text-sm;
2
+ @apply border-default rounded-default relative flex h-9 w-full items-center justify-between gap-2 overflow-hidden border px-2 text-sm;
3
3
  }
4
4
 
5
5
  .ax-editor-container .ax-icon {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/styles",
3
- "version": "21.0.1-next.60",
3
+ "version": "21.0.1-next.62",
4
4
  "main": "index.css",
5
5
  "author": "Ali Safari",
6
6
  "license": "ISC",
@@ -879,6 +879,48 @@ html.dark {
879
879
  --color-border-accent-darkest: rgba(var(--ax-sys-color-border-accent-darkest-surface));
880
880
  }
881
881
 
882
+ @utility bg-default {
883
+ background-color: var(--color-bg-default);
884
+ }
885
+
886
+ @utility text-default {
887
+ color: var(--color-text-default);
888
+ }
889
+
890
+ @utility border-default {
891
+ border-color: var(--color-border-default);
892
+ }
893
+
894
+ @utility text {
895
+ color: var(--color-text-default);
896
+ }
897
+
898
+ @utility border-s-default {
899
+ border-inline-start-width: 1px;
900
+ }
901
+
902
+ @utility border-e-default {
903
+ border-inline-end-width: 1px;
904
+ }
905
+
906
+ @utility border-t-default {
907
+ border-top-width: 1px;
908
+ }
909
+
910
+ @utility border-b-default {
911
+ border-bottom-width: 1px;
912
+ }
913
+
914
+ @utility border-x-default {
915
+ border-left-width: 1px;
916
+ border-right-width: 1px;
917
+ }
918
+
919
+ @utility border-y-default {
920
+ border-top-width: 1px;
921
+ border-bottom-width: 1px;
922
+ }
923
+
882
924
  /* Primary Surfaces */
883
925
 
884
926
  @utility primary-lightest-surface {