@visactor/vstory 0.0.6 → 0.0.8-alpha.0

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.
@@ -1,2 +1 @@
1
- export { };
2
- //# sourceMappingURL=Datum.js.map
1
+ export { };
@@ -6,4 +6,5 @@ export const flickerEffect = group => {
6
6
  opacity: 1
7
7
  }, 120, "linear").loop(1);
8
8
  }));
9
- };
9
+ };
10
+ //# sourceMappingURL=flicker.js.map
@@ -86,4 +86,4 @@ export class BaseSelection {
86
86
  });
87
87
  }
88
88
  }
89
- //# sourceMappingURL=base-selection.js.map
89
+ //# sourceMappingURL=base-selection.js.map
@@ -16,4 +16,4 @@ export class BoxSelection extends BaseSelection {
16
16
  })), !0) : "pointerdown" === actionInfo.type;
17
17
  }
18
18
  }
19
- //# sourceMappingURL=box-selection.js.map
19
+ //# sourceMappingURL=box-selection.js.map
@@ -1,2 +1 @@
1
- export { };
2
- //# sourceMappingURL=type.js.map
1
+ export { };
@@ -1,3 +1 @@
1
-
2
-
3
1
  //# sourceMappingURL=encode.js.map
@@ -1 +1,3 @@
1
+
2
+
1
3
  //# sourceMappingURL=common-processor.js.map
@@ -13,4 +13,4 @@ export class ActionProcessorItem {
13
13
  }
14
14
  run(character, actionSpec) {}
15
15
  }
16
- //# sourceMappingURL=processor-item.js.map
16
+ //# sourceMappingURL=processor-item.js.map
@@ -1,12 +1,16 @@
1
1
  import { registerRankingBarChart } from "@visactor/vchart-extension";
2
2
 
3
+ import VChart from "@visactor/vchart";
4
+
3
5
  import { StoryFactory } from "../../../factory/factory";
4
6
 
5
7
  import { CharacterChart } from "../character";
6
8
 
7
9
  import { RankingBarTemp } from "../temp/templates/ranking-bar-temp";
8
10
 
9
- StoryFactory.registerChartTemp(RankingBarTemp.type, RankingBarTemp), registerRankingBarChart();
11
+ StoryFactory.registerChartTemp(RankingBarTemp.type, RankingBarTemp), registerRankingBarChart({
12
+ VChart: VChart
13
+ });
10
14
 
11
15
  export class RankingBarCharacter extends CharacterChart {}
12
16
 
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/story/character/chart/characters/rankingBar.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,4BAA4B,CAAC;AACrE,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AACxD,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AAIpE,YAAY,CAAC,iBAAiB,CAAC,cAAc,CAAC,IAAI,EAAE,cAAc,CAAC,CAAC;AAEpE,uBAAuB,EAAE,CAAC;AAE1B,MAAM,OAAO,mBAAoB,SAAQ,cAAc;;AAC9C,wBAAI,GAAG,YAAY,CAAC","file":"rankingBar.js","sourcesContent":["import { registerRankingBarChart } from '@visactor/vchart-extension';\nimport { StoryFactory } from '../../../factory/factory';\nimport { CharacterChart } from '../character';\nimport { RankingBarTemp } from '../temp/templates/ranking-bar-temp';\nimport { VChartTemp } from '../temp/templates/vchart-temp';\n\n// StoryFactory.registerChartTemp(RankingBarTemp.type, VChartTemp);\nStoryFactory.registerChartTemp(RankingBarTemp.type, RankingBarTemp);\n\nregisterRankingBarChart();\n\nexport class RankingBarCharacter extends CharacterChart {\n static type = 'RankingBar';\n}\n"]}
1
+ {"version":3,"sources":["../src/story/character/chart/characters/rankingBar.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,4BAA4B,CAAC;AACrE,OAAO,MAAM,MAAM,kBAAkB,CAAC;AAEtC,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AACxD,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AAEpE,YAAY,CAAC,iBAAiB,CAAC,cAAc,CAAC,IAAI,EAAE,cAAc,CAAC,CAAC;AAEpE,uBAAuB,CAAC,EAAE,MAAM,EAAE,CAAC,CAAC;AAEpC,MAAM,OAAO,mBAAoB,SAAQ,cAAc;;AAC9C,wBAAI,GAAG,YAAY,CAAC","file":"rankingBar.js","sourcesContent":["import { registerRankingBarChart } from '@visactor/vchart-extension';\nimport VChart from '@visactor/vchart';\n\nimport { StoryFactory } from '../../../factory/factory';\nimport { CharacterChart } from '../character';\nimport { RankingBarTemp } from '../temp/templates/ranking-bar-temp';\n\nStoryFactory.registerChartTemp(RankingBarTemp.type, RankingBarTemp);\n\nregisterRankingBarChart({ VChart });\n\nexport class RankingBarCharacter extends CharacterChart {\n static type = 'RankingBar';\n}\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visactor/vstory",
3
- "version": "0.0.6",
3
+ "version": "0.0.8-alpha.0",
4
4
  "description": "",
5
5
  "sideEffects": true,
6
6
  "main": "cjs/index.js",
@@ -24,18 +24,18 @@
24
24
  "test-watch": "DEBUG_MODE=1 jest --watch"
25
25
  },
26
26
  "dependencies": {
27
- "@visactor/vchart": "1.12.1-alpha.0",
28
- "@visactor/vrender": "0.20.1-alpha.5",
29
- "@visactor/vrender-core": "0.20.1-alpha.5",
30
- "@visactor/vrender-kits": "0.20.1-alpha.5",
31
- "@visactor/vrender-components": "0.20.1-alpha.5",
27
+ "@visactor/vchart": "1.12.2",
28
+ "@visactor/vrender": "0.20.1",
29
+ "@visactor/vrender-core": "0.20.1",
30
+ "@visactor/vrender-kits": "0.20.1",
31
+ "@visactor/vrender-components": "0.20.1",
32
32
  "@visactor/vutils": "~0.18.4",
33
- "@visactor/vchart-extension": "0.0.2-alpha.2"
33
+ "@visactor/vchart-extension": "0.0.2"
34
34
  },
35
35
  "devDependencies": {
36
- "@internal/bundler": "0.0.1",
37
- "@internal/eslint-config": "0.0.1",
38
- "@internal/ts-config": "0.0.1",
36
+ "@internal/bundler": "workspace:*",
37
+ "@internal/eslint-config": "workspace:*",
38
+ "@internal/ts-config": "workspace:*",
39
39
  "@rushstack/eslint-patch": "~1.1.4",
40
40
  "@ffmpeg/core": "^0.11.0",
41
41
  "@ffmpeg/ffmpeg": "^0.11.6",