@flexiui/svelte-rich-text 0.0.8 → 0.0.10

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,2 @@
1
1
  import RichText from './RichText.svelte';
2
- export default RichText;
3
- export * from './RichText.svelte';
2
+ export { RichText };
package/dist/index.js CHANGED
@@ -1,3 +1,2 @@
1
1
  import RichText from './RichText.svelte';
2
- export default RichText;
3
- export * from './RichText.svelte';
2
+ export { RichText };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flexiui/svelte-rich-text",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "description": "A lightweight and flexible rich text editor component for Svelte",
5
5
  "keywords": [
6
6
  "svelte",
@@ -31,7 +31,7 @@
31
31
  "types": "./dist/index.d.ts",
32
32
  "exports": {
33
33
  ".": {
34
- "types": "./dist/RichText.svelte.d.ts",
34
+ "types": "./dist/index.d.ts",
35
35
  "svelte": "./dist/index.js",
36
36
  "default": "./dist/index.js"
37
37
  }