@flexiui/svelte-rich-text 0.0.6 → 0.0.8

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.
@@ -976,6 +976,7 @@
976
976
  white-space: nowrap;
977
977
  gap: 2px;
978
978
  cursor: pointer;
979
+ line-height: 1;
979
980
 
980
981
  &:disabled {
981
982
  cursor: not-allowed;
package/dist/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  import RichText from './RichText.svelte';
2
- export { RichText };
2
+ export default RichText;
3
+ export * from './RichText.svelte';
package/dist/index.js CHANGED
@@ -1,2 +1,3 @@
1
1
  import RichText from './RichText.svelte';
2
- export { RichText };
2
+ export default RichText;
3
+ export * from './RichText.svelte';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flexiui/svelte-rich-text",
3
- "version": "0.0.6",
3
+ "version": "0.0.8",
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/index.d.ts",
34
+ "types": "./dist/RichText.svelte.d.ts",
35
35
  "svelte": "./dist/index.js",
36
36
  "default": "./dist/index.js"
37
37
  }