@textbus/adapter-viewfly 4.0.0-alpha.64 → 4.0.0-alpha.66

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.
@@ -128,7 +128,6 @@ class ViewflyAdapter extends DomAdapter {
128
128
  const instance = viewFlyComponent(props);
129
129
  if (typeof instance === 'function') {
130
130
  return () => {
131
- component.__slots__.forEach(i => this.renderedSlotCache.delete(i));
132
131
  component.__slots__.length = 0;
133
132
  this.componentRendingStack.push(component);
134
133
  return instance();
@@ -136,7 +135,6 @@ class ViewflyAdapter extends DomAdapter {
136
135
  }
137
136
  const self = this;
138
137
  return Object.assign(Object.assign({}, instance), { $render() {
139
- component.__slots__.forEach(i => self.renderedSlotCache.delete(i));
140
138
  component.__slots__.length = 0;
141
139
  self.componentRendingStack.push(component);
142
140
  return instance.$render();
package/bundles/index.js CHANGED
@@ -130,7 +130,6 @@ class ViewflyAdapter extends platformBrowser.DomAdapter {
130
130
  const instance = viewFlyComponent(props);
131
131
  if (typeof instance === 'function') {
132
132
  return () => {
133
- component.__slots__.forEach(i => this.renderedSlotCache.delete(i));
134
133
  component.__slots__.length = 0;
135
134
  this.componentRendingStack.push(component);
136
135
  return instance();
@@ -138,7 +137,6 @@ class ViewflyAdapter extends platformBrowser.DomAdapter {
138
137
  }
139
138
  const self = this;
140
139
  return Object.assign(Object.assign({}, instance), { $render() {
141
- component.__slots__.forEach(i => self.renderedSlotCache.delete(i));
142
140
  component.__slots__.length = 0;
143
141
  self.componentRendingStack.push(component);
144
142
  return instance.$render();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@textbus/adapter-viewfly",
3
- "version": "4.0.0-alpha.64",
3
+ "version": "4.0.0-alpha.66",
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,11 +26,11 @@
26
26
  ],
27
27
  "dependencies": {
28
28
  "@tanbo/stream": "^1.2.5",
29
- "@textbus/core": "^4.0.0-alpha.64",
30
- "@textbus/platform-browser": "^4.0.0-alpha.64",
31
- "@textbus/platform-node": "^4.0.0-alpha.64",
32
- "@viewfly/core": "^1.0.0-alpha.16",
33
- "@viewfly/platform-browser": "^1.0.0-alpha.16"
29
+ "@textbus/core": "^4.0.0-alpha.66",
30
+ "@textbus/platform-browser": "^4.0.0-alpha.66",
31
+ "@textbus/platform-node": "^4.0.0-alpha.66",
32
+ "@viewfly/core": "^1.0.0-alpha.17",
33
+ "@viewfly/platform-browser": "^1.0.0-alpha.17"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@rollup/plugin-commonjs": "^23.0.2",
@@ -50,5 +50,5 @@
50
50
  "bugs": {
51
51
  "url": "https://github.com/textbus/textbus.git/issues"
52
52
  },
53
- "gitHead": "519971adaa514d2caed9d8509a8b309207b2e35e"
53
+ "gitHead": "cf4fd289b73bc777124a32fe42bb58eba05a34f1"
54
54
  }