@qynpm/ui 1.0.7 → 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/dist/index.cjs +1 -1
- package/dist/index.mjs +17 -15
- package/dist/qy-action-bar/index.cjs +1 -1
- package/dist/qy-action-bar/index.mjs +1 -1
- package/dist/qy-date-picker/index.cjs +1 -0
- package/dist/qy-date-picker/index.mjs +4 -0
- package/dist/qy-dialog/index.cjs +1 -1
- package/dist/qy-dialog/index.mjs +1 -1
- package/dist/qy-form-section/index.cjs +1 -1
- package/dist/qy-form-section/index.mjs +1 -1
- package/dist/qy-input/index.cjs +1 -1
- package/dist/qy-input/index.mjs +1 -1
- package/dist/qy-input-number/index.cjs +1 -0
- package/dist/qy-input-number/index.mjs +4 -0
- package/dist/qy-money-input/index.cjs +1 -1
- package/dist/qy-money-input/index.mjs +2 -2
- package/dist/qy-radio-group/index.cjs +1 -1
- package/dist/qy-radio-group/index.mjs +1 -1
- package/dist/qy-record-quote-search/index.cjs +1 -1
- package/dist/qy-record-quote-search/index.mjs +1 -1
- package/dist/qy-remark-image/index.cjs +1 -1
- package/dist/qy-remark-image/index.mjs +1 -1
- package/dist/qy-remote-select/index.cjs +1 -1
- package/dist/qy-remote-select/index.mjs +2 -2
- package/dist/qy-search-input/index.cjs +1 -1
- package/dist/qy-search-input/index.mjs +1 -1
- package/dist/qy-select/index.cjs +1 -1
- package/dist/qy-select/index.mjs +1 -1
- package/dist/qy-upload/index.cjs +1 -1
- package/dist/qy-upload/index.mjs +1 -1
- package/dist/qy-voucher-upload/index.cjs +1 -1
- package/dist/qy-voucher-upload/index.mjs +1 -1
- package/dist/shared/index-C5EAafC0.cjs +1 -0
- package/dist/shared/index-DB0Fuuxi.mjs +2784 -0
- package/index.d.ts +20 -16
- package/package.json +13 -1
- package/qy-date-picker/index.d.ts +5 -0
- package/qy-date-picker/index.js +1 -0
- package/qy-input-number/index.d.ts +5 -0
- package/qy-input-number/index.js +1 -0
- package/dist/shared/index-CbFvRxuh.mjs +0 -2592
- package/dist/shared/index-GDrnDY44.cjs +0 -1
package/index.d.ts
CHANGED
|
@@ -3,18 +3,20 @@ import type { App, Plugin } from 'vue'
|
|
|
3
3
|
// 根入口类型声明,对应 @qynpm/ui 的命名导出和 app.use(QyUI) 整包注册。
|
|
4
4
|
export const QyUpload: Plugin
|
|
5
5
|
export const QyVoucherUpload: Plugin
|
|
6
|
-
export const QyDialog: Plugin
|
|
7
|
-
export const QyInput: Plugin
|
|
8
|
-
export const
|
|
9
|
-
export const
|
|
6
|
+
export const QyDialog: Plugin
|
|
7
|
+
export const QyInput: Plugin
|
|
8
|
+
export const QyInputNumber: Plugin
|
|
9
|
+
export const QyMoneyInput: Plugin
|
|
10
|
+
export const QyDatePicker: Plugin
|
|
11
|
+
export const QyRadioGroup: Plugin
|
|
10
12
|
export const QyRemoteSelect: Plugin
|
|
11
13
|
export const QySearchInput: Plugin
|
|
12
14
|
export const QyRecordQuoteSearch: Plugin
|
|
13
15
|
export const QySelect: Plugin
|
|
14
|
-
export const QyFormSection: Plugin
|
|
15
|
-
export const QyActionBar: Plugin
|
|
16
|
-
export const QyRemarkImage: Plugin
|
|
17
|
-
export function parseRemarkText(remarkText: string): {
|
|
16
|
+
export const QyFormSection: Plugin
|
|
17
|
+
export const QyActionBar: Plugin
|
|
18
|
+
export const QyRemarkImage: Plugin
|
|
19
|
+
export function parseRemarkText(remarkText: string): {
|
|
18
20
|
imageUrl: string
|
|
19
21
|
text: string
|
|
20
22
|
}
|
|
@@ -25,17 +27,19 @@ declare const _default: Plugin & {
|
|
|
25
27
|
install(app: App): void
|
|
26
28
|
QyUpload: typeof QyUpload
|
|
27
29
|
QyVoucherUpload: typeof QyVoucherUpload
|
|
28
|
-
QyDialog: typeof QyDialog
|
|
29
|
-
QyInput: typeof QyInput
|
|
30
|
-
|
|
31
|
-
|
|
30
|
+
QyDialog: typeof QyDialog
|
|
31
|
+
QyInput: typeof QyInput
|
|
32
|
+
QyInputNumber: typeof QyInputNumber
|
|
33
|
+
QyMoneyInput: typeof QyMoneyInput
|
|
34
|
+
QyDatePicker: typeof QyDatePicker
|
|
35
|
+
QyRadioGroup: typeof QyRadioGroup
|
|
32
36
|
QyRemoteSelect: typeof QyRemoteSelect
|
|
33
37
|
QySearchInput: typeof QySearchInput
|
|
34
38
|
QyRecordQuoteSearch: typeof QyRecordQuoteSearch
|
|
35
39
|
QySelect: typeof QySelect
|
|
36
|
-
QyFormSection: typeof QyFormSection
|
|
37
|
-
QyActionBar: typeof QyActionBar
|
|
38
|
-
QyRemarkImage: typeof QyRemarkImage
|
|
39
|
-
}
|
|
40
|
+
QyFormSection: typeof QyFormSection
|
|
41
|
+
QyActionBar: typeof QyActionBar
|
|
42
|
+
QyRemarkImage: typeof QyRemarkImage
|
|
43
|
+
}
|
|
40
44
|
|
|
41
45
|
export default _default
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qynpm/ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "起印公共 UI 组件包。",
|
|
5
5
|
"author": "qy",
|
|
6
6
|
"license": "MIT",
|
|
@@ -33,11 +33,21 @@
|
|
|
33
33
|
"import": "./dist/qy-input/index.mjs",
|
|
34
34
|
"require": "./dist/qy-input/index.cjs"
|
|
35
35
|
},
|
|
36
|
+
"./qy-input-number": {
|
|
37
|
+
"types": "./qy-input-number/index.d.ts",
|
|
38
|
+
"import": "./dist/qy-input-number/index.mjs",
|
|
39
|
+
"require": "./dist/qy-input-number/index.cjs"
|
|
40
|
+
},
|
|
36
41
|
"./qy-money-input": {
|
|
37
42
|
"types": "./qy-money-input/index.d.ts",
|
|
38
43
|
"import": "./dist/qy-money-input/index.mjs",
|
|
39
44
|
"require": "./dist/qy-money-input/index.cjs"
|
|
40
45
|
},
|
|
46
|
+
"./qy-date-picker": {
|
|
47
|
+
"types": "./qy-date-picker/index.d.ts",
|
|
48
|
+
"import": "./dist/qy-date-picker/index.mjs",
|
|
49
|
+
"require": "./dist/qy-date-picker/index.cjs"
|
|
50
|
+
},
|
|
41
51
|
"./qy-radio-group": {
|
|
42
52
|
"types": "./qy-radio-group/index.d.ts",
|
|
43
53
|
"import": "./dist/qy-radio-group/index.mjs",
|
|
@@ -87,7 +97,9 @@
|
|
|
87
97
|
"qy-voucher-upload",
|
|
88
98
|
"qy-dialog",
|
|
89
99
|
"qy-input",
|
|
100
|
+
"qy-input-number",
|
|
90
101
|
"qy-money-input",
|
|
102
|
+
"qy-date-picker",
|
|
91
103
|
"qy-radio-group",
|
|
92
104
|
"qy-remote-select",
|
|
93
105
|
"qy-search-input",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { QyDatePicker as default } from '../index.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { QyInputNumber as default } from '../index.js'
|