@aerogel/core 0.1.1-next.785e2c42ed379bc0f268c637d1023a51f5832d80 → 0.1.1-next.b25730fd2850ebabef064973972dabd342d92769
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/aerogel-core.d.ts +15 -9
- package/dist/aerogel-core.js +214 -216
- package/dist/aerogel-core.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ui/Form.vue +1 -1
- package/src/directives/index.ts +7 -7
package/dist/aerogel-core.d.ts
CHANGED
|
@@ -1221,6 +1221,13 @@ export declare type AcceptRefs<T> = {
|
|
|
1221
1221
|
|
|
1222
1222
|
export declare const AdvancedOptions: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
|
|
1223
1223
|
|
|
1224
|
+
export declare type AerogelDirectives = typeof aerogelDirectives;
|
|
1225
|
+
|
|
1226
|
+
export declare const aerogelDirectives: {
|
|
1227
|
+
readonly measure: Directive<any, MeasureDirectiveValue, MeasureDirectiveModifiers>;
|
|
1228
|
+
readonly 'safe-html': Directive<any, string, string>;
|
|
1229
|
+
};
|
|
1230
|
+
|
|
1224
1231
|
export declare type AerogelGlobalEvents = Partial<{
|
|
1225
1232
|
[Event in EventWithoutPayload]: () => unknown;
|
|
1226
1233
|
}> & Partial<{
|
|
@@ -2618,23 +2625,22 @@ export { }
|
|
|
2618
2625
|
|
|
2619
2626
|
|
|
2620
2627
|
declare module '@aerogel/core' {
|
|
2621
|
-
interface
|
|
2622
|
-
|
|
2628
|
+
interface EventsPayload {
|
|
2629
|
+
'application-ready': void;
|
|
2630
|
+
'application-mounted': void;
|
|
2623
2631
|
}
|
|
2624
2632
|
}
|
|
2625
2633
|
|
|
2626
2634
|
|
|
2627
|
-
declare module '
|
|
2628
|
-
interface
|
|
2629
|
-
|
|
2635
|
+
declare module '@aerogel/core' {
|
|
2636
|
+
interface AerogelOptions {
|
|
2637
|
+
directives?: Record<string, Directive>;
|
|
2630
2638
|
}
|
|
2631
2639
|
}
|
|
2632
2640
|
|
|
2633
2641
|
|
|
2634
|
-
declare module '
|
|
2635
|
-
interface
|
|
2636
|
-
'application-ready': void;
|
|
2637
|
-
'application-mounted': void;
|
|
2642
|
+
declare module 'vue' {
|
|
2643
|
+
interface ComponentCustomDirectives extends AerogelDirectives {
|
|
2638
2644
|
}
|
|
2639
2645
|
}
|
|
2640
2646
|
|