@cntrl-site/components 1.0.4 → 1.0.6-alpha.0

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.
@@ -34,16 +34,11 @@ export type LayoutSwitcher = {
34
34
  title: string;
35
35
  options: Record<string, LayoutItem[]>;
36
36
  };
37
- export type LayoutAccordion = {
38
- type: 'accordion';
39
- title: string;
40
- options: Record<string, LayoutItem[]>;
41
- };
42
37
  export type LayoutPaletteBookmark = {
43
38
  type: 'palette-bookmark';
44
39
  items: string[];
45
40
  };
46
- export type LayoutItem = string | LayoutRow | LayoutGroup | LayoutSwitcher | LayoutAccordion | LayoutPaletteBookmark;
41
+ export type LayoutItem = string | LayoutRow | LayoutGroup | LayoutSwitcher | LayoutPaletteBookmark;
47
42
  export type SchemaDisplayRule = {
48
43
  if: {
49
44
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cntrl-site/components",
3
- "version": "1.0.4",
3
+ "version": "1.0.6-alpha.0",
4
4
  "description": "Custom components for control editor and public websites.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",