@itrocks/framework 0.0.22 → 0.0.23
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/app.js +1 -1
- package/cjs/reflect-class.d.ts +4 -1
- package/package.json +2 -3
package/app.js
CHANGED
|
@@ -19,7 +19,7 @@ import { notifications } from '../notifications/notifications.js';
|
|
|
19
19
|
import '../real-viewport-height/real-viewport-height.js';
|
|
20
20
|
let selector;
|
|
21
21
|
selector = 'input[data-type=object], ul[data-type=objects] > li > input';
|
|
22
|
-
build(selector, async (input) => (await import('../
|
|
22
|
+
build(selector, async (input) => new (await import('../autocomplete/autocomplete.js')).AutoComplete(input));
|
|
23
23
|
build('main > * > h2, main > * > header > h2', breadcrumb);
|
|
24
24
|
build('button.collapse', button => collapse(button, 'body'));
|
|
25
25
|
build('input[data-type=date]', async (input) => (await import('../air-datepicker/air-datepicker.js')).airDatePicker(input));
|
package/cjs/reflect-class.d.ts
CHANGED
|
@@ -3,6 +3,9 @@ import { ReflectClass as RC } from '@itrocks/reflect';
|
|
|
3
3
|
export declare class ReflectClass<T extends object = object> extends RC<T> {
|
|
4
4
|
inheritedPropertyTypes(propertyTypes: PropertyTypes<T>): void;
|
|
5
5
|
get parent(): any;
|
|
6
|
-
get properties():
|
|
6
|
+
get properties(): {
|
|
7
|
+
[s: string]: import("@itrocks/reflect").ReflectProperty<T>;
|
|
8
|
+
[Symbol.iterator](): Iterator<import("@itrocks/reflect").ReflectProperty<T>, any, any>;
|
|
9
|
+
};
|
|
7
10
|
get uses(): import("@itrocks/class-type").Type[];
|
|
8
11
|
}
|
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"@itrocks/asset-loader": "latest",
|
|
11
11
|
"@itrocks/auto-focus": "latest",
|
|
12
12
|
"@itrocks/auto-redirect": "latest",
|
|
13
|
-
"@itrocks/
|
|
13
|
+
"@itrocks/autocomplete": "latest",
|
|
14
14
|
"@itrocks/breadcrumb": "latest",
|
|
15
15
|
"@itrocks/build": "latest",
|
|
16
16
|
"@itrocks/business-pack": "latest",
|
|
@@ -54,7 +54,6 @@
|
|
|
54
54
|
"@itrocks/uses": "latest",
|
|
55
55
|
"@itrocks/xtarget": "latest",
|
|
56
56
|
"air-datepicker": "^3.5",
|
|
57
|
-
"autocompleter": "^9.3",
|
|
58
57
|
"date-fns": "^4.1"
|
|
59
58
|
},
|
|
60
59
|
"description": "RAD framework for intuitive web application development, blending data and domain-driven design with modular architecture",
|
|
@@ -94,5 +93,5 @@
|
|
|
94
93
|
"build:front": "tsc -p src/front/tsconfig.json && sed -i 's#../../##g' app.js app.d.ts"
|
|
95
94
|
},
|
|
96
95
|
"types": "./cjs/framework.d.ts",
|
|
97
|
-
"version": "0.0.
|
|
96
|
+
"version": "0.0.23"
|
|
98
97
|
}
|