@aerogel/core 0.1.0 → 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 +12 -6
- package/dist/aerogel-core.js +890 -888
- 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 +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
|
|