gy-ui-plus 1.0.6 → 1.0.8
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/README.md +3 -3
- package/dist/gy-ui-plus.es.js +1764 -1839
- package/dist/gy-ui-plus.umd.js +2 -2
- package/package.json +12 -11
- package/packages/button/src/index.vue +41 -0
- package/packages/button/src/type.ts +11 -0
- package/packages/index.ts +5 -3
- package/packages/layout-page/index.ts +4 -0
- package/packages/layout-page/src/index.vue +75 -0
- package/packages/layout-page/style/index.ts +1 -0
- package/packages/layout-page/style/layout-page.scss +37 -0
- package/packages/table/index.ts +5 -0
- package/packages/table/src/GyTableColumn.vue +100 -0
- package/packages/table/src/index.vue +1073 -0
- package/packages/table/src/operator.vue +203 -0
- package/packages/table/src/renderCol.vue +20 -0
- package/packages/table/src/renderHeader.vue +18 -0
- package/packages/table/src/singleEdit.vue +352 -0
- package/packages/table/src/singleEditCell.vue +301 -0
- package/packages/table/src/tableProps.ts +146 -0
- package/packages/{gy-table → table}/src/useExpose.ts +15 -15
- package/packages/table/style/index.ts +1 -0
- package/packages/table/style/table.scss +348 -0
- package/dist/gy-ui-plus.css +0 -1
- package/packages/gy-button/src/index.vue +0 -29
- package/packages/gy-table/index.ts +0 -8
- package/packages/gy-table/src/TTableColumn.vue +0 -140
- package/packages/gy-table/src/index.vue +0 -1205
- package/packages/gy-table/src/operator.vue +0 -246
- package/packages/gy-table/src/renderCol.vue +0 -24
- package/packages/gy-table/src/renderHeader.vue +0 -18
- package/packages/gy-table/src/singleEdit.vue +0 -406
- package/packages/gy-table/src/singleEditCell.vue +0 -337
- package/packages/gy-table/src/tableProps.ts +0 -174
- package/packages/gy-table/style/table.scss +0 -368
- /package/packages/{gy-button → button}/index.ts +0 -0
- /package/packages/{gy-table → table}/src/ColumnSet.vue +0 -0
- /package/packages/{gy-table → table}/src/useVirtualized.ts +0 -0
package/README.md
CHANGED
|
@@ -44,7 +44,7 @@ app.mount('#app')
|
|
|
44
44
|
```typescript
|
|
45
45
|
import { createApp } from 'vue'
|
|
46
46
|
import App from './App.vue'
|
|
47
|
-
import {
|
|
47
|
+
import { GyButton, GyTable } from 'gy-ui-plus'
|
|
48
48
|
import 'gy-ui-plus/dist/gy-ui-plus.css'
|
|
49
49
|
|
|
50
50
|
const app = createApp(App)
|
|
@@ -107,8 +107,8 @@ MIT License
|
|
|
107
107
|
|
|
108
108
|
<!-- 如有问题或建议,欢迎通过以下方式联系: -->
|
|
109
109
|
|
|
110
|
-
|
|
111
|
-
- Email: -->
|
|
110
|
+
- GitHub Issues: https://github.com/SKYE-iiii/gy-ui-plus/issues
|
|
111
|
+
<!-- - Email: -->
|
|
112
112
|
|
|
113
113
|
---
|
|
114
114
|
|