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 +1 -0
- package/dist/vue-shims.d.ts +5 -0
- package/package.json +1 -1
- package/src/index.ts +1 -0
- package/src/vue-shims.d.ts +5 -0
- package/types/index.d.ts +1 -2
- package/types/vite.config.d.ts +2 -0
- package/vite.config.ts +1 -1
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}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export * from "./
|
|
2
|
-
export * from "./components";
|
|
1
|
+
export * from "./src";
|
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
|
})
|