star-horse-lowcode 2.7.63 → 2.7.65

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.
Files changed (221) hide show
  1. package/.env.development +3 -0
  2. package/.env.production +3 -0
  3. package/.eslintrc-auto-import.json +77 -0
  4. package/.gitignore +27 -0
  5. package/.idea/.gitignore +5 -0
  6. package/.idea/MarsCodeWorkspaceAppSettings.xml +6 -0
  7. package/.idea/inspectionProfiles/Project_Default.xml +7 -0
  8. package/.idea/modules.xml +8 -0
  9. package/.idea/testcode.iml +12 -0
  10. package/.idea/vcs.xml +6 -0
  11. package/.idea/watcherTasks.xml +4 -0
  12. package/.idea/workspace.xml +207 -0
  13. package/.npmignore +21 -0
  14. package/.prettierignore +26 -0
  15. package/README.md +1 -0
  16. package/auto-imports.d.ts +137 -0
  17. package/components.d.ts +189 -0
  18. package/dist/assets/index.css +1 -1
  19. package/dist/index.es.js +19 -19
  20. package/dist/types/index.d.ts +7 -7
  21. package/eslint.config.js +37 -0
  22. package/index.html +14 -0
  23. package/package-lock.json +8276 -0
  24. package/package.json +4 -4
  25. package/prettier.config.js +20 -0
  26. package/public/logo.svg +660 -0
  27. package/src/App.vue +11 -0
  28. package/src/api/date_utils.ts +219 -0
  29. package/src/api/finger_utils.ts +71 -0
  30. package/src/api/form_utils.ts +281 -0
  31. package/src/api/jquery.min.js +2 -0
  32. package/src/api/pcas-code.json +1 -0
  33. package/src/api/settings.ts +81 -0
  34. package/src/api/star_horse_apis.ts +196 -0
  35. package/src/api/star_horse_utils.ts +797 -0
  36. package/src/api/system.ts +351 -0
  37. package/src/api/user_func.ts +147 -0
  38. package/src/api/valid_utils.ts +165 -0
  39. package/src/assets/css/index.scss +908 -0
  40. package/src/assets/icons.css +574 -0
  41. package/src/assets/star-horse-icons.woff +0 -0
  42. package/src/components/comp/ShDynamicForm.vue +160 -0
  43. package/src/components/comp/ShForm.vue +30 -0
  44. package/src/components/comp/ShTableListColumn.vue +61 -0
  45. package/src/components/comp/StarHorseDataSelector.vue +139 -0
  46. package/src/components/comp/StarHorseDataView.vue +110 -0
  47. package/src/components/comp/StarHorseDataViewItems.vue +61 -0
  48. package/src/components/comp/StarHorseDataViewTable.vue +102 -0
  49. package/src/components/comp/StarHorseDialog.vue +383 -0
  50. package/src/components/comp/StarHorseDraggable.vue +401 -0
  51. package/src/components/comp/StarHorseForm.vue +458 -0
  52. package/src/components/comp/StarHorseFormItem.vue +82 -0
  53. package/src/components/comp/StarHorseFormList.vue +516 -0
  54. package/src/components/comp/StarHorseFormTable.vue +56 -0
  55. package/src/components/comp/StarHorseIcon.vue +76 -0
  56. package/src/components/comp/StarHorseItem.vue +302 -0
  57. package/src/components/comp/StarHorseJsonEditor.vue +115 -0
  58. package/src/components/comp/StarHorsePopover.vue +66 -0
  59. package/src/components/comp/StarHorseSearchComp.vue +253 -0
  60. package/src/components/comp/StarHorseStaticTable.vue +395 -0
  61. package/src/components/comp/StarHorseTableColumn.vue +249 -0
  62. package/src/components/comp/StarHorseTableComp.vue +1193 -0
  63. package/src/components/comp/StarHorseTableViewColumn.vue +61 -0
  64. package/src/components/comp/StarHorseTree.vue +494 -0
  65. package/src/components/comp/index.ts +22 -0
  66. package/src/components/comp/items/UTableColumn.vue +65 -0
  67. package/src/components/comp/items/boxItem.vue +98 -0
  68. package/src/components/comp/items/callitem.ts +9 -0
  69. package/src/components/comp/items/cardItem.vue +152 -0
  70. package/src/components/comp/items/collapseItem.vue +134 -0
  71. package/src/components/comp/items/dytableItem.vue +135 -0
  72. package/src/components/comp/items/otherItem.vue +65 -0
  73. package/src/components/comp/items/tabItem.vue +155 -0
  74. package/src/components/comp/items/tabPanelItem.vue +110 -0
  75. package/src/components/comp/items/tableColumn.vue +129 -0
  76. package/src/components/comp/items/tableItem.vue +97 -0
  77. package/src/components/comp/items/tablebtn.vue +158 -0
  78. package/src/components/comp/items/viewBoxItem.vue +55 -0
  79. package/src/components/comp/items/viewCardItem.vue +47 -0
  80. package/src/components/comp/items/viewCollapseItem.vue +71 -0
  81. package/src/components/comp/items/viewDytableItem.vue +77 -0
  82. package/src/components/comp/items/viewOtherItem.vue +55 -0
  83. package/src/components/comp/items/viewTabItem.vue +77 -0
  84. package/src/components/comp/items/viewTabPanelItem.vue +54 -0
  85. package/src/components/comp/items/viewTableItem.vue +74 -0
  86. package/src/components/comp/selfcomp.ts +9 -0
  87. package/src/components/comp/utils/DataPicker.vue +302 -0
  88. package/src/components/comp/utils/DataTag.vue +51 -0
  89. package/src/components/cron/Crontab-Day.vue +230 -0
  90. package/src/components/cron/Crontab-Hour.vue +165 -0
  91. package/src/components/cron/Crontab-Min.vue +166 -0
  92. package/src/components/cron/Crontab-Month.vue +166 -0
  93. package/src/components/cron/Crontab-Result.vue +615 -0
  94. package/src/components/cron/Crontab-Second.vue +185 -0
  95. package/src/components/cron/Crontab-Week.vue +208 -0
  96. package/src/components/cron/Crontab-Year.vue +183 -0
  97. package/src/components/cron/Crontab.vue +474 -0
  98. package/src/components/enums/ModuleEnums.ts +10 -0
  99. package/src/components/enums/ServiceEnums.ts +18 -0
  100. package/src/components/formcomp/container/box-container.vue +162 -0
  101. package/src/components/formcomp/container/callitem.ts +9 -0
  102. package/src/components/formcomp/container/card-container.vue +170 -0
  103. package/src/components/formcomp/container/collapse-container.vue +133 -0
  104. package/src/components/formcomp/container/dytable-col.vue +448 -0
  105. package/src/components/formcomp/container/dytable-container.vue +57 -0
  106. package/src/components/formcomp/container/dytableUtils.ts +358 -0
  107. package/src/components/formcomp/container/group-box-container.vue +331 -0
  108. package/src/components/formcomp/container/index.ts +6 -0
  109. package/src/components/formcomp/container/tab-container.vue +153 -0
  110. package/src/components/formcomp/container/table-container.vue +249 -0
  111. package/src/components/formcomp/items/allitem.ts +9 -0
  112. package/src/components/formcomp/items/area-item.vue +116 -0
  113. package/src/components/formcomp/items/audio-item.vue +163 -0
  114. package/src/components/formcomp/items/autocomplete-item.vue +118 -0
  115. package/src/components/formcomp/items/barcode-item.vue +87 -0
  116. package/src/components/formcomp/items/base-json-item.vue +207 -0
  117. package/src/components/formcomp/items/button-item.vue +228 -0
  118. package/src/components/formcomp/items/cascade-item.vue +113 -0
  119. package/src/components/formcomp/items/checkbox-item.vue +97 -0
  120. package/src/components/formcomp/items/color-item.vue +70 -0
  121. package/src/components/formcomp/items/cron-item.vue +115 -0
  122. package/src/components/formcomp/items/datetime-item.vue +99 -0
  123. package/src/components/formcomp/items/depart-item.vue +51 -0
  124. package/src/components/formcomp/items/dialog-input-item.vue +207 -0
  125. package/src/components/formcomp/items/divider-item.vue +66 -0
  126. package/src/components/formcomp/items/html-item.vue +65 -0
  127. package/src/components/formcomp/items/htmleditor-item.vue +104 -0
  128. package/src/components/formcomp/items/icon-item.vue +195 -0
  129. package/src/components/formcomp/items/image-item.vue +247 -0
  130. package/src/components/formcomp/items/index.ts +44 -0
  131. package/src/components/formcomp/items/input-item.vue +150 -0
  132. package/src/components/formcomp/items/json-array-item.vue +67 -0
  133. package/src/components/formcomp/items/json-item.vue +66 -0
  134. package/src/components/formcomp/items/markdown-item.vue +77 -0
  135. package/src/components/formcomp/items/number-item.vue +94 -0
  136. package/src/components/formcomp/items/number-range-item.vue +278 -0
  137. package/src/components/formcomp/items/page-select-item.vue +407 -0
  138. package/src/components/formcomp/items/password-item.vue +71 -0
  139. package/src/components/formcomp/items/qrcode-item.vue +84 -0
  140. package/src/components/formcomp/items/radio-item.vue +112 -0
  141. package/src/components/formcomp/items/rate-item.vue +68 -0
  142. package/src/components/formcomp/items/select-item.vue +133 -0
  143. package/src/components/formcomp/items/signature-item.vue +216 -0
  144. package/src/components/formcomp/items/slider-item.vue +68 -0
  145. package/src/components/formcomp/items/starhorse-form-item.vue +334 -0
  146. package/src/components/formcomp/items/switch-item.vue +77 -0
  147. package/src/components/formcomp/items/tag-item.vue +77 -0
  148. package/src/components/formcomp/items/text-item.vue +75 -0
  149. package/src/components/formcomp/items/textarea-item.vue +85 -0
  150. package/src/components/formcomp/items/time-item.vue +77 -0
  151. package/src/components/formcomp/items/time-picker-item.vue +74 -0
  152. package/src/components/formcomp/items/transfer-item.vue +93 -0
  153. package/src/components/formcomp/items/tselect-item.vue +121 -0
  154. package/src/components/formcomp/items/unknown-item.vue +51 -0
  155. package/src/components/formcomp/items/upload-item.vue +189 -0
  156. package/src/components/formcomp/items/user-item.vue +177 -0
  157. package/src/components/formcomp/items/usercomp-item.vue +85 -0
  158. package/src/components/formcomp/items/view-markdown-item.vue +77 -0
  159. package/src/components/formcomp/utils/EditDataDialog.vue +67 -0
  160. package/src/components/formcomp/utils/FieldList.vue +125 -0
  161. package/src/components/formcomp/utils/ItemRelationEventUtils.ts +284 -0
  162. package/src/components/help.vue +31 -0
  163. package/src/components/menu/MenuItem.vue +95 -0
  164. package/src/components/menu/SubMenu.vue +68 -0
  165. package/src/components/menu/SubSystemMenu.vue +142 -0
  166. package/src/components/register.ts +24 -0
  167. package/src/components/system/ContentMenu.vue +260 -0
  168. package/src/components/system/StarHorseButtonList.vue +344 -0
  169. package/src/components/system/StarHorseMenu.vue +97 -0
  170. package/src/components/system/StarHorseSvg.vue +62 -0
  171. package/src/components/system/SystemComp.ts +9 -0
  172. package/src/components/system/index.ts +4 -0
  173. package/src/components/types/ApiUrls.ts +168 -0
  174. package/src/components/types/BtnAction.ts +51 -0
  175. package/src/components/types/BtnAuth.ts +43 -0
  176. package/src/components/types/CompInfo.ts +81 -0
  177. package/src/components/types/DialogProps.ts +55 -0
  178. package/src/components/types/DyCompField.ts +23 -0
  179. package/src/components/types/DynamicNode.ts +42 -0
  180. package/src/components/types/MenusInfo.ts +45 -0
  181. package/src/components/types/PageFieldInfo.ts +530 -0
  182. package/src/components/types/PageProps.ts +25 -0
  183. package/src/components/types/Params.ts +93 -0
  184. package/src/components/types/RuleType.ts +10 -0
  185. package/src/components/types/SearchProps.ts +42 -0
  186. package/src/components/types/ShortKey.ts +30 -0
  187. package/src/components/types/StarHorseType.ts +18 -0
  188. package/src/components/types/index.ts +15 -0
  189. package/src/config/element.ts +15 -0
  190. package/src/config/styles.ts +4 -0
  191. package/src/index.ts +98 -0
  192. package/src/install.ts +33 -0
  193. package/src/lang/en_US.ts +81 -0
  194. package/src/lang/index.ts +35 -0
  195. package/src/lang/zh_CN.ts +84 -0
  196. package/src/main.ts +57 -0
  197. package/src/plugins/AblesPlugin.ts +618 -0
  198. package/src/plugins/registerCompPlugin.ts +15 -0
  199. package/src/sample/test.vue +9 -0
  200. package/src/store/ButtonPermission.ts +101 -0
  201. package/src/store/ConsumerView.ts +52 -0
  202. package/src/store/ContinusConfig.ts +78 -0
  203. package/src/store/CopyerOperation.ts +74 -0
  204. package/src/store/DesignForm.ts +481 -0
  205. package/src/store/DesignPage.ts +59 -0
  206. package/src/store/DynamicForm.ts +241 -0
  207. package/src/store/GlobalConfig.ts +90 -0
  208. package/src/store/SelfOperation.ts +95 -0
  209. package/src/store/UserInfo.ts +88 -0
  210. package/src/store/index.ts +6 -0
  211. package/src/theme/localStorge.ts +16 -0
  212. package/src/theme/theme.ts +27 -0
  213. package/src/utils/FieldOperationUtils.ts +91 -0
  214. package/src/utils/auth.ts +83 -0
  215. package/src/utils/message.ts +69 -0
  216. package/src/utils/preview.ts +125 -0
  217. package/tsconfig.json +39 -0
  218. package/tsconfig.node.json +10 -0
  219. package/vite-env.d.ts +16 -0
  220. package/vite.config.ts +162 -0
  221. package/yarn.lock +4627 -0
