sit-onyx 1.4.0-dev-20251118142506 → 1.4.1-dev-20251119130625
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.
|
@@ -6,8 +6,7 @@ import { OnyxCodeTabsProps } from './types.js';
|
|
|
6
6
|
declare const _default: <TValue extends PropertyKey = PropertyKey>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
7
7
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
8
8
|
readonly "onUpdate:modelValue"?: ((value: TValue) => any) | undefined;
|
|
9
|
-
|
|
10
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:modelValue" | "onCopyCode"> & OnyxCodeTabsProps<TValue> & Partial<{}>> & import('vue').PublicProps;
|
|
9
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:modelValue"> & OnyxCodeTabsProps<TValue> & Partial<{}>> & import('vue').PublicProps;
|
|
11
10
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
12
11
|
attrs: any;
|
|
13
12
|
slots: Readonly<{
|
|
@@ -21,7 +20,7 @@ declare const _default: <TValue extends PropertyKey = PropertyKey>(__VLS_props:
|
|
|
21
20
|
*/
|
|
22
21
|
default(): unknown;
|
|
23
22
|
};
|
|
24
|
-
emit: (
|
|
23
|
+
emit: (evt: "update:modelValue", value: TValue) => void;
|
|
25
24
|
}>) => import('vue').VNode & {
|
|
26
25
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
27
26
|
};
|
|
@@ -6639,7 +6639,7 @@ const _sfc_main$_ = /* @__PURE__ */ defineComponent({
|
|
|
6639
6639
|
modelValue: { type: null, required: true },
|
|
6640
6640
|
label: { type: String, required: false }
|
|
6641
6641
|
},
|
|
6642
|
-
emits: ["update:modelValue"
|
|
6642
|
+
emits: ["update:modelValue"],
|
|
6643
6643
|
setup(__props, { expose: __expose, emit: __emit }) {
|
|
6644
6644
|
__expose();
|
|
6645
6645
|
const props = __props;
|