@xwiki/cristal-hierarchy-nextcloud 0.24.0 → 0.25.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.
@@ -1 +1 @@
1
- {"version":3,"file":"index.es.js","sources":["../src/components/componentsInit.ts"],"sourcesContent":["/**\n * See the LICENSE file distributed with this work for additional\n * information regarding copyright ownership.\n *\n * This is free software; you can redistribute it and/or modify it\n * under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This software is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this software; if not, write to the Free\n * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA\n * 02110-1301 USA, or see the FSF site: http://www.fsf.org.\n */\n\nimport { name } from \"@xwiki/cristal-hierarchy-api\";\nimport { getPageHierarchyFromPath } from \"@xwiki/cristal-hierarchy-default\";\nimport { Container, inject, injectable } from \"inversify\";\nimport type { CristalApp, Logger } from \"@xwiki/cristal-api\";\nimport type {\n PageHierarchyItem,\n PageHierarchyResolver,\n} from \"@xwiki/cristal-hierarchy-api\";\nimport type {\n DocumentReference,\n SpaceReference,\n} from \"@xwiki/cristal-model-api\";\n\n/**\n * Implementation of PageHierarchyResolver for Nextcloud backend.\n *\n * @since 0.10\n * @beta\n **/\n@injectable()\nclass NextcloudPageHierarchyResolver implements PageHierarchyResolver {\n private cristalApp: CristalApp;\n public logger: Logger;\n\n constructor(\n @inject(\"Logger\") logger: Logger,\n @inject(\"CristalApp\") cristalApp: CristalApp,\n ) {\n this.logger = logger;\n this.logger.setModule(\"storage.components.NextcloudPageHierarchyResolver\");\n this.cristalApp = cristalApp;\n }\n\n async getPageHierarchy(\n page: DocumentReference | SpaceReference,\n includeHomePage: boolean = true,\n ): Promise<Array<PageHierarchyItem>> {\n let hierarchy: Array<PageHierarchyItem> = includeHomePage\n ? [\n {\n label: \"Home\",\n pageId: this.cristalApp.getWikiConfig().homePage,\n url: this.cristalApp.getRouter().resolve({\n name: \"view\",\n params: { page: this.cristalApp.getWikiConfig().homePage },\n }).href,\n },\n ]\n : [];\n if (page != null) {\n hierarchy = hierarchy.concat(\n await getPageHierarchyFromPath(page, this.cristalApp),\n );\n }\n return hierarchy;\n }\n}\n\n/**\n * @beta\n */\nexport class ComponentInit {\n constructor(container: Container) {\n container\n .bind<PageHierarchyResolver>(name)\n .to(NextcloudPageHierarchyResolver)\n .inSingletonScope()\n .whenNamed(\"Nextcloud\");\n }\n}\n"],"names":["NextcloudPageHierarchyResolver","logger","cristalApp","page","includeHomePage","hierarchy","getPageHierarchyFromPath","__decorateClass","injectable","__decorateParam","ComponentInit","container","name"],"mappings":";;;;;;;;AAwCA,IAAMA,IAAN,MAAsE;AAAA,EAC5D;AAAA,EACD;AAAA,EAEP,YACoBC,GACIC,GACtB;AACA,SAAK,SAASD,GACd,KAAK,OAAO,UAAU,mDAAmD,GACzE,KAAK,aAAaC;AAAA,EACpB;AAAA,EAEA,MAAM,iBACJC,GACAC,IAA2B,IACQ;AACnC,QAAIC,IAAsCD,IACtC;AAAA,MACE;AAAA,QACE,OAAO;AAAA,QACP,QAAQ,KAAK,WAAW,cAAA,EAAgB;AAAA,QACxC,KAAK,KAAK,WAAW,UAAA,EAAY,QAAQ;AAAA,UACvC,MAAM;AAAA,UACN,QAAQ,EAAE,MAAM,KAAK,WAAW,cAAA,EAAgB,SAAA;AAAA,QAAS,CAC1D,EAAE;AAAA,MAAA;AAAA,IACL,IAEF,CAAA;AACJ,WAAID,KAAQ,SACVE,IAAYA,EAAU;AAAA,MACpB,MAAMC,EAAyBH,GAAM,KAAK,UAAU;AAAA,IAAA,IAGjDE;AAAA,EACT;AACF;AApCML,IAANO,EAAA;AAAA,EADCC,EAAA;AAAA,EAMIC,OAAO,QAAQ,CAAA;AAAA,EACfA,OAAO,YAAY,CAAA;AAAA,GANlBT,CAAA;AAyCC,MAAMU,EAAc;AAAA,EACzB,YAAYC,GAAsB;AAChC,IAAAA,EACG,KAA4BC,CAAI,EAChC,GAAGZ,CAA8B,EACjC,iBAAA,EACA,UAAU,WAAW;AAAA,EAC1B;AACF;"}
1
+ {"version":3,"file":"index.es.js","sources":["../src/components/componentsInit.ts"],"sourcesContent":["/**\n * See the LICENSE file distributed with this work for additional\n * information regarding copyright ownership.\n *\n * This is free software; you can redistribute it and/or modify it\n * under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This software is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this software; if not, write to the Free\n * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA\n * 02110-1301 USA, or see the FSF site: http://www.fsf.org.\n */\n\nimport { name } from \"@xwiki/cristal-hierarchy-api\";\nimport { getPageHierarchyFromPath } from \"@xwiki/cristal-hierarchy-default\";\nimport { Container, inject, injectable } from \"inversify\";\nimport type {\n PageHierarchyItem,\n PageHierarchyResolver,\n} from \"@xwiki/cristal-hierarchy-api\";\nimport type { CristalApp, Logger } from \"@xwiki/platform-api\";\nimport type {\n DocumentReference,\n SpaceReference,\n} from \"@xwiki/platform-model-api\";\n\n/**\n * Implementation of PageHierarchyResolver for Nextcloud backend.\n *\n * @since 0.10\n * @beta\n **/\n@injectable()\nclass NextcloudPageHierarchyResolver implements PageHierarchyResolver {\n private cristalApp: CristalApp;\n public logger: Logger;\n\n constructor(\n @inject(\"Logger\") logger: Logger,\n @inject(\"CristalApp\") cristalApp: CristalApp,\n ) {\n this.logger = logger;\n this.logger.setModule(\"storage.components.NextcloudPageHierarchyResolver\");\n this.cristalApp = cristalApp;\n }\n\n async getPageHierarchy(\n page: DocumentReference | SpaceReference,\n includeHomePage: boolean = true,\n ): Promise<Array<PageHierarchyItem>> {\n let hierarchy: Array<PageHierarchyItem> = includeHomePage\n ? [\n {\n label: \"Home\",\n pageId: this.cristalApp.getWikiConfig().homePage,\n url: this.cristalApp.getRouter().resolve({\n name: \"view\",\n params: { page: this.cristalApp.getWikiConfig().homePage },\n }).href,\n },\n ]\n : [];\n if (page != null) {\n hierarchy = hierarchy.concat(\n await getPageHierarchyFromPath(page, this.cristalApp),\n );\n }\n return hierarchy;\n }\n}\n\n/**\n * @beta\n */\nexport class ComponentInit {\n constructor(container: Container) {\n container\n .bind<PageHierarchyResolver>(name)\n .to(NextcloudPageHierarchyResolver)\n .inSingletonScope()\n .whenNamed(\"Nextcloud\");\n }\n}\n"],"names":["NextcloudPageHierarchyResolver","logger","cristalApp","page","includeHomePage","hierarchy","getPageHierarchyFromPath","__decorateClass","injectable","__decorateParam","ComponentInit","container","name"],"mappings":";;;;;;;;AAwCA,IAAMA,IAAN,MAAsE;AAAA,EAC5D;AAAA,EACD;AAAA,EAEP,YACoBC,GACIC,GACtB;AACA,SAAK,SAASD,GACd,KAAK,OAAO,UAAU,mDAAmD,GACzE,KAAK,aAAaC;AAAA,EACpB;AAAA,EAEA,MAAM,iBACJC,GACAC,IAA2B,IACQ;AACnC,QAAIC,IAAsCD,IACtC;AAAA,MACE;AAAA,QACE,OAAO;AAAA,QACP,QAAQ,KAAK,WAAW,cAAA,EAAgB;AAAA,QACxC,KAAK,KAAK,WAAW,UAAA,EAAY,QAAQ;AAAA,UACvC,MAAM;AAAA,UACN,QAAQ,EAAE,MAAM,KAAK,WAAW,cAAA,EAAgB,SAAA;AAAA,QAAS,CAC1D,EAAE;AAAA,MAAA;AAAA,IACL,IAEF,CAAA;AACJ,WAAID,KAAQ,SACVE,IAAYA,EAAU;AAAA,MACpB,MAAMC,EAAyBH,GAAM,KAAK,UAAU;AAAA,IAAA,IAGjDE;AAAA,EACT;AACF;AApCML,IAANO,EAAA;AAAA,EADCC,EAAA;AAAA,EAMIC,OAAO,QAAQ,CAAA;AAAA,EACfA,OAAO,YAAY,CAAA;AAAA,GANlBT,CAAA;AAyCC,MAAMU,EAAc;AAAA,EACzB,YAAYC,GAAsB;AAChC,IAAAA,EACG,KAA4BC,CAAI,EAChC,GAAGZ,CAA8B,EACjC,iBAAA,EACA,UAAU,WAAW;AAAA,EAC1B;AACF;"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.umd.js","sources":["../src/components/componentsInit.ts"],"sourcesContent":["/**\n * See the LICENSE file distributed with this work for additional\n * information regarding copyright ownership.\n *\n * This is free software; you can redistribute it and/or modify it\n * under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This software is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this software; if not, write to the Free\n * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA\n * 02110-1301 USA, or see the FSF site: http://www.fsf.org.\n */\n\nimport { name } from \"@xwiki/cristal-hierarchy-api\";\nimport { getPageHierarchyFromPath } from \"@xwiki/cristal-hierarchy-default\";\nimport { Container, inject, injectable } from \"inversify\";\nimport type { CristalApp, Logger } from \"@xwiki/cristal-api\";\nimport type {\n PageHierarchyItem,\n PageHierarchyResolver,\n} from \"@xwiki/cristal-hierarchy-api\";\nimport type {\n DocumentReference,\n SpaceReference,\n} from \"@xwiki/cristal-model-api\";\n\n/**\n * Implementation of PageHierarchyResolver for Nextcloud backend.\n *\n * @since 0.10\n * @beta\n **/\n@injectable()\nclass NextcloudPageHierarchyResolver implements PageHierarchyResolver {\n private cristalApp: CristalApp;\n public logger: Logger;\n\n constructor(\n @inject(\"Logger\") logger: Logger,\n @inject(\"CristalApp\") cristalApp: CristalApp,\n ) {\n this.logger = logger;\n this.logger.setModule(\"storage.components.NextcloudPageHierarchyResolver\");\n this.cristalApp = cristalApp;\n }\n\n async getPageHierarchy(\n page: DocumentReference | SpaceReference,\n includeHomePage: boolean = true,\n ): Promise<Array<PageHierarchyItem>> {\n let hierarchy: Array<PageHierarchyItem> = includeHomePage\n ? [\n {\n label: \"Home\",\n pageId: this.cristalApp.getWikiConfig().homePage,\n url: this.cristalApp.getRouter().resolve({\n name: \"view\",\n params: { page: this.cristalApp.getWikiConfig().homePage },\n }).href,\n },\n ]\n : [];\n if (page != null) {\n hierarchy = hierarchy.concat(\n await getPageHierarchyFromPath(page, this.cristalApp),\n );\n }\n return hierarchy;\n }\n}\n\n/**\n * @beta\n */\nexport class ComponentInit {\n constructor(container: Container) {\n container\n .bind<PageHierarchyResolver>(name)\n .to(NextcloudPageHierarchyResolver)\n .inSingletonScope()\n .whenNamed(\"Nextcloud\");\n }\n}\n"],"names":["NextcloudPageHierarchyResolver","logger","cristalApp","page","includeHomePage","hierarchy","getPageHierarchyFromPath","__decorateClass","injectable","__decorateParam","ComponentInit","container","name"],"mappings":"qpBAwCA,IAAMA,EAAN,KAAsE,CAC5D,WACD,OAEP,YACoBC,EACIC,EACtB,CACA,KAAK,OAASD,EACd,KAAK,OAAO,UAAU,mDAAmD,EACzE,KAAK,WAAaC,CACpB,CAEA,MAAM,iBACJC,EACAC,EAA2B,GACQ,CACnC,IAAIC,EAAsCD,EACtC,CACE,CACE,MAAO,OACP,OAAQ,KAAK,WAAW,cAAA,EAAgB,SACxC,IAAK,KAAK,WAAW,UAAA,EAAY,QAAQ,CACvC,KAAM,OACN,OAAQ,CAAE,KAAM,KAAK,WAAW,cAAA,EAAgB,QAAA,CAAS,CAC1D,EAAE,IAAA,CACL,EAEF,CAAA,EACJ,OAAID,GAAQ,OACVE,EAAYA,EAAU,OACpB,MAAMC,EAAAA,yBAAyBH,EAAM,KAAK,UAAU,CAAA,GAGjDE,CACT,CACF,EApCML,EAANO,EAAA,CADCC,aAAA,EAMIC,aAAO,QAAQ,CAAA,EACfA,aAAO,YAAY,CAAA,CAAA,EANlBT,CAAA,EAyCC,MAAMU,CAAc,CACzB,YAAYC,EAAsB,CAChCA,EACG,KAA4BC,EAAAA,IAAI,EAChC,GAAGZ,CAA8B,EACjC,iBAAA,EACA,UAAU,WAAW,CAC1B,CACF"}
1
+ {"version":3,"file":"index.umd.js","sources":["../src/components/componentsInit.ts"],"sourcesContent":["/**\n * See the LICENSE file distributed with this work for additional\n * information regarding copyright ownership.\n *\n * This is free software; you can redistribute it and/or modify it\n * under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This software is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this software; if not, write to the Free\n * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA\n * 02110-1301 USA, or see the FSF site: http://www.fsf.org.\n */\n\nimport { name } from \"@xwiki/cristal-hierarchy-api\";\nimport { getPageHierarchyFromPath } from \"@xwiki/cristal-hierarchy-default\";\nimport { Container, inject, injectable } from \"inversify\";\nimport type {\n PageHierarchyItem,\n PageHierarchyResolver,\n} from \"@xwiki/cristal-hierarchy-api\";\nimport type { CristalApp, Logger } from \"@xwiki/platform-api\";\nimport type {\n DocumentReference,\n SpaceReference,\n} from \"@xwiki/platform-model-api\";\n\n/**\n * Implementation of PageHierarchyResolver for Nextcloud backend.\n *\n * @since 0.10\n * @beta\n **/\n@injectable()\nclass NextcloudPageHierarchyResolver implements PageHierarchyResolver {\n private cristalApp: CristalApp;\n public logger: Logger;\n\n constructor(\n @inject(\"Logger\") logger: Logger,\n @inject(\"CristalApp\") cristalApp: CristalApp,\n ) {\n this.logger = logger;\n this.logger.setModule(\"storage.components.NextcloudPageHierarchyResolver\");\n this.cristalApp = cristalApp;\n }\n\n async getPageHierarchy(\n page: DocumentReference | SpaceReference,\n includeHomePage: boolean = true,\n ): Promise<Array<PageHierarchyItem>> {\n let hierarchy: Array<PageHierarchyItem> = includeHomePage\n ? [\n {\n label: \"Home\",\n pageId: this.cristalApp.getWikiConfig().homePage,\n url: this.cristalApp.getRouter().resolve({\n name: \"view\",\n params: { page: this.cristalApp.getWikiConfig().homePage },\n }).href,\n },\n ]\n : [];\n if (page != null) {\n hierarchy = hierarchy.concat(\n await getPageHierarchyFromPath(page, this.cristalApp),\n );\n }\n return hierarchy;\n }\n}\n\n/**\n * @beta\n */\nexport class ComponentInit {\n constructor(container: Container) {\n container\n .bind<PageHierarchyResolver>(name)\n .to(NextcloudPageHierarchyResolver)\n .inSingletonScope()\n .whenNamed(\"Nextcloud\");\n }\n}\n"],"names":["NextcloudPageHierarchyResolver","logger","cristalApp","page","includeHomePage","hierarchy","getPageHierarchyFromPath","__decorateClass","injectable","__decorateParam","ComponentInit","container","name"],"mappings":"qpBAwCA,IAAMA,EAAN,KAAsE,CAC5D,WACD,OAEP,YACoBC,EACIC,EACtB,CACA,KAAK,OAASD,EACd,KAAK,OAAO,UAAU,mDAAmD,EACzE,KAAK,WAAaC,CACpB,CAEA,MAAM,iBACJC,EACAC,EAA2B,GACQ,CACnC,IAAIC,EAAsCD,EACtC,CACE,CACE,MAAO,OACP,OAAQ,KAAK,WAAW,cAAA,EAAgB,SACxC,IAAK,KAAK,WAAW,UAAA,EAAY,QAAQ,CACvC,KAAM,OACN,OAAQ,CAAE,KAAM,KAAK,WAAW,cAAA,EAAgB,QAAA,CAAS,CAC1D,EAAE,IAAA,CACL,EAEF,CAAA,EACJ,OAAID,GAAQ,OACVE,EAAYA,EAAU,OACpB,MAAMC,EAAAA,yBAAyBH,EAAM,KAAK,UAAU,CAAA,GAGjDE,CACT,CACF,EApCML,EAANO,EAAA,CADCC,aAAA,EAMIC,aAAO,QAAQ,CAAA,EACfA,aAAO,YAAY,CAAA,CAAA,EANlBT,CAAA,EAyCC,MAAMU,CAAc,CACzB,YAAYC,EAAsB,CAChCA,EACG,KAA4BC,EAAAA,IAAI,EAChC,GAAGZ,CAA8B,EACjC,iBAAA,EACA,UAAU,WAAW,CAC1B,CACF"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xwiki/cristal-hierarchy-nextcloud",
3
- "version": "0.24.0",
3
+ "version": "0.25.0",
4
4
  "license": "LGPL 2.1",
5
5
  "author": "XWiki Org Community <contact@xwiki.org>",
6
6
  "homepage": "https://cristal.xwiki.org/",
@@ -28,21 +28,21 @@
28
28
  "main": "./dist/index.es.js",
29
29
  "types": "./dist/index.d.ts",
30
30
  "dependencies": {
31
- "@xwiki/cristal-api": "0.24.0",
32
- "@xwiki/cristal-model-api": "0.24.0",
33
- "@xwiki/cristal-hierarchy-default": "0.24.0",
34
- "@xwiki/cristal-hierarchy-api": "0.24.0"
31
+ "@xwiki/platform-api": "18.0.0-1766398944",
32
+ "@xwiki/platform-model-api": "18.0.0-1766398944",
33
+ "@xwiki/cristal-hierarchy-api": "0.25.0",
34
+ "@xwiki/cristal-hierarchy-default": "0.25.0"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "inversify": "7.x",
38
38
  "reflect-metadata": "0.x"
39
39
  },
40
40
  "devDependencies": {
41
- "inversify": "7.10.4",
41
+ "inversify": "7.10.6",
42
42
  "reflect-metadata": "0.2.2",
43
43
  "typescript": "5.9.3",
44
- "vite": "7.1.12",
45
- "@xwiki/cristal-dev-config": "0.24.0"
44
+ "vite": "7.2.7",
45
+ "@xwiki/cristal-dev-config": "0.25.0"
46
46
  },
47
47
  "scripts": {
48
48
  "api-extractor:local": "api-extractor run --local",
@@ -21,15 +21,15 @@
21
21
  import { name } from "@xwiki/cristal-hierarchy-api";
22
22
  import { getPageHierarchyFromPath } from "@xwiki/cristal-hierarchy-default";
23
23
  import { Container, inject, injectable } from "inversify";
24
- import type { CristalApp, Logger } from "@xwiki/cristal-api";
25
24
  import type {
26
25
  PageHierarchyItem,
27
26
  PageHierarchyResolver,
28
27
  } from "@xwiki/cristal-hierarchy-api";
28
+ import type { CristalApp, Logger } from "@xwiki/platform-api";
29
29
  import type {
30
30
  DocumentReference,
31
31
  SpaceReference,
32
- } from "@xwiki/cristal-model-api";
32
+ } from "@xwiki/platform-model-api";
33
33
 
34
34
  /**
35
35
  * Implementation of PageHierarchyResolver for Nextcloud backend.
package/CHANGELOG.md DELETED
@@ -1,206 +0,0 @@
1
- # @xwiki/cristal-hierarchy-nextcloud
2
-
3
- ## 0.23.0
4
-
5
- ### Minor Changes
6
-
7
- - Cristal 0.23 Release
8
-
9
- ### Patch Changes
10
-
11
- - Updated dependencies
12
- - @xwiki/cristal-api@0.23.0
13
- - @xwiki/cristal-hierarchy-api@0.23.0
14
- - @xwiki/cristal-hierarchy-default@0.23.0
15
- - @xwiki/cristal-model-api@0.23.0
16
-
17
- ## 0.22.0
18
-
19
- ### Minor Changes
20
-
21
- - Cristal 0.22 Release
22
-
23
- ### Patch Changes
24
-
25
- - Updated dependencies
26
- - @xwiki/cristal-api@0.22.0
27
- - @xwiki/cristal-hierarchy-api@0.22.0
28
- - @xwiki/cristal-hierarchy-default@0.22.0
29
- - @xwiki/cristal-model-api@0.22.0
30
-
31
- ## 0.21.0
32
-
33
- ### Minor Changes
34
-
35
- - Cristal 0.21 Release
36
-
37
- ### Patch Changes
38
-
39
- - Updated dependencies
40
- - @xwiki/cristal-api@0.21.0
41
- - @xwiki/cristal-hierarchy-api@0.21.0
42
- - @xwiki/cristal-hierarchy-default@0.21.0
43
- - @xwiki/cristal-model-api@0.21.0
44
-
45
- ## 0.20.0
46
-
47
- ### Minor Changes
48
-
49
- - Cristal 0.20 Release
50
-
51
- ### Patch Changes
52
-
53
- - Updated dependencies
54
- - @xwiki/cristal-api@0.20.0
55
- - @xwiki/cristal-hierarchy-api@0.20.0
56
- - @xwiki/cristal-hierarchy-default@0.20.0
57
- - @xwiki/cristal-model-api@0.20.0
58
-
59
- ## 0.20.0-rc.0
60
-
61
- ### Minor Changes
62
-
63
- - Cristal 0.20-rc-1 Release
64
-
65
- ### Patch Changes
66
-
67
- - Updated dependencies
68
- - @xwiki/cristal-api@0.20.0-rc.0
69
- - @xwiki/cristal-hierarchy-api@0.20.0-rc.0
70
- - @xwiki/cristal-hierarchy-default@0.20.0-rc.0
71
- - @xwiki/cristal-model-api@0.20.0-rc.0
72
-
73
- ## 0.19.0
74
-
75
- ### Minor Changes
76
-
77
- - 3eea53e: Cristal 0.19 Release
78
-
79
- ### Patch Changes
80
-
81
- - Updated dependencies [3eea53e]
82
- - @xwiki/cristal-api@0.19.0
83
- - @xwiki/cristal-hierarchy-api@0.19.0
84
- - @xwiki/cristal-hierarchy-default@0.19.0
85
- - @xwiki/cristal-model-api@0.19.0
86
-
87
- ## 0.18.0
88
-
89
- ### Minor Changes
90
-
91
- - Cristal 0.18 Release
92
-
93
- ### Patch Changes
94
-
95
- - Updated dependencies
96
- - @xwiki/cristal-api@0.18.0
97
- - @xwiki/cristal-hierarchy-api@0.18.0
98
- - @xwiki/cristal-hierarchy-default@0.18.0
99
- - @xwiki/cristal-model-api@0.18.0
100
-
101
- ## 0.17.0
102
-
103
- ### Minor Changes
104
-
105
- - Cristal 0.17 Release
106
-
107
- ### Patch Changes
108
-
109
- - Updated dependencies
110
- - @xwiki/cristal-api@0.17.0
111
- - @xwiki/cristal-hierarchy-api@0.17.0
112
- - @xwiki/cristal-hierarchy-default@0.17.0
113
- - @xwiki/cristal-model-api@0.17.0
114
-
115
- ## 0.16.0
116
-
117
- ### Minor Changes
118
-
119
- - Cristal 0.16 Release
120
-
121
- ### Patch Changes
122
-
123
- - Updated dependencies
124
- - @xwiki/cristal-api@0.16.0
125
- - @xwiki/cristal-hierarchy-api@0.16.0
126
- - @xwiki/cristal-hierarchy-default@0.16.0
127
- - @xwiki/cristal-model-api@0.16.0
128
-
129
- ## 0.15.0
130
-
131
- ### Minor Changes
132
-
133
- - Cristal 0.15 Release
134
-
135
- ### Patch Changes
136
-
137
- - Updated dependencies
138
- - @xwiki/cristal-api@0.15.0
139
- - @xwiki/cristal-hierarchy-api@0.15.0
140
- - @xwiki/cristal-hierarchy-default@0.15.0
141
- - @xwiki/cristal-model-api@0.15.0
142
-
143
- ## 0.14.0
144
-
145
- ### Minor Changes
146
-
147
- - 3e5f853: Cristal 0.14 Release
148
-
149
- ### Patch Changes
150
-
151
- - Updated dependencies [3e5f853]
152
- - @xwiki/cristal-api@0.14.0
153
- - @xwiki/cristal-hierarchy-api@0.14.0
154
- - @xwiki/cristal-hierarchy-default@0.14.0
155
-
156
- ## 0.13.0
157
-
158
- ### Minor Changes
159
-
160
- - 06a5d1b: Cristal 0.13 Release
161
-
162
- ### Patch Changes
163
-
164
- - Updated dependencies [06a5d1b]
165
- - @xwiki/cristal-api@0.13.0
166
- - @xwiki/cristal-hierarchy-api@0.13.0
167
- - @xwiki/cristal-hierarchy-default@0.13.0
168
-
169
- ## 0.12.0
170
-
171
- ### Minor Changes
172
-
173
- - 681a9b7: Cristal 0.12 Release
174
-
175
- ### Patch Changes
176
-
177
- - Updated dependencies [681a9b7]
178
- - @xwiki/cristal-api@0.12.0
179
- - @xwiki/cristal-hierarchy-api@0.12.0
180
- - @xwiki/cristal-hierarchy-default@0.12.0
181
-
182
- ## 0.11.0
183
-
184
- ### Minor Changes
185
-
186
- - d54422d: Cristal 0.11 Release
187
-
188
- ### Patch Changes
189
-
190
- - Updated dependencies [d54422d]
191
- - @xwiki/cristal-api@0.11.0
192
- - @xwiki/cristal-hierarchy-api@0.11.0
193
- - @xwiki/cristal-hierarchy-default@0.11.0
194
-
195
- ## 0.10.0
196
-
197
- ### Minor Changes
198
-
199
- - fa7fe9f: Cristal 0.10 Release
200
-
201
- ### Patch Changes
202
-
203
- - Updated dependencies [fa7fe9f]
204
- - @xwiki/cristal-api@0.10.0
205
- - @xwiki/cristal-hierarchy-api@0.10.0
206
- - @xwiki/cristal-hierarchy-default@0.10.0