cja-phoenix 1.2.1 → 1.2.2

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.d.mts CHANGED
@@ -1,4 +1,5 @@
1
1
  import * as _nuxt_schema from '@nuxt/schema';
2
+ export * from '../dist/runtime/types/index.js';
2
3
 
3
4
  declare const _default: _nuxt_schema.NuxtModule<_nuxt_schema.ModuleOptions, _nuxt_schema.ModuleOptions, false>;
4
5
 
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cja-phoenix",
3
3
  "configKey": "cja-phoenix",
4
- "version": "1.2.1",
4
+ "version": "1.2.2",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
package/dist/module.mjs CHANGED
@@ -1,4 +1,5 @@
1
1
  import { defineNuxtModule, createResolver, addImportsDir, addComponentsDir, addPlugin } from '@nuxt/kit';
2
+ export * from '../dist/runtime/types/index.js';
2
3
 
3
4
  const module = defineNuxtModule({
4
5
  meta: {
@@ -21,7 +22,6 @@ const module = defineNuxtModule({
21
22
  addImportsDir(resolve("./runtime/composables"));
22
23
  addImportsDir(resolve("./runtime/utils"));
23
24
  addImportsDir(resolve("./runtime/data"));
24
- addImportsDir(resolve("./runtime/types"));
25
25
  addComponentsDir({
26
26
  path: resolve("./runtime/components")
27
27
  });
@@ -0,0 +1,4 @@
1
+ export * from './Form.js';
2
+ export * from './Grid.js';
3
+ export * from './Icon.js';
4
+ export * from './JourneyConfig.js';
@@ -0,0 +1,4 @@
1
+ export * from "./Form.js";
2
+ export * from "./Grid.js";
3
+ export * from "./Icon.js";
4
+ export * from "./JourneyConfig.js";
package/dist/types.d.mts CHANGED
@@ -5,3 +5,5 @@ import type { default as Module } from './module.mjs'
5
5
  export type ModuleOptions = typeof Module extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
6
6
 
7
7
  export { default } from './module.mjs'
8
+
9
+ export * from '../dist/runtime/types/index.js'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cja-phoenix",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "Phoenix utility",
5
5
  "repository": "comparaja/phoenix",
6
6
  "license": "MIT",
@@ -1,8 +0,0 @@
1
- export interface TileOption {
2
- value: any;
3
- label: string;
4
- description?: string;
5
- descriptionLong?: string;
6
- tooltip?: string;
7
- image?: string;
8
- }
File without changes