rimelight-components 2.0.90 → 2.0.91

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.
package/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rimelight-components",
3
- "version": "2.0.90",
3
+ "version": "2.0.91",
4
4
  "docs": "https://rimelight.com/tools/rimelight-components",
5
5
  "configKey": "rimelightComponents",
6
6
  "compatibility": {
package/dist/module.mjs CHANGED
@@ -4,7 +4,7 @@ import { readdirSync } from 'node:fs';
4
4
  import { basename } from 'node:path';
5
5
 
6
6
  const name = "rimelight-components";
7
- const version = "2.0.90";
7
+ const version = "2.0.91";
8
8
  const homepage = "https://rimelight.com/tools/rimelight-components";
9
9
 
10
10
  const defaultOptions = {
@@ -1,6 +1,6 @@
1
1
  <script setup>
2
2
  import {} from "vue";
3
- import { getBlockEditorComponent } from "../../utils";
3
+ import { getBlockEditorComponent } from "../../internal/blockMapper";
4
4
  const { blocks } = defineProps({
5
5
  blocks: { type: Array, required: true }
6
6
  });
@@ -1,6 +1,6 @@
1
1
  <script setup>
2
2
  import {} from "vue";
3
- import { getBlockRendererComponent } from "../../utils";
3
+ import { getBlockRendererComponent } from "../../internal/blockMapper";
4
4
  const { blocks } = defineProps({
5
5
  blocks: { type: Array, required: true }
6
6
  });
@@ -1,5 +1,4 @@
1
1
  export * from "./richTextHelpers";
2
- export * from "./blockMapper";
3
2
  export * from "./page";
4
3
  export * from "./database";
5
4
  /**
@@ -1,5 +1,4 @@
1
1
  export * from "./richTextHelpers.js";
2
- export * from "./blockMapper.js";
3
2
  export * from "./page.js";
4
3
  export * from "./database.js";
5
4
  export function slugify(text) {
@@ -68,7 +68,7 @@ export function syncPageWithDefinition(page, definition) {
68
68
  page.blocks = filteredCurrent;
69
69
  }
70
70
  if (hasChanged) {
71
- page.updatedAt = (/* @__PURE__ */ new Date()).toISOString();
71
+ page.updated_at = /* @__PURE__ */ new Date();
72
72
  }
73
73
  return page;
74
74
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rimelight-components",
3
3
  "description": "A component library by Rimelight Entertainment.",
4
- "version": "2.0.90",
4
+ "version": "2.0.91",
5
5
  "type": "module",
6
6
  "repository": {
7
7
  "type": "git",
File without changes