@flowgram-vue/fixed-layout-core 0.2.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.
- package/LICENSE +22 -0
- package/dist/index.cjs +2327 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +61 -0
- package/dist/index.js +2323 -0
- package/dist/index.js.map +1 -0
- package/package.json +56 -0
- package/src/activities/block-icon.ts +55 -0
- package/src/activities/block-order-icon.ts +64 -0
- package/src/activities/block.ts +192 -0
- package/src/activities/break.ts +14 -0
- package/src/activities/dynamic-split.ts +94 -0
- package/src/activities/empty.ts +35 -0
- package/src/activities/end.ts +26 -0
- package/src/activities/index.ts +24 -0
- package/src/activities/inline-blocks.ts +197 -0
- package/src/activities/input.ts +152 -0
- package/src/activities/loop-extends/constants.ts +25 -0
- package/src/activities/loop-extends/index.ts +10 -0
- package/src/activities/loop-extends/loop-empty-branch.ts +60 -0
- package/src/activities/loop-extends/loop-inline-blocks.ts +140 -0
- package/src/activities/loop-extends/loop-left-empty-block.ts +43 -0
- package/src/activities/loop-extends/loop-right-empty-block.ts +18 -0
- package/src/activities/loop.ts +198 -0
- package/src/activities/multi-inputs.ts +98 -0
- package/src/activities/multi-outputs.ts +65 -0
- package/src/activities/output.ts +18 -0
- package/src/activities/root.ts +23 -0
- package/src/activities/simple-split.ts +47 -0
- package/src/activities/slot/constants.ts +56 -0
- package/src/activities/slot/extends/index.ts +8 -0
- package/src/activities/slot/extends/slot-block.ts +229 -0
- package/src/activities/slot/extends/slot-icon.ts +32 -0
- package/src/activities/slot/extends/slot-inline-blocks.ts +102 -0
- package/src/activities/slot/index.ts +8 -0
- package/src/activities/slot/slot.ts +108 -0
- package/src/activities/slot/typings.ts +13 -0
- package/src/activities/slot/utils/create.ts +105 -0
- package/src/activities/slot/utils/layout.ts +49 -0
- package/src/activities/slot/utils/node.ts +38 -0
- package/src/activities/slot/utils/transition.ts +222 -0
- package/src/activities/start.ts +21 -0
- package/src/activities/static-split.ts +29 -0
- package/src/activities/try-catch-extends/catch-block.ts +78 -0
- package/src/activities/try-catch-extends/catch-inline-blocks.ts +122 -0
- package/src/activities/try-catch-extends/constants.ts +27 -0
- package/src/activities/try-catch-extends/index.ts +11 -0
- package/src/activities/try-catch-extends/main-inline-blocks.ts +147 -0
- package/src/activities/try-catch-extends/try-block.ts +26 -0
- package/src/activities/try-catch-extends/try-slot.ts +48 -0
- package/src/activities/try-catch.ts +176 -0
- package/src/fixed-layout-container-module.ts +20 -0
- package/src/flow-registers.ts +117 -0
- package/src/index.ts +45 -0
package/src/index.ts
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
3
|
+
* SPDX-License-Identifier: MIT
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
export * from './fixed-layout-container-module';
|
|
7
|
+
import { SlotIconRegistry, SlotInlineBlocksRegistry } from './activities/slot/extends';
|
|
8
|
+
import {
|
|
9
|
+
BlockIconRegistry,
|
|
10
|
+
BlockOrderIconRegistry,
|
|
11
|
+
BlockRegistry,
|
|
12
|
+
DynamicSplitRegistry,
|
|
13
|
+
EmptyRegistry,
|
|
14
|
+
LoopRegistry,
|
|
15
|
+
StaticSplitRegistry,
|
|
16
|
+
TryCatchRegistry,
|
|
17
|
+
StartRegistry,
|
|
18
|
+
RootRegistry,
|
|
19
|
+
InlineBlocksRegistry,
|
|
20
|
+
EndRegistry,
|
|
21
|
+
SlotRegistry,
|
|
22
|
+
SlotBlockRegistry,
|
|
23
|
+
} from './activities';
|
|
24
|
+
|
|
25
|
+
export const FixedLayoutRegistries = {
|
|
26
|
+
BlockIconRegistry,
|
|
27
|
+
BlockOrderIconRegistry,
|
|
28
|
+
BlockRegistry,
|
|
29
|
+
DynamicSplitRegistry,
|
|
30
|
+
EmptyRegistry,
|
|
31
|
+
LoopRegistry,
|
|
32
|
+
StaticSplitRegistry,
|
|
33
|
+
TryCatchRegistry,
|
|
34
|
+
StartRegistry,
|
|
35
|
+
RootRegistry,
|
|
36
|
+
InlineBlocksRegistry,
|
|
37
|
+
EndRegistry,
|
|
38
|
+
SlotRegistry,
|
|
39
|
+
SlotBlockRegistry,
|
|
40
|
+
SlotIconRegistry,
|
|
41
|
+
SlotInlineBlocksRegistry,
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
// Export constant
|
|
45
|
+
export { SlotSpacingKey } from './activities/slot/constants';
|