yswk-editor 0.0.1 → 0.0.2

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.
@@ -0,0 +1,23 @@
1
+ interface AnimationData {
2
+ enterAnimation?: string;
3
+ exitAnimation?: string;
4
+ }
5
+ interface Props {
6
+ modelValue?: AnimationData;
7
+ }
8
+ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
9
+ "update:modelValue": (value: AnimationData) => any;
10
+ "update-value": (data: {
11
+ key: string;
12
+ value: string | undefined;
13
+ }) => any;
14
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
15
+ "onUpdate:modelValue"?: ((value: AnimationData) => any) | undefined;
16
+ "onUpdate-value"?: ((data: {
17
+ key: string;
18
+ value: string | undefined;
19
+ }) => any) | undefined;
20
+ }>, {
21
+ modelValue: AnimationData;
22
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
23
+ export default _default;
@@ -1,9 +1,12 @@
1
1
  interface PositionData {
2
2
  top?: number | null;
3
+ marginTop?: number | null;
3
4
  width?: number | null;
4
5
  height?: number | null;
5
6
  left?: number | null;
7
+ marginLeft?: number | null;
6
8
  centerHorizontal?: boolean;
9
+ bgColor?: string;
7
10
  paddingTop?: number | null;
8
11
  paddingRight?: number | null;
9
12
  paddingBottom?: number | null;
@@ -17,13 +20,13 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
17
20
  "update:modelValue": (value: PositionData) => any;
18
21
  "update-value": (data: {
19
22
  key: string;
20
- value: number | null | undefined | boolean;
23
+ value: number | null | undefined | boolean | string;
21
24
  }) => any;
22
25
  }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
23
26
  "onUpdate:modelValue"?: ((value: PositionData) => any) | undefined;
24
27
  "onUpdate-value"?: ((data: {
25
28
  key: string;
26
- value: number | null | undefined | boolean;
29
+ value: number | null | undefined | boolean | string;
27
30
  }) => any) | undefined;
28
31
  }>, {
29
32
  modelValue: PositionData;