@kengic/vue 0.30.1-beta.5 → 0.30.1-beta.50

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 (160) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/README.md +1 -1
  3. package/dist/align-left-outlined.579b01c6.mjs +8 -0
  4. package/dist/caret-down-outlined.c0564a3f.mjs +8 -0
  5. package/dist/caret-left-outlined.35b1d7d1.mjs +8 -0
  6. package/dist/caret-up-outlined.81b559ad.mjs +8 -0
  7. package/dist/check-box-outline-blank.d01a2055.mjs +8 -0
  8. package/dist/collapse-all-rounded.26ee73fc.mjs +8 -0
  9. package/dist/double-right-outlined.f057a6b2.mjs +8 -0
  10. package/dist/expand-all-rounded.e01e6cb9.mjs +8 -0
  11. package/dist/eye-invisible-outlined.5f8d6151.mjs +8 -0
  12. package/dist/holder-outlined.9e698750.mjs +8 -0
  13. package/dist/index.css +1 -1
  14. package/dist/kengic-vue.js +152427 -107258
  15. package/dist/loading-outlined.13a15197.mjs +8 -0
  16. package/dist/more-outlined.8e1202ac.mjs +8 -0
  17. package/dist/palette-swatch-variant.f7258843.mjs +8 -0
  18. package/dist/partition-outlined.1bcf4f37.mjs +8 -0
  19. package/dist/pause-rounded.1ed7cc39.mjs +8 -0
  20. package/dist/play-arrow-rounded.90fc4173.mjs +8 -0
  21. package/dist/profile-outlined.1059fb0d.mjs +8 -0
  22. package/dist/project/build/utils.ts +20 -15
  23. package/dist/src/component/KgButton/KgButton.hooks.d.ts +2 -2
  24. package/dist/src/component/KgButton/KgButton.store.d.ts +1 -1
  25. package/dist/src/component/KgCanvas/KgCanvas.ContextMenu.d.ts +1 -2
  26. package/dist/src/component/KgCanvas/{KgCanvas.Toolbar.Fullscreen.d.ts → KgCanvas.ToolbarButton.Fullscreen.d.ts} +2 -3
  27. package/dist/src/component/KgCanvas/KgCanvas.ToolbarButton.Mode.d.ts +7 -0
  28. package/dist/src/component/KgCanvas/{KgCanvas.Toolbar.OverviewScale.d.ts → KgCanvas.ToolbarButton.OverviewScale.d.ts} +2 -3
  29. package/dist/src/component/KgCanvas/KgCanvas.Tooltip.d.ts +1 -2
  30. package/dist/src/component/KgCanvas/KgCanvas.d.ts +59 -3
  31. package/dist/src/component/KgCanvas/KgCanvas.event.d.ts +42 -5
  32. package/dist/src/component/KgCanvas/KgCanvas.hooks.d.ts +33 -5
  33. package/dist/src/component/KgCanvas/KgCanvas.model.d.ts +26 -32
  34. package/dist/src/component/KgCanvas/KgCanvas.service.d.ts +5 -31
  35. package/dist/src/component/KgCanvas/KgCanvas.store.d.ts +4 -1
  36. package/dist/src/component/KgCanvas/index.d.ts +1 -1
  37. package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.AreaSelect.d.ts +5 -0
  38. package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Canvas.d.ts +5 -0
  39. package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Legend.d.ts +5 -0
  40. package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Offline.d.ts +5 -0
  41. package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Setting.d.ts +5 -0
  42. package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Tab.Log.d.ts +5 -0
  43. package/dist/src/{page/KgCircleVis/components/KgCircleVis.Tab.Rgv.d.ts → component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Tab.Rgv.d.ts} +5 -5
  44. package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.d.ts +5 -0
  45. package/dist/src/component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.hooks.d.ts +29 -0
  46. package/dist/src/{page/KgCircleVis/components/KgCircleVis.model.d.ts → component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.model.d.ts} +1 -1
  47. package/dist/src/{page/KgCircleVis/components/KgCircleVis.store.d.ts → component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.store.d.ts} +41 -41
  48. package/dist/src/component/KgCircularShuttleMonitor/index.d.ts +3 -0
  49. package/dist/src/component/KgForm/KgForm.d.ts +39 -39
  50. package/dist/src/component/KgForm/index.d.ts +52 -52
  51. package/dist/src/component/KgForm.Item/KgForm.Item.d.ts +35 -35
  52. package/dist/src/component/KgForm.Item/KgForm.Item.model.d.ts +31 -33
  53. package/dist/src/component/KgForm.Item/components/KgForm.Item.Checkbox.d.ts +34 -34
  54. package/dist/src/component/KgForm.Item/components/KgForm.Item.CheckboxGroup.d.ts +38 -36
  55. package/dist/src/component/KgForm.Item/components/KgForm.Item.Date.d.ts +34 -34
  56. package/dist/src/component/KgForm.Item/components/KgForm.Item.DateRange.d.ts +34 -34
  57. package/dist/src/component/KgForm.Item/components/KgForm.Item.Image.d.ts +34 -34
  58. package/dist/src/component/KgForm.Item/components/KgForm.Item.Input.d.ts +34 -34
  59. package/dist/src/component/KgForm.Item/components/KgForm.Item.InputNumber.d.ts +34 -34
  60. package/dist/src/component/KgForm.Item/components/KgForm.Item.InputPassword.d.ts +34 -34
  61. package/dist/src/component/KgForm.Item/components/KgForm.Item.Link.d.ts +34 -34
  62. package/dist/src/component/KgForm.Item/components/KgForm.Item.RadioGroup.d.ts +34 -36
  63. package/dist/src/component/KgForm.Item/components/KgForm.Item.Select.d.ts +35 -35
  64. package/dist/src/component/KgForm.Item/components/KgForm.Item.Switch.d.ts +34 -34
  65. package/dist/src/component/KgForm.Item/components/KgForm.Item.TextArea.d.ts +34 -34
  66. package/dist/src/component/KgImage/KgImage.d.ts +6 -6
  67. package/dist/src/component/KgLayoutHeader/{components/KgLayoutHeaderLocale.d.ts → KgLayoutHeader.Locale.d.ts} +1 -1
  68. package/dist/src/component/KgLayoutHeader/index.d.ts +1 -1
  69. package/dist/src/component/KgModal/KgModal.d.ts +20 -20
  70. package/dist/src/component/KgModal/{hooks/useDragToResize.d.ts → KgModal.service.d.ts} +13 -2
  71. package/dist/src/component/KgModal02/KgModal02.d.ts +591 -0
  72. package/dist/src/component/KgModal02/KgModal02.model.d.ts +1 -0
  73. package/dist/src/component/KgModal02/index.d.ts +1 -0
  74. package/dist/src/component/KgResizable/KgResizable.d.ts +4 -4
  75. package/dist/src/component/KgSimulator/KgSimulator.Canvas.Title.d.ts +11 -0
  76. package/dist/src/component/KgSimulator/KgSimulator.Canvas.d.ts +11 -0
  77. package/dist/src/component/KgSimulator/KgSimulator.Canvas.service.d.ts +80 -0
  78. package/dist/src/component/KgSimulator/KgSimulator.Menu.Scene.Create.CircularConveyor.d.ts +36 -0
  79. package/dist/src/component/KgSimulator/KgSimulator.Menu.Scene.Open.CircularConveyor.d.ts +36 -0
  80. package/dist/src/component/KgSimulator/KgSimulator.Menu.d.ts +4 -0
  81. package/dist/src/component/KgSimulator/KgSimulator.Panel.Prefab.d.ts +4 -0
  82. package/dist/src/component/KgSimulator/KgSimulator.Panel.Property.d.ts +4 -0
  83. package/dist/src/component/KgSimulator/KgSimulator.Panel.Scene.d.ts +4 -0
  84. package/dist/src/component/KgSimulator/KgSimulator.Panel.d.ts +97 -0
  85. package/dist/src/component/KgSimulator/KgSimulator.Prefab.d.ts +108 -0
  86. package/dist/src/component/KgSimulator/KgSimulator.ToolbarButton.Prefab.d.ts +9 -0
  87. package/dist/src/component/KgSimulator/KgSimulator.ToolbarButton.Property.d.ts +9 -0
  88. package/dist/src/component/KgSimulator/KgSimulator.ToolbarButton.Scene.d.ts +9 -0
  89. package/dist/src/component/KgSimulator/KgSimulator.ToolbarButton.d.ts +113 -0
  90. package/dist/src/component/KgSimulator/KgSimulator.d.ts +33 -0
  91. package/dist/src/component/KgSimulator/KgSimulator.event.d.ts +99 -0
  92. package/dist/src/component/KgSimulator/KgSimulator.hooks.d.ts +103 -0
  93. package/dist/src/component/KgSimulator/KgSimulator.icons.d.ts +10 -0
  94. package/dist/src/component/KgSimulator/KgSimulator.model.d.ts +1450 -0
  95. package/dist/src/component/KgSimulator/KgSimulator.store.d.ts +294 -0
  96. package/dist/src/component/KgSimulator/KgSimulator.utils.d.ts +21 -0
  97. package/dist/src/component/KgSimulator/index.d.ts +3 -0
  98. package/dist/src/component/KgSubmit/KgSubmit.event.d.ts +20 -15
  99. package/dist/src/component/KgSubmit/KgSubmit.hooks.d.ts +46 -14
  100. package/dist/src/component/KgSubmit/KgSubmit.store.d.ts +46 -0
  101. package/dist/src/component/KgTable/{components/KgTable.BodyCell.d.ts → KgTable.BodyCell.d.ts} +1 -1
  102. package/dist/src/component/KgTable/{components/setting/KgTable.Setting.service.d.ts → KgTable.Setting.service.d.ts} +1 -1
  103. package/dist/src/component/KgTable/KgTable.store.d.ts +1 -1
  104. package/dist/src/component/KgTable02/KgTable02.BodyCell.d.ts +32 -3
  105. package/dist/src/component/KgTable02/KgTable02.event.d.ts +13 -3
  106. package/dist/src/component/KgTable02/KgTable02.hooks.d.ts +9 -0
  107. package/dist/src/component/KgVar/{KgVarFactory.d.ts → KgVar.Factory.d.ts} +9 -0
  108. package/dist/src/component/KgVar/KgVar.d.ts +23 -17
  109. package/dist/src/component/KgVar/KgVar.event.d.ts +19 -6
  110. package/dist/src/component/KgVar/KgVar.hooks.d.ts +20 -7
  111. package/dist/src/component/KgVar/KgVar.model.d.ts +0 -5
  112. package/dist/src/component/KgVar/index.d.ts +1 -1
  113. package/dist/src/component/KgVarConfig/KgVarConfig.model.d.ts +0 -3
  114. package/dist/src/component/index.d.ts +3 -0
  115. package/dist/src/config/config.store.d.ts +9 -5
  116. package/dist/src/config/index.d.ts +9 -3
  117. package/dist/src/const/const.model.d.ts +524 -11
  118. package/dist/src/const/form-id.const.d.ts +22 -10
  119. package/dist/src/const/index.d.ts +0 -1
  120. package/dist/src/i18n/i18n.setup.d.ts +1 -1
  121. package/dist/src/i18n/index.d.ts +0 -2
  122. package/dist/src/page/{KgCircleVis/KgPageCircleVis.d.ts → KgPageCircularShuttleMonitor/KgPageCircularShuttleMonitor.d.ts} +1 -1
  123. package/dist/src/page/KgPageCircularShuttleMonitor/index.d.ts +1 -0
  124. package/dist/src/page/KgPageDda/KgPageDda.d.ts +1 -1
  125. package/dist/src/page/KgPageDda/components/KgPageDda.Create.store.d.ts +3 -3
  126. package/dist/src/page/index.d.ts +2 -2
  127. package/dist/src/project/src/hooks/index.d.ts +0 -1
  128. package/dist/src/project/src/utils/env.d.ts +0 -16
  129. package/dist/src/service/http-client.d.ts +5 -1
  130. package/dist/src/util/ant-design-vue.d.ts +16 -16
  131. package/dist/src/util/kg-route.util.d.ts +6 -9
  132. package/dist/src/util/kg.util.d.ts +1 -2
  133. package/dist/src/util/tsx.helper.d.ts +7 -7
  134. package/package.json +9 -7
  135. package/dist/src/component/KgForm/KgForm.model.d.ts +0 -9
  136. package/dist/src/component/KgModal/hooks/useDragToMove.d.ts +0 -12
  137. package/dist/src/const/injection-keys.const.d.ts +0 -11
  138. package/dist/src/i18n/cs_CZ.d.ts +0 -301
  139. package/dist/src/i18n/en.d.ts +0 -300
  140. package/dist/src/i18n/es_ES.d.ts +0 -300
  141. package/dist/src/i18n/fr_FR.d.ts +0 -300
  142. package/dist/src/i18n/km_KH.d.ts +0 -300
  143. package/dist/src/i18n/ko_KR.d.ts +0 -300
  144. package/dist/src/i18n/vi_VN.d.ts +0 -300
  145. package/dist/src/i18n/zh_CN.d.ts +0 -301
  146. package/dist/src/page/KgCircleVis/components/KgCircleVis.AreaSelect.d.ts +0 -5
  147. package/dist/src/page/KgCircleVis/components/KgCircleVis.Canvas.d.ts +0 -5
  148. package/dist/src/page/KgCircleVis/components/KgCircleVis.Legend.d.ts +0 -5
  149. package/dist/src/page/KgCircleVis/components/KgCircleVis.Offline.d.ts +0 -5
  150. package/dist/src/page/KgCircleVis/components/KgCircleVis.Setting.d.ts +0 -5
  151. package/dist/src/page/KgCircleVis/components/KgCircleVis.Tab.Log.d.ts +0 -5
  152. package/dist/src/page/KgCircleVis/components/KgCircleVis.d.ts +0 -5
  153. package/dist/src/page/KgCircleVis/components/KgCircleVis.hooks.d.ts +0 -29
  154. package/dist/src/page/KgCircleVis/index.d.ts +0 -1
  155. package/dist/src/project/src/hooks/web/useI18n.d.ts +0 -13
  156. /package/dist/src/{page/KgCircleVis/components/KgCircleVis.Canvas.service.d.ts → component/KgCircularShuttleMonitor/KgCircularShuttleMonitor.Canvas.service.d.ts} +0 -0
  157. /package/dist/src/component/KgTable/{components/KgTable.HeadCell.d.ts → KgTable.HeadCell.d.ts} +0 -0
  158. /package/dist/src/component/KgTable/{components/KgTable.Info.d.ts → KgTable.Info.d.ts} +0 -0
  159. /package/dist/src/component/KgTable/{components/setting/KgTable.Setting.VarGridMaster.SaveAs.d.ts → KgTable.Setting.VarGridMaster.SaveAs.d.ts} +0 -0
  160. /package/dist/src/component/KgTable/{components/setting/KgTable.Setting.d.ts → KgTable.Setting.d.ts} +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.