@ajaxjs/util 1.1.1 → 1.1.3

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 (78) hide show
  1. package/README.md +55 -6
  2. package/dist/index.esm.js +525 -0
  3. package/dist/index.umd.js +536 -0
  4. package/dist/{util → src/core}/cookies.d.ts +18 -18
  5. package/dist/{util → src/core}/dom.d.ts +17 -17
  6. package/dist/{util → src/core}/utils.d.ts +51 -51
  7. package/dist/{util → src/core}/xhr-config.d.ts +22 -22
  8. package/dist/{util → src/core}/xhr.d.ts +71 -71
  9. package/dist/src/index.d.ts +5 -0
  10. package/package.json +41 -43
  11. package/LICENSE +0 -201
  12. package/dist/index.d.ts +0 -38
  13. package/dist/index.js +0 -71
  14. package/dist/index.js.map +0 -1
  15. package/dist/main.d.ts +0 -1
  16. package/dist/main.js +0 -16
  17. package/dist/main.js.map +0 -1
  18. package/dist/router/index.d.ts +0 -3
  19. package/dist/router/index.js +0 -44
  20. package/dist/router/index.js.map +0 -1
  21. package/dist/router.d.ts +0 -3
  22. package/dist/router.js +0 -44
  23. package/dist/router.js.map +0 -1
  24. package/dist/shims-vue.d.ts +0 -4
  25. package/dist/style/common-functions.less +0 -294
  26. package/dist/style/reset.less +0 -19
  27. package/dist/util/cookies.js +0 -46
  28. package/dist/util/cookies.js.map +0 -1
  29. package/dist/util/dom.js +0 -44
  30. package/dist/util/dom.js.map +0 -1
  31. package/dist/util/utils.js +0 -174
  32. package/dist/util/utils.js.map +0 -1
  33. package/dist/util/xhr-config.js +0 -3
  34. package/dist/util/xhr-config.js.map +0 -1
  35. package/dist/util/xhr.js +0 -262
  36. package/dist/util/xhr.js.map +0 -1
  37. package/dist/widget/AccordionMenu.vue +0 -140
  38. package/dist/widget/AdjustFontSize.vue +0 -65
  39. package/dist/widget/Article.vue +0 -59
  40. package/dist/widget/EmptyContent.d.ts +0 -5
  41. package/dist/widget/EmptyContent.js +0 -7
  42. package/dist/widget/EmptyContent.js.map +0 -1
  43. package/dist/widget/Expander.vue +0 -65
  44. package/dist/widget/FileUploader/FileUploader.d.ts +0 -70
  45. package/dist/widget/FileUploader/FileUploader.js +0 -139
  46. package/dist/widget/FileUploader/FileUploader.js.map +0 -1
  47. package/dist/widget/FileUploader/FileUploader.less +0 -68
  48. package/dist/widget/FileUploader/FileUploader.ts +0 -156
  49. package/dist/widget/FileUploader/FileUploader.vue +0 -43
  50. package/dist/widget/HtmlEditor/HtmlEditor.d.ts +0 -70
  51. package/dist/widget/HtmlEditor/HtmlEditor.js +0 -287
  52. package/dist/widget/HtmlEditor/HtmlEditor.js.map +0 -1
  53. package/dist/widget/HtmlEditor/HtmlEditor.less +0 -345
  54. package/dist/widget/HtmlEditor/HtmlEditor.ts +0 -339
  55. package/dist/widget/HtmlEditor/HtmlEditor.vue +0 -70
  56. package/dist/widget/HtmlEditor/html-editor-HtmlSanitizer.js +0 -103
  57. package/dist/widget/ImageEnlarger.vue +0 -105
  58. package/dist/widget/OpacityBanner.vue +0 -125
  59. package/dist/widget/ProcessLine.vue +0 -133
  60. package/dist/widget/Resize.d.ts +0 -51
  61. package/dist/widget/Resize.js +0 -133
  62. package/dist/widget/Resize.js.map +0 -1
  63. package/dist/widget/Resize.ts +0 -152
  64. package/dist/widget/Resize.vue +0 -104
  65. package/dist/widget/TreeSelector.vue +0 -4
  66. package/dist/widget/calendar/BetweenDate.vue +0 -63
  67. package/dist/widget/calendar/Calendar.d.ts +0 -55
  68. package/dist/widget/calendar/Calendar.js +0 -145
  69. package/dist/widget/calendar/Calendar.js.map +0 -1
  70. package/dist/widget/calendar/Calendar.less +0 -210
  71. package/dist/widget/calendar/Calendar.ts +0 -167
  72. package/dist/widget/calendar/Calendar.vue +0 -52
  73. package/dist/widget/calendar/CalendarInput.vue +0 -71
  74. package/dist/widget/form/validator.d.ts +0 -70
  75. package/dist/widget/form/validator.js +0 -220
  76. package/dist/widget/form/validator.js.map +0 -1
  77. package/dist/widget/form/validator.ts +0 -289
  78. package/dist/widget/play-ground/sku.vue +0 -93
