el-plus-crud 0.0.95 → 0.0.96
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/.eslintignore +18 -17
- package/.eslintrc.js +78 -78
- package/.lintstagedrc +3 -3
- package/.prettierrc.js +39 -39
- package/CHANGELOG.md +111 -109
- package/LICENSE +21 -21
- package/README.md +127 -127
- package/build.js +31 -31
- package/dist/el-plus-crud.mjs +2633 -6283
- package/example/App.vue +252 -252
- package/example/main.js +18 -18
- package/example/style.css +4 -4
- package/index.html +13 -13
- package/lib/components/el-plus-form/ElPlusForm.vue +1 -3
- package/lib/components/el-plus-form/ElPlusFormGroup.vue +1 -1
- package/lib/components/el-plus-form/components/ElPlusFormArea.vue +60 -62
- package/lib/components/el-plus-form/components/ElPlusFormAutocomplete.vue +48 -49
- package/lib/components/el-plus-form/components/ElPlusFormBtn.vue +22 -22
- package/lib/components/el-plus-form/components/ElPlusFormBtns.vue +8 -8
- package/lib/components/el-plus-form/components/ElPlusFormCascader.vue +63 -64
- package/lib/components/el-plus-form/components/ElPlusFormCascaderPanel.vue +70 -71
- package/lib/components/el-plus-form/components/ElPlusFormCheckbox.vue +5 -6
- package/lib/components/el-plus-form/components/ElPlusFormCheckboxButton.vue +44 -45
- package/lib/components/el-plus-form/components/ElPlusFormColor.vue +37 -39
- package/lib/components/el-plus-form/components/ElPlusFormDate.vue +39 -40
- package/lib/components/el-plus-form/components/ElPlusFormDaterange.vue +46 -47
- package/lib/components/el-plus-form/components/ElPlusFormDatetime.vue +40 -41
- package/lib/components/el-plus-form/components/ElPlusFormDatetimerange.vue +46 -47
- package/lib/components/el-plus-form/components/ElPlusFormFile.vue +2 -2
- package/lib/components/el-plus-form/components/ElPlusFormImage.vue +117 -117
- package/lib/components/el-plus-form/components/ElPlusFormInput.vue +3 -4
- package/lib/components/el-plus-form/components/ElPlusFormLink.vue +6 -6
- package/lib/components/el-plus-form/components/ElPlusFormLkuser.vue +6 -6
- package/lib/components/el-plus-form/components/ElPlusFormNbinput.vue +53 -54
- package/lib/components/el-plus-form/components/ElPlusFormNumber.vue +19 -12
- package/lib/components/el-plus-form/components/ElPlusFormPassword.vue +3 -4
- package/lib/components/el-plus-form/components/ElPlusFormQuickInput.vue +6 -7
- package/lib/components/el-plus-form/components/ElPlusFormRadio.vue +67 -68
- package/lib/components/el-plus-form/components/ElPlusFormRate.vue +53 -54
- package/lib/components/el-plus-form/components/ElPlusFormSelect.vue +31 -19
- package/lib/components/el-plus-form/components/ElPlusFormSlider.vue +38 -39
- package/lib/components/el-plus-form/components/ElPlusFormStatus.vue +7 -7
- package/lib/components/el-plus-form/components/ElPlusFormSwitch.vue +4 -5
- package/lib/components/el-plus-form/components/ElPlusFormTag.vue +6 -6
- package/lib/components/el-plus-form/components/ElPlusFormText.vue +109 -99
- package/lib/components/el-plus-form/components/ElPlusFormTextarea.vue +3 -4
- package/lib/components/el-plus-form/components/ElPlusFormTime.vue +3 -4
- package/lib/components/el-plus-form/components/ElPlusFormTimerange.vue +3 -4
- package/lib/components/el-plus-form/components/ElPlusFormTransfer.vue +44 -45
- package/lib/components/el-plus-form/components/ElPlusFormTree.vue +76 -77
- package/lib/components/el-plus-form/components/ElPlusFormTreeSelect.vue +59 -60
- package/lib/components/el-plus-form/components/ElPlusFormUpbtn.vue +6 -6
- package/lib/components/el-plus-form/components/ElPlusFormUpload.vue +4 -5
- package/lib/components/el-plus-form/components/components/file-icons/data/index.ts +27 -27
- package/lib/components/el-plus-form/components/components/file-icons/images/doc.svg +12 -12
- package/lib/components/el-plus-form/components/components/file-icons/images/file.svg +18 -18
- package/lib/components/el-plus-form/components/components/file-icons/images/jpg.svg +13 -13
- package/lib/components/el-plus-form/components/components/file-icons/images/pdf.svg +12 -12
- package/lib/components/el-plus-form/components/components/file-icons/images/png.svg +12 -12
- package/lib/components/el-plus-form/components/components/file-icons/images/ppt.svg +12 -12
- package/lib/components/el-plus-form/components/components/file-icons/images/xls.svg +12 -12
- package/lib/components/el-plus-form/components/index.ts +17 -17
- package/lib/components/el-plus-form/data/file.ts +74 -74
- package/lib/components/el-plus-form/mixins/index.ts +6 -3
- package/lib/components/el-plus-form/util/index.ts +51 -0
- package/lib/components/el-plus-table/ElPlusTable.vue +899 -897
- package/lib/components/el-plus-table/ElPlusTableColumn.vue +1 -1
- package/lib/components/el-plus-table/components/columnItem.vue +4 -2
- package/lib/components/el-plus-table/components/settingColumn.vue +172 -172
- package/lib/components/el-plus-table/components/statisticInfo.vue +47 -47
- package/lib/components/el-plus-table/util/index.ts +21 -1
- package/lib/config/index.ts +22 -1
- package/lib/index.d.ts +4 -4
- package/lib/index.ts +2 -2
- package/package-lock.json +8101 -8101
- package/package.json +70 -71
- package/tsconfig.json +78 -78
- package/types/index.d.ts +30 -5
- package/vite.config.ts +78 -78
package/.eslintignore
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
*.sh
|
|
3
|
-
node_modules
|
|
4
|
-
lib
|
|
5
|
-
*.md
|
|
6
|
-
*.scss
|
|
7
|
-
*.woff
|
|
8
|
-
*.ttf
|
|
9
|
-
.vscode
|
|
10
|
-
.idea
|
|
11
|
-
dist
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
|
|
2
|
+
*.sh
|
|
3
|
+
node_modules
|
|
4
|
+
lib
|
|
5
|
+
*.md
|
|
6
|
+
*.scss
|
|
7
|
+
*.woff
|
|
8
|
+
*.ttf
|
|
9
|
+
.vscode
|
|
10
|
+
.idea
|
|
11
|
+
dist
|
|
12
|
+
docs
|
|
13
|
+
mock
|
|
14
|
+
public
|
|
15
|
+
bin
|
|
16
|
+
build
|
|
17
|
+
config
|
|
18
|
+
index.html
|
|
18
19
|
src/assets
|
package/.eslintrc.js
CHANGED
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
root: true,
|
|
3
|
-
env: {
|
|
4
|
-
browser: true,
|
|
5
|
-
es2021: true,
|
|
6
|
-
node: true
|
|
7
|
-
},
|
|
8
|
-
parser: 'vue-eslint-parser',
|
|
9
|
-
parserOptions: {
|
|
10
|
-
ecmaVersion: 12,
|
|
11
|
-
parser: '@typescript-eslint/parser',
|
|
12
|
-
sourceType: 'module'
|
|
13
|
-
},
|
|
14
|
-
extends: ['plugin:vue/vue3-essential', 'plugin:vue/essential', 'eslint:recommended'],
|
|
15
|
-
plugins: ['vue', '@typescript-eslint'],
|
|
16
|
-
overrides: [
|
|
17
|
-
{
|
|
18
|
-
files: ['*.ts', '*.tsx', '*.vue'],
|
|
19
|
-
rules: {
|
|
20
|
-
'no-undef': 'off'
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
],
|
|
24
|
-
rules: {
|
|
25
|
-
// http://eslint.cn/docs/rules/
|
|
26
|
-
// https://eslint.vuejs.org/rules/
|
|
27
|
-
// https://typescript-eslint.io/rules/no-unused-vars/
|
|
28
|
-
'@typescript-eslint/ban-ts-ignore': 'off',
|
|
29
|
-
'@typescript-eslint/explicit-function-return-type': 'off',
|
|
30
|
-
'@typescript-eslint/no-explicit-any': 'off',
|
|
31
|
-
'@typescript-eslint/no-var-requires': 'off',
|
|
32
|
-
'@typescript-eslint/no-empty-function': 'off',
|
|
33
|
-
'@typescript-eslint/no-use-before-define': 'off',
|
|
34
|
-
'@typescript-eslint/ban-ts-comment': 'off',
|
|
35
|
-
'@typescript-eslint/ban-types': 'off',
|
|
36
|
-
'@typescript-eslint/no-non-null-assertion': 'off',
|
|
37
|
-
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
|
38
|
-
'@typescript-eslint/no-redeclare': 'error',
|
|
39
|
-
'@typescript-eslint/no-non-null-asserted-optional-chain': 'off',
|
|
40
|
-
'@typescript-eslint/no-unused-vars': [2],
|
|
41
|
-
'vue/custom-event-name-casing': 'off',
|
|
42
|
-
'vue/attributes-order': 'off',
|
|
43
|
-
'vue/one-component-per-file': 'off',
|
|
44
|
-
'vue/html-closing-bracket-newline': 'off',
|
|
45
|
-
'vue/max-attributes-per-line': 'off',
|
|
46
|
-
'vue/multiline-html-element-content-newline': 'off',
|
|
47
|
-
'vue/singleline-html-element-content-newline': 'off',
|
|
48
|
-
'vue/attribute-hyphenation': 'off',
|
|
49
|
-
'vue/html-self-closing': 'off',
|
|
50
|
-
'vue/no-multiple-template-root': 'off',
|
|
51
|
-
'vue/require-default-prop': 'off',
|
|
52
|
-
'vue/no-v-model-argument': 'off',
|
|
53
|
-
'vue/no-arrow-functions-in-watch': 'off',
|
|
54
|
-
'vue/no-template-key': 'off',
|
|
55
|
-
'vue/no-v-html': 'off',
|
|
56
|
-
'vue/comment-directive': 'off',
|
|
57
|
-
'vue/no-parsing-error': 'off',
|
|
58
|
-
'vue/no-deprecated-v-on-native-modifier': 'off',
|
|
59
|
-
'vue/no-mutating-props': 'off',
|
|
60
|
-
'vue/no-v-for-template-key': 'off',
|
|
61
|
-
'vue/multi-word-component-names': 'off',
|
|
62
|
-
'no-useless-escape': 'off',
|
|
63
|
-
'no-sparse-arrays': 'off',
|
|
64
|
-
'no-prototype-builtins': 'off',
|
|
65
|
-
'no-constant-condition': 'off',
|
|
66
|
-
'no-use-before-define': 'off',
|
|
67
|
-
'no-restricted-globals': 'off',
|
|
68
|
-
'no-restricted-syntax': 'off',
|
|
69
|
-
'generator-star-spacing': 'off',
|
|
70
|
-
'no-unreachable': 'off',
|
|
71
|
-
'no-multiple-template-root': 'off',
|
|
72
|
-
'no-unused-vars': 'error',
|
|
73
|
-
'no-v-model-argument': 'off',
|
|
74
|
-
'no-case-declarations': 'off',
|
|
75
|
-
'no-console': 'error',
|
|
76
|
-
'no-redeclare': 'off'
|
|
77
|
-
}
|
|
78
|
-
}
|
|
1
|
+
module.exports = {
|
|
2
|
+
root: true,
|
|
3
|
+
env: {
|
|
4
|
+
browser: true,
|
|
5
|
+
es2021: true,
|
|
6
|
+
node: true
|
|
7
|
+
},
|
|
8
|
+
parser: 'vue-eslint-parser',
|
|
9
|
+
parserOptions: {
|
|
10
|
+
ecmaVersion: 12,
|
|
11
|
+
parser: '@typescript-eslint/parser',
|
|
12
|
+
sourceType: 'module'
|
|
13
|
+
},
|
|
14
|
+
extends: ['plugin:vue/vue3-essential', 'plugin:vue/essential', 'eslint:recommended'],
|
|
15
|
+
plugins: ['vue', '@typescript-eslint'],
|
|
16
|
+
overrides: [
|
|
17
|
+
{
|
|
18
|
+
files: ['*.ts', '*.tsx', '*.vue'],
|
|
19
|
+
rules: {
|
|
20
|
+
'no-undef': 'off'
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
rules: {
|
|
25
|
+
// http://eslint.cn/docs/rules/
|
|
26
|
+
// https://eslint.vuejs.org/rules/
|
|
27
|
+
// https://typescript-eslint.io/rules/no-unused-vars/
|
|
28
|
+
'@typescript-eslint/ban-ts-ignore': 'off',
|
|
29
|
+
'@typescript-eslint/explicit-function-return-type': 'off',
|
|
30
|
+
'@typescript-eslint/no-explicit-any': 'off',
|
|
31
|
+
'@typescript-eslint/no-var-requires': 'off',
|
|
32
|
+
'@typescript-eslint/no-empty-function': 'off',
|
|
33
|
+
'@typescript-eslint/no-use-before-define': 'off',
|
|
34
|
+
'@typescript-eslint/ban-ts-comment': 'off',
|
|
35
|
+
'@typescript-eslint/ban-types': 'off',
|
|
36
|
+
'@typescript-eslint/no-non-null-assertion': 'off',
|
|
37
|
+
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
|
38
|
+
'@typescript-eslint/no-redeclare': 'error',
|
|
39
|
+
'@typescript-eslint/no-non-null-asserted-optional-chain': 'off',
|
|
40
|
+
'@typescript-eslint/no-unused-vars': [2],
|
|
41
|
+
'vue/custom-event-name-casing': 'off',
|
|
42
|
+
'vue/attributes-order': 'off',
|
|
43
|
+
'vue/one-component-per-file': 'off',
|
|
44
|
+
'vue/html-closing-bracket-newline': 'off',
|
|
45
|
+
'vue/max-attributes-per-line': 'off',
|
|
46
|
+
'vue/multiline-html-element-content-newline': 'off',
|
|
47
|
+
'vue/singleline-html-element-content-newline': 'off',
|
|
48
|
+
'vue/attribute-hyphenation': 'off',
|
|
49
|
+
'vue/html-self-closing': 'off',
|
|
50
|
+
'vue/no-multiple-template-root': 'off',
|
|
51
|
+
'vue/require-default-prop': 'off',
|
|
52
|
+
'vue/no-v-model-argument': 'off',
|
|
53
|
+
'vue/no-arrow-functions-in-watch': 'off',
|
|
54
|
+
'vue/no-template-key': 'off',
|
|
55
|
+
'vue/no-v-html': 'off',
|
|
56
|
+
'vue/comment-directive': 'off',
|
|
57
|
+
'vue/no-parsing-error': 'off',
|
|
58
|
+
'vue/no-deprecated-v-on-native-modifier': 'off',
|
|
59
|
+
'vue/no-mutating-props': 'off',
|
|
60
|
+
'vue/no-v-for-template-key': 'off',
|
|
61
|
+
'vue/multi-word-component-names': 'off',
|
|
62
|
+
'no-useless-escape': 'off',
|
|
63
|
+
'no-sparse-arrays': 'off',
|
|
64
|
+
'no-prototype-builtins': 'off',
|
|
65
|
+
'no-constant-condition': 'off',
|
|
66
|
+
'no-use-before-define': 'off',
|
|
67
|
+
'no-restricted-globals': 'off',
|
|
68
|
+
'no-restricted-syntax': 'off',
|
|
69
|
+
'generator-star-spacing': 'off',
|
|
70
|
+
'no-unreachable': 'off',
|
|
71
|
+
'no-multiple-template-root': 'off',
|
|
72
|
+
'no-unused-vars': 'error',
|
|
73
|
+
'no-v-model-argument': 'off',
|
|
74
|
+
'no-case-declarations': 'off',
|
|
75
|
+
'no-console': 'error',
|
|
76
|
+
'no-redeclare': 'off'
|
|
77
|
+
}
|
|
78
|
+
}
|
package/.lintstagedrc
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
{
|
|
2
|
-
"*.{js,jsx,ts,tsx,vue,html}": ["prettier --write", "eslint"]
|
|
3
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"*.{js,jsx,ts,tsx,vue,html}": ["prettier --write", "eslint"]
|
|
3
|
+
}
|
package/.prettierrc.js
CHANGED
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
// 一行最多多少个字符
|
|
3
|
-
printWidth: 500,
|
|
4
|
-
// 指定每个缩进级别的空格数
|
|
5
|
-
tabWidth: 2,
|
|
6
|
-
// 使用制表符而不是空格缩进行
|
|
7
|
-
useTabs: false,
|
|
8
|
-
// 在语句末尾打印分号
|
|
9
|
-
semi: false,
|
|
10
|
-
// 使用单引号而不是双引号
|
|
11
|
-
singleQuote: true,
|
|
12
|
-
// 更改引用对象属性的时间 可选值"<as-needed|consistent|preserve>"
|
|
13
|
-
quoteProps: 'as-needed',
|
|
14
|
-
// 在JSX中使用单引号而不是双引号
|
|
15
|
-
jsxSingleQuote: false,
|
|
16
|
-
// 多行时尽可能打印尾随逗号。(例如,单行数组永远不会出现逗号结尾。) 可选值"<none|es5|all>",默认none
|
|
17
|
-
trailingComma: 'none',
|
|
18
|
-
// 在对象文字中的括号之间打印空格
|
|
19
|
-
bracketSpacing: true,
|
|
20
|
-
// jsx 标签的反尖括号需要换行
|
|
21
|
-
jsxBracketSameLine: false,
|
|
22
|
-
// 在单独的箭头函数参数周围包括括号 always:(x) => x \ avoid:x => x
|
|
23
|
-
arrowParens: 'always',
|
|
24
|
-
// 这两个选项可用于格式化以给定字符偏移量(分别包括和不包括)开始和结束的代码
|
|
25
|
-
rangeStart: 0,
|
|
26
|
-
rangeEnd: Infinity,
|
|
27
|
-
// 指定要使用的解析器,不需要写文件开头的 @prettier
|
|
28
|
-
requirePragma: false,
|
|
29
|
-
// 不需要自动在文件开头插入 @prettier
|
|
30
|
-
insertPragma: false,
|
|
31
|
-
// 使用默认的折行标准 always\never\preserve
|
|
32
|
-
proseWrap: 'preserve',
|
|
33
|
-
// 指定HTML文件的全局空格敏感度 css\strict\ignore
|
|
34
|
-
htmlWhitespaceSensitivity: 'css',
|
|
35
|
-
// Vue文件脚本和样式标签缩进
|
|
36
|
-
vueIndentScriptAndStyle: false,
|
|
37
|
-
// 换行符使用 lf 结尾是 可选值"<auto|lf|crlf|cr>"
|
|
38
|
-
endOfLine: 'lf'
|
|
39
|
-
}
|
|
1
|
+
module.exports = {
|
|
2
|
+
// 一行最多多少个字符
|
|
3
|
+
printWidth: 500,
|
|
4
|
+
// 指定每个缩进级别的空格数
|
|
5
|
+
tabWidth: 2,
|
|
6
|
+
// 使用制表符而不是空格缩进行
|
|
7
|
+
useTabs: false,
|
|
8
|
+
// 在语句末尾打印分号
|
|
9
|
+
semi: false,
|
|
10
|
+
// 使用单引号而不是双引号
|
|
11
|
+
singleQuote: true,
|
|
12
|
+
// 更改引用对象属性的时间 可选值"<as-needed|consistent|preserve>"
|
|
13
|
+
quoteProps: 'as-needed',
|
|
14
|
+
// 在JSX中使用单引号而不是双引号
|
|
15
|
+
jsxSingleQuote: false,
|
|
16
|
+
// 多行时尽可能打印尾随逗号。(例如,单行数组永远不会出现逗号结尾。) 可选值"<none|es5|all>",默认none
|
|
17
|
+
trailingComma: 'none',
|
|
18
|
+
// 在对象文字中的括号之间打印空格
|
|
19
|
+
bracketSpacing: true,
|
|
20
|
+
// jsx 标签的反尖括号需要换行
|
|
21
|
+
jsxBracketSameLine: false,
|
|
22
|
+
// 在单独的箭头函数参数周围包括括号 always:(x) => x \ avoid:x => x
|
|
23
|
+
arrowParens: 'always',
|
|
24
|
+
// 这两个选项可用于格式化以给定字符偏移量(分别包括和不包括)开始和结束的代码
|
|
25
|
+
rangeStart: 0,
|
|
26
|
+
rangeEnd: Infinity,
|
|
27
|
+
// 指定要使用的解析器,不需要写文件开头的 @prettier
|
|
28
|
+
requirePragma: false,
|
|
29
|
+
// 不需要自动在文件开头插入 @prettier
|
|
30
|
+
insertPragma: false,
|
|
31
|
+
// 使用默认的折行标准 always\never\preserve
|
|
32
|
+
proseWrap: 'preserve',
|
|
33
|
+
// 指定HTML文件的全局空格敏感度 css\strict\ignore
|
|
34
|
+
htmlWhitespaceSensitivity: 'css',
|
|
35
|
+
// Vue文件脚本和样式标签缩进
|
|
36
|
+
vueIndentScriptAndStyle: false,
|
|
37
|
+
// 换行符使用 lf 结尾是 可选值"<auto|lf|crlf|cr>"
|
|
38
|
+
endOfLine: 'lf'
|
|
39
|
+
}
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.0.96](https://github.com/KDJack/el-plus-crud/compare/v0.0.95...v0.0.96) (2023-10-17)
|
|
6
|
+
|
|
5
7
|
### [0.0.95](https://github.com/KDJack/el-plus-crud/compare/v0.0.94...v0.0.95) (2023-10-08)
|
|
6
8
|
|
|
7
9
|
### [0.0.94](https://github.com/KDJack/el-plus-crud/compare/v0.0.93...v0.0.94) (2023-09-28)
|
|
@@ -80,112 +82,112 @@ All notable changes to this project will be documented in this file. See [standa
|
|
|
80
82
|
|
|
81
83
|
### [0.0.57](https://github.com/KDJack/el-plus-crud/compare/v0.0.54...v0.0.57) (2023-08-28)
|
|
82
84
|
|
|
83
|
-
### [0.0.56](https://github.com/KDJack/el-plus-crud/compare/v0.0.55...v0.0.56) (2023-08-27)
|
|
84
|
-
|
|
85
|
-
### [0.0.55](https://github.com/KDJack/el-plus-crud/compare/v0.0.52...v0.0.55) (2023-08-26)
|
|
86
|
-
|
|
87
|
-
### [0.0.54](https://github.com/KDJack/el-plus-crud/compare/v0.0.53...v0.0.54) (2023-08-25)
|
|
88
|
-
|
|
89
|
-
### [0.0.53](https://github.com/KDJack/el-plus-crud/compare/v0.0.52...v0.0.53) (2023-08-25)
|
|
90
|
-
|
|
91
|
-
### 0.0.52 (2023-08-25)
|
|
92
|
-
|
|
93
|
-
### [0.0.51](https://github.com/KDJack/el-plus-crud/compare/v0.0.50...v0.0.51) (2023-08-24)
|
|
94
|
-
|
|
95
|
-
### [0.0.50](https://github.com/KDJack/el-plus-crud/compare/v0.0.38...v0.0.50) (2023-08-21)
|
|
96
|
-
|
|
97
|
-
### [0.0.49](https://github.com/KDJack/el-plus-crud/compare/v0.0.48...v0.0.49) (2023-08-18)
|
|
98
|
-
|
|
99
|
-
### [0.0.48](https://github.com/KDJack/el-plus-crud/compare/v0.0.47...v0.0.48) (2023-08-18)
|
|
100
|
-
|
|
101
|
-
### [0.0.47](https://github.com/KDJack/el-plus-crud/compare/v0.0.46...v0.0.47) (2023-08-17)
|
|
102
|
-
|
|
103
|
-
### [0.0.46](https://github.com/KDJack/el-plus-crud/compare/v0.0.45...v0.0.46) (2023-08-17)
|
|
104
|
-
|
|
105
|
-
### [0.0.45](https://github.com/KDJack/el-plus-crud/compare/v0.0.44...v0.0.45) (2023-08-17)
|
|
106
|
-
|
|
107
|
-
### [0.0.44](https://github.com/KDJack/el-plus-crud/compare/v0.0.43...v0.0.44) (2023-08-16)
|
|
108
|
-
|
|
109
|
-
### [0.0.43](https://github.com/KDJack/el-plus-crud/compare/v0.0.42...v0.0.43) (2023-08-16)
|
|
110
|
-
|
|
111
|
-
### [0.0.42](https://github.com/KDJack/el-plus-crud/compare/v0.0.41...v0.0.42) (2023-08-16)
|
|
112
|
-
|
|
113
|
-
### 0.0.41 (2023-08-10)
|
|
114
|
-
|
|
115
|
-
### [0.0.40](https://github.com/KDJack/el-plus-crud/compare/v0.0.39...v0.0.40) (2023-08-08)
|
|
116
|
-
|
|
117
|
-
### [0.0.39](https://github.com/KDJack/el-plus-crud/compare/v0.0.35...v0.0.39) (2023-08-07)
|
|
118
|
-
|
|
119
|
-
### [0.0.38](https://github.com/KDJack/el-plus-crud/compare/v0.0.37...v0.0.38) (2023-08-05)
|
|
120
|
-
|
|
121
|
-
### 0.0.37 (2023-08-05)
|
|
122
|
-
|
|
123
|
-
### 0.0.36 (2023-08-05)
|
|
124
|
-
|
|
125
|
-
### [0.0.35](https://github.com/KDJack/el-plus-crud/compare/v0.0.34...v0.0.35) (2023-08-04)
|
|
126
|
-
|
|
127
|
-
### [0.0.34](https://github.com/KDJack/el-plus-crud/compare/v0.0.33...v0.0.34) (2023-08-03)
|
|
128
|
-
|
|
129
|
-
### [0.0.33](https://github.com/KDJack/el-plus-crud/compare/v0.0.32...v0.0.33) (2023-08-03)
|
|
130
|
-
|
|
131
|
-
### [0.0.32](https://github.com/KDJack/el-plus-crud/compare/v0.0.31...v0.0.32) (2023-08-03)
|
|
132
|
-
|
|
133
|
-
### [0.0.31](https://github.com/KDJack/el-plus-crud/compare/v0.0.30...v0.0.31) (2023-08-02)
|
|
134
|
-
|
|
135
|
-
### [0.0.30](https://github.com/KDJack/el-plus-crud/compare/v0.0.29...v0.0.30) (2023-08-02)
|
|
136
|
-
|
|
137
|
-
### [0.0.29](https://github.com/KDJack/el-plus-crud/compare/v0.0.28...v0.0.29) (2023-08-01)
|
|
138
|
-
|
|
139
|
-
### [0.0.28](https://github.com/KDJack/el-plus-crud/compare/v0.0.27...v0.0.28) (2023-07-28)
|
|
140
|
-
|
|
141
|
-
### [0.0.27](https://github.com/KDJack/el-plus-crud/compare/v0.0.26...v0.0.27) (2023-07-28)
|
|
142
|
-
|
|
143
|
-
### [0.0.26](https://github.com/KDJack/el-plus-crud/compare/v0.0.25...v0.0.26) (2023-07-27)
|
|
144
|
-
|
|
145
|
-
### [0.0.25](https://github.com/KDJack/el-plus-crud/compare/v0.0.24...v0.0.25) (2023-07-26)
|
|
146
|
-
|
|
147
|
-
### [0.0.24](https://github.com/KDJack/el-plus-crud/compare/v0.0.23...v0.0.24) (2023-07-20)
|
|
148
|
-
|
|
149
|
-
### [0.0.23](https://github.com/KDJack/el-plus-crud/compare/v0.0.22...v0.0.23) (2023-07-14)
|
|
150
|
-
|
|
151
|
-
### [0.0.22](https://github.com/KDJack/el-plus-crud/compare/v0.0.21...v0.0.22) (2023-07-14)
|
|
152
|
-
|
|
153
|
-
### [0.0.21](https://github.com/KDJack/el-plus-crud/compare/v0.0.20...v0.0.21) (2023-07-13)
|
|
154
|
-
|
|
155
|
-
### [0.0.20](https://github.com/KDJack/el-plus-crud/compare/v0.0.19...v0.0.20) (2023-07-13)
|
|
156
|
-
|
|
157
|
-
### [0.0.19](https://github.com/KDJack/el-plus-crud/compare/v0.0.18...v0.0.19) (2023-07-13)
|
|
158
|
-
|
|
159
|
-
### [0.0.18](https://github.com/KDJack/el-plus-crud/compare/v0.0.17...v0.0.18) (2023-07-13)
|
|
160
|
-
|
|
161
|
-
### [0.0.17](https://github.com/KDJack/el-plus-crud/compare/v0.0.16...v0.0.17) (2023-07-13)
|
|
162
|
-
|
|
163
|
-
### [0.0.16](https://github.com/KDJack/el-plus-crud/compare/v0.0.15...v0.0.16) (2023-07-13)
|
|
164
|
-
|
|
165
|
-
### [0.0.15](https://github.com/KDJack/el-plus-crud/compare/v0.0.14...v0.0.15) (2023-07-11)
|
|
166
|
-
|
|
167
|
-
### [0.0.14](https://github.com/KDJack/el-plus-crud/compare/v0.0.13...v0.0.14) (2023-07-11)
|
|
168
|
-
|
|
169
|
-
### 0.0.13 (2023-07-11)
|
|
170
|
-
|
|
171
|
-
### [0.0.12](https://github.com/KDJack/el-plus-crud/compare/v0.0.11...v0.0.12) (2023-07-10)
|
|
172
|
-
|
|
173
|
-
### [0.0.11](https://github.com/KDJack/el-plus-crud/compare/v0.0.10...v0.0.11) (2023-07-10)
|
|
174
|
-
|
|
175
|
-
### [0.0.10](https://github.com/KDJack/el-plus-crud/compare/v0.0.9...v0.0.10) (2023-07-10)
|
|
176
|
-
|
|
177
|
-
### [0.0.9](https://github.com/KDJack/el-plus-crud/compare/v0.0.8...v0.0.9) (2023-07-10)
|
|
178
|
-
|
|
179
|
-
### [0.0.8](https://github.com/KDJack/el-plus-crud/compare/v0.0.7...v0.0.8) (2023-07-10)
|
|
180
|
-
|
|
181
|
-
### [0.0.7](https://github.com/KDJack/el-plus-crud/compare/v0.0.6...v0.0.7) (2023-07-10)
|
|
182
|
-
|
|
183
|
-
### [0.0.6](https://github.com/KDJack/el-plus-crud/compare/v0.0.5...v0.0.6) (2023-07-10)
|
|
184
|
-
|
|
185
|
-
### [0.0.5](https://github.com/KDJack/el-plus-crud/compare/v0.0.4...v0.0.5) (2023-07-10)
|
|
186
|
-
|
|
187
|
-
### [0.0.4](https://github.com/KDJack/el-plus-crud/compare/v0.0.3...v0.0.4) (2023-07-10)
|
|
188
|
-
|
|
189
|
-
### [0.0.3](https://github.com/KDJack/el-plus-crud/compare/v0.0.2...v0.0.3) (2023-07-10)
|
|
190
|
-
|
|
191
|
-
### 0.0.2 (2023-07-10)
|
|
85
|
+
### [0.0.56](https://github.com/KDJack/el-plus-crud/compare/v0.0.55...v0.0.56) (2023-08-27)
|
|
86
|
+
|
|
87
|
+
### [0.0.55](https://github.com/KDJack/el-plus-crud/compare/v0.0.52...v0.0.55) (2023-08-26)
|
|
88
|
+
|
|
89
|
+
### [0.0.54](https://github.com/KDJack/el-plus-crud/compare/v0.0.53...v0.0.54) (2023-08-25)
|
|
90
|
+
|
|
91
|
+
### [0.0.53](https://github.com/KDJack/el-plus-crud/compare/v0.0.52...v0.0.53) (2023-08-25)
|
|
92
|
+
|
|
93
|
+
### 0.0.52 (2023-08-25)
|
|
94
|
+
|
|
95
|
+
### [0.0.51](https://github.com/KDJack/el-plus-crud/compare/v0.0.50...v0.0.51) (2023-08-24)
|
|
96
|
+
|
|
97
|
+
### [0.0.50](https://github.com/KDJack/el-plus-crud/compare/v0.0.38...v0.0.50) (2023-08-21)
|
|
98
|
+
|
|
99
|
+
### [0.0.49](https://github.com/KDJack/el-plus-crud/compare/v0.0.48...v0.0.49) (2023-08-18)
|
|
100
|
+
|
|
101
|
+
### [0.0.48](https://github.com/KDJack/el-plus-crud/compare/v0.0.47...v0.0.48) (2023-08-18)
|
|
102
|
+
|
|
103
|
+
### [0.0.47](https://github.com/KDJack/el-plus-crud/compare/v0.0.46...v0.0.47) (2023-08-17)
|
|
104
|
+
|
|
105
|
+
### [0.0.46](https://github.com/KDJack/el-plus-crud/compare/v0.0.45...v0.0.46) (2023-08-17)
|
|
106
|
+
|
|
107
|
+
### [0.0.45](https://github.com/KDJack/el-plus-crud/compare/v0.0.44...v0.0.45) (2023-08-17)
|
|
108
|
+
|
|
109
|
+
### [0.0.44](https://github.com/KDJack/el-plus-crud/compare/v0.0.43...v0.0.44) (2023-08-16)
|
|
110
|
+
|
|
111
|
+
### [0.0.43](https://github.com/KDJack/el-plus-crud/compare/v0.0.42...v0.0.43) (2023-08-16)
|
|
112
|
+
|
|
113
|
+
### [0.0.42](https://github.com/KDJack/el-plus-crud/compare/v0.0.41...v0.0.42) (2023-08-16)
|
|
114
|
+
|
|
115
|
+
### 0.0.41 (2023-08-10)
|
|
116
|
+
|
|
117
|
+
### [0.0.40](https://github.com/KDJack/el-plus-crud/compare/v0.0.39...v0.0.40) (2023-08-08)
|
|
118
|
+
|
|
119
|
+
### [0.0.39](https://github.com/KDJack/el-plus-crud/compare/v0.0.35...v0.0.39) (2023-08-07)
|
|
120
|
+
|
|
121
|
+
### [0.0.38](https://github.com/KDJack/el-plus-crud/compare/v0.0.37...v0.0.38) (2023-08-05)
|
|
122
|
+
|
|
123
|
+
### 0.0.37 (2023-08-05)
|
|
124
|
+
|
|
125
|
+
### 0.0.36 (2023-08-05)
|
|
126
|
+
|
|
127
|
+
### [0.0.35](https://github.com/KDJack/el-plus-crud/compare/v0.0.34...v0.0.35) (2023-08-04)
|
|
128
|
+
|
|
129
|
+
### [0.0.34](https://github.com/KDJack/el-plus-crud/compare/v0.0.33...v0.0.34) (2023-08-03)
|
|
130
|
+
|
|
131
|
+
### [0.0.33](https://github.com/KDJack/el-plus-crud/compare/v0.0.32...v0.0.33) (2023-08-03)
|
|
132
|
+
|
|
133
|
+
### [0.0.32](https://github.com/KDJack/el-plus-crud/compare/v0.0.31...v0.0.32) (2023-08-03)
|
|
134
|
+
|
|
135
|
+
### [0.0.31](https://github.com/KDJack/el-plus-crud/compare/v0.0.30...v0.0.31) (2023-08-02)
|
|
136
|
+
|
|
137
|
+
### [0.0.30](https://github.com/KDJack/el-plus-crud/compare/v0.0.29...v0.0.30) (2023-08-02)
|
|
138
|
+
|
|
139
|
+
### [0.0.29](https://github.com/KDJack/el-plus-crud/compare/v0.0.28...v0.0.29) (2023-08-01)
|
|
140
|
+
|
|
141
|
+
### [0.0.28](https://github.com/KDJack/el-plus-crud/compare/v0.0.27...v0.0.28) (2023-07-28)
|
|
142
|
+
|
|
143
|
+
### [0.0.27](https://github.com/KDJack/el-plus-crud/compare/v0.0.26...v0.0.27) (2023-07-28)
|
|
144
|
+
|
|
145
|
+
### [0.0.26](https://github.com/KDJack/el-plus-crud/compare/v0.0.25...v0.0.26) (2023-07-27)
|
|
146
|
+
|
|
147
|
+
### [0.0.25](https://github.com/KDJack/el-plus-crud/compare/v0.0.24...v0.0.25) (2023-07-26)
|
|
148
|
+
|
|
149
|
+
### [0.0.24](https://github.com/KDJack/el-plus-crud/compare/v0.0.23...v0.0.24) (2023-07-20)
|
|
150
|
+
|
|
151
|
+
### [0.0.23](https://github.com/KDJack/el-plus-crud/compare/v0.0.22...v0.0.23) (2023-07-14)
|
|
152
|
+
|
|
153
|
+
### [0.0.22](https://github.com/KDJack/el-plus-crud/compare/v0.0.21...v0.0.22) (2023-07-14)
|
|
154
|
+
|
|
155
|
+
### [0.0.21](https://github.com/KDJack/el-plus-crud/compare/v0.0.20...v0.0.21) (2023-07-13)
|
|
156
|
+
|
|
157
|
+
### [0.0.20](https://github.com/KDJack/el-plus-crud/compare/v0.0.19...v0.0.20) (2023-07-13)
|
|
158
|
+
|
|
159
|
+
### [0.0.19](https://github.com/KDJack/el-plus-crud/compare/v0.0.18...v0.0.19) (2023-07-13)
|
|
160
|
+
|
|
161
|
+
### [0.0.18](https://github.com/KDJack/el-plus-crud/compare/v0.0.17...v0.0.18) (2023-07-13)
|
|
162
|
+
|
|
163
|
+
### [0.0.17](https://github.com/KDJack/el-plus-crud/compare/v0.0.16...v0.0.17) (2023-07-13)
|
|
164
|
+
|
|
165
|
+
### [0.0.16](https://github.com/KDJack/el-plus-crud/compare/v0.0.15...v0.0.16) (2023-07-13)
|
|
166
|
+
|
|
167
|
+
### [0.0.15](https://github.com/KDJack/el-plus-crud/compare/v0.0.14...v0.0.15) (2023-07-11)
|
|
168
|
+
|
|
169
|
+
### [0.0.14](https://github.com/KDJack/el-plus-crud/compare/v0.0.13...v0.0.14) (2023-07-11)
|
|
170
|
+
|
|
171
|
+
### 0.0.13 (2023-07-11)
|
|
172
|
+
|
|
173
|
+
### [0.0.12](https://github.com/KDJack/el-plus-crud/compare/v0.0.11...v0.0.12) (2023-07-10)
|
|
174
|
+
|
|
175
|
+
### [0.0.11](https://github.com/KDJack/el-plus-crud/compare/v0.0.10...v0.0.11) (2023-07-10)
|
|
176
|
+
|
|
177
|
+
### [0.0.10](https://github.com/KDJack/el-plus-crud/compare/v0.0.9...v0.0.10) (2023-07-10)
|
|
178
|
+
|
|
179
|
+
### [0.0.9](https://github.com/KDJack/el-plus-crud/compare/v0.0.8...v0.0.9) (2023-07-10)
|
|
180
|
+
|
|
181
|
+
### [0.0.8](https://github.com/KDJack/el-plus-crud/compare/v0.0.7...v0.0.8) (2023-07-10)
|
|
182
|
+
|
|
183
|
+
### [0.0.7](https://github.com/KDJack/el-plus-crud/compare/v0.0.6...v0.0.7) (2023-07-10)
|
|
184
|
+
|
|
185
|
+
### [0.0.6](https://github.com/KDJack/el-plus-crud/compare/v0.0.5...v0.0.6) (2023-07-10)
|
|
186
|
+
|
|
187
|
+
### [0.0.5](https://github.com/KDJack/el-plus-crud/compare/v0.0.4...v0.0.5) (2023-07-10)
|
|
188
|
+
|
|
189
|
+
### [0.0.4](https://github.com/KDJack/el-plus-crud/compare/v0.0.3...v0.0.4) (2023-07-10)
|
|
190
|
+
|
|
191
|
+
### [0.0.3](https://github.com/KDJack/el-plus-crud/compare/v0.0.2...v0.0.3) (2023-07-10)
|
|
192
|
+
|
|
193
|
+
### 0.0.2 (2023-07-10)
|
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2023 KDJack
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 KDJack
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|