@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 +6 -0
- package/index.ts +1 -3
- package/package.json +1 -1
- package/src/components/pages/EmissionPage.vue +1 -0
package/CHANGELOG.md
CHANGED
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
|
@@ -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
|
|