arxatec-ui 0.1.27 → 0.1.28

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/dist/styles.css CHANGED
@@ -1,6 +1,133 @@
1
1
  @import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap");
2
- @import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
3
2
  @import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap");
3
+
4
+ /* Sans: archivos en ./fonts/ (en el paquete publicado van junto a dist/styles.css) */
5
+ @font-face {
6
+ font-family: "ArxatecSans";
7
+ font-style: normal;
8
+ font-weight: 100;
9
+ font-display: swap;
10
+ src: url("./fonts/BlinkMacSystemFont-Ultralight.woff2") format("woff2");
11
+ }
12
+ @font-face {
13
+ font-family: "ArxatecSans";
14
+ font-style: italic;
15
+ font-weight: 100;
16
+ font-display: swap;
17
+ src: url("./fonts/BlinkMacSystemFont-UltralightItalic.woff2") format("woff2");
18
+ }
19
+ @font-face {
20
+ font-family: "ArxatecSans";
21
+ font-style: normal;
22
+ font-weight: 200;
23
+ font-display: swap;
24
+ src: url("./fonts/BlinkMacSystemFont-Thin.woff2") format("woff2");
25
+ }
26
+ @font-face {
27
+ font-family: "ArxatecSans";
28
+ font-style: italic;
29
+ font-weight: 200;
30
+ font-display: swap;
31
+ src: url("./fonts/BlinkMacSystemFont-ThinItalic.woff2") format("woff2");
32
+ }
33
+ @font-face {
34
+ font-family: "ArxatecSans";
35
+ font-style: normal;
36
+ font-weight: 300;
37
+ font-display: swap;
38
+ src: url("./fonts/BlinkMacSystemFont-Light.woff2") format("woff2");
39
+ }
40
+ @font-face {
41
+ font-family: "ArxatecSans";
42
+ font-style: italic;
43
+ font-weight: 300;
44
+ font-display: swap;
45
+ src: url("./fonts/BlinkMacSystemFont-LightItalic.woff2") format("woff2");
46
+ }
47
+ @font-face {
48
+ font-family: "ArxatecSans";
49
+ font-style: normal;
50
+ font-weight: 400;
51
+ font-display: swap;
52
+ src: url("./fonts/BlinkMacSystemFont-Regular.woff2") format("woff2");
53
+ }
54
+ @font-face {
55
+ font-family: "ArxatecSans";
56
+ font-style: italic;
57
+ font-weight: 400;
58
+ font-display: swap;
59
+ src: url("./fonts/BlinkMacSystemFont-RegularItalic.woff2") format("woff2");
60
+ }
61
+ @font-face {
62
+ font-family: "ArxatecSans";
63
+ font-style: normal;
64
+ font-weight: 500;
65
+ font-display: swap;
66
+ src: url("./fonts/BlinkMacSystemFont-Medium.woff2") format("woff2");
67
+ }
68
+ @font-face {
69
+ font-family: "ArxatecSans";
70
+ font-style: italic;
71
+ font-weight: 500;
72
+ font-display: swap;
73
+ src: url("./fonts/BlinkMacSystemFont-MediumItalic.woff2") format("woff2");
74
+ }
75
+ @font-face {
76
+ font-family: "ArxatecSans";
77
+ font-style: normal;
78
+ font-weight: 600;
79
+ font-display: swap;
80
+ src: url("./fonts/BlinkMacSystemFont-Semibold.woff2") format("woff2");
81
+ }
82
+ @font-face {
83
+ font-family: "ArxatecSans";
84
+ font-style: italic;
85
+ font-weight: 600;
86
+ font-display: swap;
87
+ src: url("./fonts/BlinkMacSystemFont-SemiboldItalic.woff2") format("woff2");
88
+ }
89
+ @font-face {
90
+ font-family: "ArxatecSans";
91
+ font-style: normal;
92
+ font-weight: 700;
93
+ font-display: swap;
94
+ src: url("./fonts/BlinkMacSystemFont-Bold.woff2") format("woff2");
95
+ }
96
+ @font-face {
97
+ font-family: "ArxatecSans";
98
+ font-style: italic;
99
+ font-weight: 700;
100
+ font-display: swap;
101
+ src: url("./fonts/BlinkMacSystemFont-BoldItalic.woff2") format("woff2");
102
+ }
103
+ @font-face {
104
+ font-family: "ArxatecSans";
105
+ font-style: normal;
106
+ font-weight: 800;
107
+ font-display: swap;
108
+ src: url("./fonts/BlinkMacSystemFont-Heavy.woff2") format("woff2");
109
+ }
110
+ @font-face {
111
+ font-family: "ArxatecSans";
112
+ font-style: italic;
113
+ font-weight: 800;
114
+ font-display: swap;
115
+ src: url("./fonts/BlinkMacSystemFont-HeavyItalic.woff2") format("woff2");
116
+ }
117
+ @font-face {
118
+ font-family: "ArxatecSans";
119
+ font-style: normal;
120
+ font-weight: 900;
121
+ font-display: swap;
122
+ src: url("./fonts/BlinkMacSystemFont-Black.woff2") format("woff2");
123
+ }
124
+ @font-face {
125
+ font-family: "ArxatecSans";
126
+ font-style: italic;
127
+ font-weight: 900;
128
+ font-display: swap;
129
+ src: url("./fonts/BlinkMacSystemFont-BlackItalic.woff2") format("woff2");
130
+ }
4
131
  @import "tailwindcss";
