@aerogel/core 0.1.1-next.785e2c42ed379bc0f268c637d1023a51f5832d80 → 0.1.1-next.d86959f8ee7dcf2194447eb424c1095912a5e5f8
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 +27 -21
- package/dist/aerogel-core.js +1 -0
- package/dist/aerogel-core.js.map +1 -1
- package/package.json +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
|
|
|
@@ -2679,11 +2685,6 @@ declare module 'vue' {
|
|
|
2679
2685
|
}
|
|
2680
2686
|
|
|
2681
2687
|
|
|
2682
|
-
declare global {
|
|
2683
|
-
var testingRuntime: AerogelTestingRuntime | undefined;
|
|
2684
|
-
}
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
2688
|
declare module '@aerogel/core' {
|
|
2688
2689
|
interface AerogelOptions {
|
|
2689
2690
|
components?: Partial<Partial<UIComponents>>;
|
|
@@ -2697,6 +2698,11 @@ declare module '@aerogel/core' {
|
|
|
2697
2698
|
}
|
|
2698
2699
|
|
|
2699
2700
|
|
|
2701
|
+
declare global {
|
|
2702
|
+
var testingRuntime: AerogelTestingRuntime | undefined;
|
|
2703
|
+
}
|
|
2704
|
+
|
|
2705
|
+
|
|
2700
2706
|
declare global {
|
|
2701
2707
|
var __aerogelEvents__: AerogelGlobalEvents | undefined;
|
|
2702
2708
|
}
|
|
@@ -2712,13 +2718,6 @@ declare module '@aerogel/core' {
|
|
|
2712
2718
|
}
|
|
2713
2719
|
|
|
2714
2720
|
|
|
2715
|
-
declare module '@aerogel/core' {
|
|
2716
|
-
interface EventsPayload {
|
|
2717
|
-
'purge-storage': void;
|
|
2718
|
-
}
|
|
2719
|
-
}
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
2721
|
declare module '@aerogel/core' {
|
|
2723
2722
|
interface EventsPayload {
|
|
2724
2723
|
'close-modal': {
|
|
@@ -2735,3 +2734,10 @@ declare module '@aerogel/core' {
|
|
|
2735
2734
|
};
|
|
2736
2735
|
}
|
|
2737
2736
|
}
|
|
2737
|
+
|
|
2738
|
+
|
|
2739
|
+
declare module '@aerogel/core' {
|
|
2740
|
+
interface EventsPayload {
|
|
2741
|
+
'purge-storage': void;
|
|
2742
|
+
}
|
|
2743
|
+
}
|