@saooti/octopus-sdk 41.1.10 → 41.1.11

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 41.1.11 (16/12/2025)
4
+
5
+ **Misc**
6
+
7
+ - Export de `ClassicWysiwyg`
8
+
3
9
  ## 41.1.10 (15/12/2025)
4
10
 
5
11
  **Misc**
package/index.ts CHANGED
@@ -40,8 +40,6 @@ export const getContractPreviewModal = () => import("./src/components/misc/modal
40
40
  export const getClassicModalInBody = () => import("./src/components/misc/modal/ClassicModalInBody.vue");
41
41
  export const getClassicHelpButton = () => import("./src/components/misc/ClassicHelpButton.vue");
42
42
  export const getClassicAlert = () => import("./src/components/misc/ClassicAlert.vue");
43
-
44
-
45
43
  //Display
46
44
  export const getCategoryChooser = () => import("./src/components/display/categories/CategoryChooser.vue");
47
45
  export const getCategoryList = () => import("./src/components/display/categories/CategoryList.vue");
@@ -99,7 +97,7 @@ export const getClassicContentEditable = () => import("./src/components/form/Cla
99
97
  export const getSwiperList = () => import("./src/components/display/list/SwiperList.vue");
100
98
  export const getClassicCopyButton = () => import("./src/components/form/ClassicCopyButton.vue");
101
99
  export const getClassicTagInput = () => import("./src/components/form/ClassicTagInput.vue");
102
-
100
+ export const getClassicWysiwyg = () => import("./src/components/form/ClassicWysiwyg.vue");
103
101
 
104
102
  //Composable
105
103
  import {useResizePhone} from "./src/components/composable/useResizePhone";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "41.1.10",
3
+ "version": "41.1.11",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -178,6 +178,7 @@ const props = defineProps({
178
178
  pr: { default: 0, type: Number },
179
179
  ps: { default: 30, type: Number },
180
180
  routeQuery: { default: "", type: String },
181
+ /** When true, display emission title in podcastmaker header */
181
182
  useEmissionTitle: { default: false, type: Boolean }
182
183
  });
183
184