@nasa-jpl/stellar-svelte 2.0.0-alpha.36 → 2.0.0-alpha.39

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.
@@ -15,7 +15,12 @@ declare const buttonVariants: import("tailwind-variants").TVReturnType<{
15
15
  xs: string;
16
16
  sm: string;
17
17
  lg: string;
18
+ xl: string;
18
19
  icon: string;
20
+ 'icon-xs': string;
21
+ 'icon-sm': string;
22
+ 'icon-lg': string;
23
+ 'icon-xl': string;
19
24
  };
20
25
  }, undefined, "inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50", import("tailwind-variants/dist/config").TVConfig<{
21
26
  variant: {
@@ -31,7 +36,12 @@ declare const buttonVariants: import("tailwind-variants").TVReturnType<{
31
36
  xs: string;
32
37
  sm: string;
33
38
  lg: string;
39
+ xl: string;
34
40
  icon: string;
41
+ 'icon-xs': string;
42
+ 'icon-sm': string;
43
+ 'icon-lg': string;
44
+ 'icon-xl': string;
35
45
  };
36
46
  }, {
37
47
  variant: {
@@ -47,7 +57,12 @@ declare const buttonVariants: import("tailwind-variants").TVReturnType<{
47
57
  xs: string;
48
58
  sm: string;
49
59
  lg: string;
60
+ xl: string;
50
61
  icon: string;
62
+ 'icon-xs': string;
63
+ 'icon-sm': string;
64
+ 'icon-lg': string;
65
+ 'icon-xl': string;
51
66
  };
52
67
  }>, {
53
68
  variant: {
@@ -63,7 +78,12 @@ declare const buttonVariants: import("tailwind-variants").TVReturnType<{
63
78
  xs: string;
64
79
  sm: string;
65
80
  lg: string;
81
+ xl: string;
66
82
  icon: string;
83
+ 'icon-xs': string;
84
+ 'icon-sm': string;
85
+ 'icon-lg': string;
86
+ 'icon-xl': string;
67
87
  };
68
88
  }, undefined, import("tailwind-variants").TVReturnType<{
69
89
  variant: {
@@ -79,7 +99,12 @@ declare const buttonVariants: import("tailwind-variants").TVReturnType<{
79
99
  xs: string;
80
100
  sm: string;
81
101
  lg: string;
102
+ xl: string;
82
103
  icon: string;
104
+ 'icon-xs': string;
105
+ 'icon-sm': string;
106
+ 'icon-lg': string;
107
+ 'icon-xl': string;
83
108
  };
84
109
  }, undefined, "inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50", import("tailwind-variants/dist/config").TVConfig<{
85
110
  variant: {
@@ -95,7 +120,12 @@ declare const buttonVariants: import("tailwind-variants").TVReturnType<{
95
120
  xs: string;
96
121
  sm: string;
97
122
  lg: string;
123
+ xl: string;
98
124
  icon: string;
125
+ 'icon-xs': string;
126
+ 'icon-sm': string;
127
+ 'icon-lg': string;
128
+ 'icon-xl': string;
99
129
  };
100
130
  }, {
101
131
  variant: {
@@ -111,7 +141,12 @@ declare const buttonVariants: import("tailwind-variants").TVReturnType<{
111
141
  xs: string;
112
142
  sm: string;
113
143
  lg: string;
144
+ xl: string;
114
145
  icon: string;
146
+ 'icon-xs': string;
147
+ 'icon-sm': string;
148
+ 'icon-lg': string;
149
+ 'icon-xl': string;
115
150
  };
116
151
  }>, unknown, unknown, undefined>>;
117
152
  type Variant = VariantProps<typeof buttonVariants>['variant'];
@@ -12,11 +12,16 @@ const buttonVariants = tv({
12
12
  link: 'text-primary underline-offset-4 hover:underline',
13
13
  },
14
14
  size: {
15
- default: 'h-6 px-2 py-2',
15
+ default: 'h-6 px-2 py-2 text-xs',
16
16
  xs: 'h-4 px-1 py-0.5 rounded-sm text-xs',
17
- sm: 'h-4 rounded-md px-1.5 py-2.5',
18
- lg: 'h-8 rounded-lg px-4',
19
- icon: 'h-10 w-10',
17
+ sm: 'h-5 px-1.5 py-1 rounded-md text-xs',
18
+ lg: 'h-8 rounded-md px-4',
19
+ xl: 'h-10 rounded-md px-4',
20
+ icon: 'h-6 w-6',
21
+ 'icon-xs': 'h-4 w-4',
22
+ 'icon-sm': 'h-5 w-5',
23
+ 'icon-lg': 'h-8 w-8',
24
+ 'icon-xl': 'h-10 w-10',
20
25
  },
21
26
  },
22
27
  defaultVariants: {
@@ -1,4 +1,4 @@
1
- import { ModeWatcher } from "mode-watcher";
2
- import ThemeSwitcherButton from "./theme-switcher-button.svelte";
3
- import ThemeSwitcherDropdown from "./theme-switcher-dropdown.svelte";
1
+ import { ModeWatcher } from 'mode-watcher';
2
+ import ThemeSwitcherButton from './theme-switcher-button.svelte';
3
+ import ThemeSwitcherDropdown from './theme-switcher-dropdown.svelte';
4
4
  export { ModeWatcher, ThemeSwitcherButton, ThemeSwitcherDropdown };
@@ -1,4 +1,4 @@
1
- import { ModeWatcher } from "mode-watcher";
2
- import ThemeSwitcherButton from "./theme-switcher-button.svelte";
3
- import ThemeSwitcherDropdown from "./theme-switcher-dropdown.svelte";
1
+ import { ModeWatcher } from 'mode-watcher';
2
+ import ThemeSwitcherButton from './theme-switcher-button.svelte';
3
+ import ThemeSwitcherDropdown from './theme-switcher-dropdown.svelte';
4
4
  export { ModeWatcher, ThemeSwitcherButton, ThemeSwitcherDropdown };
@@ -1,15 +1,14 @@
1
- <script>import Sun from "lucide-svelte/icons/sun";
2
- import Moon from "lucide-svelte/icons/moon";
3
- import { toggleMode } from "mode-watcher";
1
+ <script>import Moon from "lucide-svelte/icons/moon";
2
+ import Sun from "lucide-svelte/icons/sun";
4
3
  import { Button } from "../button/index.js";
4
+ import { toggleMode } from "mode-watcher";
5
+ let className = void 0;
6
+ export let size = "icon-lg";
7
+ export { className as class };
5
8
  </script>
6
9
 
7
- <Button on:click={toggleMode} variant="outline" size="icon">
8
- <Sun
9
- class="h-[1.2rem] w-[1.2rem] rotate-0 scale-100 transition-all dark:-rotate-90 dark:scale-0"
10
- />
11
- <Moon
12
- class="absolute h-[1.2rem] w-[1.2rem] rotate-90 scale-0 transition-all dark:rotate-0 dark:scale-100"
13
- />
14
- <span class="sr-only">Toggle theme</span>
10
+ <Button on:click={toggleMode} variant="outline" {size} class={className}>
11
+ <Sun class="h-[1.2rem] w-[1.2rem] rotate-0 scale-100 transition-all dark:-rotate-90 dark:scale-0" />
12
+ <Moon class="absolute h-[1.2rem] w-[1.2rem] rotate-90 scale-0 transition-all dark:rotate-0 dark:scale-100" />
13
+ <span class="sr-only">Toggle theme</span>
15
14
  </Button>
@@ -1,6 +1,9 @@
1
1
  import { SvelteComponent } from "svelte";
2
2
  declare const __propDef: {
3
- props: Record<string, never>;
3
+ props: {
4
+ size?: "icon-xs" | "icon-sm" | "icon" | "icon-lg" | "icon-xl" | undefined;
5
+ class?: string | undefined | null;
6
+ };
4
7
  events: {
5
8
  [evt: string]: CustomEvent<any>;
6
9
  };
@@ -1,13 +1,16 @@
1
- <script>import Sun from "lucide-svelte/icons/sun";
1
+ <script>import { Button } from "../button/index.js";
2
+ import * as DropdownMenu from "../dropdown-menu/index.js";
2
3
  import Moon from "lucide-svelte/icons/moon";
4
+ import Sun from "lucide-svelte/icons/sun";
3
5
  import { resetMode, setMode } from "mode-watcher";
4
- import * as DropdownMenu from "../dropdown-menu/index.js";
5
- import { Button } from "../button/index.js";
6
+ let className = void 0;
7
+ export let size = "icon-lg";
8
+ export { className as class };
6
9
  </script>
7
10
 
8
11
  <DropdownMenu.Root>
9
12
  <DropdownMenu.Trigger asChild let:builder>
10
- <Button builders={[builder]} variant="ghost" size="icon">
13
+ <Button builders={[builder]} variant="ghost" {size} class={className}>
11
14
  <Sun class="h-[1.2rem] w-[1.2rem] rotate-0 scale-100 transition-all dark:-rotate-90 dark:scale-0" />
12
15
  <Moon class="absolute h-[1.2rem] w-[1.2rem] rotate-90 scale-0 transition-all dark:rotate-0 dark:scale-100" />
13
16
  <span class="sr-only">Toggle theme</span>
@@ -1,6 +1,9 @@
1
1
  import { SvelteComponent } from "svelte";
2
2
  declare const __propDef: {
3
- props: Record<string, never>;
3
+ props: {
4
+ size?: "icon-xs" | "icon-sm" | "icon" | "icon-lg" | "icon-xl" | undefined;
5
+ class?: string | undefined | null;
6
+ };
4
7
  events: {
5
8
  [evt: string]: CustomEvent<any>;
6
9
  };
package/dist/font.css ADDED
@@ -0,0 +1,1007 @@
1
+ /* inter-cyrillic-ext-100-normal */
2
+
3
+ @font-face {
4
+ font-family: 'Inter';
5
+
6
+ font-style: normal;
7
+
8
+ font-display: swap;
9
+
10
+ font-weight: 100;
11
+
12
+ src: url(./files/inter-cyrillic-ext-100-normal.woff2) format('woff2'), url(./files/inter-cyrillic-ext-100-normal.woff) format('woff');
13
+
14
+ unicode-range: U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
15
+ }
16
+
17
+ /* inter-cyrillic-100-normal */
18
+
19
+ @font-face {
20
+ font-family: 'Inter';
21
+
22
+ font-style: normal;
23
+
24
+ font-display: swap;
25
+
26
+ font-weight: 100;
27
+
28
+ src: url(./files/inter-cyrillic-100-normal.woff2) format('woff2'), url(./files/inter-cyrillic-100-normal.woff) format('woff');
29
+
30
+ unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
31
+ }
32
+
33
+ /* inter-greek-ext-100-normal */
34
+
35
+ @font-face {
36
+ font-family: 'Inter';
37
+
38
+ font-style: normal;
39
+
40
+ font-display: swap;
41
+
42
+ font-weight: 100;
43
+
44
+ src: url(./files/inter-greek-ext-100-normal.woff2) format('woff2'), url(./files/inter-greek-ext-100-normal.woff) format('woff');
45
+
46
+ unicode-range: U+1F00-1FFF;
47
+ }
48
+
49
+ /* inter-greek-100-normal */
50
+
51
+ @font-face {
52
+ font-family: 'Inter';
53
+
54
+ font-style: normal;
55
+
56
+ font-display: swap;
57
+
58
+ font-weight: 100;
59
+
60
+ src: url(./files/inter-greek-100-normal.woff2) format('woff2'), url(./files/inter-greek-100-normal.woff) format('woff');
61
+
62
+ unicode-range: U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF;
63
+ }
64
+
65
+ /* inter-vietnamese-100-normal */
66
+
67
+ @font-face {
68
+ font-family: 'Inter';
69
+
70
+ font-style: normal;
71
+
72
+ font-display: swap;
73
+
74
+ font-weight: 100;
75
+
76
+ src: url(./files/inter-vietnamese-100-normal.woff2) format('woff2'), url(./files/inter-vietnamese-100-normal.woff) format('woff');
77
+
78
+ unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
79
+ }
80
+
81
+ /* inter-latin-ext-100-normal */
82
+
83
+ @font-face {
84
+ font-family: 'Inter';
85
+
86
+ font-style: normal;
87
+
88
+ font-display: swap;
89
+
90
+ font-weight: 100;
91
+
92
+ src: url(./files/inter-latin-ext-100-normal.woff2) format('woff2'), url(./files/inter-latin-ext-100-normal.woff) format('woff');
93
+
94
+ unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
95
+ }
96
+
97
+ /* inter-latin-100-normal */
98
+
99
+ @font-face {
100
+ font-family: 'Inter';
101
+
102
+ font-style: normal;
103
+
104
+ font-display: swap;
105
+
106
+ font-weight: 100;
107
+
108
+ src: url(./files/inter-latin-100-normal.woff2) format('woff2'), url(./files/inter-latin-100-normal.woff) format('woff');
109
+
110
+ unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
111
+ }
112
+
113
+ /* inter-cyrillic-ext-200-normal */
114
+
115
+ @font-face {
116
+ font-family: 'Inter';
117
+
118
+ font-style: normal;
119
+
120
+ font-display: swap;
121
+
122
+ font-weight: 200;
123
+
124
+ src: url(./files/inter-cyrillic-ext-200-normal.woff2) format('woff2'), url(./files/inter-cyrillic-ext-200-normal.woff) format('woff');
125
+
126
+ unicode-range: U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
127
+ }
128
+
129
+ /* inter-cyrillic-200-normal */
130
+
131
+ @font-face {
132
+ font-family: 'Inter';
133
+
134
+ font-style: normal;
135
+
136
+ font-display: swap;
137
+
138
+ font-weight: 200;
139
+
140
+ src: url(./files/inter-cyrillic-200-normal.woff2) format('woff2'), url(./files/inter-cyrillic-200-normal.woff) format('woff');
141
+
142
+ unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
143
+ }
144
+
145
+ /* inter-greek-ext-200-normal */
146
+
147
+ @font-face {
148
+ font-family: 'Inter';
149
+
150
+ font-style: normal;
151
+
152
+ font-display: swap;
153
+
154
+ font-weight: 200;
155
+
156
+ src: url(./files/inter-greek-ext-200-normal.woff2) format('woff2'), url(./files/inter-greek-ext-200-normal.woff) format('woff');
157
+
158
+ unicode-range: U+1F00-1FFF;
159
+ }
160
+
161
+ /* inter-greek-200-normal */
162
+
163
+ @font-face {
164
+ font-family: 'Inter';
165
+
166
+ font-style: normal;
167
+
168
+ font-display: swap;
169
+
170
+ font-weight: 200;
171
+
172
+ src: url(./files/inter-greek-200-normal.woff2) format('woff2'), url(./files/inter-greek-200-normal.woff) format('woff');
173
+
174
+ unicode-range: U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF;
175
+ }
176
+
177
+ /* inter-vietnamese-200-normal */
178
+
179
+ @font-face {
180
+ font-family: 'Inter';
181
+
182
+ font-style: normal;
183
+
184
+ font-display: swap;
185
+
186
+ font-weight: 200;
187
+
188
+ src: url(./files/inter-vietnamese-200-normal.woff2) format('woff2'), url(./files/inter-vietnamese-200-normal.woff) format('woff');
189
+
190
+ unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
191
+ }
192
+
193
+ /* inter-latin-ext-200-normal */
194
+
195
+ @font-face {
196
+ font-family: 'Inter';
197
+
198
+ font-style: normal;
199
+
200
+ font-display: swap;
201
+
202
+ font-weight: 200;
203
+
204
+ src: url(./files/inter-latin-ext-200-normal.woff2) format('woff2'), url(./files/inter-latin-ext-200-normal.woff) format('woff');
205
+
206
+ unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
207
+ }
208
+
209
+ /* inter-latin-200-normal */
210
+
211
+ @font-face {
212
+ font-family: 'Inter';
213
+
214
+ font-style: normal;
215
+
216
+ font-display: swap;
217
+
218
+ font-weight: 200;
219
+
220
+ src: url(./files/inter-latin-200-normal.woff2) format('woff2'), url(./files/inter-latin-200-normal.woff) format('woff');
221
+
222
+ unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
223
+ }
224
+
225
+ /* inter-cyrillic-ext-300-normal */
226
+
227
+ @font-face {
228
+ font-family: 'Inter';
229
+
230
+ font-style: normal;
231
+
232
+ font-display: swap;
233
+
234
+ font-weight: 300;
235
+
236
+ src: url(./files/inter-cyrillic-ext-300-normal.woff2) format('woff2'), url(./files/inter-cyrillic-ext-300-normal.woff) format('woff');
237
+
238
+ unicode-range: U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
239
+ }
240
+
241
+ /* inter-cyrillic-300-normal */
242
+
243
+ @font-face {
244
+ font-family: 'Inter';
245
+
246
+ font-style: normal;
247
+
248
+ font-display: swap;
249
+
250
+ font-weight: 300;
251
+
252
+ src: url(./files/inter-cyrillic-300-normal.woff2) format('woff2'), url(./files/inter-cyrillic-300-normal.woff) format('woff');
253
+
254
+ unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
255
+ }
256
+
257
+ /* inter-greek-ext-300-normal */
258
+
259
+ @font-face {
260
+ font-family: 'Inter';
261
+
262
+ font-style: normal;
263
+
264
+ font-display: swap;
265
+
266
+ font-weight: 300;
267
+
268
+ src: url(./files/inter-greek-ext-300-normal.woff2) format('woff2'), url(./files/inter-greek-ext-300-normal.woff) format('woff');
269
+
270
+ unicode-range: U+1F00-1FFF;
271
+ }
272
+
273
+ /* inter-greek-300-normal */
274
+
275
+ @font-face {
276
+ font-family: 'Inter';
277
+
278
+ font-style: normal;
279
+
280
+ font-display: swap;
281
+
282
+ font-weight: 300;
283
+
284
+ src: url(./files/inter-greek-300-normal.woff2) format('woff2'), url(./files/inter-greek-300-normal.woff) format('woff');
285
+
286
+ unicode-range: U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF;
287
+ }
288
+
289
+ /* inter-vietnamese-300-normal */
290
+
291
+ @font-face {
292
+ font-family: 'Inter';
293
+
294
+ font-style: normal;
295
+
296
+ font-display: swap;
297
+
298
+ font-weight: 300;
299
+
300
+ src: url(./files/inter-vietnamese-300-normal.woff2) format('woff2'), url(./files/inter-vietnamese-300-normal.woff) format('woff');
301
+
302
+ unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
303
+ }
304
+
305
+ /* inter-latin-ext-300-normal */
306
+
307
+ @font-face {
308
+ font-family: 'Inter';
309
+
310
+ font-style: normal;
311
+
312
+ font-display: swap;
313
+
314
+ font-weight: 300;
315
+
316
+ src: url(./files/inter-latin-ext-300-normal.woff2) format('woff2'), url(./files/inter-latin-ext-300-normal.woff) format('woff');
317
+
318
+ unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
319
+ }
320
+
321
+ /* inter-latin-300-normal */
322
+
323
+ @font-face {
324
+ font-family: 'Inter';
325
+
326
+ font-style: normal;
327
+
328
+ font-display: swap;
329
+
330
+ font-weight: 300;
331
+
332
+ src: url(./files/inter-latin-300-normal.woff2) format('woff2'), url(./files/inter-latin-300-normal.woff) format('woff');
333
+
334
+ unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
335
+ }
336
+
337
+ /* inter-cyrillic-ext-400-normal */
338
+
339
+ @font-face {
340
+ font-family: 'Inter';
341
+
342
+ font-style: normal;
343
+
344
+ font-display: swap;
345
+
346
+ font-weight: 400;
347
+
348
+ src: url(./files/inter-cyrillic-ext-400-normal.woff2) format('woff2'), url(./files/inter-cyrillic-ext-400-normal.woff) format('woff');
349
+
350
+ unicode-range: U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
351
+ }
352
+
353
+ /* inter-cyrillic-400-normal */
354
+
355
+ @font-face {
356
+ font-family: 'Inter';
357
+
358
+ font-style: normal;
359
+
360
+ font-display: swap;
361
+
362
+ font-weight: 400;
363
+
364
+ src: url(./files/inter-cyrillic-400-normal.woff2) format('woff2'), url(./files/inter-cyrillic-400-normal.woff) format('woff');
365
+
366
+ unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
367
+ }
368
+
369
+ /* inter-greek-ext-400-normal */
370
+
371
+ @font-face {
372
+ font-family: 'Inter';
373
+
374
+ font-style: normal;
375
+
376
+ font-display: swap;
377
+
378
+ font-weight: 400;
379
+
380
+ src: url(./files/inter-greek-ext-400-normal.woff2) format('woff2'), url(./files/inter-greek-ext-400-normal.woff) format('woff');
381
+
382
+ unicode-range: U+1F00-1FFF;
383
+ }
384
+
385
+ /* inter-greek-400-normal */
386
+
387
+ @font-face {
388
+ font-family: 'Inter';
389
+
390
+ font-style: normal;
391
+
392
+ font-display: swap;
393
+
394
+ font-weight: 400;
395
+
396
+ src: url(./files/inter-greek-400-normal.woff2) format('woff2'), url(./files/inter-greek-400-normal.woff) format('woff');
397
+
398
+ unicode-range: U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF;
399
+ }
400
+
401
+ /* inter-vietnamese-400-normal */
402
+
403
+ @font-face {
404
+ font-family: 'Inter';
405
+
406
+ font-style: normal;
407
+
408
+ font-display: swap;
409
+
410
+ font-weight: 400;
411
+
412
+ src: url(./files/inter-vietnamese-400-normal.woff2) format('woff2'), url(./files/inter-vietnamese-400-normal.woff) format('woff');
413
+
414
+ unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
415
+ }
416
+
417
+ /* inter-latin-ext-400-normal */
418
+
419
+ @font-face {
420
+ font-family: 'Inter';
421
+
422
+ font-style: normal;
423
+
424
+ font-display: swap;
425
+
426
+ font-weight: 400;
427
+
428
+ src: url(./files/inter-latin-ext-400-normal.woff2) format('woff2'), url(./files/inter-latin-ext-400-normal.woff) format('woff');
429
+
430
+ unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
431
+ }
432
+
433
+ /* inter-latin-400-normal */
434
+
435
+ @font-face {
436
+ font-family: 'Inter';
437
+
438
+ font-style: normal;
439
+
440
+ font-display: swap;
441
+
442
+ font-weight: 400;
443
+
444
+ src: url(./files/inter-latin-400-normal.woff2) format('woff2'), url(./files/inter-latin-400-normal.woff) format('woff');
445
+
446
+ unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
447
+ }
448
+
449
+ /* inter-cyrillic-ext-500-normal */
450
+
451
+ @font-face {
452
+ font-family: 'Inter';
453
+
454
+ font-style: normal;
455
+
456
+ font-display: swap;
457
+
458
+ font-weight: 500;
459
+
460
+ src: url(./files/inter-cyrillic-ext-500-normal.woff2) format('woff2'), url(./files/inter-cyrillic-ext-500-normal.woff) format('woff');
461
+
462
+ unicode-range: U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
463
+ }
464
+
465
+ /* inter-cyrillic-500-normal */
466
+
467
+ @font-face {
468
+ font-family: 'Inter';
469
+
470
+ font-style: normal;
471
+
472
+ font-display: swap;
473
+
474
+ font-weight: 500;
475
+
476
+ src: url(./files/inter-cyrillic-500-normal.woff2) format('woff2'), url(./files/inter-cyrillic-500-normal.woff) format('woff');
477
+
478
+ unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
479
+ }
480
+
481
+ /* inter-greek-ext-500-normal */
482
+
483
+ @font-face {
484
+ font-family: 'Inter';
485
+
486
+ font-style: normal;
487
+
488
+ font-display: swap;
489
+
490
+ font-weight: 500;
491
+
492
+ src: url(./files/inter-greek-ext-500-normal.woff2) format('woff2'), url(./files/inter-greek-ext-500-normal.woff) format('woff');
493
+
494
+ unicode-range: U+1F00-1FFF;
495
+ }
496
+
497
+ /* inter-greek-500-normal */
498
+
499
+ @font-face {
500
+ font-family: 'Inter';
501
+
502
+ font-style: normal;
503
+
504
+ font-display: swap;
505
+
506
+ font-weight: 500;
507
+
508
+ src: url(./files/inter-greek-500-normal.woff2) format('woff2'), url(./files/inter-greek-500-normal.woff) format('woff');
509
+
510
+ unicode-range: U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF;
511
+ }
512
+
513
+ /* inter-vietnamese-500-normal */
514
+
515
+ @font-face {
516
+ font-family: 'Inter';
517
+
518
+ font-style: normal;
519
+
520
+ font-display: swap;
521
+
522
+ font-weight: 500;
523
+
524
+ src: url(./files/inter-vietnamese-500-normal.woff2) format('woff2'), url(./files/inter-vietnamese-500-normal.woff) format('woff');
525
+
526
+ unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
527
+ }
528
+
529
+ /* inter-latin-ext-500-normal */
530
+
531
+ @font-face {
532
+ font-family: 'Inter';
533
+
534
+ font-style: normal;
535
+
536
+ font-display: swap;
537
+
538
+ font-weight: 500;
539
+
540
+ src: url(./files/inter-latin-ext-500-normal.woff2) format('woff2'), url(./files/inter-latin-ext-500-normal.woff) format('woff');
541
+
542
+ unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
543
+ }
544
+
545
+ /* inter-latin-500-normal */
546
+
547
+ @font-face {
548
+ font-family: 'Inter';
549
+
550
+ font-style: normal;
551
+
552
+ font-display: swap;
553
+
554
+ font-weight: 500;
555
+
556
+ src: url(./files/inter-latin-500-normal.woff2) format('woff2'), url(./files/inter-latin-500-normal.woff) format('woff');
557
+
558
+ unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
559
+ }
560
+
561
+ /* inter-cyrillic-ext-600-normal */
562
+
563
+ @font-face {
564
+ font-family: 'Inter';
565
+
566
+ font-style: normal;
567
+
568
+ font-display: swap;
569
+
570
+ font-weight: 600;
571
+
572
+ src: url(./files/inter-cyrillic-ext-600-normal.woff2) format('woff2'), url(./files/inter-cyrillic-ext-600-normal.woff) format('woff');
573
+
574
+ unicode-range: U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
575
+ }
576
+
577
+ /* inter-cyrillic-600-normal */
578
+
579
+ @font-face {
580
+ font-family: 'Inter';
581
+
582
+ font-style: normal;
583
+
584
+ font-display: swap;
585
+
586
+ font-weight: 600;
587
+
588
+ src: url(./files/inter-cyrillic-600-normal.woff2) format('woff2'), url(./files/inter-cyrillic-600-normal.woff) format('woff');
589
+
590
+ unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
591
+ }
592
+
593
+ /* inter-greek-ext-600-normal */
594
+
595
+ @font-face {
596
+ font-family: 'Inter';
597
+
598
+ font-style: normal;
599
+
600
+ font-display: swap;
601
+
602
+ font-weight: 600;
603
+
604
+ src: url(./files/inter-greek-ext-600-normal.woff2) format('woff2'), url(./files/inter-greek-ext-600-normal.woff) format('woff');
605
+
606
+ unicode-range: U+1F00-1FFF;
607
+ }
608
+
609
+ /* inter-greek-600-normal */
610
+
611
+ @font-face {
612
+ font-family: 'Inter';
613
+
614
+ font-style: normal;
615
+
616
+ font-display: swap;
617
+
618
+ font-weight: 600;
619
+
620
+ src: url(./files/inter-greek-600-normal.woff2) format('woff2'), url(./files/inter-greek-600-normal.woff) format('woff');
621
+
622
+ unicode-range: U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF;
623
+ }
624
+
625
+ /* inter-vietnamese-600-normal */
626
+
627
+ @font-face {
628
+ font-family: 'Inter';
629
+
630
+ font-style: normal;
631
+
632
+ font-display: swap;
633
+
634
+ font-weight: 600;
635
+
636
+ src: url(./files/inter-vietnamese-600-normal.woff2) format('woff2'), url(./files/inter-vietnamese-600-normal.woff) format('woff');
637
+
638
+ unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
639
+ }
640
+
641
+ /* inter-latin-ext-600-normal */
642
+
643
+ @font-face {
644
+ font-family: 'Inter';
645
+
646
+ font-style: normal;
647
+
648
+ font-display: swap;
649
+
650
+ font-weight: 600;
651
+
652
+ src: url(./files/inter-latin-ext-600-normal.woff2) format('woff2'), url(./files/inter-latin-ext-600-normal.woff) format('woff');
653
+
654
+ unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
655
+ }
656
+
657
+ /* inter-latin-600-normal */
658
+
659
+ @font-face {
660
+ font-family: 'Inter';
661
+
662
+ font-style: normal;
663
+
664
+ font-display: swap;
665
+
666
+ font-weight: 600;
667
+
668
+ src: url(./files/inter-latin-600-normal.woff2) format('woff2'), url(./files/inter-latin-600-normal.woff) format('woff');
669
+
670
+ unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
671
+ }
672
+
673
+ /* inter-cyrillic-ext-700-normal */
674
+
675
+ @font-face {
676
+ font-family: 'Inter';
677
+
678
+ font-style: normal;
679
+
680
+ font-display: swap;
681
+
682
+ font-weight: 700;
683
+
684
+ src: url(./files/inter-cyrillic-ext-700-normal.woff2) format('woff2'), url(./files/inter-cyrillic-ext-700-normal.woff) format('woff');
685
+
686
+ unicode-range: U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
687
+ }
688
+
689
+ /* inter-cyrillic-700-normal */
690
+
691
+ @font-face {
692
+ font-family: 'Inter';
693
+
694
+ font-style: normal;
695
+
696
+ font-display: swap;
697
+
698
+ font-weight: 700;
699
+
700
+ src: url(./files/inter-cyrillic-700-normal.woff2) format('woff2'), url(./files/inter-cyrillic-700-normal.woff) format('woff');
701
+
702
+ unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
703
+ }
704
+
705
+ /* inter-greek-ext-700-normal */
706
+
707
+ @font-face {
708
+ font-family: 'Inter';
709
+
710
+ font-style: normal;
711
+
712
+ font-display: swap;
713
+
714
+ font-weight: 700;
715
+
716
+ src: url(./files/inter-greek-ext-700-normal.woff2) format('woff2'), url(./files/inter-greek-ext-700-normal.woff) format('woff');
717
+
718
+ unicode-range: U+1F00-1FFF;
719
+ }
720
+
721
+ /* inter-greek-700-normal */
722
+
723
+ @font-face {
724
+ font-family: 'Inter';
725
+
726
+ font-style: normal;
727
+
728
+ font-display: swap;
729
+
730
+ font-weight: 700;
731
+
732
+ src: url(./files/inter-greek-700-normal.woff2) format('woff2'), url(./files/inter-greek-700-normal.woff) format('woff');
733
+
734
+ unicode-range: U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF;
735
+ }
736
+
737
+ /* inter-vietnamese-700-normal */
738
+
739
+ @font-face {
740
+ font-family: 'Inter';
741
+
742
+ font-style: normal;
743
+
744
+ font-display: swap;
745
+
746
+ font-weight: 700;
747
+
748
+ src: url(./files/inter-vietnamese-700-normal.woff2) format('woff2'), url(./files/inter-vietnamese-700-normal.woff) format('woff');
749
+
750
+ unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
751
+ }
752
+
753
+ /* inter-latin-ext-700-normal */
754
+
755
+ @font-face {
756
+ font-family: 'Inter';
757
+
758
+ font-style: normal;
759
+
760
+ font-display: swap;
761
+
762
+ font-weight: 700;
763
+
764
+ src: url(./files/inter-latin-ext-700-normal.woff2) format('woff2'), url(./files/inter-latin-ext-700-normal.woff) format('woff');
765
+
766
+ unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
767
+ }
768
+
769
+ /* inter-latin-700-normal */
770
+
771
+ @font-face {
772
+ font-family: 'Inter';
773
+
774
+ font-style: normal;
775
+
776
+ font-display: swap;
777
+
778
+ font-weight: 700;
779
+
780
+ src: url(./files/inter-latin-700-normal.woff2) format('woff2'), url(./files/inter-latin-700-normal.woff) format('woff');
781
+
782
+ unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
783
+ }
784
+
785
+ /* inter-cyrillic-ext-800-normal */
786
+
787
+ @font-face {
788
+ font-family: 'Inter';
789
+
790
+ font-style: normal;
791
+
792
+ font-display: swap;
793
+
794
+ font-weight: 800;
795
+
796
+ src: url(./files/inter-cyrillic-ext-800-normal.woff2) format('woff2'), url(./files/inter-cyrillic-ext-800-normal.woff) format('woff');
797
+
798
+ unicode-range: U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
799
+ }
800
+
801
+ /* inter-cyrillic-800-normal */
802
+
803
+ @font-face {
804
+ font-family: 'Inter';
805
+
806
+ font-style: normal;
807
+
808
+ font-display: swap;
809
+
810
+ font-weight: 800;
811
+
812
+ src: url(./files/inter-cyrillic-800-normal.woff2) format('woff2'), url(./files/inter-cyrillic-800-normal.woff) format('woff');
813
+
814
+ unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
815
+ }
816
+
817
+ /* inter-greek-ext-800-normal */
818
+
819
+ @font-face {
820
+ font-family: 'Inter';
821
+
822
+ font-style: normal;
823
+
824
+ font-display: swap;
825
+
826
+ font-weight: 800;
827
+
828
+ src: url(./files/inter-greek-ext-800-normal.woff2) format('woff2'), url(./files/inter-greek-ext-800-normal.woff) format('woff');
829
+
830
+ unicode-range: U+1F00-1FFF;
831
+ }
832
+
833
+ /* inter-greek-800-normal */
834
+
835
+ @font-face {
836
+ font-family: 'Inter';
837
+
838
+ font-style: normal;
839
+
840
+ font-display: swap;
841
+
842
+ font-weight: 800;
843
+
844
+ src: url(./files/inter-greek-800-normal.woff2) format('woff2'), url(./files/inter-greek-800-normal.woff) format('woff');
845
+
846
+ unicode-range: U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF;
847
+ }
848
+
849
+ /* inter-vietnamese-800-normal */
850
+
851
+ @font-face {
852
+ font-family: 'Inter';
853
+
854
+ font-style: normal;
855
+
856
+ font-display: swap;
857
+
858
+ font-weight: 800;
859
+
860
+ src: url(./files/inter-vietnamese-800-normal.woff2) format('woff2'), url(./files/inter-vietnamese-800-normal.woff) format('woff');
861
+
862
+ unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
863
+ }
864
+
865
+ /* inter-latin-ext-800-normal */
866
+
867
+ @font-face {
868
+ font-family: 'Inter';
869
+
870
+ font-style: normal;
871
+
872
+ font-display: swap;
873
+
874
+ font-weight: 800;
875
+
876
+ src: url(./files/inter-latin-ext-800-normal.woff2) format('woff2'), url(./files/inter-latin-ext-800-normal.woff) format('woff');
877
+
878
+ unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
879
+ }
880
+
881
+ /* inter-latin-800-normal */
882
+
883
+ @font-face {
884
+ font-family: 'Inter';
885
+
886
+ font-style: normal;
887
+
888
+ font-display: swap;
889
+
890
+ font-weight: 800;
891
+
892
+ src: url(./files/inter-latin-800-normal.woff2) format('woff2'), url(./files/inter-latin-800-normal.woff) format('woff');
893
+
894
+ unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
895
+ }
896
+
897
+ /* inter-cyrillic-ext-900-normal */
898
+
899
+ @font-face {
900
+ font-family: 'Inter';
901
+
902
+ font-style: normal;
903
+
904
+ font-display: swap;
905
+
906
+ font-weight: 900;
907
+
908
+ src: url(./files/inter-cyrillic-ext-900-normal.woff2) format('woff2'), url(./files/inter-cyrillic-ext-900-normal.woff) format('woff');
909
+
910
+ unicode-range: U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
911
+ }
912
+
913
+ /* inter-cyrillic-900-normal */
914
+
915
+ @font-face {
916
+ font-family: 'Inter';
917
+
918
+ font-style: normal;
919
+
920
+ font-display: swap;
921
+
922
+ font-weight: 900;
923
+
924
+ src: url(./files/inter-cyrillic-900-normal.woff2) format('woff2'), url(./files/inter-cyrillic-900-normal.woff) format('woff');
925
+
926
+ unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
927
+ }
928
+
929
+ /* inter-greek-ext-900-normal */
930
+
931
+ @font-face {
932
+ font-family: 'Inter';
933
+
934
+ font-style: normal;
935
+
936
+ font-display: swap;
937
+
938
+ font-weight: 900;
939
+
940
+ src: url(./files/inter-greek-ext-900-normal.woff2) format('woff2'), url(./files/inter-greek-ext-900-normal.woff) format('woff');
941
+
942
+ unicode-range: U+1F00-1FFF;
943
+ }
944
+
945
+ /* inter-greek-900-normal */
946
+
947
+ @font-face {
948
+ font-family: 'Inter';
949
+
950
+ font-style: normal;
951
+
952
+ font-display: swap;
953
+
954
+ font-weight: 900;
955
+
956
+ src: url(./files/inter-greek-900-normal.woff2) format('woff2'), url(./files/inter-greek-900-normal.woff) format('woff');
957
+
958
+ unicode-range: U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF;
959
+ }
960
+
961
+ /* inter-vietnamese-900-normal */
962
+
963
+ @font-face {
964
+ font-family: 'Inter';
965
+
966
+ font-style: normal;
967
+
968
+ font-display: swap;
969
+
970
+ font-weight: 900;
971
+
972
+ src: url(./files/inter-vietnamese-900-normal.woff2) format('woff2'), url(./files/inter-vietnamese-900-normal.woff) format('woff');
973
+
974
+ unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
975
+ }
976
+
977
+ /* inter-latin-ext-900-normal */
978
+
979
+ @font-face {
980
+ font-family: 'Inter';
981
+
982
+ font-style: normal;
983
+
984
+ font-display: swap;
985
+
986
+ font-weight: 900;
987
+
988
+ src: url(./files/inter-latin-ext-900-normal.woff2) format('woff2'), url(./files/inter-latin-ext-900-normal.woff) format('woff');
989
+
990
+ unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
991
+ }
992
+
993
+ /* inter-latin-900-normal */
994
+
995
+ @font-face {
996
+ font-family: 'Inter';
997
+
998
+ font-style: normal;
999
+
1000
+ font-display: swap;
1001
+
1002
+ font-weight: 900;
1003
+
1004
+ src: url(./files/inter-latin-900-normal.woff2) format('woff2'), url(./files/inter-latin-900-normal.woff) format('woff');
1005
+
1006
+ unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
1007
+ }
package/dist/index.css CHANGED
@@ -1202,6 +1202,10 @@ body {
1202
1202
  min-width: 0px;
1203
1203
  }
1204
1204
 
1205
+ .min-w-16 {
1206
+ min-width: 4rem;
1207
+ }
1208
+
1205
1209
  .min-w-\[12rem\] {
1206
1210
  min-width: 12rem;
1207
1211
  }
@@ -1891,11 +1895,6 @@ body {
1891
1895
  padding-bottom: 0.5rem;
1892
1896
  }
1893
1897
 
1894
- .py-2\.5 {
1895
- padding-top: 0.625rem;
1896
- padding-bottom: 0.625rem;
1897
- }
1898
-
1899
1898
  .py-3 {
1900
1899
  padding-top: 0.75rem;
1901
1900
  padding-bottom: 0.75rem;
package/package.json CHANGED
@@ -45,7 +45,8 @@
45
45
  "./styles": "./dist/index.css",
46
46
  "./tailwindConfig": "./tailwind.config.ts",
47
47
  "./theme": "./src/theme.css",
48
- "./font": "./src/font.css"
48
+ "./font": "./src/font.css",
49
+ "./utils": "./dist/utils.js"
49
50
  },
50
51
  "files": [
51
52
  "dist",
@@ -67,7 +68,7 @@
67
68
  },
68
69
  "scripts": {
69
70
  "build": "vite build && npm run package && npm run build:css",
70
- "build:css": "tailwind build src/index.css -o dist/index.css",
71
+ "build:css": "tailwind build src/index.css -o dist/index.css && tailwind build src/font.css -o dist/font.css",
71
72
  "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
72
73
  "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
73
74
  "dev": "vite dev",
@@ -80,6 +81,6 @@
80
81
  "svelte": "./dist/index.js",
81
82
  "type": "module",
82
83
  "types": "./dist/index.d.ts",
83
- "version": "2.0.0-alpha.36",
84
- "gitHead": "5d198b894940729fddcfe09c6a9e0c530172d9d7"
84
+ "version": "2.0.0-alpha.39",
85
+ "gitHead": "a85855ad68104ffa2c9427beaddb05925dc14ddc"
85
86
  }
@@ -15,7 +15,7 @@ const config: Config = {
15
15
  },
16
16
  extend: {
17
17
  fontSize: {
18
- xxs: '0.55rem',
18
+ xxs: '0.625rem',
19
19
  },
20
20
  colors: {
21
21
  border: 'hsl(var(--border) / <alpha-value>)',
@@ -1,20 +0,0 @@
1
- <script>import { Button as ButtonPrimitive } from "bits-ui";
2
- import { buttonVariants } from "./index.js";
3
- import { cn } from "../../../utils.js";
4
- let className = void 0;
5
- export let variant = "default";
6
- export let size = "default";
7
- export let builders = [];
8
- export { className as class };
9
- </script>
10
-
11
- <ButtonPrimitive.Root
12
- {builders}
13
- class={cn(buttonVariants({ variant, size, className }))}
14
- type="button"
15
- {...$$restProps}
16
- on:click
17
- on:keydown
18
- >
19
- <slot />
20
- </ButtonPrimitive.Root>
@@ -1,14 +0,0 @@
1
- import { SvelteComponent } from "svelte";
2
- declare const __propDef: {
3
- props: Props;
4
- slots: {
5
- default: {};
6
- };
7
- events: Events;
8
- };
9
- export type ButtonProps = typeof __propDef.props;
10
- export type ButtonEvents = typeof __propDef.events;
11
- export type ButtonSlots = typeof __propDef.slots;
12
- export default class Button extends SvelteComponent<ButtonProps, ButtonEvents, ButtonSlots> {
13
- }
14
- export {};