@woodylab/payload 0.0.91 → 0.0.93

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.
@@ -1,2 +1,3 @@
1
1
  import type { Block } from 'payload';
2
- export declare const blockView: Block;
2
+ declare const blockView: Block;
3
+ export default blockView;
@@ -1,5 +1,4 @@
1
- // @ts-ignore
2
- export const blockView = {
1
+ const blockView = {
3
2
  slug: 'view', // #TODO verificare referenze lato client per rendering
4
3
  labels: {
5
4
  singular: 'View',
@@ -232,3 +231,4 @@ export const blockView = {
232
231
  },
233
232
  ],
234
233
  };
234
+ export default blockView;
@@ -10,3 +10,4 @@ export { default as blockImage } from './blocks/blockImage';
10
10
  export { default as blockParallax } from './blocks/blockParallax';
11
11
  export { default as blockTabs } from './blocks/blockTabs';
12
12
  export { default as blockHtmlElement } from './blocks/blockHtmlElement';
13
+ export * from './blocks/blockView';
@@ -13,3 +13,4 @@ export { default as blockImage } from './blocks/blockImage';
13
13
  export { default as blockParallax } from './blocks/blockParallax';
14
14
  export { default as blockTabs } from './blocks/blockTabs';
15
15
  export { default as blockHtmlElement } from './blocks/blockHtmlElement';
16
+ export * from './blocks/blockView';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@woodylab/payload",
3
- "version": "0.0.91",
3
+ "version": "0.0.93",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "module": "./dist/index.esm.js",