unika-components 1.1.194 → 1.2.0
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/src/components/UniWatermark/UniWatermark.vue.d.ts +2 -0
- package/dist/src/components/UniWatermark/index.d.ts +2 -0
- package/dist/src/components/WorkRender/WorkRender.vue.d.ts +1 -0
- package/dist/src/components/WorkRenderH5/WorkRenderH5.vue.d.ts +1 -0
- package/dist/src/components/WorkRenderLong/WorkRenderLong.vue.d.ts +1 -0
- package/dist/src/index.d.ts +2 -1
- package/dist/unika-components.css +5840 -5822
- package/dist/unika-components.esm.js +344 -293
- package/dist/unika-components.umd.js +368 -316
- package/package.json +1 -2
|
@@ -19,6 +19,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
19
19
|
}, {
|
|
20
20
|
personalData: import("vue").ComputedRef<PersonalData>;
|
|
21
21
|
global: import("vue").ComputedRef<GlobalData>;
|
|
22
|
+
shouldShowWatermark: import("vue").ComputedRef<boolean>;
|
|
22
23
|
pages: import("vue").ComputedRef<[] | PageData[]>;
|
|
23
24
|
currentPageId: import("vue").Ref<string>;
|
|
24
25
|
currentTransition: import("vue").ComputedRef<string>;
|
|
@@ -18,6 +18,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18
18
|
}, {
|
|
19
19
|
personalData: import("vue").ComputedRef<PersonalData>;
|
|
20
20
|
global: import("vue").ComputedRef<GlobalData>;
|
|
21
|
+
shouldShowWatermark: import("vue").ComputedRef<boolean>;
|
|
21
22
|
pages: import("vue").ComputedRef<[] | PageData[]>;
|
|
22
23
|
currentPageId: import("vue").Ref<string>;
|
|
23
24
|
container: import("vue").Ref<HTMLElement | null>;
|
|
@@ -25,6 +25,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
25
25
|
workData: import("vue").ComputedRef<WorkData>;
|
|
26
26
|
personalData: import("vue").ComputedRef<PersonalData>;
|
|
27
27
|
global: import("vue").ComputedRef<GlobalData>;
|
|
28
|
+
shouldShowWatermark: import("vue").ComputedRef<boolean>;
|
|
28
29
|
pages: import("vue").ComputedRef<[] | PageData[]>;
|
|
29
30
|
page: import("vue").ComputedRef<PageData>;
|
|
30
31
|
audioLoading: import("vue").Ref<boolean>;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -26,9 +26,10 @@ import UniMenuVideo from './components/UniMenuVideo';
|
|
|
26
26
|
import UniMenuTel from './components/UniMenuTel';
|
|
27
27
|
import UniMenuReceipt from './components/UniMenuReceipt';
|
|
28
28
|
import UniMenuMap from './components/UniMenuMap';
|
|
29
|
+
import UniWatermark from './components/UniWatermark';
|
|
29
30
|
declare const install: (app: App) => void;
|
|
30
31
|
export { applyTextAnimation, applyTextAnimationsForPage, restoreTextAnimation } from './utils/applyTextAnimation';
|
|
31
|
-
export { UniText, UniImage, UniShape, UniMusic, UniVideo, UniCalendar, UniCountdown, UniMap, UniCall, UniEffect, UniLottie, UniButton, UniBarrage, WorkRenderH5, WorkRenderLong, WorkRender, UniFormInput, UniFormSubmit, UniFormSelect, UniFormSingle, UniFormMultiple, UniFormContainer, UniMenu, UniMenuVideo, UniMenuTel, UniMenuReceipt, UniMenuMap, install };
|
|
32
|
+
export { UniText, UniImage, UniShape, UniMusic, UniVideo, UniCalendar, UniCountdown, UniMap, UniCall, UniEffect, UniLottie, UniButton, UniBarrage, WorkRenderH5, WorkRenderLong, WorkRender, UniFormInput, UniFormSubmit, UniFormSelect, UniFormSingle, UniFormMultiple, UniFormContainer, UniMenu, UniMenuVideo, UniMenuTel, UniMenuReceipt, UniMenuMap, UniWatermark, install };
|
|
32
33
|
declare const _default: {
|
|
33
34
|
install: (app: App<any>) => void;
|
|
34
35
|
};
|