survey-vue3-ui 1.9.135 → 1.9.137
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/package.json +1 -1
- package/survey-vue3-ui.es.js +900 -889
- package/survey-vue3-ui.umd.js +1 -1
- package/types/App.vue.d.ts +1 -0
- package/types/base.d.ts +2 -0
- package/types/components/popup/PopupContainer.vue.d.ts +1 -1
package/types/App.vue.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import "./index.css";
|
|
1
2
|
declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
2
3
|
survey: any;
|
|
3
4
|
}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
package/types/base.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { Base, Question, LocalizableString } from "survey-core";
|
|
2
2
|
import { type Ref } from "vue";
|
|
3
|
+
export declare function makeReactive(surveyElement: Base): void;
|
|
4
|
+
export declare function unMakeReactive(surveyElement?: Base): void;
|
|
3
5
|
export declare function useBase<T extends Base>(getModel: () => T, onModelChanged?: (newValue: T, oldValue?: T) => void, clean?: (model: T) => void): void;
|
|
4
6
|
export declare function useQuestion<T extends Question>(props: {
|
|
5
7
|
question: T;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { PopupBaseViewModel } from "survey-core";
|
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
3
|
model: PopupBaseViewModel;
|
|
4
4
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|