gy-ui-plus 1.0.4 → 1.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.
Files changed (38) hide show
  1. package/README.md +7 -7
  2. package/dist/gy-ui-plus.es.js +1764 -1839
  3. package/dist/gy-ui-plus.umd.js +2 -2
  4. package/package.json +12 -15
  5. package/packages/button/src/index.vue +41 -0
  6. package/packages/button/src/type.ts +11 -0
  7. package/packages/index.ts +5 -3
  8. package/packages/layout-page/index.ts +4 -0
  9. package/packages/layout-page/src/index.vue +75 -0
  10. package/packages/layout-page/style/index.ts +1 -0
  11. package/packages/layout-page/style/layout-page.scss +37 -0
  12. package/packages/table/index.ts +5 -0
  13. package/packages/table/src/GyTableColumn.vue +100 -0
  14. package/packages/table/src/index.vue +1073 -0
  15. package/packages/table/src/operator.vue +203 -0
  16. package/packages/table/src/renderCol.vue +20 -0
  17. package/packages/table/src/renderHeader.vue +18 -0
  18. package/packages/table/src/singleEdit.vue +352 -0
  19. package/packages/table/src/singleEditCell.vue +301 -0
  20. package/packages/table/src/tableProps.ts +146 -0
  21. package/packages/{gy-table → table}/src/useExpose.ts +15 -15
  22. package/packages/table/style/index.ts +1 -0
  23. package/packages/table/style/table.scss +348 -0
  24. package/dist/gy-ui-plus.css +0 -1
  25. package/packages/gy-button/src/index.vue +0 -29
  26. package/packages/gy-table/index.ts +0 -8
  27. package/packages/gy-table/src/TTableColumn.vue +0 -140
  28. package/packages/gy-table/src/index.vue +0 -1205
  29. package/packages/gy-table/src/operator.vue +0 -246
  30. package/packages/gy-table/src/renderCol.vue +0 -24
  31. package/packages/gy-table/src/renderHeader.vue +0 -18
  32. package/packages/gy-table/src/singleEdit.vue +0 -406
  33. package/packages/gy-table/src/singleEditCell.vue +0 -337
  34. package/packages/gy-table/src/tableProps.ts +0 -174
  35. package/packages/gy-table/style/table.scss +0 -368
  36. /package/packages/{gy-button → button}/index.ts +0 -0
  37. /package/packages/{gy-table → table}/src/ColumnSet.vue +0 -0
  38. /package/packages/{gy-table → table}/src/useVirtualized.ts +0 -0
package/README.md CHANGED
@@ -48,8 +48,8 @@ import { JButton, JTable } from 'gy-ui-plus'
48
48
  import 'gy-ui-plus/dist/gy-ui-plus.css'
49
49
 
50
50
  const app = createApp(App)
51
- app.component('JButton', JButton)
52
- app.component('JTable', JTable)
51
+ app.component('GyButton', GyButton)
52
+ app.component('GyTable', GyTable)
53
53
  app.mount('#app')
54
54
  ```
55
55
 
@@ -87,8 +87,8 @@ gy-ui-plus/
87
87
  ├── packages/ # 组件源码目录
88
88
  │ ├── index.ts # 组件库入口
89
89
  │ ├── withInstall.ts # 组件安装工具
90
- │ ├── j-button/ # 按钮组件
91
- │ └── j-table/ # 表格组件
90
+ │ ├── gy-button/ # 按钮组件
91
+ │ └── gy-table/ # 表格组件
92
92
  ├── dist/ # 构建输出目录
93
93
  ├── vite.config.ts # Vite 配置
94
94
  ├── tsconfig.json # TypeScript 配置
@@ -105,10 +105,10 @@ MIT License
105
105
 
106
106
  ## 联系方式
107
107
 
108
- 如有问题或建议,欢迎通过以下方式联系:
108
+ <!-- 如有问题或建议,欢迎通过以下方式联系: -->
109
109
 
110
- - GitHub Issues:
111
- - Email: your.email@example.com
110
+ <!-- - GitHub Issues:
111
+ - Email: -->
112
112
 
113
113
  ---
114
114