@lemon30_npm/csit-vue3 0.0.21 → 0.0.31
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/csit-vue3.js +281 -286
- package/dist/index.css +1 -1
- package/dist/lib/ci-common-list/ci-common-list-layout/index.js +3 -1
- package/dist/lib/ci-common-list/ci-common-list-layout/index.vue.js +2 -2
- package/dist/lib/ci-common-list/ci-common-list-pagination/index.js +3 -1
- package/dist/lib/ci-common-list/ci-common-list-query/index.js +3 -1
- package/dist/lib/ci-common-list/ci-common-list-query/index.vue.js +2 -2
- package/dist/lib/ci-common-list/ci-common-list-start-end-datepicker/index.js +3 -1
- package/dist/lib/ci-dictionary-select/index.js +3 -1
- package/dist/lib/ci-dictionary-select/index.vue.js +2 -2
- package/dist/lib/ci-echarts/ci-echart-ChinaMap/index.js +3 -1
- package/dist/lib/ci-echarts/ci-echart-ChinaMap/index.vue.js +2 -2
- package/dist/lib/ci-echarts/ci-echart-bar/index.js +5 -3
- package/dist/lib/ci-echarts/ci-echart-bar/index.vue.js +2 -2
- package/dist/lib/ci-echarts/ci-echart-pie/index.js +5 -3
- package/dist/lib/ci-echarts/ci-echart-pie/index.vue.js +2 -2
- package/dist/lib/ci-element-plus/ci-el-date-picker-daterange/index.js +3 -1
- package/dist/lib/ci-element-plus/ci-el-date-picker-daterange/index.vue.js +2 -2
- package/dist/lib/ci-no-data-status/index.js +6 -4
- package/dist/lib/ci-page-header/index.js +3 -1
- package/dist/lib/ci-page-header/index.vue.js +2 -2
- package/dist/lib/ci-svg-icon/index.js +6 -5
- package/dist/lib/ci-time-line-list/index.js +6 -4
- package/dist/lib/ci-time-line-list/index.vue.js +2 -2
- package/dist/lib/ci-upload/index.css +1 -1
- package/dist/lib/ci-upload/index.js +5 -4
- package/dist/lib/ci-upload/index.vue.js +2 -2
- package/dist/lib/ci-upload/index.vue2.js +0 -5
- package/dist/lib/components/index.js +45 -59
- package/dist/types/src/components/components-project/ci-blue-line-title/index.d.ts +5 -0
- package/dist/types/src/components/components-project/ci-common-list/ci-common-list-layout/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-common-list/ci-common-list-pagination/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-common-list/ci-common-list-query/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-common-list/ci-common-list-start-end-datepicker/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-dictionary-select/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-echarts/ci-echart-ChinaMap/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-echarts/ci-echart-bar/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-echarts/ci-echart-pie/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-element-plus/ci-el-date-picker-daterange/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-no-data-status/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-page-header/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-svg-icon/index.d.ts +6 -2
- package/dist/types/src/components/components-project/ci-time-line-list/index.d.ts +6 -1
- package/dist/types/src/components/components-project/ci-upload/index.d.ts +6 -1
- package/package.json +4 -1
- package/dist/lib/ci-upload/styles/index.css +0 -1
- /package/dist/lib/{ci-dictionary-select → ci-common-list/ci-common-list-pagination}/index.css +0 -0
package/dist/types/src/components/components-project/ci-common-list/ci-common-list-query/index.d.ts
CHANGED
|
@@ -1,2 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { App } from 'vue';
|
|
2
|
+
import { default as _CommonListQuery } from './index.vue';
|
|
3
|
+
declare const CommonListQuery: typeof _CommonListQuery & {
|
|
4
|
+
install: (app: App) => void;
|
|
5
|
+
};
|
|
6
|
+
export { CommonListQuery };
|
|
2
7
|
export default CommonListQuery;
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { App } from 'vue';
|
|
2
|
+
import { default as _CiCommonListStartEndDatePicker } from './index.vue';
|
|
3
|
+
declare const CiCommonListStartEndDatePicker: typeof _CiCommonListStartEndDatePicker & {
|
|
4
|
+
install: (app: App) => void;
|
|
5
|
+
};
|
|
6
|
+
export { CiCommonListStartEndDatePicker };
|
|
2
7
|
export default CiCommonListStartEndDatePicker;
|
|
3
8
|
export * from './type';
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { App } from 'vue';
|
|
2
|
+
import { default as _CiDictionarySelect } from './index.vue';
|
|
3
|
+
declare const CiDictionarySelect: typeof _CiDictionarySelect & {
|
|
4
|
+
install: (app: App) => void;
|
|
5
|
+
};
|
|
6
|
+
export { CiDictionarySelect };
|
|
2
7
|
export default CiDictionarySelect;
|
|
3
8
|
export * from './type';
|
package/dist/types/src/components/components-project/ci-echarts/ci-echart-ChinaMap/index.d.ts
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { App } from 'vue';
|
|
2
|
+
import { default as _CiEchartChinaMap } from './index.vue';
|
|
3
|
+
declare const CiEchartChinaMap: typeof _CiEchartChinaMap & {
|
|
4
|
+
install: (app: App) => void;
|
|
5
|
+
};
|
|
6
|
+
export { CiEchartChinaMap };
|
|
2
7
|
export default CiEchartChinaMap;
|
|
3
8
|
export * from './type';
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { App } from 'vue';
|
|
2
|
+
import { default as _CiEchartBar } from './index.vue';
|
|
3
|
+
declare const CiEchartBar: typeof _CiEchartBar & {
|
|
4
|
+
install: (app: App) => void;
|
|
5
|
+
};
|
|
6
|
+
export { CiEchartBar };
|
|
2
7
|
export default CiEchartBar;
|
|
3
8
|
export * from './type';
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { App } from 'vue';
|
|
2
|
+
import { default as _CiEchartPie } from './index.vue';
|
|
3
|
+
declare const CiEchartPie: typeof _CiEchartPie & {
|
|
4
|
+
install: (app: App) => void;
|
|
5
|
+
};
|
|
6
|
+
export { CiEchartPie };
|
|
2
7
|
export default CiEchartPie;
|
|
3
8
|
export * from './type';
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { App } from 'vue';
|
|
2
|
+
import { default as _CiElDatePickerDaterange } from './index.vue';
|
|
3
|
+
declare const CiElDatePickerDaterange: typeof _CiElDatePickerDaterange & {
|
|
4
|
+
install: (app: App) => void;
|
|
5
|
+
};
|
|
6
|
+
export { CiElDatePickerDaterange };
|
|
2
7
|
export default CiElDatePickerDaterange;
|
|
3
8
|
export * from './type';
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { App } from 'vue';
|
|
2
|
+
import { default as _CiNoDataStatus } from './index.vue';
|
|
3
|
+
declare const CiNoDataStatus: typeof _CiNoDataStatus & {
|
|
4
|
+
install: (app: App) => void;
|
|
5
|
+
};
|
|
6
|
+
export { CiNoDataStatus };
|
|
2
7
|
export default CiNoDataStatus;
|
|
3
8
|
export * from './type';
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { App } from 'vue';
|
|
2
|
+
import { default as _CiPageHeader } from './index.vue';
|
|
3
|
+
declare const CiPageHeader: typeof _CiPageHeader & {
|
|
4
|
+
install: (app: App) => void;
|
|
5
|
+
};
|
|
6
|
+
export { CiPageHeader };
|
|
2
7
|
export default CiPageHeader;
|
|
3
8
|
export * from './type';
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import { App } from 'vue';
|
|
2
|
+
import { default as _CiSvgIcon } from './index.vue';
|
|
3
|
+
declare const CiSvgIcon: typeof _CiSvgIcon & {
|
|
4
|
+
install: (app: App) => void;
|
|
5
|
+
};
|
|
3
6
|
export { CiSvgIcon };
|
|
7
|
+
export default CiSvgIcon;
|
|
4
8
|
export * from './type';
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { App } from 'vue';
|
|
2
|
+
import { default as _CiTimelineList } from './index.vue';
|
|
3
|
+
declare const CiTimelineList: typeof _CiTimelineList & {
|
|
4
|
+
install: (app: App) => void;
|
|
5
|
+
};
|
|
6
|
+
export { CiTimelineList };
|
|
2
7
|
export default CiTimelineList;
|
|
3
8
|
export * from './type';
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { App } from 'vue';
|
|
2
|
+
import { default as _CiUpload } from './index.vue';
|
|
3
|
+
declare const CiUpload: typeof _CiUpload & {
|
|
4
|
+
install: (app: App) => void;
|
|
5
|
+
};
|
|
6
|
+
export { CiUpload };
|
|
2
7
|
export default CiUpload;
|
|
3
8
|
export * from './type';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lemon30_npm/csit-vue3",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.31",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"author": "cuiwq",
|
|
6
6
|
"license": "MIT",
|
|
@@ -124,6 +124,9 @@
|
|
|
124
124
|
},
|
|
125
125
|
"./ci-upload/style/index.css": {
|
|
126
126
|
"default": "./dist/lib/ci-upload/index.css"
|
|
127
|
+
},
|
|
128
|
+
"./ci-common-list-pagination/style/index.css": {
|
|
129
|
+
"default": "./dist/lib/ci-common-list/ci-common-list-pagination/index.css"
|
|
127
130
|
}
|
|
128
131
|
},
|
|
129
132
|
"scripts": {
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.CiUpload{width:680px}.CiUpload .ci-el-upload-component :deep(.el-upload-dragger){height:142px;padding:0;display:flex;flex-direction:column;justify-content:center;align-items:center}.CiUpload .ci-el-upload-component :deep(.el-upload-dragger) .upload-btn-icon,.CiUpload .ci-el-upload-component :deep(.el-upload-dragger) .upload-btn-icon-hover,.CiUpload .ci-el-upload-component :deep(.el-upload-dragger) .upload-btn-icon-disabled{width:20px;height:20px}.CiUpload .ci-el-upload-component :deep(.el-upload-dragger) .upload-btn-icon-hover{display:none}.CiUpload .ci-el-upload-component :deep(.el-upload-dragger) .upload-btn-icon-disabled{display:none}.CiUpload .ci-el-upload-component :deep(.el-upload-dragger):hover{background-color:#fafbfd}.CiUpload .ci-el-upload-component :deep(.el-upload-dragger):hover .upload-btn-icon{display:none}.CiUpload .ci-el-upload-component :deep(.el-upload-dragger):hover .upload-btn-icon-hover{display:block}.CiUpload .ci-el-upload-component :deep(.el-upload-dragger):hover .upload-btn-icon-disabled{display:none}.CiUpload .ci-el-upload-component :deep(.el-upload-dragger) .drag-text-info{margin-top:20px}.CiUpload .ci-el-upload-component :deep(.el-upload-dragger) .drag-text-info .drag-text-info-click{color:#3573f3}.CiUpload .ci-el-upload-component :deep(.el-upload-dragger) .drag-text-info .drag-text-info-black{color:#191919}.CiUpload .ci-el-upload-component .upload-btn{color:#4a4a4a!important;border-color:#dbdbdb!important}.CiUpload .ci-el-upload-component .upload-btn .upload-btn-icon,.CiUpload .ci-el-upload-component .upload-btn .upload-btn-icon-hover,.CiUpload .ci-el-upload-component .upload-btn .upload-btn-icon-disabled{width:20px;height:20px;margin-right:10px}.CiUpload .ci-el-upload-component .upload-btn .upload-btn-icon-hover,.CiUpload .ci-el-upload-component .upload-btn .upload-btn-icon-disabled{display:none}.CiUpload .ci-el-upload-component .upload-btn:hover{color:#3573f3!important;border-color:#3573f3!important}.CiUpload .ci-el-upload-component .upload-btn:hover .upload-btn-icon{display:none}.CiUpload .ci-el-upload-component .upload-btn:hover .upload-btn-icon-hover{display:block}.CiUpload .ci-el-upload-component .upload-btn:hover .upload-btn-icon-disabled{display:none}.CiUpload .ci-el-upload-component .upload-btn.is-disabled{color:#a4a4a4!important;background-color:#f5f5f5!important;border-color:#dbdbdb!important;opacity:1!important}.CiUpload .ci-el-upload-component .upload-btn.is-disabled .upload-btn-icon,.CiUpload .ci-el-upload-component .upload-btn.is-disabled .upload-btn-icon-hover{display:none}.CiUpload .ci-el-upload-component .upload-btn.is-disabled .upload-btn-icon-disabled{display:block}.CiUpload .ci-el-upload-component .default-tip-slot-textInfo,.CiUpload .ci-el-upload-component .tip-slot-textInfo{color:#a4a4a4;font-size:12px;margin-top:10px}.CiUpload .ci-el-upload-component.is-disabled :deep(.el-upload-dragger){background-color:#f5f5f5}.CiUpload .ci-el-upload-component.is-disabled :deep(.el-upload-dragger) .upload-btn-icon{display:none}.CiUpload .ci-el-upload-component.is-disabled :deep(.el-upload-dragger) .upload-btn-icon-hover{display:none}.CiUpload .ci-el-upload-component.is-disabled :deep(.el-upload-dragger) .upload-btn-icon-disabled{display:block}.CiUpload .ci-el-upload-component.is-disabled :deep(.el-upload-dragger):hover{border:1px dashed #dcdfe6}.CiUpload .ci-el-upload-component.is-disabled :deep(.el-upload-dragger) .drag-text-info{margin-top:20px}.CiUpload .ci-el-upload-component.is-disabled :deep(.el-upload-dragger) .drag-text-info .drag-text-info-click{color:#a4a4a4}.CiUpload .ci-el-upload-component.is-disabled :deep(.el-upload-dragger) .drag-text-info .drag-text-info-black{color:#a4a4a4}.CiUpload .custom-file-list-default{margin-top:20px;border:1px solid #dbdbdb;padding:8px 10px;border-radius:4px}.CiUpload .custom-file-list-default.is-readonly{margin-top:0;border:none;padding:0}.CiUpload .custom-file-list-default .file-item-wrapper{padding:5px}.CiUpload .custom-file-list-default .file-item-wrapper:hover{background-color:#f0f2f5}.CiUpload .custom-file-list-default .file-item-wrapper:hover .file-progress-bar{background-color:#e8e5e5}.CiUpload .custom-file-list-default .file-item-wrapper:not(:last-child){margin-bottom:8px}.CiUpload .custom-file-list-default .file-item-wrapper .file-item-top{display:flex;align-items:center;justify-content:space-between}.CiUpload .custom-file-list-default .file-item-wrapper .file-item-top .file-name-file-icon{display:flex;align-items:flex-start}.CiUpload .custom-file-list-default .file-item-wrapper .file-item-top .file-name-file-icon .file-icon{width:22px;height:22px;margin-right:5px}.CiUpload .custom-file-list-default .file-item-wrapper .file-item-top .file-name-file-icon .file-name{max-width:257px;flex-shrink:0}.CiUpload .custom-file-list-default .file-item-wrapper .file-item-top .top-right{display:flex;align-items:center;justify-content:center}.CiUpload .custom-file-list-default .file-item-wrapper .file-item-top .top-right .file-size{color:#a4a4a4;font-size:14px;margin-right:8px}.CiUpload .custom-file-list-default .file-item-wrapper .file-item-top .top-right .file-operate-btn{margin-right:8px}.CiUpload .custom-file-list-default .file-item-wrapper .file-item-top .top-right .file-operate-btn .el-divider--vertical{font-size:14px;border-left-color:#191919}.CiUpload .custom-file-list-default .file-item-wrapper .file-item-top .top-right .file-status-icon-wrapper .uploading{display:flex;align-items:center;color:#3573f3;font-size:14px}.CiUpload .custom-file-list-default .file-item-wrapper .file-item-top .top-right .file-status-icon-wrapper .uploading .uploading-icon{width:14px;height:14px;margin-right:4px;animation:rotate 1.5s linear infinite}.CiUpload .custom-file-list-default .file-item-wrapper .file-item-top .top-right .file-status-icon-wrapper .success .success-icon,.CiUpload .custom-file-list-default .file-item-wrapper .file-item-top .top-right .file-status-icon-wrapper .downloading .success-icon{width:19px;height:19px}.CiUpload .custom-file-list-default .file-item-wrapper .file-item-top .top-right .file-status-icon-wrapper .fail.fail-icon-wrapper{display:flex;align-items:center}.CiUpload .custom-file-list-default .file-item-wrapper .file-item-top .top-right .file-status-icon-wrapper .fail.fail-icon-wrapper .fail-icon{width:19px;height:19px}.CiUpload .custom-file-list-default .file-item-wrapper .file-item-top .top-right .file-status-icon-wrapper .fail.fail-icon-wrapper .retry-icon{margin:0 8px;cursor:pointer;width:18px;height:18px}.CiUpload .custom-file-list-default .file-item-wrapper .file-progress-bar{width:100%;height:5px;background-color:#f0f0f0;border-radius:3px;overflow:hidden;margin-top:5px}.CiUpload .custom-file-list-default .file-item-wrapper .file-progress-bar .file-progress-inner{height:100%;background-color:#3573f3;transition:width .3s ease}.CiUpload .custom-file-list-default .file-item-wrapper .download-progress-bar .file-progress-inner{background-color:#2aca96}
|
/package/dist/lib/{ci-dictionary-select → ci-common-list/ci-common-list-pagination}/index.css
RENAMED
|
File without changes
|