nbb-component-ui 1.0.0 → 1.0.2
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/.idea/encodings.xml +6 -0
- package/.idea/inspectionProfiles/Project_Default.xml +5 -0
- package/.idea/misc.xml +78 -0
- package/.idea/modules.xml +8 -0
- package/.idea/nbb-component-ui.iml +9 -0
- package/index.js +5 -2
- package/package.json +1 -1
- package/src/MyButton.vue +4 -1
- package/src/ProcessFlow/index.ts +3 -0
- package/src/ProcessFlow/src/ProcessFlow.vue +11 -0
package/.idea/misc.xml
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="AnalysisProjectProfileManager">
|
|
4
|
+
<option name="PROJECT_PROFILE" />
|
|
5
|
+
<option name="USE_PROJECT_LEVEL_SETTINGS" value="false" />
|
|
6
|
+
<list size="0" />
|
|
7
|
+
</component>
|
|
8
|
+
<component name="ProjectInspectionProfilesVisibleTreeState">
|
|
9
|
+
<entry key="Project Default">
|
|
10
|
+
<profile-state>
|
|
11
|
+
<expanded-state>
|
|
12
|
+
<State>
|
|
13
|
+
<id>Dockerfile</id>
|
|
14
|
+
</State>
|
|
15
|
+
<State>
|
|
16
|
+
<id>Gradle</id>
|
|
17
|
+
</State>
|
|
18
|
+
<State>
|
|
19
|
+
<id>Java</id>
|
|
20
|
+
</State>
|
|
21
|
+
<State>
|
|
22
|
+
<id>Java 5Java 语言级别迁移帮助Java</id>
|
|
23
|
+
</State>
|
|
24
|
+
<State>
|
|
25
|
+
<id>Java 语言级别迁移帮助Java</id>
|
|
26
|
+
</State>
|
|
27
|
+
<State>
|
|
28
|
+
<id>JavaScript 和 TypeScript</id>
|
|
29
|
+
</State>
|
|
30
|
+
<State>
|
|
31
|
+
<id>Oracle</id>
|
|
32
|
+
</State>
|
|
33
|
+
<State>
|
|
34
|
+
<id>SQL</id>
|
|
35
|
+
</State>
|
|
36
|
+
<State>
|
|
37
|
+
<id>Spring</id>
|
|
38
|
+
</State>
|
|
39
|
+
<State>
|
|
40
|
+
<id>Spring MVCSpring</id>
|
|
41
|
+
</State>
|
|
42
|
+
<State>
|
|
43
|
+
<id>可能的 bugGradle</id>
|
|
44
|
+
</State>
|
|
45
|
+
<State>
|
|
46
|
+
<id>可能的 bugJava</id>
|
|
47
|
+
</State>
|
|
48
|
+
<State>
|
|
49
|
+
<id>可能的 bugJavaScript 和 TypeScript</id>
|
|
50
|
+
</State>
|
|
51
|
+
<State>
|
|
52
|
+
<id>抽象问题Java</id>
|
|
53
|
+
</State>
|
|
54
|
+
<State>
|
|
55
|
+
<id>按位运算问题Java</id>
|
|
56
|
+
</State>
|
|
57
|
+
<State>
|
|
58
|
+
<id>数值问题Java</id>
|
|
59
|
+
</State>
|
|
60
|
+
<State>
|
|
61
|
+
<id>详细或冗余的代码结构Java</id>
|
|
62
|
+
</State>
|
|
63
|
+
</expanded-state>
|
|
64
|
+
<selected-state>
|
|
65
|
+
<State>
|
|
66
|
+
<id>用户定义</id>
|
|
67
|
+
</State>
|
|
68
|
+
</selected-state>
|
|
69
|
+
</profile-state>
|
|
70
|
+
</entry>
|
|
71
|
+
</component>
|
|
72
|
+
<component name="ProjectRootManager" version="2" languageLevel="JDK_21" default="true" project-jdk-name="21" project-jdk-type="JavaSDK">
|
|
73
|
+
<output url="file://$PROJECT_DIR$/out" />
|
|
74
|
+
</component>
|
|
75
|
+
<component name="SuppressionsComponent">
|
|
76
|
+
<option name="suppComments" value="[]" />
|
|
77
|
+
</component>
|
|
78
|
+
</project>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ProjectModuleManager">
|
|
4
|
+
<modules>
|
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/nbb-component-ui.iml" filepath="$PROJECT_DIR$/.idea/nbb-component-ui.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
|
+
</project>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="JAVA_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
|
4
|
+
<exclude-output />
|
|
5
|
+
<content url="file://$MODULE_DIR$" />
|
|
6
|
+
<orderEntry type="inheritedJdk" />
|
|
7
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
8
|
+
</component>
|
|
9
|
+
</module>
|
package/index.js
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import MyButton from './src/MyButton.vue'
|
|
2
|
+
import {ProcessFlow} from "./src/ProcessFlow";
|
|
3
|
+
|
|
2
4
|
// 支持全局注册
|
|
3
5
|
const install = (app) => {
|
|
4
6
|
app.component('MyButton', MyButton)
|
|
7
|
+
app.component('ProcessFlow', ProcessFlow)
|
|
5
8
|
}
|
|
6
9
|
// 支持按需引入
|
|
7
|
-
export { MyButton }
|
|
10
|
+
export { MyButton, ProcessFlow }
|
|
8
11
|
// 默认导出(全局注册用)
|
|
9
|
-
export default { install }
|
|
12
|
+
export default { install }
|
package/package.json
CHANGED
package/src/MyButton.vue
CHANGED