@@ -0,0 +1,3 @@
1
+ # .env.development
2
+ VITE_WEBSOCKET_URL=ws://127.0.0.1:8749/system-config-dev/websocket/socketHandler
3
+ VITE_PRINTER_URL=ws://127.0.0.1:8888/printer
@@ -0,0 +1,3 @@
1
+ # .env.development
2
+ VITE_WEBSOCKET_URL=ws://192.168.20.204:8749/system-config-dev/websocket/socketHandler
3
+ VITE_PRINTER_URL=ws://127.0.0.1:8888/printer
@@ -0,0 +1,77 @@
1
+ {
2
+ "globals": {
3
+ "Component": true,
4
+ "ComponentPublicInstance": true,
5
+ "ComputedRef": true,
6
+ "DirectiveBinding": true,
7
+ "EffectScope": true,
8
+ "ExtractDefaultPropTypes": true,
9
+ "ExtractPropTypes": true,
10
+ "ExtractPublicPropTypes": true,
11
+ "InjectionKey": true,
12
+ "MaybeRef": true,
13
+ "MaybeRefOrGetter": true,
14
+ "PropType": true,
15
+ "Ref": true,
16
+ "Slot": true,
17
+ "Slots": true,
18
+ "VNode": true,
19
+ "WritableComputedRef": true,
20
+ "computed": true,
21
+ "createApp": true,
22
+ "customRef": true,
23
+ "defineAsyncComponent": true,
24
+ "defineComponent": true,
25
+ "effectScope": true,
26
+ "getCurrentInstance": true,
27
+ "getCurrentScope": true,
28
+ "h": true,
29
+ "inject": true,
30
+ "isProxy": true,
31
+ "isReactive": true,
32
+ "isReadonly": true,
33
+ "isRef": true,
34
+ "markRaw": true,
35
+ "nextTick": true,
36
+ "onActivated": true,
37
+ "onBeforeMount": true,
38
+ "onBeforeUnmount": true,
39
+ "onBeforeUpdate": true,
40
+ "onDeactivated": true,
41
+ "onErrorCaptured": true,
42
+ "onMounted": true,
43
+ "onRenderTracked": true,
44
+ "onRenderTriggered": true,
45
+ "onScopeDispose": true,
46
+ "onServerPrefetch": true,
47
+ "onUnmounted": true,
48
+ "onUpdated": true,
49
+ "onWatcherCleanup": true,
50
+ "provide": true,
51
+ "reactive": true,
52
+ "readonly": true,
53
+ "ref": true,
54
+ "resolveComponent": true,
55
+ "shallowReactive": true,
56
+ "shallowReadonly": true,
57
+ "shallowRef": true,
58
+ "toRaw": true,
59
+ "toRef": true,
60
+ "toRefs": true,
61
+ "toValue": true,
62
+ "triggerRef": true,
63
+ "unref": true,
64
+ "useAttrs": true,
65
+ "useCssModule": true,
66
+ "useCssVars": true,
67
+ "useId": true,
68
+ "useModel": true,
69
+ "useSlots": true,
70
+ "useTemplateRef": true,
71
+ "watch": true,
72
+ "watchEffect": true,
73
+ "watchPostEffect": true,
74
+ "watchSyncEffect": true,
75
+ "zhCn": true
76
+ }
77
+ }
package/.gitignore ADDED
@@ -0,0 +1,27 @@
1
+ # Logs
2
+ logs
3
+ *.log
4
+ npm-debug.log*
5
+ yarn-debug.log*
6
+ yarn-error.log*
7
+ pnpm-debug.log*
8
+ lerna-debug.log*
9
+ node_modules
10
+ dist
11
+ dist-ssr
12
+ *.local
13
+ *.mp3
14
+ *.mp4
15
+ # Editor directories and files
16
+ .vscode/*
17
+ !.vscode/extensions.json
18
+ .idea
19
+ .vite-inspect
20
+ .DS_Store
21
+ *.suo
22
+ *.ntvs*
23
+ *.njsproj
24
+ *.sln
25
+ *.sw?
26
+ components.d.ts
27
+ /plugin-dist/
@@ -0,0 +1,5 @@
1
+ # Default ignored files
2
+ /shelf/
3
+ /workspace.xml
4
+ # Editor-based HTTP Client requests
5
+ /httpRequests/
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="com.codeverse.userSettings.MarscodeWorkspaceAppSettingsState">
4
+ <option name="ckgOperationStatus" value="SUCCESS" />
5
+ </component>
6
+ </project>
@@ -0,0 +1,7 @@
1
+ <component name="InspectionProjectProfileManager">
2
+ <profile version="1.0">
3
+ <option name="myName" value="Project Default" />
4
+ <inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
5
+ <inspection_tool class="TsLint" enabled="true" level="WARNING" enabled_by_default="true" />
6
+ </profile>
7
+ </component>
@@ -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/testcode.iml" filepath="$PROJECT_DIR$/.idea/testcode.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="WEB_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$">
5
+ <excludeFolder url="file://$MODULE_DIR$/.tmp" />
6
+ <excludeFolder url="file://$MODULE_DIR$/temp" />
7
+ <excludeFolder url="file://$MODULE_DIR$/tmp" />
8
+ </content>
9
+ <orderEntry type="inheritedJdk" />
10
+ <orderEntry type="sourceFolder" forTests="false" />
11
+ </component>
12
+ </module>
package/.idea/vcs.xml ADDED
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="" vcs="Git" />
5
+ </component>
6
+ </project>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectTasksOptions" suppressed-tasks="SCSS" />
4
+ </project>
@@ -0,0 +1,207 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="AutoImportSettings">
4
+ <option name="autoReloadType" value="SELECTIVE" />
5
+ </component>
6
+ <component name="ChangeListManager">
7
+ <list default="true" id="96628fd9-be0c-4d07-9939-6748a8aed4ff" name="Changes" comment="" />
8
+ <option name="SHOW_DIALOG" value="false" />
9
+ <option name="HIGHLIGHT_CONFLICTS" value="true" />
10
+ <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
11
+ <option name="LAST_RESOLUTION" value="IGNORE" />
12
+ </component>
13
+ <component name="Git.Settings">
14
+ <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
15
+ </component>
16
+ <component name="MarkdownSettingsMigration">
17
+ <option name="stateVersion" value="1" />
18
+ </component>
19
+ <component name="PackageJsonUpdateNotifier">
20
+ <dismissed value="$PROJECT_DIR$/package.json" />
21
+ </component>
22
+ <component name="ProjectColorInfo">{
23
+ &quot;associatedIndex&quot;: 2
24
+ }</component>
25
+ <component name="ProjectId" id="2v3kFh9rGwGmhm5yIjTaoygpcK9" />
26
+ <component name="ProjectViewState">
27
+ <option name="hideEmptyMiddlePackages" value="true" />
28
+ <option name="showLibraryContents" value="true" />
29
+ </component>
30
+ <component name="PropertiesComponent"><![CDATA[{
31
+ "keyToString": {
32
+ "RunOnceActivity.OpenProjectViewOnStart": "true",
33
+ "RunOnceActivity.ShowReadmeOnStart": "true",
34
+ "RunOnceActivity.git.unshallow": "true",
35
+ "WebServerToolWindowFactoryState": "false",
36
+ "git-widget-placeholder": "sh__plugin",
37
+ "last_opened_file_path": "E:/lixycode/testcode/src/assets",
38
+ "node.js.detected.package.eslint": "true",
39
+ "node.js.detected.package.tslint": "true",
40
+ "node.js.selected.package.eslint": "(autodetect)",
41
+ "node.js.selected.package.tslint": "(autodetect)",
42
+ "nodejs_package_manager_path": "yarn",
43
+ "settings.editor.selected.configurable": "watcher.settings",
44
+ "ts.external.directory.path": "D:\\JetBrains\\WebStorm 2025.1.3\\plugins\\javascript-plugin\\jsLanguageServicesImpl\\external",
45
+ "vue.rearranger.settings.migration": "true"
46
+ }
47
+ }]]></component>
48
+ <component name="RecentsManager">
49
+ <key name="CopyFile.RECENT_KEYS">
50
+ <recent name="E:\lixycode\testcode\src\assets" />
51
+ <recent name="E:\lixycode\testcode\src\components\comp\items" />
52
+ <recent name="E:\lixycode\testcode\src\components\comp" />
53
+ <recent name="E:\lixycode\testcode\src\components\formcomp\items" />
54
+ <recent name="E:\lixycode\testcode" />
55
+ </key>
56
+ <key name="MoveFile.RECENT_KEYS">
57
+ <recent name="E:\lixycode\testcode\src\simple" />
58
+ </key>
59
+ </component>
60
+ <component name="RunManager" selected="npm.serve">
61
+ <configuration name="build" type="js.build_tools.npm" temporary="true" nameIsGenerated="true">
62
+ <package-json value="$PROJECT_DIR$/package.json" />
63
+ <command value="run" />
64
+ <scripts>
65
+ <script value="build" />
66
+ </scripts>
67
+ <node-interpreter value="project" />
68
+ <envs />
69
+ <method v="2" />
70
+ </configuration>
71
+ <configuration name="build:analyze" type="js.build_tools.npm" temporary="true" nameIsGenerated="true">
72
+ <package-json value="$PROJECT_DIR$/package.json" />
73
+ <command value="run" />
74
+ <scripts>
75
+ <script value="build:analyze" />
76
+ </scripts>
77
+ <node-interpreter value="project" />
78
+ <envs />
79
+ <method v="2" />
80
+ </configuration>
81
+ <configuration name="lint:fix" type="js.build_tools.npm" temporary="true" nameIsGenerated="true">
82
+ <package-json value="$PROJECT_DIR$/package.json" />
83
+ <command value="run" />
84
+ <scripts>
85
+ <script value="lint:fix" />
86
+ </scripts>
87
+ <node-interpreter value="project" />
88
+ <envs />
89
+ <method v="2" />
90
+ </configuration>
91
+ <configuration name="preview:vite" type="js.build_tools.npm" temporary="true" nameIsGenerated="true">
92
+ <package-json value="$PROJECT_DIR$/node_modules/qrcode-vue3/package.json" />
93
+ <command value="run" />
94
+ <scripts>
95
+ <script value="preview:vite" />
96
+ </scripts>
97
+ <node-interpreter value="project" />
98
+ <envs />
99
+ <method v="2" />
100
+ </configuration>
101
+ <configuration name="serve" type="js.build_tools.npm" temporary="true" nameIsGenerated="true">
102
+ <package-json value="$PROJECT_DIR$/package.json" />
103
+ <command value="run" />
104
+ <scripts>
105
+ <script value="serve" />
106
+ </scripts>
107
+ <node-interpreter value="project" />
108
+ <envs />
109
+ <method v="2" />
110
+ </configuration>
111
+ <recent_temporary>
112
+ <list>
113
+ <item itemvalue="npm.serve" />
114
+ <item itemvalue="npm.build" />
115
+ <item itemvalue="npm.preview:vite" />
116
+ <item itemvalue="npm.build:analyze" />
117
+ <item itemvalue="npm.lint:fix" />
118
+ </list>
119
+ </recent_temporary>
120
+ </component>
121
+ <component name="SharedIndexes">
122
+ <attachedChunks>
123
+ <set>
124
+ <option value="bundled-js-predefined-d6986cc7102b-09060db00ec0-JavaScript-WS-251.26927.40" />
125
+ </set>
126
+ </attachedChunks>
127
+ </component>
128
+ <component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
129
+ <component name="TaskManager">
130
+ <task active="true" id="Default" summary="Default task">
131
+ <changelist id="96628fd9-be0c-4d07-9939-6748a8aed4ff" name="Changes" comment="" />
132
+ <created>1743381042977</created>
133
+ <option name="number" value="Default" />
134
+ <option name="presentableId" value="Default" />
135
+ <updated>1743381042977</updated>
136
+ <workItem from="1743381048566" duration="31594000" />
137
+ <workItem from="1743476552248" duration="13000" />
138
+ <workItem from="1743477570872" duration="5058000" />
139
+ <workItem from="1743490780319" duration="3702000" />
140
+ <workItem from="1743557747957" duration="25389000" />
141
+ <workItem from="1743989691210" duration="1261000" />
142
+ <workItem from="1743991066658" duration="7460000" />
143
+ <workItem from="1744015535652" duration="9666000" />
144
+ <workItem from="1744162113975" duration="12696000" />
145
+ <workItem from="1744244806295" duration="8000000" />
146
+ <workItem from="1744269834138" duration="4784000" />
147
+ <workItem from="1744330282621" duration="11456000" />
148
+ <workItem from="1744598536819" duration="9647000" />
149
+ <workItem from="1744680628624" duration="34154000" />
150
+ <workItem from="1744858286577" duration="4163000" />
151
+ <workItem from="1745289613558" duration="1098000" />
152
+ <workItem from="1745294195697" duration="2987000" />
153
+ <workItem from="1745307422053" duration="14000" />
154
+ <workItem from="1745313949952" duration="5399000" />
155
+ <workItem from="1745456531198" duration="36592000" />
156
+ <workItem from="1745804893282" duration="753000" />
157
+ <workItem from="1745805802879" duration="3530000" />
158
+ <workItem from="1745810100543" duration="1907000" />
159
+ <workItem from="1745910587663" duration="3901000" />
160
+ <workItem from="1746498776610" duration="25337000" />
161
+ <workItem from="1746685844652" duration="28231000" />
162
+ <workItem from="1746784567018" duration="325000" />
163
+ <workItem from="1747359921216" duration="4604000" />
164
+ <workItem from="1747452122922" duration="4983000" />
165
+ <workItem from="1747615437784" duration="605000" />
166
+ <workItem from="1747642138327" duration="22000" />
167
+ <workItem from="1747710892632" duration="67000" />
168
+ <workItem from="1747732973369" duration="943000" />
169
+ <workItem from="1747785079686" duration="75000" />
170
+ <workItem from="1748222375491" duration="7729000" />
171
+ <workItem from="1748324087497" duration="17184000" />
172
+ <workItem from="1748396016873" duration="8000" />
173
+ <workItem from="1748506059371" duration="6322000" />
174
+ <workItem from="1748573439953" duration="4000" />
175
+ <workItem from="1748577619938" duration="11000" />
176
+ <workItem from="1749085473303" duration="122000" />
177
+ <workItem from="1749085913990" duration="32941000" />
178
+ <workItem from="1749783543026" duration="2587000" />
179
+ <workItem from="1749802762247" duration="4938000" />
180
+ <workItem from="1749868142868" duration="24239000" />
181
+ <workItem from="1750052812259" duration="22963000" />
182
+ <workItem from="1750218232561" duration="21864000" />
183
+ <workItem from="1750491797219" duration="13168000" />
184
+ <workItem from="1750650037744" duration="24000" />
185
+ <workItem from="1750650235597" duration="5000" />
186
+ <workItem from="1750661769125" duration="13718000" />
187
+ <workItem from="1750818633285" duration="1032000" />
188
+ <workItem from="1750821466551" duration="1088000" />
189
+ <workItem from="1750822812302" duration="601000" />
190
+ <workItem from="1750823427273" duration="12282000" />
191
+ <workItem from="1753083698897" duration="36410000" />
192
+ <workItem from="1753318543481" duration="951000" />
193
+ <workItem from="1753328346584" duration="20000" />
194
+ <workItem from="1753421696147" duration="24000" />
195
+ <workItem from="1753431912896" duration="334000" />
196
+ <workItem from="1753432590989" duration="37000" />
197
+ <workItem from="1753490436549" duration="5575000" />
198
+ <workItem from="1753683928117" duration="16970000" />
199
+ <workItem from="1753768872244" duration="9904000" />
200
+ <workItem from="1753864749842" duration="31805000" />
201
+ </task>
202
+ <servers />
203
+ </component>
204
+ <component name="TypeScriptGeneratedFilesManager">
205
+ <option name="version" value="3" />
206
+ </component>
207
+ </project>
package/.npmignore ADDED
@@ -0,0 +1,21 @@
1
+ # 排除开发文件
2
+ src/
3
+ !dist/
4
+ !src/components/types/**/*.ts
5
+
6
+ # 排除构建工具
7
+ vite.config.*
8
+ *.local
9
+
10
+ # 排除测试文件
11
+ __tests__/
12
+ *.test.*
13
+
14
+ # 排除文档
15
+ docs/
16
+ *.md
17
+
18
+ # 排除配置文件
19
+ .eslint*
20
+ .prettier*
21
+ tsconfig*
@@ -0,0 +1,26 @@
1
+ # Add environment files
2
+ **/.env*
3
+
4
+ # Keep existing patterns
5
+ /*.config.js
6
+ /*.config.json
7
+ **/*.d.ts
8
+ .npm/
9
+ .cache/
10
+ .vscode/
11
+ .idea/
12
+ dist/
13
+ node_modules/
14
+ *.lock
15
+ *.log
16
+ *.map
17
+ *.out
18
+ *.tsbuildinfo
19
+ .env.development
20
+ .env.production
21
+ .env.test
22
+ .gitignore
23
+ .prettierignore
24
+ *.txt
25
+ **/*.html
26
+ jquery.min.js
package/README.md CHANGED
@@ -320,3 +320,4 @@ barcode 条形码组件
320
320
  31. 2025-07-29 修复StarHorseSearchComp 更多查询时,输入框 没有匹配模式异常
321
321
  32. 2025-08-01 修复page-select-item 显示问题,优化StarHorseFormList 组件弹窗模式添加行时增加提交并继续按钮
322
322
  33. 2025-08-02 修复StarHorseFormList 在同实例不同表单数据渲染时,上一个表单的数据不清空问题
323
+ 34. 2025-08-04 修复StarHorseForm 批量添加数据异常
@@ -0,0 +1,137 @@
1
+ /* eslint-disable */
2
+ /* prettier-ignore */
3
+ // @ts-nocheck
4
+ // noinspection JSUnusedGlobalSymbols
5
+ // Generated by unplugin-auto-import
6
+ // biome-ignore lint: disable
7
+ export {}
8
+ declare global {
9
+ const EffectScope: typeof import('vue')['EffectScope']
10
+ const computed: typeof import('vue')['computed']
11
+ const createApp: typeof import('vue')['createApp']
12
+ const customRef: typeof import('vue')['customRef']
13
+ const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']
14
+ const defineComponent: typeof import('vue')['defineComponent']
15
+ const effectScope: typeof import('vue')['effectScope']
16
+ const getCurrentInstance: typeof import('vue')['getCurrentInstance']
17
+ const getCurrentScope: typeof import('vue')['getCurrentScope']
18
+ const h: typeof import('vue')['h']
19
+ const inject: typeof import('vue')['inject']
20
+ const isProxy: typeof import('vue')['isProxy']
21
+ const isReactive: typeof import('vue')['isReactive']
22
+ const isReadonly: typeof import('vue')['isReadonly']
23
+ const isRef: typeof import('vue')['isRef']
24
+ const markRaw: typeof import('vue')['markRaw']
25
+ const nextTick: typeof import('vue')['nextTick']
26
+ const onActivated: typeof import('vue')['onActivated']
27
+ const onBeforeMount: typeof import('vue')['onBeforeMount']
28
+ const onBeforeUnmount: typeof import('vue')['onBeforeUnmount']
29
+ const onBeforeUpdate: typeof import('vue')['onBeforeUpdate']
30
+ const onDeactivated: typeof import('vue')['onDeactivated']
31
+ const onErrorCaptured: typeof import('vue')['onErrorCaptured']
32
+ const onMounted: typeof import('vue')['onMounted']
33
+ const onRenderTracked: typeof import('vue')['onRenderTracked']
34
+ const onRenderTriggered: typeof import('vue')['onRenderTriggered']
35
+ const onScopeDispose: typeof import('vue')['onScopeDispose']
36
+ const onServerPrefetch: typeof import('vue')['onServerPrefetch']
37
+ const onUnmounted: typeof import('vue')['onUnmounted']
38
+ const onUpdated: typeof import('vue')['onUpdated']
39
+ const onWatcherCleanup: typeof import('vue')['onWatcherCleanup']
40
+ const provide: typeof import('vue')['provide']
41
+ const reactive: typeof import('vue')['reactive']
42
+ const readonly: typeof import('vue')['readonly']
43
+ const ref: typeof import('vue')['ref']
44
+ const resolveComponent: typeof import('vue')['resolveComponent']
45
+ const shallowReactive: typeof import('vue')['shallowReactive']
46
+ const shallowReadonly: typeof import('vue')['shallowReadonly']
47
+ const shallowRef: typeof import('vue')['shallowRef']
48
+ const toRaw: typeof import('vue')['toRaw']
49
+ const toRef: typeof import('vue')['toRef']
50
+ const toRefs: typeof import('vue')['toRefs']
51
+ const toValue: typeof import('vue')['toValue']
52
+ const triggerRef: typeof import('vue')['triggerRef']
53
+ const unref: typeof import('vue')['unref']
54
+ const useAttrs: typeof import('vue')['useAttrs']
55
+ const useCssModule: typeof import('vue')['useCssModule']
56
+ const useCssVars: typeof import('vue')['useCssVars']
57
+ const useId: typeof import('vue')['useId']
58
+ const useModel: typeof import('vue')['useModel']
59
+ const useSlots: typeof import('vue')['useSlots']
60
+ const useTemplateRef: typeof import('vue')['useTemplateRef']
61
+ const watch: typeof import('vue')['watch']
62
+ const watchEffect: typeof import('vue')['watchEffect']
63
+ const watchPostEffect: typeof import('vue')['watchPostEffect']
64
+ const watchSyncEffect: typeof import('vue')['watchSyncEffect']
65
+ const zhCn: typeof import('element-plus/es/locale/lang/zh-cn')['default']
66
+ }
67
+ // for type re-export
68
+ declare global {
69
+ // @ts-ignore
70
+ export type { Component, Slot, Slots, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue'
71
+ import('vue')
72
+ }
73
+
74
+ // for vue template auto import
75
+ import { UnwrapRef } from 'vue'
76
+ declare module 'vue' {
77
+ interface GlobalComponents {}
78
+ interface ComponentCustomProperties {
79
+ readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
80
+ readonly computed: UnwrapRef<typeof import('vue')['computed']>
81
+ readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
82
+ readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
83
+ readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
84
+ readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
85
+ readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
86
+ readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
87
+ readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
88
+ readonly h: UnwrapRef<typeof import('vue')['h']>
89
+ readonly inject: UnwrapRef<typeof import('vue')['inject']>
90
+ readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
91
+ readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
92
+ readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
93
+ readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
94
+ readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
95
+ readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
96
+ readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
97
+ readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
98
+ readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
99
+ readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
100
+ readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
101
+ readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
102
+ readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
103
+ readonly onRenderTracked: UnwrapRef<typeof import('vue')['onRenderTracked']>
104
+ readonly onRenderTriggered: UnwrapRef<typeof import('vue')['onRenderTriggered']>
105
+ readonly onScopeDispose: UnwrapRef<typeof import('vue')['onScopeDispose']>
106
+ readonly onServerPrefetch: UnwrapRef<typeof import('vue')['onServerPrefetch']>
107
+ readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
108
+ readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
109
+ readonly onWatcherCleanup: UnwrapRef<typeof import('vue')['onWatcherCleanup']>
110
+ readonly provide: UnwrapRef<typeof import('vue')['provide']>
111
+ readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
112
+ readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
113
+ readonly ref: UnwrapRef<typeof import('vue')['ref']>
114
+ readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
115
+ readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
116
+ readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
117
+ readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
118
+ readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
119
+ readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
120
+ readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
121
+ readonly toValue: UnwrapRef<typeof import('vue')['toValue']>
122
+ readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
123
+ readonly unref: UnwrapRef<typeof import('vue')['unref']>
124
+ readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
125
+ readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
126
+ readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
127
+ readonly useId: UnwrapRef<typeof import('vue')['useId']>
128
+ readonly useModel: UnwrapRef<typeof import('vue')['useModel']>
129
+ readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
130
+ readonly useTemplateRef: UnwrapRef<typeof import('vue')['useTemplateRef']>
131
+ readonly watch: UnwrapRef<typeof import('vue')['watch']>
132
+ readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
133
+ readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
134
+ readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
135
+ readonly zhCn: UnwrapRef<typeof import('element-plus/es/locale/lang/zh-cn')['default']>
136
+ }
137
+ }