@@ -1,51 +1,51 @@
1
- /**
2
- * 通用工具类
3
- */
4
- /**
5
- * 是否调试模式中
6
- *
7
- * 打包成组件之后不能用
8
- *
9
- * @returns
10
- */
11
- export declare function isDebug(): boolean;
12
- export declare function isDev(): boolean;
13
- /**
14
- * 日期格式化。详见博客文章:http://blog.csdn.net/zhangxin09/archive/2011/01/01/6111294.aspx
15
- * e.g: new Date().format("yyyy-MM-dd hh:mm:ss")
16
- *
17
- * @param {String} format
18
- * @return {String}
19
- */
20
- export declare function dateFormat(this: Date, format: string): string;
21
- /**
22
- * 日期格式化
23
- * @author meizz
24
- * @param date 日期,必须为 Date 类型
25
- * @param fmt 格式模板
26
- * @returns 格式化后的字符串
27
- */
28
- export declare function dateFormat2(date: Date, fmt: string): string;
29
- /**
30
- * 并行和串行任务
31
- *
32
- * @author https://segmentfault.com/a/1190000013265925
33
- * @param arr
34
- * @param finnaly
35
- */
36
- export declare function parallel(arr: [], _finally: Function): void;
37
- /**
38
- * 函数节流
39
- *
40
- * @author https://www.cnblogs.com/moqiutao/p/6875955.html
41
- * @param fn
42
- * @param delay
43
- * @param mustRunDelay
44
- */
45
- export declare function throttle(fn: Function, delay: number, mustRunDelay: number): Function;
46
- /**
47
- * 复制文字到剪切板
48
- *
49
- * @param {*} text
50
- */
51
- export declare function copyToClipboard(text: any): void;
1
+ /**
2
+ * 通用工具类
3
+ */
4
+ /**
5
+ * 是否调试模式中
6
+ *
7
+ * 打包成组件之后不能用
8
+ *
9
+ * @returns
10
+ */
11
+ export declare function isDebug(): boolean;
12
+ export declare function isDev(): boolean;
13
+ /**
14
+ * 日期格式化。详见博客文章:http://blog.csdn.net/zhangxin09/archive/2011/01/01/6111294.aspx
15
+ * e.g: new Date().format("yyyy-MM-dd hh:mm:ss")
16
+ *
17
+ * @param {String} format
18
+ * @return {String}
19
+ */
20
+ export declare function dateFormat(this: Date, format: string): string;
21
+ /**
22
+ * 日期格式化
23
+ * @author meizz
24
+ * @param date 日期,必须为 Date 类型
25
+ * @param fmt 格式模板
26
+ * @returns 格式化后的字符串
27
+ */
28
+ export declare function dateFormat2(date: Date, fmt: string): string;
29
+ /**
30
+ * 并行和串行任务
31
+ *
32
+ * @author https://segmentfault.com/a/1190000013265925
33
+ * @param arr
34
+ * @param finnaly
35
+ */
36
+ export declare function parallel(arr: [], _finally: Function): void;
37
+ /**
38
+ * 函数节流
39
+ *
40
+ * @author https://www.cnblogs.com/moqiutao/p/6875955.html
41
+ * @param fn
42
+ * @param delay
43
+ * @param mustRunDelay
44
+ */
45
+ export declare function throttle(fn: Function, delay: number, mustRunDelay: number): Function;
46
+ /**
47
+ * 复制文字到剪切板
48
+ *
49
+ * @param {string} text
50
+ */
51
+ export declare function copyToClipboard(text: string): void;
@@ -1,22 +1,22 @@
1
- /**
2
- * XHR 请求配置
3
- */
4
- export interface XhrConfig {
5
- /**
6
- * 请求头里面的 Content-Type 字段
7
- */
8
- contentType?: string;
9
- /**
10
- * XHR 响应结果的类型
11
- */
12
- parseContentType?: 'text' | 'xml' | 'json';
13
- /**
14
- * 超时时间,单位是毫秒
15
- * 设为 0 适合不控制超时
16
- */
17
- timeout?: number;
18
- /**
19
- * 是否跨域
20
- */
21
- withCredentials?: boolean;
22
- }
1
+ /**
2
+ * XHR 请求配置
3
+ */
4
+ export interface XhrConfig {
5
+ /**
6
+ * 请求头里面的 Content-Type 字段
7
+ */
8
+ contentType?: string;
9
+ /**
10
+ * XHR 响应结果的类型
11
+ */
12
+ parseContentType?: 'text' | 'xml' | 'json';
13
+ /**
14
+ * 超时时间,单位是毫秒
15
+ * 设为 0 适合不控制超时
16
+ */
17
+ timeout?: number;
18
+ /**
19
+ * 是否跨域
20
+ */
21
+ withCredentials?: boolean;
22
+ }
@@ -1,71 +1,71 @@
1
- import { XhrConfig } from './xhr-config';
2
- /**
3
- * 处理响应的回调函数
4
- */
5
- type XhrCallback = (json: {}, text: string) => void;
6
- /**
7
- * 设置全局请求的 head 参数
8
- *
9
- * @param param
10
- */
11
- export declare function setBaseHeadParams(params: any): void;
12
- /**
13
- *
14
- * @param url
15
- * @param cb
16
- * @param params
17
- * @param cfg
18
- */
19
- export declare function xhr_post_upload(url: string, cb: XhrCallback, params: Document | XMLHttpRequestBodyInit, cfg?: XhrConfig): void;
20
- /**
21
- * XHR GET 请求
22
- *
23
- * @param url 请求地址
24
- * @param cb 回调函数 @example (json: {}, text: string) => void;
25
- * @param params 参数,必填,如无填空字符串 "";参数类型是json;参数值会进行 URL 编码,最后附加到 QueryString 中
26
- * @param cfg 配置,可选的
27
- */
28
- export declare function xhr_get(url: string, cb: XhrCallback, params?: {}, cfg?: XhrConfig): void;
29
- /**
30
- * XHR DELETE 请求
31
- *
32
- * @param url 请求地址
33
- * @param cb 回调函数 @example (json: {}, text: string) => void;
34
- * @param params 参数,必填,如无填空字符串 "";参数类型是json;参数值会进行 URL 编码,最后附加到 QueryString 中
35
- * @param cfg 配置,可选的
36
- */
37
- export declare function xhr_del(url: string, cb: XhrCallback, params?: {}, cfg?: XhrConfig): void;
38
- /**
39
- * XHR POST 请求
40
- *
41
- * @param url 请求地址
42
- * @param cb 回调函数 @example (json: {}, text: string) => void;
43
- * @param params 参数,必填,如无填空字符串 "";参数类型可以是字符串或 json;参数值会进行 URL 编码
44
- * @param cfg 配置,可选的
45
- */
46
- export declare function xhr_post(url: string, cb: XhrCallback, params: string | {}, cfg?: XhrConfig): void;
47
- /**
48
- * XHR PUT 请求
49
- *
50
- * @param url 请求地址
51
- * @param cb 回调函数 @example (json: {}, text: string) => void;
52
- * @param params 参数,必填,如无填空字符串 "";参数类型可以是字符串或 json;参数值会进行 URL 编码
53
- * @param cfg 配置,可选的
54
- */
55
- export declare function xhr_put(url: string, cb: XhrCallback, params: string | {}, cfg?: XhrConfig): void;
56
- /**
57
- * 对象转换为 URL 参数列表,用 & 分隔
58
- *
59
- * @param {Object} param JSON 对象
60
- * @returns URL 参数列表
61
- */
62
- export declare function toParams(param: any): string;
63
- /**
64
- * 获取 QueryString 的某个参数
65
- *
66
- * @param val
67
- * @returns
68
- */
69
- export declare function getQuery(val: string): string;
70
- export declare function getPageList(self: any, listArray: any, callback?: Function): XhrCallback;
71
- export {};
1
+ import { XhrConfig } from './xhr-config';
2
+ /**
3
+ * 处理响应的回调函数
4
+ */
5
+ type XhrCallback = (json: {}, text: string) => void;
6
+ /**
7
+ * 设置全局请求的 head 参数
8
+ *
9
+ * @param param
10
+ */
11
+ export declare function setBaseHeadParams(params: any): void;
12
+ /**
13
+ *
14
+ * @param url
15
+ * @param cb
16
+ * @param params
17
+ * @param cfg
18
+ */
19
+ export declare function xhr_post_upload(url: string, cb: XhrCallback, params: Document | XMLHttpRequestBodyInit, cfg?: XhrConfig): void;
20
+ /**
21
+ * XHR GET 请求
22
+ *
23
+ * @param url 请求地址
24
+ * @param cb 回调函数 @example (json: {}, text: string) => void;
25
+ * @param params 参数,必填,如无填空字符串 "";参数类型是json;参数值会进行 URL 编码,最后附加到 QueryString 中
26
+ * @param cfg 配置,可选的
27
+ */
28
+ export declare function xhr_get(url: string, cb: XhrCallback, params?: {}, cfg?: XhrConfig): void;
29
+ /**
30
+ * XHR DELETE 请求
31
+ *
32
+ * @param url 请求地址
33
+ * @param cb 回调函数 @example (json: {}, text: string) => void;
34
+ * @param params 参数,必填,如无填空字符串 "";参数类型是json;参数值会进行 URL 编码,最后附加到 QueryString 中
35
+ * @param cfg 配置,可选的
36
+ */
37
+ export declare function xhr_del(url: string, cb: XhrCallback, params?: {}, cfg?: XhrConfig): void;
38
+ /**
39
+ * XHR POST 请求
40
+ *
41
+ * @param url 请求地址
42
+ * @param cb 回调函数 @example (json: {}, text: string) => void;
43
+ * @param params 参数,必填,如无填空字符串 "";参数类型可以是字符串或 json;参数值会进行 URL 编码
44
+ * @param cfg 配置,可选的
45
+ */
46
+ export declare function xhr_post(url: string, cb: XhrCallback, params: string | {}, cfg?: XhrConfig): void;
47
+ /**
48
+ * XHR PUT 请求
49
+ *
50
+ * @param url 请求地址
51
+ * @param cb 回调函数 @example (json: {}, text: string) => void;
52
+ * @param params 参数,必填,如无填空字符串 "";参数类型可以是字符串或 json;参数值会进行 URL 编码
53
+ * @param cfg 配置,可选的
54
+ */
55
+ export declare function xhr_put(url: string, cb: XhrCallback, params: string | {}, cfg?: XhrConfig): void;
56
+ /**
57
+ * 对象转换为 URL 参数列表,用 & 分隔
58
+ *
59
+ * @param {Object} param JSON 对象
60
+ * @returns URL 参数列表
61
+ */
62
+ export declare function toParams(param: any): string;
63
+ /**
64
+ * 获取 QueryString 的某个参数
65
+ *
66
+ * @param val
67
+ * @returns
68
+ */
69
+ export declare function getQuery(val: string): string;
70
+ export declare function getPageList(self: any, listArray: any, callback?: Function): XhrCallback;
71
+ export {};
@@ -0,0 +1,5 @@
1
+ import * as Cookies from './core/cookies';
2
+ import * as Dom from './core/dom';
3
+ import * as Utils from './core/utils';
4
+ import * as Xhr from './core/xhr';
5
+ export { Cookies, Dom, Utils, Xhr };
package/package.json CHANGED
@@ -1,43 +1,41 @@
1
- {
2
- "name": "@ajaxjs/util",
3
- "version": "1.1.1",
4
- "description": "Real ajaxjs ui library",
5
- "main": "dist/index.js",
6
- "types": "dist/libs/common.d.ts",
7
- "homepage": "https://framework.ajaxjs.com/",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/lightweight-component/js-utils"
11
- },
12
- "bugs": {
13
- "url": "https://github.com/lightweight-component/js-utils/issues"
14
- },
15
- "scripts": {
16
- "dev": "vue-cli-service serve",
17
- "build": "vue-cli-service build",
18
- "release": "tsc && xcopy src\\widget dist\\widget /s /y /d && copy src\\*.d.ts dist\\ && xcopy src\\style dist\\style /s /y /d && npm publish"
19
- },
20
- "keywords": [
21
- "ajaxjs"
22
- ],
23
- "author": "sp42 <sp42@qq.com>",
24
- "license": "Apache License 2.0",
25
- "private": false,
26
- "files": [
27
- "dist"
28
- ],
29
- "devDependencies": {
30
- "@vue/cli-plugin-babel": "~4.5.0",
31
- "@vue/cli-plugin-router": "~4.5.0",
32
- "@vue/cli-plugin-typescript": "~4.5.0",
33
- "@vue/cli-service": "~4.5.0",
34
- "less": "^3.0.4",
35
- "less-loader": "^5.0.0",
36
- "style-resources-loader": "^1.4.1",
37
- "typescript": "^4.4.3",
38
- "vue": "^2.6.14",
39
- "vue-cli-plugin-style-resources-loader": "~0.1.5",
40
- "vue-router": "^3.2.0",
41
- "vue-template-compiler": "^2.6.11"
42
- }
43
- }
1
+ {
2
+ "name": "@ajaxjs/util",
3
+ "version": "1.1.3",
4
+ "description": "Core JS Utils",
5
+ "scripts": {
6
+ "dev": "rollup -w -c",
7
+ "build": "rollup -c"
8
+ },
9
+ "main": "dist/index.umd.js",
10
+ "module": "dist/index.esm.js",
11
+ "types": "dist/src/index.d.ts",
12
+ "type": "module",
13
+ "files": [
14
+ "dist/"
15
+ ],
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/lightweight-component/js/tree/main/util"
19
+ },
20
+ "bugs": {
21
+ "url": "https://github.com/lightweight-component/js/issues"
22
+ },
23
+ "keywords": [
24
+ "ajaxjs",
25
+ "util"
26
+ ],
27
+ "author": "Frank Cheung <frank@ajaxjs.com>",
28
+ "license": "Apache License 2.0",
29
+ "devDependencies": {
30
+ "@eslint/js": "^9.9.1",
31
+ "@rollup/plugin-commonjs": "^26.0.1",
32
+ "@rollup/plugin-node-resolve": "^15.2.3",
33
+ "@rollup/plugin-typescript": "^11.1.6",
34
+ "eslint": "^9.9.1",
35
+ "globals": "^15.9.0",
36
+ "rollup": "^4.21.2",
37
+ "tslib": "^2.7.0",
38
+ "typescript": "^5.5.4",
39
+ "typescript-eslint": "^8.4.0"
40
+ }
41
+ }
package/LICENSE DELETED
@@ -1,201 +0,0 @@
1
- Apache License
2
- Version 2.0, January 2004
3
- http://www.apache.org/licenses/
4
-
5
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
-
7
- 1. Definitions.
8
-
9
- "License" shall mean the terms and conditions for use, reproduction,
10
- and distribution as defined by Sections 1 through 9 of this document.
11
-
12
- "Licensor" shall mean the copyright owner or entity authorized by
13
- the copyright owner that is granting the License.
14
-
15
- "Legal Entity" shall mean the union of the acting entity and all
16
- other entities that control, are controlled by, or are under common
17
- control with that entity. For the purposes of this definition,
18
- "control" means (i) the power, direct or indirect, to cause the
19
- direction or management of such entity, whether by contract or
20
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
- outstanding shares, or (iii) beneficial ownership of such entity.
22
-
23
- "You" (or "Your") shall mean an individual or Legal Entity
24
- exercising permissions granted by this License.
25
-
26
- "Source" form shall mean the preferred form for making modifications,
27
- including but not limited to software source code, documentation
28
- source, and configuration files.
29
-
30
- "Object" form shall mean any form resulting from mechanical
31
- transformation or translation of a Source form, including but
32
- not limited to compiled object code, generated documentation,
33
- and conversions to other media types.
34
-
35
- "Work" shall mean the work of authorship, whether in Source or
36
- Object form, made available under the License, as indicated by a
37
- copyright notice that is included in or attached to the work
38
- (an example is provided in the Appendix below).
39
-
40
- "Derivative Works" shall mean any work, whether in Source or Object
41
- form, that is based on (or derived from) the Work and for which the
42
- editorial revisions, annotations, elaborations, or other modifications
43
- represent, as a whole, an original work of authorship. For the purposes
44
- of this License, Derivative Works shall not include works that remain
45
- separable from, or merely link (or bind by name) to the interfaces of,
46
- the Work and Derivative Works thereof.
47
-
48
- "Contribution" shall mean any work of authorship, including
49
- the original version of the Work and any modifications or additions
50
- to that Work or Derivative Works thereof, that is intentionally
51
- submitted to Licensor for inclusion in the Work by the copyright owner
52
- or by an individual or Legal Entity authorized to submit on behalf of
53
- the copyright owner. For the purposes of this definition, "submitted"
54
- means any form of electronic, verbal, or written communication sent
55
- to the Licensor or its representatives, including but not limited to
56
- communication on electronic mailing lists, source code control systems,
57
- and issue tracking systems that are managed by, or on behalf of, the
58
- Licensor for the purpose of discussing and improving the Work, but
59
- excluding communication that is conspicuously marked or otherwise
60
- designated in writing by the copyright owner as "Not a Contribution."
61
-
62
- "Contributor" shall mean Licensor and any individual or Legal Entity
63
- on behalf of whom a Contribution has been received by Licensor and
64
- subsequently incorporated within the Work.
65
-
66
- 2. Grant of Copyright License. Subject to the terms and conditions of
67
- this License, each Contributor hereby grants to You a perpetual,
68
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
- copyright license to reproduce, prepare Derivative Works of,
70
- publicly display, publicly perform, sublicense, and distribute the
71
- Work and such Derivative Works in Source or Object form.
72
-
73
- 3. Grant of Patent License. Subject to the terms and conditions of
74
- this License, each Contributor hereby grants to You a perpetual,
75
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
- (except as stated in this section) patent license to make, have made,
77
- use, offer to sell, sell, import, and otherwise transfer the Work,
78
- where such license applies only to those patent claims licensable
79
- by such Contributor that are necessarily infringed by their
80
- Contribution(s) alone or by combination of their Contribution(s)
81
- with the Work to which such Contribution(s) was submitted. If You
82
- institute patent litigation against any entity (including a
83
- cross-claim or counterclaim in a lawsuit) alleging that the Work
84
- or a Contribution incorporated within the Work constitutes direct
85
- or contributory patent infringement, then any patent licenses
86
- granted to You under this License for that Work shall terminate
87
- as of the date such litigation is filed.
88
-
89
- 4. Redistribution. You may reproduce and distribute copies of the
90
- Work or Derivative Works thereof in any medium, with or without
91
- modifications, and in Source or Object form, provided that You
92
- meet the following conditions:
93
-
94
- (a) You must give any other recipients of the Work or
95
- Derivative Works a copy of this License; and
96
-
97
- (b) You must cause any modified files to carry prominent notices
98
- stating that You changed the files; and
99
-
100
- (c) You must retain, in the Source form of any Derivative Works
101
- that You distribute, all copyright, patent, trademark, and
102
- attribution notices from the Source form of the Work,
103
- excluding those notices that do not pertain to any part of
104
- the Derivative Works; and
105
-
106
- (d) If the Work includes a "NOTICE" text file as part of its
107
- distribution, then any Derivative Works that You distribute must
108
- include a readable copy of the attribution notices contained
109
- within such NOTICE file, excluding those notices that do not
110
- pertain to any part of the Derivative Works, in at least one
111
- of the following places: within a NOTICE text file distributed
112
- as part of the Derivative Works; within the Source form or
113
- documentation, if provided along with the Derivative Works; or,
114
- within a display generated by the Derivative Works, if and
115
- wherever such third-party notices normally appear. The contents
116
- of the NOTICE file are for informational purposes only and
117
- do not modify the License. You may add Your own attribution
118
- notices within Derivative Works that You distribute, alongside
119
- or as an addendum to the NOTICE text from the Work, provided
120
- that such additional attribution notices cannot be construed
121
- as modifying the License.
122
-
123
- You may add Your own copyright statement to Your modifications and
124
- may provide additional or different license terms and conditions
125
- for use, reproduction, or distribution of Your modifications, or
126
- for any such Derivative Works as a whole, provided Your use,
127
- reproduction, and distribution of the Work otherwise complies with
128
- the conditions stated in this License.
129
-
130
- 5. Submission of Contributions. Unless You explicitly state otherwise,
131
- any Contribution intentionally submitted for inclusion in the Work
132
- by You to the Licensor shall be under the terms and conditions of
133
- this License, without any additional terms or conditions.
134
- Notwithstanding the above, nothing herein shall supersede or modify
135
- the terms of any separate license agreement you may have executed
136
- with Licensor regarding such Contributions.
137
-
138
- 6. Trademarks. This License does not grant permission to use the trade
139
- names, trademarks, service marks, or product names of the Licensor,
140
- except as required for reasonable and customary use in describing the
141
- origin of the Work and reproducing the content of the NOTICE file.
142
-
143
- 7. Disclaimer of Warranty. Unless required by applicable law or
144
- agreed to in writing, Licensor provides the Work (and each
145
- Contributor provides its Contributions) on an "AS IS" BASIS,
146
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
- implied, including, without limitation, any warranties or conditions
148
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
- PARTICULAR PURPOSE. You are solely responsible for determining the
150
- appropriateness of using or redistributing the Work and assume any
151
- risks associated with Your exercise of permissions under this License.
152
-
153
- 8. Limitation of Liability. In no event and under no legal theory,
154
- whether in tort (including negligence), contract, or otherwise,
155
- unless required by applicable law (such as deliberate and grossly
156
- negligent acts) or agreed to in writing, shall any Contributor be
157
- liable to You for damages, including any direct, indirect, special,
158
- incidental, or consequential damages of any character arising as a
159
- result of this License or out of the use or inability to use the
160
- Work (including but not limited to damages for loss of goodwill,
161
- work stoppage, computer failure or malfunction, or any and all
162
- other commercial damages or losses), even if such Contributor
163
- has been advised of the possibility of such damages.
164
-
165
- 9. Accepting Warranty or Additional Liability. While redistributing
166
- the Work or Derivative Works thereof, You may choose to offer,
167
- and charge a fee for, acceptance of support, warranty, indemnity,
168
- or other liability obligations and/or rights consistent with this
169
- License. However, in accepting such obligations, You may act only
170
- on Your own behalf and on Your sole responsibility, not on behalf
171
- of any other Contributor, and only if You agree to indemnify,
172
- defend, and hold each Contributor harmless for any liability
173
- incurred by, or claims asserted against, such Contributor by reason
174
- of your accepting any such warranty or additional liability.
175
-
176
- END OF TERMS AND CONDITIONS
177
-
178
- APPENDIX: How to apply the Apache License to your work.
179
-
180
- To apply the Apache License to your work, attach the following
181
- boilerplate notice, with the fields enclosed by brackets "[]"
182
- replaced with your own identifying information. (Don't include
183
- the brackets!) The text should be enclosed in the appropriate
184
- comment syntax for the file format. We also recommend that a
185
- file or class name and description of purpose be included on the
186
- same "printed page" as the copyright notice for easier
187
- identification within third-party archives.
188
-
189
- Copyright [yyyy] [name of copyright owner]
190
-
191
- Licensed under the Apache License, Version 2.0 (the "License");
192
- you may not use this file except in compliance with the License.
193
- You may obtain a copy of the License at
194
-
195
- http://www.apache.org/licenses/LICENSE-2.0
196
-
197
- Unless required by applicable law or agreed to in writing, software
198
- distributed under the License is distributed on an "AS IS" BASIS,
199
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
- See the License for the specific language governing permissions and
201
- limitations under the License.
package/dist/index.d.ts DELETED
@@ -1,38 +0,0 @@
1
- import * as util from './util/utils';
2
- import { setBaseHeadParams } from './util/xhr';
3
- import { xhr_get, xhr_post, xhr_put, xhr_del } from './util/xhr';
4
- import OpacityBanner from "@/widget/OpacityBanner.vue";
5
- /**
6
- * 暴露各个组件
7
- */
8
- declare const _default: {
9
- /**
10
- * 设置 API 统一前缀
11
- *
12
- * @param perfix API 统一前缀
13
- */
14
- setApiBaseUrl(perfix: string): void;
15
- /**
16
- * 获取 API 统一前缀
17
- *
18
- * @returns API 统一前缀
19
- */
20
- getApiBaseUrl(): string;
21
- setBaseHeadParams: typeof setBaseHeadParams;
22
- util: typeof util;
23
- xhr: {
24
- xhr_get: typeof xhr_get;
25
- xhr_post: typeof xhr_post;
26
- xhr_put: typeof xhr_put;
27
- xhr_del: typeof xhr_del;
28
- };
29
- OpacityBanner: import("vue").VueConstructor<OpacityBanner<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => OpacityBanner<Record<string, any>, Record<string, any>, never, never, any>>>;
30
- ProcessLine: import("vue").VueConstructor<OpacityBanner<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => OpacityBanner<Record<string, any>, Record<string, any>, never, never, any>>>;
31
- AccordionMenu: import("vue").VueConstructor<OpacityBanner<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => OpacityBanner<Record<string, any>, Record<string, any>, never, never, any>>>;
32
- Expander: import("vue").VueConstructor<OpacityBanner<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => OpacityBanner<Record<string, any>, Record<string, any>, never, never, any>>>;
33
- Article: import("vue").VueConstructor<OpacityBanner<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => OpacityBanner<Record<string, any>, Record<string, any>, never, never, any>>>;
34
- HtmlEditor: import("vue").VueConstructor<OpacityBanner<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => OpacityBanner<Record<string, any>, Record<string, any>, never, never, any>>>;
35
- FileUploader: import("vue").VueConstructor<OpacityBanner<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => OpacityBanner<Record<string, any>, Record<string, any>, never, never, any>>>;
36
- Calendar: import("vue").VueConstructor<OpacityBanner<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => OpacityBanner<Record<string, any>, Record<string, any>, never, never, any>>>;
37
- };
38
- export default _default;