@dative-gpi/foundation-shared-components 0.0.66 → 0.0.68

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.
@@ -107,10 +107,10 @@ export default defineComponent({
107
107
  });
108
108
 
109
109
  const onUpload = async (payload: File) => {
110
- const content = await readFile(payload);
110
+ const content = (await readFile(payload)) as string;
111
111
  fileSelected.value.fileName = payload.name;
112
112
  fileSelected.value.fileContent = content;
113
- emit("update:modelValue", content);
113
+ emit("update:modelValue", content.substring(content.indexOf(',') + 1));
114
114
  };
115
115
 
116
116
  const onRemove = () => {
package/models/grids.ts CHANGED
@@ -5,8 +5,8 @@ export interface FSGridMosaic {
5
5
  }
6
6
 
7
7
  export interface FSGridItem {
8
- hideDefault: boolean;
9
8
  label: string;
10
9
  code: string;
11
10
  value?: string;
11
+ hideDefault?: boolean;
12
12
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dative-gpi/foundation-shared-components",
3
3
  "sideEffects": false,
4
- "version": "0.0.66",
4
+ "version": "0.0.68",
5
5
  "description": "",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -10,8 +10,8 @@
10
10
  "author": "",
11
11
  "license": "ISC",
12
12
  "dependencies": {
13
- "@dative-gpi/foundation-shared-domain": "0.0.66",
14
- "@dative-gpi/foundation-shared-services": "0.0.66",
13
+ "@dative-gpi/foundation-shared-domain": "0.0.68",
14
+ "@dative-gpi/foundation-shared-services": "0.0.68",
15
15
  "@fontsource/montserrat": "^5.0.16",
16
16
  "@lexical/clipboard": "^0.12.5",
17
17
  "@lexical/history": "^0.12.5",
@@ -32,5 +32,5 @@
32
32
  "sass": "^1.69.5",
33
33
  "sass-loader": "^13.3.2"
34
34
  },
35
- "gitHead": "168f423ff8ddc691454860bf16396885e0e1c4f9"
35
+ "gitHead": "aafa51940e86c1de00f4bf3e87e0e69a7223a6da"
36
36
  }