pangea-lib 2.11.449 → 2.11.451

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.
@@ -2,32 +2,37 @@ import { Icon, TextProp, ButtonType } from '../../types';
2
2
  import { AppColorNameProp } from '../../colors';
3
3
 
4
4
  declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
5
+ type?: "button" | "submit" | "reset";
5
6
  icon?: import('@fortawesome/fontawesome-common-types').IconName | Icon;
6
7
  text?: TextProp;
7
- type?: ButtonType;
8
+ buttonType?: ButtonType;
8
9
  size?: "s" | "l" | "m" | "xs" | "xl";
9
10
  color?: AppColorNameProp;
10
11
  disabled?: boolean;
11
12
  isLoading?: boolean;
12
13
  numberToDisplay?: number;
13
14
  }>, {
15
+ type: string;
14
16
  size: string;
15
17
  color: string;
16
18
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
19
+ type?: "button" | "submit" | "reset";
17
20
  icon?: import('@fortawesome/fontawesome-common-types').IconName | Icon;
18
21
  text?: TextProp;
19
- type?: ButtonType;
22
+ buttonType?: ButtonType;
20
23
  size?: "s" | "l" | "m" | "xs" | "xl";
21
24
  color?: AppColorNameProp;
22
25
  disabled?: boolean;
23
26
  isLoading?: boolean;
24
27
  numberToDisplay?: number;
25
28
  }>, {
29
+ type: string;
26
30
  size: string;
27
31
  color: string;
28
32
  }>>>, {
29
33
  size: "s" | "l" | "m" | "xs" | "xl";
30
34
  color: AppColorNameProp;
35
+ type: "button" | "submit" | "reset";
31
36
  }, {}>, {
32
37
  default?(_: {}): any;
33
38
  }>;
@@ -30,12 +30,12 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
30
30
  grow: {
31
31
  type: import('vue').PropType<number>;
32
32
  };
33
- placeholder: {
34
- type: import('vue').PropType<TextProp>;
35
- };
36
33
  integer: {
37
34
  type: import('vue').PropType<boolean>;
38
35
  };
36
+ placeholder: {
37
+ type: import('vue').PropType<TextProp>;
38
+ };
39
39
  autofocus: {
40
40
  type: import('vue').PropType<boolean>;
41
41
  };
@@ -68,12 +68,12 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
68
68
  grow: {
69
69
  type: import('vue').PropType<number>;
70
70
  };
71
- placeholder: {
72
- type: import('vue').PropType<TextProp>;
73
- };
74
71
  integer: {
75
72
  type: import('vue').PropType<boolean>;
76
73
  };
74
+ placeholder: {
75
+ type: import('vue').PropType<TextProp>;
76
+ };
77
77
  autofocus: {
78
78
  type: import('vue').PropType<boolean>;
79
79
  };
@@ -5,7 +5,7 @@ export declare const useOptionsStore: import('pinia').StoreDefinition<"pga-optio
5
5
  preventRemove: boolean;
6
6
  };
7
7
  button: {
8
- type: import('../types').ButtonType;
8
+ buttonType: import('../types').ButtonType;
9
9
  };
10
10
  form: {
11
11
  input: {
@@ -32,7 +32,7 @@ export declare const useOptionsStore: import('pinia').StoreDefinition<"pga-optio
32
32
  preventRemove: boolean;
33
33
  }>;
34
34
  buttonOptions: import('vue').ComputedRef<{
35
- type: import('../types').ButtonType;
35
+ buttonType: import('../types').ButtonType;
36
36
  }>;
37
37
  formOptions: import('vue').ComputedRef<{
38
38
  input: {
@@ -60,7 +60,7 @@ export declare const useOptionsStore: import('pinia').StoreDefinition<"pga-optio
60
60
  preventRemove: boolean;
61
61
  };
62
62
  button: {
63
- type: import('../types').ButtonType;
63
+ buttonType: import('../types').ButtonType;
64
64
  };
65
65
  form: {
66
66
  input: {
@@ -87,7 +87,7 @@ export declare const useOptionsStore: import('pinia').StoreDefinition<"pga-optio
87
87
  preventRemove: boolean;
88
88
  }>;
89
89
  buttonOptions: import('vue').ComputedRef<{
90
- type: import('../types').ButtonType;
90
+ buttonType: import('../types').ButtonType;
91
91
  }>;
92
92
  formOptions: import('vue').ComputedRef<{
93
93
  input: {
@@ -115,7 +115,7 @@ export declare const useOptionsStore: import('pinia').StoreDefinition<"pga-optio
115
115
  preventRemove: boolean;
116
116
  };
117
117
  button: {
118
- type: import('../types').ButtonType;
118
+ buttonType: import('../types').ButtonType;
119
119
  };
120
120
  form: {
121
121
  input: {
@@ -142,7 +142,7 @@ export declare const useOptionsStore: import('pinia').StoreDefinition<"pga-optio
142
142
  preventRemove: boolean;
143
143
  }>;
144
144
  buttonOptions: import('vue').ComputedRef<{
145
- type: import('../types').ButtonType;
145
+ buttonType: import('../types').ButtonType;
146
146
  }>;
147
147
  formOptions: import('vue').ComputedRef<{
148
148
  input: {
@@ -9,7 +9,7 @@ export type OptionsStore = {
9
9
  preventRemove: boolean;
10
10
  };
11
11
  button: {
12
- type: ButtonType;
12
+ buttonType: ButtonType;
13
13
  };
14
14
  form: {
15
15
  input: {
@@ -1,7 +1,10 @@
1
+ import { Ref } from 'vue';
2
+
1
3
  export type InputErrorId = any;
2
4
  export type InputError = {
3
- $uid: InputErrorId;
4
- $message: string;
5
+ $uid: string;
6
+ $message?: string | Ref<string>;
7
+ [key: string]: any;
5
8
  };
6
9
  export type ExcelConfig = {
7
10
  columns: Record<string, number>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pangea-lib",
3
3
  "description": "",
4
- "version": "2.11.449",
4
+ "version": "2.11.451",
5
5
  "author": "Gianfranco Raselli",
6
6
  "license": "ISC",
7
7
  "homepage": "https://github.com/GianfrancoRaselli/pangea#readme",