@nyuccl/smile 0.2.0-beta.20 → 0.2.0-beta.22

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/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nyuccl/smile",
3
3
  "configKey": "smile",
4
- "version": "0.2.0-beta.20",
4
+ "version": "0.2.0-beta.22",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
package/dist/module.mjs CHANGED
@@ -28,6 +28,7 @@ const module$1 = defineNuxtModule({
28
28
  projectRef: process.env.VITE_PROJECT_REF || ""
29
29
  };
30
30
  _nuxt.options.alias["#smile-dev"] = resolver.resolve("./runtime/components/dev");
31
+ _nuxt.options.alias["#smile-composables"] = resolver.resolve("./runtime/composables");
31
32
  _nuxt.options.vite.plugins = _nuxt.options.vite.plugins || [];
32
33
  _nuxt.options.vite.plugins.push(tailwindcss());
33
34
  _nuxt.options.vite.optimizeDeps = _nuxt.options.vite.optimizeDeps || {};
@@ -84,10 +84,10 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
84
84
  };
85
85
  }>> & Readonly<{}>, {
86
86
  title: string;
87
- description: string | unknown[];
88
87
  subtitle: string;
89
88
  siteAuthor: Record<string, any>;
90
89
  projectAuthors: unknown[];
91
90
  info: unknown[];
91
+ description: string | unknown[];
92
92
  sections: unknown[];
93
93
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -84,10 +84,10 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
84
84
  };
85
85
  }>> & Readonly<{}>, {
86
86
  title: string;
87
- description: string | unknown[];
88
87
  subtitle: string;
89
88
  siteAuthor: Record<string, any>;
90
89
  projectAuthors: unknown[];
91
90
  info: unknown[];
91
+ description: string | unknown[];
92
92
  sections: unknown[];
93
93
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -67,8 +67,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
67
67
  }>> & Readonly<{}>, {
68
68
  variant: string;
69
69
  disabled: boolean;
70
- asChild: boolean;
71
70
  inset: boolean;
71
+ asChild: boolean;
72
72
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
73
73
  type __VLS_Slots = {
74
74
  default?: ((props: {}) => any) | undefined;
@@ -67,8 +67,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
67
67
  }>> & Readonly<{}>, {
68
68
  variant: string;
69
69
  disabled: boolean;
70
- asChild: boolean;
71
70
  inset: boolean;
71
+ asChild: boolean;
72
72
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
73
73
  type __VLS_Slots = {
74
74
  default?: ((props: {}) => any) | undefined;
@@ -39,8 +39,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
39
39
  required: false;
40
40
  };
41
41
  }>> & Readonly<{}>, {
42
- asChild: boolean;
43
42
  inset: boolean;
43
+ asChild: boolean;
44
44
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
45
45
  type __VLS_Slots = {
46
46
  default?: ((props: {}) => any) | undefined;
@@ -39,8 +39,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
39
39
  required: false;
40
40
  };
41
41
  }>> & Readonly<{}>, {
42
- asChild: boolean;
43
42
  inset: boolean;
43
+ asChild: boolean;
44
44
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
45
45
  type __VLS_Slots = {
46
46
  default?: ((props: {}) => any) | undefined;
@@ -56,8 +56,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
56
56
  };
57
57
  }>> & Readonly<{}>, {
58
58
  disabled: boolean;
59
- asChild: boolean;
60
59
  inset: boolean;
60
+ asChild: boolean;
61
61
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
62
62
  type __VLS_Slots = {
63
63
  default?: ((props: {}) => any) | undefined;
@@ -56,8 +56,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
56
56
  };
57
57
  }>> & Readonly<{}>, {
58
58
  disabled: boolean;
59
- asChild: boolean;
60
59
  inset: boolean;
60
+ asChild: boolean;
61
61
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
62
62
  type __VLS_Slots = {
63
63
  default?: ((props: {}) => any) | undefined;
@@ -1,6 +1,5 @@
1
1
  <script setup>
2
2
  import { ref, computed, onMounted } from "vue";
3
- import useAPI from "../composables/useAPI";
4
3
  import { Toaster } from "vue-sonner";
5
4
  import "vue-sonner/style.css";
6
5
  import SmileDevAppMenu from "#smile-dev/menu/SmileDevAppMenu.vue";
@@ -1,6 +1,5 @@
1
1
  <script setup>
2
2
  import { computed } from "vue";
3
- import useAPI from "../composables/useAPI";
4
3
  import PresentationNavBar from "#smile-dev/presentation/PresentationNavBar.vue";
5
4
  const api = useAPI();
6
5
  const isLoading = computed(() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nyuccl/smile",
3
- "version": "0.2.0-beta.20",
3
+ "version": "0.2.0-beta.22",
4
4
  "description": "SMILE experiment framework as a Nuxt module",
5
5
  "author": "Todd Gureckis <gureckis@gmail.com>",
6
6
  "license": "MIT",