@smarterplan/ngx-smarterplan-core 1.2.39 → 1.2.46
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/esm2020/lib/components/menu-bar/menu-bar.component.mjs +3 -3
- package/esm2020/lib/components/menu-bar/range-date-picker/range-date-picker.component.mjs +3 -3
- package/esm2020/lib/services/models/feature.service.mjs +17 -1
- package/esm2020/lib/types.service.mjs +2 -1
- package/fesm2015/smarterplan-ngx-smarterplan-core.mjs +21 -4
- package/fesm2015/smarterplan-ngx-smarterplan-core.mjs.map +1 -1
- package/fesm2020/smarterplan-ngx-smarterplan-core.mjs +21 -4
- package/fesm2020/smarterplan-ngx-smarterplan-core.mjs.map +1 -1
- package/lib/services/models/feature.service.d.ts +1 -0
- package/lib/types.service.d.ts +3 -1
- package/package.json +1 -1
|
@@ -57,6 +57,7 @@ export declare class FeatureService extends BaseObjectService {
|
|
|
57
57
|
setAudio(feature: Feature): void;
|
|
58
58
|
setExternalLinks(feature: Feature): void;
|
|
59
59
|
setEmbeds(feature: Feature): void;
|
|
60
|
+
setIframes(feature: Feature): void;
|
|
60
61
|
getFirstFeatureForSpace(spaceID: string): Promise<Feature>;
|
|
61
62
|
updateIconForAllFeaturesInSpace(tagIcon: string, spaceID: string, categoryID?: string): Promise<{
|
|
62
63
|
features: Feature[];
|
package/lib/types.service.d.ts
CHANGED
|
@@ -226,7 +226,8 @@ export declare enum CommentType {
|
|
|
226
226
|
URL = "URL",
|
|
227
227
|
YOUTUBE = "YOUTUBE",
|
|
228
228
|
URL_SHOP = "URL_SHOP",
|
|
229
|
-
EMBED = "EMBED"
|
|
229
|
+
EMBED = "EMBED",
|
|
230
|
+
IFRAME = "IFRAME"
|
|
230
231
|
}
|
|
231
232
|
export declare enum StatusEquipment {
|
|
232
233
|
TO_SETUP = "TO_SETUP",
|
|
@@ -700,6 +701,7 @@ export declare type Feature = {
|
|
|
700
701
|
description: string;
|
|
701
702
|
}> | null;
|
|
702
703
|
embeds?: Array<MediaContent> | null;
|
|
704
|
+
iframes?: Array<MediaContent> | null;
|
|
703
705
|
comments?: {
|
|
704
706
|
__typename?: 'ModelCommentConnection';
|
|
705
707
|
items?: Array<Comment | null> | null;
|