ochre-sdk 0.22.9 → 0.22.10

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.
Files changed (2) hide show
  1. package/dist/index.mjs +2 -2
  2. package/package.json +3 -3
package/dist/index.mjs CHANGED
@@ -3916,7 +3916,7 @@ function parseWebElementProperties(componentProperty, elementResource) {
3916
3916
  let paginationVariant = getPropertyValueContentByLabel(componentProperty.properties, "pagination-variant");
3917
3917
  paginationVariant ??= "default";
3918
3918
  let loadingVariant = getPropertyValueContentByLabel(componentProperty.properties, "loading-variant");
3919
- loadingVariant ??= "spinner";
3919
+ loadingVariant ??= "skeleton";
3920
3920
  let imageQuality = getPropertyValueContentByLabel(componentProperty.properties, "image-quality");
3921
3921
  imageQuality ??= "low";
3922
3922
  let isUsingQueryParams = getPropertyValueContentByLabel(componentProperty.properties, "is-using-query-params");
@@ -4230,7 +4230,7 @@ function parseWebElementProperties(componentProperty, elementResource) {
4230
4230
  let paginationVariant = getPropertyValueContentByLabel(componentProperty.properties, "pagination-variant");
4231
4231
  paginationVariant ??= "default";
4232
4232
  let loadingVariant = getPropertyValueContentByLabel(componentProperty.properties, "loading-variant");
4233
- loadingVariant ??= "spinner";
4233
+ loadingVariant ??= "skeleton";
4234
4234
  let layout = getPropertyValueContentByLabel(componentProperty.properties, "layout");
4235
4235
  layout ??= "image-start";
4236
4236
  properties = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ochre-sdk",
3
- "version": "0.22.9",
3
+ "version": "0.22.10",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Node.js library for working with OCHRE (Online Cultural and Historical Research Environment) data",
@@ -53,8 +53,8 @@
53
53
  "@types/node": "^24.12.2",
54
54
  "bumpp": "^11.0.1",
55
55
  "eslint": "^10.2.0",
56
- "prettier": "^3.8.2",
57
- "tsdown": "^0.21.8",
56
+ "prettier": "^3.8.3",
57
+ "tsdown": "^0.21.9",
58
58
  "typescript": "^6.0.2",
59
59
  "vitest": "^4.1.4"
60
60
  },