cnhis-design-vue 0.3.8-beta → 0.3.9-beta
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/es/big-table/index.css +785 -7
- package/es/big-table/index.js +576 -152
- package/es/button-print/index.css +811 -9
- package/es/button-print/index.js +2 -3
- package/es/drag-layout/index.css +1044 -12
- package/es/drag-layout/index.js +2 -3
- package/es/grid/index.css +1045 -12
- package/es/grid/index.js +2 -3
- package/es/index.css +1044 -12
- package/es/index.js +581 -160
- package/package.json +3 -1
- package/packages/big-table/index.ts +8 -3
- package/packages/big-table/src/BigTable.vue +50 -307
- package/packages/big-table/src/FieldSet.vue +477 -0
- package/packages/big-table/src/assets/style/table-base.less +77 -81
- package/packages/big-table/src/assets/style/table-global.less +0 -8
- package/packages/big-table/src/components/edit-form/edit-select-table.vue +7 -3
- package/packages/big-table/src/components/edit-form/edit-select.vue +24 -3
- package/packages/big-table/src/hooks/useEdit.ts +73 -0
- package/packages/big-table/src/hooks/useTableParse.ts +2 -2
- package/packages/button-print/index.ts +3 -3
- package/packages/drag-layout/index.ts +3 -3
- package/packages/grid/index.ts +3 -3
package/es/button-print/index.js
CHANGED
|
@@ -21609,7 +21609,6 @@ script.__file = "packages/button-print/src/ButtonPrint.vue";
|
|
|
21609
21609
|
|
|
21610
21610
|
script.install = function (app) {
|
|
21611
21611
|
app.component(script.name, script);
|
|
21612
|
-
};
|
|
21613
|
-
const CButtonPrint = script;
|
|
21612
|
+
};
|
|
21614
21613
|
|
|
21615
|
-
export {
|
|
21614
|
+
export { script as default };
|