@hkdigital/lib-sveltekit 0.0.52 → 0.0.54

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.
@@ -18,6 +18,7 @@
18
18
  * bg?: string,
19
19
  * padding?: string,
20
20
  * margin?: string,
21
+ * height?: string,
21
22
  * classes?: string,
22
23
  * style?: string,
23
24
  * boxBase?: string,
@@ -35,6 +36,7 @@
35
36
  bg,
36
37
  padding,
37
38
  margin,
39
+ height = 'h-full',
38
40
  classes,
39
41
  style,
40
42
  boxBase,
@@ -58,7 +60,7 @@
58
60
  >
59
61
  <div
60
62
  data-hk-grid-layers
61
- class="grid grid-cols-1 grid-rows-1 {base} {bg} {classes} {margin}"
63
+ class="grid grid-cols-1 grid-rows-1 {base} {bg} {height} {classes} {margin} {padding}"
62
64
  {style}
63
65
  >
64
66
  {@render children()}
@@ -4,6 +4,7 @@ declare const HkGridLayers: import("svelte").Component<{
4
4
  bg?: string;
5
5
  padding?: string;
6
6
  margin?: string;
7
+ height?: string;
7
8
  classes?: string;
8
9
  style?: string;
9
10
  boxBase?: string;
@@ -1024,7 +1024,7 @@ export function setReadOnlyProperty(obj, propertyName, value) {
1024
1024
 
1025
1025
  expect.string(propertyName);
1026
1026
 
1027
- expect.defined(value);
1027
+ // expect.defined(value);
1028
1028
 
1029
1029
  Object.defineProperty(obj, propertyName, {
1030
1030
  value,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hkdigital/lib-sveltekit",
3
- "version": "0.0.52",
3
+ "version": "0.0.54",
4
4
  "author": "Jens Kleinhout, HKdigital (https://hkdigital.nl)",
5
5
  "license": "ISC",
6
6
  "repository": {
@@ -33,7 +33,9 @@
33
33
  "files": [
34
34
  "dist",
35
35
  "!dist/**/*.test.*",
36
- "!dist/**/*.spec.*"
36
+ "!dist/**/*.spec.*",
37
+ "!dist/**/testdata.*",
38
+ "!dist/**/*.testdata.*"
37
39
  ],
38
40
  "sideEffects": [
39
41
  "**/*.css"