@textbus/adapter-vue 4.0.0-alpha.37 → 4.0.0-alpha.39

Sign up to get free protection for your applications and to get access to all the features.
@@ -57,6 +57,7 @@ class Adapter extends DomAdapter {
57
57
  const result = setup(props);
58
58
  if (typeof result === 'function') {
59
59
  return function () {
60
+ component.__slots__.forEach(i => self.renderedSlotCache.delete(i));
60
61
  component.__slots__.length = 0;
61
62
  self.componentRendingStack.push(component);
62
63
  return result();
package/bundles/index.js CHANGED
@@ -59,6 +59,7 @@ class Adapter extends platformBrowser.DomAdapter {
59
59
  const result = setup(props);
60
60
  if (typeof result === 'function') {
61
61
  return function () {
62
+ component.__slots__.forEach(i => self.renderedSlotCache.delete(i));
62
63
  component.__slots__.length = 0;
63
64
  self.componentRendingStack.push(component);
64
65
  return result();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@textbus/adapter-vue",
3
- "version": "4.0.0-alpha.37",
3
+ "version": "4.0.0-alpha.39",
4
4
  "description": "Textbus is a rich text editor and framework that is highly customizable and extensible to achieve rich wysiwyg effects.",
5
5
  "main": "./bundles/index.js",
6
6
  "module": "./bundles/index.esm.js",
@@ -26,8 +26,8 @@
26
26
  ],
27
27
  "dependencies": {
28
28
  "@tanbo/stream": "^1.2.3",
29
- "@textbus/core": "^4.0.0-alpha.37",
30
- "@textbus/platform-browser": "^4.0.0-alpha.37",
29
+ "@textbus/core": "^4.0.0-alpha.39",
30
+ "@textbus/platform-browser": "^4.0.0-alpha.39",
31
31
  "vue": "^3.3.4"
32
32
  },
33
33
  "devDependencies": {
@@ -48,5 +48,5 @@
48
48
  "bugs": {
49
49
  "url": "https://github.com/textbus/textbus.git/issues"
50
50
  },
51
- "gitHead": "7a67eda8ef99b52bbc356002ca3396d64b6c1e89"
51
+ "gitHead": "6c5f853e09df7cdc7464af4946b487574ae6dcda"
52
52
  }