lone-format 0.1.0 → 0.1.1

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/index.d.ts CHANGED
@@ -1,3 +1,6 @@
1
- export * from './src/index'
2
- import LoneFormat from './src/index'
3
- export default LoneFormat
1
+ import type { App } from 'vue';
2
+ declare const _default: {
3
+ install: (app: App<any>) => void;
4
+ };
5
+ export default _default;
6
+ export * from './components';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lone-format",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "description": "A Vue 3 component library for formatting with tree-shaking support",
6
6
  "main": "./dist/lone-format.umd.cjs",
@@ -15,7 +15,8 @@
15
15
  "./json-format": {
16
16
  "types": "./dist/components/JsonFormat/index.d.ts",
17
17
  "import": "./dist/components/JsonFormat/index.js"
18
- }
18
+ },
19
+ "./lone-format.css": "./dist/lone-format.css"
19
20
  },
20
21
  "files": [
21
22
  "dist"
@@ -1,6 +0,0 @@
1
- import type { App } from 'vue';
2
- declare const _default: {
3
- install: (app: App<any>) => void;
4
- };
5
- export default _default;
6
- export * from './components';
File without changes