@aerogel/core 0.1.1-next.d86959f8ee7dcf2194447eb424c1095912a5e5f8 → 0.1.1
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 +14 -20
- package/dist/aerogel-core.js +0 -1
- 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,13 +1221,6 @@ 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
|
-
|
|
1231
1224
|
export declare type AerogelGlobalEvents = Partial<{
|
|
1232
1225
|
[Event in EventWithoutPayload]: () => unknown;
|
|
1233
1226
|
}> & Partial<{
|
|
@@ -2640,7 +2633,8 @@ declare module '@aerogel/core' {
|
|
|
2640
2633
|
|
|
2641
2634
|
|
|
2642
2635
|
declare module 'vue' {
|
|
2643
|
-
interface ComponentCustomDirectives
|
|
2636
|
+
interface ComponentCustomDirectives {
|
|
2637
|
+
measure: Directive<string, string>;
|
|
2644
2638
|
}
|
|
2645
2639
|
}
|
|
2646
2640
|
|
|
@@ -2685,6 +2679,11 @@ declare module 'vue' {
|
|
|
2685
2679
|
}
|
|
2686
2680
|
|
|
2687
2681
|
|
|
2682
|
+
declare global {
|
|
2683
|
+
var testingRuntime: AerogelTestingRuntime | undefined;
|
|
2684
|
+
}
|
|
2685
|
+
|
|
2686
|
+
|
|
2688
2687
|
declare module '@aerogel/core' {
|
|
2689
2688
|
interface AerogelOptions {
|
|
2690
2689
|
components?: Partial<Partial<UIComponents>>;
|
|
@@ -2698,11 +2697,6 @@ declare module '@aerogel/core' {
|
|
|
2698
2697
|
}
|
|
2699
2698
|
|
|
2700
2699
|
|
|
2701
|
-
declare global {
|
|
2702
|
-
var testingRuntime: AerogelTestingRuntime | undefined;
|
|
2703
|
-
}
|
|
2704
|
-
|
|
2705
|
-
|
|
2706
2700
|
declare global {
|
|
2707
2701
|
var __aerogelEvents__: AerogelGlobalEvents | undefined;
|
|
2708
2702
|
}
|
|
@@ -2718,6 +2712,13 @@ declare module '@aerogel/core' {
|
|
|
2718
2712
|
}
|
|
2719
2713
|
|
|
2720
2714
|
|
|
2715
|
+
declare module '@aerogel/core' {
|
|
2716
|
+
interface EventsPayload {
|
|
2717
|
+
'purge-storage': void;
|
|
2718
|
+
}
|
|
2719
|
+
}
|
|
2720
|
+
|
|
2721
|
+
|
|
2721
2722
|
declare module '@aerogel/core' {
|
|
2722
2723
|
interface EventsPayload {
|
|
2723
2724
|
'close-modal': {
|
|
@@ -2734,10 +2735,3 @@ declare module '@aerogel/core' {
|
|
|
2734
2735
|
};
|
|
2735
2736
|
}
|
|
2736
2737
|
}
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
declare module '@aerogel/core' {
|
|
2740
|
-
interface EventsPayload {
|
|
2741
|
-
'purge-storage': void;
|
|
2742
|
-
}
|
|
2743
|
-
}
|