tera-system-ui 0.0.49 → 0.0.50

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 +1,3 @@
1
1
  export { default as DialogAstro } from '../components/dialog/Dialog.astro';
2
+ export { default as TeraFontSansSerif } from '../components/fonts/TeraFontSansSerif.astro';
3
+ export { default as TeraFontMono } from '../components/fonts/TeraFontMono.astro';
@@ -1 +1,3 @@
1
1
  export { default as DialogAstro } from '../components/dialog/Dialog.astro';
2
+ export { default as TeraFontSansSerif } from '../components/fonts/TeraFontSansSerif.astro';
3
+ export { default as TeraFontMono } from '../components/fonts/TeraFontMono.astro';
@@ -0,0 +1,5 @@
1
+ ---
2
+ // Supports weights 300-800
3
+ import '@fontsource-variable/open-sans';
4
+ import '@fontsource-variable/open-sans/wght-italic.css';
5
+ ---
@@ -1,4 +1,5 @@
1
1
  <script lang="ts">
2
2
  // Supports weights 300-800
3
3
  import '@fontsource-variable/open-sans';
4
+ import '@fontsource-variable/open-sans/wght-italic.css';
4
5
  </script>
@@ -1,4 +1,5 @@
1
1
  import '@fontsource-variable/open-sans';
2
+ import '@fontsource-variable/open-sans/wght-italic.css';
2
3
  interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
3
4
  new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & {
4
5
  $$bindings?: Bindings;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tera-system-ui",
3
- "version": "0.0.49",
3
+ "version": "0.0.50",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "npm run customPrepublish && npm run generate-index && vite build && npm run package && npm run postpublish",