@visactor/vstory 0.0.6 → 0.0.7
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/cjs/dsl/story-chart/pie.js +1 -1
- package/cjs/dsl/story-executor/index.js +2 -0
- package/cjs/dsl/story-processor/index.js +1 -1
- package/cjs/dsl/story-processor/processor.js +1 -1
- package/cjs/dsl/types/Datum.js +1 -1
- package/cjs/dsl/types/index.js +1 -1
- package/cjs/dsl/utils/datum.js +1 -1
- package/cjs/dsl/utils/flicker.js +2 -1
- package/cjs/edit/edit-component/base-selection.js +1 -1
- package/cjs/edit/edit-component/box-selection.js +1 -1
- package/cjs/edit/edit-component/chart-selection.js +1 -1
- package/cjs/edit/edit-component/common.js +0 -2
- package/cjs/edit/edit-component/image-selection.js +1 -1
- package/cjs/edit/edit-component/index.js +1 -1
- package/cjs/edit/edit-component/layer-edit.js +0 -2
- package/cjs/edit/edit-component/rect-selection.js +1 -1
- package/cjs/edit/edit-component/richtext-selection-common.js +1 -1
- package/cjs/edit/edit-component/richtext-selection.js +1 -1
- package/cjs/edit/edit-component/shape-selection.js +1 -2
- package/cjs/edit/edit-component/text-selection.js +1 -1
- package/cjs/player/encode.js +0 -2
- package/cjs/player/interface/player.js +1 -1
- package/cjs/player/interface/scheduler.js +1 -1
- package/cjs/player/processor/common-processor.js +2 -0
- package/cjs/player/processor/processor-item.js +1 -1
- package/cjs/scene/action.js +2 -0
- package/cjs/story/character/chart/characters/rankingBar.js +10 -2
- package/cjs/story/character/chart/characters/rankingBar.js.map +1 -1
- package/dist/index.js +73710 -15736
- package/dist/index.min.js +3 -3
- package/es/dsl/story-chart/pie.js +1 -1
- package/es/dsl/story-executor/index.js +2 -0
- package/es/dsl/story-processor/index.js +1 -1
- package/es/dsl/story-processor/processor.js +1 -1
- package/es/dsl/types/Datum.js +1 -1
- package/es/dsl/types/index.js +1 -1
- package/es/dsl/utils/datum.js +1 -1
- package/es/dsl/utils/flicker.js +2 -1
- package/es/edit/edit-component/base-selection.js +1 -1
- package/es/edit/edit-component/box-selection.js +1 -1
- package/es/edit/edit-component/chart-selection.js +1 -1
- package/es/edit/edit-component/common.js +0 -2
- package/es/edit/edit-component/image-selection.js +1 -1
- package/es/edit/edit-component/index.js +1 -1
- package/es/edit/edit-component/layer-edit.js +0 -2
- package/es/edit/edit-component/rect-selection.js +1 -1
- package/es/edit/edit-component/richtext-selection-common.js +1 -1
- package/es/edit/edit-component/richtext-selection.js +1 -1
- package/es/edit/edit-component/shape-selection.js +1 -2
- package/es/edit/edit-component/text-selection.js +1 -1
- package/es/player/encode.js +0 -2
- package/es/player/interface/player.js +1 -1
- package/es/player/interface/scheduler.js +1 -1
- package/es/player/processor/common-processor.js +2 -0
- package/es/player/processor/processor-item.js +1 -1
- package/es/scene/action.js +2 -0
- package/es/story/character/chart/characters/rankingBar.js +5 -1
- package/es/story/character/chart/characters/rankingBar.js.map +1 -1
- package/package.json +5 -5
package/es/dsl/types/Datum.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { };
|
|
2
|
-
//# sourceMappingURL=Datum.js.map
|
|
2
|
+
//# sourceMappingURL=Datum.js.map
|
package/es/dsl/types/index.js
CHANGED
package/es/dsl/utils/datum.js
CHANGED
package/es/dsl/utils/flicker.js
CHANGED
|
@@ -15,4 +15,4 @@ export function loadAllSelection() {
|
|
|
15
15
|
Edit.registerEditComponent("shape", ShapeSelection), Edit.registerEditComponent("chart", ChartSelection),
|
|
16
16
|
Edit.registerEditComponent("box-selection", BoxSelection);
|
|
17
17
|
}
|
|
18
|
-
//# sourceMappingURL=index.js.map
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
package/es/player/encode.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { };
|
|
2
|
-
//# sourceMappingURL=player.js.map
|
|
2
|
+
//# sourceMappingURL=player.js.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { };
|
|
2
|
-
//# sourceMappingURL=scheduler.js.map
|
|
2
|
+
//# sourceMappingURL=scheduler.js.map
|
package/es/scene/action.js
CHANGED
|
@@ -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;
|
|
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.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "",
|
|
5
5
|
"sideEffects": true,
|
|
6
6
|
"main": "cjs/index.js",
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
"@visactor/vrender-kits": "0.20.1-alpha.5",
|
|
31
31
|
"@visactor/vrender-components": "0.20.1-alpha.5",
|
|
32
32
|
"@visactor/vutils": "~0.18.4",
|
|
33
|
-
"@visactor/vchart-extension": "0.0.2
|
|
33
|
+
"@visactor/vchart-extension": "0.0.2"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@internal/bundler": "
|
|
37
|
-
"@internal/eslint-config": "
|
|
38
|
-
"@internal/ts-config": "
|
|
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",
|