@dative-gpi/foundation-shared-components 1.0.100 → 1.0.101

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.
@@ -5,9 +5,10 @@
5
5
  >
6
6
  <FSImage
7
7
  :imageId="userImageId"
8
- :width="32"
9
- :height="32"
8
+ width="32px"
9
+ height="32px"
10
10
  rounded="circle"
11
+ :thumbnail="true"
11
12
  />
12
13
  <FSTextArea
13
14
  :rows="5"
@@ -1245,7 +1245,7 @@ export default defineComponent({
1245
1245
  value = header.fixedFilters.map((ff): FSDataTableFilter => ({
1246
1246
  hidden: currentFilters?.find((cf) => cf.value == (ff.value || null))?.hidden ?? false,
1247
1247
  text: ff.text?.toString() ?? "—",
1248
- value: ff.value || null,
1248
+ value: ff.value ?? null,
1249
1249
  filter: header.methodFilter ?? ((_, property, item) => {
1250
1250
  if (header.methodFilterRaw) {
1251
1251
  return header.methodFilterRaw(ff.value, item);
@@ -39,9 +39,10 @@
39
39
  <!-- TODO : add draggable option -->
40
40
  <FSImage
41
41
  v-if="item.imageId"
42
- :imageId="item.imageId"
43
42
  width="24px"
44
43
  height="24px"
44
+ :imageId="item.imageId"
45
+ :thumbnail="true"
45
46
  />
46
47
  <FSIcon
47
48
  size="24px"
@@ -5,7 +5,7 @@ let initialized = false;
5
5
  const windowHeight = ref(window.innerHeight);
6
6
  const windowWidth = ref(window.innerWidth);
7
7
 
8
- const windowOuterWidth = ref(window.outerWidth);
8
+ const windowOuterWidth = ref(!window.document.hasFocus() && window.outerWidth === 0 ? window.innerWidth : window.outerWidth);
9
9
 
10
10
  export const useBreakpoints = () => {
11
11
  const onSizeChange = (): void => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dative-gpi/foundation-shared-components",
3
3
  "sideEffects": false,
4
- "version": "1.0.100",
4
+ "version": "1.0.101",
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": "1.0.100",
14
- "@dative-gpi/foundation-shared-services": "1.0.100"
13
+ "@dative-gpi/foundation-shared-domain": "1.0.101",
14
+ "@dative-gpi/foundation-shared-services": "1.0.101"
15
15
  },
16
16
  "peerDependencies": {
17
17
  "@dative-gpi/bones-ui": "^1.0.0",
@@ -35,5 +35,5 @@
35
35
  "sass": "1.71.1",
36
36
  "sass-loader": "13.3.2"
37
37
  },
38
- "gitHead": "2d48aa6848a89de353308fd82d2de92eeb1c19e0"
38
+ "gitHead": "f8be2b01dc860776a5907fe403950543afa48631"
39
39
  }