unika-components 1.2.5 → 1.2.6

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.
@@ -40,6 +40,7 @@ declare const _default: import("vue").DefineComponent<{
40
40
  height: string;
41
41
  transform: string;
42
42
  opacity: number | undefined;
43
+ overflow: string;
43
44
  }>;
44
45
  textContainerStyle: import("vue").ComputedRef<{
45
46
  transform: string;
@@ -47,6 +48,10 @@ declare const _default: import("vue").DefineComponent<{
47
48
  borderRadius: string;
48
49
  borderStyle: string | undefined;
49
50
  borderWidth: string;
51
+ display: string | undefined;
52
+ flexDirection: string | undefined;
53
+ alignItems: string | undefined;
54
+ justifyContent: string | undefined;
50
55
  }>;
51
56
  textContentStyle: import("vue").ComputedRef<{
52
57
  opacity: number | undefined;
@@ -57,8 +62,13 @@ declare const _default: import("vue").DefineComponent<{
57
62
  flipStyle: import("vue").ComputedRef<{
58
63
  transform: string;
59
64
  opacity: number | undefined;
65
+ display: string;
60
66
  flexDirection: string;
61
- alignItems: boolean;
67
+ alignItems: string;
68
+ justifyContent: string;
69
+ width: string;
70
+ height: string;
71
+ minHeight: string | undefined;
62
72
  }>;
63
73
  comStyle: import("vue").ComputedRef<{
64
74
  borderColor: string | undefined;
@@ -67,6 +77,7 @@ declare const _default: import("vue").DefineComponent<{
67
77
  borderRadius: string;
68
78
  backgroundColor: string | undefined;
69
79
  margin: string;
80
+ flexShrink: number;
70
81
  }>;
71
82
  numStyle: import("vue").ComputedRef<{
72
83
  color: string | undefined;
@@ -9,6 +9,10 @@ declare const _default: import("vue").DefineComponent<{
9
9
  type: () => ElementData;
10
10
  required: true;
11
11
  };
12
+ isEditing: {
13
+ type: BooleanConstructor;
14
+ default: boolean;
15
+ };
12
16
  }, {
13
17
  inputValue: import("vue").Ref<string>;
14
18
  hasError: import("vue").Ref<boolean>;
@@ -39,6 +43,8 @@ declare const _default: import("vue").DefineComponent<{
39
43
  '--placeholder-color': string;
40
44
  }>;
41
45
  handleBlur: () => void;
46
+ onInputPointerDown: (e: Event) => void;
47
+ isEditing: import("vue").ComputedRef<boolean>;
42
48
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
43
49
  global: {
44
50
  type: () => GlobalData;
@@ -48,5 +54,11 @@ declare const _default: import("vue").DefineComponent<{
48
54
  type: () => ElementData;
49
55
  required: true;
50
56
  };
51
- }>>, {}, {}>;
57
+ isEditing: {
58
+ type: BooleanConstructor;
59
+ default: boolean;
60
+ };
61
+ }>>, {
62
+ isEditing: boolean;
63
+ }, {}>;
52
64
  export default _default;
@@ -87,9 +87,6 @@ declare const _default: import("vue").DefineComponent<{
87
87
  color: string | undefined;
88
88
  opacity: number | undefined;
89
89
  borderRadius: string;
90
- borderWidth: string;
91
- borderStyle: string | undefined;
92
- borderColor: string | undefined;
93
90
  boxShadow: string;
94
91
  }>;
95
92
  bgImageStyle: import("vue").ComputedRef<{
@@ -31,6 +31,18 @@ import UniInvite from './components/UniInvite';
31
31
  declare const install: (app: App) => void;
32
32
  export { applyTextAnimation, applyTextAnimationsForPage, restoreTextAnimation } from './utils/applyTextAnimation';
33
33
  export { default as inviteDefaultProps } from './constants/inviteProps';
34
+ export { default as musicDefaultProps } from './constants/musicProps';
35
+ export { default as calendarDefaultProps } from './constants/calendarProps';
36
+ export { default as mapDefaultProps } from './constants/mapProps';
37
+ export { default as countdownDefaultProps } from './constants/countdownProps';
38
+ export { default as effectDefaultProps } from './constants/effectProps';
39
+ export { default as shapeDefaultProps } from './constants/shapeProps';
40
+ export { default as lottieDefaultProps } from './constants/lottieProps';
41
+ export { default as videoDefaultProps } from './constants/videoProps';
42
+ export { default as callDefaultProps } from './constants/callProps';
43
+ export { default as buttonDefaultProps } from './constants/buttonProps';
44
+ export { default as formInputDefaultProps } from './constants/formInputProps';
45
+ export { default as formSubmitDefaultProps } from './constants/formsubmitProps';
34
46
  export { INVITE_COVER_TEMPLATES, getInviteTemplateById } from './constants/inviteTemplates';
35
47
  export { INVITE_QUICK_PHRASES } from './constants/invitePhrases';
36
48
  export { useInviteManager } from './composables/inviteManager';
@@ -1,4 +1,5 @@
1
1
  import { GlobalData, InviteConfig, InviteItem, InviteRenderData } from '../defaultProps';
2
+ export declare function isPlaceholderInviteStateId(stateId: string | undefined | null): boolean;
2
3
  export declare function isValidInviteItem(item: InviteItem | null | undefined): boolean;
3
4
  /** 根据 URL state 从 global.invite 解析单条送呈渲染数据 */
4
5
  export declare function resolveInviteRenderData(invite: InviteConfig | undefined | null, stateId: string | undefined | null): InviteRenderData | null;