@ldmjs/ui 1.0.8 → 1.0.10
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 +2 -0
- package/dist/index.d.ts +3 -5
- package/package.json +4 -3
package/README.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Vue } from 'vue-class-component';
|
|
2
|
+
import { IEventBus } from './types/eventBus';
|
|
2
3
|
import { ldmuiOptions } from './types/options';
|
|
3
4
|
import { IToasted } from './types/toasted';
|
|
4
5
|
import { IInput, IWatcher } from './types/validation';
|
|
@@ -44,9 +45,7 @@ declare class ValidateMixin extends Vue {
|
|
|
44
45
|
validateSection: (section: number | string) => boolean;
|
|
45
46
|
customValidateFunc: () => string | boolean;
|
|
46
47
|
}
|
|
47
|
-
|
|
48
48
|
declare const ValidateMixinOptions: Record<string, any>;
|
|
49
|
-
|
|
50
49
|
declare const ldmui: {
|
|
51
50
|
install(vue: any, options?: ldmuiOptions): void;
|
|
52
51
|
}
|
|
@@ -54,8 +53,7 @@ declare const ldmui: {
|
|
|
54
53
|
export default ldmui;
|
|
55
54
|
|
|
56
55
|
export {
|
|
57
|
-
ValidateMixin,
|
|
58
|
-
|
|
59
|
-
isDefined, isObjectEmpty, uidGen, urlRegexp
|
|
56
|
+
ValidateMixin, ValidateMixinOptions, datetime, deepValueGetter, defaults, delay, getAliases,
|
|
57
|
+
isDefined, isObjectEmpty, uidGen, urlRegexp, eventBus
|
|
60
58
|
};
|
|
61
59
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ldmjs/ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"description": "ldm ui",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"engines": {
|
|
7
|
-
"node": ">=
|
|
8
|
-
"npm": ">=
|
|
7
|
+
"node": ">=19",
|
|
8
|
+
"npm": ">=9"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"dev": "cross-env NODE_ENV=development webpack serve --config config/webpack.config.dev.js --progress --profile --stats-error-details",
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
"@babel/preset-env": "7.23.6",
|
|
44
44
|
"@babel/preset-typescript": "7.23.3",
|
|
45
45
|
"@floating-ui/dom": "^1.6.3",
|
|
46
|
+
"@ldmjs/core": "1.0.0",
|
|
46
47
|
"@ldmjs/datatable": "1.0.6",
|
|
47
48
|
"@popperjs/core": "^2.11.8",
|
|
48
49
|
"@types/babel__core": "^7",
|