@aerogel/core 0.1.0 → 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 +24 -18
- package/dist/aerogel-core.js +736 -731
- package/dist/aerogel-core.js.map +1 -1
- package/package.json +1 -1
- package/src/directives/index.ts +10 -8
- package/src/directives/safe-html.ts +10 -0
package/dist/aerogel-core.d.ts
CHANGED
|
@@ -153,7 +153,7 @@ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...
|
|
|
153
153
|
as?: string;
|
|
154
154
|
}> & Readonly<{
|
|
155
155
|
"onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
|
|
156
|
-
}>, "id" | "value" | "name" | "description" | "errors" | "
|
|
156
|
+
}>, "id" | "value" | "name" | "description" | "errors" | "required" | "label" | "update"> & ShallowUnwrapRef< {
|
|
157
157
|
id: string;
|
|
158
158
|
name: ComputedRef<string | undefined>;
|
|
159
159
|
label: ComputedRef<string | undefined>;
|
|
@@ -649,7 +649,7 @@ declare function __VLS_template_18(): {
|
|
|
649
649
|
as?: string;
|
|
650
650
|
}> & Readonly<{
|
|
651
651
|
"onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
|
|
652
|
-
}>, "id" | "value" | "name" | "description" | "errors" | "
|
|
652
|
+
}>, "id" | "value" | "name" | "description" | "errors" | "required" | "label" | "update"> & ShallowUnwrapRef< {
|
|
653
653
|
id: string;
|
|
654
654
|
name: ComputedRef<string | undefined>;
|
|
655
655
|
label: ComputedRef<string | undefined>;
|
|
@@ -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<{
|
|
@@ -1920,7 +1927,7 @@ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...
|
|
|
1920
1927
|
as?: string;
|
|
1921
1928
|
}> & Readonly<{
|
|
1922
1929
|
"onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
|
|
1923
|
-
}>, "id" | "value" | "name" | "description" | "errors" | "
|
|
1930
|
+
}>, "id" | "value" | "name" | "description" | "errors" | "required" | "label" | "update"> & ShallowUnwrapRef< {
|
|
1924
1931
|
id: string;
|
|
1925
1932
|
name: ComputedRef<string | undefined>;
|
|
1926
1933
|
label: ComputedRef<string | undefined>;
|
|
@@ -2414,7 +2421,7 @@ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...
|
|
|
2414
2421
|
as?: string;
|
|
2415
2422
|
}> & Readonly<{
|
|
2416
2423
|
"onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
|
|
2417
|
-
}>, "id" | "value" | "name" | "description" | "errors" | "
|
|
2424
|
+
}>, "id" | "value" | "name" | "description" | "errors" | "required" | "label" | "update"> & ShallowUnwrapRef< {
|
|
2418
2425
|
id: string;
|
|
2419
2426
|
name: ComputedRef<string | undefined>;
|
|
2420
2427
|
label: ComputedRef<string | undefined>;
|
|
@@ -2633,8 +2640,7 @@ declare module '@aerogel/core' {
|
|
|
2633
2640
|
|
|
2634
2641
|
|
|
2635
2642
|
declare module 'vue' {
|
|
2636
|
-
interface ComponentCustomDirectives {
|
|
2637
|
-
measure: Directive<string, string>;
|
|
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
|
+
}
|