5
132
  @source ".";
6
133
  @import "tw-animate-css";
@@ -10,7 +137,7 @@
10
137
 
11
138
  @theme inline {
12
139
  --font-serif: "Cormorant Garamond", serif;
13
- --font-sans: "Source Sans 3", sans-serif;
140
+ --font-sans: "ArxatecSans", ui-sans-serif, system-ui, sans-serif;
14
141
  --font-mono: "JetBrains Mono", monospace;
15
142
  --radius-sm: calc(var(--radius) - 4px);
16
143
  --radius-md: calc(var(--radius) - 2px);
@@ -361,8 +488,8 @@
361
488
  --editor-spacing-8: 2rem;
362
489
  --editor-spacing-12: 3rem;
363
490
  --editor-spacing-16: 4rem;
364
- --editor-font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
365
- Roboto, "Helvetica Neue", Arial, sans-serif;
491
+ --editor-font-sans: "ArxatecSans", ui-sans-serif, system-ui, -apple-system,
492
+ "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
366
493
  --editor-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
367
494
  monospace;
368
495
  --editor-font-serif: Georgia, Cambria, "Times New Roman", Times, serif;
@@ -614,7 +741,7 @@
614
741
  .EmojiPickerReact {
615
742
  --epr-text-color: var(--muted-foreground) !important;
616
743
  --epr-emoji-size: 24px !important;
617
- font-family: "Source Sans 3", sans-serif !important;
744
+ font-family: var(--font-sans) !important;
618
745
  font-size: 14px !important;
619
746
  font-weight: 400 !important;
620
747
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arxatec-ui",
3
- "version": "0.1.27",
3
+ "version": "0.1.28",
4
4
  "description": "React component library for building Arxatec product UIs—built on established ecosystem libraries for a consistent, efficient workflow. More at https://arxatec.net.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -76,7 +76,6 @@
76
76
  "dependencies": {
77
77
  "@base-ui/react": "^1.3.0",
78
78
  "@floating-ui/react": "^0.27.17",
79
- "@fontsource-variable/geist": "^5.2.8",
80
79
  "@radix-ui/react-avatar": "^1.1.10",
81
80
  "@radix-ui/react-checkbox": "^1.3.3",
82
81
  "@radix-ui/react-collapsible": "^1.1.12",