alytus-ff 0.1.4 → 0.1.5

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/style.css ADDED
@@ -0,0 +1 @@
1
+ .ec-page-title,.ec-page-subtitle{display:flex;justify-content:space-between;align-items:center}.ec-page-title .v-btn,.ec-page-subtitle .v-btn{text-transform:unset;letter-spacing:.045em}
@@ -0,0 +1,5 @@
1
+ declare module '*.vue' {
2
+ import { DefineComponent } from 'vue';
3
+ const component: DefineComponent<{}, {}, any>;
4
+ export default component;
5
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "alytus-ff",
4
- "version": "0.1.4",
4
+ "version": "0.1.5",
5
5
  "description": "Frontend framework",
6
6
  "main": "index.ts",
7
7
  "types": "dist/types/index.d.ts",
package/src/index.ts CHANGED
@@ -1,2 +1,3 @@
1
+ import "./styles/main.scss"
1
2
  export * from "./utils"
2
3
  export * from "./components"
@@ -0,0 +1,5 @@
1
+ declare module '*.vue' {
2
+ import { DefineComponent } from 'vue';
3
+ const component: DefineComponent<{}, {}, any>;
4
+ export default component;
5
+ }
package/types/index.d.ts CHANGED
@@ -1,2 +1 @@
1
- export * from "./utils";
2
- export * from "./components";
1
+ export * from "./src";
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vite").UserConfig;
2
+ export default _default;
package/vite.config.ts CHANGED
@@ -6,7 +6,7 @@ export default defineConfig({
6
6
  plugins: [
7
7
  vue(),
8
8
  dts({
9
- outputDir: 'dist/types', // Output directory for .d.ts files
9
+ //outputDir: 'dist/types', // Output directory for .d.ts files
10
10
  insertTypesEntry: true, // Generates an entry file for types
11
11
  copyDtsFiles: true, // Copies .d.ts files to the output directory
12
12
  })